Misc interrupts/LWKT 1/2: threaded interrupts 2: Major work on the
[dragonfly.git] / sys / kern / kern_sysctl.c
1 /*-
2  * Copyright (c) 1982, 1986, 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Mike Karels at Berkeley Software Design, Inc.
7  *
8  * Quite extensively rewritten by Poul-Henning Kamp of the FreeBSD
9  * project, to make these variables more userfriendly.
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  *      @(#)kern_sysctl.c       8.4 (Berkeley) 4/14/94
40  * $FreeBSD: src/sys/kern/kern_sysctl.c,v 1.92.2.9 2003/05/01 22:48:09 trhodes Exp $
41  * $DragonFly: src/sys/kern/kern_sysctl.c,v 1.6 2003/06/30 19:50:31 dillon Exp $
42  */
43
44 #include "opt_compat.h"
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/kernel.h>
49 #include <sys/buf.h>
50 #include <sys/sysctl.h>
51 #include <sys/malloc.h>
52 #include <sys/proc.h>
53 #include <sys/sysproto.h>
54 #include <vm/vm.h>
55 #include <vm/vm_extern.h>
56
57 static MALLOC_DEFINE(M_SYSCTL, "sysctl", "sysctl internal magic");
58 static MALLOC_DEFINE(M_SYSCTLOID, "sysctloid", "sysctl dynamic oids");
59
60 /*
61  * Locking and stats
62  */
63 static struct sysctl_lock {
64         int     sl_lock;
65         int     sl_want;
66         int     sl_locked;
67 } memlock;
68
69 static int sysctl_root(SYSCTL_HANDLER_ARGS);
70
71 struct sysctl_oid_list sysctl__children; /* root list */
72
73 static struct sysctl_oid *
74 sysctl_find_oidname(const char *name, struct sysctl_oid_list *list)
75 {
76         struct sysctl_oid *oidp;
77
78         SLIST_FOREACH(oidp, list, oid_link) {
79                 if (strcmp(oidp->oid_name, name) == 0) {
80                         return (oidp);
81                 }
82         }
83         return (NULL);
84 }
85
86 /*
87  * Initialization of the MIB tree.
88  *
89  * Order by number in each list.
90  */
91
92 void sysctl_register_oid(struct sysctl_oid *oidp)
93 {
94         struct sysctl_oid_list *parent = oidp->oid_parent;
95         struct sysctl_oid *p;
96         struct sysctl_oid *q;
97         int n;
98
99         /*
100          * First check if another oid with the same name already
101          * exists in the parent's list.
102          */
103         p = sysctl_find_oidname(oidp->oid_name, parent);
104         if (p != NULL) {
105                 if ((p->oid_kind & CTLTYPE) == CTLTYPE_NODE) {
106                         p->oid_refcnt++;
107                         return;
108                 } else {
109                         printf("can't re-use a leaf (%s)!\n", p->oid_name);
110                         return;
111                 }
112         }
113         /*
114          * If this oid has a number OID_AUTO, give it a number which
115          * is greater than any current oid.  Make sure it is at least
116          * 100 to leave space for pre-assigned oid numbers.
117          */
118         if (oidp->oid_number == OID_AUTO) {
119                 /* First, find the highest oid in the parent list >99 */
120                 n = 99;
121                 SLIST_FOREACH(p, parent, oid_link) {
122                         if (p->oid_number > n)
123                                 n = p->oid_number;
124                 }
125                 oidp->oid_number = n + 1;
126         }
127
128         /*
129          * Insert the oid into the parent's list in order.
130          */
131         q = NULL;
132         SLIST_FOREACH(p, parent, oid_link) {
133                 if (oidp->oid_number < p->oid_number)
134                         break;
135                 q = p;
136         }
137         if (q)
138                 SLIST_INSERT_AFTER(q, oidp, oid_link);
139         else
140                 SLIST_INSERT_HEAD(parent, oidp, oid_link);
141 }
142
143 void sysctl_unregister_oid(struct sysctl_oid *oidp)
144 {
145
146         SLIST_REMOVE(oidp->oid_parent, oidp, sysctl_oid, oid_link);
147 }
148
149 /* Initialize a new context to keep track of dynamically added sysctls. */
150 int
151 sysctl_ctx_init(struct sysctl_ctx_list *c)
152 {
153
154         if (c == NULL) {
155                 return (EINVAL);
156         }
157         TAILQ_INIT(c);
158         return (0);
159 }
160
161 /* Free the context, and destroy all dynamic oids registered in this context */
162 int
163 sysctl_ctx_free(struct sysctl_ctx_list *clist)
164 {
165         struct sysctl_ctx_entry *e, *e1;
166         int error;
167
168         error = 0;
169         /*
170          * First perform a "dry run" to check if it's ok to remove oids.
171          * XXX FIXME
172          * XXX This algorithm is a hack. But I don't know any
173          * XXX better solution for now...
174          */
175         TAILQ_FOREACH(e, clist, link) {
176                 error = sysctl_remove_oid(e->entry, 0, 0);
177                 if (error)
178                         break;
179         }
180         /*
181          * Restore deregistered entries, either from the end,
182          * or from the place where error occured.
183          * e contains the entry that was not unregistered
184          */
185         if (error)
186                 e1 = TAILQ_PREV(e, sysctl_ctx_list, link);
187         else
188                 e1 = TAILQ_LAST(clist, sysctl_ctx_list);
189         while (e1 != NULL) {
190                 sysctl_register_oid(e1->entry);
191                 e1 = TAILQ_PREV(e1, sysctl_ctx_list, link);
192         }
193         if (error)
194                 return(EBUSY);
195         /* Now really delete the entries */
196         e = TAILQ_FIRST(clist);
197         while (e != NULL) {
198                 e1 = TAILQ_NEXT(e, link);
199                 error = sysctl_remove_oid(e->entry, 1, 0);
200                 if (error)
201                         panic("sysctl_remove_oid: corrupt tree, entry: %s",
202                             e->entry->oid_name);
203                 free(e, M_SYSCTLOID);
204                 e = e1;
205         }
206         return (error);
207 }
208
209 /* Add an entry to the context */
210 struct sysctl_ctx_entry *
211 sysctl_ctx_entry_add(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp)
212 {
213         struct sysctl_ctx_entry *e;
214
215         if (clist == NULL || oidp == NULL)
216                 return(NULL);
217         e = malloc(sizeof(struct sysctl_ctx_entry), M_SYSCTLOID, M_WAITOK);
218         e->entry = oidp;
219         TAILQ_INSERT_HEAD(clist, e, link);
220         return (e);
221 }
222
223 /* Find an entry in the context */
224 struct sysctl_ctx_entry *
225 sysctl_ctx_entry_find(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp)
226 {
227         struct sysctl_ctx_entry *e;
228
229         if (clist == NULL || oidp == NULL)
230                 return(NULL);
231         for (e = TAILQ_FIRST(clist); e != NULL; e = TAILQ_NEXT(e, link)) {
232                 if(e->entry == oidp)
233                         return(e);
234         }
235         return (e);
236 }
237
238 /*
239  * Delete an entry from the context.
240  * NOTE: this function doesn't free oidp! You have to remove it
241  * with sysctl_remove_oid().
242  */
243 int
244 sysctl_ctx_entry_del(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp)
245 {
246         struct sysctl_ctx_entry *e;
247
248         if (clist == NULL || oidp == NULL)
249                 return (EINVAL);
250         e = sysctl_ctx_entry_find(clist, oidp);
251         if (e != NULL) {
252                 TAILQ_REMOVE(clist, e, link);
253                 free(e, M_SYSCTLOID);
254                 return (0);
255         } else
256                 return (ENOENT);
257 }
258
259 /*
260  * Remove dynamically created sysctl trees.
261  * oidp - top of the tree to be removed
262  * del - if 0 - just deregister, otherwise free up entries as well
263  * recurse - if != 0 traverse the subtree to be deleted
264  */
265 int
266 sysctl_remove_oid(struct sysctl_oid *oidp, int del, int recurse)
267 {
268         struct sysctl_oid *p;
269         int error;
270
271         if (oidp == NULL)
272                 return(EINVAL);
273         if ((oidp->oid_kind & CTLFLAG_DYN) == 0) {
274                 printf("can't remove non-dynamic nodes!\n");
275                 return (EINVAL);
276         }
277         /*
278          * WARNING: normal method to do this should be through
279          * sysctl_ctx_free(). Use recursing as the last resort
280          * method to purge your sysctl tree of leftovers...
281          * However, if some other code still references these nodes,
282          * it will panic.
283          */
284         if ((oidp->oid_kind & CTLTYPE) == CTLTYPE_NODE) {
285                 if (oidp->oid_refcnt == 1) {
286                         SLIST_FOREACH(p, SYSCTL_CHILDREN(oidp), oid_link) {
287                                 if (!recurse)
288                                         return (ENOTEMPTY);
289                                 error = sysctl_remove_oid(p, del, recurse);
290                                 if (error)
291                                         return (error);
292                         }
293                         if (del)
294                                 free(SYSCTL_CHILDREN(oidp), M_SYSCTLOID);
295                 }
296         }
297         if (oidp->oid_refcnt > 1 ) {
298                 oidp->oid_refcnt--;
299         } else {
300                 if (oidp->oid_refcnt == 0) {
301                         printf("Warning: bad oid_refcnt=%u (%s)!\n",
302                                 oidp->oid_refcnt, oidp->oid_name);
303                         return (EINVAL);
304                 }
305                 sysctl_unregister_oid(oidp);
306                 if (del) {
307                         if (oidp->oid_descr)
308                                 free((void *)(uintptr_t)(const void *)oidp->oid_descr, M_SYSCTLOID);
309                         free((void *)(uintptr_t)(const void *)oidp->oid_name,
310                              M_SYSCTLOID);
311                         free(oidp, M_SYSCTLOID);
312                 }
313         }
314         return (0);
315 }
316
317 /*
318  * Create new sysctls at run time.
319  * clist may point to a valid context initialized with sysctl_ctx_init().
320  */
321 struct sysctl_oid *
322 sysctl_add_oid(struct sysctl_ctx_list *clist, struct sysctl_oid_list *parent,
323         int number, const char *name, int kind, void *arg1, int arg2,
324         int (*handler)(SYSCTL_HANDLER_ARGS), const char *fmt, const char *descr)
325 {
326         struct sysctl_oid *oidp;
327         ssize_t len;
328         char *newname;
329
330         /* You have to hook up somewhere.. */
331         if (parent == NULL)
332                 return(NULL);
333         /* Check if the node already exists, otherwise create it */
334         oidp = sysctl_find_oidname(name, parent);
335         if (oidp != NULL) {
336                 if ((oidp->oid_kind & CTLTYPE) == CTLTYPE_NODE) {
337                         oidp->oid_refcnt++;
338                         /* Update the context */
339                         if (clist != NULL)
340                                 sysctl_ctx_entry_add(clist, oidp);
341                         return (oidp);
342                 } else {
343                         printf("can't re-use a leaf (%s)!\n", name);
344                         return (NULL);
345                 }
346         }
347         oidp = malloc(sizeof(struct sysctl_oid), M_SYSCTLOID, M_WAITOK);
348         bzero(oidp, sizeof(struct sysctl_oid));
349         oidp->oid_parent = parent;
350         SLIST_NEXT(oidp, oid_link) = NULL;
351         oidp->oid_number = number;
352         oidp->oid_refcnt = 1;
353         len = strlen(name);
354         newname = malloc(len + 1, M_SYSCTLOID, M_WAITOK);
355         bcopy(name, newname, len + 1);
356         newname[len] = '\0';
357         oidp->oid_name = newname;
358         oidp->oid_handler = handler;
359         oidp->oid_kind = CTLFLAG_DYN | kind;
360         if ((kind & CTLTYPE) == CTLTYPE_NODE) {
361                 /* Allocate space for children */
362                 SYSCTL_CHILDREN(oidp) = malloc(sizeof(struct sysctl_oid_list),
363                     M_SYSCTLOID, M_WAITOK);
364                 SLIST_INIT(SYSCTL_CHILDREN(oidp));
365         } else {
366                 oidp->oid_arg1 = arg1;
367                 oidp->oid_arg2 = arg2;
368         }
369         oidp->oid_fmt = fmt;
370         if (descr) {
371                 int len = strlen(descr) + 1;
372                 oidp->oid_descr = malloc(len, M_SYSCTLOID, M_WAITOK);
373                 if (oidp->oid_descr)
374                         strcpy((char *)(uintptr_t)(const void *)oidp->oid_descr, descr);
375         };
376         /* Update the context, if used */
377         if (clist != NULL)
378                 sysctl_ctx_entry_add(clist, oidp);
379         /* Register this oid */
380         sysctl_register_oid(oidp);
381         return (oidp);
382 }
383
384 /*
385  * Bulk-register all the oids in a linker_set.
386  */
387 void sysctl_register_set(struct linker_set *lsp)
388 {
389         int count = lsp->ls_length;
390         int i;
391         for (i = 0; i < count; i++)
392                 sysctl_register_oid((struct sysctl_oid *) lsp->ls_items[i]);
393 }
394
395 void sysctl_unregister_set(struct linker_set *lsp)
396 {
397         int count = lsp->ls_length;
398         int i;
399         for (i = 0; i < count; i++)
400                 sysctl_unregister_oid((struct sysctl_oid *) lsp->ls_items[i]);
401 }
402
403 /*
404  * Register the kernel's oids on startup.
405  */
406 extern struct linker_set sysctl_set;
407
408 static void sysctl_register_all(void *arg)
409 {
410
411         sysctl_register_set(&sysctl_set);
412 }
413
414 SYSINIT(sysctl, SI_SUB_KMEM, SI_ORDER_ANY, sysctl_register_all, 0);
415
416 /*
417  * "Staff-functions"
418  *
419  * These functions implement a presently undocumented interface 
420  * used by the sysctl program to walk the tree, and get the type
421  * so it can print the value.
422  * This interface is under work and consideration, and should probably
423  * be killed with a big axe by the first person who can find the time.
424  * (be aware though, that the proper interface isn't as obvious as it
425  * may seem, there are various conflicting requirements.
426  *
427  * {0,0}        printf the entire MIB-tree.
428  * {0,1,...}    return the name of the "..." OID.
429  * {0,2,...}    return the next OID.
430  * {0,3}        return the OID of the name in "new"
431  * {0,4,...}    return the kind & format info for the "..." OID.
432  */
433
434 static void
435 sysctl_sysctl_debug_dump_node(struct sysctl_oid_list *l, int i)
436 {
437         int k;
438         struct sysctl_oid *oidp;
439
440         SLIST_FOREACH(oidp, l, oid_link) {
441
442                 for (k=0; k<i; k++)
443                         printf(" ");
444
445                 printf("%d %s ", oidp->oid_number, oidp->oid_name);
446
447                 printf("%c%c",
448                         oidp->oid_kind & CTLFLAG_RD ? 'R':' ',
449                         oidp->oid_kind & CTLFLAG_WR ? 'W':' ');
450
451                 if (oidp->oid_handler)
452                         printf(" *Handler");
453
454                 switch (oidp->oid_kind & CTLTYPE) {
455                         case CTLTYPE_NODE:
456                                 printf(" Node\n");
457                                 if (!oidp->oid_handler) {
458                                         sysctl_sysctl_debug_dump_node(
459                                                 oidp->oid_arg1, i+2);
460                                 }
461                                 break;
462                         case CTLTYPE_INT:    printf(" Int\n"); break;
463                         case CTLTYPE_STRING: printf(" String\n"); break;
464                         case CTLTYPE_QUAD:   printf(" Quad\n"); break;
465                         case CTLTYPE_OPAQUE: printf(" Opaque/struct\n"); break;
466                         default:             printf("\n");
467                 }
468
469         }
470 }
471
472 static int
473 sysctl_sysctl_debug(SYSCTL_HANDLER_ARGS)
474 {
475         int error;
476
477         error = suser(req->td);
478         if (error)
479                 return error;
480         sysctl_sysctl_debug_dump_node(&sysctl__children, 0);
481         return ENOENT;
482 }
483
484 SYSCTL_PROC(_sysctl, 0, debug, CTLTYPE_STRING|CTLFLAG_RD,
485         0, 0, sysctl_sysctl_debug, "-", "");
486
487 static int
488 sysctl_sysctl_name(SYSCTL_HANDLER_ARGS)
489 {
490         int *name = (int *) arg1;
491         u_int namelen = arg2;
492         int error = 0;
493         struct sysctl_oid *oid;
494         struct sysctl_oid_list *lsp = &sysctl__children, *lsp2;
495         char buf[10];
496
497         while (namelen) {
498                 if (!lsp) {
499                         snprintf(buf,sizeof(buf),"%d",*name);
500                         if (req->oldidx)
501                                 error = SYSCTL_OUT(req, ".", 1);
502                         if (!error)
503                                 error = SYSCTL_OUT(req, buf, strlen(buf));
504                         if (error)
505                                 return (error);
506                         namelen--;
507                         name++;
508                         continue;
509                 }
510                 lsp2 = 0;
511                 SLIST_FOREACH(oid, lsp, oid_link) {
512                         if (oid->oid_number != *name)
513                                 continue;
514
515                         if (req->oldidx)
516                                 error = SYSCTL_OUT(req, ".", 1);
517                         if (!error)
518                                 error = SYSCTL_OUT(req, oid->oid_name,
519                                         strlen(oid->oid_name));
520                         if (error)
521                                 return (error);
522
523                         namelen--;
524                         name++;
525
526                         if ((oid->oid_kind & CTLTYPE) != CTLTYPE_NODE) 
527                                 break;
528
529                         if (oid->oid_handler)
530                                 break;
531
532                         lsp2 = (struct sysctl_oid_list *)oid->oid_arg1;
533                         break;
534                 }
535                 lsp = lsp2;
536         }
537         return (SYSCTL_OUT(req, "", 1));
538 }
539
540 SYSCTL_NODE(_sysctl, 1, name, CTLFLAG_RD, sysctl_sysctl_name, "");
541
542 static int
543 sysctl_sysctl_next_ls(struct sysctl_oid_list *lsp, int *name, u_int namelen, 
544         int *next, int *len, int level, struct sysctl_oid **oidpp)
545 {
546         struct sysctl_oid *oidp;
547
548         *len = level;
549         SLIST_FOREACH(oidp, lsp, oid_link) {
550                 *next = oidp->oid_number;
551                 *oidpp = oidp;
552
553                 if (!namelen) {
554                         if ((oidp->oid_kind & CTLTYPE) != CTLTYPE_NODE) 
555                                 return 0;
556                         if (oidp->oid_handler) 
557                                 /* We really should call the handler here...*/
558                                 return 0;
559                         lsp = (struct sysctl_oid_list *)oidp->oid_arg1;
560                         if (!sysctl_sysctl_next_ls(lsp, 0, 0, next+1, 
561                                 len, level+1, oidpp))
562                                 return 0;
563                         goto next;
564                 }
565
566                 if (oidp->oid_number < *name)
567                         continue;
568
569                 if (oidp->oid_number > *name) {
570                         if ((oidp->oid_kind & CTLTYPE) != CTLTYPE_NODE)
571                                 return 0;
572                         if (oidp->oid_handler)
573                                 return 0;
574                         lsp = (struct sysctl_oid_list *)oidp->oid_arg1;
575                         if (!sysctl_sysctl_next_ls(lsp, name+1, namelen-1, 
576                                 next+1, len, level+1, oidpp))
577                                 return (0);
578                         goto next;
579                 }
580                 if ((oidp->oid_kind & CTLTYPE) != CTLTYPE_NODE)
581                         continue;
582
583                 if (oidp->oid_handler)
584                         continue;
585
586                 lsp = (struct sysctl_oid_list *)oidp->oid_arg1;
587                 if (!sysctl_sysctl_next_ls(lsp, name+1, namelen-1, next+1, 
588                         len, level+1, oidpp))
589                         return (0);
590         next:
591                 namelen = 1;
592                 *len = level;
593         }
594         return 1;
595 }
596
597 static int
598 sysctl_sysctl_next(SYSCTL_HANDLER_ARGS)
599 {
600         int *name = (int *) arg1;
601         u_int namelen = arg2;
602         int i, j, error;
603         struct sysctl_oid *oid;
604         struct sysctl_oid_list *lsp = &sysctl__children;
605         int newoid[CTL_MAXNAME];
606
607         i = sysctl_sysctl_next_ls(lsp, name, namelen, newoid, &j, 1, &oid);
608         if (i)
609                 return ENOENT;
610         error = SYSCTL_OUT(req, newoid, j * sizeof (int));
611         return (error);
612 }
613
614 SYSCTL_NODE(_sysctl, 2, next, CTLFLAG_RD, sysctl_sysctl_next, "");
615
616 static int
617 name2oid (char *name, int *oid, int *len, struct sysctl_oid **oidpp)
618 {
619         int i;
620         struct sysctl_oid *oidp;
621         struct sysctl_oid_list *lsp = &sysctl__children;
622         char *p;
623
624         if (!*name)
625                 return ENOENT;
626
627         p = name + strlen(name) - 1 ;
628         if (*p == '.')
629                 *p = '\0';
630
631         *len = 0;
632
633         for (p = name; *p && *p != '.'; p++) 
634                 ;
635         i = *p;
636         if (i == '.')
637                 *p = '\0';
638
639         oidp = SLIST_FIRST(lsp);
640
641         while (oidp && *len < CTL_MAXNAME) {
642                 if (strcmp(name, oidp->oid_name)) {
643                         oidp = SLIST_NEXT(oidp, oid_link);
644                         continue;
645                 }
646                 *oid++ = oidp->oid_number;
647                 (*len)++;
648
649                 if (!i) {
650                         if (oidpp)
651                                 *oidpp = oidp;
652                         return (0);
653                 }
654
655                 if ((oidp->oid_kind & CTLTYPE) != CTLTYPE_NODE)
656                         break;
657
658                 if (oidp->oid_handler)
659                         break;
660
661                 lsp = (struct sysctl_oid_list *)oidp->oid_arg1;
662                 oidp = SLIST_FIRST(lsp);
663                 name = p+1;
664                 for (p = name; *p && *p != '.'; p++) 
665                                 ;
666                 i = *p;
667                 if (i == '.')
668                         *p = '\0';
669         }
670         return ENOENT;
671 }
672
673 static int
674 sysctl_sysctl_name2oid(SYSCTL_HANDLER_ARGS)
675 {
676         char *p;
677         int error, oid[CTL_MAXNAME], len;
678         struct sysctl_oid *op = 0;
679
680         if (!req->newlen) 
681                 return ENOENT;
682         if (req->newlen >= MAXPATHLEN)  /* XXX arbitrary, undocumented */
683                 return (ENAMETOOLONG);
684
685         p = malloc(req->newlen+1, M_SYSCTL, M_WAITOK);
686
687         error = SYSCTL_IN(req, p, req->newlen);
688         if (error) {
689                 free(p, M_SYSCTL);
690                 return (error);
691         }
692
693         p [req->newlen] = '\0';
694
695         error = name2oid(p, oid, &len, &op);
696
697         free(p, M_SYSCTL);
698
699         if (error)
700                 return (error);
701
702         error = SYSCTL_OUT(req, oid, len * sizeof *oid);
703         return (error);
704 }
705
706 SYSCTL_PROC(_sysctl, 3, name2oid, CTLFLAG_RW|CTLFLAG_ANYBODY, 0, 0, 
707         sysctl_sysctl_name2oid, "I", "");
708
709 static int
710 sysctl_sysctl_oidfmt(SYSCTL_HANDLER_ARGS)
711 {
712         struct sysctl_oid *oid;
713         int error;
714
715         error = sysctl_find_oid(arg1, arg2, &oid, NULL, req);
716         if (error)
717                 return (error);
718
719         if (!oid->oid_fmt)
720                 return (ENOENT);
721         error = SYSCTL_OUT(req, &oid->oid_kind, sizeof(oid->oid_kind));
722         if (error)
723                 return (error);
724         error = SYSCTL_OUT(req, oid->oid_fmt, strlen(oid->oid_fmt) + 1);
725         return (error);
726 }
727
728
729 SYSCTL_NODE(_sysctl, 4, oidfmt, CTLFLAG_RD, sysctl_sysctl_oidfmt, "");
730
731 static int
732 sysctl_sysctl_oiddescr(SYSCTL_HANDLER_ARGS)
733 {
734         struct sysctl_oid *oid;
735         int error;
736
737         error = sysctl_find_oid(arg1, arg2, &oid, NULL, req);
738         if (error)
739                 return (error);
740         
741         if (!oid->oid_descr)
742                 return (ENOENT);
743         error = SYSCTL_OUT(req, oid->oid_descr, strlen(oid->oid_descr) + 1);
744         return (error);
745 }
746
747 SYSCTL_NODE(_sysctl, 5, oiddescr, CTLFLAG_RD, sysctl_sysctl_oiddescr, "");
748
749 /*
750  * Default "handler" functions.
751  */
752
753 /*
754  * Handle an int, signed or unsigned.
755  * Two cases:
756  *     a variable:  point arg1 at it.
757  *     a constant:  pass it in arg2.
758  */
759
760 int
761 sysctl_handle_int(SYSCTL_HANDLER_ARGS)
762 {
763         int error = 0;
764
765         if (arg1)
766                 error = SYSCTL_OUT(req, arg1, sizeof(int));
767         else
768                 error = SYSCTL_OUT(req, &arg2, sizeof(int));
769
770         if (error || !req->newptr)
771                 return (error);
772
773         if (!arg1)
774                 error = EPERM;
775         else
776                 error = SYSCTL_IN(req, arg1, sizeof(int));
777         return (error);
778 }
779
780 /*
781  * Handle a long, signed or unsigned.  arg1 points to it.
782  */
783
784 int
785 sysctl_handle_long(SYSCTL_HANDLER_ARGS)
786 {
787         int error = 0;
788
789         if (!arg1)
790                 return (EINVAL);
791         error = SYSCTL_OUT(req, arg1, sizeof(long));
792
793         if (error || !req->newptr)
794                 return (error);
795
796         error = SYSCTL_IN(req, arg1, sizeof(long));
797         return (error);
798 }
799
800 /*
801  * Handle a quad, signed or unsigned.  arg1 points to it.
802  */
803
804 int
805 sysctl_handle_quad(SYSCTL_HANDLER_ARGS)
806 {
807         int error = 0;
808
809         if (!arg1)
810                 return (EINVAL);
811         error = SYSCTL_OUT(req, arg1, sizeof(quad_t));
812
813         if (error || !req->newptr)
814                 return (error);
815
816         error = SYSCTL_IN(req, arg1, sizeof(quad_t));
817         return (error);
818 }
819
820 /*
821  * Handle our generic '\0' terminated 'C' string.
822  * Two cases:
823  *      a variable string:  point arg1 at it, arg2 is max length.
824  *      a constant string:  point arg1 at it, arg2 is zero.
825  */
826
827 int
828 sysctl_handle_string(SYSCTL_HANDLER_ARGS)
829 {
830         int error=0;
831
832         error = SYSCTL_OUT(req, arg1, strlen((char *)arg1)+1);
833
834         if (error || !req->newptr)
835                 return (error);
836
837         if ((req->newlen - req->newidx) >= arg2) {
838                 error = EINVAL;
839         } else {
840                 arg2 = (req->newlen - req->newidx);
841                 error = SYSCTL_IN(req, arg1, arg2);
842                 ((char *)arg1)[arg2] = '\0';
843         }
844
845         return (error);
846 }
847
848 /*
849  * Handle any kind of opaque data.
850  * arg1 points to it, arg2 is the size.
851  */
852
853 int
854 sysctl_handle_opaque(SYSCTL_HANDLER_ARGS)
855 {
856         int error;
857
858         error = SYSCTL_OUT(req, arg1, arg2);
859
860         if (error || !req->newptr)
861                 return (error);
862
863         error = SYSCTL_IN(req, arg1, arg2);
864
865         return (error);
866 }
867
868 /*
869  * Transfer functions to/from kernel space.
870  * XXX: rather untested at this point
871  */
872 static int
873 sysctl_old_kernel(struct sysctl_req *req, const void *p, size_t l)
874 {
875         size_t i = 0;
876
877         if (req->oldptr) {
878                 i = l;
879                 if (i > req->oldlen - req->oldidx)
880                         i = req->oldlen - req->oldidx;
881                 if (i > 0)
882                         bcopy(p, (char *)req->oldptr + req->oldidx, i);
883         }
884         req->oldidx += l;
885         if (req->oldptr && i != l)
886                 return (ENOMEM);
887         return (0);
888 }
889
890 static int
891 sysctl_new_kernel(struct sysctl_req *req, void *p, size_t l)
892 {
893
894         if (!req->newptr)
895                 return 0;
896         if (req->newlen - req->newidx < l)
897                 return (EINVAL);
898         bcopy((char *)req->newptr + req->newidx, p, l);
899         req->newidx += l;
900         return (0);
901 }
902
903 int
904 kernel_sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen, size_t *retval)
905 {
906         int error = 0;
907         struct sysctl_req req;
908
909         bzero(&req, sizeof req);
910
911         req.td = curthread;
912
913         if (oldlenp) {
914                 req.oldlen = *oldlenp;
915         }
916
917         if (old) {
918                 req.oldptr = old;
919         }
920
921         if (new != NULL) {
922                 req.newlen = newlen;
923                 req.newptr = new;
924         }
925
926         req.oldfunc = sysctl_old_kernel;
927         req.newfunc = sysctl_new_kernel;
928         req.lock = 1;
929
930         /* XXX this should probably be done in a general way */
931         while (memlock.sl_lock) {
932                 memlock.sl_want = 1;
933                 (void) tsleep((caddr_t)&memlock, PRIBIO+1, "sysctl", 0);
934                 memlock.sl_locked++;
935         }
936         memlock.sl_lock = 1;
937
938         error = sysctl_root(0, name, namelen, &req);
939
940         if (req.lock == 2)
941                 vsunlock(req.oldptr, req.oldlen);
942
943         memlock.sl_lock = 0;
944
945         if (memlock.sl_want) {
946                 memlock.sl_want = 0;
947                 wakeup((caddr_t)&memlock);
948         }
949
950         if (error && error != ENOMEM)
951                 return (error);
952
953         if (retval) {
954                 if (req.oldptr && req.oldidx > req.oldlen)
955                         *retval = req.oldlen;
956                 else
957                         *retval = req.oldidx;
958         }
959         return (error);
960 }
961
962 int
963 kernel_sysctlbyname(char *name, void *old, size_t *oldlenp,
964     void *new, size_t newlen, size_t *retval)
965 {
966         int oid[CTL_MAXNAME];
967         size_t oidlen, plen;
968         int error;
969
970         oid[0] = 0;             /* sysctl internal magic */
971         oid[1] = 3;             /* name2oid */
972         oidlen = sizeof(oid);
973
974         error = kernel_sysctl(oid, 2, oid, &oidlen, (void *)name,
975                     strlen(name), &plen);
976         if (error)
977                 return (error);
978
979         error = kernel_sysctl(oid, plen / sizeof(int), old, oldlenp,
980             new, newlen, retval);
981         return (error);
982 }
983
984 /*
985  * Transfer function to/from user space.
986  */
987 static int
988 sysctl_old_user(struct sysctl_req *req, const void *p, size_t l)
989 {
990         int error = 0;
991         size_t i = 0;
992
993         if (req->lock == 1 && req->oldptr) {
994                 vslock(req->oldptr, req->oldlen);
995                 req->lock = 2;
996         }
997         if (req->oldptr) {
998                 i = l;
999                 if (i > req->oldlen - req->oldidx)
1000                         i = req->oldlen - req->oldidx;
1001                 if (i > 0)
1002                         error = copyout(p, (char *)req->oldptr + req->oldidx,
1003                                         i);
1004         }
1005         req->oldidx += l;
1006         if (error)
1007                 return (error);
1008         if (req->oldptr && i < l)
1009                 return (ENOMEM);
1010         return (0);
1011 }
1012
1013 static int
1014 sysctl_new_user(struct sysctl_req *req, void *p, size_t l)
1015 {
1016         int error;
1017
1018         if (!req->newptr)
1019                 return 0;
1020         if (req->newlen - req->newidx < l)
1021                 return (EINVAL);
1022         error = copyin((char *)req->newptr + req->newidx, p, l);
1023         req->newidx += l;
1024         return (error);
1025 }
1026
1027 int
1028 sysctl_find_oid(int *name, u_int namelen, struct sysctl_oid **noid,
1029     int *nindx, struct sysctl_req *req)
1030 {
1031         struct sysctl_oid *oid;
1032         int indx;
1033
1034         oid = SLIST_FIRST(&sysctl__children);
1035         indx = 0;
1036         while (oid && indx < CTL_MAXNAME) {
1037                 if (oid->oid_number == name[indx]) {
1038                         indx++;
1039                         if (oid->oid_kind & CTLFLAG_NOLOCK)
1040                                 req->lock = 0;
1041                         if ((oid->oid_kind & CTLTYPE) == CTLTYPE_NODE) {
1042                                 if (oid->oid_handler != NULL ||
1043                                     indx == namelen) {
1044                                         *noid = oid;
1045                                         if (nindx != NULL)
1046                                                 *nindx = indx;
1047                                         return (0);
1048                                 }
1049                                 oid = SLIST_FIRST(
1050                                     (struct sysctl_oid_list *)oid->oid_arg1);
1051                         } else if (indx == namelen) {
1052                                 *noid = oid;
1053                                 if (nindx != NULL)
1054                                         *nindx = indx;
1055                                 return (0);
1056                         } else {
1057                                 return (ENOTDIR);
1058                         }
1059                 } else {
1060                         oid = SLIST_NEXT(oid, oid_link);
1061                 }
1062         }
1063         return (ENOENT);
1064 }
1065
1066 /*
1067  * Traverse our tree, and find the right node, execute whatever it points
1068  * to, and return the resulting error code.
1069  */
1070
1071 int
1072 sysctl_root(SYSCTL_HANDLER_ARGS)
1073 {
1074         struct thread *td = req->td;
1075         struct proc *p = td ? td->td_proc : NULL;
1076         struct sysctl_oid *oid;
1077         int error, indx;
1078
1079         error = sysctl_find_oid(arg1, arg2, &oid, &indx, req);
1080         if (error)
1081                 return (error);
1082
1083         if ((oid->oid_kind & CTLTYPE) == CTLTYPE_NODE) {
1084                 /*
1085                  * You can't call a sysctl when it's a node, but has
1086                  * no handler.  Inform the user that it's a node.
1087                  * The indx may or may not be the same as namelen.
1088                  */
1089                 if (oid->oid_handler == NULL)
1090                         return (EISDIR);
1091         }
1092
1093         /* If writing isn't allowed */
1094         if (req->newptr && (!(oid->oid_kind & CTLFLAG_WR) ||
1095             ((oid->oid_kind & CTLFLAG_SECURE) && securelevel > 0)))
1096                 return (EPERM);
1097
1098         /* Most likely only root can write */
1099         if (!(oid->oid_kind & CTLFLAG_ANYBODY) && req->newptr && p &&
1100             (error = suser_cred(p->p_ucred, 
1101              (oid->oid_kind & CTLFLAG_PRISON) ? PRISON_ROOT : 0)))
1102                 return (error);
1103
1104         if (!oid->oid_handler)
1105                 return EINVAL;
1106
1107         if ((oid->oid_kind & CTLTYPE) == CTLTYPE_NODE)
1108                 error = oid->oid_handler(oid, (int *)arg1 + indx, arg2 - indx,
1109                     req);
1110         else
1111                 error = oid->oid_handler(oid, oid->oid_arg1, oid->oid_arg2,
1112                     req);
1113         return (error);
1114 }
1115
1116 #ifndef _SYS_SYSPROTO_H_
1117 struct sysctl_args {
1118         int     *name;
1119         u_int   namelen;
1120         void    *old;
1121         size_t  *oldlenp;
1122         void    *new;
1123         size_t  newlen;
1124 };
1125 #endif
1126
1127 int
1128 __sysctl(struct sysctl_args *uap)
1129 {
1130         int error, i, name[CTL_MAXNAME];
1131         size_t j;
1132
1133         if (uap->namelen > CTL_MAXNAME || uap->namelen < 2)
1134                 return (EINVAL);
1135
1136         error = copyin(uap->name, &name, uap->namelen * sizeof(int));
1137         if (error)
1138                 return (error);
1139
1140         error = userland_sysctl(name, uap->namelen,
1141                 uap->old, uap->oldlenp, 0,
1142                 uap->new, uap->newlen, &j);
1143         if (error && error != ENOMEM)
1144                 return (error);
1145         if (uap->oldlenp) {
1146                 i = copyout(&j, uap->oldlenp, sizeof(j));
1147                 if (i)
1148                         return (i);
1149         }
1150         return (error);
1151 }
1152
1153 /*
1154  * This is used from various compatibility syscalls too.  That's why name
1155  * must be in kernel space.
1156  */
1157 int
1158 userland_sysctl(int *name, u_int namelen, void *old, size_t *oldlenp, int inkernel, void *new, size_t newlen, size_t *retval)
1159 {
1160         int error = 0;
1161         struct sysctl_req req, req2;
1162
1163         bzero(&req, sizeof req);
1164
1165         if (oldlenp) {
1166                 if (inkernel) {
1167                         req.oldlen = *oldlenp;
1168                 } else {
1169                         error = copyin(oldlenp, &req.oldlen, sizeof(*oldlenp));
1170                         if (error)
1171                                 return (error);
1172                 }
1173         }
1174
1175         if (old) {
1176                 if (!useracc(old, req.oldlen, VM_PROT_WRITE))
1177                         return (EFAULT);
1178                 req.oldptr= old;
1179         }
1180
1181         if (new != NULL) {
1182                 if (!useracc(new, req.newlen, VM_PROT_READ))
1183                         return (EFAULT);
1184                 req.newlen = newlen;
1185                 req.newptr = new;
1186         }
1187
1188         req.oldfunc = sysctl_old_user;
1189         req.newfunc = sysctl_new_user;
1190         req.lock = 1;
1191         req.td = curthread;
1192
1193         /* XXX this should probably be done in a general way */
1194         while (memlock.sl_lock) {
1195                 memlock.sl_want = 1;
1196                 (void) tsleep((caddr_t)&memlock, PRIBIO+1, "sysctl", 0);
1197                 memlock.sl_locked++;
1198         }
1199         memlock.sl_lock = 1;
1200
1201         do {
1202             req2 = req;
1203             error = sysctl_root(0, name, namelen, &req2);
1204         } while (error == EAGAIN);
1205
1206         req = req2;
1207         if (req.lock == 2)
1208                 vsunlock(req.oldptr, req.oldlen);
1209
1210         memlock.sl_lock = 0;
1211
1212         if (memlock.sl_want) {
1213                 memlock.sl_want = 0;
1214                 wakeup((caddr_t)&memlock);
1215         }
1216
1217         if (error && error != ENOMEM)
1218                 return (error);
1219
1220         if (retval) {
1221                 if (req.oldptr && req.oldidx > req.oldlen)
1222                         *retval = req.oldlen;
1223                 else
1224                         *retval = req.oldidx;
1225         }
1226         return (error);
1227 }
1228
1229 #ifdef COMPAT_43
1230 #include <sys/socket.h>
1231 #include <vm/vm_param.h>
1232
1233 #define KINFO_PROC              (0<<8)
1234 #define KINFO_RT                (1<<8)
1235 #define KINFO_VNODE             (2<<8)
1236 #define KINFO_FILE              (3<<8)
1237 #define KINFO_METER             (4<<8)
1238 #define KINFO_LOADAVG           (5<<8)
1239 #define KINFO_CLOCKRATE         (6<<8)
1240
1241 /* Non-standard BSDI extension - only present on their 4.3 net-2 releases */
1242 #define KINFO_BSDI_SYSINFO      (101<<8)
1243
1244 /*
1245  * XXX this is bloat, but I hope it's better here than on the potentially
1246  * limited kernel stack...  -Peter
1247  */
1248
1249 static struct {
1250         int     bsdi_machine;           /* "i386" on BSD/386 */
1251 /*      ^^^ this is an offset to the string, relative to the struct start */
1252         char    *pad0;
1253         long    pad1;
1254         long    pad2;
1255         long    pad3;
1256         u_long  pad4;
1257         u_long  pad5;
1258         u_long  pad6;
1259
1260         int     bsdi_ostype;            /* "BSD/386" on BSD/386 */
1261         int     bsdi_osrelease;         /* "1.1" on BSD/386 */
1262         long    pad7;
1263         long    pad8;
1264         char    *pad9;
1265
1266         long    pad10;
1267         long    pad11;
1268         int     pad12;
1269         long    pad13;
1270         quad_t  pad14;
1271         long    pad15;
1272
1273         struct  timeval pad16;
1274         /* we dont set this, because BSDI's uname used gethostname() instead */
1275         int     bsdi_hostname;          /* hostname on BSD/386 */
1276
1277         /* the actual string data is appended here */
1278
1279 } bsdi_si;
1280 /*
1281  * this data is appended to the end of the bsdi_si structure during copyout.
1282  * The "char *" offsets are relative to the base of the bsdi_si struct.
1283  * This contains "FreeBSD\02.0-BUILT-nnnnnn\0i386\0", and these strings
1284  * should not exceed the length of the buffer here... (or else!! :-)
1285  */
1286 static char bsdi_strings[80];   /* It had better be less than this! */
1287
1288 #ifndef _SYS_SYSPROTO_H_
1289 struct getkerninfo_args {
1290         int     op;
1291         char    *where;
1292         size_t  *size;
1293         int     arg;
1294 };
1295 #endif
1296
1297 int
1298 ogetkerninfo(struct getkerninfo_args *uap)
1299 {
1300         int error, name[6];
1301         size_t size;
1302
1303         switch (uap->op & 0xff00) {
1304
1305         case KINFO_RT:
1306                 name[0] = CTL_NET;
1307                 name[1] = PF_ROUTE;
1308                 name[2] = 0;
1309                 name[3] = (uap->op & 0xff0000) >> 16;
1310                 name[4] = uap->op & 0xff;
1311                 name[5] = uap->arg;
1312                 error = userland_sysctl(name, 6, uap->where, uap->size,
1313                         0, 0, 0, &size);
1314                 break;
1315
1316         case KINFO_VNODE:
1317                 name[0] = CTL_KERN;
1318                 name[1] = KERN_VNODE;
1319                 error = userland_sysctl(name, 2, uap->where, uap->size,
1320                         0, 0, 0, &size);
1321                 break;
1322
1323         case KINFO_PROC:
1324                 name[0] = CTL_KERN;
1325                 name[1] = KERN_PROC;
1326                 name[2] = uap->op & 0xff;
1327                 name[3] = uap->arg;
1328                 error = userland_sysctl(name, 4, uap->where, uap->size,
1329                         0, 0, 0, &size);
1330                 break;
1331
1332         case KINFO_FILE:
1333                 name[0] = CTL_KERN;
1334                 name[1] = KERN_FILE;
1335                 error = userland_sysctl(name, 2, uap->where, uap->size,
1336                         0, 0, 0, &size);
1337                 break;
1338
1339         case KINFO_METER:
1340                 name[0] = CTL_VM;
1341                 name[1] = VM_METER;
1342                 error = userland_sysctl(name, 2, uap->where, uap->size,
1343                         0, 0, 0, &size);
1344                 break;
1345
1346         case KINFO_LOADAVG:
1347                 name[0] = CTL_VM;
1348                 name[1] = VM_LOADAVG;
1349                 error = userland_sysctl(name, 2, uap->where, uap->size,
1350                         0, 0, 0, &size);
1351                 break;
1352
1353         case KINFO_CLOCKRATE:
1354                 name[0] = CTL_KERN;
1355                 name[1] = KERN_CLOCKRATE;
1356                 error = userland_sysctl(name, 2, uap->where, uap->size,
1357                         0, 0, 0, &size);
1358                 break;
1359
1360         case KINFO_BSDI_SYSINFO: {
1361                 /*
1362                  * this is pretty crude, but it's just enough for uname()
1363                  * from BSDI's 1.x libc to work.
1364                  *
1365                  * In particular, it doesn't return the same results when
1366                  * the supplied buffer is too small.  BSDI's version apparently
1367                  * will return the amount copied, and set the *size to how
1368                  * much was needed.  The emulation framework here isn't capable
1369                  * of that, so we just set both to the amount copied.
1370                  * BSDI's 2.x product apparently fails with ENOMEM in this
1371                  * scenario.
1372                  */
1373
1374                 u_int needed;
1375                 u_int left;
1376                 char *s;
1377
1378                 bzero((char *)&bsdi_si, sizeof(bsdi_si));
1379                 bzero(bsdi_strings, sizeof(bsdi_strings));
1380
1381                 s = bsdi_strings;
1382
1383                 bsdi_si.bsdi_ostype = (s - bsdi_strings) + sizeof(bsdi_si);
1384                 strcpy(s, ostype);
1385                 s += strlen(s) + 1;
1386
1387                 bsdi_si.bsdi_osrelease = (s - bsdi_strings) + sizeof(bsdi_si);
1388                 strcpy(s, osrelease);
1389                 s += strlen(s) + 1;
1390
1391                 bsdi_si.bsdi_machine = (s - bsdi_strings) + sizeof(bsdi_si);
1392                 strcpy(s, machine);
1393                 s += strlen(s) + 1;
1394
1395                 needed = sizeof(bsdi_si) + (s - bsdi_strings);
1396
1397                 if (uap->where == NULL) {
1398                         /* process is asking how much buffer to supply.. */
1399                         size = needed;
1400                         error = 0;
1401                         break;
1402                 }
1403
1404
1405                 /* if too much buffer supplied, trim it down */
1406                 if (size > needed)
1407                         size = needed;
1408
1409                 /* how much of the buffer is remaining */
1410                 left = size;
1411
1412                 if ((error = copyout((char *)&bsdi_si, uap->where, left)) != 0)
1413                         break;
1414
1415                 /* is there any point in continuing? */
1416                 if (left > sizeof(bsdi_si)) {
1417                         left -= sizeof(bsdi_si);
1418                         error = copyout(&bsdi_strings,
1419                                         uap->where + sizeof(bsdi_si), left);
1420                 }
1421                 break;
1422         }
1423
1424         default:
1425                 return (EOPNOTSUPP);
1426         }
1427         if (error)
1428                 return (error);
1429         curproc->p_retval[0] = size;
1430         if (uap->size)
1431                 error = copyout((caddr_t)&size, (caddr_t)uap->size,
1432                     sizeof(size));
1433         return (error);
1434 }
1435 #endif /* COMPAT_43 */