]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (c) 2000-2019 Apple Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ | |
5 | * | |
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. | |
14 | * | |
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 | |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
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. | |
25 | * | |
26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
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> | |
76 | #include <sys/proc_internal.h> | |
77 | #include <sys/kernel.h> /* boottime */ | |
78 | #include <sys/resourcevar.h> | |
79 | #include <sys/filedesc.h> | |
80 | #include <sys/kauth.h> | |
81 | #include <sys/vnode_internal.h> | |
82 | #include <sys/malloc.h> | |
83 | #include <sys/file_internal.h> | |
84 | #include <sys/stat.h> | |
85 | #include <sys/mount_internal.h> | |
86 | #include <sys/namei.h> | |
87 | #include <sys/dirent.h> | |
88 | #include <sys/ubc.h> | |
89 | #include <sys/socketvar.h> | |
90 | #include <sys/pipe.h> | |
91 | #include <sys/uio_internal.h> | |
92 | #include <vfs/vfs_support.h> | |
93 | #include <pexpert/pexpert.h> | |
94 | #include <miscfs/devfs/fdesc.h> | |
95 | #include <miscfs/devfs/devfs.h> | |
96 | #include <miscfs/devfs/devfsdefs.h> | |
97 | ||
98 | #define FDL_WANT 0x01 | |
99 | #define FDL_LOCKED 0x02 | |
100 | static int fdcache_lock; | |
101 | ||
102 | ||
103 | #if (FD_STDIN != FD_STDOUT - 1) || (FD_STDOUT != FD_STDERR - 1) | |
104 | FD_STDIN, FD_STDOUT, FD_STDERR must be a sequence n, n + 1, n + 2 | |
105 | #endif | |
106 | ||
107 | #define NFDCACHE 3 | |
108 | ||
109 | #define FD_NHASH(ix) \ | |
110 | (&fdhashtbl[(ix) & fdhash]) | |
111 | LIST_HEAD(fdhashhead, fdescnode) * fdhashtbl; | |
112 | u_long fdhash; | |
113 | ||
114 | static int fdesc_attr(int fd, struct vnode_attr *vap, vfs_context_t a_context); | |
115 | ||
116 | lck_mtx_t fdesc_mtx; | |
117 | lck_grp_t *fdesc_lckgrp; | |
118 | ||
119 | static void | |
120 | fdesc_lock(void) | |
121 | { | |
122 | lck_mtx_lock(&fdesc_mtx); | |
123 | } | |
124 | ||
125 | static void | |
126 | fdesc_unlock(void) | |
127 | { | |
128 | lck_mtx_unlock(&fdesc_mtx); | |
129 | } | |
130 | ||
131 | ||
132 | /* | |
133 | * Initialise cache headers, create the devfs node | |
134 | */ | |
135 | int | |
136 | devfs_fdesc_init() | |
137 | { | |
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... */ | |
143 | fdhashtbl = hashinit(NFDCACHE, M_CACHE, &fdhash); | |
144 | fdesc_lckgrp = lck_grp_alloc_init("fdesc", NULL); | |
145 | lck_mtx_init(&fdesc_mtx, fdesc_lckgrp, NULL); | |
146 | ||
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; | |
153 | } | |
154 | ||
155 | /* | |
156 | * Called during early startup, no need to synchronize | |
157 | */ | |
158 | int | |
159 | devfs_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 | ||
190 | bad: | |
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 | ||
204 | int | |
205 | fdesc_allocvp(fdntype ftype, int ix, struct mount *mp, struct vnode **vpp, enum vtype vtype, int fdno) | |
206 | { | |
207 | struct fdhashhead *fc; | |
208 | struct fdescnode *fd; | |
209 | int error = 0; | |
210 | int vid = 0; | |
211 | struct vnode_fsparam vfsp; | |
212 | ||
213 | fdesc_lock(); | |
214 | ||
215 | fc = FD_NHASH(ix); | |
216 | loop: | |
217 | for (fd = fc->lh_first; fd != 0; fd = fd->fd_hash.le_next) { | |
218 | if (fd->fd_ix == ix && vnode_mount(fd->fd_vnode) == mp) { | |
219 | vid = vnode_vid(fd->fd_vnode); | |
220 | fdesc_unlock(); | |
221 | ||
222 | if (vnode_getwithvid(fd->fd_vnode, vid)) { | |
223 | fdesc_lock(); | |
224 | goto loop; | |
225 | } | |
226 | ||
227 | *vpp = fd->fd_vnode; | |
228 | (*vpp)->v_type = (uint16_t)vtype; | |
229 | ||
230 | return error; | |
231 | } | |
232 | } | |
233 | ||
234 | /* Only one thread can add to the hash at a time */ | |
235 | if (fdcache_lock & FDL_LOCKED) { | |
236 | fdcache_lock |= FDL_WANT; | |
237 | msleep((caddr_t) &fdcache_lock, &fdesc_mtx, PINOD, "fdesc_allocvp", NULL); | |
238 | goto loop; | |
239 | } | |
240 | ||
241 | fdcache_lock |= FDL_LOCKED; | |
242 | fdesc_unlock(); | |
243 | ||
244 | MALLOC(fd, void *, sizeof(struct fdescnode), M_TEMP, M_WAITOK); | |
245 | ||
246 | vfsp.vnfs_mp = mp; | |
247 | vfsp.vnfs_vtype = vtype; | |
248 | vfsp.vnfs_str = "fdesc"; | |
249 | vfsp.vnfs_dvp = NULL; | |
250 | vfsp.vnfs_fsnode = fd; | |
251 | vfsp.vnfs_cnp = NULL; | |
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; | |
257 | vfsp.vnfs_markroot = 0; | |
258 | ||
259 | error = vnode_create(VNCREATE_FLAVOR, VCREATESIZE, &vfsp, vpp); | |
260 | if (error) { | |
261 | FREE(fd, M_TEMP); | |
262 | fdesc_lock(); | |
263 | goto out; | |
264 | } | |
265 | ||
266 | (*vpp)->v_tag = VT_FDESC; | |
267 | fd->fd_vnode = *vpp; | |
268 | fd->fd_type = ftype; | |
269 | fd->fd_fd = -1; | |
270 | fd->fd_link = NULL; | |
271 | fd->fd_ix = ix; | |
272 | fd->fd_fd = fdno; | |
273 | ||
274 | fdesc_lock(); | |
275 | ||
276 | LIST_INSERT_HEAD(fc, fd, fd_hash); | |
277 | out: | |
278 | /* Hold the lock when we get here */ | |
279 | fdcache_lock &= ~FDL_LOCKED; | |
280 | ||
281 | if (fdcache_lock & FDL_WANT) { | |
282 | fdcache_lock &= ~FDL_WANT; | |
283 | wakeup((caddr_t) &fdcache_lock); | |
284 | } | |
285 | ||
286 | fdesc_unlock(); | |
287 | ||
288 | return error; | |
289 | } | |
290 | ||
291 | /* | |
292 | * vp is the current namei directory | |
293 | * ndp is the name to locate in that directory... | |
294 | * | |
295 | * This vnop should only be called on the special directory /dev/fd. | |
296 | */ | |
297 | int | |
298 | devfs_devfd_lookup(struct vnop_lookup_args *ap) | |
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; | |
304 | struct proc *p = vfs_context_proc(ap->a_context); | |
305 | int numfiles = p->p_fd->fd_nfiles; | |
306 | int fd; | |
307 | int error; | |
308 | struct vnode *fvp; | |
309 | ||
310 | if (cnp->cn_namelen == 1 && *pname == '.') { | |
311 | *vpp = dvp; | |
312 | ||
313 | if ((error = vnode_get(dvp))) { | |
314 | return error; | |
315 | } | |
316 | return 0; | |
317 | } | |
318 | ||
319 | fd = 0; | |
320 | while (*pname >= '0' && *pname <= '9') { | |
321 | fd = 10 * fd + *pname++ - '0'; | |
322 | if (fd >= numfiles) { | |
323 | break; | |
324 | } | |
325 | } | |
326 | ||
327 | if (*pname != '\0') { | |
328 | error = ENOENT; | |
329 | goto bad; | |
330 | } | |
331 | ||
332 | if (fd < 0 || fd >= numfiles || | |
333 | *fdfile(p, fd) == NULL || | |
334 | (*fdflags(p, fd) & UF_RESERVED)) { | |
335 | error = EBADF; | |
336 | goto bad; | |
337 | } | |
338 | ||
339 | error = fdesc_allocvp(Fdesc, FD_DESC + fd, dvp->v_mount, &fvp, VNON, fd); | |
340 | if (error) { | |
341 | goto bad; | |
342 | } | |
343 | *vpp = fvp; | |
344 | return 0; | |
345 | ||
346 | bad: | |
347 | *vpp = NULL; | |
348 | return error; | |
349 | } | |
350 | ||
351 | int | |
352 | fdesc_open(struct vnop_open_args *ap) | |
353 | { | |
354 | struct vnode *vp = ap->a_vp; | |
355 | thread_t thr = vfs_context_thread(ap->a_context); | |
356 | uthread_t uu; | |
357 | int error = 0; | |
358 | ||
359 | if (thr == NULL) { | |
360 | return EINVAL; | |
361 | } | |
362 | ||
363 | uu = get_bsdthread_info(thr); | |
364 | ||
365 | switch (VTOFDESC(vp)->fd_type) { | |
366 | case Fdesc: | |
367 | /* | |
368 | * XXX Kludge: set uu->uu_dupfd to contain the value of the | |
369 | * the file descriptor being sought for duplication. The error | |
370 | * return ensures that the vnode for this device will be | |
371 | * released by vn_open. Open will detect this special error and | |
372 | * take the actions in dupfdopen. Other callers of vn_open or | |
373 | * vnop_open will simply report the error. | |
374 | */ | |
375 | uu->uu_dupfd = VTOFDESC(vp)->fd_fd; /* XXX */ | |
376 | error = ENODEV; | |
377 | break; | |
378 | default: | |
379 | panic("Invalid type for fdesc node!"); | |
380 | break; | |
381 | } | |
382 | ||
383 | return error; | |
384 | } | |
385 | ||
386 | static int | |
387 | fdesc_attr(int fd, struct vnode_attr *vap, vfs_context_t a_context) | |
388 | { | |
389 | struct fileproc *fp; | |
390 | struct proc *p = vfs_context_proc(a_context); | |
391 | struct stat stb; | |
392 | int error; | |
393 | ||
394 | if ((error = fp_lookup(p, fd, &fp, 0))) { | |
395 | return error; | |
396 | } | |
397 | switch (FILEGLOB_DTYPE(fp->fp_glob)) { | |
398 | case DTYPE_VNODE: | |
399 | if ((error = vnode_getwithref((struct vnode *) fp->fp_glob->fg_data)) != 0) { | |
400 | break; | |
401 | } | |
402 | if ((error = vnode_authorize((struct vnode *)fp->fp_glob->fg_data, | |
403 | NULL, | |
404 | KAUTH_VNODE_READ_ATTRIBUTES | KAUTH_VNODE_READ_SECURITY, | |
405 | a_context)) == 0) { | |
406 | error = vnode_getattr((struct vnode *)fp->fp_glob->fg_data, vap, a_context); | |
407 | } | |
408 | if (error == 0 && vap->va_type == VDIR) { | |
409 | /* | |
410 | * directories can cause loops in the namespace, | |
411 | * so turn off the 'x' bits to avoid trouble. | |
412 | * | |
413 | * XXX ACLs break this, of course | |
414 | */ | |
415 | vap->va_mode &= ~((VEXEC) | (VEXEC >> 3) | (VEXEC >> 6)); | |
416 | } | |
417 | (void)vnode_put((struct vnode *) fp->fp_glob->fg_data); | |
418 | break; | |
419 | ||
420 | case DTYPE_SOCKET: | |
421 | case DTYPE_PIPE: | |
422 | #if SOCKETS | |
423 | if (FILEGLOB_DTYPE(fp->fp_glob) == DTYPE_SOCKET) { | |
424 | error = soo_stat((struct socket *)fp->fp_glob->fg_data, (void *)&stb, 0); | |
425 | } else | |
426 | #endif /* SOCKETS */ | |
427 | error = pipe_stat((struct pipe *)fp->fp_glob->fg_data, (void *)&stb, 0); | |
428 | ||
429 | if (error == 0) { | |
430 | if (FILEGLOB_DTYPE(fp->fp_glob) == DTYPE_SOCKET) { | |
431 | VATTR_RETURN(vap, va_type, VSOCK); | |
432 | } else { | |
433 | VATTR_RETURN(vap, va_type, VFIFO); | |
434 | } | |
435 | ||
436 | VATTR_RETURN(vap, va_mode, stb.st_mode); | |
437 | VATTR_RETURN(vap, va_nlink, stb.st_nlink); | |
438 | VATTR_RETURN(vap, va_uid, stb.st_uid); | |
439 | VATTR_RETURN(vap, va_gid, stb.st_gid); | |
440 | VATTR_RETURN(vap, va_fsid, stb.st_dev); | |
441 | VATTR_RETURN(vap, va_fileid, stb.st_ino); | |
442 | VATTR_RETURN(vap, va_data_size, stb.st_size); | |
443 | VATTR_RETURN(vap, va_access_time, stb.st_atimespec); | |
444 | VATTR_RETURN(vap, va_modify_time, stb.st_mtimespec); | |
445 | VATTR_RETURN(vap, va_change_time, stb.st_ctimespec); | |
446 | VATTR_RETURN(vap, va_gen, stb.st_gen); | |
447 | VATTR_RETURN(vap, va_flags, stb.st_flags); | |
448 | VATTR_RETURN(vap, va_rdev, stb.st_rdev); | |
449 | VATTR_RETURN(vap, va_total_alloc, stb.st_blocks * stb.st_blksize); | |
450 | VATTR_RETURN(vap, va_acl, NULL); | |
451 | } | |
452 | break; | |
453 | ||
454 | default: | |
455 | error = EBADF; | |
456 | } | |
457 | ||
458 | fp_drop(p, fd, fp, 0); | |
459 | return error; | |
460 | } | |
461 | ||
462 | int | |
463 | fdesc_getattr(struct vnop_getattr_args *ap) | |
464 | { | |
465 | struct vnode *vp = ap->a_vp; | |
466 | struct vnode_attr *vap = ap->a_vap; | |
467 | unsigned fd; | |
468 | int error = 0; | |
469 | ||
470 | switch (VTOFDESC(vp)->fd_type) { | |
471 | case Fdesc: | |
472 | fd = VTOFDESC(vp)->fd_fd; | |
473 | error = fdesc_attr(fd, vap, ap->a_context); | |
474 | break; | |
475 | ||
476 | default: | |
477 | panic("Invalid type for an fdesc node!\n"); | |
478 | break; | |
479 | } | |
480 | ||
481 | /* | |
482 | * Yes, we do this without locking, but this value is always just | |
483 | * a snapshot. | |
484 | */ | |
485 | if (error == 0) { | |
486 | vp->v_type = (uint16_t)vap->va_type; | |
487 | ||
488 | /* We need an inactive to reset type to VNON */ | |
489 | vnode_setneedinactive(vp); | |
490 | } | |
491 | ||
492 | return error; | |
493 | } | |
494 | ||
495 | int | |
496 | fdesc_setattr(struct vnop_setattr_args *ap) | |
497 | { | |
498 | struct fileproc *fp; | |
499 | unsigned fd; | |
500 | int error; | |
501 | struct proc * p = vfs_context_proc(ap->a_context); | |
502 | ||
503 | /* | |
504 | * Can't mess with the root vnode | |
505 | */ | |
506 | switch (VTOFDESC(ap->a_vp)->fd_type) { | |
507 | case Fdesc: | |
508 | break; | |
509 | default: | |
510 | panic("Invalid type for an fdesc node!\n"); | |
511 | return EACCES; | |
512 | } | |
513 | ||
514 | fd = VTOFDESC(ap->a_vp)->fd_fd; | |
515 | if ((error = fp_lookup(vfs_context_proc(ap->a_context), fd, &fp, 0))) { | |
516 | return error; | |
517 | } | |
518 | ||
519 | /* | |
520 | * Can setattr the underlying vnode, but not sockets! | |
521 | */ | |
522 | switch (FILEGLOB_DTYPE(fp->fp_glob)) { | |
523 | case DTYPE_VNODE: | |
524 | { | |
525 | if ((error = vnode_getwithref((struct vnode *) fp->fp_glob->fg_data)) != 0) { | |
526 | break; | |
527 | } | |
528 | error = vnode_setattr((struct vnode *) fp->fp_glob->fg_data, ap->a_vap, ap->a_context); | |
529 | (void)vnode_put((struct vnode *) fp->fp_glob->fg_data); | |
530 | break; | |
531 | } | |
532 | ||
533 | case DTYPE_SOCKET: | |
534 | case DTYPE_PIPE: | |
535 | error = 0; | |
536 | break; | |
537 | ||
538 | default: | |
539 | error = EBADF; | |
540 | break; | |
541 | } | |
542 | ||
543 | fp_drop(p, fd, fp, 0); | |
544 | return error; | |
545 | } | |
546 | ||
547 | #define UIO_MX 16 | |
548 | ||
549 | /* | |
550 | * static struct dirtmp { | |
551 | * u_int32_t d_fileno; | |
552 | * u_short d_reclen; | |
553 | * u_short d_namlen; | |
554 | * char d_name[8]; | |
555 | * } rootent[] = { | |
556 | * { FD_DEVFD, UIO_MX, 2, "fd" }, | |
557 | * { FD_STDIN, UIO_MX, 5, "stdin" }, | |
558 | * { FD_STDOUT, UIO_MX, 6, "stdout" }, | |
559 | * { FD_STDERR, UIO_MX, 6, "stderr" }, | |
560 | * { 0, 0, 0, "" } | |
561 | * }; | |
562 | */ | |
563 | ||
564 | /* Only called on /dev/fd */ | |
565 | int | |
566 | devfs_devfd_readdir(struct vnop_readdir_args *ap) | |
567 | { | |
568 | struct uio *uio = ap->a_uio; | |
569 | struct proc *p = current_proc(); | |
570 | off_t i; | |
571 | int error; | |
572 | ||
573 | /* | |
574 | * We don't allow exporting fdesc mounts, and currently local | |
575 | * requests do not need cookies. | |
576 | */ | |
577 | if (ap->a_flags & (VNODE_READDIR_EXTENDED | VNODE_READDIR_REQSEEKOFF)) { | |
578 | return EINVAL; | |
579 | } | |
580 | ||
581 | /* | |
582 | * There needs to be space for at least one entry. | |
583 | */ | |
584 | if (uio_resid(uio) < UIO_MX) { | |
585 | return EINVAL; | |
586 | } | |
587 | ||
588 | i = uio->uio_offset / UIO_MX; | |
589 | error = 0; | |
590 | while (uio_resid(uio) >= UIO_MX) { | |
591 | if (i >= p->p_fd->fd_nfiles || i < 0) { | |
592 | break; | |
593 | } | |
594 | ||
595 | if (*fdfile(p, i) != NULL && !(*fdflags(p, i) & UF_RESERVED)) { | |
596 | struct dirent d; | |
597 | struct dirent *dp = &d; | |
598 | ||
599 | bzero((caddr_t) dp, UIO_MX); | |
600 | ||
601 | dp->d_namlen = (__uint8_t)scnprintf(dp->d_name, sizeof(dp->d_name), | |
602 | "%lld", i); | |
603 | dp->d_reclen = UIO_MX; | |
604 | dp->d_type = DT_UNKNOWN; | |
605 | dp->d_fileno = (ino_t)i + FD_STDIN; | |
606 | /* | |
607 | * And ship to userland | |
608 | */ | |
609 | error = uiomove((caddr_t) dp, UIO_MX, uio); | |
610 | if (error) { | |
611 | break; | |
612 | } | |
613 | } | |
614 | i++; | |
615 | } | |
616 | ||
617 | uio->uio_offset = i * UIO_MX; | |
618 | return error; | |
619 | } | |
620 | ||
621 | int | |
622 | fdesc_read(__unused struct vnop_read_args *ap) | |
623 | { | |
624 | return ENOTSUP; | |
625 | } | |
626 | ||
627 | int | |
628 | fdesc_write(__unused struct vnop_write_args *ap) | |
629 | { | |
630 | return ENOTSUP; | |
631 | } | |
632 | ||
633 | int | |
634 | fdesc_ioctl(__unused struct vnop_ioctl_args *ap) | |
635 | { | |
636 | return ENOTSUP; | |
637 | } | |
638 | ||
639 | int | |
640 | fdesc_select(__unused struct vnop_select_args *ap) | |
641 | { | |
642 | return ENOTSUP; | |
643 | } | |
644 | ||
645 | int | |
646 | fdesc_inactive(struct vnop_inactive_args *ap) | |
647 | { | |
648 | struct vnode *vp = ap->a_vp; | |
649 | ||
650 | /* | |
651 | * Clear out the v_type field to avoid | |
652 | * nasty things happening in vgone(). | |
653 | */ | |
654 | vp->v_type = VNON; | |
655 | ||
656 | return 0; | |
657 | } | |
658 | ||
659 | int | |
660 | fdesc_reclaim(struct vnop_reclaim_args *ap) | |
661 | { | |
662 | struct vnode *vp = ap->a_vp; | |
663 | struct fdescnode *fd = VTOFDESC(vp); | |
664 | ||
665 | fdesc_lock(); | |
666 | ||
667 | LIST_REMOVE(fd, fd_hash); | |
668 | FREE(vp->v_data, M_TEMP); | |
669 | vp->v_data = NULL; | |
670 | ||
671 | fdesc_unlock(); | |
672 | ||
673 | return 0; | |
674 | } | |
675 | ||
676 | /* | |
677 | * Return POSIX pathconf information applicable to special devices. | |
678 | */ | |
679 | int | |
680 | fdesc_pathconf(struct vnop_pathconf_args *ap) | |
681 | { | |
682 | switch (ap->a_name) { | |
683 | case _PC_LINK_MAX: | |
684 | *ap->a_retval = LINK_MAX; | |
685 | return 0; | |
686 | case _PC_MAX_CANON: | |
687 | *ap->a_retval = MAX_CANON; | |
688 | return 0; | |
689 | case _PC_MAX_INPUT: | |
690 | *ap->a_retval = MAX_INPUT; | |
691 | return 0; | |
692 | case _PC_PIPE_BUF: | |
693 | *ap->a_retval = PIPE_BUF; | |
694 | return 0; | |
695 | case _PC_CHOWN_RESTRICTED: | |
696 | *ap->a_retval = 200112; /* _POSIX_CHOWN_RESTRICTED */ | |
697 | return 0; | |
698 | case _PC_VDISABLE: | |
699 | *ap->a_retval = _POSIX_VDISABLE; | |
700 | return 0; | |
701 | default: | |
702 | return EINVAL; | |
703 | } | |
704 | /* NOTREACHED */ | |
705 | } | |
706 | ||
707 | /* | |
708 | * /dev/fd "should never get here" operation | |
709 | */ | |
710 | int | |
711 | fdesc_badop(void) | |
712 | { | |
713 | return ENOTSUP; | |
714 | /* NOTREACHED */ | |
715 | } | |
716 | ||
717 | #define VOPFUNC int (*)(void *) | |
718 | ||
719 | #define fdesc_create (int (*) (struct vnop_create_args *))eopnotsupp | |
720 | #define fdesc_mknod (int (*) (struct vnop_mknod_args *))eopnotsupp | |
721 | #define fdesc_close (int (*) (struct vnop_close_args *))nullop | |
722 | #define fdesc_access (int (*) (struct vnop_access_args *))nullop | |
723 | #define fdesc_mmap (int (*) (struct vnop_mmap_args *))eopnotsupp | |
724 | #define fdesc_revoke nop_revoke | |
725 | #define fdesc_fsync (int (*) (struct vnop_fsync_args *))nullop | |
726 | #define fdesc_remove (int (*) (struct vnop_remove_args *))eopnotsupp | |
727 | #define fdesc_link (int (*) (struct vnop_link_args *))eopnotsupp | |
728 | #define fdesc_rename (int (*) (struct vnop_rename_args *))eopnotsupp | |
729 | #define fdesc_mkdir (int (*) (struct vnop_mkdir_args *))eopnotsupp | |
730 | #define fdesc_rmdir (int (*) (struct vnop_rmdir_args *))eopnotsupp | |
731 | #define fdesc_symlink (int (*) (struct vnop_symlink_args *))eopnotsupp | |
732 | #define fdesc_strategy (int (*) (struct vnop_strategy_args *))fdesc_badop | |
733 | #define fdesc_advlock (int (*) (struct vnop_advlock_args *))eopnotsupp | |
734 | #define fdesc_bwrite (int (*) (struct vnop_bwrite_args *))eopnotsupp | |
735 | #define fdesc_blktooff (int (*) (struct vnop_blktooff_args *))eopnotsupp | |
736 | #define fdesc_offtoblk (int (*) (struct vnop_offtoblk_args *))eopnotsupp | |
737 | #define fdesc_blockmap (int (*) (struct vnop_blockmap_args *))eopnotsupp | |
738 | ||
739 | int(**fdesc_vnodeop_p)(void *); | |
740 | const struct vnodeopv_entry_desc devfs_fdesc_vnodeop_entries[] = { | |
741 | { .opve_op = &vnop_default_desc, .opve_impl = (VOPFUNC)vn_default_error }, | |
742 | { .opve_op = &vnop_lookup_desc, .opve_impl = (VOPFUNC)vn_default_error}, /* lookup */ | |
743 | { .opve_op = &vnop_create_desc, .opve_impl = (VOPFUNC)fdesc_create }, /* create */ | |
744 | { .opve_op = &vnop_mknod_desc, .opve_impl = (VOPFUNC)fdesc_mknod }, /* mknod */ | |
745 | { .opve_op = &vnop_open_desc, .opve_impl = (VOPFUNC)fdesc_open }, /* open */ | |
746 | { .opve_op = &vnop_close_desc, .opve_impl = (VOPFUNC)fdesc_close }, /* close */ | |
747 | { .opve_op = &vnop_access_desc, .opve_impl = (VOPFUNC)fdesc_access }, /* access */ | |
748 | { .opve_op = &vnop_getattr_desc, .opve_impl = (VOPFUNC)fdesc_getattr }, /* getattr */ | |
749 | { .opve_op = &vnop_setattr_desc, .opve_impl = (VOPFUNC)fdesc_setattr }, /* setattr */ | |
750 | { .opve_op = &vnop_read_desc, .opve_impl = (VOPFUNC)fdesc_read }, /* read */ | |
751 | { .opve_op = &vnop_write_desc, .opve_impl = (VOPFUNC)fdesc_write }, /* write */ | |
752 | { .opve_op = &vnop_ioctl_desc, .opve_impl = (VOPFUNC)fdesc_ioctl }, /* ioctl */ | |
753 | { .opve_op = &vnop_select_desc, .opve_impl = (VOPFUNC)fdesc_select }, /* select */ | |
754 | { .opve_op = &vnop_revoke_desc, .opve_impl = (VOPFUNC)fdesc_revoke }, /* revoke */ | |
755 | { .opve_op = &vnop_mmap_desc, .opve_impl = (VOPFUNC)fdesc_mmap }, /* mmap */ | |
756 | { .opve_op = &vnop_fsync_desc, .opve_impl = (VOPFUNC)fdesc_fsync }, /* fsync */ | |
757 | { .opve_op = &vnop_remove_desc, .opve_impl = (VOPFUNC)fdesc_remove }, /* remove */ | |
758 | { .opve_op = &vnop_link_desc, .opve_impl = (VOPFUNC)fdesc_link }, /* link */ | |
759 | { .opve_op = &vnop_rename_desc, .opve_impl = (VOPFUNC)fdesc_rename }, /* rename */ | |
760 | { .opve_op = &vnop_mkdir_desc, .opve_impl = (VOPFUNC)fdesc_mkdir }, /* mkdir */ | |
761 | { .opve_op = &vnop_rmdir_desc, .opve_impl = (VOPFUNC)fdesc_rmdir }, /* rmdir */ | |
762 | { .opve_op = &vnop_symlink_desc, .opve_impl = (VOPFUNC)fdesc_symlink }, /* symlink */ | |
763 | { .opve_op = &vnop_readdir_desc, .opve_impl = (VOPFUNC)vn_default_error},/* readdir */ | |
764 | { .opve_op = &vnop_readlink_desc, .opve_impl = (VOPFUNC)err_readlink}, /* readlink */ | |
765 | { .opve_op = &vnop_inactive_desc, .opve_impl = (VOPFUNC)fdesc_inactive },/* inactive */ | |
766 | { .opve_op = &vnop_reclaim_desc, .opve_impl = (VOPFUNC)fdesc_reclaim }, /* reclaim */ | |
767 | { .opve_op = &vnop_strategy_desc, .opve_impl = (VOPFUNC)fdesc_strategy }, /* strategy */ | |
768 | { .opve_op = &vnop_pathconf_desc, .opve_impl = (VOPFUNC)fdesc_pathconf }, /* pathconf */ | |
769 | { .opve_op = &vnop_advlock_desc, .opve_impl = (VOPFUNC)fdesc_advlock }, /* advlock */ | |
770 | { .opve_op = &vnop_bwrite_desc, .opve_impl = (VOPFUNC)fdesc_bwrite }, /* bwrite */ | |
771 | { .opve_op = &vnop_pagein_desc, .opve_impl = (VOPFUNC)err_pagein }, /* pagein */ | |
772 | { .opve_op = &vnop_pageout_desc, .opve_impl = (VOPFUNC)err_pageout }, /* pageout */ | |
773 | { .opve_op = &vnop_copyfile_desc, .opve_impl = (VOPFUNC)err_copyfile }, /* Copyfile */ | |
774 | { .opve_op = &vnop_blktooff_desc, .opve_impl = (VOPFUNC)fdesc_blktooff }, /* blktooff */ | |
775 | { .opve_op = &vnop_blktooff_desc, .opve_impl = (VOPFUNC)fdesc_offtoblk }, /* offtoblk */ | |
776 | { .opve_op = &vnop_blockmap_desc, .opve_impl = (VOPFUNC)fdesc_blockmap }, /* blockmap */ | |
777 | { .opve_op = (struct vnodeop_desc*)NULL, .opve_impl = (VOPFUNC)NULL } | |
778 | }; | |
779 | ||
780 | const struct vnodeopv_desc devfs_fdesc_vnodeop_opv_desc = | |
781 | { .opv_desc_vector_p = &fdesc_vnodeop_p, .opv_desc_ops = devfs_fdesc_vnodeop_entries }; |