]> git.saurik.com Git - apple/xnu.git/blame - bsd/miscfs/devfs/devfs_fdesc_support.c
xnu-2782.1.97.tar.gz
[apple/xnu.git] / bsd / miscfs / devfs / devfs_fdesc_support.c
CommitLineData
1c79356b 1/*
2d21ac55 2 * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved.
5d5c5d0d 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
29/*
30 * Copyright (c) 1992, 1993
31 * The Regents of the University of California. All rights reserved.
32 *
33 * This code is derived from software donated to Berkeley by
34 * Jan-Simon Pendry.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. All advertising materials mentioning features or use of this software
45 * must display the following acknowledgement:
46 * This product includes software developed by the University of
47 * California, Berkeley and its contributors.
48 * 4. Neither the name of the University nor the names of its contributors
49 * may be used to endorse or promote products derived from this software
50 * without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 * SUCH DAMAGE.
63 *
64 * @(#)fdesc_vnops.c 8.17 (Berkeley) 5/22/95
65 *
66 */
67
68/*
69 * /dev/fd Filesystem
70 */
71
72#include <sys/param.h>
73#include <sys/systm.h>
74#include <sys/types.h>
75#include <sys/time.h>
91447636 76#include <sys/proc_internal.h>
1c79356b
A
77#include <sys/kernel.h> /* boottime */
78#include <sys/resourcevar.h>
79#include <sys/filedesc.h>
91447636
A
80#include <sys/kauth.h>
81#include <sys/vnode_internal.h>
1c79356b 82#include <sys/malloc.h>
91447636 83#include <sys/file_internal.h>
1c79356b 84#include <sys/stat.h>
91447636 85#include <sys/mount_internal.h>
1c79356b 86#include <sys/namei.h>
1c79356b
A
87#include <sys/dirent.h>
88#include <sys/ubc.h>
91447636
A
89#include <sys/socketvar.h>
90#include <sys/pipe.h>
91#include <sys/uio_internal.h>
1c79356b 92#include <vfs/vfs_support.h>
91447636 93#include <pexpert/pexpert.h>
b0d623f7
A
94#include <miscfs/devfs/fdesc.h>
95#include <miscfs/devfs/devfs.h>
96#include <miscfs/devfs/devfsdefs.h>
1c79356b 97
1c79356b
A
98#define FDL_WANT 0x01
99#define FDL_LOCKED 0x02
100static int fdcache_lock;
101
1c79356b
A
102
103#if (FD_STDIN != FD_STDOUT-1) || (FD_STDOUT != FD_STDERR-1)
104FD_STDIN, FD_STDOUT, FD_STDERR must be a sequence n, n+1, n+2
105#endif
106
9bccf70c 107#define NFDCACHE 3
1c79356b
A
108
109#define FD_NHASH(ix) \
110 (&fdhashtbl[(ix) & fdhash])
111LIST_HEAD(fdhashhead, fdescnode) *fdhashtbl;
112u_long fdhash;
113
91447636
A
114static int fdesc_attr(int fd, struct vnode_attr *vap, vfs_context_t a_context);
115
b0d623f7
A
116lck_mtx_t fdesc_mtx;
117lck_grp_t *fdesc_lckgrp;
118
119static void
120fdesc_lock(void)
121{
122 lck_mtx_lock(&fdesc_mtx);
123}
124
125static void
126fdesc_unlock(void)
127{
128 lck_mtx_unlock(&fdesc_mtx);
129}
130
91447636 131
1c79356b 132/*
b0d623f7 133 * Initialise cache headers, create the devfs node
1c79356b 134 */
91447636 135int
b0d623f7 136devfs_fdesc_init()
1c79356b 137{
b0d623f7
A
138 int error = 0;
139 devnode_t *rootdir = dev_root->de_dnp;
140 devdirent_t *direntp;
141
142 /* XXX Make sure you have the right path... */
1c79356b 143 fdhashtbl = hashinit(NFDCACHE, M_CACHE, &fdhash);
b0d623f7
A
144 fdesc_lckgrp = lck_grp_alloc_init("fdesc", NULL);
145 lck_mtx_init(&fdesc_mtx, fdesc_lckgrp, NULL);
91447636 146
b0d623f7
A
147 DEVFS_LOCK();
148 dev_add_entry("fd", rootdir, DEV_DEVFD, NULL, NULL, NULL, &direntp);
149 devfs_fdesc_makelinks();
150 DEVFS_UNLOCK();
151
152 return(error);
1c79356b
A
153}
154
b0d623f7
A
155/*
156 * Called during early startup, no need to synchronize
157 */
1c79356b 158int
b0d623f7
A
159devfs_fdesc_makelinks()
160{
161 int error = 0;
162 devdirent_t *stdin_ent = NULL, *stdout_ent = NULL, *stderr_ent = NULL;
163 devnode_t *root_devnode = dev_root->de_dnp;
164
165 /* We do this ugliness to get around some "const" warnings */
166 char in[] = "stdin";
167 char out[] = "stdout";
168 char err[] = "stderr";
169 char zero[] = "fd/0";
170 char one[] = "fd/1";
171 char two[] = "fd/2";
172
173 if ((error = devfs_make_symlink(root_devnode, in, 0555, zero, &stdin_ent))) {
174 printf("Couldn't make stdin, err %d.\n", error);
175 goto bad;
176 }
177
178 if ((error = devfs_make_symlink(root_devnode, out, 0555, one, &stdout_ent))) {
179 printf("Couldn't make stdout, err %d.\n", error);
180 goto bad;
181 }
182
183 if ((error = devfs_make_symlink(root_devnode, err, 0555, two, &stderr_ent))) {
184 printf("Couldn't make stderr, err %d.\n", error);
185 goto bad;
186 }
187
188 return 0;
189
190bad:
191 if (stdin_ent) {
192 dev_free_name(stdin_ent);
193 }
194 if (stdout_ent) {
195 dev_free_name(stdout_ent);
196 }
197 if (stderr_ent) {
198 dev_free_name(stderr_ent);
199 }
200
201 return error;
202}
203
204int
205fdesc_allocvp(fdntype ftype, int ix, struct mount *mp, struct vnode **vpp, enum vtype vtype, int fdno)
1c79356b 206{
1c79356b
A
207 struct fdhashhead *fc;
208 struct fdescnode *fd;
209 int error = 0;
91447636
A
210 int vid = 0;
211 struct vnode_fsparam vfsp;
1c79356b 212
b0d623f7
A
213 fdesc_lock();
214
1c79356b
A
215 fc = FD_NHASH(ix);
216loop:
217 for (fd = fc->lh_first; fd != 0; fd = fd->fd_hash.le_next) {
91447636 218 if (fd->fd_ix == ix && vnode_mount(fd->fd_vnode) == mp) {
91447636 219 vid = vnode_vid(fd->fd_vnode);
b0d623f7 220 fdesc_unlock();
91447636 221
39236c6e
A
222 if (vnode_getwithvid(fd->fd_vnode, vid)) {
223 fdesc_lock();
1c79356b 224 goto loop;
39236c6e 225 }
b0d623f7 226
1c79356b 227 *vpp = fd->fd_vnode;
91447636
A
228 (*vpp)->v_type = vtype;
229
1c79356b
A
230 return (error);
231 }
232 }
233
b0d623f7 234 /* Only one thread can add to the hash at a time */
1c79356b
A
235 if (fdcache_lock & FDL_LOCKED) {
236 fdcache_lock |= FDL_WANT;
b0d623f7 237 msleep((caddr_t) &fdcache_lock, &fdesc_mtx, PINOD, "fdesc_allocvp", NULL);
1c79356b
A
238 goto loop;
239 }
b0d623f7 240
1c79356b 241 fdcache_lock |= FDL_LOCKED;
b0d623f7 242 fdesc_unlock();
1c79356b
A
243
244 MALLOC(fd, void *, sizeof(struct fdescnode), M_TEMP, M_WAITOK);
91447636
A
245
246 vfsp.vnfs_mp = mp;
247 vfsp.vnfs_vtype = vtype;
248 vfsp.vnfs_str = "fdesc";
2d21ac55 249 vfsp.vnfs_dvp = NULL;
91447636 250 vfsp.vnfs_fsnode = fd;
2d21ac55 251 vfsp.vnfs_cnp = NULL;
91447636
A
252 vfsp.vnfs_vops = fdesc_vnodeop_p;
253 vfsp.vnfs_rdev = 0;
254 vfsp.vnfs_filesize = 0;
255 vfsp.vnfs_flags = VNFS_NOCACHE | VNFS_CANTCACHE;
256 vfsp.vnfs_marksystem = 0;
b0d623f7 257 vfsp.vnfs_markroot = 0;
91447636
A
258
259 error = vnode_create(VNCREATE_FLAVOR, VCREATESIZE, &vfsp, vpp);
1c79356b
A
260 if (error) {
261 FREE(fd, M_TEMP);
b0d623f7 262 fdesc_lock();
1c79356b
A
263 goto out;
264 }
b0d623f7 265
91447636 266 (*vpp)->v_tag = VT_FDESC;
1c79356b
A
267 fd->fd_vnode = *vpp;
268 fd->fd_type = ftype;
269 fd->fd_fd = -1;
2d21ac55 270 fd->fd_link = NULL;
1c79356b 271 fd->fd_ix = ix;
b0d623f7
A
272 fd->fd_fd = fdno;
273
274 fdesc_lock();
1c79356b 275
b0d623f7 276 LIST_INSERT_HEAD(fc, fd, fd_hash);
1c79356b 277out:
b0d623f7 278 /* Hold the lock when we get here */
1c79356b
A
279 fdcache_lock &= ~FDL_LOCKED;
280
281 if (fdcache_lock & FDL_WANT) {
282 fdcache_lock &= ~FDL_WANT;
283 wakeup((caddr_t) &fdcache_lock);
284 }
b0d623f7
A
285
286 fdesc_unlock();
1c79356b
A
287
288 return (error);
289}
290
291/*
292 * vp is the current namei directory
293 * ndp is the name to locate in that directory...
b0d623f7
A
294 *
295 * This vnop should only be called on the special directory /dev/fd.
1c79356b
A
296 */
297int
b0d623f7 298devfs_devfd_lookup(struct vnop_lookup_args *ap)
1c79356b
A
299{
300 struct vnode **vpp = ap->a_vpp;
301 struct vnode *dvp = ap->a_dvp;
302 struct componentname *cnp = ap->a_cnp;
303 char *pname = cnp->cn_nameptr;
91447636
A
304 struct proc *p = vfs_context_proc(ap->a_context);
305 int numfiles = p->p_fd->fd_nfiles;
306 int fd;
1c79356b
A
307 int error;
308 struct vnode *fvp;
1c79356b 309
1c79356b
A
310 if (cnp->cn_namelen == 1 && *pname == '.') {
311 *vpp = dvp;
91447636
A
312
313 if ( (error = vnode_get(dvp)) ) {
314 return(error);
315 }
1c79356b
A
316 return (0);
317 }
318
b0d623f7
A
319 fd = 0;
320 while (*pname >= '0' && *pname <= '9') {
321 fd = 10 * fd + *pname++ - '0';
322 if (fd >= numfiles)
1c79356b 323 break;
b0d623f7 324 }
1c79356b 325
b0d623f7
A
326 if (*pname != '\0') {
327 error = ENOENT;
328 goto bad;
329 }
1c79356b 330
b0d623f7
A
331 if (fd < 0 || fd >= numfiles ||
332 *fdfile(p, fd) == NULL ||
333 (*fdflags(p, fd) & UF_RESERVED)) {
334 error = EBADF;
335 goto bad;
1c79356b
A
336 }
337
b0d623f7
A
338 error = fdesc_allocvp(Fdesc, FD_DESC+fd, dvp->v_mount, &fvp, VNON, fd);
339 if (error)
340 goto bad;
341 *vpp = fvp;
342 return (0);
343
344bad:
1c79356b
A
345 *vpp = NULL;
346 return (error);
347}
348
349int
2d21ac55 350fdesc_open(struct vnop_open_args *ap)
1c79356b
A
351{
352 struct vnode *vp = ap->a_vp;
2d21ac55
A
353 thread_t thr = vfs_context_thread(ap->a_context);
354 uthread_t uu;
1c79356b
A
355 int error = 0;
356
2d21ac55
A
357 if (thr == NULL)
358 return (EINVAL);
359
360 uu = get_bsdthread_info(thr);
361
1c79356b
A
362 switch (VTOFDESC(vp)->fd_type) {
363 case Fdesc:
364 /*
2d21ac55 365 * XXX Kludge: set uu->uu_dupfd to contain the value of the
1c79356b
A
366 * the file descriptor being sought for duplication. The error
367 * return ensures that the vnode for this device will be
368 * released by vn_open. Open will detect this special error and
369 * take the actions in dupfdopen. Other callers of vn_open or
91447636 370 * vnop_open will simply report the error.
1c79356b 371 */
2d21ac55 372 uu->uu_dupfd = VTOFDESC(vp)->fd_fd; /* XXX */
1c79356b
A
373 error = ENODEV;
374 break;
b0d623f7
A
375 default:
376 panic("Invalid type for fdesc node!");
2d21ac55 377 break;
1c79356b
A
378 }
379
380 return (error);
381}
382
383static int
91447636 384fdesc_attr(int fd, struct vnode_attr *vap, vfs_context_t a_context)
1c79356b 385{
91447636
A
386 struct fileproc *fp;
387 struct proc *p = vfs_context_proc(a_context);
1c79356b
A
388 struct stat stb;
389 int error;
390
91447636 391 if ((error = fp_lookup(p, fd, &fp, 0)))
1c79356b 392 return (error);
39236c6e 393 switch (FILEGLOB_DTYPE(fp->f_fglob)) {
1c79356b 394 case DTYPE_VNODE:
2d21ac55 395 if((error = vnode_getwithref((struct vnode *) fp->f_fglob->fg_data)) != 0) {
91447636
A
396 break;
397 }
398 if ((error = vnode_authorize((struct vnode *)fp->f_fglob->fg_data,
399 NULL,
400 KAUTH_VNODE_READ_ATTRIBUTES | KAUTH_VNODE_READ_SECURITY,
401 a_context)) == 0)
402 error = vnode_getattr((struct vnode *)fp->f_fglob->fg_data, vap, a_context);
1c79356b
A
403 if (error == 0 && vap->va_type == VDIR) {
404 /*
405 * directories can cause loops in the namespace,
406 * so turn off the 'x' bits to avoid trouble.
91447636
A
407 *
408 * XXX ACLs break this, of course
1c79356b
A
409 */
410 vap->va_mode &= ~((VEXEC)|(VEXEC>>3)|(VEXEC>>6));
411 }
91447636 412 (void)vnode_put((struct vnode *) fp->f_fglob->fg_data);
1c79356b
A
413 break;
414
415 case DTYPE_SOCKET:
91447636 416 case DTYPE_PIPE:
2d21ac55 417#if SOCKETS
39236c6e 418 if (FILEGLOB_DTYPE(fp->f_fglob) == DTYPE_SOCKET)
2d21ac55 419 error = soo_stat((struct socket *)fp->f_fglob->fg_data, (void *)&stb, 0);
91447636 420 else
2d21ac55 421#endif /* SOCKETS */
b0d623f7 422 error = pipe_stat((struct pipe *)fp->f_fglob->fg_data, (void *)&stb, 0);
91447636 423
1c79356b 424 if (error == 0) {
39236c6e 425 if (FILEGLOB_DTYPE(fp->f_fglob) == DTYPE_SOCKET)
91447636
A
426 VATTR_RETURN(vap, va_type, VSOCK);
427 else
428 VATTR_RETURN(vap, va_type, VFIFO);
429
430 VATTR_RETURN(vap, va_mode, stb.st_mode);
431 VATTR_RETURN(vap, va_nlink, stb.st_nlink);
432 VATTR_RETURN(vap, va_uid, stb.st_uid);
433 VATTR_RETURN(vap, va_gid, stb.st_gid);
434 VATTR_RETURN(vap, va_fsid, stb.st_dev);
435 VATTR_RETURN(vap, va_fileid, stb.st_ino);
436 VATTR_RETURN(vap, va_data_size, stb.st_size);
437 VATTR_RETURN(vap, va_access_time, stb.st_atimespec);
438 VATTR_RETURN(vap, va_modify_time, stb.st_mtimespec);
439 VATTR_RETURN(vap, va_change_time, stb.st_ctimespec);
440 VATTR_RETURN(vap, va_gen, stb.st_gen);
441 VATTR_RETURN(vap, va_flags, stb.st_flags);
442 VATTR_RETURN(vap, va_rdev, stb.st_rdev);
443 VATTR_RETURN(vap, va_total_alloc, stb.st_blocks * stb.st_blksize);
444 VATTR_RETURN(vap, va_acl, NULL);
1c79356b
A
445 }
446 break;
447
448 default:
91447636 449 error = EBADF;
1c79356b
A
450 }
451
91447636 452 fp_drop(p, fd, fp, 0);
1c79356b
A
453 return (error);
454}
455
456int
2d21ac55 457fdesc_getattr(struct vnop_getattr_args *ap)
1c79356b
A
458{
459 struct vnode *vp = ap->a_vp;
91447636 460 struct vnode_attr *vap = ap->a_vap;
1c79356b
A
461 unsigned fd;
462 int error = 0;
463
464 switch (VTOFDESC(vp)->fd_type) {
1c79356b
A
465 case Fdesc:
466 fd = VTOFDESC(vp)->fd_fd;
91447636 467 error = fdesc_attr(fd, vap, ap->a_context);
1c79356b
A
468 break;
469
470 default:
b0d623f7 471 panic("Invalid type for an fdesc node!\n");
1c79356b
A
472 break;
473 }
91447636 474
b0d623f7
A
475 /*
476 * Yes, we do this without locking, but this value is always just
477 * a snapshot.
478 */
1c79356b
A
479 if (error == 0) {
480 vp->v_type = vap->va_type;
b0d623f7
A
481
482 /* We need an inactive to reset type to VNON */
483 vnode_setneedinactive(vp);
1c79356b
A
484 }
485
486 return (error);
487}
488
489int
2d21ac55 490fdesc_setattr(struct vnop_setattr_args *ap)
1c79356b 491{
91447636 492 struct fileproc *fp;
1c79356b
A
493 unsigned fd;
494 int error;
91447636 495 struct proc * p = vfs_context_proc(ap->a_context);
1c79356b
A
496
497 /*
498 * Can't mess with the root vnode
499 */
500 switch (VTOFDESC(ap->a_vp)->fd_type) {
501 case Fdesc:
502 break;
1c79356b 503 default:
b0d623f7 504 panic("Invalid type for an fdesc node!\n");
1c79356b
A
505 return (EACCES);
506 }
507
508 fd = VTOFDESC(ap->a_vp)->fd_fd;
91447636 509 if ((error = fp_lookup(vfs_context_proc(ap->a_context), fd, &fp, 0)))
1c79356b
A
510 return (error);
511
512 /*
513 * Can setattr the underlying vnode, but not sockets!
514 */
39236c6e 515 switch (FILEGLOB_DTYPE(fp->f_fglob)) {
1c79356b 516 case DTYPE_VNODE:
91447636
A
517 {
518 if ((error = vnode_getwithref((struct vnode *) fp->f_fglob->fg_data)) != 0)
519 break;
520 error = vnode_setattr((struct vnode *) fp->f_fglob->fg_data, ap->a_vap, ap->a_context);
521 (void)vnode_put((struct vnode *) fp->f_fglob->fg_data);
1c79356b 522 break;
91447636 523 }
1c79356b
A
524
525 case DTYPE_SOCKET:
91447636 526 case DTYPE_PIPE:
1c79356b
A
527 error = 0;
528 break;
529
530 default:
39236c6e 531 error = EBADF;
1c79356b
A
532 break;
533 }
534
91447636 535 fp_drop(p, fd, fp, 0);
1c79356b
A
536 return (error);
537}
538
539#define UIO_MX 16
540
b0d623f7 541/*
1c79356b 542static struct dirtmp {
b0d623f7 543 u_int32_t d_fileno;
1c79356b
A
544 u_short d_reclen;
545 u_short d_namlen;
546 char d_name[8];
547} rootent[] = {
548 { FD_DEVFD, UIO_MX, 2, "fd" },
549 { FD_STDIN, UIO_MX, 5, "stdin" },
550 { FD_STDOUT, UIO_MX, 6, "stdout" },
551 { FD_STDERR, UIO_MX, 6, "stderr" },
91447636 552 { 0, 0, 0, "" }
1c79356b 553};
b0d623f7 554*/
1c79356b 555
b0d623f7 556/* Only called on /dev/fd */
1c79356b 557int
b0d623f7 558devfs_devfd_readdir(struct vnop_readdir_args *ap)
1c79356b
A
559{
560 struct uio *uio = ap->a_uio;
91447636 561 struct proc *p = current_proc();
1c79356b
A
562 int i, error;
563
564 /*
565 * We don't allow exporting fdesc mounts, and currently local
566 * requests do not need cookies.
567 */
91447636 568 if (ap->a_flags & (VNODE_READDIR_EXTENDED | VNODE_READDIR_REQSEEKOFF))
9bccf70c 569 return (EINVAL);
1c79356b 570
1c79356b
A
571 i = uio->uio_offset / UIO_MX;
572 error = 0;
91447636 573 while (uio_resid(uio) > 0) {
1c79356b
A
574 if (i >= p->p_fd->fd_nfiles)
575 break;
576
577 if (*fdfile(p, i) != NULL && !(*fdflags(p, i) & UF_RESERVED)) {
578 struct dirent d;
579 struct dirent *dp = &d;
580
581 bzero((caddr_t) dp, UIO_MX);
582
2d21ac55
A
583 dp->d_namlen = snprintf(dp->d_name, sizeof(dp->d_name),
584 "%d", i);
1c79356b
A
585 dp->d_reclen = UIO_MX;
586 dp->d_type = DT_UNKNOWN;
587 dp->d_fileno = i + FD_STDIN;
588 /*
589 * And ship to userland
590 */
591 error = uiomove((caddr_t) dp, UIO_MX, uio);
592 if (error)
593 break;
594 }
595 i++;
596 }
597
598 uio->uio_offset = i * UIO_MX;
599 return (error);
600}
601
1c79356b 602int
91447636 603fdesc_read(__unused struct vnop_read_args *ap)
1c79356b 604{
91447636 605 return (ENOTSUP);
1c79356b
A
606}
607
608int
91447636 609fdesc_write(__unused struct vnop_write_args *ap)
1c79356b 610{
91447636 611 return (ENOTSUP);
1c79356b
A
612}
613
614int
91447636 615fdesc_ioctl(__unused struct vnop_ioctl_args *ap)
1c79356b 616{
91447636 617 return (ENOTSUP);
1c79356b
A
618}
619
620int
91447636 621fdesc_select(__unused struct vnop_select_args *ap)
1c79356b 622{
91447636 623 return (ENOTSUP);
1c79356b
A
624}
625
626int
2d21ac55 627fdesc_inactive(struct vnop_inactive_args *ap)
1c79356b
A
628{
629 struct vnode *vp = ap->a_vp;
630
631 /*
632 * Clear out the v_type field to avoid
633 * nasty things happening in vgone().
634 */
1c79356b 635 vp->v_type = VNON;
b0d623f7 636
1c79356b
A
637 return (0);
638}
639
640int
2d21ac55 641fdesc_reclaim(struct vnop_reclaim_args *ap)
1c79356b
A
642{
643 struct vnode *vp = ap->a_vp;
644 struct fdescnode *fd = VTOFDESC(vp);
645
b0d623f7
A
646 fdesc_lock();
647
1c79356b
A
648 LIST_REMOVE(fd, fd_hash);
649 FREE(vp->v_data, M_TEMP);
2d21ac55 650 vp->v_data = NULL;
b0d623f7
A
651
652 fdesc_unlock();
1c79356b
A
653
654 return (0);
655}
656
657/*
658 * Return POSIX pathconf information applicable to special devices.
659 */
91447636 660int
2d21ac55 661fdesc_pathconf(struct vnop_pathconf_args *ap)
1c79356b
A
662{
663
664 switch (ap->a_name) {
665 case _PC_LINK_MAX:
666 *ap->a_retval = LINK_MAX;
667 return (0);
668 case _PC_MAX_CANON:
669 *ap->a_retval = MAX_CANON;
670 return (0);
671 case _PC_MAX_INPUT:
672 *ap->a_retval = MAX_INPUT;
673 return (0);
674 case _PC_PIPE_BUF:
675 *ap->a_retval = PIPE_BUF;
676 return (0);
677 case _PC_CHOWN_RESTRICTED:
2d21ac55 678 *ap->a_retval = 200112; /* _POSIX_CHOWN_RESTRICTED */
1c79356b
A
679 return (0);
680 case _PC_VDISABLE:
681 *ap->a_retval = _POSIX_VDISABLE;
682 return (0);
683 default:
684 return (EINVAL);
685 }
686 /* NOTREACHED */
687}
688
1c79356b
A
689/*
690 * /dev/fd "should never get here" operation
691 */
692int
91447636 693fdesc_badop(void)
1c79356b
A
694{
695
9bccf70c 696 return (ENOTSUP);
1c79356b
A
697 /* NOTREACHED */
698}
699
700#define VOPFUNC int (*)(void *)
701
91447636
A
702#define fdesc_create (int (*) (struct vnop_create_args *))eopnotsupp
703#define fdesc_mknod (int (*) (struct vnop_mknod_args *))eopnotsupp
704#define fdesc_close (int (*) (struct vnop_close_args *))nullop
705#define fdesc_access (int (*) (struct vnop_access_args *))nullop
706#define fdesc_mmap (int (*) (struct vnop_mmap_args *))eopnotsupp
707#define fdesc_revoke nop_revoke
708#define fdesc_fsync (int (*) (struct vnop_fsync_args *))nullop
709#define fdesc_remove (int (*) (struct vnop_remove_args *))eopnotsupp
710#define fdesc_link (int (*) (struct vnop_link_args *))eopnotsupp
711#define fdesc_rename (int (*) (struct vnop_rename_args *))eopnotsupp
712#define fdesc_mkdir (int (*) (struct vnop_mkdir_args *))eopnotsupp
713#define fdesc_rmdir (int (*) (struct vnop_rmdir_args *))eopnotsupp
714#define fdesc_symlink (int (*) (struct vnop_symlink_args *))eopnotsupp
715#define fdesc_strategy (int (*) (struct vnop_strategy_args *))fdesc_badop
716#define fdesc_advlock (int (*) (struct vnop_advlock_args *))eopnotsupp
717#define fdesc_bwrite (int (*) (struct vnop_bwrite_args *))eopnotsupp
718#define fdesc_blktooff (int (*) (struct vnop_blktooff_args *))eopnotsupp
719#define fdesc_offtoblk (int (*) (struct vnop_offtoblk_args *))eopnotsupp
720#define fdesc_blockmap (int (*) (struct vnop_blockmap_args *))eopnotsupp
1c79356b
A
721
722int (**fdesc_vnodeop_p)(void *);
b0d623f7 723struct vnodeopv_entry_desc devfs_fdesc_vnodeop_entries[] = {
91447636 724 { &vnop_default_desc, (VOPFUNC)vn_default_error },
b0d623f7 725 { &vnop_lookup_desc, (VOPFUNC)vn_default_error}, /* lookup */
91447636
A
726 { &vnop_create_desc, (VOPFUNC)fdesc_create }, /* create */
727 { &vnop_mknod_desc, (VOPFUNC)fdesc_mknod }, /* mknod */
728 { &vnop_open_desc, (VOPFUNC)fdesc_open }, /* open */
729 { &vnop_close_desc, (VOPFUNC)fdesc_close }, /* close */
730 { &vnop_access_desc, (VOPFUNC)fdesc_access }, /* access */
731 { &vnop_getattr_desc, (VOPFUNC)fdesc_getattr }, /* getattr */
732 { &vnop_setattr_desc, (VOPFUNC)fdesc_setattr }, /* setattr */
733 { &vnop_read_desc, (VOPFUNC)fdesc_read }, /* read */
734 { &vnop_write_desc, (VOPFUNC)fdesc_write }, /* write */
735 { &vnop_ioctl_desc, (VOPFUNC)fdesc_ioctl }, /* ioctl */
736 { &vnop_select_desc, (VOPFUNC)fdesc_select }, /* select */
737 { &vnop_revoke_desc, (VOPFUNC)fdesc_revoke }, /* revoke */
738 { &vnop_mmap_desc, (VOPFUNC)fdesc_mmap }, /* mmap */
739 { &vnop_fsync_desc, (VOPFUNC)fdesc_fsync }, /* fsync */
740 { &vnop_remove_desc, (VOPFUNC)fdesc_remove }, /* remove */
741 { &vnop_link_desc, (VOPFUNC)fdesc_link }, /* link */
742 { &vnop_rename_desc, (VOPFUNC)fdesc_rename }, /* rename */
743 { &vnop_mkdir_desc, (VOPFUNC)fdesc_mkdir }, /* mkdir */
744 { &vnop_rmdir_desc, (VOPFUNC)fdesc_rmdir }, /* rmdir */
745 { &vnop_symlink_desc, (VOPFUNC)fdesc_symlink }, /* symlink */
b0d623f7
A
746 { &vnop_readdir_desc, (VOPFUNC)vn_default_error},/* readdir */
747 { &vnop_readlink_desc, (VOPFUNC)err_readlink}, /* readlink */
91447636
A
748 { &vnop_inactive_desc, (VOPFUNC)fdesc_inactive },/* inactive */
749 { &vnop_reclaim_desc, (VOPFUNC)fdesc_reclaim }, /* reclaim */
750 { &vnop_strategy_desc, (VOPFUNC)fdesc_strategy }, /* strategy */
751 { &vnop_pathconf_desc, (VOPFUNC)fdesc_pathconf }, /* pathconf */
752 { &vnop_advlock_desc, (VOPFUNC)fdesc_advlock }, /* advlock */
753 { &vnop_bwrite_desc, (VOPFUNC)fdesc_bwrite }, /* bwrite */
754 { &vnop_pagein_desc, (VOPFUNC)err_pagein }, /* pagein */
755 { &vnop_pageout_desc, (VOPFUNC)err_pageout }, /* pageout */
756 { &vnop_copyfile_desc, (VOPFUNC)err_copyfile }, /* Copyfile */
757 { &vnop_blktooff_desc, (VOPFUNC)fdesc_blktooff }, /* blktooff */
758 { &vnop_blktooff_desc, (VOPFUNC)fdesc_offtoblk }, /* offtoblk */
759 { &vnop_blockmap_desc, (VOPFUNC)fdesc_blockmap }, /* blockmap */
1c79356b
A
760 { (struct vnodeop_desc*)NULL, (VOPFUNC)NULL }
761};
b0d623f7
A
762
763struct vnodeopv_desc devfs_fdesc_vnodeop_opv_desc =
764 { &fdesc_vnodeop_p, devfs_fdesc_vnodeop_entries };
765