ef22dff8e6ee3e91ba7e1ae4b6146bd244c4b048
[dragonfly.git] / share / man / man9 / sysctl_add_oid.9
1 .\"
2 .\" Copyright (c) 2000, Andrzej Bialecki <abial@FreeBSD.org>
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. The name of the author may not be used to endorse or promote products
14 .\"    derived from this software without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\" $FreeBSD: src/share/man/man9/sysctl_add_oid.9,v 1.21 2006/04/28 10:45:27 rwatson Exp $
29 .\"
30 .Dd May 16, 2015
31 .Dt SYSCTL_ADD_OID 9
32 .Os
33 .Sh NAME
34 .Nm sysctl_add_oid ,
35 .Nm sysctl_remove_oid
36 .Nd runtime sysctl tree manipulation
37 .Sh SYNOPSIS
38 .In sys/sysctl.h
39 .Ft struct sysctl_oid *
40 .Fo sysctl_add_oid
41 .Fa "struct sysctl_ctx_list *ctx"
42 .Fa "struct sysctl_oid_list *parent"
43 .Fa "int number"
44 .Fa "const char *name"
45 .Fa "int kind"
46 .Fa "void *arg1"
47 .Fa "int arg2"
48 .Fa "int (*handler) (SYSCTL_HANDLER_ARGS)"
49 .Fa "const char *format"
50 .Fa "const char *descr"
51 .Fc
52 .Ft int
53 .Fo sysctl_remove_oid
54 .Fa "struct sysctl_oid *oidp"
55 .Fa "int del"
56 .Fa "int recurse"
57 .Fc
58 .Ft struct sysctl_oid_list *
59 .Fo SYSCTL_CHILDREN
60 .Fa "struct sysctl_oid *oidp"
61 .Fc
62 .Ft struct sysctl_oid_list *
63 .Fo SYSCTL_STATIC_CHILDREN
64 .Fa "struct sysctl_oid_list oid_name"
65 .Fc
66 .Ft struct sysctl_oid *
67 .Fo SYSCTL_ADD_OID
68 .Fa "struct sysctl_ctx_list *ctx"
69 .Fa "struct sysctl_oid_list *parent"
70 .Fa "int number"
71 .Fa "const char *name"
72 .Fa "int kind"
73 .Fa "void *arg1"
74 .Fa "int arg2"
75 .Fa "int (*handler) (SYSCTL_HANDLER_ARGS)"
76 .Fa "const char *format"
77 .Fa "const char *descr"
78 .Fc
79 .Ft struct sysctl_oid *
80 .Fo SYSCTL_ADD_NODE
81 .Fa "struct sysctl_ctx_list *ctx"
82 .Fa "struct sysctl_oid_list *parent"
83 .Fa "int number"
84 .Fa "const char *name"
85 .Fa "int access"
86 .Fa "int (*handler) (SYSCTL_HANDLER_ARGS)"
87 .Fa "const char *descr"
88 .Fc
89 .Ft struct sysctl_oid *
90 .Fo SYSCTL_ADD_STRING
91 .Fa "struct sysctl_ctx_list *ctx"
92 .Fa "struct sysctl_oid_list *parent"
93 .Fa "int number"
94 .Fa "const char *name"
95 .Fa "int access"
96 .Fa "char *arg"
97 .Fa "int len"
98 .Fa "const char *descr"
99 .Fc
100 .Ft struct sysctl_oid *
101 .Fo SYSCTL_ADD_INT
102 .Fa "struct sysctl_ctx_list *ctx"
103 .Fa "struct sysctl_oid_list *parent"
104 .Fa "int number"
105 .Fa "const char *name"
106 .Fa "int access"
107 .Fa "int *arg"
108 .Fa "int len"
109 .Fa "const char *descr"
110 .Fc
111 .Ft struct sysctl_oid *
112 .Fo SYSCTL_ADD_UINT
113 .Fa "struct sysctl_ctx_list *ctx"
114 .Fa "struct sysctl_oid_list *parent"
115 .Fa "int number"
116 .Fa "const char *name"
117 .Fa "int access"
118 .Fa "unsigned int *arg"
119 .Fa "int len"
120 .Fa "const char *descr"
121 .Fc
122 .Ft struct sysctl_oid *
123 .Fo SYSCTL_ADD_LONG
124 .Fa "struct sysctl_ctx_list *ctx"
125 .Fa "struct sysctl_oid_list *parent"
126 .Fa "int number"
127 .Fa "const char *name"
128 .Fa "int access"
129 .Fa "long *arg"
130 .Fa "const char *descr"
131 .Fc
132 .Ft struct sysctl_oid *
133 .Fo SYSCTL_ADD_ULONG
134 .Fa "struct sysctl_ctx_list *ctx"
135 .Fa "struct sysctl_oid_list *parent"
136 .Fa "int number"
137 .Fa "const char *name"
138 .Fa "int access"
139 .Fa "unsigned long *arg"
140 .Fa "const char *descr"
141 .Fc
142 .Ft struct sysctl_oid *
143 .Fo SYSCTL_ADD_QUAD
144 .Fa "struct sysctl_ctx_list *ctx"
145 .Fa "struct sysctl_oid_list *parent"
146 .Fa "int number"
147 .Fa "const char *name"
148 .Fa "int access"
149 .Fa "quad_t *arg"
150 .Fa "int len"
151 .Fa "const char *descr"
152 .Fc
153 .Ft struct sysctl_oid *
154 .Fo SYSCTL_ADD_UQUAD
155 .Fa "struct sysctl_ctx_list *ctx"
156 .Fa "struct sysctl_oid_list *parent"
157 .Fa "int number"
158 .Fa "const char *name"
159 .Fa "int access"
160 .Fa "u_quad_t *arg"
161 .Fa "int len"
162 .Fa "const char *descr"
163 .Fc
164 .Ft struct sysctl_oid *
165 .Fo SYSCTL_ADD_OPAQUE
166 .Fa "struct sysctl_ctx_list *ctx"
167 .Fa "struct sysctl_oid_list *parent"
168 .Fa "int number"
169 .Fa "const char *name"
170 .Fa "int access"
171 .Fa "void *arg"
172 .Fa "int len"
173 .Fa "const char *format"
174 .Fa "const char *descr"
175 .Fc
176 .Ft struct sysctl_oid *
177 .Fo SYSCTL_ADD_STRUCT
178 .Fa "struct sysctl_ctx_list *ctx"
179 .Fa "struct sysctl_oid_list *parent"
180 .Fa "int number"
181 .Fa "const char *name"
182 .Fa "int access"
183 .Fa "void *arg"
184 .Fa STRUCT_NAME
185 .Fa "const char *descr"
186 .Fc
187 .Ft struct sysctl_oid *
188 .Fo SYSCTL_ADD_PROC
189 .Fa "struct sysctl_ctx_list *ctx"
190 .Fa "struct sysctl_oid_list *parent"
191 .Fa "int number"
192 .Fa "const char *name"
193 .Fa "int access"
194 .Fa "void *arg1"
195 .Fa "int arg2"
196 .Fa "int (*handler) (SYSCTL_HANDLER_ARGS)"
197 .Fa "const char *format"
198 .Fa "const char *descr"
199 .Fc
200 .Sh DESCRIPTION
201 These functions and macros provide an interface
202 for creating and deleting sysctl oids at runtime
203 (e.g.\& during lifetime of a module).
204 The alternative method,
205 based on linker sets (see
206 .In sys/linker_set.h
207 and
208 .\" XXX Manual pages should avoid referencing source files
209 .Pa /sys/kern/kern_sysctl.c
210 for details), only allows creation and deletion
211 on module load and unload respectively.
212 .Pp
213 Dynamic oids of type
214 .Dv CTLTYPE_NODE
215 are reusable
216 so that several code sections can create and delete them,
217 but in reality they are allocated and freed
218 based on their reference count.
219 As a consequence,
220 it is possible for two or more code sections
221 to create partially overlapping trees that they both can use.
222 It is not possible to create overlapping leaves,
223 nor to create different child types with the same name and parent.
224 .Pp
225 Newly created oids are connected to their parent nodes.
226 In all these functions and macros
227 (with the exception of
228 .Fn sysctl_remove_oid ) ,
229 one of the required parameters is
230 .Fa parent ,
231 which points to the head of the parent's list of children.
232 .Pp
233 Most top level categories are created statically.
234 When connecting to existing static oids,
235 this pointer can be obtained with the
236 .Fn SYSCTL_STATIC_CHILDREN
237 macro, where the
238 .Fa OID_NAME
239 argument is name of the parent oid of type
240 .Dv CTLTYPE_NODE
241 (i.e., the name displayed by
242 .Xr sysctl 8 ,
243 preceded by underscore, and with all dots replaced with underscores).
244 .Pp
245 When connecting to an existing dynamic oid, this pointer
246 can be obtained with the
247 .Fn SYSCTL_CHILDREN
248 macro, where the
249 .Fa oidp
250 argument points to the parent oid of type
251 .Dv CTLTYPE_NODE .
252 .Pp
253 The
254 .Fn sysctl_add_oid
255 function creates raw oids of any type.
256 If the oid is successfully created,
257 the function returns a pointer to it;
258 otherwise it returns
259 .Dv NULL .
260 Many of the arguments for
261 .Fn sysctl_add_oid
262 are common to the macros.
263 The arguments are as follows:
264 .Bl -tag -width handler
265 .It Fa ctx
266 A pointer to an optional sysctl context, or
267 .Dv NULL .
268 See
269 .Xr sysctl_ctx_init 9
270 for details.
271 Programmers are strongly advised to use contexts
272 to organize the dynamic oids which they create,
273 unless special creation and deletion sequences are required.
274 If
275 .Fa ctx
276 is not
277 .Dv NULL ,
278 the newly created oid will be added to this context
279 as its first entry.
280 .It Fa parent
281 A pointer to a
282 .Li struct sysctl_oid_list ,
283 which is the head of the parent's list of children.
284 .It Fa number
285 The oid number that will be assigned to this oid.
286 In almost all cases this should be set to
287 .Dv OID_AUTO ,
288 which will result in the assignment of the next available oid number.
289 .It Fa name
290 The name of the oid.
291 The newly created oid will contain a copy of the name.
292 .It Fa kind
293 The kind of oid,
294 specified as a bit mask of the type and access values defined in the
295 .In sys/sysctl.h
296 header file.
297 Oids created dynamically always have the
298 .Dv CTLFLAG_DYN
299 flag set.
300 Access flags specify whether this oid is read-only or read-write,
301 and whether it may be modified by all users
302 or by the superuser only.
303 .It Fa arg1
304 A pointer to any data that the oid should reference, or
305 .Dv NULL .
306 .It Fa arg2
307 The size of
308 .Fa arg1 ,
309 or 0 if
310 .Fa arg1
311 is
312 .Dv NULL .
313 .It Fa handler
314 A pointer to the function
315 that is responsible for handling read and write requests
316 to this oid.
317 There are several standard handlers
318 that support operations on nodes,
319 integers, strings and opaque objects.
320 It is possible also to define new handlers using the
321 .Fn SYSCTL_ADD_PROC
322 macro.
323 .It Fa format
324 A pointer to a string
325 which specifies the format of the oid symbolically.
326 This format is used as a hint by
327 .Xr sysctl 8
328 to apply proper data formatting for display purposes.
329 Currently used format names are:
330 .Dq N
331 for node,
332 .Dq A
333 for
334 .Li "char *" ,
335 .Dq I
336 for
337 .Li "int" ,
338 .Dq IU
339 for
340 .Li "unsigned int" ,
341 .Dq IK
342 for temperature in tenths of kelvins,
343 .Dq L
344 for
345 .Li "long" ,
346 .Dq LU
347 for
348 .Li "unsigned long"
349 and
350 .Dq S,TYPE
351 for
352 .Li "struct TYPE"
353 structures.
354 .It Fa descr
355 A pointer to a textual description of the oid.
356 .El
357 .Pp
358 The
359 .Fn sysctl_remove_oid
360 function removes a dynamically created oid from the tree,
361 optionally freeing its resources.
362 It takes the following arguments:
363 .Bl -tag -width recurse
364 .It Fa oidp
365 A pointer to the dynamic oid to be removed.
366 If the oid is not dynamic, or the pointer is
367 .Dv NULL ,
368 the function returns
369 .Er EINVAL .
370 .It Fa del
371 If non-zero,
372 .Fn sysctl_remove_oid
373 will try to free the oid's resources
374 when the reference count of the oid becomes zero.
375 However, if
376 .Fa del
377 is set to 0,
378 the routine will only deregister the oid from the tree,
379 without freeing its resources.
380 This behaviour is useful when the caller expects to rollback
381 (possibly partially failed)
382 deletion of many oids later.
383 .It Fa recurse
384 If non-zero, attempt to remove the node and all its children.
385 If
386 .Fa recurse
387 is set to 0,
388 any attempt to remove a node that contains any children
389 will result in a
390 .Er ENOTEMPTY
391 error.
392 .Em WARNING : "use recursive deletion with extreme caution" !
393 Normally it should not be needed if contexts are used.
394 Contexts take care of tracking inter-dependencies
395 between users of the tree.
396 However, in some extreme cases it might be necessary
397 to remove part of the subtree no matter how it was created,
398 in order to free some other resources.
399 Be aware, though, that this may result in a system
400 .Xr panic 9
401 if other code sections continue to use removed subtrees.
402 .El
403 .Pp
404 .\" XXX sheldonh finished up to here
405 Again, in most cases the programmer should use contexts,
406 as described in
407 .Xr sysctl_ctx_init 9 ,
408 to keep track of created oids,
409 and to delete them later in orderly fashion.
410 .Pp
411 There is a set of macros defined
412 that helps to create oids of given type.
413 .Pp
414 They are as follows:
415 .Bl -tag -width SYSCTL_ADD_STRINGXX
416 .It Fn SYSCTL_ADD_OID
417 creates a raw oid.
418 This macro is functionally equivalent to the
419 .Fn sysctl_add_oid
420 function.
421 .It Fn SYSCTL_ADD_NODE
422 creates an oid of type
423 .Dv CTLTYPE_NODE ,
424 to which child oids may be added.
425 .It Fn SYSCTL_ADD_STRING
426 creates an oid that handles a zero-terminated character string.
427 .It Fn SYSCTL_ADD_INT
428 creates an oid that handles an
429 .Li int
430 variable.
431 .It Fn SYSCTL_ADD_UINT
432 creates an oid that handles an
433 .Li unsigned int
434 variable.
435 .It Fn SYSCTL_ADD_LONG
436 creates an oid that handles a
437 .Li long
438 variable.
439 .It Fn SYSCTL_ADD_ULONG
440 creates an oid that handles an
441 .Li unsigned long
442 variable.
443 .It Fn SYSCTL_ADD_QUAD
444 creates an oid that handles a 64-bit
445 .Li int
446 variable.
447 .It Fn SYSCTL_ADD_UQUAD
448 creates an oid that handles a 64-bit
449 .Li unsigned int
450 variable.
451 .It Fn SYSCTL_ADD_OPAQUE
452 creates an oid that handles any chunk of opaque data
453 of the size specified by the
454 .Fa len
455 argument,
456 which is a pointer to a
457 .Li "size_t *" .
458 .It Fn SYSCTL_ADD_STRUCT
459 creates an oid that handles a
460 .Li "struct TYPE"
461 structure.
462 The
463 .Fa format
464 parameter will be set to
465 .Dq S,TYPE
466 to provide proper hints to the
467 .Xr sysctl 8
468 utility.
469 .It Fn SYSCTL_ADD_PROC
470 creates an oid with the specified
471 .Fa handler
472 function.
473 The handler is responsible for handling read and write requests
474 to the oid.
475 This oid type is especially useful
476 if the kernel data is not easily accessible,
477 or needs to be processed before exporting.
478 .El
479 .Sh EXAMPLES
480 The following is an example of
481 how to create a new top-level category
482 and how to hook up another subtree to an existing static node.
483 This example does not use contexts,
484 which results in tedious management of all intermediate oids,
485 as they need to be freed later on:
486 .Bd -literal
487 #include <sys/sysctl.h>
488  ...
489 /* Need to preserve pointers to newly created subtrees, to be able
490  * to free them later.
491  */
492 struct sysctl_oid *root1, *root2, *oidp;
493 int a_int;
494 char *string = "dynamic sysctl";
495  ...
496
497 root1 = SYSCTL_ADD_NODE( NULL, SYSCTL_STATIC_CHILDREN(/* tree top */),
498         OID_AUTO, "newtree", CTLFLAG_RW, 0, "new top level tree");
499 oidp = SYSCTL_ADD_INT( NULL, SYSCTL_CHILDREN(root1),
500         OID_AUTO, "newint", CTLFLAG_RW, &a_int, 0, "new int leaf");
501  ...
502 root2 = SYSCTL_ADD_NODE( NULL, SYSCTL_STATIC_CHILDREN(_debug),
503         OID_AUTO, "newtree", CTLFLAG_RW, 0, "new tree under debug");
504 oidp = SYSCTL_ADD_STRING( NULL, SYSCTL_CHILDREN(root2),
505         OID_AUTO, "newstring", CTLFLAG_RD, string, 0, "new string leaf");
506 .Ed
507 .Pp
508 This example creates the following subtrees:
509 .Bd -literal -offset indent
510 debug.newtree.newstring
511 newtree.newint
512 .Ed
513 .Pp
514 .Em "Care should be taken to free all oids once they are no longer needed!"
515 .Sh SEE ALSO
516 .Xr sysctl 8 ,
517 .Xr sysctl 9 ,
518 .Xr sysctl_ctx_free 9 ,
519 .Xr sysctl_ctx_init 9
520 .Sh HISTORY
521 These functions first appeared in
522 .Fx 4.2 .
523 .Sh AUTHORS
524 .An Andrzej Bialecki Aq Mt abial@FreeBSD.org
525 .Sh BUGS
526 Sharing nodes between many code sections
527 causes interdependencies that sometimes may lock the resources.
528 For example,
529 if module A hooks up a subtree to an oid created by module B,
530 module B will be unable to delete that oid.
531 These issues are handled properly by sysctl contexts.
532 .Pp
533 Many operations on the tree involve traversing linked lists.
534 For this reason, oid creation and removal is relatively costly.