sysctl.c revision 1.158 1 1.158 dholland /* $NetBSD: sysctl.c,v 1.158 2016/07/31 23:30:28 dholland Exp $ */
2 1.75 atatat
3 1.75 atatat /*-
4 1.75 atatat * Copyright (c) 2003 The NetBSD Foundation, Inc.
5 1.75 atatat * All rights reserved.
6 1.75 atatat *
7 1.75 atatat * This code is derived from software contributed to The NetBSD Foundation
8 1.75 atatat * by Andrew Brown.
9 1.75 atatat *
10 1.75 atatat * Redistribution and use in source and binary forms, with or without
11 1.75 atatat * modification, are permitted provided that the following conditions
12 1.75 atatat * are met:
13 1.75 atatat * 1. Redistributions of source code must retain the above copyright
14 1.75 atatat * notice, this list of conditions and the following disclaimer.
15 1.75 atatat * 2. Redistributions in binary form must reproduce the above copyright
16 1.75 atatat * notice, this list of conditions and the following disclaimer in the
17 1.75 atatat * documentation and/or other materials provided with the distribution.
18 1.75 atatat *
19 1.75 atatat * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.75 atatat * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.75 atatat * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.75 atatat * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.75 atatat * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.75 atatat * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.75 atatat * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.75 atatat * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.75 atatat * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.75 atatat * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.75 atatat * POSSIBILITY OF SUCH DAMAGE.
30 1.75 atatat */
31 1.9 thorpej
32 1.1 cgd /*
33 1.1 cgd * Copyright (c) 1993
34 1.1 cgd * The Regents of the University of California. All rights reserved.
35 1.1 cgd *
36 1.1 cgd * Redistribution and use in source and binary forms, with or without
37 1.1 cgd * modification, are permitted provided that the following conditions
38 1.1 cgd * are met:
39 1.1 cgd * 1. Redistributions of source code must retain the above copyright
40 1.1 cgd * notice, this list of conditions and the following disclaimer.
41 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
42 1.1 cgd * notice, this list of conditions and the following disclaimer in the
43 1.1 cgd * documentation and/or other materials provided with the distribution.
44 1.71 agc * 3. Neither the name of the University nor the names of its contributors
45 1.1 cgd * may be used to endorse or promote products derived from this software
46 1.1 cgd * without specific prior written permission.
47 1.1 cgd *
48 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 1.1 cgd * SUCH DAMAGE.
59 1.1 cgd */
60 1.1 cgd
61 1.14 christos #include <sys/cdefs.h>
62 1.1 cgd #ifndef lint
63 1.124 lukem __COPYRIGHT("@(#) Copyright (c) 1993\
64 1.124 lukem The Regents of the University of California. All rights reserved.");
65 1.1 cgd #endif /* not lint */
66 1.1 cgd
67 1.1 cgd #ifndef lint
68 1.9 thorpej #if 0
69 1.9 thorpej static char sccsid[] = "@(#)sysctl.c 8.1 (Berkeley) 6/6/93";
70 1.9 thorpej #else
71 1.158 dholland __RCSID("$NetBSD: sysctl.c,v 1.158 2016/07/31 23:30:28 dholland Exp $");
72 1.9 thorpej #endif
73 1.1 cgd #endif /* not lint */
74 1.1 cgd
75 1.75 atatat #include <sys/types.h>
76 1.1 cgd #include <sys/param.h>
77 1.1 cgd #include <sys/sysctl.h>
78 1.17 thorpej #include <sys/mount.h>
79 1.22 bouyer #include <sys/resource.h>
80 1.75 atatat #include <sys/stat.h>
81 1.75 atatat #include <sys/sched.h>
82 1.75 atatat #include <sys/socket.h>
83 1.146 christos #include <sys/bitops.h>
84 1.1 cgd #include <netinet/in.h>
85 1.1 cgd #include <netinet/ip_var.h>
86 1.8 thorpej #include <netinet/tcp.h>
87 1.8 thorpej #include <netinet/tcp_timer.h>
88 1.8 thorpej #include <netinet/tcp_var.h>
89 1.24 itojun #include <netinet/icmp6.h>
90 1.75 atatat #include <nfs/rpcv2.h>
91 1.75 atatat #include <nfs/nfsproto.h>
92 1.75 atatat #include <nfs/nfs.h>
93 1.75 atatat #include <machine/cpu.h>
94 1.20 itojun
95 1.75 atatat #include <assert.h>
96 1.75 atatat #include <ctype.h>
97 1.14 christos #include <err.h>
98 1.1 cgd #include <errno.h>
99 1.75 atatat #include <inttypes.h>
100 1.98 atatat #include <regex.h>
101 1.75 atatat #include <stdarg.h>
102 1.1 cgd #include <stdio.h>
103 1.1 cgd #include <stdlib.h>
104 1.1 cgd #include <string.h>
105 1.75 atatat #include <time.h>
106 1.15 tron #include <unistd.h>
107 1.1 cgd
108 1.133 pooka #include "prog_ops.h"
109 1.132 pooka
110 1.75 atatat /*
111 1.75 atatat * this needs to be able to do the printing and the setting
112 1.75 atatat */
113 1.75 atatat #define HANDLER_PROTO const char *, const char *, char *, \
114 1.75 atatat int *, u_int, const struct sysctlnode *, \
115 1.75 atatat u_int, void *
116 1.75 atatat #define HANDLER_ARGS const char *sname, const char *dname, char *value, \
117 1.75 atatat int *name, u_int namelen, const struct sysctlnode *pnode, \
118 1.75 atatat u_int type, void *v
119 1.75 atatat #define DISPLAY_VALUE 0
120 1.75 atatat #define DISPLAY_OLD 1
121 1.75 atatat #define DISPLAY_NEW 2
122 1.75 atatat
123 1.75 atatat /*
124 1.75 atatat * generic routines
125 1.75 atatat */
126 1.141 christos static const struct handlespec *findhandler(const char *, regex_t *, size_t *);
127 1.98 atatat static void canonicalize(const char *, char *);
128 1.100 atatat static void purge_tree(struct sysctlnode *);
129 1.134 christos static void print_tree(int *, u_int, struct sysctlnode *, u_int, int, regex_t *,
130 1.134 christos size_t *);
131 1.158 dholland static void write_number(int *, u_int, struct sysctlnode *, char *, bool);
132 1.158 dholland static void write_string(int *, u_int, struct sysctlnode *, char *, bool);
133 1.75 atatat static void display_number(const struct sysctlnode *, const char *,
134 1.75 atatat const void *, size_t, int);
135 1.75 atatat static void display_string(const struct sysctlnode *, const char *,
136 1.75 atatat const void *, size_t, int);
137 1.75 atatat static void display_struct(const struct sysctlnode *, const char *,
138 1.75 atatat const void *, size_t, int);
139 1.75 atatat static void hex_dump(const unsigned char *, size_t);
140 1.138 joerg __dead static void usage(void);
141 1.134 christos static void parse(char *, regex_t *, size_t *);
142 1.82 atatat static void parse_create(char *);
143 1.82 atatat static void parse_destroy(char *);
144 1.84 atatat static void parse_describe(char *);
145 1.84 atatat static void getdesc1(int *, u_int, struct sysctlnode *);
146 1.84 atatat static void getdesc(int *, u_int, struct sysctlnode *);
147 1.92 atatat static void trim_whitespace(char *, int);
148 1.75 atatat static void sysctlerror(int);
149 1.92 atatat static void sysctlparseerror(u_int, const char *);
150 1.142 joerg static void sysctlperror(const char *, ...) __printflike(1, 2);
151 1.92 atatat #define EXIT(n) do { \
152 1.92 atatat if (fn == NULL) exit(n); else return; } while (/*CONSTCOND*/0)
153 1.56 christos
154 1.75 atatat /*
155 1.85 atatat * "borrowed" from libc:sysctlgetmibinfo.c
156 1.75 atatat */
157 1.85 atatat int __learn_tree(int *, u_int, struct sysctlnode *);
158 1.22 bouyer
159 1.75 atatat /*
160 1.75 atatat * "handlers"
161 1.75 atatat */
162 1.75 atatat static void printother(HANDLER_PROTO);
163 1.75 atatat static void kern_clockrate(HANDLER_PROTO);
164 1.75 atatat static void kern_boottime(HANDLER_PROTO);
165 1.75 atatat static void kern_consdev(HANDLER_PROTO);
166 1.75 atatat static void kern_cp_time(HANDLER_PROTO);
167 1.103 christos static void kern_cp_id(HANDLER_PROTO);
168 1.118 christos static void kern_drivers(HANDLER_PROTO);
169 1.75 atatat static void vm_loadavg(HANDLER_PROTO);
170 1.75 atatat static void proc_limit(HANDLER_PROTO);
171 1.75 atatat #ifdef CPU_DISKINFO
172 1.75 atatat static void machdep_diskinfo(HANDLER_PROTO);
173 1.75 atatat #endif /* CPU_DISKINFO */
174 1.108 elad static void mode_bits(HANDLER_PROTO);
175 1.144 christos static void reserve(HANDLER_PROTO);
176 1.1 cgd
177 1.95 jdolecek static const struct handlespec {
178 1.98 atatat const char *ps_re;
179 1.75 atatat void (*ps_p)(HANDLER_PROTO);
180 1.75 atatat void (*ps_w)(HANDLER_PROTO);
181 1.104 christos const void *ps_d;
182 1.75 atatat } handlers[] = {
183 1.118 christos { "/kern/clockrate", kern_clockrate, NULL, NULL },
184 1.154 christos { "/kern/evcnt", printother, NULL, "vmstat -e" },
185 1.98 atatat { "/kern/vnode", printother, NULL, "pstat" },
186 1.98 atatat { "/kern/proc(2|_args)?", printother, NULL, "ps" },
187 1.98 atatat { "/kern/file2?", printother, NULL, "pstat" },
188 1.98 atatat { "/kern/ntptime", printother, NULL,
189 1.98 atatat "ntpdc -c kerninfo" },
190 1.98 atatat { "/kern/msgbuf", printother, NULL, "dmesg" },
191 1.118 christos { "/kern/boottime", kern_boottime, NULL, NULL },
192 1.118 christos { "/kern/consdev", kern_consdev, NULL, NULL },
193 1.118 christos { "/kern/cp_time(/[0-9]+)?", kern_cp_time, NULL, NULL },
194 1.98 atatat { "/kern/sysvipc_info", printother, NULL, "ipcs" },
195 1.118 christos { "/kern/cp_id(/[0-9]+)?", kern_cp_id, NULL, NULL },
196 1.98 atatat
197 1.118 christos { "/kern/coredump/setid/mode", mode_bits, mode_bits, NULL },
198 1.118 christos { "/kern/drivers", kern_drivers, NULL, NULL },
199 1.116 elad
200 1.156 knakahar { "/kern/intr/list", printother, NULL, "intrctl" },
201 1.156 knakahar { "/kern/intr/affinity", printother, NULL, "intrctl" },
202 1.156 knakahar { "/kern/intr/intr", printother, NULL, "intrctl" },
203 1.156 knakahar { "/kern/intr/nointr", printother, NULL, "intrctl" },
204 1.156 knakahar
205 1.98 atatat { "/vm/vmmeter", printother, NULL,
206 1.98 atatat "vmstat' or 'systat" },
207 1.118 christos { "/vm/loadavg", vm_loadavg, NULL, NULL },
208 1.98 atatat { "/vm/uvmexp2?", printother, NULL,
209 1.98 atatat "vmstat' or 'systat" },
210 1.98 atatat
211 1.98 atatat { "/vfs/nfs/nfsstats", printother, NULL, "nfsstat" },
212 1.98 atatat
213 1.98 atatat { "/net/inet6?/tcp6?/ident", printother, NULL, "identd" },
214 1.98 atatat { "/net/inet6/icmp6/nd6_[dp]rlist", printother, NULL, "ndp" },
215 1.157 christos { "/net/inet6/ip6/addctlpolicy", printother, NULL,
216 1.157 christos "ip6addrctl" },
217 1.98 atatat { "/net/key/dumps[ap]", printother, NULL, "setkey" },
218 1.98 atatat { "/net/[^/]+/[^/]+/pcblist", printother, NULL,
219 1.98 atatat "netstat' or 'sockstat" },
220 1.106 rpaulo { "/net/(inet|inet6)/[^/]+/stats", printother, NULL, "netstat"},
221 1.105 rpaulo { "/net/bpf/(stats|peers)", printother, NULL, "netstat"},
222 1.98 atatat
223 1.145 christos { "/net/inet.*/tcp.*/deb.*", printother, NULL, "trpt" },
224 1.145 christos
225 1.144 christos { "/net/inet.*/ip.*/anonportalgo/reserve", reserve, reserve, NULL },
226 1.107 rpaulo
227 1.107 rpaulo { "/net/ns/spp/deb.*", printother, NULL, "trsp" },
228 1.107 rpaulo
229 1.98 atatat { "/hw/diskstats", printother, NULL, "iostat" },
230 1.98 atatat
231 1.75 atatat #ifdef CPU_CONSDEV
232 1.118 christos { "/machdep/consdev", kern_consdev, NULL, NULL },
233 1.75 atatat #endif /* CPU_CONSDEV */
234 1.75 atatat #ifdef CPU_DISKINFO
235 1.118 christos { "/machdep/diskinfo", machdep_diskinfo, NULL, NULL },
236 1.75 atatat #endif /* CPU_CONSDEV */
237 1.98 atatat
238 1.118 christos { "/proc/[^/]+/rlimit/[^/]+/[^/]+", proc_limit, proc_limit, NULL },
239 1.98 atatat
240 1.98 atatat /*
241 1.98 atatat * these will only be called when the given node has no children
242 1.98 atatat */
243 1.98 atatat { "/net/[^/]+", printother, NULL, NULL },
244 1.98 atatat { "/debug", printother, NULL, NULL },
245 1.98 atatat { "/ddb", printother, NULL, NULL },
246 1.98 atatat { "/vendor", printother, NULL, NULL },
247 1.98 atatat
248 1.118 christos { NULL, NULL, NULL, NULL },
249 1.1 cgd };
250 1.56 christos
251 1.75 atatat struct sysctlnode my_root = {
252 1.83 atatat .sysctl_flags = SYSCTL_VERSION|CTLFLAG_ROOT|CTLTYPE_NODE,
253 1.153 martin .sysctl_size = sizeof(struct sysctlnode),
254 1.75 atatat .sysctl_num = 0,
255 1.75 atatat .sysctl_name = "(prog_root)",
256 1.1 cgd };
257 1.1 cgd
258 1.84 atatat int Aflag, aflag, dflag, Mflag, nflag, qflag, rflag, wflag, xflag;
259 1.92 atatat size_t nr;
260 1.92 atatat char *fn;
261 1.121 christos int req, stale, errs;
262 1.65 lukem FILE *warnfp = stderr;
263 1.1 cgd
264 1.146 christos #define MAXPORTS 0x10000
265 1.146 christos
266 1.1 cgd /*
267 1.75 atatat * vah-riables n stuff
268 1.1 cgd */
269 1.75 atatat char gsname[SYSCTL_NAMELEN * CTL_MAXNAME + CTL_MAXNAME],
270 1.98 atatat canonname[SYSCTL_NAMELEN * CTL_MAXNAME + CTL_MAXNAME],
271 1.75 atatat gdname[10 * CTL_MAXNAME + CTL_MAXNAME];
272 1.104 christos char sep[] = ".";
273 1.104 christos const char *eq = " = ";
274 1.75 atatat const char *lname[] = {
275 1.75 atatat "top", "second", "third", "fourth", "fifth", "sixth",
276 1.75 atatat "seventh", "eighth", "ninth", "tenth", "eleventh", "twelfth"
277 1.75 atatat };
278 1.1 cgd
279 1.22 bouyer /*
280 1.75 atatat * you've heard of main, haven't you?
281 1.22 bouyer */
282 1.1 cgd int
283 1.53 simonb main(int argc, char *argv[])
284 1.1 cgd {
285 1.75 atatat int name[CTL_MAXNAME];
286 1.75 atatat int ch;
287 1.134 christos size_t lastcompiled = 0;
288 1.134 christos regex_t *re;
289 1.1 cgd
290 1.134 christos setprogname(argv[0]);
291 1.84 atatat while ((ch = getopt(argc, argv, "Aabdef:Mnqrwx")) != -1) {
292 1.1 cgd switch (ch) {
293 1.1 cgd case 'A':
294 1.75 atatat Aflag++;
295 1.1 cgd break;
296 1.1 cgd case 'a':
297 1.75 atatat aflag++;
298 1.1 cgd break;
299 1.84 atatat case 'd':
300 1.84 atatat dflag++;
301 1.84 atatat break;
302 1.72 grant case 'e':
303 1.75 atatat eq = "=";
304 1.72 grant break;
305 1.27 tsarna case 'f':
306 1.27 tsarna fn = optarg;
307 1.75 atatat wflag++;
308 1.75 atatat break;
309 1.75 atatat case 'M':
310 1.75 atatat Mflag++;
311 1.27 tsarna break;
312 1.1 cgd case 'n':
313 1.75 atatat nflag++;
314 1.1 cgd break;
315 1.58 sommerfe case 'q':
316 1.75 atatat qflag++;
317 1.75 atatat break;
318 1.82 atatat case 'b': /* FreeBSD compat */
319 1.75 atatat case 'r':
320 1.75 atatat rflag++;
321 1.58 sommerfe break;
322 1.1 cgd case 'w':
323 1.75 atatat wflag++;
324 1.75 atatat break;
325 1.75 atatat case 'x':
326 1.75 atatat xflag++;
327 1.1 cgd break;
328 1.1 cgd default:
329 1.1 cgd usage();
330 1.1 cgd }
331 1.1 cgd }
332 1.58 sommerfe
333 1.75 atatat argc -= optind;
334 1.75 atatat argv += optind;
335 1.75 atatat
336 1.75 atatat if (xflag && rflag)
337 1.75 atatat usage();
338 1.75 atatat /* if ((xflag || rflag) && wflag)
339 1.75 atatat usage(); */
340 1.136 christos /* if (aflag && (Mflag || qflag))
341 1.75 atatat usage(); */
342 1.136 christos if ((aflag || Aflag) && qflag)
343 1.136 christos usage();
344 1.84 atatat if ((Aflag || Mflag || dflag) && argc == 0 && fn == NULL)
345 1.75 atatat aflag = 1;
346 1.58 sommerfe
347 1.133 pooka if (prog_init && prog_init() == -1)
348 1.151 christos err(EXIT_FAILURE, "prog init failed");
349 1.133 pooka
350 1.75 atatat if (Aflag)
351 1.75 atatat warnfp = stdout;
352 1.100 atatat stale = req = 0;
353 1.1 cgd
354 1.134 christos if ((re = malloc(sizeof(*re) * __arraycount(handlers))) == NULL)
355 1.151 christos err(EXIT_FAILURE, "malloc regex");
356 1.134 christos
357 1.75 atatat if (aflag) {
358 1.134 christos print_tree(&name[0], 0, NULL, CTLTYPE_NODE, 1,
359 1.134 christos re, &lastcompiled);
360 1.75 atatat /* if (argc == 0) */
361 1.75 atatat return (0);
362 1.1 cgd }
363 1.27 tsarna
364 1.27 tsarna if (fn) {
365 1.27 tsarna FILE *fp;
366 1.27 tsarna char *l;
367 1.58 sommerfe
368 1.27 tsarna fp = fopen(fn, "r");
369 1.27 tsarna if (fp == NULL) {
370 1.151 christos err(EXIT_FAILURE, "%s", fn);
371 1.27 tsarna } else {
372 1.92 atatat nr = 0;
373 1.92 atatat while ((l = fparseln(fp, NULL, &nr, NULL, 0)) != NULL)
374 1.75 atatat {
375 1.75 atatat if (*l) {
376 1.134 christos parse(l, re, &lastcompiled);
377 1.75 atatat free(l);
378 1.75 atatat }
379 1.27 tsarna }
380 1.27 tsarna fclose(fp);
381 1.27 tsarna }
382 1.121 christos return errs ? 1 : 0;
383 1.27 tsarna }
384 1.75 atatat
385 1.75 atatat if (argc == 0)
386 1.75 atatat usage();
387 1.75 atatat
388 1.75 atatat while (argc-- > 0)
389 1.134 christos parse(*argv++, re, &lastcompiled);
390 1.75 atatat
391 1.151 christos return errs ? EXIT_FAILURE : EXIT_SUCCESS;
392 1.1 cgd }
393 1.1 cgd
394 1.1 cgd /*
395 1.75 atatat * ********************************************************************
396 1.75 atatat * how to find someone special to handle the reading (or maybe even
397 1.75 atatat * writing) of a particular node
398 1.75 atatat * ********************************************************************
399 1.1 cgd */
400 1.95 jdolecek static const struct handlespec *
401 1.141 christos findhandler(const char *s, regex_t *re, size_t *lastcompiled)
402 1.75 atatat {
403 1.95 jdolecek const struct handlespec *p;
404 1.134 christos size_t i, l;
405 1.134 christos int j;
406 1.98 atatat char eb[64];
407 1.134 christos regmatch_t match;
408 1.75 atatat
409 1.75 atatat p = &handlers[0];
410 1.98 atatat l = strlen(s);
411 1.98 atatat for (i = 0; p[i].ps_re != NULL; i++) {
412 1.134 christos if (i >= *lastcompiled) {
413 1.134 christos j = regcomp(&re[i], p[i].ps_re, REG_EXTENDED);
414 1.134 christos if (j != 0) {
415 1.134 christos regerror(j, &re[i], eb, sizeof(eb));
416 1.151 christos errx(EXIT_FAILURE, "regcomp: %s: %s", p[i].ps_re, eb);
417 1.134 christos }
418 1.134 christos *lastcompiled = i + 1;
419 1.98 atatat }
420 1.134 christos j = regexec(&re[i], s, 1, &match, 0);
421 1.98 atatat if (j == 0) {
422 1.141 christos if (match.rm_so == 0 && match.rm_eo == (int)l)
423 1.134 christos return &p[i];
424 1.98 atatat }
425 1.98 atatat else if (j != REG_NOMATCH) {
426 1.134 christos regerror(j, &re[i], eb, sizeof(eb));
427 1.151 christos errx(EXIT_FAILURE, "regexec: %s: %s", p[i].ps_re, eb);
428 1.98 atatat }
429 1.75 atatat }
430 1.75 atatat
431 1.134 christos return NULL;
432 1.75 atatat }
433 1.75 atatat
434 1.98 atatat /*
435 1.98 atatat * after sysctlgetmibinfo is done with the name, we convert all
436 1.98 atatat * separators to / and stuff one at the front if it was missing
437 1.98 atatat */
438 1.98 atatat static void
439 1.98 atatat canonicalize(const char *i, char *o)
440 1.1 cgd {
441 1.98 atatat const char *t;
442 1.98 atatat char p[SYSCTL_NAMELEN + 1];
443 1.98 atatat int l;
444 1.98 atatat
445 1.98 atatat if (i[0] != *sep) {
446 1.98 atatat o[0] = '/';
447 1.98 atatat o[1] = '\0';
448 1.1 cgd }
449 1.98 atatat else
450 1.98 atatat o[0] = '\0';
451 1.75 atatat
452 1.98 atatat t = i;
453 1.98 atatat do {
454 1.98 atatat i = t;
455 1.98 atatat t = strchr(i, sep[0]);
456 1.98 atatat if (t == NULL)
457 1.98 atatat strcat(o, i);
458 1.98 atatat else {
459 1.98 atatat l = t - i;
460 1.98 atatat t++;
461 1.98 atatat memcpy(p, i, l);
462 1.98 atatat p[l] = '\0';
463 1.98 atatat strcat(o, p);
464 1.98 atatat strcat(o, "/");
465 1.98 atatat }
466 1.98 atatat } while (t != NULL);
467 1.1 cgd }
468 1.1 cgd
469 1.1 cgd /*
470 1.75 atatat * ********************************************************************
471 1.75 atatat * convert this special number to a special string so we can print the
472 1.75 atatat * mib
473 1.75 atatat * ********************************************************************
474 1.1 cgd */
475 1.75 atatat static const char *
476 1.75 atatat sf(u_int f)
477 1.1 cgd {
478 1.75 atatat static char s[256];
479 1.104 christos const char *c;
480 1.75 atatat
481 1.75 atatat s[0] = '\0';
482 1.75 atatat c = "";
483 1.75 atatat
484 1.75 atatat #define print_flag(_f, _s, _c, _q, _x) \
485 1.83 atatat if (((_f) & (__CONCAT(CTLFLAG_,_x))) == (__CONCAT(CTLFLAG_,_q))) { \
486 1.75 atatat strlcat((_s), (_c), sizeof(_s)); \
487 1.75 atatat strlcat((_s), __STRING(_q), sizeof(_s)); \
488 1.75 atatat (_c) = ","; \
489 1.83 atatat (_f) &= ~(__CONCAT(CTLFLAG_,_x)); \
490 1.75 atatat }
491 1.83 atatat print_flag(f, s, c, READONLY, READWRITE);
492 1.83 atatat print_flag(f, s, c, READWRITE, READWRITE);
493 1.83 atatat print_flag(f, s, c, ANYWRITE, ANYWRITE);
494 1.83 atatat print_flag(f, s, c, PRIVATE, PRIVATE);
495 1.83 atatat print_flag(f, s, c, PERMANENT, PERMANENT);
496 1.83 atatat print_flag(f, s, c, OWNDATA, OWNDATA);
497 1.83 atatat print_flag(f, s, c, IMMEDIATE, IMMEDIATE);
498 1.83 atatat print_flag(f, s, c, HEX, HEX);
499 1.83 atatat print_flag(f, s, c, ROOT, ROOT);
500 1.83 atatat print_flag(f, s, c, ANYNUMBER, ANYNUMBER);
501 1.83 atatat print_flag(f, s, c, HIDDEN, HIDDEN);
502 1.83 atatat print_flag(f, s, c, ALIAS, ALIAS);
503 1.75 atatat #undef print_flag
504 1.75 atatat
505 1.75 atatat if (f) {
506 1.75 atatat char foo[9];
507 1.75 atatat snprintf(foo, sizeof(foo), "%x", f);
508 1.75 atatat strlcat(s, c, sizeof(s));
509 1.75 atatat strlcat(s, foo, sizeof(s));
510 1.75 atatat }
511 1.1 cgd
512 1.75 atatat return (s);
513 1.75 atatat }
514 1.72 grant
515 1.75 atatat static const char *
516 1.75 atatat st(u_int t)
517 1.75 atatat {
518 1.1 cgd
519 1.75 atatat switch (t) {
520 1.75 atatat case CTLTYPE_NODE:
521 1.75 atatat return "NODE";
522 1.75 atatat case CTLTYPE_INT:
523 1.75 atatat return "INT";
524 1.75 atatat case CTLTYPE_STRING:
525 1.75 atatat return "STRING";
526 1.75 atatat case CTLTYPE_QUAD:
527 1.75 atatat return "QUAD";
528 1.75 atatat case CTLTYPE_STRUCT:
529 1.75 atatat return "STRUCT";
530 1.131 mrg case CTLTYPE_BOOL:
531 1.131 mrg return "BOOL";
532 1.75 atatat }
533 1.1 cgd
534 1.75 atatat return "???";
535 1.75 atatat }
536 1.46 chs
537 1.75 atatat /*
538 1.75 atatat * ********************************************************************
539 1.100 atatat * recursively eliminate all data belonging to the given node
540 1.100 atatat * ********************************************************************
541 1.100 atatat */
542 1.100 atatat static void
543 1.100 atatat purge_tree(struct sysctlnode *rnode)
544 1.100 atatat {
545 1.100 atatat struct sysctlnode *node;
546 1.100 atatat
547 1.100 atatat if (rnode == NULL ||
548 1.100 atatat SYSCTL_TYPE(rnode->sysctl_flags) != CTLTYPE_NODE ||
549 1.100 atatat rnode->sysctl_child == NULL)
550 1.100 atatat return;
551 1.100 atatat
552 1.100 atatat for (node = rnode->sysctl_child;
553 1.100 atatat node < &rnode->sysctl_child[rnode->sysctl_clen];
554 1.100 atatat node++)
555 1.100 atatat purge_tree(node);
556 1.100 atatat free(rnode->sysctl_child);
557 1.100 atatat rnode->sysctl_csize = 0;
558 1.100 atatat rnode->sysctl_clen = 0;
559 1.100 atatat rnode->sysctl_child = NULL;
560 1.100 atatat
561 1.100 atatat if (rnode->sysctl_desc == (const char*)-1)
562 1.100 atatat rnode->sysctl_desc = NULL;
563 1.100 atatat if (rnode->sysctl_desc != NULL)
564 1.104 christos free(__UNCONST(rnode->sysctl_desc));
565 1.100 atatat rnode->sysctl_desc = NULL;
566 1.100 atatat }
567 1.100 atatat
568 1.137 christos static void __attribute__((__format__(__printf__, 3, 4)))
569 1.137 christos appendprintf(char **bp, size_t *lbp, const char *fmt, ...)
570 1.137 christos {
571 1.137 christos int r;
572 1.137 christos va_list ap;
573 1.137 christos
574 1.137 christos va_start(ap, fmt);
575 1.137 christos r = vsnprintf(*bp, *lbp, fmt, ap);
576 1.137 christos va_end(ap);
577 1.137 christos if (r < 0 || (size_t)r > *lbp)
578 1.137 christos r = *lbp;
579 1.137 christos *bp += r;
580 1.137 christos *lbp -= r;
581 1.137 christos }
582 1.137 christos
583 1.100 atatat /*
584 1.100 atatat * ********************************************************************
585 1.75 atatat * print this node and any others underneath it
586 1.75 atatat * ********************************************************************
587 1.75 atatat */
588 1.75 atatat static void
589 1.75 atatat print_tree(int *name, u_int namelen, struct sysctlnode *pnode, u_int type,
590 1.134 christos int add, regex_t *re, size_t *lastcompiled)
591 1.75 atatat {
592 1.75 atatat struct sysctlnode *node;
593 1.128 lukem int rc;
594 1.137 christos size_t ni, sz, ldp, lsp;
595 1.137 christos char *sp, *dp, *tsp, *tdp;
596 1.95 jdolecek const struct handlespec *p;
597 1.75 atatat
598 1.137 christos sp = tsp = &gsname[strlen(gsname)];
599 1.137 christos dp = tdp = &gdname[strlen(gdname)];
600 1.137 christos ldp = sizeof(gdname) - (dp - gdname);
601 1.137 christos lsp = sizeof(gsname) - (sp - gsname);
602 1.75 atatat
603 1.75 atatat if (sp != &gsname[0] && dp == &gdname[0]) {
604 1.75 atatat /*
605 1.75 atatat * aw...shucks. now we must play catch up
606 1.75 atatat */
607 1.137 christos for (ni = 0; ni < namelen; ni++)
608 1.137 christos appendprintf(&tdp, &ldp, "%s%d", ni > 0 ? "." : "",
609 1.137 christos name[ni]);
610 1.75 atatat }
611 1.1 cgd
612 1.75 atatat if (pnode == NULL)
613 1.75 atatat pnode = &my_root;
614 1.75 atatat else if (add) {
615 1.137 christos appendprintf(&tsp, &lsp, "%s%s", namelen > 1 ? sep : "",
616 1.137 christos pnode->sysctl_name);
617 1.137 christos appendprintf(&tdp, &ldp, "%s%d", namelen > 1 ? "." : "",
618 1.137 christos pnode->sysctl_num);
619 1.75 atatat }
620 1.75 atatat
621 1.75 atatat if (Mflag && pnode != &my_root) {
622 1.75 atatat if (nflag)
623 1.75 atatat printf("%s: ", gdname);
624 1.75 atatat else
625 1.75 atatat printf("%s (%s): ", gsname, gdname);
626 1.75 atatat printf("CTLTYPE_%s", st(type));
627 1.75 atatat if (type == CTLTYPE_NODE) {
628 1.83 atatat if (SYSCTL_FLAGS(pnode->sysctl_flags) & CTLFLAG_ALIAS)
629 1.75 atatat printf(", alias %d",
630 1.75 atatat pnode->sysctl_alias);
631 1.75 atatat else
632 1.75 atatat printf(", children %d/%d",
633 1.75 atatat pnode->sysctl_clen,
634 1.75 atatat pnode->sysctl_csize);
635 1.75 atatat }
636 1.75 atatat printf(", size %zu", pnode->sysctl_size);
637 1.75 atatat printf(", flags 0x%x<%s>",
638 1.75 atatat SYSCTL_FLAGS(pnode->sysctl_flags),
639 1.75 atatat sf(SYSCTL_FLAGS(pnode->sysctl_flags)));
640 1.75 atatat if (pnode->sysctl_func)
641 1.75 atatat printf(", func=%p", pnode->sysctl_func);
642 1.75 atatat printf(", ver=%d", pnode->sysctl_ver);
643 1.75 atatat printf("\n");
644 1.75 atatat if (type != CTLTYPE_NODE) {
645 1.75 atatat *sp = *dp = '\0';
646 1.1 cgd return;
647 1.1 cgd }
648 1.75 atatat }
649 1.75 atatat
650 1.84 atatat if (dflag && pnode != &my_root) {
651 1.84 atatat if (Aflag || type != CTLTYPE_NODE) {
652 1.84 atatat if (pnode->sysctl_desc == NULL)
653 1.84 atatat getdesc1(name, namelen, pnode);
654 1.91 atatat if (Aflag || !add ||
655 1.84 atatat (pnode->sysctl_desc != NULL &&
656 1.84 atatat pnode->sysctl_desc != (const char*)-1)) {
657 1.84 atatat if (!nflag)
658 1.84 atatat printf("%s: ", gsname);
659 1.84 atatat if (pnode->sysctl_desc == NULL ||
660 1.84 atatat pnode->sysctl_desc == (const char*)-1)
661 1.84 atatat printf("(no description)\n");
662 1.84 atatat else
663 1.84 atatat printf("%s\n", pnode->sysctl_desc);
664 1.84 atatat }
665 1.84 atatat }
666 1.84 atatat
667 1.84 atatat if (type != CTLTYPE_NODE) {
668 1.84 atatat *sp = *dp = '\0';
669 1.84 atatat return;
670 1.84 atatat }
671 1.84 atatat }
672 1.84 atatat
673 1.75 atatat /*
674 1.75 atatat * if this is an alias and we added our name, that means we
675 1.75 atatat * got here by recursing down into the tree, so skip it. The
676 1.75 atatat * only way to print an aliased node is with either -M or by
677 1.75 atatat * name specifically.
678 1.75 atatat */
679 1.83 atatat if (SYSCTL_FLAGS(pnode->sysctl_flags) & CTLFLAG_ALIAS && add) {
680 1.75 atatat *sp = *dp = '\0';
681 1.1 cgd return;
682 1.75 atatat }
683 1.1 cgd
684 1.98 atatat canonicalize(gsname, canonname);
685 1.141 christos p = findhandler(canonname, re, lastcompiled);
686 1.75 atatat if (type != CTLTYPE_NODE && p != NULL) {
687 1.141 christos if (p->ps_p == NULL) {
688 1.141 christos sysctlperror("Cannot print `%s': %s\n", gsname,
689 1.141 christos strerror(EOPNOTSUPP));
690 1.151 christos exit(EXIT_FAILURE);
691 1.141 christos }
692 1.75 atatat (*p->ps_p)(gsname, gdname, NULL, name, namelen, pnode, type,
693 1.104 christos __UNCONST(p->ps_d));
694 1.75 atatat *sp = *dp = '\0';
695 1.75 atatat return;
696 1.75 atatat }
697 1.1 cgd
698 1.75 atatat if (type != CTLTYPE_NODE && pnode->sysctl_size == 0) {
699 1.133 pooka rc = prog_sysctl(&name[0], namelen, NULL, &sz, NULL, 0);
700 1.75 atatat if (rc == -1) {
701 1.75 atatat sysctlerror(1);
702 1.75 atatat *sp = *dp = '\0';
703 1.18 thorpej return;
704 1.75 atatat }
705 1.75 atatat if (sz == 0) {
706 1.75 atatat if ((Aflag || req) && !Mflag)
707 1.75 atatat printf("%s: node contains no data\n", gsname);
708 1.75 atatat *sp = *dp = '\0';
709 1.18 thorpej return;
710 1.18 thorpej }
711 1.75 atatat }
712 1.75 atatat else
713 1.75 atatat sz = pnode->sysctl_size;
714 1.17 thorpej
715 1.75 atatat switch (type) {
716 1.75 atatat case CTLTYPE_NODE: {
717 1.85 atatat __learn_tree(name, namelen, pnode);
718 1.75 atatat node = pnode->sysctl_child;
719 1.75 atatat if (node == NULL) {
720 1.88 atatat if (dflag)
721 1.88 atatat /* do nothing */;
722 1.88 atatat else if (p != NULL)
723 1.75 atatat (*p->ps_p)(gsname, gdname, NULL, name, namelen,
724 1.104 christos pnode, type, __UNCONST(p->ps_d));
725 1.88 atatat else if ((Aflag || req) && !Mflag)
726 1.75 atatat printf("%s: no children\n", gsname);
727 1.75 atatat }
728 1.75 atatat else {
729 1.84 atatat if (dflag)
730 1.84 atatat /*
731 1.84 atatat * get all descriptions for next level
732 1.84 atatat * in one chunk
733 1.84 atatat */
734 1.84 atatat getdesc(name, namelen, pnode);
735 1.75 atatat req = 0;
736 1.75 atatat for (ni = 0; ni < pnode->sysctl_clen; ni++) {
737 1.75 atatat name[namelen] = node[ni].sysctl_num;
738 1.83 atatat if ((node[ni].sysctl_flags & CTLFLAG_HIDDEN) &&
739 1.75 atatat !(Aflag || req))
740 1.75 atatat continue;
741 1.75 atatat print_tree(name, namelen + 1, &node[ni],
742 1.75 atatat SYSCTL_TYPE(node[ni].sysctl_flags),
743 1.134 christos 1, re, lastcompiled);
744 1.75 atatat }
745 1.75 atatat }
746 1.1 cgd break;
747 1.75 atatat }
748 1.75 atatat case CTLTYPE_INT: {
749 1.75 atatat int i;
750 1.133 pooka rc = prog_sysctl(name, namelen, &i, &sz, NULL, 0);
751 1.75 atatat if (rc == -1) {
752 1.75 atatat sysctlerror(1);
753 1.75 atatat break;
754 1.75 atatat }
755 1.75 atatat display_number(pnode, gsname, &i, sizeof(i), DISPLAY_VALUE);
756 1.22 bouyer break;
757 1.75 atatat }
758 1.131 mrg case CTLTYPE_BOOL: {
759 1.131 mrg bool b;
760 1.133 pooka rc = prog_sysctl(name, namelen, &b, &sz, NULL, 0);
761 1.131 mrg if (rc == -1) {
762 1.131 mrg sysctlerror(1);
763 1.131 mrg break;
764 1.131 mrg }
765 1.131 mrg display_number(pnode, gsname, &b, sizeof(b), DISPLAY_VALUE);
766 1.131 mrg break;
767 1.131 mrg }
768 1.75 atatat case CTLTYPE_STRING: {
769 1.75 atatat unsigned char buf[1024], *tbuf;
770 1.75 atatat tbuf = buf;
771 1.75 atatat sz = sizeof(buf);
772 1.133 pooka rc = prog_sysctl(&name[0], namelen, tbuf, &sz, NULL, 0);
773 1.75 atatat if (rc == -1 && errno == ENOMEM) {
774 1.75 atatat tbuf = malloc(sz);
775 1.75 atatat if (tbuf == NULL) {
776 1.75 atatat sysctlerror(1);
777 1.75 atatat break;
778 1.75 atatat }
779 1.133 pooka rc = prog_sysctl(&name[0], namelen, tbuf, &sz, NULL, 0);
780 1.56 christos }
781 1.75 atatat if (rc == -1)
782 1.75 atatat sysctlerror(1);
783 1.75 atatat else
784 1.96 atatat display_string(pnode, gsname, tbuf, sz, DISPLAY_VALUE);
785 1.75 atatat if (tbuf != buf)
786 1.75 atatat free(tbuf);
787 1.56 christos break;
788 1.1 cgd }
789 1.75 atatat case CTLTYPE_QUAD: {
790 1.75 atatat u_quad_t q;
791 1.75 atatat sz = sizeof(q);
792 1.133 pooka rc = prog_sysctl(&name[0], namelen, &q, &sz, NULL, 0);
793 1.75 atatat if (rc == -1) {
794 1.75 atatat sysctlerror(1);
795 1.75 atatat break;
796 1.75 atatat }
797 1.75 atatat display_number(pnode, gsname, &q, sizeof(q), DISPLAY_VALUE);
798 1.75 atatat break;
799 1.1 cgd }
800 1.75 atatat case CTLTYPE_STRUCT: {
801 1.75 atatat /*
802 1.75 atatat * we shouldn't actually get here, but if we
803 1.75 atatat * do, would it be nice to have *something* to
804 1.75 atatat * do other than completely ignore the
805 1.75 atatat * request.
806 1.75 atatat */
807 1.75 atatat unsigned char *d;
808 1.75 atatat if ((d = malloc(sz)) == NULL) {
809 1.75 atatat fprintf(warnfp, "%s: !malloc failed!\n", gsname);
810 1.1 cgd break;
811 1.75 atatat }
812 1.133 pooka rc = prog_sysctl(&name[0], namelen, d, &sz, NULL, 0);
813 1.75 atatat if (rc == -1) {
814 1.75 atatat sysctlerror(1);
815 1.1 cgd break;
816 1.1 cgd }
817 1.75 atatat display_struct(pnode, gsname, d, sz, DISPLAY_VALUE);
818 1.75 atatat free(d);
819 1.75 atatat break;
820 1.1 cgd }
821 1.75 atatat default:
822 1.75 atatat /* should i print an error here? */
823 1.75 atatat break;
824 1.75 atatat }
825 1.75 atatat
826 1.75 atatat *sp = *dp = '\0';
827 1.75 atatat }
828 1.75 atatat
829 1.75 atatat /*
830 1.75 atatat * ********************************************************************
831 1.75 atatat * parse a request, possibly determining that it's a create or destroy
832 1.75 atatat * request
833 1.75 atatat * ********************************************************************
834 1.75 atatat */
835 1.75 atatat static void
836 1.134 christos parse(char *l, regex_t *re, size_t *lastcompiled)
837 1.75 atatat {
838 1.75 atatat struct sysctlnode *node;
839 1.95 jdolecek const struct handlespec *w;
840 1.84 atatat int name[CTL_MAXNAME], dodesc = 0;
841 1.75 atatat u_int namelen, type;
842 1.75 atatat char *key, *value, *dot;
843 1.75 atatat size_t sz;
844 1.129 christos bool optional = false;
845 1.75 atatat
846 1.75 atatat req = 1;
847 1.75 atatat key = l;
848 1.129 christos
849 1.129 christos if ((value = strchr(l, '=')) != NULL) {
850 1.129 christos if (value > l && value[-1] == '?') {
851 1.129 christos value[-1] = '\0';
852 1.129 christos optional = true;
853 1.129 christos }
854 1.75 atatat *value++ = '\0';
855 1.129 christos }
856 1.1 cgd
857 1.75 atatat if ((dot = strpbrk(key, "./")) == NULL)
858 1.75 atatat sep[0] = '.';
859 1.75 atatat else
860 1.75 atatat sep[0] = dot[0];
861 1.75 atatat sep[1] = '\0';
862 1.1 cgd
863 1.82 atatat while (key[0] == sep[0] && key[1] == sep[0]) {
864 1.75 atatat if (value != NULL)
865 1.75 atatat value[-1] = '=';
866 1.82 atatat if (strncmp(key + 2, "create", 6) == 0 &&
867 1.82 atatat (key[8] == '=' || key[8] == sep[0]))
868 1.92 atatat parse_create(key + 8 + (key[8] == '=' ? 1 : 0));
869 1.82 atatat else if (strncmp(key + 2, "destroy", 7) == 0 &&
870 1.82 atatat (key[9] == '=' || key[9] == sep[0]))
871 1.92 atatat parse_destroy(key + 9 + (key[9] == '=' ? 1 : 0));
872 1.84 atatat else if (strncmp(key + 2, "describe", 8) == 0 &&
873 1.84 atatat (key[10] == '=' || key[10] == sep[0])) {
874 1.84 atatat key += 10 + (key[10] == '=');
875 1.84 atatat if ((value = strchr(key, '=')) != NULL)
876 1.84 atatat parse_describe(key);
877 1.84 atatat else {
878 1.84 atatat if (!dflag)
879 1.84 atatat dodesc = 1;
880 1.84 atatat break;
881 1.84 atatat }
882 1.84 atatat }
883 1.1 cgd else
884 1.92 atatat sysctlperror("unable to parse '%s'\n", key);
885 1.32 simonb return;
886 1.32 simonb }
887 1.32 simonb
888 1.100 atatat if (stale) {
889 1.100 atatat purge_tree(&my_root);
890 1.100 atatat stale = 0;
891 1.100 atatat }
892 1.75 atatat node = &my_root;
893 1.75 atatat namelen = CTL_MAXNAME;
894 1.75 atatat sz = sizeof(gsname);
895 1.75 atatat
896 1.83 atatat if (sysctlgetmibinfo(key, &name[0], &namelen, gsname, &sz, &node,
897 1.83 atatat SYSCTL_VERSION) == -1) {
898 1.129 christos if (optional)
899 1.129 christos return;
900 1.92 atatat sysctlparseerror(namelen, l);
901 1.151 christos EXIT(EXIT_FAILURE);
902 1.75 atatat }
903 1.75 atatat
904 1.75 atatat type = SYSCTL_TYPE(node->sysctl_flags);
905 1.75 atatat
906 1.75 atatat if (value == NULL) {
907 1.84 atatat if (dodesc)
908 1.84 atatat dflag = 1;
909 1.134 christos print_tree(&name[0], namelen, node, type, 0, re, lastcompiled);
910 1.84 atatat if (dodesc)
911 1.84 atatat dflag = 0;
912 1.75 atatat gsname[0] = '\0';
913 1.69 dsl return;
914 1.69 dsl }
915 1.69 dsl
916 1.92 atatat if (fn)
917 1.92 atatat trim_whitespace(value, 1);
918 1.92 atatat
919 1.82 atatat if (!wflag) {
920 1.92 atatat sysctlperror("Must specify -w to set variables\n");
921 1.151 christos exit(EXIT_FAILURE);
922 1.82 atatat }
923 1.82 atatat
924 1.98 atatat canonicalize(gsname, canonname);
925 1.141 christos if (type != CTLTYPE_NODE && (w = findhandler(canonname, re,
926 1.134 christos lastcompiled)) != NULL) {
927 1.141 christos if (w->ps_w == NULL) {
928 1.141 christos sysctlperror("Cannot write `%s': %s\n", gsname,
929 1.141 christos strerror(EOPNOTSUPP));
930 1.151 christos exit(EXIT_FAILURE);
931 1.141 christos }
932 1.75 atatat (*w->ps_w)(gsname, gdname, value, name, namelen, node, type,
933 1.104 christos __UNCONST(w->ps_d));
934 1.75 atatat gsname[0] = '\0';
935 1.26 fvdl return;
936 1.26 fvdl }
937 1.58 sommerfe
938 1.1 cgd switch (type) {
939 1.75 atatat case CTLTYPE_NODE:
940 1.75 atatat /*
941 1.75 atatat * XXX old behavior is to print. should we error instead?
942 1.75 atatat */
943 1.134 christos print_tree(&name[0], namelen, node, CTLTYPE_NODE, 1, re,
944 1.134 christos lastcompiled);
945 1.75 atatat break;
946 1.1 cgd case CTLTYPE_INT:
947 1.131 mrg case CTLTYPE_BOOL:
948 1.131 mrg case CTLTYPE_QUAD:
949 1.158 dholland write_number(&name[0], namelen, node, value, optional);
950 1.75 atatat break;
951 1.1 cgd case CTLTYPE_STRING:
952 1.158 dholland write_string(&name[0], namelen, node, value, optional);
953 1.75 atatat break;
954 1.75 atatat case CTLTYPE_STRUCT:
955 1.75 atatat /*
956 1.75 atatat * XXX old behavior is to print. should we error instead?
957 1.75 atatat */
958 1.75 atatat /* fprintf(warnfp, "you can't write to %s\n", gsname); */
959 1.134 christos print_tree(&name[0], namelen, node, type, 0, re, lastcompiled);
960 1.75 atatat break;
961 1.75 atatat }
962 1.75 atatat }
963 1.75 atatat
964 1.75 atatat /*
965 1.75 atatat
966 1.75 atatat //create=foo.bar.whatever...,
967 1.75 atatat [type=(int|quad|string|struct|node),]
968 1.75 atatat [size=###,]
969 1.75 atatat [n=###,]
970 1.82 atatat [flags=(iohxparw12),]
971 1.75 atatat [addr=0x####,|symbol=...|value=...]
972 1.75 atatat
973 1.75 atatat size is optional for some types. type must be set before anything
974 1.130 elad else. nodes can have [rwhp], but nothing else applies. if no
975 1.75 atatat size or type is given, node is asserted. writeable is the default,
976 1.130 elad with [rw] being read-only and unconditionally writeable
977 1.75 atatat respectively. if you specify addr, it is assumed to be the name of
978 1.83 atatat a kernel symbol, if value, CTLFLAG_OWNDATA will be asserted for
979 1.83 atatat strings, CTLFLAG_IMMEDIATE for ints and u_quad_ts. you cannot
980 1.75 atatat specify both value and addr.
981 1.75 atatat
982 1.75 atatat */
983 1.75 atatat
984 1.75 atatat static void
985 1.82 atatat parse_create(char *l)
986 1.75 atatat {
987 1.75 atatat struct sysctlnode node;
988 1.75 atatat size_t sz;
989 1.75 atatat char *nname, *key, *value, *data, *addr, *c, *t;
990 1.75 atatat int name[CTL_MAXNAME], i, rc, method, flags, rw;
991 1.75 atatat u_int namelen, type;
992 1.92 atatat u_quad_t uq;
993 1.92 atatat quad_t q;
994 1.131 mrg bool b;
995 1.75 atatat
996 1.82 atatat if (!wflag) {
997 1.92 atatat sysctlperror("Must specify -w to create nodes\n");
998 1.151 christos exit(EXIT_FAILURE);
999 1.82 atatat }
1000 1.82 atatat
1001 1.75 atatat /*
1002 1.75 atatat * these are the pieces that make up the description of a new
1003 1.75 atatat * node
1004 1.75 atatat */
1005 1.75 atatat memset(&node, 0, sizeof(node));
1006 1.75 atatat node.sysctl_num = CTL_CREATE; /* any number is fine */
1007 1.75 atatat flags = 0;
1008 1.75 atatat rw = -1;
1009 1.75 atatat type = 0;
1010 1.75 atatat sz = 0;
1011 1.75 atatat data = addr = NULL;
1012 1.75 atatat memset(name, 0, sizeof(name));
1013 1.75 atatat namelen = 0;
1014 1.75 atatat method = 0;
1015 1.75 atatat
1016 1.75 atatat /*
1017 1.75 atatat * misc stuff used when constructing
1018 1.75 atatat */
1019 1.75 atatat i = 0;
1020 1.131 mrg b = false;
1021 1.92 atatat uq = 0;
1022 1.75 atatat key = NULL;
1023 1.75 atatat value = NULL;
1024 1.75 atatat
1025 1.75 atatat /*
1026 1.75 atatat * the name of the thing we're trying to create is first, so
1027 1.75 atatat * pick it off.
1028 1.75 atatat */
1029 1.75 atatat nname = l;
1030 1.75 atatat if ((c = strchr(nname, ',')) != NULL)
1031 1.75 atatat *c++ = '\0';
1032 1.75 atatat
1033 1.75 atatat while (c != NULL) {
1034 1.75 atatat
1035 1.75 atatat /*
1036 1.75 atatat * pull off the next "key=value" pair
1037 1.75 atatat */
1038 1.75 atatat key = c;
1039 1.75 atatat if ((t = strchr(key, '=')) != NULL) {
1040 1.75 atatat *t++ = '\0';
1041 1.75 atatat value = t;
1042 1.75 atatat }
1043 1.75 atatat else
1044 1.75 atatat value = NULL;
1045 1.75 atatat
1046 1.75 atatat /*
1047 1.75 atatat * if the "key" is "value", then that eats the rest of
1048 1.75 atatat * the string, so we're done, otherwise bite it off at
1049 1.75 atatat * the next comma.
1050 1.75 atatat */
1051 1.75 atatat if (strcmp(key, "value") == 0) {
1052 1.75 atatat c = NULL;
1053 1.75 atatat data = value;
1054 1.75 atatat break;
1055 1.75 atatat }
1056 1.112 christos else if (value) {
1057 1.75 atatat if ((c = strchr(value, ',')) != NULL)
1058 1.75 atatat *c++ = '\0';
1059 1.75 atatat }
1060 1.75 atatat
1061 1.75 atatat /*
1062 1.133 pooka * note that we (mostly) let the invoker of prog_sysctl(8)
1063 1.75 atatat * play rampant here and depend on the kernel to tell
1064 1.75 atatat * them that they were wrong. well...within reason.
1065 1.75 atatat * we later check the various parameters against each
1066 1.75 atatat * other to make sure it makes some sort of sense.
1067 1.75 atatat */
1068 1.75 atatat if (strcmp(key, "addr") == 0) {
1069 1.75 atatat /*
1070 1.75 atatat * we can't check these two. only the kernel
1071 1.75 atatat * can tell us when it fails to find the name
1072 1.75 atatat * (or if the address is invalid).
1073 1.75 atatat */
1074 1.75 atatat if (method != 0) {
1075 1.92 atatat sysctlperror(
1076 1.92 atatat "%s: already have %s for new node\n",
1077 1.92 atatat nname,
1078 1.75 atatat method == CTL_CREATE ? "addr" : "symbol");
1079 1.151 christos EXIT(EXIT_FAILURE);
1080 1.75 atatat }
1081 1.113 christos if (value == NULL) {
1082 1.113 christos sysctlperror("%s: missing value\n", nname);
1083 1.151 christos EXIT(EXIT_FAILURE);
1084 1.113 christos }
1085 1.114 christos errno = 0;
1086 1.75 atatat addr = (void*)strtoul(value, &t, 0);
1087 1.94 atatat if (t == value || *t != '\0' || errno != 0) {
1088 1.92 atatat sysctlperror(
1089 1.92 atatat "%s: '%s' is not a valid address\n",
1090 1.92 atatat nname, value);
1091 1.151 christos EXIT(EXIT_FAILURE);
1092 1.75 atatat }
1093 1.75 atatat method = CTL_CREATE;
1094 1.75 atatat }
1095 1.75 atatat else if (strcmp(key, "symbol") == 0) {
1096 1.75 atatat if (method != 0) {
1097 1.92 atatat sysctlperror(
1098 1.92 atatat "%s: already have %s for new node\n",
1099 1.92 atatat nname,
1100 1.75 atatat method == CTL_CREATE ? "addr" : "symbol");
1101 1.151 christos EXIT(EXIT_FAILURE);
1102 1.75 atatat }
1103 1.75 atatat addr = value;
1104 1.75 atatat method = CTL_CREATESYM;
1105 1.75 atatat }
1106 1.75 atatat else if (strcmp(key, "type") == 0) {
1107 1.114 christos if (value == NULL) {
1108 1.114 christos sysctlperror("%s: missing value\n", nname);
1109 1.151 christos EXIT(EXIT_FAILURE);
1110 1.114 christos }
1111 1.75 atatat if (strcmp(value, "node") == 0)
1112 1.75 atatat type = CTLTYPE_NODE;
1113 1.75 atatat else if (strcmp(value, "int") == 0) {
1114 1.75 atatat sz = sizeof(int);
1115 1.75 atatat type = CTLTYPE_INT;
1116 1.75 atatat }
1117 1.131 mrg else if (strcmp(value, "bool") == 0) {
1118 1.131 mrg sz = sizeof(bool);
1119 1.131 mrg type = CTLTYPE_BOOL;
1120 1.131 mrg }
1121 1.75 atatat else if (strcmp(value, "string") == 0)
1122 1.75 atatat type = CTLTYPE_STRING;
1123 1.75 atatat else if (strcmp(value, "quad") == 0) {
1124 1.75 atatat sz = sizeof(u_quad_t);
1125 1.75 atatat type = CTLTYPE_QUAD;
1126 1.75 atatat }
1127 1.75 atatat else if (strcmp(value, "struct") == 0)
1128 1.75 atatat type = CTLTYPE_STRUCT;
1129 1.75 atatat else {
1130 1.92 atatat sysctlperror(
1131 1.92 atatat "%s: '%s' is not a valid type\n",
1132 1.92 atatat nname, value);
1133 1.151 christos EXIT(EXIT_FAILURE);
1134 1.75 atatat }
1135 1.75 atatat }
1136 1.75 atatat else if (strcmp(key, "size") == 0) {
1137 1.115 jnemeth if (value == NULL) {
1138 1.115 jnemeth sysctlperror("%s: missing value\n", nname);
1139 1.151 christos EXIT(EXIT_FAILURE);
1140 1.115 jnemeth }
1141 1.75 atatat errno = 0;
1142 1.75 atatat /*
1143 1.75 atatat * yes, i know size_t is not an unsigned long,
1144 1.75 atatat * but we can all agree that it ought to be,
1145 1.75 atatat * right?
1146 1.75 atatat */
1147 1.75 atatat sz = strtoul(value, &t, 0);
1148 1.94 atatat if (t == value || *t != '\0' || errno != 0) {
1149 1.92 atatat sysctlperror(
1150 1.92 atatat "%s: '%s' is not a valid size\n",
1151 1.92 atatat nname, value);
1152 1.151 christos EXIT(EXIT_FAILURE);
1153 1.75 atatat }
1154 1.75 atatat }
1155 1.75 atatat else if (strcmp(key, "n") == 0) {
1156 1.114 christos if (value == NULL) {
1157 1.114 christos sysctlperror("%s: missing value\n", nname);
1158 1.151 christos EXIT(EXIT_FAILURE);
1159 1.114 christos }
1160 1.75 atatat errno = 0;
1161 1.110 christos q = strtoll(value, &t, 0);
1162 1.94 atatat if (t == value || *t != '\0' || errno != 0 ||
1163 1.92 atatat q < INT_MIN || q > UINT_MAX) {
1164 1.92 atatat sysctlperror(
1165 1.92 atatat "%s: '%s' is not a valid mib number\n",
1166 1.92 atatat nname, value);
1167 1.151 christos EXIT(EXIT_FAILURE);
1168 1.75 atatat }
1169 1.92 atatat node.sysctl_num = (int)q;
1170 1.75 atatat }
1171 1.75 atatat else if (strcmp(key, "flags") == 0) {
1172 1.114 christos if (value == NULL) {
1173 1.114 christos sysctlperror("%s: missing value\n", nname);
1174 1.151 christos EXIT(EXIT_FAILURE);
1175 1.114 christos }
1176 1.75 atatat t = value;
1177 1.75 atatat while (*t != '\0') {
1178 1.75 atatat switch (*t) {
1179 1.75 atatat case 'a':
1180 1.83 atatat flags |= CTLFLAG_ANYWRITE;
1181 1.75 atatat break;
1182 1.75 atatat case 'h':
1183 1.83 atatat flags |= CTLFLAG_HIDDEN;
1184 1.75 atatat break;
1185 1.75 atatat case 'i':
1186 1.83 atatat flags |= CTLFLAG_IMMEDIATE;
1187 1.75 atatat break;
1188 1.75 atatat case 'o':
1189 1.83 atatat flags |= CTLFLAG_OWNDATA;
1190 1.75 atatat break;
1191 1.75 atatat case 'p':
1192 1.83 atatat flags |= CTLFLAG_PRIVATE;
1193 1.75 atatat break;
1194 1.143 dsl case 'u':
1195 1.143 dsl flags |= CTLFLAG_UNSIGNED;
1196 1.143 dsl break;
1197 1.75 atatat case 'x':
1198 1.83 atatat flags |= CTLFLAG_HEX;
1199 1.75 atatat break;
1200 1.75 atatat
1201 1.75 atatat case 'r':
1202 1.83 atatat rw = CTLFLAG_READONLY;
1203 1.75 atatat break;
1204 1.75 atatat case 'w':
1205 1.83 atatat rw = CTLFLAG_READWRITE;
1206 1.75 atatat break;
1207 1.75 atatat default:
1208 1.92 atatat sysctlperror(
1209 1.92 atatat "%s: '%c' is not a valid flag\n",
1210 1.92 atatat nname, *t);
1211 1.151 christos EXIT(EXIT_FAILURE);
1212 1.75 atatat }
1213 1.75 atatat t++;
1214 1.75 atatat }
1215 1.75 atatat }
1216 1.75 atatat else {
1217 1.92 atatat sysctlperror("%s: unrecognized keyword '%s'\n",
1218 1.92 atatat nname, key);
1219 1.151 christos EXIT(EXIT_FAILURE);
1220 1.75 atatat }
1221 1.75 atatat }
1222 1.75 atatat
1223 1.75 atatat /*
1224 1.75 atatat * now that we've finished parsing the given string, fill in
1225 1.75 atatat * anything they didn't specify
1226 1.75 atatat */
1227 1.75 atatat if (type == 0)
1228 1.75 atatat type = CTLTYPE_NODE;
1229 1.75 atatat
1230 1.75 atatat /*
1231 1.75 atatat * the "data" can be interpreted various ways depending on the
1232 1.75 atatat * type of node we're creating, as can the size
1233 1.75 atatat */
1234 1.75 atatat if (data != NULL) {
1235 1.75 atatat if (addr != NULL) {
1236 1.92 atatat sysctlperror(
1237 1.92 atatat "%s: cannot specify both value and "
1238 1.92 atatat "address\n", nname);
1239 1.151 christos EXIT(EXIT_FAILURE);
1240 1.75 atatat }
1241 1.75 atatat
1242 1.75 atatat switch (type) {
1243 1.75 atatat case CTLTYPE_INT:
1244 1.75 atatat errno = 0;
1245 1.110 christos q = strtoll(data, &t, 0);
1246 1.94 atatat if (t == data || *t != '\0' || errno != 0 ||
1247 1.92 atatat q < INT_MIN || q > UINT_MAX) {
1248 1.92 atatat sysctlperror(
1249 1.92 atatat "%s: '%s' is not a valid integer\n",
1250 1.92 atatat nname, value);
1251 1.151 christos EXIT(EXIT_FAILURE);
1252 1.75 atatat }
1253 1.92 atatat i = (int)q;
1254 1.83 atatat if (!(flags & CTLFLAG_OWNDATA)) {
1255 1.83 atatat flags |= CTLFLAG_IMMEDIATE;
1256 1.75 atatat node.sysctl_idata = i;
1257 1.75 atatat }
1258 1.75 atatat else
1259 1.75 atatat node.sysctl_data = &i;
1260 1.75 atatat if (sz == 0)
1261 1.75 atatat sz = sizeof(int);
1262 1.75 atatat break;
1263 1.131 mrg case CTLTYPE_BOOL:
1264 1.131 mrg errno = 0;
1265 1.131 mrg q = strtoll(data, &t, 0);
1266 1.131 mrg if (t == data || *t != '\0' || errno != 0 ||
1267 1.131 mrg (q != 0 && q != 1)) {
1268 1.131 mrg sysctlperror(
1269 1.131 mrg "%s: '%s' is not a valid bool\n",
1270 1.131 mrg nname, value);
1271 1.151 christos EXIT(EXIT_FAILURE);
1272 1.131 mrg }
1273 1.131 mrg b = q == 1;
1274 1.131 mrg if (!(flags & CTLFLAG_OWNDATA)) {
1275 1.131 mrg flags |= CTLFLAG_IMMEDIATE;
1276 1.131 mrg node.sysctl_idata = b;
1277 1.131 mrg }
1278 1.131 mrg else
1279 1.131 mrg node.sysctl_data = &b;
1280 1.131 mrg if (sz == 0)
1281 1.131 mrg sz = sizeof(bool);
1282 1.131 mrg break;
1283 1.75 atatat case CTLTYPE_STRING:
1284 1.83 atatat flags |= CTLFLAG_OWNDATA;
1285 1.75 atatat node.sysctl_data = data;
1286 1.75 atatat if (sz == 0)
1287 1.75 atatat sz = strlen(data) + 1;
1288 1.75 atatat else if (sz < strlen(data) + 1) {
1289 1.92 atatat sysctlperror("%s: ignoring size=%zu for "
1290 1.75 atatat "string node, too small for given "
1291 1.92 atatat "value\n", nname, sz);
1292 1.75 atatat sz = strlen(data) + 1;
1293 1.75 atatat }
1294 1.75 atatat break;
1295 1.75 atatat case CTLTYPE_QUAD:
1296 1.75 atatat errno = 0;
1297 1.92 atatat uq = strtouq(data, &t, 0);
1298 1.94 atatat if (t == data || *t != '\0' || errno != 0) {
1299 1.92 atatat sysctlperror(
1300 1.92 atatat "%s: '%s' is not a valid quad\n",
1301 1.92 atatat nname, value);
1302 1.151 christos EXIT(EXIT_FAILURE);
1303 1.75 atatat }
1304 1.83 atatat if (!(flags & CTLFLAG_OWNDATA)) {
1305 1.83 atatat flags |= CTLFLAG_IMMEDIATE;
1306 1.92 atatat node.sysctl_qdata = uq;
1307 1.75 atatat }
1308 1.75 atatat else
1309 1.92 atatat node.sysctl_data = &uq;
1310 1.75 atatat if (sz == 0)
1311 1.75 atatat sz = sizeof(u_quad_t);
1312 1.75 atatat break;
1313 1.75 atatat case CTLTYPE_STRUCT:
1314 1.92 atatat sysctlperror("%s: struct not initializable\n",
1315 1.92 atatat nname);
1316 1.151 christos EXIT(EXIT_FAILURE);
1317 1.75 atatat }
1318 1.75 atatat
1319 1.75 atatat /*
1320 1.75 atatat * these methods have all provided local starting
1321 1.75 atatat * values that the kernel must copy in
1322 1.75 atatat */
1323 1.75 atatat }
1324 1.75 atatat
1325 1.75 atatat /*
1326 1.75 atatat * hmm...no data, but we have an address of data. that's
1327 1.75 atatat * fine.
1328 1.75 atatat */
1329 1.75 atatat else if (addr != 0)
1330 1.75 atatat node.sysctl_data = (void*)addr;
1331 1.75 atatat
1332 1.75 atatat /*
1333 1.75 atatat * no data and no address? well...okay. we might be able to
1334 1.75 atatat * manage that.
1335 1.75 atatat */
1336 1.75 atatat else if (type != CTLTYPE_NODE) {
1337 1.75 atatat if (sz == 0) {
1338 1.92 atatat sysctlperror(
1339 1.92 atatat "%s: need a size or a starting value\n",
1340 1.92 atatat nname);
1341 1.151 christos EXIT(EXIT_FAILURE);
1342 1.75 atatat }
1343 1.83 atatat if (!(flags & CTLFLAG_IMMEDIATE))
1344 1.83 atatat flags |= CTLFLAG_OWNDATA;
1345 1.75 atatat }
1346 1.75 atatat
1347 1.75 atatat /*
1348 1.75 atatat * now we do a few sanity checks on the description we've
1349 1.75 atatat * assembled
1350 1.75 atatat */
1351 1.83 atatat if ((flags & CTLFLAG_IMMEDIATE) &&
1352 1.75 atatat (type == CTLTYPE_STRING || type == CTLTYPE_STRUCT)) {
1353 1.92 atatat sysctlperror("%s: cannot make an immediate %s\n",
1354 1.92 atatat nname,
1355 1.92 atatat (type == CTLTYPE_STRING) ? "string" : "struct");
1356 1.151 christos EXIT(EXIT_FAILURE);
1357 1.75 atatat }
1358 1.75 atatat if (type == CTLTYPE_NODE && node.sysctl_data != NULL) {
1359 1.92 atatat sysctlperror("%s: nodes do not have data\n", nname);
1360 1.151 christos EXIT(EXIT_FAILURE);
1361 1.75 atatat }
1362 1.75 atatat
1363 1.75 atatat /*
1364 1.75 atatat * some types must have a particular size
1365 1.75 atatat */
1366 1.75 atatat if (sz != 0) {
1367 1.75 atatat if ((type == CTLTYPE_INT && sz != sizeof(int)) ||
1368 1.131 mrg (type == CTLTYPE_BOOL && sz != sizeof(bool)) ||
1369 1.75 atatat (type == CTLTYPE_QUAD && sz != sizeof(u_quad_t)) ||
1370 1.75 atatat (type == CTLTYPE_NODE && sz != 0)) {
1371 1.92 atatat sysctlperror("%s: wrong size for type\n", nname);
1372 1.151 christos EXIT(EXIT_FAILURE);
1373 1.75 atatat }
1374 1.75 atatat }
1375 1.75 atatat else if (type == CTLTYPE_STRUCT) {
1376 1.92 atatat sysctlperror("%s: struct must have size\n", nname);
1377 1.151 christos EXIT(EXIT_FAILURE);
1378 1.75 atatat }
1379 1.75 atatat
1380 1.75 atatat /*
1381 1.75 atatat * now...if no one said anything yet, we default nodes or
1382 1.75 atatat * any type that owns data being writeable, and everything
1383 1.75 atatat * else being readonly.
1384 1.75 atatat */
1385 1.75 atatat if (rw == -1) {
1386 1.75 atatat if (type == CTLTYPE_NODE ||
1387 1.83 atatat (flags & (CTLFLAG_OWNDATA|CTLFLAG_IMMEDIATE)))
1388 1.83 atatat rw = CTLFLAG_READWRITE;
1389 1.75 atatat else
1390 1.83 atatat rw = CTLFLAG_READONLY;
1391 1.75 atatat }
1392 1.75 atatat
1393 1.75 atatat /*
1394 1.75 atatat * if a kernel address was specified, that can't be made
1395 1.75 atatat * writeable by us.
1396 1.83 atatat if (rw != CTLFLAG_READONLY && addr) {
1397 1.92 atatat sysctlperror("%s: kernel data can only be readable\n", nname);
1398 1.151 christos EXIT(EXIT_FAILURE);
1399 1.75 atatat }
1400 1.75 atatat */
1401 1.75 atatat
1402 1.75 atatat /*
1403 1.75 atatat * what separator were they using in the full name of the new
1404 1.75 atatat * node?
1405 1.75 atatat */
1406 1.75 atatat if ((t = strpbrk(nname, "./")) == NULL)
1407 1.75 atatat sep[0] = '.';
1408 1.75 atatat else
1409 1.75 atatat sep[0] = t[0];
1410 1.75 atatat sep[1] = '\0';
1411 1.75 atatat
1412 1.75 atatat /*
1413 1.75 atatat * put it all together, now. t'ain't much, is it?
1414 1.75 atatat */
1415 1.83 atatat node.sysctl_flags = SYSCTL_VERSION|flags|rw|type;
1416 1.75 atatat node.sysctl_size = sz;
1417 1.75 atatat t = strrchr(nname, sep[0]);
1418 1.75 atatat if (t != NULL)
1419 1.75 atatat strlcpy(node.sysctl_name, t + 1, sizeof(node.sysctl_name));
1420 1.75 atatat else
1421 1.75 atatat strlcpy(node.sysctl_name, nname, sizeof(node.sysctl_name));
1422 1.82 atatat if (t == nname)
1423 1.82 atatat t = NULL;
1424 1.75 atatat
1425 1.75 atatat /*
1426 1.75 atatat * if this is a new top-level node, then we don't need to find
1427 1.75 atatat * the mib for its parent
1428 1.75 atatat */
1429 1.75 atatat if (t == NULL) {
1430 1.75 atatat namelen = 0;
1431 1.75 atatat gsname[0] = '\0';
1432 1.75 atatat }
1433 1.75 atatat
1434 1.75 atatat /*
1435 1.75 atatat * on the other hand, if it's not a top-level node...
1436 1.75 atatat */
1437 1.75 atatat else {
1438 1.75 atatat namelen = sizeof(name) / sizeof(name[0]);
1439 1.75 atatat sz = sizeof(gsname);
1440 1.75 atatat *t = '\0';
1441 1.78 atatat rc = sysctlgetmibinfo(nname, &name[0], &namelen,
1442 1.83 atatat gsname, &sz, NULL, SYSCTL_VERSION);
1443 1.75 atatat *t = sep[0];
1444 1.75 atatat if (rc == -1) {
1445 1.92 atatat sysctlparseerror(namelen, nname);
1446 1.151 christos EXIT(EXIT_FAILURE);
1447 1.1 cgd }
1448 1.75 atatat }
1449 1.75 atatat
1450 1.75 atatat /*
1451 1.75 atatat * yes, a new node is being created
1452 1.75 atatat */
1453 1.75 atatat if (method != 0)
1454 1.75 atatat name[namelen++] = method;
1455 1.75 atatat else
1456 1.75 atatat name[namelen++] = CTL_CREATE;
1457 1.75 atatat
1458 1.75 atatat sz = sizeof(node);
1459 1.133 pooka rc = prog_sysctl(&name[0], namelen, &node, &sz, &node, sizeof(node));
1460 1.75 atatat
1461 1.75 atatat if (rc == -1) {
1462 1.92 atatat sysctlperror("%s: CTL_CREATE failed: %s\n",
1463 1.92 atatat nname, strerror(errno));
1464 1.151 christos EXIT(EXIT_FAILURE);
1465 1.75 atatat }
1466 1.100 atatat else {
1467 1.100 atatat if (!qflag && !nflag)
1468 1.100 atatat printf("%s(%s): (created)\n", nname, st(type));
1469 1.100 atatat stale = 1;
1470 1.100 atatat }
1471 1.75 atatat }
1472 1.75 atatat
1473 1.75 atatat static void
1474 1.82 atatat parse_destroy(char *l)
1475 1.75 atatat {
1476 1.75 atatat struct sysctlnode node;
1477 1.75 atatat size_t sz;
1478 1.75 atatat int name[CTL_MAXNAME], rc;
1479 1.75 atatat u_int namelen;
1480 1.75 atatat
1481 1.82 atatat if (!wflag) {
1482 1.92 atatat sysctlperror("Must specify -w to destroy nodes\n");
1483 1.151 christos exit(EXIT_FAILURE);
1484 1.82 atatat }
1485 1.82 atatat
1486 1.75 atatat memset(name, 0, sizeof(name));
1487 1.75 atatat namelen = sizeof(name) / sizeof(name[0]);
1488 1.75 atatat sz = sizeof(gsname);
1489 1.83 atatat rc = sysctlgetmibinfo(l, &name[0], &namelen, gsname, &sz, NULL,
1490 1.83 atatat SYSCTL_VERSION);
1491 1.75 atatat if (rc == -1) {
1492 1.92 atatat sysctlparseerror(namelen, l);
1493 1.151 christos EXIT(EXIT_FAILURE);
1494 1.75 atatat }
1495 1.75 atatat
1496 1.75 atatat memset(&node, 0, sizeof(node));
1497 1.83 atatat node.sysctl_flags = SYSCTL_VERSION;
1498 1.75 atatat node.sysctl_num = name[namelen - 1];
1499 1.75 atatat name[namelen - 1] = CTL_DESTROY;
1500 1.75 atatat
1501 1.75 atatat sz = sizeof(node);
1502 1.133 pooka rc = prog_sysctl(&name[0], namelen, &node, &sz, &node, sizeof(node));
1503 1.75 atatat
1504 1.75 atatat if (rc == -1) {
1505 1.92 atatat sysctlperror("%s: CTL_DESTROY failed: %s\n",
1506 1.92 atatat l, strerror(errno));
1507 1.151 christos EXIT(EXIT_FAILURE);
1508 1.75 atatat }
1509 1.100 atatat else {
1510 1.100 atatat if (!qflag && !nflag)
1511 1.100 atatat printf("%s(%s): (destroyed)\n", gsname,
1512 1.100 atatat st(SYSCTL_TYPE(node.sysctl_flags)));
1513 1.100 atatat stale = 1;
1514 1.100 atatat }
1515 1.75 atatat }
1516 1.75 atatat
1517 1.84 atatat static void
1518 1.84 atatat parse_describe(char *l)
1519 1.84 atatat {
1520 1.84 atatat struct sysctlnode newdesc;
1521 1.84 atatat char buf[1024], *value;
1522 1.84 atatat struct sysctldesc *d = (void*)&buf[0];
1523 1.84 atatat int name[CTL_MAXNAME], rc;
1524 1.84 atatat u_int namelen;
1525 1.84 atatat size_t sz;
1526 1.84 atatat
1527 1.84 atatat if (!wflag) {
1528 1.92 atatat sysctlperror("Must specify -w to set descriptions\n");
1529 1.151 christos exit(EXIT_FAILURE);
1530 1.84 atatat }
1531 1.84 atatat
1532 1.84 atatat value = strchr(l, '=');
1533 1.84 atatat *value++ = '\0';
1534 1.84 atatat
1535 1.84 atatat memset(name, 0, sizeof(name));
1536 1.84 atatat namelen = sizeof(name) / sizeof(name[0]);
1537 1.84 atatat sz = sizeof(gsname);
1538 1.84 atatat rc = sysctlgetmibinfo(l, &name[0], &namelen, gsname, &sz, NULL,
1539 1.84 atatat SYSCTL_VERSION);
1540 1.84 atatat if (rc == -1) {
1541 1.92 atatat sysctlparseerror(namelen, l);
1542 1.151 christos EXIT(EXIT_FAILURE);
1543 1.84 atatat }
1544 1.84 atatat
1545 1.84 atatat sz = sizeof(buf);
1546 1.84 atatat memset(&newdesc, 0, sizeof(newdesc));
1547 1.84 atatat newdesc.sysctl_flags = SYSCTL_VERSION|CTLFLAG_OWNDESC;
1548 1.84 atatat newdesc.sysctl_num = name[namelen - 1];
1549 1.84 atatat newdesc.sysctl_desc = value;
1550 1.84 atatat name[namelen - 1] = CTL_DESCRIBE;
1551 1.133 pooka rc = prog_sysctl(name, namelen, d, &sz, &newdesc, sizeof(newdesc));
1552 1.84 atatat if (rc == -1)
1553 1.92 atatat sysctlperror("%s: CTL_DESCRIBE failed: %s\n",
1554 1.92 atatat gsname, strerror(errno));
1555 1.84 atatat else if (d->descr_len == 1)
1556 1.92 atatat sysctlperror("%s: description not set\n", gsname);
1557 1.84 atatat else if (!qflag && !nflag)
1558 1.84 atatat printf("%s: %s\n", gsname, d->descr_str);
1559 1.84 atatat }
1560 1.84 atatat
1561 1.75 atatat /*
1562 1.75 atatat * ********************************************************************
1563 1.75 atatat * when things go wrong...
1564 1.75 atatat * ********************************************************************
1565 1.75 atatat */
1566 1.75 atatat static void
1567 1.75 atatat usage(void)
1568 1.75 atatat {
1569 1.75 atatat const char *progname = getprogname();
1570 1.1 cgd
1571 1.75 atatat (void)fprintf(stderr,
1572 1.77 jmmv "usage:\t%s %s\n"
1573 1.75 atatat "\t%s %s\n"
1574 1.75 atatat "\t%s %s\n"
1575 1.75 atatat "\t%s %s\n"
1576 1.75 atatat "\t%s %s\n"
1577 1.75 atatat "\t%s %s\n",
1578 1.135 christos progname, "[-dneq] [-x[x]|-r] variable ...",
1579 1.75 atatat progname, "[-ne] [-q] -w variable=value ...",
1580 1.87 atatat progname, "[-dne] -a",
1581 1.87 atatat progname, "[-dne] -A",
1582 1.75 atatat progname, "[-ne] -M",
1583 1.87 atatat progname, "[-dne] [-q] -f file");
1584 1.151 christos exit(EXIT_FAILURE);
1585 1.22 bouyer }
1586 1.22 bouyer
1587 1.84 atatat static void
1588 1.84 atatat getdesc1(int *name, u_int namelen, struct sysctlnode *pnode)
1589 1.84 atatat {
1590 1.84 atatat struct sysctlnode node;
1591 1.84 atatat char buf[1024], *desc;
1592 1.84 atatat struct sysctldesc *d = (void*)buf;
1593 1.84 atatat size_t sz = sizeof(buf);
1594 1.84 atatat int rc;
1595 1.84 atatat
1596 1.84 atatat memset(&node, 0, sizeof(node));
1597 1.84 atatat node.sysctl_flags = SYSCTL_VERSION;
1598 1.84 atatat node.sysctl_num = name[namelen - 1];
1599 1.84 atatat name[namelen - 1] = CTL_DESCRIBE;
1600 1.133 pooka rc = prog_sysctl(name, namelen, d, &sz, &node, sizeof(node));
1601 1.84 atatat
1602 1.84 atatat if (rc == -1 ||
1603 1.84 atatat d->descr_len == 1 ||
1604 1.84 atatat d->descr_num != pnode->sysctl_num ||
1605 1.84 atatat d->descr_ver != pnode->sysctl_ver)
1606 1.84 atatat desc = (char *)-1;
1607 1.84 atatat else
1608 1.84 atatat desc = malloc(d->descr_len);
1609 1.84 atatat
1610 1.84 atatat if (desc == NULL)
1611 1.84 atatat desc = (char *)-1;
1612 1.84 atatat if (desc != (char *)-1)
1613 1.89 atatat memcpy(desc, &d->descr_str[0], d->descr_len);
1614 1.84 atatat name[namelen - 1] = node.sysctl_num;
1615 1.84 atatat if (pnode->sysctl_desc != NULL &&
1616 1.84 atatat pnode->sysctl_desc != (const char *)-1)
1617 1.104 christos free(__UNCONST(pnode->sysctl_desc));
1618 1.84 atatat pnode->sysctl_desc = desc;
1619 1.84 atatat }
1620 1.84 atatat
1621 1.84 atatat static void
1622 1.84 atatat getdesc(int *name, u_int namelen, struct sysctlnode *pnode)
1623 1.84 atatat {
1624 1.84 atatat struct sysctlnode *node = pnode->sysctl_child;
1625 1.92 atatat struct sysctldesc *d, *p, *plim;
1626 1.84 atatat char *desc;
1627 1.152 martin size_t i, sz, child_cnt;
1628 1.128 lukem int rc;
1629 1.84 atatat
1630 1.84 atatat sz = 128 * pnode->sysctl_clen;
1631 1.84 atatat name[namelen] = CTL_DESCRIBE;
1632 1.84 atatat
1633 1.84 atatat /*
1634 1.84 atatat * attempt *twice* to get the description chunk. if two tries
1635 1.84 atatat * doesn't work, give up.
1636 1.84 atatat */
1637 1.84 atatat i = 0;
1638 1.84 atatat do {
1639 1.93 atatat d = malloc(sz);
1640 1.84 atatat if (d == NULL)
1641 1.84 atatat return;
1642 1.133 pooka rc = prog_sysctl(name, namelen + 1, d, &sz, NULL, 0);
1643 1.84 atatat if (rc == -1) {
1644 1.84 atatat free(d);
1645 1.84 atatat d = NULL;
1646 1.84 atatat if (i == 0 && errno == ENOMEM)
1647 1.84 atatat i = 1;
1648 1.84 atatat else
1649 1.84 atatat return;
1650 1.84 atatat }
1651 1.84 atatat } while (d == NULL);
1652 1.84 atatat
1653 1.84 atatat /*
1654 1.84 atatat * hokey nested loop here, giving O(n**2) behavior, but should
1655 1.84 atatat * suffice for now
1656 1.84 atatat */
1657 1.92 atatat plim = /*LINTED ptr cast*/(struct sysctldesc *)((char*)d + sz);
1658 1.152 martin child_cnt = (pnode->sysctl_flags & CTLTYPE_NODE) ? pnode->sysctl_clen
1659 1.152 martin : 0;
1660 1.152 martin for (i = 0; i < child_cnt; i++) {
1661 1.84 atatat node = &pnode->sysctl_child[i];
1662 1.92 atatat for (p = d; p < plim; p = NEXT_DESCR(p))
1663 1.84 atatat if (node->sysctl_num == p->descr_num)
1664 1.84 atatat break;
1665 1.99 atatat if (p < plim && node->sysctl_ver == p->descr_ver) {
1666 1.84 atatat /*
1667 1.84 atatat * match found, attempt to attach description
1668 1.84 atatat */
1669 1.84 atatat if (p->descr_len == 1)
1670 1.84 atatat desc = NULL;
1671 1.84 atatat else
1672 1.84 atatat desc = malloc(p->descr_len);
1673 1.84 atatat if (desc == NULL)
1674 1.84 atatat desc = (char *)-1;
1675 1.84 atatat else
1676 1.90 atatat memcpy(desc, &p->descr_str[0], p->descr_len);
1677 1.84 atatat node->sysctl_desc = desc;
1678 1.84 atatat }
1679 1.84 atatat }
1680 1.84 atatat
1681 1.84 atatat free(d);
1682 1.84 atatat }
1683 1.84 atatat
1684 1.92 atatat static void
1685 1.92 atatat trim_whitespace(char *s, int dir)
1686 1.92 atatat {
1687 1.92 atatat char *i, *o;
1688 1.92 atatat
1689 1.92 atatat i = o = s;
1690 1.92 atatat if (dir & 1)
1691 1.92 atatat while (isspace((unsigned char)*i))
1692 1.92 atatat i++;
1693 1.92 atatat while ((*o++ = *i++) != '\0');
1694 1.92 atatat o -= 2; /* already past nul, skip back to before it */
1695 1.92 atatat if (dir & 2)
1696 1.92 atatat while (o > s && isspace((unsigned char)*o))
1697 1.92 atatat *o-- = '\0';
1698 1.92 atatat }
1699 1.92 atatat
1700 1.75 atatat void
1701 1.75 atatat sysctlerror(int soft)
1702 1.75 atatat {
1703 1.75 atatat if (soft) {
1704 1.75 atatat switch (errno) {
1705 1.75 atatat case ENOENT:
1706 1.75 atatat case ENOPROTOOPT:
1707 1.75 atatat case ENOTDIR:
1708 1.97 atatat case EINVAL:
1709 1.75 atatat case EOPNOTSUPP:
1710 1.75 atatat case EPROTONOSUPPORT:
1711 1.75 atatat if (Aflag || req)
1712 1.154 christos sysctlperror("%s: the value is not available "
1713 1.154 christos "(%s)\n", gsname, strerror(errno));
1714 1.75 atatat return;
1715 1.22 bouyer }
1716 1.75 atatat }
1717 1.75 atatat
1718 1.140 christos if (Aflag || req)
1719 1.140 christos sysctlperror("%s: %s\n", gsname, strerror(errno));
1720 1.75 atatat if (!soft)
1721 1.151 christos EXIT(EXIT_FAILURE);
1722 1.92 atatat }
1723 1.92 atatat
1724 1.92 atatat void
1725 1.92 atatat sysctlparseerror(u_int namelen, const char *pname)
1726 1.92 atatat {
1727 1.92 atatat
1728 1.135 christos if (qflag) {
1729 1.135 christos errs++;
1730 1.135 christos return;
1731 1.135 christos }
1732 1.92 atatat sysctlperror("%s level name '%s' in '%s' is invalid\n",
1733 1.92 atatat lname[namelen], gsname, pname);
1734 1.92 atatat }
1735 1.92 atatat
1736 1.92 atatat static void
1737 1.92 atatat sysctlperror(const char *fmt, ...)
1738 1.92 atatat {
1739 1.92 atatat va_list ap;
1740 1.92 atatat
1741 1.92 atatat (void)fprintf(warnfp, "%s: ", getprogname());
1742 1.92 atatat if (fn)
1743 1.92 atatat (void)fprintf(warnfp, "%s#%zu: ", fn, nr);
1744 1.92 atatat va_start(ap, fmt);
1745 1.92 atatat (void)vfprintf(warnfp, fmt, ap);
1746 1.92 atatat va_end(ap);
1747 1.121 christos errs++;
1748 1.75 atatat }
1749 1.75 atatat
1750 1.92 atatat
1751 1.75 atatat /*
1752 1.75 atatat * ********************************************************************
1753 1.75 atatat * how to write to a "simple" node
1754 1.75 atatat * ********************************************************************
1755 1.75 atatat */
1756 1.75 atatat static void
1757 1.158 dholland write_number(int *name, u_int namelen, struct sysctlnode *node, char *value,
1758 1.158 dholland bool optional)
1759 1.75 atatat {
1760 1.110 christos u_int ii, io;
1761 1.75 atatat u_quad_t qi, qo;
1762 1.75 atatat size_t si, so;
1763 1.131 mrg bool bi, bo;
1764 1.75 atatat int rc;
1765 1.75 atatat void *i, *o;
1766 1.75 atatat char *t;
1767 1.75 atatat
1768 1.92 atatat if (fn)
1769 1.92 atatat trim_whitespace(value, 3);
1770 1.92 atatat
1771 1.75 atatat si = so = 0;
1772 1.75 atatat i = o = NULL;
1773 1.131 mrg bi = bo = false;
1774 1.75 atatat errno = 0;
1775 1.75 atatat qi = strtouq(value, &t, 0);
1776 1.110 christos if (qi == UQUAD_MAX && errno == ERANGE) {
1777 1.110 christos sysctlperror("%s: %s\n", value, strerror(errno));
1778 1.151 christos EXIT(EXIT_FAILURE);
1779 1.75 atatat }
1780 1.94 atatat if (t == value || *t != '\0') {
1781 1.92 atatat sysctlperror("%s: not a number\n", value);
1782 1.151 christos EXIT(EXIT_FAILURE);
1783 1.75 atatat }
1784 1.75 atatat
1785 1.75 atatat switch (SYSCTL_TYPE(node->sysctl_flags)) {
1786 1.110 christos case CTLTYPE_INT:
1787 1.110 christos ii = (u_int)qi;
1788 1.111 christos io = (u_int)(qi >> 32);
1789 1.111 christos if (io != (u_int)-1 && io != 0) {
1790 1.110 christos sysctlperror("%s: %s\n", value, strerror(ERANGE));
1791 1.151 christos EXIT(EXIT_FAILURE);
1792 1.75 atatat }
1793 1.75 atatat o = &io;
1794 1.75 atatat so = sizeof(io);
1795 1.75 atatat i = ⅈ
1796 1.75 atatat si = sizeof(ii);
1797 1.75 atatat break;
1798 1.131 mrg case CTLTYPE_BOOL:
1799 1.131 mrg bi = (bool)qi;
1800 1.131 mrg o = &bo;
1801 1.131 mrg so = sizeof(bo);
1802 1.131 mrg i = &bi;
1803 1.131 mrg si = sizeof(bi);
1804 1.131 mrg break;
1805 1.75 atatat case CTLTYPE_QUAD:
1806 1.75 atatat o = &qo;
1807 1.75 atatat so = sizeof(qo);
1808 1.75 atatat i = &qi;
1809 1.75 atatat si = sizeof(qi);
1810 1.75 atatat break;
1811 1.75 atatat }
1812 1.75 atatat
1813 1.133 pooka rc = prog_sysctl(name, namelen, o, &so, i, si);
1814 1.92 atatat if (rc == -1) {
1815 1.158 dholland if (!optional || errno != EPERM) {
1816 1.158 dholland sysctlerror(0);
1817 1.158 dholland }
1818 1.92 atatat return;
1819 1.92 atatat }
1820 1.75 atatat
1821 1.75 atatat switch (SYSCTL_TYPE(node->sysctl_flags)) {
1822 1.75 atatat case CTLTYPE_INT:
1823 1.75 atatat display_number(node, gsname, &io, sizeof(io), DISPLAY_OLD);
1824 1.75 atatat display_number(node, gsname, &ii, sizeof(ii), DISPLAY_NEW);
1825 1.75 atatat break;
1826 1.131 mrg case CTLTYPE_BOOL:
1827 1.131 mrg display_number(node, gsname, &bo, sizeof(bo), DISPLAY_OLD);
1828 1.131 mrg display_number(node, gsname, &bi, sizeof(bi), DISPLAY_NEW);
1829 1.131 mrg break;
1830 1.75 atatat case CTLTYPE_QUAD:
1831 1.75 atatat display_number(node, gsname, &qo, sizeof(qo), DISPLAY_OLD);
1832 1.75 atatat display_number(node, gsname, &qi, sizeof(qi), DISPLAY_NEW);
1833 1.75 atatat break;
1834 1.75 atatat }
1835 1.75 atatat }
1836 1.75 atatat
1837 1.75 atatat static void
1838 1.158 dholland write_string(int *name, u_int namelen, struct sysctlnode *node, char *value,
1839 1.158 dholland bool optional)
1840 1.75 atatat {
1841 1.75 atatat char *i, *o;
1842 1.75 atatat size_t si, so;
1843 1.75 atatat int rc;
1844 1.75 atatat
1845 1.75 atatat i = value;
1846 1.75 atatat si = strlen(i) + 1;
1847 1.75 atatat so = node->sysctl_size;
1848 1.75 atatat if (si > so && so != 0) {
1849 1.92 atatat sysctlperror("%s: string too long\n", value);
1850 1.151 christos EXIT(EXIT_FAILURE);
1851 1.75 atatat }
1852 1.75 atatat o = malloc(so);
1853 1.75 atatat if (o == NULL) {
1854 1.92 atatat sysctlperror("%s: !malloc failed!\n", gsname);
1855 1.151 christos exit(EXIT_FAILURE);
1856 1.75 atatat }
1857 1.75 atatat
1858 1.133 pooka rc = prog_sysctl(name, namelen, o, &so, i, si);
1859 1.92 atatat if (rc == -1) {
1860 1.158 dholland if (!optional || errno != EPERM) {
1861 1.158 dholland sysctlerror(0);
1862 1.158 dholland }
1863 1.158 dholland free(o);
1864 1.92 atatat return;
1865 1.92 atatat }
1866 1.75 atatat
1867 1.75 atatat display_string(node, gsname, o, so, DISPLAY_OLD);
1868 1.75 atatat display_string(node, gsname, i, si, DISPLAY_NEW);
1869 1.75 atatat free(o);
1870 1.75 atatat }
1871 1.75 atatat
1872 1.75 atatat /*
1873 1.75 atatat * ********************************************************************
1874 1.75 atatat * simple ways to print stuff consistently
1875 1.75 atatat * ********************************************************************
1876 1.75 atatat */
1877 1.75 atatat static void
1878 1.75 atatat display_number(const struct sysctlnode *node, const char *name,
1879 1.75 atatat const void *data, size_t sz, int n)
1880 1.75 atatat {
1881 1.75 atatat u_quad_t q;
1882 1.131 mrg bool b;
1883 1.75 atatat int i;
1884 1.75 atatat
1885 1.75 atatat if (qflag)
1886 1.75 atatat return;
1887 1.75 atatat if ((nflag || rflag) && (n == DISPLAY_OLD))
1888 1.75 atatat return;
1889 1.75 atatat
1890 1.75 atatat if (rflag && n != DISPLAY_OLD) {
1891 1.75 atatat fwrite(data, sz, 1, stdout);
1892 1.75 atatat return;
1893 1.75 atatat }
1894 1.75 atatat
1895 1.75 atatat if (!nflag) {
1896 1.75 atatat if (n == DISPLAY_VALUE)
1897 1.75 atatat printf("%s%s", name, eq);
1898 1.75 atatat else if (n == DISPLAY_OLD)
1899 1.75 atatat printf("%s: ", name);
1900 1.75 atatat }
1901 1.75 atatat
1902 1.75 atatat if (xflag > 1) {
1903 1.79 atatat if (n != DISPLAY_NEW)
1904 1.79 atatat printf("\n");
1905 1.75 atatat hex_dump(data, sz);
1906 1.22 bouyer return;
1907 1.75 atatat }
1908 1.22 bouyer
1909 1.75 atatat switch (SYSCTL_TYPE(node->sysctl_flags)) {
1910 1.75 atatat case CTLTYPE_INT:
1911 1.75 atatat memcpy(&i, data, sz);
1912 1.75 atatat if (xflag)
1913 1.75 atatat printf("0x%0*x", (int)sz * 2, i);
1914 1.83 atatat else if (node->sysctl_flags & CTLFLAG_HEX)
1915 1.75 atatat printf("%#x", i);
1916 1.143 dsl else if (node->sysctl_flags & CTLFLAG_UNSIGNED)
1917 1.143 dsl printf("%u", i);
1918 1.75 atatat else
1919 1.75 atatat printf("%d", i);
1920 1.75 atatat break;
1921 1.131 mrg case CTLTYPE_BOOL:
1922 1.131 mrg memcpy(&b, data, sz);
1923 1.131 mrg if (xflag)
1924 1.131 mrg printf("0x%0*x", (int)sz * 2, b);
1925 1.131 mrg else if (node->sysctl_flags & CTLFLAG_HEX)
1926 1.131 mrg printf("%#x", b);
1927 1.131 mrg else
1928 1.131 mrg printf("%d", b);
1929 1.131 mrg break;
1930 1.1 cgd case CTLTYPE_QUAD:
1931 1.75 atatat memcpy(&q, data, sz);
1932 1.75 atatat if (xflag)
1933 1.75 atatat printf("0x%0*" PRIx64, (int)sz * 2, q);
1934 1.83 atatat else if (node->sysctl_flags & CTLFLAG_HEX)
1935 1.75 atatat printf("%#" PRIx64, q);
1936 1.143 dsl else if (node->sysctl_flags & CTLFLAG_UNSIGNED)
1937 1.143 dsl printf("%" PRIu64, q);
1938 1.75 atatat else
1939 1.75 atatat printf("%" PRIu64, q);
1940 1.75 atatat break;
1941 1.75 atatat }
1942 1.75 atatat
1943 1.75 atatat if (n == DISPLAY_OLD)
1944 1.75 atatat printf(" -> ");
1945 1.75 atatat else
1946 1.75 atatat printf("\n");
1947 1.75 atatat }
1948 1.75 atatat
1949 1.75 atatat static void
1950 1.75 atatat display_string(const struct sysctlnode *node, const char *name,
1951 1.75 atatat const void *data, size_t sz, int n)
1952 1.75 atatat {
1953 1.75 atatat const unsigned char *buf = data;
1954 1.75 atatat int ni;
1955 1.75 atatat
1956 1.75 atatat if (qflag)
1957 1.75 atatat return;
1958 1.75 atatat if ((nflag || rflag) && (n == DISPLAY_OLD))
1959 1.75 atatat return;
1960 1.75 atatat
1961 1.75 atatat if (rflag && n != DISPLAY_OLD) {
1962 1.75 atatat fwrite(data, sz, 1, stdout);
1963 1.75 atatat return;
1964 1.75 atatat }
1965 1.75 atatat
1966 1.75 atatat if (!nflag) {
1967 1.75 atatat if (n == DISPLAY_VALUE)
1968 1.75 atatat printf("%s%s", name, eq);
1969 1.75 atatat else if (n == DISPLAY_OLD)
1970 1.75 atatat printf("%s: ", name);
1971 1.75 atatat }
1972 1.75 atatat
1973 1.75 atatat if (xflag > 1) {
1974 1.79 atatat if (n != DISPLAY_NEW)
1975 1.79 atatat printf("\n");
1976 1.75 atatat hex_dump(data, sz);
1977 1.75 atatat return;
1978 1.75 atatat }
1979 1.75 atatat
1980 1.83 atatat if (xflag || node->sysctl_flags & CTLFLAG_HEX) {
1981 1.75 atatat for (ni = 0; ni < (int)sz; ni++) {
1982 1.75 atatat if (xflag)
1983 1.75 atatat printf("%02x", buf[ni]);
1984 1.75 atatat if (buf[ni] == '\0')
1985 1.75 atatat break;
1986 1.75 atatat if (!xflag)
1987 1.75 atatat printf("\\x%2.2x", buf[ni]);
1988 1.1 cgd }
1989 1.75 atatat }
1990 1.75 atatat else
1991 1.75 atatat printf("%.*s", (int)sz, buf);
1992 1.75 atatat
1993 1.75 atatat if (n == DISPLAY_OLD)
1994 1.75 atatat printf(" -> ");
1995 1.75 atatat else
1996 1.75 atatat printf("\n");
1997 1.75 atatat }
1998 1.75 atatat
1999 1.75 atatat /*ARGSUSED*/
2000 1.75 atatat static void
2001 1.75 atatat display_struct(const struct sysctlnode *node, const char *name,
2002 1.75 atatat const void *data, size_t sz, int n)
2003 1.75 atatat {
2004 1.75 atatat const unsigned char *buf = data;
2005 1.75 atatat int ni;
2006 1.75 atatat size_t more;
2007 1.75 atatat
2008 1.75 atatat if (qflag)
2009 1.75 atatat return;
2010 1.75 atatat if (!(xflag || rflag)) {
2011 1.75 atatat if (Aflag || req)
2012 1.92 atatat sysctlperror(
2013 1.92 atatat "%s: this type is unknown to this program\n",
2014 1.92 atatat gsname);
2015 1.75 atatat return;
2016 1.75 atatat }
2017 1.75 atatat if ((nflag || rflag) && (n == DISPLAY_OLD))
2018 1.1 cgd return;
2019 1.1 cgd
2020 1.75 atatat if (rflag && n != DISPLAY_OLD) {
2021 1.75 atatat fwrite(data, sz, 1, stdout);
2022 1.1 cgd return;
2023 1.75 atatat }
2024 1.1 cgd
2025 1.75 atatat if (!nflag) {
2026 1.75 atatat if (n == DISPLAY_VALUE)
2027 1.75 atatat printf("%s%s", name, eq);
2028 1.75 atatat else if (n == DISPLAY_OLD)
2029 1.75 atatat printf("%s: ", name);
2030 1.75 atatat }
2031 1.75 atatat
2032 1.75 atatat if (xflag > 1) {
2033 1.79 atatat if (n != DISPLAY_NEW)
2034 1.79 atatat printf("\n");
2035 1.75 atatat hex_dump(data, sz);
2036 1.1 cgd return;
2037 1.1 cgd }
2038 1.75 atatat
2039 1.75 atatat if (sz > 16) {
2040 1.75 atatat more = sz - 16;
2041 1.75 atatat sz = 16;
2042 1.75 atatat }
2043 1.75 atatat else
2044 1.75 atatat more = 0;
2045 1.75 atatat for (ni = 0; ni < (int)sz; ni++)
2046 1.75 atatat printf("%02x", buf[ni]);
2047 1.75 atatat if (more)
2048 1.75 atatat printf("...(%zu more bytes)", more);
2049 1.75 atatat printf("\n");
2050 1.75 atatat }
2051 1.75 atatat
2052 1.75 atatat static void
2053 1.75 atatat hex_dump(const unsigned char *buf, size_t len)
2054 1.75 atatat {
2055 1.128 lukem unsigned int i;
2056 1.128 lukem int j;
2057 1.75 atatat char line[80], tmp[12];
2058 1.75 atatat
2059 1.75 atatat memset(line, ' ', sizeof(line));
2060 1.75 atatat for (i = 0, j = 15; i < len; i++) {
2061 1.75 atatat j = i % 16;
2062 1.75 atatat /* reset line */
2063 1.75 atatat if (j == 0) {
2064 1.75 atatat line[58] = '|';
2065 1.75 atatat line[77] = '|';
2066 1.75 atatat line[78] = 0;
2067 1.127 pgoyette snprintf(tmp, sizeof(tmp), "%07x", i);
2068 1.75 atatat memcpy(&line[0], tmp, 7);
2069 1.75 atatat }
2070 1.75 atatat /* copy out hex version of byte */
2071 1.75 atatat snprintf(tmp, sizeof(tmp), "%02x", buf[i]);
2072 1.75 atatat memcpy(&line[9 + j * 3], tmp, 2);
2073 1.75 atatat /* copy out plain version of byte */
2074 1.75 atatat line[60 + j] = (isprint(buf[i])) ? buf[i] : '.';
2075 1.75 atatat /* print a full line and erase it */
2076 1.75 atatat if (j == 15) {
2077 1.75 atatat printf("%s\n", line);
2078 1.75 atatat memset(line, ' ', sizeof(line));
2079 1.75 atatat }
2080 1.75 atatat }
2081 1.75 atatat if (line[0] != ' ')
2082 1.75 atatat printf("%s\n", line);
2083 1.75 atatat printf("%07zu bytes\n", len);
2084 1.1 cgd }
2085 1.1 cgd
2086 1.1 cgd /*
2087 1.75 atatat * ********************************************************************
2088 1.75 atatat * functions that handle particular nodes
2089 1.75 atatat * ********************************************************************
2090 1.1 cgd */
2091 1.75 atatat /*ARGSUSED*/
2092 1.14 christos static void
2093 1.75 atatat printother(HANDLER_ARGS)
2094 1.1 cgd {
2095 1.75 atatat int rc;
2096 1.75 atatat void *p;
2097 1.75 atatat size_t sz1, sz2;
2098 1.1 cgd
2099 1.75 atatat if (!(Aflag || req) || Mflag)
2100 1.1 cgd return;
2101 1.75 atatat
2102 1.75 atatat /*
2103 1.75 atatat * okay...you asked for it, so let's give it a go
2104 1.75 atatat */
2105 1.75 atatat while (type != CTLTYPE_NODE && (xflag || rflag)) {
2106 1.133 pooka rc = prog_sysctl(name, namelen, NULL, &sz1, NULL, 0);
2107 1.75 atatat if (rc == -1 || sz1 == 0)
2108 1.75 atatat break;
2109 1.75 atatat p = malloc(sz1);
2110 1.75 atatat if (p == NULL)
2111 1.75 atatat break;
2112 1.75 atatat sz2 = sz1;
2113 1.133 pooka rc = prog_sysctl(name, namelen, p, &sz2, NULL, 0);
2114 1.75 atatat if (rc == -1 || sz1 != sz2) {
2115 1.75 atatat free(p);
2116 1.75 atatat break;
2117 1.75 atatat }
2118 1.75 atatat display_struct(pnode, gsname, p, sz1, DISPLAY_VALUE);
2119 1.75 atatat free(p);
2120 1.75 atatat return;
2121 1.75 atatat }
2122 1.75 atatat
2123 1.75 atatat /*
2124 1.75 atatat * that didn't work...do we have a specific message for this
2125 1.75 atatat * thing?
2126 1.75 atatat */
2127 1.75 atatat if (v != NULL) {
2128 1.92 atatat sysctlperror("%s: use '%s' to view this information\n",
2129 1.92 atatat gsname, (const char *)v);
2130 1.75 atatat return;
2131 1.75 atatat }
2132 1.75 atatat
2133 1.75 atatat /*
2134 1.75 atatat * hmm...i wonder if we have any generic hints?
2135 1.75 atatat */
2136 1.75 atatat switch (name[0]) {
2137 1.75 atatat case CTL_NET:
2138 1.92 atatat sysctlperror("%s: use 'netstat' to view this information\n",
2139 1.92 atatat sname);
2140 1.75 atatat break;
2141 1.75 atatat case CTL_DEBUG:
2142 1.92 atatat sysctlperror("%s: missing 'options DEBUG' from kernel?\n",
2143 1.92 atatat sname);
2144 1.75 atatat break;
2145 1.75 atatat case CTL_DDB:
2146 1.92 atatat sysctlperror("%s: missing 'options DDB' from kernel?\n",
2147 1.92 atatat sname);
2148 1.75 atatat break;
2149 1.98 atatat case CTL_VENDOR:
2150 1.98 atatat sysctlperror("%s: no vendor extensions installed\n",
2151 1.98 atatat sname);
2152 1.98 atatat break;
2153 1.1 cgd }
2154 1.1 cgd }
2155 1.1 cgd
2156 1.75 atatat /*ARGSUSED*/
2157 1.75 atatat static void
2158 1.75 atatat kern_clockrate(HANDLER_ARGS)
2159 1.75 atatat {
2160 1.75 atatat struct clockinfo clkinfo;
2161 1.75 atatat size_t sz;
2162 1.75 atatat int rc;
2163 1.75 atatat
2164 1.75 atatat sz = sizeof(clkinfo);
2165 1.133 pooka rc = prog_sysctl(name, namelen, &clkinfo, &sz, NULL, 0);
2166 1.75 atatat if (rc == -1) {
2167 1.75 atatat sysctlerror(1);
2168 1.75 atatat return;
2169 1.75 atatat }
2170 1.75 atatat if (sz != sizeof(clkinfo))
2171 1.151 christos errx(EXIT_FAILURE, "%s: !returned size wrong!", sname);
2172 1.74 jonathan
2173 1.79 atatat if (xflag || rflag) {
2174 1.75 atatat display_struct(pnode, sname, &clkinfo, sz,
2175 1.75 atatat DISPLAY_VALUE);
2176 1.79 atatat return;
2177 1.79 atatat }
2178 1.75 atatat else if (!nflag)
2179 1.75 atatat printf("%s: ", sname);
2180 1.75 atatat printf("tick = %d, tickadj = %d, hz = %d, profhz = %d, stathz = %d\n",
2181 1.75 atatat clkinfo.tick, clkinfo.tickadj,
2182 1.75 atatat clkinfo.hz, clkinfo.profhz, clkinfo.stathz);
2183 1.75 atatat }
2184 1.1 cgd
2185 1.75 atatat /*ARGSUSED*/
2186 1.75 atatat static void
2187 1.75 atatat kern_boottime(HANDLER_ARGS)
2188 1.1 cgd {
2189 1.75 atatat struct timeval timeval;
2190 1.75 atatat time_t boottime;
2191 1.75 atatat size_t sz;
2192 1.75 atatat int rc;
2193 1.75 atatat
2194 1.75 atatat sz = sizeof(timeval);
2195 1.133 pooka rc = prog_sysctl(name, namelen, &timeval, &sz, NULL, 0);
2196 1.75 atatat if (rc == -1) {
2197 1.75 atatat sysctlerror(1);
2198 1.75 atatat return;
2199 1.75 atatat }
2200 1.75 atatat if (sz != sizeof(timeval))
2201 1.151 christos errx(EXIT_FAILURE, "%s: !returned size wrong!", sname);
2202 1.1 cgd
2203 1.75 atatat boottime = timeval.tv_sec;
2204 1.75 atatat if (xflag || rflag)
2205 1.75 atatat display_struct(pnode, sname, &timeval, sz,
2206 1.75 atatat DISPLAY_VALUE);
2207 1.75 atatat else if (!nflag)
2208 1.75 atatat /* ctime() provides the \n */
2209 1.75 atatat printf("%s%s%s", sname, eq, ctime(&boottime));
2210 1.75 atatat else if (nflag == 1)
2211 1.75 atatat printf("%ld\n", (long)boottime);
2212 1.75 atatat else
2213 1.75 atatat printf("%ld.%06ld\n", (long)timeval.tv_sec,
2214 1.75 atatat (long)timeval.tv_usec);
2215 1.75 atatat }
2216 1.20 itojun
2217 1.75 atatat /*ARGSUSED*/
2218 1.75 atatat static void
2219 1.75 atatat kern_consdev(HANDLER_ARGS)
2220 1.20 itojun {
2221 1.75 atatat dev_t cons;
2222 1.75 atatat size_t sz;
2223 1.75 atatat int rc;
2224 1.75 atatat
2225 1.75 atatat sz = sizeof(cons);
2226 1.133 pooka rc = prog_sysctl(name, namelen, &cons, &sz, NULL, 0);
2227 1.75 atatat if (rc == -1) {
2228 1.75 atatat sysctlerror(1);
2229 1.75 atatat return;
2230 1.75 atatat }
2231 1.75 atatat if (sz != sizeof(cons))
2232 1.151 christos errx(EXIT_FAILURE, "%s: !returned size wrong!", sname);
2233 1.20 itojun
2234 1.75 atatat if (xflag || rflag)
2235 1.75 atatat display_struct(pnode, sname, &cons, sz,
2236 1.75 atatat DISPLAY_VALUE);
2237 1.101 christos else {
2238 1.101 christos if (!nflag)
2239 1.101 christos printf("%s%s", sname, eq);
2240 1.102 christos if (nflag < 2 && (sname = devname(cons, S_IFCHR)) != NULL)
2241 1.102 christos printf("%s\n", sname);
2242 1.101 christos else
2243 1.125 christos printf("0x%llx\n", (unsigned long long)cons);
2244 1.101 christos }
2245 1.75 atatat }
2246 1.17 thorpej
2247 1.75 atatat /*ARGSUSED*/
2248 1.75 atatat static void
2249 1.75 atatat kern_cp_time(HANDLER_ARGS)
2250 1.17 thorpej {
2251 1.80 atatat u_int64_t *cp_time;
2252 1.80 atatat size_t sz, osz;
2253 1.80 atatat int rc, i, n;
2254 1.80 atatat char s[sizeof("kern.cp_time.nnnnnn")];
2255 1.80 atatat const char *tname;
2256 1.80 atatat
2257 1.80 atatat /*
2258 1.80 atatat * three things to do here.
2259 1.80 atatat * case 1: get sum (no Aflag and namelen == 2)
2260 1.80 atatat * case 2: get specific processor (namelen == 3)
2261 1.80 atatat * case 3: get all processors (Aflag and namelen == 2)
2262 1.80 atatat */
2263 1.80 atatat
2264 1.80 atatat if (namelen == 2 && Aflag) {
2265 1.80 atatat sz = sizeof(n);
2266 1.80 atatat rc = sysctlbyname("hw.ncpu", &n, &sz, NULL, 0);
2267 1.80 atatat if (rc != 0)
2268 1.80 atatat return; /* XXX print an error, eh? */
2269 1.81 atatat n++; /* Add on space for the sum. */
2270 1.80 atatat sz = n * sizeof(u_int64_t) * CPUSTATES;
2271 1.80 atatat }
2272 1.80 atatat else {
2273 1.81 atatat n = -1; /* Just print one data set. */
2274 1.80 atatat sz = sizeof(u_int64_t) * CPUSTATES;
2275 1.80 atatat }
2276 1.80 atatat
2277 1.80 atatat cp_time = malloc(sz);
2278 1.80 atatat if (cp_time == NULL) {
2279 1.80 atatat sysctlerror(1);
2280 1.80 atatat return;
2281 1.80 atatat }
2282 1.81 atatat
2283 1.80 atatat osz = sz;
2284 1.133 pooka rc = prog_sysctl(name, namelen, cp_time + (n != -1) * CPUSTATES, &osz,
2285 1.81 atatat NULL, 0);
2286 1.75 atatat
2287 1.75 atatat if (rc == -1) {
2288 1.75 atatat sysctlerror(1);
2289 1.80 atatat free(cp_time);
2290 1.75 atatat return;
2291 1.75 atatat }
2292 1.81 atatat
2293 1.81 atatat /*
2294 1.81 atatat * Check, but account for space we'll occupy with the sum.
2295 1.81 atatat */
2296 1.81 atatat if (osz != sz - (n != -1) * CPUSTATES * sizeof(u_int64_t))
2297 1.151 christos errx(EXIT_FAILURE, "%s: !returned size wrong!", sname);
2298 1.17 thorpej
2299 1.81 atatat /*
2300 1.81 atatat * Compute the actual sum. Two calls would be easier (we
2301 1.81 atatat * could just call ourselves recursively above), but the
2302 1.81 atatat * numbers wouldn't add up.
2303 1.81 atatat */
2304 1.81 atatat if (n != -1) {
2305 1.81 atatat memset(cp_time, 0, sizeof(u_int64_t) * CPUSTATES);
2306 1.81 atatat for (i = 1; i < n; i++) {
2307 1.81 atatat cp_time[CP_USER] += cp_time[i * CPUSTATES + CP_USER];
2308 1.81 atatat cp_time[CP_NICE] += cp_time[i * CPUSTATES + CP_NICE];
2309 1.81 atatat cp_time[CP_SYS] += cp_time[i * CPUSTATES + CP_SYS];
2310 1.81 atatat cp_time[CP_INTR] += cp_time[i * CPUSTATES + CP_INTR];
2311 1.81 atatat cp_time[CP_IDLE] += cp_time[i * CPUSTATES + CP_IDLE];
2312 1.81 atatat }
2313 1.81 atatat }
2314 1.81 atatat
2315 1.80 atatat tname = sname;
2316 1.80 atatat for (i = 0; n == -1 || i < n; i++) {
2317 1.81 atatat if (i > 0) {
2318 1.81 atatat (void)snprintf(s, sizeof(s), "%s%s%d", sname, sep,
2319 1.81 atatat i - 1);
2320 1.80 atatat tname = s;
2321 1.80 atatat }
2322 1.80 atatat if (xflag || rflag)
2323 1.80 atatat display_struct(pnode, tname, cp_time + (i * CPUSTATES),
2324 1.80 atatat sizeof(u_int64_t) * CPUSTATES,
2325 1.80 atatat DISPLAY_VALUE);
2326 1.80 atatat else {
2327 1.80 atatat if (!nflag)
2328 1.80 atatat printf("%s: ", tname);
2329 1.80 atatat printf("user = %" PRIu64
2330 1.80 atatat ", nice = %" PRIu64
2331 1.80 atatat ", sys = %" PRIu64
2332 1.80 atatat ", intr = %" PRIu64
2333 1.80 atatat ", idle = %" PRIu64
2334 1.80 atatat "\n",
2335 1.80 atatat cp_time[i * CPUSTATES + CP_USER],
2336 1.80 atatat cp_time[i * CPUSTATES + CP_NICE],
2337 1.80 atatat cp_time[i * CPUSTATES + CP_SYS],
2338 1.80 atatat cp_time[i * CPUSTATES + CP_INTR],
2339 1.80 atatat cp_time[i * CPUSTATES + CP_IDLE]);
2340 1.80 atatat }
2341 1.81 atatat /*
2342 1.81 atatat * Just printing the one node.
2343 1.81 atatat */
2344 1.80 atatat if (n == -1)
2345 1.80 atatat break;
2346 1.79 atatat }
2347 1.80 atatat
2348 1.80 atatat free(cp_time);
2349 1.17 thorpej }
2350 1.17 thorpej
2351 1.75 atatat /*ARGSUSED*/
2352 1.75 atatat static void
2353 1.118 christos kern_drivers(HANDLER_ARGS)
2354 1.118 christos {
2355 1.118 christos struct kinfo_drivers *kd;
2356 1.118 christos size_t sz, i;
2357 1.118 christos int rc;
2358 1.118 christos const char *comma;
2359 1.118 christos
2360 1.133 pooka rc = prog_sysctl(name, namelen, NULL, &sz, NULL, 0);
2361 1.118 christos if (rc == -1) {
2362 1.118 christos sysctlerror(1);
2363 1.118 christos return;
2364 1.118 christos }
2365 1.118 christos
2366 1.118 christos if (sz % sizeof(*kd))
2367 1.151 christos err(EXIT_FAILURE, "bad size %zu for kern.drivers", sz);
2368 1.118 christos
2369 1.118 christos kd = malloc(sz);
2370 1.118 christos if (kd == NULL) {
2371 1.118 christos sysctlerror(1);
2372 1.118 christos return;
2373 1.118 christos }
2374 1.118 christos
2375 1.133 pooka rc = prog_sysctl(name, namelen, kd, &sz, NULL, 0);
2376 1.118 christos if (rc == -1) {
2377 1.118 christos sysctlerror(1);
2378 1.149 msaitoh free(kd);
2379 1.118 christos return;
2380 1.118 christos }
2381 1.118 christos
2382 1.118 christos comma = "";
2383 1.119 christos if (!nflag)
2384 1.119 christos printf("%s%s", sname, eq);
2385 1.118 christos for (i = 0, sz /= sizeof(*kd); i < sz; i++) {
2386 1.118 christos (void)printf("%s[%d %d %s]", comma, kd[i].d_cmajor,
2387 1.118 christos kd[i].d_bmajor, kd[i].d_name);
2388 1.118 christos comma = ", ";
2389 1.118 christos }
2390 1.118 christos (void)printf("\n");
2391 1.118 christos free(kd);
2392 1.118 christos }
2393 1.118 christos
2394 1.118 christos /*ARGSUSED*/
2395 1.118 christos static void
2396 1.103 christos kern_cp_id(HANDLER_ARGS)
2397 1.103 christos {
2398 1.103 christos u_int64_t *cp_id;
2399 1.103 christos size_t sz, osz;
2400 1.103 christos int rc, i, n;
2401 1.103 christos char s[sizeof("kern.cp_id.nnnnnn")];
2402 1.103 christos const char *tname;
2403 1.103 christos struct sysctlnode node = *pnode;
2404 1.103 christos
2405 1.103 christos /*
2406 1.103 christos * three things to do here.
2407 1.103 christos * case 1: print a specific cpu id (namelen == 3)
2408 1.103 christos * case 2: print all cpu ids separately (Aflag set)
2409 1.103 christos * case 3: print all cpu ids on one line
2410 1.103 christos */
2411 1.103 christos
2412 1.103 christos if (namelen == 2) {
2413 1.103 christos sz = sizeof(n);
2414 1.103 christos rc = sysctlbyname("hw.ncpu", &n, &sz, NULL, 0);
2415 1.103 christos if (rc != 0)
2416 1.103 christos return; /* XXX print an error, eh? */
2417 1.103 christos sz = n * sizeof(u_int64_t);
2418 1.103 christos }
2419 1.103 christos else {
2420 1.103 christos n = -1; /* Just print one cpu id. */
2421 1.103 christos sz = sizeof(u_int64_t);
2422 1.103 christos }
2423 1.103 christos
2424 1.103 christos cp_id = malloc(sz);
2425 1.103 christos if (cp_id == NULL) {
2426 1.103 christos sysctlerror(1);
2427 1.103 christos return;
2428 1.103 christos }
2429 1.103 christos
2430 1.103 christos osz = sz;
2431 1.133 pooka rc = prog_sysctl(name, namelen, cp_id, &osz, NULL, 0);
2432 1.103 christos if (rc == -1) {
2433 1.103 christos sysctlerror(1);
2434 1.103 christos free(cp_id);
2435 1.103 christos return;
2436 1.103 christos }
2437 1.103 christos
2438 1.103 christos /*
2439 1.103 christos * Check that we got back what we asked for.
2440 1.103 christos */
2441 1.103 christos if (osz != sz)
2442 1.151 christos errx(EXIT_FAILURE, "%s: !returned size wrong!", sname);
2443 1.103 christos
2444 1.103 christos /* pretend for output purposes */
2445 1.103 christos node.sysctl_flags = SYSCTL_FLAGS(pnode->sysctl_flags) |
2446 1.103 christos SYSCTL_TYPE(CTLTYPE_QUAD);
2447 1.103 christos
2448 1.103 christos tname = sname;
2449 1.103 christos if (namelen == 3)
2450 1.103 christos display_number(&node, tname, cp_id,
2451 1.103 christos sizeof(u_int64_t),
2452 1.103 christos DISPLAY_VALUE);
2453 1.103 christos else if (Aflag) {
2454 1.103 christos for (i = 0; i < n; i++)
2455 1.103 christos (void)snprintf(s, sizeof(s), "%s%s%d", sname, sep, i);
2456 1.103 christos tname = s;
2457 1.103 christos display_number(&node, tname, &cp_id[i],
2458 1.103 christos sizeof(u_int64_t),
2459 1.103 christos DISPLAY_VALUE);
2460 1.103 christos }
2461 1.103 christos else {
2462 1.103 christos if (xflag || rflag)
2463 1.103 christos display_struct(pnode, tname, cp_id, sz, DISPLAY_VALUE);
2464 1.103 christos else {
2465 1.103 christos if (!nflag)
2466 1.103 christos printf("%s: ", tname);
2467 1.103 christos for (i = 0; i < n; i++) {
2468 1.103 christos if (i)
2469 1.103 christos printf(", ");
2470 1.103 christos printf("%d = %" PRIu64, i, cp_id[i]);
2471 1.103 christos }
2472 1.103 christos printf("\n");
2473 1.103 christos }
2474 1.103 christos }
2475 1.103 christos
2476 1.103 christos free(cp_id);
2477 1.103 christos }
2478 1.103 christos
2479 1.103 christos /*ARGSUSED*/
2480 1.103 christos static void
2481 1.75 atatat vm_loadavg(HANDLER_ARGS)
2482 1.22 bouyer {
2483 1.75 atatat struct loadavg loadavg;
2484 1.75 atatat size_t sz;
2485 1.75 atatat int rc;
2486 1.75 atatat
2487 1.75 atatat sz = sizeof(loadavg);
2488 1.133 pooka rc = prog_sysctl(name, namelen, &loadavg, &sz, NULL, 0);
2489 1.75 atatat if (rc == -1) {
2490 1.75 atatat sysctlerror(1);
2491 1.75 atatat return;
2492 1.75 atatat }
2493 1.75 atatat if (sz != sizeof(loadavg))
2494 1.151 christos errx(EXIT_FAILURE, "%s: !returned size wrong!", sname);
2495 1.75 atatat
2496 1.79 atatat if (xflag || rflag) {
2497 1.75 atatat display_struct(pnode, sname, &loadavg, sz,
2498 1.75 atatat DISPLAY_VALUE);
2499 1.79 atatat return;
2500 1.79 atatat }
2501 1.79 atatat if (!nflag)
2502 1.75 atatat printf("%s: ", sname);
2503 1.75 atatat printf("%.2f %.2f %.2f\n",
2504 1.75 atatat (double) loadavg.ldavg[0] / loadavg.fscale,
2505 1.75 atatat (double) loadavg.ldavg[1] / loadavg.fscale,
2506 1.75 atatat (double) loadavg.ldavg[2] / loadavg.fscale);
2507 1.1 cgd }
2508 1.1 cgd
2509 1.75 atatat /*ARGSUSED*/
2510 1.75 atatat static void
2511 1.75 atatat proc_limit(HANDLER_ARGS)
2512 1.1 cgd {
2513 1.75 atatat u_quad_t olim, *newp, nlim;
2514 1.75 atatat size_t osz, nsz;
2515 1.75 atatat char *t;
2516 1.75 atatat int rc;
2517 1.75 atatat
2518 1.92 atatat if (fn)
2519 1.92 atatat trim_whitespace(value, 3);
2520 1.92 atatat
2521 1.75 atatat osz = sizeof(olim);
2522 1.75 atatat if (value != NULL) {
2523 1.75 atatat nsz = sizeof(nlim);
2524 1.75 atatat newp = &nlim;
2525 1.75 atatat if (strcmp(value, "unlimited") == 0)
2526 1.75 atatat nlim = RLIM_INFINITY;
2527 1.75 atatat else {
2528 1.75 atatat errno = 0;
2529 1.75 atatat nlim = strtouq(value, &t, 0);
2530 1.94 atatat if (t == value || *t != '\0' || errno != 0) {
2531 1.92 atatat sysctlperror("%s: '%s' is not a valid limit\n",
2532 1.92 atatat sname, value);
2533 1.151 christos EXIT(EXIT_FAILURE);
2534 1.75 atatat }
2535 1.75 atatat }
2536 1.75 atatat }
2537 1.75 atatat else {
2538 1.75 atatat nsz = 0;
2539 1.75 atatat newp = NULL;
2540 1.75 atatat }
2541 1.75 atatat
2542 1.133 pooka rc = prog_sysctl(name, namelen, &olim, &osz, newp, nsz);
2543 1.75 atatat if (rc == -1) {
2544 1.75 atatat sysctlerror(newp == NULL);
2545 1.75 atatat return;
2546 1.75 atatat }
2547 1.75 atatat
2548 1.75 atatat if (newp && qflag)
2549 1.75 atatat return;
2550 1.75 atatat
2551 1.75 atatat if (rflag || xflag || olim != RLIM_INFINITY)
2552 1.75 atatat display_number(pnode, sname, &olim, sizeof(olim),
2553 1.75 atatat newp ? DISPLAY_OLD : DISPLAY_VALUE);
2554 1.75 atatat else
2555 1.75 atatat display_string(pnode, sname, "unlimited", 10,
2556 1.75 atatat newp ? DISPLAY_OLD : DISPLAY_VALUE);
2557 1.1 cgd
2558 1.75 atatat if (newp) {
2559 1.75 atatat if (rflag || xflag || nlim != RLIM_INFINITY)
2560 1.75 atatat display_number(pnode, sname, &nlim, sizeof(nlim),
2561 1.75 atatat DISPLAY_NEW);
2562 1.75 atatat else
2563 1.75 atatat display_string(pnode, sname, "unlimited", 10,
2564 1.75 atatat DISPLAY_NEW);
2565 1.1 cgd }
2566 1.1 cgd }
2567 1.1 cgd
2568 1.75 atatat #ifdef CPU_DISKINFO
2569 1.75 atatat /*ARGSUSED*/
2570 1.14 christos static void
2571 1.75 atatat machdep_diskinfo(HANDLER_ARGS)
2572 1.1 cgd {
2573 1.75 atatat struct disklist *dl;
2574 1.75 atatat struct biosdisk_info *bi;
2575 1.75 atatat struct nativedisk_info *ni;
2576 1.75 atatat int rc;
2577 1.75 atatat size_t sz;
2578 1.75 atatat uint i, b, lim;
2579 1.75 atatat
2580 1.133 pooka rc = prog_sysctl(name, namelen, NULL, &sz, NULL, 0);
2581 1.75 atatat if (rc == -1) {
2582 1.75 atatat sysctlerror(1);
2583 1.75 atatat return;
2584 1.75 atatat }
2585 1.75 atatat dl = malloc(sz);
2586 1.75 atatat if (dl == NULL) {
2587 1.75 atatat sysctlerror(1);
2588 1.75 atatat return;
2589 1.75 atatat }
2590 1.133 pooka rc = prog_sysctl(name, namelen, dl, &sz, NULL, 0);
2591 1.75 atatat if (rc == -1) {
2592 1.75 atatat sysctlerror(1);
2593 1.75 atatat return;
2594 1.75 atatat }
2595 1.45 cgd
2596 1.75 atatat if (!nflag)
2597 1.75 atatat printf("%s: ", sname);
2598 1.75 atatat lim = dl->dl_nbiosdisks;
2599 1.75 atatat if (lim > MAX_BIOSDISKS)
2600 1.75 atatat lim = MAX_BIOSDISKS;
2601 1.75 atatat for (bi = dl->dl_biosdisks, i = 0; i < lim; bi++, i++)
2602 1.75 atatat printf("%x:%" PRIu64 "(%d/%d/%d),%x ",
2603 1.75 atatat bi->bi_dev, bi->bi_lbasecs,
2604 1.75 atatat bi->bi_cyl, bi->bi_head, bi->bi_sec,
2605 1.75 atatat bi->bi_flags);
2606 1.75 atatat lim = dl->dl_nnativedisks;
2607 1.75 atatat ni = dl->dl_nativedisks;
2608 1.75 atatat bi = dl->dl_biosdisks;
2609 1.75 atatat /* LINTED -- pointer casts are tedious */
2610 1.75 atatat if ((char *)&ni[lim] != (char *)dl + sz) {
2611 1.92 atatat sysctlperror("%s: size mismatch\n", gsname);
2612 1.75 atatat return;
2613 1.75 atatat }
2614 1.75 atatat for (i = 0; i < lim; ni++, i++) {
2615 1.75 atatat char t = ':';
2616 1.75 atatat printf(" %.*s", (int)sizeof ni->ni_devname,
2617 1.75 atatat ni->ni_devname);
2618 1.128 lukem for (b = 0; b < (unsigned int)ni->ni_nmatches; t = ',', b++)
2619 1.75 atatat printf("%c%x", t,
2620 1.75 atatat bi[ni->ni_biosmatches[b]].bi_dev);
2621 1.75 atatat }
2622 1.75 atatat printf("\n");
2623 1.126 njoly free(dl);
2624 1.1 cgd }
2625 1.75 atatat #endif /* CPU_DISKINFO */
2626 1.108 elad
2627 1.108 elad /*ARGSUSED*/
2628 1.108 elad static void
2629 1.108 elad mode_bits(HANDLER_ARGS)
2630 1.108 elad {
2631 1.122 elad char buf[12], outbuf[100];
2632 1.108 elad int o, m, *newp, rc;
2633 1.108 elad size_t osz, nsz;
2634 1.108 elad mode_t om, mm;
2635 1.108 elad
2636 1.108 elad if (fn)
2637 1.108 elad trim_whitespace(value, 3);
2638 1.108 elad
2639 1.108 elad newp = NULL;
2640 1.108 elad osz = sizeof(o);
2641 1.108 elad if (value != NULL) {
2642 1.108 elad void *foo;
2643 1.108 elad int tt;
2644 1.108 elad size_t ttsz = sizeof(tt);
2645 1.108 elad mode_t old_umask;
2646 1.108 elad
2647 1.108 elad nsz = sizeof(m);
2648 1.108 elad newp = &m;
2649 1.108 elad errno = 0;
2650 1.133 pooka rc = prog_sysctl(name, namelen, &tt, &ttsz, NULL, 0);
2651 1.108 elad if (rc == -1) {
2652 1.108 elad sysctlperror("%s: failed query\n", sname);
2653 1.108 elad return;
2654 1.108 elad }
2655 1.108 elad
2656 1.108 elad old_umask = umask(0);
2657 1.108 elad foo = setmode(value);
2658 1.108 elad umask(old_umask);
2659 1.108 elad if (foo == NULL) {
2660 1.108 elad sysctlperror("%s: '%s' is an invalid mode\n", sname,
2661 1.108 elad value);
2662 1.151 christos EXIT(EXIT_FAILURE);
2663 1.108 elad }
2664 1.108 elad old_umask = umask(0);
2665 1.108 elad m = getmode(foo, (mode_t)tt);
2666 1.108 elad umask(old_umask);
2667 1.108 elad if (errno) {
2668 1.108 elad sysctlperror("%s: '%s' is an invalid mode\n", sname,
2669 1.108 elad value);
2670 1.151 christos EXIT(EXIT_FAILURE);
2671 1.108 elad }
2672 1.108 elad }
2673 1.108 elad else {
2674 1.108 elad nsz = 0;
2675 1.108 elad newp = NULL;
2676 1.108 elad }
2677 1.108 elad
2678 1.133 pooka rc = prog_sysctl(name, namelen, &o, &osz, newp, nsz);
2679 1.108 elad if (rc == -1) {
2680 1.108 elad sysctlerror(newp == NULL);
2681 1.108 elad return;
2682 1.108 elad }
2683 1.108 elad
2684 1.108 elad if (newp && qflag)
2685 1.108 elad return;
2686 1.108 elad
2687 1.108 elad om = (mode_t)o;
2688 1.108 elad mm = (mode_t)m;
2689 1.108 elad
2690 1.108 elad if (rflag || xflag)
2691 1.108 elad display_number(pnode, sname, &o, sizeof(o),
2692 1.108 elad newp ? DISPLAY_OLD : DISPLAY_VALUE);
2693 1.108 elad else {
2694 1.108 elad memset(buf, 0, sizeof(buf));
2695 1.108 elad strmode(om, buf);
2696 1.108 elad rc = snprintf(outbuf, sizeof(outbuf), "%04o (%s)", om, buf + 1);
2697 1.108 elad display_string(pnode, sname, outbuf, rc, newp ? DISPLAY_OLD : DISPLAY_VALUE);
2698 1.108 elad }
2699 1.108 elad
2700 1.108 elad if (newp) {
2701 1.108 elad if (rflag || xflag)
2702 1.108 elad display_number(pnode, sname, &m, sizeof(m),
2703 1.108 elad DISPLAY_NEW);
2704 1.108 elad else {
2705 1.108 elad memset(buf, 0, sizeof(buf));
2706 1.108 elad strmode(mm, buf);
2707 1.108 elad rc = snprintf(outbuf, sizeof(outbuf), "%04o (%s)", mm, buf + 1);
2708 1.108 elad display_string(pnode, sname, outbuf, rc, DISPLAY_NEW);
2709 1.108 elad }
2710 1.108 elad }
2711 1.108 elad }
2712 1.144 christos
2713 1.148 christos typedef __BITMAP_TYPE(, uint32_t, 0x10000) bitmap;
2714 1.148 christos
2715 1.144 christos static char *
2716 1.148 christos bitmask_print(const bitmap *o)
2717 1.144 christos {
2718 1.144 christos char *s, *os;
2719 1.144 christos
2720 1.144 christos s = os = NULL;
2721 1.146 christos for (size_t i = 0; i < MAXPORTS; i++)
2722 1.146 christos if (__BITMAP_ISSET(i, o)) {
2723 1.144 christos int rv;
2724 1.144 christos
2725 1.144 christos if (os)
2726 1.144 christos rv = asprintf(&s, "%s,%zu", os, i);
2727 1.144 christos else
2728 1.144 christos rv = asprintf(&s, "%zu", i);
2729 1.144 christos if (rv == -1)
2730 1.151 christos err(EXIT_FAILURE, "%s 1", __func__);
2731 1.144 christos free(os);
2732 1.144 christos os = s;
2733 1.144 christos }
2734 1.144 christos if (s == NULL && (s = strdup("")) == NULL)
2735 1.151 christos err(EXIT_FAILURE, "%s 2", __func__);
2736 1.144 christos return s;
2737 1.144 christos }
2738 1.144 christos
2739 1.144 christos static void
2740 1.148 christos bitmask_scan(const void *v, bitmap *o)
2741 1.144 christos {
2742 1.144 christos char *s = strdup(v);
2743 1.144 christos if (s == NULL)
2744 1.151 christos err(EXIT_FAILURE, "%s", __func__);
2745 1.147 christos
2746 1.148 christos __BITMAP_ZERO(o);
2747 1.144 christos for (s = strtok(s, ","); s; s = strtok(NULL, ",")) {
2748 1.144 christos char *e;
2749 1.144 christos errno = 0;
2750 1.144 christos unsigned long l = strtoul(s, &e, 0);
2751 1.144 christos if ((l == ULONG_MAX && errno == ERANGE) || s == e || *e)
2752 1.151 christos errx(EXIT_FAILURE, "Invalid port: %s", s);
2753 1.146 christos if (l >= MAXPORTS)
2754 1.151 christos errx(EXIT_FAILURE, "Port out of range: %s", s);
2755 1.146 christos __BITMAP_SET(l, o);
2756 1.144 christos }
2757 1.144 christos }
2758 1.144 christos
2759 1.144 christos
2760 1.144 christos static void
2761 1.144 christos reserve(HANDLER_ARGS)
2762 1.144 christos {
2763 1.144 christos int rc;
2764 1.144 christos size_t osz, nsz;
2765 1.148 christos bitmap o, n;
2766 1.144 christos
2767 1.144 christos if (fn)
2768 1.144 christos trim_whitespace(value, 3);
2769 1.144 christos
2770 1.144 christos osz = sizeof(o);
2771 1.144 christos if (value) {
2772 1.148 christos bitmask_scan(value, &n);
2773 1.148 christos value = (char *)&n;
2774 1.144 christos nsz = sizeof(n);
2775 1.144 christos } else
2776 1.144 christos nsz = 0;
2777 1.144 christos
2778 1.144 christos rc = prog_sysctl(name, namelen, &o, &osz, value, nsz);
2779 1.144 christos if (rc == -1) {
2780 1.144 christos sysctlerror(value == NULL);
2781 1.144 christos return;
2782 1.144 christos }
2783 1.144 christos
2784 1.144 christos if (value && qflag)
2785 1.144 christos return;
2786 1.144 christos
2787 1.144 christos if (rflag || xflag)
2788 1.148 christos display_struct(pnode, sname, &o, sizeof(o),
2789 1.144 christos value ? DISPLAY_OLD : DISPLAY_VALUE);
2790 1.144 christos else {
2791 1.148 christos char *s = bitmask_print(&o);
2792 1.144 christos display_string(pnode, sname, s, strlen(s),
2793 1.144 christos value ? DISPLAY_OLD : DISPLAY_VALUE);
2794 1.144 christos free(s);
2795 1.144 christos }
2796 1.144 christos
2797 1.144 christos if (value) {
2798 1.144 christos if (rflag || xflag)
2799 1.148 christos display_struct(pnode, sname, &n, sizeof(n),
2800 1.144 christos DISPLAY_NEW);
2801 1.144 christos else {
2802 1.148 christos char *s = bitmask_print(&n);
2803 1.144 christos display_string(pnode, sname, s, strlen(s), DISPLAY_NEW);
2804 1.144 christos free(s);
2805 1.144 christos }
2806 1.144 christos }
2807 1.144 christos }
2808