fdesc_vnops.c revision 1.64.2.6 1 /* $NetBSD: fdesc_vnops.c,v 1.64.2.6 2002/10/10 18:43:30 jdolecek Exp $ */
2
3 /*
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software donated to Berkeley by
8 * Jan-Simon Pendry.
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 * @(#)fdesc_vnops.c 8.17 (Berkeley) 5/22/95
39 *
40 * #Id: fdesc_vnops.c,v 1.12 1993/04/06 16:17:17 jsp Exp #
41 */
42
43 /*
44 * /dev/fd Filesystem
45 */
46
47 #include <sys/cdefs.h>
48 __KERNEL_RCSID(0, "$NetBSD: fdesc_vnops.c,v 1.64.2.6 2002/10/10 18:43:30 jdolecek Exp $");
49
50 #include <sys/param.h>
51 #include <sys/systm.h>
52 #include <sys/time.h>
53 #include <sys/proc.h>
54 #include <sys/kernel.h> /* boottime */
55 #include <sys/resourcevar.h>
56 #include <sys/socketvar.h>
57 #include <sys/filedesc.h>
58 #include <sys/vnode.h>
59 #include <sys/malloc.h>
60 #include <sys/conf.h>
61 #include <sys/file.h>
62 #include <sys/stat.h>
63 #include <sys/mount.h>
64 #include <sys/namei.h>
65 #include <sys/buf.h>
66 #include <sys/dirent.h>
67 #include <sys/tty.h>
68
69 #include <miscfs/fdesc/fdesc.h>
70 #include <miscfs/genfs/genfs.h>
71
72 #define cttyvp(p) ((p)->p_flag & P_CONTROLT ? (p)->p_session->s_ttyvp : NULL)
73
74 #define FDL_WANT 0x01
75 #define FDL_LOCKED 0x02
76 static int fdcache_lock;
77
78 dev_t devctty;
79
80 #if (FD_STDIN != FD_STDOUT-1) || (FD_STDOUT != FD_STDERR-1)
81 FD_STDIN, FD_STDOUT, FD_STDERR must be a sequence n, n+1, n+2
82 #endif
83
84 #define NFDCACHE 4
85
86 #define FD_NHASH(ix) \
87 (&fdhashtbl[(ix) & fdhash])
88 LIST_HEAD(fdhashhead, fdescnode) *fdhashtbl;
89 u_long fdhash;
90
91 int fdesc_lookup __P((void *));
92 #define fdesc_create genfs_eopnotsupp_rele
93 #define fdesc_mknod genfs_eopnotsupp_rele
94 int fdesc_open __P((void *));
95 #define fdesc_close genfs_nullop
96 #define fdesc_access genfs_nullop
97 int fdesc_getattr __P((void *));
98 int fdesc_setattr __P((void *));
99 int fdesc_read __P((void *));
100 int fdesc_write __P((void *));
101 int fdesc_ioctl __P((void *));
102 int fdesc_poll __P((void *));
103 int fdesc_kqfilter __P((void *));
104 #define fdesc_mmap genfs_eopnotsupp
105 #define fdesc_fcntl genfs_fcntl
106 #define fdesc_fsync genfs_nullop
107 #define fdesc_seek genfs_seek
108 #define fdesc_remove genfs_eopnotsupp_rele
109 int fdesc_link __P((void *));
110 #define fdesc_rename genfs_eopnotsupp_rele
111 #define fdesc_mkdir genfs_eopnotsupp_rele
112 #define fdesc_rmdir genfs_eopnotsupp_rele
113 int fdesc_symlink __P((void *));
114 int fdesc_readdir __P((void *));
115 int fdesc_readlink __P((void *));
116 #define fdesc_abortop genfs_abortop
117 int fdesc_inactive __P((void *));
118 int fdesc_reclaim __P((void *));
119 #define fdesc_lock genfs_lock
120 #define fdesc_unlock genfs_unlock
121 #define fdesc_bmap genfs_badop
122 #define fdesc_strategy genfs_badop
123 int fdesc_print __P((void *));
124 int fdesc_pathconf __P((void *));
125 #define fdesc_islocked genfs_islocked
126 #define fdesc_advlock genfs_einval
127 #define fdesc_blkatoff genfs_eopnotsupp
128 #define fdesc_valloc genfs_eopnotsupp
129 #define fdesc_vfree genfs_nullop
130 #define fdesc_truncate genfs_eopnotsupp
131 #define fdesc_update genfs_nullop
132 #define fdesc_bwrite genfs_eopnotsupp
133 #define fdesc_revoke genfs_revoke
134 #define fdesc_putpages genfs_null_putpages
135
136 static int fdesc_attr __P((int, struct vattr *, struct ucred *, struct proc *));
137
138 int (**fdesc_vnodeop_p) __P((void *));
139 const struct vnodeopv_entry_desc fdesc_vnodeop_entries[] = {
140 { &vop_default_desc, vn_default_error },
141 { &vop_lookup_desc, fdesc_lookup }, /* lookup */
142 { &vop_create_desc, fdesc_create }, /* create */
143 { &vop_mknod_desc, fdesc_mknod }, /* mknod */
144 { &vop_open_desc, fdesc_open }, /* open */
145 { &vop_close_desc, fdesc_close }, /* close */
146 { &vop_access_desc, fdesc_access }, /* access */
147 { &vop_getattr_desc, fdesc_getattr }, /* getattr */
148 { &vop_setattr_desc, fdesc_setattr }, /* setattr */
149 { &vop_read_desc, fdesc_read }, /* read */
150 { &vop_write_desc, fdesc_write }, /* write */
151 { &vop_ioctl_desc, fdesc_ioctl }, /* ioctl */
152 { &vop_fcntl_desc, fdesc_fcntl }, /* fcntl */
153 { &vop_poll_desc, fdesc_poll }, /* poll */
154 { &vop_kqfilter_desc, fdesc_kqfilter }, /* kqfilter */
155 { &vop_revoke_desc, fdesc_revoke }, /* revoke */
156 { &vop_mmap_desc, fdesc_mmap }, /* mmap */
157 { &vop_fsync_desc, fdesc_fsync }, /* fsync */
158 { &vop_seek_desc, fdesc_seek }, /* seek */
159 { &vop_remove_desc, fdesc_remove }, /* remove */
160 { &vop_link_desc, fdesc_link }, /* link */
161 { &vop_rename_desc, fdesc_rename }, /* rename */
162 { &vop_mkdir_desc, fdesc_mkdir }, /* mkdir */
163 { &vop_rmdir_desc, fdesc_rmdir }, /* rmdir */
164 { &vop_symlink_desc, fdesc_symlink }, /* symlink */
165 { &vop_readdir_desc, fdesc_readdir }, /* readdir */
166 { &vop_readlink_desc, fdesc_readlink }, /* readlink */
167 { &vop_abortop_desc, fdesc_abortop }, /* abortop */
168 { &vop_inactive_desc, fdesc_inactive }, /* inactive */
169 { &vop_reclaim_desc, fdesc_reclaim }, /* reclaim */
170 { &vop_lock_desc, fdesc_lock }, /* lock */
171 { &vop_unlock_desc, fdesc_unlock }, /* unlock */
172 { &vop_bmap_desc, fdesc_bmap }, /* bmap */
173 { &vop_strategy_desc, fdesc_strategy }, /* strategy */
174 { &vop_print_desc, fdesc_print }, /* print */
175 { &vop_islocked_desc, fdesc_islocked }, /* islocked */
176 { &vop_pathconf_desc, fdesc_pathconf }, /* pathconf */
177 { &vop_advlock_desc, fdesc_advlock }, /* advlock */
178 { &vop_blkatoff_desc, fdesc_blkatoff }, /* blkatoff */
179 { &vop_valloc_desc, fdesc_valloc }, /* valloc */
180 { &vop_vfree_desc, fdesc_vfree }, /* vfree */
181 { &vop_truncate_desc, fdesc_truncate }, /* truncate */
182 { &vop_update_desc, fdesc_update }, /* update */
183 { &vop_bwrite_desc, fdesc_bwrite }, /* bwrite */
184 { &vop_putpages_desc, fdesc_putpages }, /* putpages */
185 { NULL, NULL }
186 };
187
188 const struct vnodeopv_desc fdesc_vnodeop_opv_desc =
189 { &fdesc_vnodeop_p, fdesc_vnodeop_entries };
190
191 extern const struct cdevsw ctty_cdevsw;
192
193 /*
194 * Initialise cache headers
195 */
196 void
197 fdesc_init()
198 {
199 int cttymajor;
200
201 /* locate the major number */
202 cttymajor = cdevsw_lookup_major(&ctty_cdevsw);
203 devctty = makedev(cttymajor, 0);
204 fdhashtbl = hashinit(NFDCACHE, HASH_LIST, M_CACHE, M_NOWAIT, &fdhash);
205 }
206
207 /*
208 * Free hash table.
209 */
210 void
211 fdesc_done()
212 {
213 hashdone(fdhashtbl, M_CACHE);
214 }
215
216 /*
217 * Return a locked vnode of the correct type.
218 */
219 int
220 fdesc_allocvp(ftype, ix, mp, vpp)
221 fdntype ftype;
222 int ix;
223 struct mount *mp;
224 struct vnode **vpp;
225 {
226 struct fdhashhead *fc;
227 struct fdescnode *fd;
228 int error = 0;
229
230 fc = FD_NHASH(ix);
231 loop:
232 for (fd = fc->lh_first; fd != 0; fd = fd->fd_hash.le_next) {
233 if (fd->fd_ix == ix && fd->fd_vnode->v_mount == mp) {
234 if (vget(fd->fd_vnode, LK_EXCLUSIVE))
235 goto loop;
236 *vpp = fd->fd_vnode;
237 return (error);
238 }
239 }
240
241 /*
242 * otherwise lock the array while we call getnewvnode
243 * since that can block.
244 */
245 if (fdcache_lock & FDL_LOCKED) {
246 fdcache_lock |= FDL_WANT;
247 (void) tsleep(&fdcache_lock, PINOD, "fdcache", 0);
248 goto loop;
249 }
250 fdcache_lock |= FDL_LOCKED;
251
252 error = getnewvnode(VT_FDESC, mp, fdesc_vnodeop_p, vpp);
253 if (error)
254 goto out;
255 MALLOC(fd, void *, sizeof(struct fdescnode), M_TEMP, M_WAITOK);
256 (*vpp)->v_data = fd;
257 fd->fd_vnode = *vpp;
258 fd->fd_type = ftype;
259 fd->fd_fd = -1;
260 fd->fd_link = 0;
261 fd->fd_ix = ix;
262 VOP_LOCK(*vpp, LK_EXCLUSIVE);
263 LIST_INSERT_HEAD(fc, fd, fd_hash);
264
265 out:;
266 fdcache_lock &= ~FDL_LOCKED;
267
268 if (fdcache_lock & FDL_WANT) {
269 fdcache_lock &= ~FDL_WANT;
270 wakeup((caddr_t) &fdcache_lock);
271 }
272
273 return (error);
274 }
275
276 /*
277 * vp is the current namei directory
278 * ndp is the name to locate in that directory...
279 */
280 int
281 fdesc_lookup(v)
282 void *v;
283 {
284 struct vop_lookup_args /* {
285 struct vnode * a_dvp;
286 struct vnode ** a_vpp;
287 struct componentname * a_cnp;
288 } */ *ap = v;
289 struct vnode **vpp = ap->a_vpp;
290 struct vnode *dvp = ap->a_dvp;
291 struct componentname *cnp = ap->a_cnp;
292 struct proc *p = cnp->cn_proc;
293 const char *pname = cnp->cn_nameptr;
294 int nfiles = p->p_fd->fd_nfiles;
295 unsigned fd = 0;
296 int error;
297 struct vnode *fvp;
298 char *ln;
299
300 if (cnp->cn_namelen == 1 && *pname == '.') {
301 *vpp = dvp;
302 VREF(dvp);
303 return (0);
304 }
305
306 switch (VTOFDESC(dvp)->fd_type) {
307 default:
308 case Flink:
309 case Fdesc:
310 case Fctty:
311 error = ENOTDIR;
312 goto bad;
313
314 case Froot:
315 if (cnp->cn_namelen == 2 && memcmp(pname, "fd", 2) == 0) {
316 error = fdesc_allocvp(Fdevfd, FD_DEVFD, dvp->v_mount, &fvp);
317 if (error)
318 goto bad;
319 *vpp = fvp;
320 fvp->v_type = VDIR;
321 goto good;
322 }
323
324 if (cnp->cn_namelen == 3 && memcmp(pname, "tty", 3) == 0) {
325 struct vnode *ttyvp = cttyvp(p);
326 if (ttyvp == NULL) {
327 error = ENXIO;
328 goto bad;
329 }
330 error = fdesc_allocvp(Fctty, FD_CTTY, dvp->v_mount, &fvp);
331 if (error)
332 goto bad;
333 *vpp = fvp;
334 fvp->v_type = VCHR;
335 goto good;
336 }
337
338 ln = 0;
339 switch (cnp->cn_namelen) {
340 case 5:
341 if (memcmp(pname, "stdin", 5) == 0) {
342 ln = "fd/0";
343 fd = FD_STDIN;
344 }
345 break;
346 case 6:
347 if (memcmp(pname, "stdout", 6) == 0) {
348 ln = "fd/1";
349 fd = FD_STDOUT;
350 } else
351 if (memcmp(pname, "stderr", 6) == 0) {
352 ln = "fd/2";
353 fd = FD_STDERR;
354 }
355 break;
356 }
357
358 if (ln) {
359 error = fdesc_allocvp(Flink, fd, dvp->v_mount, &fvp);
360 if (error)
361 goto bad;
362 VTOFDESC(fvp)->fd_link = ln;
363 *vpp = fvp;
364 fvp->v_type = VLNK;
365 goto good;
366 } else {
367 error = ENOENT;
368 goto bad;
369 }
370
371 /* FALL THROUGH */
372
373 case Fdevfd:
374 if (cnp->cn_namelen == 2 && memcmp(pname, "..", 2) == 0) {
375 VOP_UNLOCK(dvp, 0);
376 cnp->cn_flags |= PDIRUNLOCK;
377 error = fdesc_root(dvp->v_mount, vpp);
378 if (error)
379 goto bad;
380 /*
381 * If we're at the last component and need the
382 * parent locked, undo the unlock above.
383 */
384 if (((~cnp->cn_flags & (ISLASTCN | LOCKPARENT)) == 0) &&
385 ((error = vn_lock(dvp, LK_EXCLUSIVE)) == 0))
386 cnp->cn_flags &= ~PDIRUNLOCK;
387 return (error);
388 }
389
390 fd = 0;
391 while (*pname >= '0' && *pname <= '9') {
392 fd = 10 * fd + *pname++ - '0';
393 if (fd >= nfiles)
394 break;
395 }
396
397 if (*pname != '\0') {
398 error = ENOENT;
399 goto bad;
400 }
401
402 if (fd >= nfiles || p->p_fd->fd_ofiles[fd] == NULL ||
403 FILE_IS_USABLE(p->p_fd->fd_ofiles[fd]) == 0) {
404 error = EBADF;
405 goto bad;
406 }
407
408 error = fdesc_allocvp(Fdesc, FD_DESC+fd, dvp->v_mount, &fvp);
409 if (error)
410 goto bad;
411 VTOFDESC(fvp)->fd_fd = fd;
412 *vpp = fvp;
413 goto good;
414 }
415
416 bad:;
417 *vpp = NULL;
418 return (error);
419
420 good:;
421 /*
422 * As "." was special cased above, we now unlock the parent if we're
423 * suppoed to. We're only supposed to not unlock if this is the
424 * last component, and the caller requested LOCKPARENT. So if either
425 * condition is false, unlock.
426 */
427 if (((~cnp->cn_flags) & (ISLASTCN | LOCKPARENT)) != 0) {
428 VOP_UNLOCK(dvp, 0);
429 cnp->cn_flags |= PDIRUNLOCK;
430 }
431 return (0);
432 }
433
434 int
435 fdesc_open(v)
436 void *v;
437 {
438 struct vop_open_args /* {
439 struct vnode *a_vp;
440 int a_mode;
441 struct ucred *a_cred;
442 struct proc *a_p;
443 } */ *ap = v;
444 struct vnode *vp = ap->a_vp;
445
446 switch (VTOFDESC(vp)->fd_type) {
447 case Fdesc:
448 /*
449 * XXX Kludge: set p->p_dupfd to contain the value of the
450 * the file descriptor being sought for duplication. The error
451 * return ensures that the vnode for this device will be
452 * released by vn_open. Open will detect this special error and
453 * take the actions in dupfdopen. Other callers of vn_open or
454 * VOP_OPEN will simply report the error.
455 */
456 ap->a_p->p_dupfd = VTOFDESC(vp)->fd_fd; /* XXX */
457 return (ENODEV);
458
459 case Fctty:
460 return ((*ctty_cdevsw.d_open)(devctty, ap->a_mode, 0, ap->a_p));
461 case Froot:
462 case Fdevfd:
463 case Flink:
464 break;
465 }
466
467 return (0);
468 }
469
470 static int
471 fdesc_attr(fd, vap, cred, p)
472 int fd;
473 struct vattr *vap;
474 struct ucred *cred;
475 struct proc *p;
476 {
477 struct filedesc *fdp = p->p_fd;
478 struct file *fp;
479 struct stat stb;
480 int error;
481
482 if ((fp = fd_getfile(fdp, fd)) == NULL)
483 return (EBADF);
484
485 switch (fp->f_type) {
486 case DTYPE_VNODE:
487 error = VOP_GETATTR((struct vnode *) fp->f_data, vap, cred, p);
488 if (error == 0 && vap->va_type == VDIR) {
489 /*
490 * directories can cause loops in the namespace,
491 * so turn off the 'x' bits to avoid trouble.
492 */
493 vap->va_mode &= ~(S_IXUSR|S_IXGRP|S_IXOTH);
494 }
495 break;
496
497 default:
498 FILE_USE(fp);
499 memset(&stb, 0, sizeof(stb));
500 error = (*fp->f_ops->fo_stat)(fp, &stb, p);
501 FILE_UNUSE(fp, p);
502 if (error)
503 break;
504
505 vattr_null(vap);
506 switch(fp->f_type) {
507 case DTYPE_SOCKET:
508 vap->va_type = VSOCK;
509 break;
510 case DTYPE_PIPE:
511 vap->va_type = VFIFO;
512 break;
513 default:
514 /* use VNON perhaps? */
515 vap->va_type = VBAD;
516 break;
517 }
518 vap->va_mode = stb.st_mode;
519 vap->va_nlink = stb.st_nlink;
520 vap->va_uid = stb.st_uid;
521 vap->va_gid = stb.st_gid;
522 vap->va_fsid = stb.st_dev;
523 vap->va_fileid = stb.st_ino;
524 vap->va_size = stb.st_size;
525 vap->va_blocksize = stb.st_blksize;
526 vap->va_atime = stb.st_atimespec;
527 vap->va_mtime = stb.st_mtimespec;
528 vap->va_ctime = stb.st_ctimespec;
529 vap->va_gen = stb.st_gen;
530 vap->va_flags = stb.st_flags;
531 vap->va_rdev = stb.st_rdev;
532 vap->va_bytes = stb.st_blocks * stb.st_blksize;
533 break;
534 }
535
536 return (error);
537 }
538
539 int
540 fdesc_getattr(v)
541 void *v;
542 {
543 struct vop_getattr_args /* {
544 struct vnode *a_vp;
545 struct vattr *a_vap;
546 struct ucred *a_cred;
547 struct proc *a_p;
548 } */ *ap = v;
549 struct vnode *vp = ap->a_vp;
550 struct vattr *vap = ap->a_vap;
551 unsigned fd;
552 int error = 0;
553
554 switch (VTOFDESC(vp)->fd_type) {
555 case Froot:
556 case Fdevfd:
557 case Flink:
558 case Fctty:
559 VATTR_NULL(vap);
560 vap->va_fileid = VTOFDESC(vp)->fd_ix;
561
562 #define R_ALL (S_IRUSR|S_IRGRP|S_IROTH)
563 #define W_ALL (S_IWUSR|S_IWGRP|S_IWOTH)
564 #define X_ALL (S_IXUSR|S_IXGRP|S_IXOTH)
565
566 switch (VTOFDESC(vp)->fd_type) {
567 case Flink:
568 vap->va_mode = R_ALL|X_ALL;
569 vap->va_type = VLNK;
570 vap->va_rdev = 0;
571 vap->va_nlink = 1;
572 vap->va_size = strlen(VTOFDESC(vp)->fd_link);
573 break;
574
575 case Fctty:
576 vap->va_mode = R_ALL|W_ALL;
577 vap->va_type = VCHR;
578 vap->va_rdev = devctty;
579 vap->va_nlink = 1;
580 vap->va_size = 0;
581 break;
582
583 default:
584 vap->va_mode = R_ALL|X_ALL;
585 vap->va_type = VDIR;
586 vap->va_rdev = 0;
587 vap->va_nlink = 2;
588 vap->va_size = DEV_BSIZE;
589 break;
590 }
591 vap->va_uid = 0;
592 vap->va_gid = 0;
593 vap->va_fsid = vp->v_mount->mnt_stat.f_fsid.val[0];
594 vap->va_blocksize = DEV_BSIZE;
595 vap->va_atime.tv_sec = boottime.tv_sec;
596 vap->va_atime.tv_nsec = 0;
597 vap->va_mtime = vap->va_atime;
598 vap->va_ctime = vap->va_mtime;
599 vap->va_gen = 0;
600 vap->va_flags = 0;
601 vap->va_bytes = 0;
602 break;
603
604 case Fdesc:
605 fd = VTOFDESC(vp)->fd_fd;
606 error = fdesc_attr(fd, vap, ap->a_cred, ap->a_p);
607 break;
608
609 default:
610 panic("fdesc_getattr");
611 break;
612 }
613
614 if (error == 0)
615 vp->v_type = vap->va_type;
616
617 return (error);
618 }
619
620 int
621 fdesc_setattr(v)
622 void *v;
623 {
624 struct vop_setattr_args /* {
625 struct vnode *a_vp;
626 struct vattr *a_vap;
627 struct ucred *a_cred;
628 struct proc *a_p;
629 } */ *ap = v;
630 struct filedesc *fdp = ap->a_p->p_fd;
631 struct file *fp;
632 unsigned fd;
633
634 /*
635 * Can't mess with the root vnode
636 */
637 switch (VTOFDESC(ap->a_vp)->fd_type) {
638 case Fdesc:
639 break;
640
641 case Fctty:
642 return (0);
643
644 default:
645 return (EACCES);
646 }
647
648 fd = VTOFDESC(ap->a_vp)->fd_fd;
649 if ((fp = fd_getfile(fdp, fd)) == NULL)
650 return (EBADF);
651
652 /*
653 * XXX: Can't reasonably set the attr's on any types currently.
654 * On vnode's this will cause truncation and socket/pipes make
655 * no sense.
656 */
657 return (0);
658 }
659
660 #define UIO_MX 32
661
662 struct fdesc_target {
663 ino_t ft_fileno;
664 u_char ft_type;
665 u_char ft_namlen;
666 char *ft_name;
667 } fdesc_targets[] = {
668 /* NOTE: The name must be less than UIO_MX-16 chars in length */
669 #define N(s) sizeof(s)-1, s
670 { FD_DEVFD, DT_DIR, N("fd") },
671 { FD_STDIN, DT_LNK, N("stdin") },
672 { FD_STDOUT, DT_LNK, N("stdout") },
673 { FD_STDERR, DT_LNK, N("stderr") },
674 { FD_CTTY, DT_UNKNOWN, N("tty") },
675 #undef N
676 };
677 static int nfdesc_targets = sizeof(fdesc_targets) / sizeof(fdesc_targets[0]);
678
679 int
680 fdesc_readdir(v)
681 void *v;
682 {
683 struct vop_readdir_args /* {
684 struct vnode *a_vp;
685 struct uio *a_uio;
686 struct ucred *a_cred;
687 int *a_eofflag;
688 off_t **a_cookies;
689 int *a_ncookies;
690 } */ *ap = v;
691 struct uio *uio = ap->a_uio;
692 struct dirent d;
693 struct filedesc *fdp;
694 off_t i;
695 int error;
696 off_t *cookies = NULL;
697 int ncookies = 0;
698
699 switch (VTOFDESC(ap->a_vp)->fd_type) {
700 case Fctty:
701 return (0);
702
703 case Fdesc:
704 return (ENOTDIR);
705
706 default:
707 break;
708 }
709
710 fdp = uio->uio_procp->p_fd;
711
712 if (uio->uio_resid < UIO_MX)
713 return (EINVAL);
714 if (uio->uio_offset < 0)
715 return (EINVAL);
716
717 error = 0;
718 i = uio->uio_offset;
719 memset((caddr_t)&d, 0, UIO_MX);
720 d.d_reclen = UIO_MX;
721 if (ap->a_ncookies)
722 ncookies = (uio->uio_resid / UIO_MX);
723
724 if (VTOFDESC(ap->a_vp)->fd_type == Froot) {
725 struct fdesc_target *ft;
726
727 if (i >= nfdesc_targets)
728 return 0;
729
730 if (ap->a_ncookies) {
731 ncookies = min(ncookies, (nfdesc_targets - i));
732 cookies = malloc(ncookies * sizeof(off_t),
733 M_TEMP, M_WAITOK);
734 *ap->a_cookies = cookies;
735 *ap->a_ncookies = ncookies;
736 }
737
738 for (ft = &fdesc_targets[i];
739 uio->uio_resid >= UIO_MX && i < nfdesc_targets; ft++, i++) {
740 switch (ft->ft_fileno) {
741 case FD_CTTY:
742 if (cttyvp(uio->uio_procp) == NULL)
743 continue;
744 break;
745
746 case FD_STDIN:
747 case FD_STDOUT:
748 case FD_STDERR:
749 if ((ft->ft_fileno - FD_STDIN) >= fdp->fd_nfiles)
750 continue;
751 if (fdp->fd_ofiles[ft->ft_fileno - FD_STDIN] == NULL
752 || FILE_IS_USABLE(fdp->fd_ofiles[ft->ft_fileno - FD_STDIN]) == 0)
753 continue;
754 break;
755 }
756
757 d.d_fileno = ft->ft_fileno;
758 d.d_namlen = ft->ft_namlen;
759 memcpy(d.d_name, ft->ft_name, ft->ft_namlen + 1);
760 d.d_type = ft->ft_type;
761
762 if ((error = uiomove((caddr_t)&d, UIO_MX, uio)) != 0)
763 break;
764 if (cookies)
765 *cookies++ = i + 1;
766 }
767 } else {
768 if (ap->a_ncookies) {
769 ncookies = min(ncookies, (fdp->fd_nfiles + 2));
770 cookies = malloc(ncookies * sizeof(off_t),
771 M_TEMP, M_WAITOK);
772 *ap->a_cookies = cookies;
773 *ap->a_ncookies = ncookies;
774 }
775 for (; i - 2 < fdp->fd_nfiles && uio->uio_resid >= UIO_MX;
776 i++) {
777 switch (i) {
778 case 0:
779 case 1:
780 d.d_fileno = FD_ROOT; /* XXX */
781 d.d_namlen = i + 1;
782 memcpy(d.d_name, "..", d.d_namlen);
783 d.d_name[i + 1] = '\0';
784 d.d_type = DT_DIR;
785 break;
786
787 default:
788 if (fdp->fd_ofiles[i - 2] == NULL ||
789 FILE_IS_USABLE(fdp->fd_ofiles[i - 2]) == 0)
790 continue;
791 d.d_fileno = i - 2 + FD_STDIN;
792 d.d_namlen = sprintf(d.d_name, "%d", (int) i - 2);
793 d.d_type = DT_UNKNOWN;
794 break;
795 }
796
797 if ((error = uiomove((caddr_t)&d, UIO_MX, uio)) != 0)
798 break;
799 if (cookies)
800 *cookies++ = i + 1;
801 }
802 }
803
804 if (ap->a_ncookies && error) {
805 free(*ap->a_cookies, M_TEMP);
806 *ap->a_ncookies = 0;
807 *ap->a_cookies = NULL;
808 }
809
810 uio->uio_offset = i;
811 return (error);
812 }
813
814 int
815 fdesc_readlink(v)
816 void *v;
817 {
818 struct vop_readlink_args /* {
819 struct vnode *a_vp;
820 struct uio *a_uio;
821 struct ucred *a_cred;
822 } */ *ap = v;
823 struct vnode *vp = ap->a_vp;
824 int error;
825
826 if (vp->v_type != VLNK)
827 return (EPERM);
828
829 if (VTOFDESC(vp)->fd_type == Flink) {
830 char *ln = VTOFDESC(vp)->fd_link;
831 error = uiomove(ln, strlen(ln), ap->a_uio);
832 } else {
833 error = EOPNOTSUPP;
834 }
835
836 return (error);
837 }
838
839 int
840 fdesc_read(v)
841 void *v;
842 {
843 struct vop_read_args /* {
844 struct vnode *a_vp;
845 struct uio *a_uio;
846 int a_ioflag;
847 struct ucred *a_cred;
848 } */ *ap = v;
849 int error = EOPNOTSUPP;
850 struct vnode *vp = ap->a_vp;
851
852 switch (VTOFDESC(vp)->fd_type) {
853 case Fctty:
854 VOP_UNLOCK(vp, 0);
855 error = (*ctty_cdevsw.d_read)(devctty, ap->a_uio, ap->a_ioflag);
856 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
857 break;
858
859 default:
860 error = EOPNOTSUPP;
861 break;
862 }
863
864 return (error);
865 }
866
867 int
868 fdesc_write(v)
869 void *v;
870 {
871 struct vop_write_args /* {
872 struct vnode *a_vp;
873 struct uio *a_uio;
874 int a_ioflag;
875 struct ucred *a_cred;
876 } */ *ap = v;
877 int error = EOPNOTSUPP;
878 struct vnode *vp = ap->a_vp;
879
880 switch (VTOFDESC(vp)->fd_type) {
881 case Fctty:
882 VOP_UNLOCK(vp, 0);
883 error = (*ctty_cdevsw.d_write)(devctty, ap->a_uio,
884 ap->a_ioflag);
885 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
886 break;
887
888 default:
889 error = EOPNOTSUPP;
890 break;
891 }
892
893 return (error);
894 }
895
896 int
897 fdesc_ioctl(v)
898 void *v;
899 {
900 struct vop_ioctl_args /* {
901 struct vnode *a_vp;
902 u_long a_command;
903 caddr_t a_data;
904 int a_fflag;
905 struct ucred *a_cred;
906 struct proc *a_p;
907 } */ *ap = v;
908 int error = EOPNOTSUPP;
909
910 switch (VTOFDESC(ap->a_vp)->fd_type) {
911 case Fctty:
912 error = (*ctty_cdevsw.d_ioctl)(devctty, ap->a_command,
913 ap->a_data, ap->a_fflag,
914 ap->a_p);
915 break;
916
917 default:
918 error = EOPNOTSUPP;
919 break;
920 }
921
922 return (error);
923 }
924
925 int
926 fdesc_poll(v)
927 void *v;
928 {
929 struct vop_poll_args /* {
930 struct vnode *a_vp;
931 int a_events;
932 struct proc *a_p;
933 } */ *ap = v;
934 int revents;
935
936 switch (VTOFDESC(ap->a_vp)->fd_type) {
937 case Fctty:
938 revents = (*ctty_cdevsw.d_poll)(devctty, ap->a_events, ap->a_p);
939 break;
940
941 default:
942 revents = genfs_poll(v);
943 break;
944 }
945
946 return (revents);
947 }
948
949 int
950 fdesc_kqfilter(v)
951 void *v;
952 {
953 struct vop_kqfilter_args /* {
954 struct vnode *a_vp;
955 struct knote *a_kn;
956 } */ *ap = v;
957 int error;
958 struct proc *p;
959 struct file *fp;
960
961 switch (VTOFDESC(ap->a_vp)->fd_type) {
962 case Fctty:
963 error = (*ctty_cdevsw.d_kqfilter)(devctty, ap->a_kn);
964 break;
965
966 case Fdesc:
967 /* just invoke kqfilter for the underlying descriptor */
968 p = curproc; /* XXX hopefully ok to use curproc here */
969 if ((fp = fd_getfile(p->p_fd, VTOFDESC(ap->a_vp)->fd_fd)) == NULL)
970 return (1);
971
972 FILE_USE(fp);
973 error = (*fp->f_ops->fo_kqfilter)(fp, ap->a_kn);
974 FILE_UNUSE(fp, p);
975 break;
976
977 default:
978 return (genfs_kqfilter(v));
979 }
980
981 return (error);
982 }
983
984 int
985 fdesc_inactive(v)
986 void *v;
987 {
988 struct vop_inactive_args /* {
989 struct vnode *a_vp;
990 struct proc *a_p;
991 } */ *ap = v;
992 struct vnode *vp = ap->a_vp;
993
994 /*
995 * Clear out the v_type field to avoid
996 * nasty things happening in vgone().
997 */
998 VOP_UNLOCK(vp, 0);
999 vp->v_type = VNON;
1000 return (0);
1001 }
1002
1003 int
1004 fdesc_reclaim(v)
1005 void *v;
1006 {
1007 struct vop_reclaim_args /* {
1008 struct vnode *a_vp;
1009 } */ *ap = v;
1010 struct vnode *vp = ap->a_vp;
1011 struct fdescnode *fd = VTOFDESC(vp);
1012
1013 LIST_REMOVE(fd, fd_hash);
1014 FREE(vp->v_data, M_TEMP);
1015 vp->v_data = 0;
1016
1017 return (0);
1018 }
1019
1020 /*
1021 * Return POSIX pathconf information applicable to special devices.
1022 */
1023 int
1024 fdesc_pathconf(v)
1025 void *v;
1026 {
1027 struct vop_pathconf_args /* {
1028 struct vnode *a_vp;
1029 int a_name;
1030 register_t *a_retval;
1031 } */ *ap = v;
1032
1033 switch (ap->a_name) {
1034 case _PC_LINK_MAX:
1035 *ap->a_retval = LINK_MAX;
1036 return (0);
1037 case _PC_MAX_CANON:
1038 *ap->a_retval = MAX_CANON;
1039 return (0);
1040 case _PC_MAX_INPUT:
1041 *ap->a_retval = MAX_INPUT;
1042 return (0);
1043 case _PC_PIPE_BUF:
1044 *ap->a_retval = PIPE_BUF;
1045 return (0);
1046 case _PC_CHOWN_RESTRICTED:
1047 *ap->a_retval = 1;
1048 return (0);
1049 case _PC_VDISABLE:
1050 *ap->a_retval = _POSIX_VDISABLE;
1051 return (0);
1052 case _PC_SYNC_IO:
1053 *ap->a_retval = 1;
1054 return (0);
1055 default:
1056 return (EINVAL);
1057 }
1058 /* NOTREACHED */
1059 }
1060
1061 /*
1062 * Print out the contents of a /dev/fd vnode.
1063 */
1064 /* ARGSUSED */
1065 int
1066 fdesc_print(v)
1067 void *v;
1068 {
1069 printf("tag VT_NON, fdesc vnode\n");
1070 return (0);
1071 }
1072
1073 int
1074 fdesc_link(v)
1075 void *v;
1076 {
1077 struct vop_link_args /* {
1078 struct vnode *a_dvp;
1079 struct vnode *a_vp;
1080 struct componentname *a_cnp;
1081 } */ *ap = v;
1082
1083 VOP_ABORTOP(ap->a_dvp, ap->a_cnp);
1084 vput(ap->a_dvp);
1085 return (EROFS);
1086 }
1087
1088 int
1089 fdesc_symlink(v)
1090 void *v;
1091 {
1092 struct vop_symlink_args /* {
1093 struct vnode *a_dvp;
1094 struct vnode **a_vpp;
1095 struct componentname *a_cnp;
1096 struct vattr *a_vap;
1097 char *a_target;
1098 } */ *ap = v;
1099
1100 VOP_ABORTOP(ap->a_dvp, ap->a_cnp);
1101 vput(ap->a_dvp);
1102 return (EROFS);
1103 }
1104