Merge from vendor branch GCC:
[dragonfly.git] / sys / vfs / isofs / cd9660 / cd9660_vnops.c
1 /*-
2  * Copyright (c) 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley
6  * by Pace Willisson (pace@blitz.com).  The Rock Ridge Extension
7  * Support code is derived from software contributed to Berkeley
8  * by Atsushi Murai (amurai@spec.co.jp).
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)cd9660_vnops.c      8.19 (Berkeley) 5/27/95
39  * $FreeBSD: src/sys/isofs/cd9660/cd9660_vnops.c,v 1.62 1999/12/15 23:01:51 eivind Exp $
40  * $DragonFly: src/sys/vfs/isofs/cd9660/cd9660_vnops.c,v 1.15 2005/08/02 13:03:55 joerg Exp $
41  */
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/proc.h>
46 #include <sys/namei.h>
47 #include <sys/kernel.h>
48 #include <sys/stat.h>
49 #include <sys/buf.h>
50 #include <sys/mount.h>
51 #include <sys/vnode.h>
52 #include <vfs/fifofs/fifo.h>
53 #include <sys/malloc.h>
54 #include <sys/dirent.h>
55 #include <sys/unistd.h>
56 #include <sys/filio.h>
57 #include <sys/lockf.h>
58
59 #include <vm/vm.h>
60 #include <vm/vm_zone.h>
61 #include <vm/vnode_pager.h>
62
63 #include "iso.h"
64 #include "cd9660_node.h"
65 #include "iso_rrip.h"
66
67 static int cd9660_access (struct vop_access_args *);
68 static int cd9660_advlock (struct vop_advlock_args *);
69 static int cd9660_getattr (struct vop_getattr_args *);
70 static int cd9660_ioctl (struct vop_ioctl_args *);
71 static int cd9660_pathconf (struct vop_pathconf_args *);
72 static int cd9660_read (struct vop_read_args *);
73 static int cd9660_setattr (struct vop_setattr_args *);
74 struct isoreaddir;
75 static int iso_uiodir (struct isoreaddir *idp, struct dirent *dp,
76                            off_t off);
77 static int iso_shipdir (struct isoreaddir *idp);
78 static int cd9660_readdir (struct vop_readdir_args *);
79 static int cd9660_readlink (struct vop_readlink_args *ap);
80 static int cd9660_strategy (struct vop_strategy_args *);
81 static int cd9660_print (struct vop_print_args *);
82 static int cd9660_getpages (struct vop_getpages_args *);
83 static int cd9660_putpages (struct vop_putpages_args *);
84
85 /*
86  * Setattr call. Only allowed for block and character special devices.
87  *
88  * cd9660_setattr(struct vnodeop_desc *a_desc, struct vnode *a_vp,
89  *                struct vattr *a_vap, struct ucred *a_cred, struct proc *a_p)
90  */
91 int
92 cd9660_setattr(struct vop_setattr_args *ap)
93 {
94         struct vnode *vp = ap->a_vp;
95         struct vattr *vap = ap->a_vap;
96
97         if (vap->va_flags != (u_long)VNOVAL || vap->va_uid != (uid_t)VNOVAL ||
98             vap->va_gid != (gid_t)VNOVAL || vap->va_atime.tv_sec != VNOVAL ||
99             vap->va_mtime.tv_sec != VNOVAL || vap->va_mode != (mode_t)VNOVAL)
100                 return (EROFS);
101         if (vap->va_size != (u_quad_t)VNOVAL) {
102                 switch (vp->v_type) {
103                 case VDIR:
104                         return (EISDIR);
105                 case VLNK:
106                 case VREG:
107                         return (EROFS);
108                 case VCHR:
109                 case VBLK:
110                 case VSOCK:
111                 case VFIFO:
112                 case VNON:
113                 case VBAD:
114                         return (0);
115                 }
116         }
117         return (0);
118 }
119
120 /*
121  * Check mode permission on inode pointer. Mode is READ, WRITE or EXEC.
122  * The mode is shifted to select the owner/group/other fields. The
123  * super user is granted all permissions.
124  *
125  * cd9660_access(struct vnode *a_vp, int a_mode, struct ucred *a_cred,
126  *               struct proc *a_p)
127  */
128 /* ARGSUSED */
129 static int
130 cd9660_access(struct vop_access_args *ap)
131 {
132         struct vnode *vp = ap->a_vp;
133         struct iso_node *ip = VTOI(vp);
134         struct ucred *cred = ap->a_cred;
135         mode_t mask, mode = ap->a_mode;
136         gid_t *gp;
137         int i;
138
139         /*
140          * Disallow write attempts unless the file is a socket,
141          * fifo, or a block or character device resident on the
142          * file system.
143          */
144         if (mode & VWRITE) {
145                 switch (vp->v_type) {
146                 case VDIR:
147                 case VLNK:
148                 case VREG:
149                         return (EROFS);
150                         /* NOT REACHED */
151                 default:
152                         break;
153                 }
154         }
155
156         /* User id 0 always gets access. */
157         if (cred->cr_uid == 0)
158                 return (0);
159
160         mask = 0;
161
162         /* Otherwise, check the owner. */
163         if (cred->cr_uid == ip->inode.iso_uid) {
164                 if (mode & VEXEC)
165                         mask |= S_IXUSR;
166                 if (mode & VREAD)
167                         mask |= S_IRUSR;
168                 if (mode & VWRITE)
169                         mask |= S_IWUSR;
170                 return ((ip->inode.iso_mode & mask) == mask ? 0 : EACCES);
171         }
172
173         /* Otherwise, check the groups. */
174         for (i = 0, gp = cred->cr_groups; i < cred->cr_ngroups; i++, gp++)
175                 if (ip->inode.iso_gid == *gp) {
176                         if (mode & VEXEC)
177                                 mask |= S_IXGRP;
178                         if (mode & VREAD)
179                                 mask |= S_IRGRP;
180                         if (mode & VWRITE)
181                                 mask |= S_IWGRP;
182                         return ((ip->inode.iso_mode & mask) == mask ?
183                             0 : EACCES);
184                 }
185
186         /* Otherwise, check everyone else. */
187         if (mode & VEXEC)
188                 mask |= S_IXOTH;
189         if (mode & VREAD)
190                 mask |= S_IROTH;
191         if (mode & VWRITE)
192                 mask |= S_IWOTH;
193         return ((ip->inode.iso_mode & mask) == mask ? 0 : EACCES);
194 }
195
196 /*
197  * cd9660_getattr(struct vnode *a_vp, struct vattr *a_vap, struct thread *a_td)
198  */
199 static int
200 cd9660_getattr(struct vop_getattr_args *ap)
201 {
202         struct vnode *vp = ap->a_vp;
203         struct vattr *vap = ap->a_vap;
204         struct iso_node *ip = VTOI(vp);
205
206         vap->va_fsid    = dev2udev(ip->i_dev);
207         vap->va_fileid  = ip->i_number;
208
209         vap->va_mode    = ip->inode.iso_mode;
210         vap->va_nlink   = ip->inode.iso_links;
211         vap->va_uid     = ip->inode.iso_uid;
212         vap->va_gid     = ip->inode.iso_gid;
213         vap->va_atime   = ip->inode.iso_atime;
214         vap->va_mtime   = ip->inode.iso_mtime;
215         vap->va_ctime   = ip->inode.iso_ctime;
216         vap->va_rdev    = ip->inode.iso_rdev;
217
218         vap->va_size    = (u_quad_t)(unsigned long)ip->i_size;
219         if (ip->i_size == 0 && (vap->va_mode & S_IFMT) == S_IFLNK) {
220                 struct vop_readlink_args rdlnk;
221                 struct iovec aiov;
222                 struct uio auio;
223                 char *cp;
224
225                 MALLOC(cp, char *, MAXPATHLEN, M_TEMP, M_WAITOK);
226                 aiov.iov_base = cp;
227                 aiov.iov_len = MAXPATHLEN;
228                 auio.uio_iov = &aiov;
229                 auio.uio_iovcnt = 1;
230                 auio.uio_offset = 0;
231                 auio.uio_rw = UIO_READ;
232                 auio.uio_segflg = UIO_SYSSPACE;
233                 auio.uio_td = ap->a_td;
234                 auio.uio_resid = MAXPATHLEN;
235                 rdlnk.a_uio = &auio;
236                 rdlnk.a_vp = ap->a_vp;
237                 rdlnk.a_cred = proc0.p_ucred; /* use root cred */
238                 if (cd9660_readlink(&rdlnk) == 0)
239                         vap->va_size = MAXPATHLEN - auio.uio_resid;
240                 FREE(cp, M_TEMP);
241         }
242         vap->va_flags   = 0;
243         vap->va_gen = 1;
244         vap->va_blocksize = ip->i_mnt->logical_block_size;
245         vap->va_bytes   = (u_quad_t) ip->i_size;
246         vap->va_type    = vp->v_type;
247         vap->va_filerev = 0;
248         return (0);
249 }
250
251 /*
252  * Vnode op for ioctl.
253  *
254  * cd9660_ioctl(struct vnode *a_vp, int a_command, caddr_t a_data,
255  *              int a_fflag, struct ucred *a_cred, struct proc *a_p)
256  */
257 static int
258 cd9660_ioctl(struct vop_ioctl_args *ap)
259 {
260         struct vnode *vp = ap->a_vp;
261         struct iso_node *ip = VTOI(vp);
262
263         switch (ap->a_command) {
264
265         case FIOGETLBA:
266                 *(int *)(ap->a_data) = ip->iso_start;
267                 return 0;
268         default:
269                 return (ENOTTY);
270         }
271 }
272
273 /*
274  * Vnode op for reading.
275  *
276  * cd9660_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
277  *              struct ucred *a_cred)
278  */
279 static int
280 cd9660_read(struct vop_read_args *ap)
281 {
282         struct vnode *vp = ap->a_vp;
283         struct uio *uio = ap->a_uio;
284         struct iso_node *ip = VTOI(vp);
285         struct iso_mnt *imp;
286         struct buf *bp;
287         daddr_t lbn, rablock;
288         off_t diff;
289         int rasize, error = 0;
290         int seqcount;
291         long size, n, on;
292
293         seqcount = ap->a_ioflag >> 16;
294
295         if (uio->uio_resid == 0)
296                 return (0);
297         if (uio->uio_offset < 0)
298                 return (EINVAL);
299         ip->i_flag |= IN_ACCESS;
300         imp = ip->i_mnt;
301         do {
302                 lbn = lblkno(imp, uio->uio_offset);
303                 on = blkoff(imp, uio->uio_offset);
304                 n = min((u_int)(imp->logical_block_size - on),
305                         uio->uio_resid);
306                 diff = (off_t)ip->i_size - uio->uio_offset;
307                 if (diff <= 0)
308                         return (0);
309                 if (diff < n)
310                         n = diff;
311                 size = blksize(imp, ip, lbn);
312                 rablock = lbn + 1;
313                 if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERR) == 0) {
314                         if (lblktosize(imp, rablock) < ip->i_size)
315                                 error = cluster_read(vp, (off_t)ip->i_size,
316                                          lbn, size, uio->uio_resid,
317                                          (ap->a_ioflag >> 16), &bp);
318                         else
319                                 error = bread(vp, lbn, size, &bp);
320                 } else {
321                         if (seqcount > 1 &&
322                             lblktosize(imp, rablock) < ip->i_size) {
323                                 rasize = blksize(imp, ip, rablock);
324                                 error = breadn(vp, lbn, size, &rablock,
325                                                &rasize, 1, &bp);
326                         } else
327                                 error = bread(vp, lbn, size, &bp);
328                 }
329                 n = min(n, size - bp->b_resid);
330                 if (error) {
331                         brelse(bp);
332                         return (error);
333                 }
334
335                 error = uiomove(bp->b_data + on, (int)n, uio);
336                 brelse(bp);
337         } while (error == 0 && uio->uio_resid > 0 && n != 0);
338         return (error);
339 }
340
341 /*
342  * Structure for reading directories
343  */
344 struct isoreaddir {
345         struct dirent saveent;
346         struct dirent assocent;
347         struct dirent current;
348         off_t saveoff;
349         off_t assocoff;
350         off_t curroff;
351         struct uio *uio;
352         off_t uio_off;
353         int eofflag;
354         u_long *cookies;
355         int ncookies;
356 };
357
358 int
359 iso_uiodir(struct isoreaddir *idp, struct dirent *dp, off_t off)
360 {
361         int error;
362
363         dp->d_name[dp->d_namlen] = 0;
364         dp->d_reclen = GENERIC_DIRSIZ(dp);
365
366         if (idp->uio->uio_resid < dp->d_reclen) {
367                 idp->eofflag = 0;
368                 return (-1);
369         }
370
371         if (idp->cookies) {
372                 if (idp->ncookies <= 0) {
373                         idp->eofflag = 0;
374                         return (-1);
375                 }
376
377                 *idp->cookies++ = off;
378                 --idp->ncookies;
379         }
380
381         if ((error = uiomove((caddr_t) dp,dp->d_reclen,idp->uio)) != 0)
382                 return (error);
383         idp->uio_off = off;
384         return (0);
385 }
386
387 int
388 iso_shipdir(struct isoreaddir *idp)
389 {
390         struct dirent *dp;
391         int cl, sl, assoc;
392         int error;
393         char *cname, *sname;
394
395         cl = idp->current.d_namlen;
396         cname = idp->current.d_name;
397 assoc = (cl > 1) && (*cname == ASSOCCHAR);
398         if (assoc) {
399                 cl--;
400                 cname++;
401         }
402
403         dp = &idp->saveent;
404         sname = dp->d_name;
405         if (!(sl = dp->d_namlen)) {
406                 dp = &idp->assocent;
407                 sname = dp->d_name + 1;
408                 sl = dp->d_namlen - 1;
409         }
410         if (sl > 0) {
411                 if (sl != cl
412                     || bcmp(sname,cname,sl)) {
413                         if (idp->assocent.d_namlen) {
414                                 if ((error = iso_uiodir(idp,&idp->assocent,idp->assocoff)) != 0)
415                                         return (error);
416                                 idp->assocent.d_namlen = 0;
417                         }
418                         if (idp->saveent.d_namlen) {
419                                 if ((error = iso_uiodir(idp,&idp->saveent,idp->saveoff)) != 0)
420                                         return (error);
421                                 idp->saveent.d_namlen = 0;
422                         }
423                 }
424         }
425         idp->current.d_reclen = GENERIC_DIRSIZ(&idp->current);
426         if (assoc) {
427                 idp->assocoff = idp->curroff;
428                 bcopy(&idp->current,&idp->assocent,idp->current.d_reclen);
429         } else {
430                 idp->saveoff = idp->curroff;
431                 bcopy(&idp->current,&idp->saveent,idp->current.d_reclen);
432         }
433         return (0);
434 }
435
436 /*
437  * Vnode op for readdir
438  *
439  * cd9660_readdir(struct vnode *a_vp, struct uio *a_uio, struct ucred *a_cred,
440  *                int *a_eofflag, int *a_ncookies, u_long *a_cookies)
441  */
442 static int
443 cd9660_readdir(struct vop_readdir_args *ap)
444 {
445         struct uio *uio = ap->a_uio;
446         struct isoreaddir *idp;
447         struct vnode *vdp = ap->a_vp;
448         struct iso_node *dp;
449         struct iso_mnt *imp;
450         struct buf *bp = NULL;
451         struct iso_directory_record *ep;
452         int entryoffsetinblock;
453         doff_t endsearch;
454         u_long bmask;
455         int error = 0;
456         int reclen;
457         u_short namelen;
458         int ncookies = 0;
459         u_long *cookies = NULL;
460
461         dp = VTOI(vdp);
462         imp = dp->i_mnt;
463         bmask = imp->im_bmask;
464
465         MALLOC(idp, struct isoreaddir *, sizeof(*idp), M_TEMP, M_WAITOK);
466         idp->saveent.d_namlen = idp->assocent.d_namlen = 0;
467         /*
468          * XXX
469          * Is it worth trying to figure out the type?
470          */
471         idp->saveent.d_type = idp->assocent.d_type = idp->current.d_type =
472             DT_UNKNOWN;
473         idp->uio = uio;
474         if (ap->a_ncookies == NULL) {
475                 idp->cookies = NULL;
476         } else {
477                 /*
478                  * Guess the number of cookies needed.
479                  */
480                 ncookies = uio->uio_resid / 16;
481                 MALLOC(cookies, u_long *, ncookies * sizeof(u_int), M_TEMP,
482                     M_WAITOK);
483                 idp->cookies = cookies;
484                 idp->ncookies = ncookies;
485         }
486         idp->eofflag = 1;
487         idp->curroff = uio->uio_offset;
488
489         if ((entryoffsetinblock = idp->curroff & bmask) &&
490             (error = cd9660_blkatoff(vdp, (off_t)idp->curroff, NULL, &bp))) {
491                 FREE(idp, M_TEMP);
492                 return (error);
493         }
494         endsearch = dp->i_size;
495
496         while (idp->curroff < endsearch) {
497                 /*
498                  * If offset is on a block boundary,
499                  * read the next directory block.
500                  * Release previous if it exists.
501                  */
502                 if ((idp->curroff & bmask) == 0) {
503                         if (bp != NULL)
504                                 brelse(bp);
505                         if ((error =
506                             cd9660_blkatoff(vdp, (off_t)idp->curroff, NULL, &bp)) != 0)
507                                 break;
508                         entryoffsetinblock = 0;
509                 }
510                 /*
511                  * Get pointer to next entry.
512                  */
513                 ep = (struct iso_directory_record *)
514                         ((char *)bp->b_data + entryoffsetinblock);
515
516                 reclen = isonum_711(ep->length);
517                 if (reclen == 0) {
518                         /* skip to next block, if any */
519                         idp->curroff =
520                             (idp->curroff & ~bmask) + imp->logical_block_size;
521                         continue;
522                 }
523
524                 if (reclen < ISO_DIRECTORY_RECORD_SIZE) {
525                         error = EINVAL;
526                         /* illegal entry, stop */
527                         break;
528                 }
529
530                 if (entryoffsetinblock + reclen > imp->logical_block_size) {
531                         error = EINVAL;
532                         /* illegal directory, so stop looking */
533                         break;
534                 }
535
536                 idp->current.d_namlen = isonum_711(ep->name_len);
537
538                 if (reclen < ISO_DIRECTORY_RECORD_SIZE + idp->current.d_namlen) {
539                         error = EINVAL;
540                         /* illegal entry, stop */
541                         break;
542                 }
543
544                 if (isonum_711(ep->flags)&2)
545                         idp->current.d_fileno = isodirino(ep, imp);
546                 else
547                         idp->current.d_fileno = dbtob(bp->b_blkno) +
548                                 entryoffsetinblock;
549
550                 idp->curroff += reclen;
551
552                 switch (imp->iso_ftype) {
553                 case ISO_FTYPE_RRIP:
554                 {
555                         ino_t cur_fileno = idp->current.d_fileno;       
556                         cd9660_rrip_getname(ep,idp->current.d_name, &namelen,
557                                            &cur_fileno,imp);
558                         idp->current.d_fileno = cur_fileno;
559                         idp->current.d_namlen = (u_char)namelen;
560                         if (idp->current.d_namlen)
561                                 error = iso_uiodir(idp,&idp->current,idp->curroff);
562                         break;
563                 }
564                 default: /* ISO_FTYPE_DEFAULT || ISO_FTYPE_9660 || ISO_FTYPE_HIGH_SIERRA*/
565                         strcpy(idp->current.d_name,"..");
566                         if (idp->current.d_namlen == 1 && ep->name[0] == 0) {
567                                 idp->current.d_namlen = 1;
568                                 error = iso_uiodir(idp,&idp->current,idp->curroff);
569                         } else if (idp->current.d_namlen == 1 && ep->name[0] == 1) {
570                                 idp->current.d_namlen = 2;
571                                 error = iso_uiodir(idp,&idp->current,idp->curroff);
572                         } else {
573                                 isofntrans(ep->name,idp->current.d_namlen,
574                                            idp->current.d_name, &namelen,
575                                            imp->iso_ftype == ISO_FTYPE_9660,
576                                            isonum_711(ep->flags)&4,
577                                            imp->joliet_level);
578                                 idp->current.d_namlen = (u_char)namelen;
579                                 if (imp->iso_ftype == ISO_FTYPE_DEFAULT)
580                                         error = iso_shipdir(idp);
581                                 else
582                                         error = iso_uiodir(idp,&idp->current,idp->curroff);
583                         }
584                 }
585                 if (error)
586                         break;
587
588                 entryoffsetinblock += reclen;
589         }
590
591         if (!error && imp->iso_ftype == ISO_FTYPE_DEFAULT) {
592                 idp->current.d_namlen = 0;
593                 error = iso_shipdir(idp);
594         }
595         if (error < 0)
596                 error = 0;
597
598         if (ap->a_ncookies != NULL) {
599                 if (error)
600                         free(cookies, M_TEMP);
601                 else {
602                         /*
603                          * Work out the number of cookies actually used.
604                          */
605                         *ap->a_ncookies = ncookies - idp->ncookies;
606                         *ap->a_cookies = cookies;
607                 }
608         }
609
610         if (bp)
611                 brelse (bp);
612
613         uio->uio_offset = idp->uio_off;
614         *ap->a_eofflag = idp->eofflag;
615
616         FREE(idp, M_TEMP);
617
618         return (error);
619 }
620
621 /*
622  * Return target name of a symbolic link
623  * Shouldn't we get the parent vnode and read the data from there?
624  * This could eventually result in deadlocks in cd9660_lookup.
625  * But otherwise the block read here is in the block buffer two times.
626  */
627 typedef struct iso_directory_record ISODIR;
628 typedef struct iso_node             ISONODE;
629 typedef struct iso_mnt              ISOMNT;
630 /*
631  * cd9660_readlink(struct vnode *a_vp, struct uio *a_uio, struct ucred *a_cred)
632  */
633 static int
634 cd9660_readlink(struct vop_readlink_args *ap)
635 {
636         ISONODE *ip;
637         ISODIR  *dirp;
638         ISOMNT  *imp;
639         struct  buf *bp;
640         struct  uio *uio;
641         u_short symlen;
642         int     error;
643         char    *symname;
644
645         ip  = VTOI(ap->a_vp);
646         imp = ip->i_mnt;
647         uio = ap->a_uio;
648
649         if (imp->iso_ftype != ISO_FTYPE_RRIP)
650                 return (EINVAL);
651
652         /*
653          * Get parents directory record block that this inode included.
654          */
655         error = bread(imp->im_devvp,
656                       (ip->i_number >> imp->im_bshift) <<
657                       (imp->im_bshift - DEV_BSHIFT),
658                       imp->logical_block_size, &bp);
659         if (error) {
660                 brelse(bp);
661                 return (EINVAL);
662         }
663
664         /*
665          * Setup the directory pointer for this inode
666          */
667         dirp = (ISODIR *)(bp->b_data + (ip->i_number & imp->im_bmask));
668
669         /*
670          * Just make sure, we have a right one....
671          *   1: Check not cross boundary on block
672          */
673         if ((ip->i_number & imp->im_bmask) + isonum_711(dirp->length)
674             > (unsigned)imp->logical_block_size) {
675                 brelse(bp);
676                 return (EINVAL);
677         }
678
679         /*
680          * Now get a buffer
681          * Abuse a namei buffer for now.
682          */
683         if (uio->uio_segflg == UIO_SYSSPACE)
684                 symname = uio->uio_iov->iov_base;
685         else
686                 symname = zalloc(namei_zone);
687         
688         /*
689          * Ok, we just gathering a symbolic name in SL record.
690          */
691         if (cd9660_rrip_getsymname(dirp, symname, &symlen, imp) == 0) {
692                 if (uio->uio_segflg != UIO_SYSSPACE)
693                         zfree(namei_zone, symname);
694                 brelse(bp);
695                 return (EINVAL);
696         }
697         /*
698          * Don't forget before you leave from home ;-)
699          */
700         brelse(bp);
701
702         /*
703          * return with the symbolic name to caller's.
704          */
705         if (uio->uio_segflg != UIO_SYSSPACE) {
706                 error = uiomove(symname, symlen, uio);
707                 zfree(namei_zone, symname);
708                 return (error);
709         }
710         uio->uio_resid -= symlen;
711         uio->uio_iov->iov_base += symlen;
712         uio->uio_iov->iov_len -= symlen;
713         return (0);
714 }
715
716 /*
717  * Calculate the logical to physical mapping if not done already,
718  * then call the device strategy routine.
719  *
720  * cd9660_strategy(struct buf *a_vp, struct buf *a_bp)
721  */
722 static int
723 cd9660_strategy(struct vop_strategy_args *ap)
724 {
725         struct buf *bp = ap->a_bp;
726         struct vnode *vp = bp->b_vp;
727         struct iso_node *ip;
728         int error;
729
730         ip = VTOI(vp);
731         if (vp->v_type == VBLK || vp->v_type == VCHR)
732                 panic("cd9660_strategy: spec");
733         if (bp->b_blkno == bp->b_lblkno) {
734                 if ((error =
735                     VOP_BMAP(vp, bp->b_lblkno, NULL, &bp->b_blkno, NULL, NULL))) {
736                         bp->b_error = error;
737                         bp->b_flags |= B_ERROR;
738                         biodone(bp);
739                         return (error);
740                 }
741                 if ((long)bp->b_blkno == -1)
742                         clrbuf(bp);
743         }
744         if ((long)bp->b_blkno == -1) {
745                 biodone(bp);
746                 return (0);
747         }
748         vp = ip->i_devvp;
749         bp->b_dev = vp->v_rdev;
750         VOP_STRATEGY(vp, bp);
751         return (0);
752 }
753
754 /*
755  * Print out the contents of an inode.
756  *
757  * cd9660_print(struct vnode *a_vp)
758  */
759 static int
760 cd9660_print(struct vop_print_args *ap)
761 {
762         printf("tag VT_ISOFS, isofs vnode\n");
763         return (0);
764 }
765
766 /*
767  * Return POSIX pathconf information applicable to cd9660 filesystems.
768  *
769  * cd9660_pathconf(struct vnode *a_vp, int a_name, register_t *a_retval)
770  */
771 static int
772 cd9660_pathconf(struct vop_pathconf_args *ap)
773 {
774         switch (ap->a_name) {
775         case _PC_LINK_MAX:
776                 *ap->a_retval = 1;
777                 return (0);
778         case _PC_NAME_MAX:
779                 if (VTOI(ap->a_vp)->i_mnt->iso_ftype == ISO_FTYPE_RRIP)
780                         *ap->a_retval = NAME_MAX;
781                 else
782                         *ap->a_retval = 37;
783                 return (0);
784         case _PC_PATH_MAX:
785                 *ap->a_retval = PATH_MAX;
786                 return (0);
787         case _PC_PIPE_BUF:
788                 *ap->a_retval = PIPE_BUF;
789                 return (0);
790         case _PC_CHOWN_RESTRICTED:
791                 *ap->a_retval = 1;
792                 return (0);
793         case _PC_NO_TRUNC:
794                 *ap->a_retval = 1;
795                 return (0);
796         default:
797                 return (EINVAL);
798         }
799         /* NOTREACHED */
800 }
801
802 /*
803  * get page routine
804  *
805  * XXX By default, wimp out... note that a_offset is ignored (and always
806  * XXX has been).
807  */
808 int
809 cd9660_getpages(struct vop_getpages_args *ap)
810 {
811         return vnode_pager_generic_getpages(ap->a_vp, ap->a_m, ap->a_count,
812                 ap->a_reqpage);
813 }
814
815 /*
816  * put page routine
817  *
818  * XXX By default, wimp out... note that a_offset is ignored (and always
819  * XXX has been).
820  */
821 int
822 cd9660_putpages(struct vop_putpages_args *ap)
823 {
824         return vnode_pager_generic_putpages(ap->a_vp, ap->a_m, ap->a_count,
825                 ap->a_sync, ap->a_rtvals);
826 }
827
828 /*
829  * Advisory lock support
830  */
831 static int
832 cd9660_advlock(ap)
833         struct vop_advlock_args /* {
834                 struct vnode *a_vp;
835                 caddr_t a_id;
836                 int     a_op;
837                 struct flock *a_fl;
838                 int     a_flags;
839         } */ *ap;
840 {
841         struct iso_node *ip = VTOI(ap->a_vp);
842         return (lf_advlock(ap, &(ip->i_lockf), ip->i_size));
843 }
844
845
846 /*
847  * Global vfs data structures for cd9660
848  */
849 struct vnodeopv_entry_desc cd9660_vnodeop_entries[] = {
850         { &vop_default_desc,            (vnodeopv_entry_t) vop_defaultop },
851         { &vop_access_desc,             (vnodeopv_entry_t) cd9660_access },
852         { &vop_advlock_desc,            (vnodeopv_entry_t) cd9660_advlock },
853         { &vop_bmap_desc,               (vnodeopv_entry_t) cd9660_bmap },
854         { &vop_lookup_desc,             (vnodeopv_entry_t) cd9660_lookup },
855         { &vop_getattr_desc,            (vnodeopv_entry_t) cd9660_getattr },
856         { &vop_inactive_desc,           (vnodeopv_entry_t) cd9660_inactive },
857         { &vop_ioctl_desc,              (vnodeopv_entry_t) cd9660_ioctl },
858         { &vop_islocked_desc,           (vnodeopv_entry_t) vop_stdislocked },
859         { &vop_lock_desc,               (vnodeopv_entry_t) vop_stdlock },
860         { &vop_pathconf_desc,           (vnodeopv_entry_t) cd9660_pathconf },
861         { &vop_print_desc,              (vnodeopv_entry_t) cd9660_print },
862         { &vop_read_desc,               (vnodeopv_entry_t) cd9660_read },
863         { &vop_readdir_desc,            (vnodeopv_entry_t) cd9660_readdir },
864         { &vop_readlink_desc,           (vnodeopv_entry_t) cd9660_readlink },
865         { &vop_reclaim_desc,            (vnodeopv_entry_t) cd9660_reclaim },
866         { &vop_setattr_desc,            (vnodeopv_entry_t) cd9660_setattr },
867         { &vop_strategy_desc,           (vnodeopv_entry_t) cd9660_strategy },
868         { &vop_unlock_desc,             (vnodeopv_entry_t) vop_stdunlock },
869         { &vop_getpages_desc,           (vnodeopv_entry_t) cd9660_getpages },
870         { &vop_putpages_desc,           (vnodeopv_entry_t) cd9660_putpages },
871         { NULL, NULL }
872 };
873
874 /*
875  * Special device vnode ops
876  */
877 struct vnodeopv_entry_desc cd9660_specop_entries[] = {
878         { &vop_default_desc,            (vnodeopv_entry_t) spec_vnoperate },
879         { &vop_access_desc,             (vnodeopv_entry_t) cd9660_access },
880         { &vop_getattr_desc,            (vnodeopv_entry_t) cd9660_getattr },
881         { &vop_inactive_desc,           (vnodeopv_entry_t) cd9660_inactive },
882         { &vop_islocked_desc,           (vnodeopv_entry_t) vop_stdislocked },
883         { &vop_lock_desc,               (vnodeopv_entry_t) vop_stdlock },
884         { &vop_print_desc,              (vnodeopv_entry_t) cd9660_print },
885         { &vop_reclaim_desc,            (vnodeopv_entry_t) cd9660_reclaim },
886         { &vop_setattr_desc,            (vnodeopv_entry_t) cd9660_setattr },
887         { &vop_unlock_desc,             (vnodeopv_entry_t) vop_stdunlock },
888         { NULL, NULL }
889 };
890
891 struct vnodeopv_entry_desc cd9660_fifoop_entries[] = {
892         { &vop_default_desc,            (vnodeopv_entry_t) fifo_vnoperate },
893         { &vop_access_desc,             (vnodeopv_entry_t) cd9660_access },
894         { &vop_getattr_desc,            (vnodeopv_entry_t) cd9660_getattr },
895         { &vop_inactive_desc,           (vnodeopv_entry_t) cd9660_inactive },
896         { &vop_islocked_desc,           (vnodeopv_entry_t) vop_stdislocked },
897         { &vop_lock_desc,               (vnodeopv_entry_t) vop_stdlock },
898         { &vop_print_desc,              (vnodeopv_entry_t) cd9660_print },
899         { &vop_reclaim_desc,            (vnodeopv_entry_t) cd9660_reclaim },
900         { &vop_setattr_desc,            (vnodeopv_entry_t) cd9660_setattr },
901         { &vop_unlock_desc,             (vnodeopv_entry_t) vop_stdunlock },
902         { NULL, NULL }
903 };
904