procfs_vnops.c revision 1.65 1 1.65 wrstuden /* $NetBSD: procfs_vnops.c,v 1.65 1999/08/03 20:19:20 wrstuden Exp $ */
2 1.24 cgd
3 1.1 pk /*
4 1.9 cgd * Copyright (c) 1993 Jan-Simon Pendry
5 1.53 fvdl * Copyright (c) 1993, 1995
6 1.21 mycroft * The Regents of the University of California. All rights reserved.
7 1.2 pk *
8 1.9 cgd * This code is derived from software contributed to Berkeley by
9 1.9 cgd * Jan-Simon Pendry.
10 1.9 cgd *
11 1.2 pk * Redistribution and use in source and binary forms, with or without
12 1.2 pk * modification, are permitted provided that the following conditions
13 1.2 pk * are met:
14 1.2 pk * 1. Redistributions of source code must retain the above copyright
15 1.2 pk * notice, this list of conditions and the following disclaimer.
16 1.2 pk * 2. Redistributions in binary form must reproduce the above copyright
17 1.2 pk * notice, this list of conditions and the following disclaimer in the
18 1.2 pk * documentation and/or other materials provided with the distribution.
19 1.2 pk * 3. All advertising materials mentioning features or use of this software
20 1.2 pk * must display the following acknowledgement:
21 1.9 cgd * This product includes software developed by the University of
22 1.9 cgd * California, Berkeley and its contributors.
23 1.9 cgd * 4. Neither the name of the University nor the names of its contributors
24 1.9 cgd * may be used to endorse or promote products derived from this software
25 1.9 cgd * without specific prior written permission.
26 1.9 cgd *
27 1.9 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 1.9 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 1.9 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 1.9 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 1.9 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 1.9 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 1.9 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 1.9 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 1.9 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 1.9 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 1.9 cgd * SUCH DAMAGE.
38 1.2 pk *
39 1.53 fvdl * @(#)procfs_vnops.c 8.18 (Berkeley) 5/21/95
40 1.2 pk */
41 1.2 pk
42 1.2 pk /*
43 1.9 cgd * procfs vnode interface
44 1.1 pk */
45 1.1 pk
46 1.8 mycroft #include <sys/param.h>
47 1.8 mycroft #include <sys/systm.h>
48 1.8 mycroft #include <sys/time.h>
49 1.8 mycroft #include <sys/kernel.h>
50 1.8 mycroft #include <sys/file.h>
51 1.8 mycroft #include <sys/proc.h>
52 1.8 mycroft #include <sys/vnode.h>
53 1.8 mycroft #include <sys/namei.h>
54 1.9 cgd #include <sys/malloc.h>
55 1.21 mycroft #include <sys/dirent.h>
56 1.8 mycroft #include <sys/resourcevar.h>
57 1.14 cgd #include <sys/ptrace.h>
58 1.48 mycroft #include <sys/stat.h>
59 1.48 mycroft
60 1.21 mycroft #include <vm/vm.h> /* for PAGE_SIZE */
61 1.48 mycroft
62 1.21 mycroft #include <machine/reg.h>
63 1.41 mycroft
64 1.41 mycroft #include <miscfs/genfs/genfs.h>
65 1.9 cgd #include <miscfs/procfs/procfs.h>
66 1.11 cgd
67 1.9 cgd /*
68 1.9 cgd * Vnode Operations.
69 1.9 cgd *
70 1.9 cgd */
71 1.1 pk
72 1.1 pk /*
73 1.9 cgd * This is a list of the valid names in the
74 1.9 cgd * process-specific sub-directories. It is
75 1.9 cgd * used in procfs_lookup and procfs_readdir
76 1.9 cgd */
77 1.32 mycroft struct proc_target {
78 1.32 mycroft u_char pt_type;
79 1.32 mycroft u_char pt_namlen;
80 1.32 mycroft char *pt_name;
81 1.32 mycroft pfstype pt_pfstype;
82 1.32 mycroft int (*pt_valid) __P((struct proc *p));
83 1.32 mycroft } proc_targets[] = {
84 1.9 cgd #define N(s) sizeof(s)-1, s
85 1.32 mycroft /* name type validp */
86 1.21 mycroft { DT_DIR, N("."), Pproc, NULL },
87 1.21 mycroft { DT_DIR, N(".."), Proot, NULL },
88 1.21 mycroft { DT_REG, N("file"), Pfile, procfs_validfile },
89 1.21 mycroft { DT_REG, N("mem"), Pmem, NULL },
90 1.21 mycroft { DT_REG, N("regs"), Pregs, procfs_validregs },
91 1.21 mycroft { DT_REG, N("fpregs"), Pfpregs, procfs_validfpregs },
92 1.21 mycroft { DT_REG, N("ctl"), Pctl, NULL },
93 1.21 mycroft { DT_REG, N("status"), Pstatus, NULL },
94 1.21 mycroft { DT_REG, N("note"), Pnote, NULL },
95 1.21 mycroft { DT_REG, N("notepg"), Pnotepg, NULL },
96 1.60 msaitoh { DT_REG, N("map"), Pmap, procfs_validmap },
97 1.61 christos { DT_REG, N("cmdline"), Pcmdline, NULL },
98 1.9 cgd #undef N
99 1.1 pk };
100 1.32 mycroft static int nproc_targets = sizeof(proc_targets) / sizeof(proc_targets[0]);
101 1.9 cgd
102 1.9 cgd static pid_t atopid __P((const char *, u_int));
103 1.1 pk
104 1.37 christos int procfs_lookup __P((void *));
105 1.62 wrstuden #define procfs_create genfs_eopnotsupp_rele
106 1.62 wrstuden #define procfs_mknod genfs_eopnotsupp_rele
107 1.37 christos int procfs_open __P((void *));
108 1.37 christos int procfs_close __P((void *));
109 1.37 christos int procfs_access __P((void *));
110 1.37 christos int procfs_getattr __P((void *));
111 1.37 christos int procfs_setattr __P((void *));
112 1.37 christos #define procfs_read procfs_rw
113 1.37 christos #define procfs_write procfs_rw
114 1.65 wrstuden #define procfs_fcntl genfs_fcntl
115 1.57 matthias #define procfs_ioctl genfs_enoioctl
116 1.42 mycroft #define procfs_poll genfs_poll
117 1.53 fvdl #define procfs_revoke genfs_revoke
118 1.41 mycroft #define procfs_mmap genfs_eopnotsupp
119 1.41 mycroft #define procfs_fsync genfs_nullop
120 1.41 mycroft #define procfs_seek genfs_nullop
121 1.62 wrstuden #define procfs_remove genfs_eopnotsupp_rele
122 1.37 christos int procfs_link __P((void *));
123 1.62 wrstuden #define procfs_rename genfs_eopnotsupp_rele
124 1.62 wrstuden #define procfs_mkdir genfs_eopnotsupp_rele
125 1.62 wrstuden #define procfs_rmdir genfs_eopnotsupp_rele
126 1.37 christos int procfs_symlink __P((void *));
127 1.37 christos int procfs_readdir __P((void *));
128 1.37 christos int procfs_readlink __P((void *));
129 1.41 mycroft #define procfs_abortop genfs_abortop
130 1.37 christos int procfs_inactive __P((void *));
131 1.37 christos int procfs_reclaim __P((void *));
132 1.62 wrstuden #define procfs_lock genfs_lock
133 1.62 wrstuden #define procfs_unlock genfs_unlock
134 1.37 christos int procfs_bmap __P((void *));
135 1.41 mycroft #define procfs_strategy genfs_badop
136 1.37 christos int procfs_print __P((void *));
137 1.37 christos int procfs_pathconf __P((void *));
138 1.62 wrstuden #define procfs_islocked genfs_islocked
139 1.58 kleink #define procfs_advlock genfs_einval
140 1.41 mycroft #define procfs_blkatoff genfs_eopnotsupp
141 1.41 mycroft #define procfs_valloc genfs_eopnotsupp
142 1.41 mycroft #define procfs_vfree genfs_nullop
143 1.41 mycroft #define procfs_truncate genfs_eopnotsupp
144 1.41 mycroft #define procfs_update genfs_nullop
145 1.41 mycroft #define procfs_bwrite genfs_eopnotsupp
146 1.37 christos
147 1.37 christos static pid_t atopid __P((const char *, u_int));
148 1.37 christos
149 1.37 christos /*
150 1.37 christos * procfs vnode operations.
151 1.37 christos */
152 1.37 christos int (**procfs_vnodeop_p) __P((void *));
153 1.37 christos struct vnodeopv_entry_desc procfs_vnodeop_entries[] = {
154 1.37 christos { &vop_default_desc, vn_default_error },
155 1.37 christos { &vop_lookup_desc, procfs_lookup }, /* lookup */
156 1.37 christos { &vop_create_desc, procfs_create }, /* create */
157 1.37 christos { &vop_mknod_desc, procfs_mknod }, /* mknod */
158 1.37 christos { &vop_open_desc, procfs_open }, /* open */
159 1.37 christos { &vop_close_desc, procfs_close }, /* close */
160 1.37 christos { &vop_access_desc, procfs_access }, /* access */
161 1.37 christos { &vop_getattr_desc, procfs_getattr }, /* getattr */
162 1.37 christos { &vop_setattr_desc, procfs_setattr }, /* setattr */
163 1.37 christos { &vop_read_desc, procfs_read }, /* read */
164 1.37 christos { &vop_write_desc, procfs_write }, /* write */
165 1.65 wrstuden { &vop_fcntl_desc, procfs_fcntl }, /* fcntl */
166 1.37 christos { &vop_ioctl_desc, procfs_ioctl }, /* ioctl */
167 1.42 mycroft { &vop_poll_desc, procfs_poll }, /* poll */
168 1.53 fvdl { &vop_revoke_desc, procfs_revoke }, /* revoke */
169 1.37 christos { &vop_mmap_desc, procfs_mmap }, /* mmap */
170 1.37 christos { &vop_fsync_desc, procfs_fsync }, /* fsync */
171 1.37 christos { &vop_seek_desc, procfs_seek }, /* seek */
172 1.37 christos { &vop_remove_desc, procfs_remove }, /* remove */
173 1.37 christos { &vop_link_desc, procfs_link }, /* link */
174 1.37 christos { &vop_rename_desc, procfs_rename }, /* rename */
175 1.37 christos { &vop_mkdir_desc, procfs_mkdir }, /* mkdir */
176 1.37 christos { &vop_rmdir_desc, procfs_rmdir }, /* rmdir */
177 1.37 christos { &vop_symlink_desc, procfs_symlink }, /* symlink */
178 1.37 christos { &vop_readdir_desc, procfs_readdir }, /* readdir */
179 1.37 christos { &vop_readlink_desc, procfs_readlink }, /* readlink */
180 1.37 christos { &vop_abortop_desc, procfs_abortop }, /* abortop */
181 1.37 christos { &vop_inactive_desc, procfs_inactive }, /* inactive */
182 1.37 christos { &vop_reclaim_desc, procfs_reclaim }, /* reclaim */
183 1.37 christos { &vop_lock_desc, procfs_lock }, /* lock */
184 1.37 christos { &vop_unlock_desc, procfs_unlock }, /* unlock */
185 1.37 christos { &vop_bmap_desc, procfs_bmap }, /* bmap */
186 1.37 christos { &vop_strategy_desc, procfs_strategy }, /* strategy */
187 1.37 christos { &vop_print_desc, procfs_print }, /* print */
188 1.37 christos { &vop_islocked_desc, procfs_islocked }, /* islocked */
189 1.37 christos { &vop_pathconf_desc, procfs_pathconf }, /* pathconf */
190 1.37 christos { &vop_advlock_desc, procfs_advlock }, /* advlock */
191 1.37 christos { &vop_blkatoff_desc, procfs_blkatoff }, /* blkatoff */
192 1.37 christos { &vop_valloc_desc, procfs_valloc }, /* valloc */
193 1.37 christos { &vop_vfree_desc, procfs_vfree }, /* vfree */
194 1.37 christos { &vop_truncate_desc, procfs_truncate }, /* truncate */
195 1.37 christos { &vop_update_desc, procfs_update }, /* update */
196 1.37 christos { (struct vnodeop_desc*)NULL, (int(*) __P((void *)))NULL }
197 1.37 christos };
198 1.37 christos struct vnodeopv_desc procfs_vnodeop_opv_desc =
199 1.37 christos { &procfs_vnodeop_p, procfs_vnodeop_entries };
200 1.37 christos /*
201 1.9 cgd * set things up for doing i/o on
202 1.9 cgd * the pfsnode (vp). (vp) is locked
203 1.9 cgd * on entry, and should be left locked
204 1.9 cgd * on exit.
205 1.1 pk *
206 1.9 cgd * for procfs we don't need to do anything
207 1.9 cgd * in particular for i/o. all that is done
208 1.9 cgd * is to support exclusive open on process
209 1.9 cgd * memory images.
210 1.1 pk */
211 1.37 christos int
212 1.37 christos procfs_open(v)
213 1.37 christos void *v;
214 1.37 christos {
215 1.22 mycroft struct vop_open_args /* {
216 1.22 mycroft struct vnode *a_vp;
217 1.22 mycroft int a_mode;
218 1.22 mycroft struct ucred *a_cred;
219 1.22 mycroft struct proc *a_p;
220 1.37 christos } */ *ap = v;
221 1.21 mycroft struct pfsnode *pfs = VTOPFS(ap->a_vp);
222 1.50 thorpej struct proc *p1, *p2;
223 1.50 thorpej int error;
224 1.50 thorpej
225 1.51 thorpej p1 = ap->a_p; /* tracer */
226 1.51 thorpej p2 = PFIND(pfs->pfs_pid); /* traced */
227 1.50 thorpej
228 1.50 thorpej if (p2 == NULL)
229 1.50 thorpej return (ENOENT); /* was ESRCH, jsp */
230 1.9 cgd
231 1.9 cgd switch (pfs->pfs_type) {
232 1.9 cgd case Pmem:
233 1.37 christos if (((pfs->pfs_flags & FWRITE) && (ap->a_mode & O_EXCL)) ||
234 1.37 christos ((pfs->pfs_flags & O_EXCL) && (ap->a_mode & FWRITE)))
235 1.9 cgd return (EBUSY);
236 1.50 thorpej
237 1.50 thorpej if ((error = procfs_checkioperm(p1, p2)) != 0)
238 1.50 thorpej return (EPERM);
239 1.1 pk
240 1.21 mycroft if (ap->a_mode & FWRITE)
241 1.21 mycroft pfs->pfs_flags = ap->a_mode & (FWRITE|O_EXCL);
242 1.1 pk
243 1.9 cgd return (0);
244 1.1 pk
245 1.9 cgd default:
246 1.9 cgd break;
247 1.9 cgd }
248 1.1 pk
249 1.9 cgd return (0);
250 1.1 pk }
251 1.1 pk
252 1.1 pk /*
253 1.9 cgd * close the pfsnode (vp) after doing i/o.
254 1.9 cgd * (vp) is not locked on entry or exit.
255 1.9 cgd *
256 1.9 cgd * nothing to do for procfs other than undo
257 1.9 cgd * any exclusive open flag (see _open above).
258 1.1 pk */
259 1.37 christos int
260 1.37 christos procfs_close(v)
261 1.37 christos void *v;
262 1.37 christos {
263 1.22 mycroft struct vop_close_args /* {
264 1.22 mycroft struct vnode *a_vp;
265 1.22 mycroft int a_fflag;
266 1.22 mycroft struct ucred *a_cred;
267 1.22 mycroft struct proc *a_p;
268 1.37 christos } */ *ap = v;
269 1.21 mycroft struct pfsnode *pfs = VTOPFS(ap->a_vp);
270 1.1 pk
271 1.9 cgd switch (pfs->pfs_type) {
272 1.9 cgd case Pmem:
273 1.21 mycroft if ((ap->a_fflag & FWRITE) && (pfs->pfs_flags & O_EXCL))
274 1.9 cgd pfs->pfs_flags &= ~(FWRITE|O_EXCL);
275 1.9 cgd break;
276 1.46 mycroft
277 1.46 mycroft default:
278 1.37 christos break;
279 1.9 cgd }
280 1.1 pk
281 1.1 pk return (0);
282 1.1 pk }
283 1.1 pk
284 1.1 pk /*
285 1.9 cgd * do block mapping for pfsnode (vp).
286 1.9 cgd * since we don't use the buffer cache
287 1.9 cgd * for procfs this function should never
288 1.9 cgd * be called. in any case, it's not clear
289 1.9 cgd * what part of the kernel ever makes use
290 1.9 cgd * of this function. for sanity, this is the
291 1.9 cgd * usual no-op bmap, although returning
292 1.9 cgd * (EIO) would be a reasonable alternative.
293 1.1 pk */
294 1.37 christos int
295 1.37 christos procfs_bmap(v)
296 1.37 christos void *v;
297 1.37 christos {
298 1.22 mycroft struct vop_bmap_args /* {
299 1.22 mycroft struct vnode *a_vp;
300 1.22 mycroft daddr_t a_bn;
301 1.22 mycroft struct vnode **a_vpp;
302 1.22 mycroft daddr_t *a_bnp;
303 1.53 fvdl int * a_runp;
304 1.37 christos } */ *ap = v;
305 1.1 pk
306 1.21 mycroft if (ap->a_vpp != NULL)
307 1.21 mycroft *ap->a_vpp = ap->a_vp;
308 1.21 mycroft if (ap->a_bnp != NULL)
309 1.21 mycroft *ap->a_bnp = ap->a_bn;
310 1.53 fvdl if (ap->a_runp != NULL)
311 1.53 fvdl *ap->a_runp = 0;
312 1.1 pk return (0);
313 1.1 pk }
314 1.1 pk
315 1.1 pk /*
316 1.9 cgd * _inactive is called when the pfsnode
317 1.9 cgd * is vrele'd and the reference count goes
318 1.9 cgd * to zero. (vp) will be on the vnode free
319 1.9 cgd * list, so to get it back vget() must be
320 1.9 cgd * used.
321 1.9 cgd *
322 1.9 cgd * for procfs, check if the process is still
323 1.9 cgd * alive and if it isn't then just throw away
324 1.9 cgd * the vnode by calling vgone(). this may
325 1.9 cgd * be overkill and a waste of time since the
326 1.9 cgd * chances are that the process will still be
327 1.9 cgd * there and PFIND is not free.
328 1.9 cgd *
329 1.62 wrstuden * (vp) is locked on entry, but must be unlocked on exit.
330 1.1 pk */
331 1.37 christos int
332 1.37 christos procfs_inactive(v)
333 1.37 christos void *v;
334 1.37 christos {
335 1.22 mycroft struct vop_inactive_args /* {
336 1.22 mycroft struct vnode *a_vp;
337 1.53 fvdl struct proc *a_p;
338 1.37 christos } */ *ap = v;
339 1.21 mycroft struct pfsnode *pfs = VTOPFS(ap->a_vp);
340 1.1 pk
341 1.53 fvdl VOP_UNLOCK(ap->a_vp, 0);
342 1.9 cgd if (PFIND(pfs->pfs_pid) == 0)
343 1.21 mycroft vgone(ap->a_vp);
344 1.5 pk
345 1.9 cgd return (0);
346 1.1 pk }
347 1.1 pk
348 1.1 pk /*
349 1.9 cgd * _reclaim is called when getnewvnode()
350 1.9 cgd * wants to make use of an entry on the vnode
351 1.9 cgd * free list. at this time the filesystem needs
352 1.9 cgd * to free any private data and remove the node
353 1.9 cgd * from any private lists.
354 1.1 pk */
355 1.37 christos int
356 1.37 christos procfs_reclaim(v)
357 1.37 christos void *v;
358 1.37 christos {
359 1.22 mycroft struct vop_reclaim_args /* {
360 1.22 mycroft struct vnode *a_vp;
361 1.37 christos } */ *ap = v;
362 1.21 mycroft
363 1.21 mycroft return (procfs_freevp(ap->a_vp));
364 1.21 mycroft }
365 1.21 mycroft
366 1.21 mycroft /*
367 1.21 mycroft * Return POSIX pathconf information applicable to special devices.
368 1.21 mycroft */
369 1.37 christos int
370 1.37 christos procfs_pathconf(v)
371 1.37 christos void *v;
372 1.37 christos {
373 1.21 mycroft struct vop_pathconf_args /* {
374 1.21 mycroft struct vnode *a_vp;
375 1.21 mycroft int a_name;
376 1.26 cgd register_t *a_retval;
377 1.37 christos } */ *ap = v;
378 1.1 pk
379 1.21 mycroft switch (ap->a_name) {
380 1.21 mycroft case _PC_LINK_MAX:
381 1.21 mycroft *ap->a_retval = LINK_MAX;
382 1.21 mycroft return (0);
383 1.21 mycroft case _PC_MAX_CANON:
384 1.21 mycroft *ap->a_retval = MAX_CANON;
385 1.21 mycroft return (0);
386 1.21 mycroft case _PC_MAX_INPUT:
387 1.21 mycroft *ap->a_retval = MAX_INPUT;
388 1.21 mycroft return (0);
389 1.21 mycroft case _PC_PIPE_BUF:
390 1.21 mycroft *ap->a_retval = PIPE_BUF;
391 1.21 mycroft return (0);
392 1.21 mycroft case _PC_CHOWN_RESTRICTED:
393 1.21 mycroft *ap->a_retval = 1;
394 1.21 mycroft return (0);
395 1.21 mycroft case _PC_VDISABLE:
396 1.21 mycroft *ap->a_retval = _POSIX_VDISABLE;
397 1.55 kleink return (0);
398 1.55 kleink case _PC_SYNC_IO:
399 1.55 kleink *ap->a_retval = 1;
400 1.21 mycroft return (0);
401 1.21 mycroft default:
402 1.21 mycroft return (EINVAL);
403 1.21 mycroft }
404 1.21 mycroft /* NOTREACHED */
405 1.1 pk }
406 1.1 pk
407 1.1 pk /*
408 1.9 cgd * _print is used for debugging.
409 1.9 cgd * just print a readable description
410 1.9 cgd * of (vp).
411 1.1 pk */
412 1.37 christos int
413 1.37 christos procfs_print(v)
414 1.37 christos void *v;
415 1.37 christos {
416 1.22 mycroft struct vop_print_args /* {
417 1.22 mycroft struct vnode *a_vp;
418 1.37 christos } */ *ap = v;
419 1.21 mycroft struct pfsnode *pfs = VTOPFS(ap->a_vp);
420 1.5 pk
421 1.44 christos printf("tag VT_PROCFS, type %d, pid %d, mode %x, flags %lx\n",
422 1.21 mycroft pfs->pfs_type, pfs->pfs_pid, pfs->pfs_mode, pfs->pfs_flags);
423 1.37 christos return 0;
424 1.36 mycroft }
425 1.36 mycroft
426 1.36 mycroft int
427 1.37 christos procfs_link(v)
428 1.37 christos void *v;
429 1.37 christos {
430 1.36 mycroft struct vop_link_args /* {
431 1.36 mycroft struct vnode *a_dvp;
432 1.36 mycroft struct vnode *a_vp;
433 1.36 mycroft struct componentname *a_cnp;
434 1.37 christos } */ *ap = v;
435 1.36 mycroft
436 1.36 mycroft VOP_ABORTOP(ap->a_dvp, ap->a_cnp);
437 1.36 mycroft vput(ap->a_dvp);
438 1.36 mycroft return (EROFS);
439 1.36 mycroft }
440 1.36 mycroft
441 1.36 mycroft int
442 1.37 christos procfs_symlink(v)
443 1.37 christos void *v;
444 1.37 christos {
445 1.36 mycroft struct vop_symlink_args /* {
446 1.36 mycroft struct vnode *a_dvp;
447 1.36 mycroft struct vnode **a_vpp;
448 1.36 mycroft struct componentname *a_cnp;
449 1.36 mycroft struct vattr *a_vap;
450 1.36 mycroft char *a_target;
451 1.37 christos } */ *ap = v;
452 1.36 mycroft
453 1.36 mycroft VOP_ABORTOP(ap->a_dvp, ap->a_cnp);
454 1.36 mycroft vput(ap->a_dvp);
455 1.36 mycroft return (EROFS);
456 1.1 pk }
457 1.1 pk
458 1.1 pk /*
459 1.9 cgd * Invent attributes for pfsnode (vp) and store
460 1.9 cgd * them in (vap).
461 1.9 cgd * Directories lengths are returned as zero since
462 1.9 cgd * any real length would require the genuine size
463 1.9 cgd * to be computed, and nothing cares anyway.
464 1.9 cgd *
465 1.9 cgd * this is relatively minimal for procfs.
466 1.1 pk */
467 1.37 christos int
468 1.37 christos procfs_getattr(v)
469 1.37 christos void *v;
470 1.37 christos {
471 1.22 mycroft struct vop_getattr_args /* {
472 1.22 mycroft struct vnode *a_vp;
473 1.22 mycroft struct vattr *a_vap;
474 1.22 mycroft struct ucred *a_cred;
475 1.22 mycroft struct proc *a_p;
476 1.37 christos } */ *ap = v;
477 1.21 mycroft struct pfsnode *pfs = VTOPFS(ap->a_vp);
478 1.21 mycroft struct vattr *vap = ap->a_vap;
479 1.1 pk struct proc *procp;
480 1.33 cgd struct timeval tv;
481 1.9 cgd int error;
482 1.1 pk
483 1.21 mycroft /* first check the process still exists */
484 1.21 mycroft switch (pfs->pfs_type) {
485 1.21 mycroft case Proot:
486 1.21 mycroft case Pcurproc:
487 1.21 mycroft procp = 0;
488 1.21 mycroft break;
489 1.21 mycroft
490 1.21 mycroft default:
491 1.21 mycroft procp = PFIND(pfs->pfs_pid);
492 1.21 mycroft if (procp == 0)
493 1.21 mycroft return (ENOENT);
494 1.46 mycroft break;
495 1.21 mycroft }
496 1.21 mycroft
497 1.21 mycroft error = 0;
498 1.21 mycroft
499 1.9 cgd /* start by zeroing out the attributes */
500 1.1 pk VATTR_NULL(vap);
501 1.9 cgd
502 1.9 cgd /* next do all the common fields */
503 1.21 mycroft vap->va_type = ap->a_vp->v_type;
504 1.9 cgd vap->va_mode = pfs->pfs_mode;
505 1.9 cgd vap->va_fileid = pfs->pfs_fileno;
506 1.9 cgd vap->va_flags = 0;
507 1.19 cgd vap->va_blocksize = PAGE_SIZE;
508 1.9 cgd
509 1.9 cgd /*
510 1.9 cgd * Make all times be current TOD.
511 1.9 cgd * It would be possible to get the process start
512 1.9 cgd * time from the p_stat structure, but there's
513 1.9 cgd * no "file creation" time stamp anyway, and the
514 1.9 cgd * p_stat structure is not addressible if u. gets
515 1.9 cgd * swapped out for that process.
516 1.9 cgd */
517 1.33 cgd microtime(&tv);
518 1.33 cgd TIMEVAL_TO_TIMESPEC(&tv, &vap->va_ctime);
519 1.9 cgd vap->va_atime = vap->va_mtime = vap->va_ctime;
520 1.9 cgd
521 1.21 mycroft switch (pfs->pfs_type) {
522 1.21 mycroft case Pmem:
523 1.21 mycroft case Pregs:
524 1.21 mycroft case Pfpregs:
525 1.47 mycroft /*
526 1.47 mycroft * If the process has exercised some setuid or setgid
527 1.47 mycroft * privilege, then rip away read/write permission so
528 1.47 mycroft * that only root can gain access.
529 1.47 mycroft */
530 1.21 mycroft if (procp->p_flag & P_SUGID)
531 1.47 mycroft vap->va_mode &= ~(S_IRUSR|S_IWUSR);
532 1.46 mycroft /* FALLTHROUGH */
533 1.21 mycroft case Pctl:
534 1.21 mycroft case Pstatus:
535 1.21 mycroft case Pnote:
536 1.21 mycroft case Pnotepg:
537 1.60 msaitoh case Pmap:
538 1.61 christos case Pcmdline:
539 1.12 ws vap->va_nlink = 1;
540 1.12 ws vap->va_uid = procp->p_ucred->cr_uid;
541 1.12 ws vap->va_gid = procp->p_ucred->cr_gid;
542 1.21 mycroft break;
543 1.46 mycroft
544 1.46 mycroft default:
545 1.37 christos break;
546 1.12 ws }
547 1.12 ws
548 1.9 cgd /*
549 1.9 cgd * now do the object specific fields
550 1.9 cgd *
551 1.9 cgd * The size could be set from struct reg, but it's hardly
552 1.9 cgd * worth the trouble, and it puts some (potentially) machine
553 1.9 cgd * dependent data into this machine-independent code. If it
554 1.9 cgd * becomes important then this function should break out into
555 1.9 cgd * a per-file stat function in the corresponding .c file.
556 1.9 cgd */
557 1.1 pk
558 1.9 cgd switch (pfs->pfs_type) {
559 1.9 cgd case Proot:
560 1.21 mycroft /*
561 1.21 mycroft * Set nlink to 1 to tell fts(3) we don't actually know.
562 1.21 mycroft */
563 1.21 mycroft vap->va_nlink = 1;
564 1.21 mycroft vap->va_uid = 0;
565 1.21 mycroft vap->va_gid = 0;
566 1.46 mycroft vap->va_bytes = vap->va_size = DEV_BSIZE;
567 1.21 mycroft break;
568 1.21 mycroft
569 1.21 mycroft case Pcurproc: {
570 1.21 mycroft char buf[16]; /* should be enough */
571 1.21 mycroft vap->va_nlink = 1;
572 1.21 mycroft vap->va_uid = 0;
573 1.21 mycroft vap->va_gid = 0;
574 1.46 mycroft vap->va_bytes = vap->va_size =
575 1.44 christos sprintf(buf, "%ld", (long)curproc->p_pid);
576 1.9 cgd break;
577 1.21 mycroft }
578 1.9 cgd
579 1.9 cgd case Pproc:
580 1.9 cgd vap->va_nlink = 2;
581 1.21 mycroft vap->va_uid = procp->p_ucred->cr_uid;
582 1.21 mycroft vap->va_gid = procp->p_ucred->cr_gid;
583 1.46 mycroft vap->va_bytes = vap->va_size = DEV_BSIZE;
584 1.21 mycroft break;
585 1.21 mycroft
586 1.21 mycroft case Pfile:
587 1.21 mycroft error = EOPNOTSUPP;
588 1.9 cgd break;
589 1.9 cgd
590 1.9 cgd case Pmem:
591 1.9 cgd vap->va_bytes = vap->va_size =
592 1.9 cgd ctob(procp->p_vmspace->vm_tsize +
593 1.9 cgd procp->p_vmspace->vm_dsize +
594 1.9 cgd procp->p_vmspace->vm_ssize);
595 1.9 cgd break;
596 1.9 cgd
597 1.18 cgd #if defined(PT_GETREGS) || defined(PT_SETREGS)
598 1.9 cgd case Pregs:
599 1.11 cgd vap->va_bytes = vap->va_size = sizeof(struct reg);
600 1.18 cgd break;
601 1.14 cgd #endif
602 1.14 cgd
603 1.18 cgd #if defined(PT_GETFPREGS) || defined(PT_SETFPREGS)
604 1.14 cgd case Pfpregs:
605 1.14 cgd vap->va_bytes = vap->va_size = sizeof(struct fpreg);
606 1.18 cgd break;
607 1.14 cgd #endif
608 1.12 ws
609 1.21 mycroft case Pctl:
610 1.12 ws case Pstatus:
611 1.9 cgd case Pnote:
612 1.9 cgd case Pnotepg:
613 1.60 msaitoh case Pmap:
614 1.61 christos case Pcmdline:
615 1.46 mycroft vap->va_bytes = vap->va_size = 0;
616 1.9 cgd break;
617 1.1 pk
618 1.9 cgd default:
619 1.21 mycroft panic("procfs_getattr");
620 1.1 pk }
621 1.1 pk
622 1.9 cgd return (error);
623 1.1 pk }
624 1.1 pk
625 1.37 christos /*ARGSUSED*/
626 1.37 christos int
627 1.37 christos procfs_setattr(v)
628 1.37 christos void *v;
629 1.5 pk {
630 1.5 pk /*
631 1.9 cgd * just fake out attribute setting
632 1.9 cgd * it's not good to generate an error
633 1.9 cgd * return, otherwise things like creat()
634 1.9 cgd * will fail when they try to set the
635 1.9 cgd * file length to 0. worse, this means
636 1.9 cgd * that echo $note > /proc/$pid/note will fail.
637 1.5 pk */
638 1.5 pk
639 1.9 cgd return (0);
640 1.5 pk }
641 1.5 pk
642 1.9 cgd /*
643 1.9 cgd * implement access checking.
644 1.9 cgd *
645 1.9 cgd * actually, the check for super-user is slightly
646 1.9 cgd * broken since it will allow read access to write-only
647 1.9 cgd * objects. this doesn't cause any particular trouble
648 1.9 cgd * but does mean that the i/o entry points need to check
649 1.9 cgd * that the operation really does make sense.
650 1.9 cgd */
651 1.37 christos int
652 1.37 christos procfs_access(v)
653 1.37 christos void *v;
654 1.37 christos {
655 1.22 mycroft struct vop_access_args /* {
656 1.22 mycroft struct vnode *a_vp;
657 1.22 mycroft int a_mode;
658 1.22 mycroft struct ucred *a_cred;
659 1.22 mycroft struct proc *a_p;
660 1.37 christos } */ *ap = v;
661 1.31 mycroft struct vattr va;
662 1.1 pk int error;
663 1.1 pk
664 1.37 christos if ((error = VOP_GETATTR(ap->a_vp, &va, ap->a_cred, ap->a_p)) != 0)
665 1.1 pk return (error);
666 1.9 cgd
667 1.49 mycroft return (vaccess(va.va_type, va.va_mode,
668 1.49 mycroft va.va_uid, va.va_gid, ap->a_mode, ap->a_cred));
669 1.1 pk }
670 1.1 pk
671 1.1 pk /*
672 1.9 cgd * lookup. this is incredibly complicated in the
673 1.9 cgd * general case, however for most pseudo-filesystems
674 1.9 cgd * very little needs to be done.
675 1.9 cgd *
676 1.62 wrstuden * Locking isn't hard here, just poorly documented.
677 1.62 wrstuden *
678 1.62 wrstuden * If we're looking up ".", just vref the parent & return it.
679 1.62 wrstuden *
680 1.62 wrstuden * If we're looking up "..", unlock the parent, and lock "..". If everything
681 1.62 wrstuden * went ok, and we're on the last component and the caller requested the
682 1.62 wrstuden * parent locked, try to re-lock the parent. We do this to prevent lock
683 1.62 wrstuden * races.
684 1.62 wrstuden *
685 1.62 wrstuden * For anything else, get the needed node. Then unlock the parent if not
686 1.62 wrstuden * the last component or not LOCKPARENT (i.e. if we wouldn't re-lock the
687 1.62 wrstuden * parent in the .. case).
688 1.62 wrstuden *
689 1.62 wrstuden * We try to exit with the parent locked in error cases.
690 1.9 cgd */
691 1.37 christos int
692 1.37 christos procfs_lookup(v)
693 1.37 christos void *v;
694 1.37 christos {
695 1.22 mycroft struct vop_lookup_args /* {
696 1.22 mycroft struct vnode * a_dvp;
697 1.22 mycroft struct vnode ** a_vpp;
698 1.22 mycroft struct componentname * a_cnp;
699 1.37 christos } */ *ap = v;
700 1.21 mycroft struct componentname *cnp = ap->a_cnp;
701 1.21 mycroft struct vnode **vpp = ap->a_vpp;
702 1.21 mycroft struct vnode *dvp = ap->a_dvp;
703 1.45 cgd const char *pname = cnp->cn_nameptr;
704 1.32 mycroft struct proc_target *pt;
705 1.32 mycroft struct vnode *fvp;
706 1.1 pk pid_t pid;
707 1.9 cgd struct pfsnode *pfs;
708 1.32 mycroft struct proc *p;
709 1.62 wrstuden int i, error, wantpunlock;
710 1.1 pk
711 1.32 mycroft *vpp = NULL;
712 1.62 wrstuden cnp->cn_flags &= ~PDIRUNLOCK;
713 1.32 mycroft
714 1.32 mycroft if (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)
715 1.32 mycroft return (EROFS);
716 1.32 mycroft
717 1.21 mycroft if (cnp->cn_namelen == 1 && *pname == '.') {
718 1.21 mycroft *vpp = dvp;
719 1.9 cgd VREF(dvp);
720 1.9 cgd return (0);
721 1.9 cgd }
722 1.1 pk
723 1.62 wrstuden wantpunlock = (~cnp->cn_flags & (LOCKPARENT | ISLASTCN));
724 1.9 cgd pfs = VTOPFS(dvp);
725 1.9 cgd switch (pfs->pfs_type) {
726 1.9 cgd case Proot:
727 1.62 wrstuden /*
728 1.62 wrstuden * Shouldn't get here with .. in the root node.
729 1.62 wrstuden */
730 1.62 wrstuden if (cnp->cn_flags & ISDOTDOT)
731 1.9 cgd return (EIO);
732 1.9 cgd
733 1.62 wrstuden if (CNEQ(cnp, "curproc", 7)) {
734 1.62 wrstuden error = procfs_allocvp(dvp->v_mount, vpp, 0, Pcurproc);
735 1.62 wrstuden if ((error == 0) && (wantpunlock)) {
736 1.62 wrstuden VOP_UNLOCK(dvp, 0);
737 1.62 wrstuden cnp->cn_flags |= PDIRUNLOCK;
738 1.62 wrstuden }
739 1.62 wrstuden return (error);
740 1.62 wrstuden }
741 1.12 ws
742 1.21 mycroft pid = atopid(pname, cnp->cn_namelen);
743 1.9 cgd if (pid == NO_PID)
744 1.32 mycroft break;
745 1.9 cgd
746 1.32 mycroft p = PFIND(pid);
747 1.32 mycroft if (p == 0)
748 1.32 mycroft break;
749 1.9 cgd
750 1.63 thorpej error = procfs_allocvp(dvp->v_mount, vpp, pid, Pproc);
751 1.62 wrstuden if ((error == 0) && (wantpunlock)) {
752 1.62 wrstuden VOP_UNLOCK(dvp, 0);
753 1.62 wrstuden cnp->cn_flags |= PDIRUNLOCK;
754 1.62 wrstuden }
755 1.62 wrstuden return (error);
756 1.9 cgd
757 1.9 cgd case Pproc:
758 1.62 wrstuden /*
759 1.62 wrstuden * do the .. dance. We unlock the directory, and then
760 1.62 wrstuden * get the root dir. That will automatically return ..
761 1.62 wrstuden * locked. Then if the caller wanted dvp locked, we
762 1.62 wrstuden * re-lock.
763 1.62 wrstuden */
764 1.62 wrstuden if (cnp->cn_flags & ISDOTDOT) {
765 1.62 wrstuden VOP_UNLOCK(dvp, 0);
766 1.62 wrstuden cnp->cn_flags |= PDIRUNLOCK;
767 1.62 wrstuden error = procfs_root(dvp->v_mount, vpp);
768 1.62 wrstuden if ((error == 0) && (wantpunlock == 0) &&
769 1.62 wrstuden ((error = vn_lock(dvp, LK_EXCLUSIVE)) == 0))
770 1.62 wrstuden cnp->cn_flags &= ~PDIRUNLOCK;
771 1.62 wrstuden return (error);
772 1.62 wrstuden }
773 1.1 pk
774 1.32 mycroft p = PFIND(pfs->pfs_pid);
775 1.32 mycroft if (p == 0)
776 1.32 mycroft break;
777 1.32 mycroft
778 1.32 mycroft for (pt = proc_targets, i = 0; i < nproc_targets; pt++, i++) {
779 1.32 mycroft if (cnp->cn_namelen == pt->pt_namlen &&
780 1.56 perry memcmp(pt->pt_name, pname, cnp->cn_namelen) == 0 &&
781 1.32 mycroft (pt->pt_valid == NULL || (*pt->pt_valid)(p)))
782 1.9 cgd goto found;
783 1.9 cgd }
784 1.32 mycroft break;
785 1.1 pk
786 1.9 cgd found:
787 1.32 mycroft if (pt->pt_pfstype == Pfile) {
788 1.32 mycroft fvp = procfs_findtextvp(p);
789 1.23 mycroft /* We already checked that it exists. */
790 1.32 mycroft VREF(fvp);
791 1.53 fvdl vn_lock(fvp, LK_EXCLUSIVE | LK_RETRY);
792 1.62 wrstuden if (wantpunlock) {
793 1.62 wrstuden VOP_UNLOCK(dvp, 0);
794 1.62 wrstuden cnp->cn_flags |= PDIRUNLOCK;
795 1.62 wrstuden }
796 1.32 mycroft *vpp = fvp;
797 1.21 mycroft return (0);
798 1.21 mycroft }
799 1.1 pk
800 1.62 wrstuden error = procfs_allocvp(dvp->v_mount, vpp, pfs->pfs_pid,
801 1.62 wrstuden pt->pt_pfstype);
802 1.62 wrstuden if ((error == 0) && (wantpunlock)) {
803 1.62 wrstuden VOP_UNLOCK(dvp, 0);
804 1.62 wrstuden cnp->cn_flags |= PDIRUNLOCK;
805 1.62 wrstuden }
806 1.62 wrstuden return (error);
807 1.1 pk
808 1.9 cgd default:
809 1.9 cgd return (ENOTDIR);
810 1.1 pk }
811 1.32 mycroft
812 1.32 mycroft return (cnp->cn_nameiop == LOOKUP ? ENOENT : EROFS);
813 1.1 pk }
814 1.1 pk
815 1.18 cgd int
816 1.21 mycroft procfs_validfile(p)
817 1.21 mycroft struct proc *p;
818 1.18 cgd {
819 1.21 mycroft
820 1.21 mycroft return (procfs_findtextvp(p) != NULLVP);
821 1.18 cgd }
822 1.18 cgd
823 1.9 cgd /*
824 1.9 cgd * readdir returns directory entries from pfsnode (vp).
825 1.9 cgd *
826 1.9 cgd * the strategy here with procfs is to generate a single
827 1.34 mycroft * directory entry at a time (struct dirent) and then
828 1.9 cgd * copy that out to userland using uiomove. a more efficent
829 1.9 cgd * though more complex implementation, would try to minimize
830 1.9 cgd * the number of calls to uiomove(). for procfs, this is
831 1.9 cgd * hardly worth the added code complexity.
832 1.9 cgd *
833 1.9 cgd * this should just be done through read()
834 1.9 cgd */
835 1.37 christos int
836 1.37 christos procfs_readdir(v)
837 1.37 christos void *v;
838 1.37 christos {
839 1.22 mycroft struct vop_readdir_args /* {
840 1.22 mycroft struct vnode *a_vp;
841 1.22 mycroft struct uio *a_uio;
842 1.22 mycroft struct ucred *a_cred;
843 1.22 mycroft int *a_eofflag;
844 1.53 fvdl off_t **a_cookies;
845 1.53 fvdl int *a_ncookies;
846 1.37 christos } */ *ap = v;
847 1.21 mycroft struct uio *uio = ap->a_uio;
848 1.34 mycroft struct dirent d;
849 1.9 cgd struct pfsnode *pfs;
850 1.34 mycroft int i;
851 1.9 cgd int error;
852 1.53 fvdl off_t *cookies = NULL;
853 1.53 fvdl int ncookies;
854 1.9 cgd
855 1.21 mycroft pfs = VTOPFS(ap->a_vp);
856 1.1 pk
857 1.9 cgd if (uio->uio_resid < UIO_MX)
858 1.9 cgd return (EINVAL);
859 1.35 mycroft if (uio->uio_offset < 0)
860 1.1 pk return (EINVAL);
861 1.1 pk
862 1.9 cgd error = 0;
863 1.35 mycroft i = uio->uio_offset;
864 1.56 perry memset((caddr_t)&d, 0, UIO_MX);
865 1.34 mycroft d.d_reclen = UIO_MX;
866 1.53 fvdl ncookies = uio->uio_resid / UIO_MX;
867 1.9 cgd
868 1.9 cgd switch (pfs->pfs_type) {
869 1.9 cgd /*
870 1.9 cgd * this is for the process-specific sub-directories.
871 1.9 cgd * all that is needed to is copy out all the entries
872 1.9 cgd * from the procent[] table (top of this file).
873 1.9 cgd */
874 1.9 cgd case Pproc: {
875 1.32 mycroft struct proc *p;
876 1.32 mycroft struct proc_target *pt;
877 1.9 cgd
878 1.32 mycroft p = PFIND(pfs->pfs_pid);
879 1.32 mycroft if (p == NULL)
880 1.32 mycroft break;
881 1.32 mycroft
882 1.53 fvdl if (ap->a_ncookies) {
883 1.53 fvdl ncookies = min(ncookies, (nproc_targets - i));
884 1.53 fvdl MALLOC(cookies, off_t *, ncookies * sizeof (off_t),
885 1.53 fvdl M_TEMP, M_WAITOK);
886 1.53 fvdl *ap->a_cookies = cookies;
887 1.53 fvdl }
888 1.53 fvdl
889 1.32 mycroft for (pt = &proc_targets[i];
890 1.32 mycroft uio->uio_resid >= UIO_MX && i < nproc_targets; pt++, i++) {
891 1.32 mycroft if (pt->pt_valid && (*pt->pt_valid)(p) == 0)
892 1.21 mycroft continue;
893 1.21 mycroft
894 1.34 mycroft d.d_fileno = PROCFS_FILENO(pfs->pfs_pid, pt->pt_pfstype);
895 1.34 mycroft d.d_namlen = pt->pt_namlen;
896 1.56 perry memcpy(d.d_name, pt->pt_name, pt->pt_namlen + 1);
897 1.34 mycroft d.d_type = pt->pt_type;
898 1.15 ws
899 1.37 christos if ((error = uiomove((caddr_t)&d, UIO_MX, uio)) != 0)
900 1.9 cgd break;
901 1.53 fvdl if (cookies)
902 1.35 mycroft *cookies++ = i + 1;
903 1.6 ws }
904 1.9 cgd
905 1.9 cgd break;
906 1.34 mycroft }
907 1.9 cgd
908 1.9 cgd /*
909 1.9 cgd * this is for the root of the procfs filesystem
910 1.9 cgd * what is needed is a special entry for "curproc"
911 1.9 cgd * followed by an entry for each process on allproc
912 1.9 cgd #ifdef PROCFS_ZOMBIE
913 1.59 thorpej * and deadproc and zombproc.
914 1.9 cgd #endif
915 1.9 cgd */
916 1.9 cgd
917 1.9 cgd case Proot: {
918 1.53 fvdl int pcnt = i, nc = 0;
919 1.59 thorpej const struct proclist_desc *pd;
920 1.59 thorpej volatile struct proc *p;
921 1.9 cgd
922 1.34 mycroft if (pcnt > 3)
923 1.34 mycroft pcnt = 3;
924 1.53 fvdl if (ap->a_ncookies) {
925 1.53 fvdl /*
926 1.53 fvdl * XXX Potentially allocating too much space here,
927 1.53 fvdl * but I'm lazy. This loop needs some work.
928 1.53 fvdl */
929 1.53 fvdl MALLOC(cookies, off_t *, ncookies * sizeof (off_t),
930 1.53 fvdl M_TEMP, M_WAITOK);
931 1.53 fvdl *ap->a_cookies = cookies;
932 1.53 fvdl }
933 1.59 thorpej /*
934 1.59 thorpej * XXX: THIS LOOP ASSUMES THAT allproc IS THE FIRST
935 1.59 thorpej * PROCLIST IN THE proclists!
936 1.59 thorpej */
937 1.64 thorpej proclist_lock_read();
938 1.59 thorpej pd = proclists;
939 1.37 christos #ifdef PROCFS_ZOMBIE
940 1.21 mycroft again:
941 1.37 christos #endif
942 1.59 thorpej for (p = LIST_FIRST(pd->pd_list);
943 1.59 thorpej p != NULL && uio->uio_resid >= UIO_MX; i++, pcnt++) {
944 1.9 cgd switch (i) {
945 1.12 ws case 0: /* `.' */
946 1.12 ws case 1: /* `..' */
947 1.34 mycroft d.d_fileno = PROCFS_FILENO(0, Proot);
948 1.34 mycroft d.d_namlen = i + 1;
949 1.56 perry memcpy(d.d_name, "..", d.d_namlen);
950 1.34 mycroft d.d_name[i + 1] = '\0';
951 1.34 mycroft d.d_type = DT_DIR;
952 1.12 ws break;
953 1.21 mycroft
954 1.12 ws case 2:
955 1.34 mycroft d.d_fileno = PROCFS_FILENO(0, Pcurproc);
956 1.34 mycroft d.d_namlen = 7;
957 1.56 perry memcpy(d.d_name, "curproc", 8);
958 1.34 mycroft d.d_type = DT_LNK;
959 1.9 cgd break;
960 1.9 cgd
961 1.9 cgd default:
962 1.21 mycroft while (pcnt < i) {
963 1.21 mycroft pcnt++;
964 1.59 thorpej p = LIST_NEXT(p, p_list);
965 1.21 mycroft if (!p)
966 1.21 mycroft goto done;
967 1.9 cgd }
968 1.34 mycroft d.d_fileno = PROCFS_FILENO(p->p_pid, Pproc);
969 1.44 christos d.d_namlen = sprintf(d.d_name, "%ld",
970 1.21 mycroft (long)p->p_pid);
971 1.34 mycroft d.d_type = DT_REG;
972 1.25 mycroft p = p->p_list.le_next;
973 1.9 cgd break;
974 1.1 pk }
975 1.21 mycroft
976 1.37 christos if ((error = uiomove((caddr_t)&d, UIO_MX, uio)) != 0)
977 1.9 cgd break;
978 1.53 fvdl nc++;
979 1.53 fvdl if (cookies)
980 1.35 mycroft *cookies++ = i + 1;
981 1.1 pk }
982 1.21 mycroft done:
983 1.21 mycroft
984 1.21 mycroft #ifdef PROCFS_ZOMBIE
985 1.59 thorpej pd++;
986 1.59 thorpej if (p == NULL && pd->pd_list != NULL)
987 1.21 mycroft goto again;
988 1.21 mycroft #endif
989 1.64 thorpej proclist_unlock_read();
990 1.53 fvdl ncookies = nc;
991 1.1 pk
992 1.9 cgd break;
993 1.9 cgd
994 1.34 mycroft }
995 1.9 cgd
996 1.9 cgd default:
997 1.9 cgd error = ENOTDIR;
998 1.9 cgd break;
999 1.1 pk }
1000 1.9 cgd
1001 1.53 fvdl if (ap->a_ncookies) {
1002 1.53 fvdl if (error) {
1003 1.54 fvdl if (cookies)
1004 1.54 fvdl FREE(*ap->a_cookies, M_TEMP);
1005 1.53 fvdl *ap->a_ncookies = 0;
1006 1.53 fvdl *ap->a_cookies = NULL;
1007 1.53 fvdl } else
1008 1.53 fvdl *ap->a_ncookies = ncookies;
1009 1.53 fvdl }
1010 1.35 mycroft uio->uio_offset = i;
1011 1.9 cgd return (error);
1012 1.12 ws }
1013 1.12 ws
1014 1.12 ws /*
1015 1.21 mycroft * readlink reads the link of `curproc'
1016 1.12 ws */
1017 1.37 christos int
1018 1.37 christos procfs_readlink(v)
1019 1.37 christos void *v;
1020 1.12 ws {
1021 1.37 christos struct vop_readlink_args *ap = v;
1022 1.12 ws char buf[16]; /* should be enough */
1023 1.12 ws int len;
1024 1.12 ws
1025 1.21 mycroft if (VTOPFS(ap->a_vp)->pfs_fileno != PROCFS_FILENO(0, Pcurproc))
1026 1.21 mycroft return (EINVAL);
1027 1.12 ws
1028 1.44 christos len = sprintf(buf, "%ld", (long)curproc->p_pid);
1029 1.12 ws
1030 1.21 mycroft return (uiomove((caddr_t)buf, len, ap->a_uio));
1031 1.1 pk }
1032 1.1 pk
1033 1.1 pk /*
1034 1.9 cgd * convert decimal ascii to pid_t
1035 1.1 pk */
1036 1.9 cgd static pid_t
1037 1.9 cgd atopid(b, len)
1038 1.9 cgd const char *b;
1039 1.9 cgd u_int len;
1040 1.1 pk {
1041 1.9 cgd pid_t p = 0;
1042 1.1 pk
1043 1.1 pk while (len--) {
1044 1.9 cgd char c = *b++;
1045 1.1 pk if (c < '0' || c > '9')
1046 1.9 cgd return (NO_PID);
1047 1.9 cgd p = 10 * p + (c - '0');
1048 1.9 cgd if (p > PID_MAX)
1049 1.9 cgd return (NO_PID);
1050 1.1 pk }
1051 1.9 cgd
1052 1.9 cgd return (p);
1053 1.1 pk }
1054