Merge branch 'vendor/LDNS'
[dragonfly.git] / sys / emulation / linux / i386 / linprocfs / linprocfs_subr.c
1 /*
2  * Copyright (c) 2000 Dag-Erling Coïdan Smørgrav
3  * Copyright (c) 1999 Pierre Beyssac
4  * Copyright (c) 1993 Jan-Simon Pendry
5  * Copyright (c) 1993
6  *      The Regents of the University of California.  All rights reserved.
7  *
8  * This code is derived from software contributed to Berkeley by
9  * Jan-Simon Pendry.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  *      @(#)procfs_subr.c       8.6 (Berkeley) 5/14/95
40  *
41  * $FreeBSD: src/sys/i386/linux/linprocfs/linprocfs_subr.c,v 1.3.2.4 2001/06/25 19:46:47 pirzyk Exp $
42  * $DragonFly: src/sys/emulation/linux/i386/linprocfs/linprocfs_subr.c,v 1.23 2007/08/25 23:27:02 corecode Exp $
43  */
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/proc.h>
48 #include <sys/vnode.h>
49 #include <sys/malloc.h>
50 #include <sys/mount.h>
51 #include "linprocfs.h"
52
53 #define PFSHSIZE        256
54 #define PFSHMASK        (PFSHSIZE - 1)
55
56 static struct pfsnode *pfshead[PFSHSIZE];
57 static struct lwkt_token pfs_token;
58 static int pfsvplock;
59
60 extern int procfs_domem (struct proc *, struct lwp *, struct pfsnode *pfsp, struct uio *uio);
61
62 /*
63  * allocate a pfsnode/vnode pair.  the vnode is
64  * referenced, but not locked.
65  *
66  * the pid, pfs_type, and mount point uniquely
67  * identify a pfsnode.  the mount point is needed
68  * because someone might mount this filesystem
69  * twice.
70  *
71  * all pfsnodes are maintained on a singly-linked
72  * list.  new nodes are only allocated when they cannot
73  * be found on this list.  entries on the list are
74  * removed when the vfs reclaim entry is called.
75  *
76  * a single lock is kept for the entire list.  this is
77  * needed because the getnewvnode() function can block
78  * waiting for a vnode to become free, in which case there
79  * may be more than one process trying to get the same
80  * vnode.  this lock is only taken if we are going to
81  * call getnewvnode, since the kernel itself is single-threaded.
82  *
83  * if an entry is found on the list, then call vget() to
84  * take a reference.  this is done because there may be
85  * zero references to it and so it needs to removed from
86  * the vnode free list.
87  */
88 int
89 linprocfs_allocvp(struct mount *mp, struct vnode **vpp, long pid,
90                   pfstype pfs_type)
91 {
92         struct pfsnode *pfs;
93         struct vnode *vp;
94         struct pfsnode **pp;
95         int error;
96
97         lwkt_gettoken(&pfs_token);
98 loop:
99         for (pfs = pfshead[pid & PFSHMASK]; pfs; pfs = pfs->pfs_next) {
100                 vp = PFSTOV(pfs);
101                 if (pfs->pfs_pid == pid &&
102                     pfs->pfs_type == pfs_type &&
103                     vp->v_mount == mp) {
104                         if (vget(vp, LK_EXCLUSIVE|LK_SLEEPFAIL))
105                                 goto loop;
106                         *vpp = vp;
107                         lwkt_reltoken(&pfs_token);
108                         return (0);
109                 }
110         }
111
112         /*
113          * otherwise lock the vp list while we call getnewvnode
114          * since that can block.
115          */
116         if (pfsvplock & PROCFS_LOCKED) {
117                 pfsvplock |= PROCFS_WANT;
118                 (void) tsleep((caddr_t) &pfsvplock, 0, "pfsavp", 0);
119                 goto loop;
120         }
121         pfsvplock |= PROCFS_LOCKED;
122
123         /*
124          * Do the MALLOC before the getnewvnode since doing so afterward
125          * might cause a bogus v_data pointer to get dereferenced
126          * elsewhere if MALLOC should block.
127          */
128         MALLOC(pfs, struct pfsnode *, sizeof(struct pfsnode), M_TEMP, M_WAITOK);
129
130         error = getnewvnode(VT_PROCFS, mp, vpp, 0, 0);
131         if (error) {
132                 FREE(pfs, M_TEMP);
133                 goto out;
134         }
135         vp = *vpp;
136
137         vp->v_data = pfs;
138
139         pfs->pfs_next = 0;
140         pfs->pfs_pid = (pid_t) pid;
141         pfs->pfs_type = pfs_type;
142         pfs->pfs_vnode = vp;
143         pfs->pfs_flags = 0;
144         pfs->pfs_lockowner = NULL;
145         pfs->pfs_fileno = PROCFS_FILENO(pid, pfs_type);
146
147         switch (pfs_type) {
148         case Proot:     /* /proc = dr-xr-xr-x */
149                 vsetflags(vp, VROOT);
150                 /* fallthrough */
151         case Pnet:
152         case Psys:
153         case Psyskernel:
154                 pfs->pfs_mode = (VREAD|VEXEC) |
155                                 (VREAD|VEXEC) >> 3 |
156                                 (VREAD|VEXEC) >> 6;
157                 vp->v_type = VDIR;
158                 break;
159
160         case Pself:     /* /proc/self = lr--r--r-- */
161                 pfs->pfs_mode = (VREAD) |
162                                 (VREAD >> 3) |
163                                 (VREAD >> 6);
164                 vp->v_type = VLNK;
165                 break;
166
167         case Pproc:
168                 pfs->pfs_mode = (VREAD|VEXEC) |
169                                 (VREAD|VEXEC) >> 3 |
170                                 (VREAD|VEXEC) >> 6;
171                 vp->v_type = VDIR;
172                 break;
173
174         case Pexe:
175         case Pcwd:
176         case Pprocroot:
177         case Pfd:
178                 pfs->pfs_mode = (VREAD|VEXEC) |
179                                 (VREAD|VEXEC) >> 3 |
180                                 (VREAD|VEXEC) >> 6;
181                 vp->v_type = VLNK;
182                 break;
183
184         case Pmem:
185                 pfs->pfs_mode = (VREAD|VWRITE) |
186                                 (VREAD) >> 3;
187                 vp->v_type = VREG;
188                 break;
189
190         case Pprocstat:
191         case Pprocstatus:
192         case Pcmdline:
193         case Penviron:
194         case Pstatm:
195                 /* fallthrough */
196         case Pmaps:
197         case Pmeminfo:
198         case Pcpuinfo:
199         case Pmounts:
200         case Pstat:
201         case Puptime:
202         case Pversion:
203         case Ploadavg:
204         case Pdevices:
205         case Pnetdev:
206         case Posrelease:
207         case Postype:
208         case Ppidmax:
209                 pfs->pfs_mode = (VREAD) |
210                                 (VREAD >> 3) |
211                                 (VREAD >> 6);
212                 vp->v_type = VREG;
213                 break;
214
215         default:
216                 panic("linprocfs_allocvp");
217         }
218
219         /* add to procfs vnode list */
220         for (pp = &pfshead[pid & PFSHMASK]; *pp; pp = &(*pp)->pfs_next)
221                 continue;
222         *pp = pfs;
223
224         vx_unlock(vp);  /* vnode ready to roll! */
225
226 out:
227         pfsvplock &= ~PROCFS_LOCKED;
228
229         if (pfsvplock & PROCFS_WANT) {
230                 pfsvplock &= ~PROCFS_WANT;
231                 wakeup((caddr_t) &pfsvplock);
232         }
233         lwkt_reltoken(&pfs_token);
234
235         return (error);
236 }
237
238 int
239 linprocfs_freevp(struct vnode *vp)
240 {
241         struct pfsnode **pfspp;
242         struct pfsnode *pfs = VTOPFS(vp);
243
244         lwkt_gettoken(&pfs_token);
245         pfspp = &pfshead[pfs->pfs_pid & PFSHMASK]; 
246         while (*pfspp != pfs) {
247                 KKASSERT(*pfspp != NULL);
248                 pfspp = &(*pfspp)->pfs_next;
249         }
250         *pfspp = pfs->pfs_next;
251         lwkt_reltoken(&pfs_token);
252         FREE(vp->v_data, M_TEMP);
253         vp->v_data = NULL;
254         return (0);
255 }
256
257 int
258 linprocfs_rw(struct vop_read_args *ap)
259 {
260         struct vnode *vp = ap->a_vp;
261         struct uio *uio = ap->a_uio;
262         struct thread *td = uio->uio_td;
263         struct pfsnode *pfs = VTOPFS(vp);
264         struct proc *p;
265         struct proc *curp;
266         struct lwp *lp;
267         int rtval;
268
269         curp = td->td_proc;
270         KKASSERT(curp);
271
272         p = pfind(pfs->pfs_pid);
273         if (p == NULL)
274                 return (EINVAL);
275         if (p->p_pid == 1 && securelevel > 0 && uio->uio_rw == UIO_WRITE) {
276                 PRELE(p);
277                 return (EACCES);
278         }
279         lp = FIRST_LWP_IN_PROC(p);
280         LWPHOLD(lp);
281
282         lwkt_gettoken(&pfs_token);
283         while (pfs->pfs_lockowner) {
284                 tsleep(&pfs->pfs_lockowner, 0, "pfslck", 0);
285         }
286         pfs->pfs_lockowner = curthread;
287         lwkt_reltoken(&pfs_token);
288
289         switch (pfs->pfs_type) {
290         case Pmem:
291                 rtval = procfs_domem(curp, lp, pfs, uio);
292                 break;
293         case Pprocstat:
294                 rtval = linprocfs_doprocstat(curp, p, pfs, uio);
295                 break;
296         case Pprocstatus:
297                 rtval = linprocfs_doprocstatus(curp, p, pfs, uio);
298                 break;
299         case Pmeminfo:
300                 rtval = linprocfs_domeminfo(curp, p, pfs, uio);
301                 break;
302         case Pcpuinfo:
303                 rtval = linprocfs_docpuinfo(curp, p, pfs, uio);
304                 break;
305         case Pmounts:
306                 rtval = linprocfs_domounts(curp, p, pfs, uio);
307                 break;
308         case Pstat:
309                 rtval = linprocfs_dostat(curp, p, pfs, uio);
310                 break;
311         case Puptime:
312                 rtval = linprocfs_douptime(curp, p, pfs, uio);
313                 break;
314         case Pversion:
315                 rtval = linprocfs_doversion(curp, p, pfs, uio);
316                 break;
317         case Ploadavg:
318                 rtval = linprocfs_doloadavg(curp, p, pfs, uio);
319                 break;
320         case Pnetdev:
321                 rtval = linprocfs_donetdev(curp, p, pfs, uio);
322                 break;
323         case Pdevices:
324                 rtval = linprocfs_dodevices(curp, p, pfs, uio);
325                 break;
326         case Posrelease:
327                 rtval = linprocfs_doosrelease(curp, p, pfs, uio);
328                 break;
329         case Postype:
330                 rtval = linprocfs_doostype(curp, p, pfs, uio);
331                 break;
332         case Ppidmax:
333                 rtval = linprocfs_dopidmax(curp, p, pfs, uio);
334                 break;
335         case Pmaps:
336                 rtval = linprocfs_domaps(curp, p, pfs, uio);
337                 break;
338         case Pstatm:
339                 rtval = linprocfs_dostatm(curp, p, pfs, uio);
340                 break;
341         default:
342                 rtval = EOPNOTSUPP;
343                 break;
344         }
345         LWPRELE(lp);
346         PRELE(p);
347
348         lwkt_gettoken(&pfs_token);
349         pfs->pfs_lockowner = NULL;
350         wakeup(&pfs->pfs_lockowner);
351         lwkt_reltoken(&pfs_token);
352
353         return rtval;
354 }
355
356 #if 0
357 /*
358  * Get a string from userland into (buf).  Strip a trailing
359  * nl character (to allow easy access from the shell).
360  * The buffer should be *buflenp + 1 chars long.  vfs_getuserstr
361  * will automatically add a nul char at the end.
362  *
363  * Returns 0 on success or the following errors
364  *
365  * EINVAL:    file offset is non-zero.
366  * EMSGSIZE:  message is longer than kernel buffer
367  * EFAULT:    user i/o buffer is not addressable
368  */
369 int
370 vfs_getuserstr(struct uio *uio, char *buf, int *buflenp)
371 {
372         int xlen;
373         int error;
374
375         if (uio->uio_offset != 0)
376                 return (EINVAL);
377
378         xlen = *buflenp;
379
380         /* must be able to read the whole string in one go */
381         if (xlen < uio->uio_resid)
382                 return (EMSGSIZE);
383         xlen = uio->uio_resid;
384
385         if ((error = uiomove(buf, xlen, uio)) != 0)
386                 return (error);
387
388         /* allow multiple writes without seeks */
389         uio->uio_offset = 0;
390
391         /* cleanup string and remove trailing newline */
392         buf[xlen] = '\0';
393         xlen = strlen(buf);
394         if (xlen > 0 && buf[xlen-1] == '\n')
395                 buf[--xlen] = '\0';
396         *buflenp = xlen;
397
398         return (0);
399 }
400
401 vfs_namemap_t *
402 vfs_findname(vfs_namemap_t *nm, char *buf, int buflen)
403 {
404
405         for (; nm->nm_name; nm++)
406                 if (bcmp(buf, nm->nm_name, buflen+1) == 0)
407                         return (nm);
408
409         return (0);
410 }
411 #endif
412
413 void
414 linprocfs_init(void)
415 {
416         lwkt_token_init(&pfs_token, "linprocfs");
417
418
419 void
420 linprocfs_exit(struct thread *td)
421 {
422         struct pfsnode *pfs;
423         struct vnode *vp;
424         pid_t pid;
425
426         KKASSERT(td->td_proc);
427         pid = td->td_proc->p_pid;
428
429         /*
430          * Remove all the procfs vnodes associated with an exiting process.
431          */
432         lwkt_gettoken(&pfs_token);
433 restart:
434         for (pfs = pfshead[pid & PFSHMASK]; pfs; pfs = pfs->pfs_next) {
435                 if (pfs->pfs_pid == pid) {
436                         vp = PFSTOV(pfs);
437                         vx_get(vp);
438                         vgone_vxlocked(vp);
439                         vx_put(vp);
440                         goto restart;
441                 }
442         }
443         lwkt_reltoken(&pfs_token);
444         lwkt_token_uninit(&pfs_token);
445 }
446