xref: /freebsd/share/man/man9/osd.9 (revision 4a26b63145a5e18610aa9050262e3b4f75aa7117)
14a2b56ebSLawrence Stewart.\"
24a2b56ebSLawrence Stewart.\" Copyright (c) 2010 Lawrence Stewart <lstewart@FreeBSD.org>
34a2b56ebSLawrence Stewart.\" All rights reserved.
44a2b56ebSLawrence Stewart.\"
54a2b56ebSLawrence Stewart.\" Redistribution and use in source and binary forms, with or without
64a2b56ebSLawrence Stewart.\" modification, are permitted provided that the following conditions
74a2b56ebSLawrence Stewart.\" are met:
84a2b56ebSLawrence Stewart.\" 1. Redistributions of source code must retain the above copyright
94a2b56ebSLawrence Stewart.\"    notice, this list of conditions, and the following disclaimer,
104a2b56ebSLawrence Stewart.\"    without modification, immediately at the beginning of the file.
114a2b56ebSLawrence Stewart.\" 2. The name of the author may not be used to endorse or promote products
124a2b56ebSLawrence Stewart.\"    derived from this software without specific prior written permission.
134a2b56ebSLawrence Stewart.\"
144a2b56ebSLawrence Stewart.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
154a2b56ebSLawrence Stewart.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
164a2b56ebSLawrence Stewart.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
174a2b56ebSLawrence Stewart.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
184a2b56ebSLawrence Stewart.\" ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
194a2b56ebSLawrence Stewart.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
204a2b56ebSLawrence Stewart.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
214a2b56ebSLawrence Stewart.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
224a2b56ebSLawrence Stewart.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
234a2b56ebSLawrence Stewart.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
244a2b56ebSLawrence Stewart.\" SUCH DAMAGE.
254a2b56ebSLawrence Stewart.\"
26*4a26b631SOlivier Certner.Dd October 07, 2024
274a2b56ebSLawrence Stewart.Dt OSD 9
284a2b56ebSLawrence Stewart.Os
294a2b56ebSLawrence Stewart.Sh NAME
304a2b56ebSLawrence Stewart.Nm osd ,
314a2b56ebSLawrence Stewart.Nm osd_register ,
324a2b56ebSLawrence Stewart.Nm osd_deregister ,
334a2b56ebSLawrence Stewart.Nm osd_set ,
34320d8421SJamie Gritton.Nm osd_reserve ,
35320d8421SJamie Gritton.Nm osd_set_reserved ,
36320d8421SJamie Gritton.Nm osd_free_reserved ,
374a2b56ebSLawrence Stewart.Nm osd_get ,
384a2b56ebSLawrence Stewart.Nm osd_del ,
394a2b56ebSLawrence Stewart.Nm osd_call ,
404a2b56ebSLawrence Stewart.Nm osd_exit
414a2b56ebSLawrence Stewart.Nd Object Specific Data
424a2b56ebSLawrence Stewart.Sh SYNOPSIS
434a2b56ebSLawrence Stewart.In sys/osd.h
444a2b56ebSLawrence Stewart.Ft typedef void
454a2b56ebSLawrence Stewart.Fn "\*(lp*osd_destructor_t\*(rp" "void *value"
464a2b56ebSLawrence Stewart.Ft typedef int
474a2b56ebSLawrence Stewart.Fn "\*(lp*osd_method_t\*(rp" "void *obj" "void *data"
484a2b56ebSLawrence Stewart.Ft int
494a2b56ebSLawrence Stewart.Fo osd_register
504a2b56ebSLawrence Stewart.Fa "u_int type"
514a2b56ebSLawrence Stewart.Fa "osd_destructor_t destructor"
52*4a26b631SOlivier Certner.Fa "const osd_method_t *methods"
534a2b56ebSLawrence Stewart.Fc
544a2b56ebSLawrence Stewart.Ft void
554a2b56ebSLawrence Stewart.Fo osd_deregister
564a2b56ebSLawrence Stewart.Fa "u_int type"
574a2b56ebSLawrence Stewart.Fa "u_int slot"
584a2b56ebSLawrence Stewart.Fc
594a2b56ebSLawrence Stewart.Ft int
604a2b56ebSLawrence Stewart.Fo osd_set
614a2b56ebSLawrence Stewart.Fa "u_int type"
624a2b56ebSLawrence Stewart.Fa "struct osd *osd"
634a2b56ebSLawrence Stewart.Fa "u_int slot"
644a2b56ebSLawrence Stewart.Fa "void *value"
654a2b56ebSLawrence Stewart.Fc
66aa90aec2SConrad Meyer.Ft void **
67320d8421SJamie Gritton.Fo osd_reserve
68320d8421SJamie Gritton.Fa "u_int slot"
69320d8421SJamie Gritton.Fc
70320d8421SJamie Gritton.Ft int
71320d8421SJamie Gritton.Fo osd_set_reserved
72320d8421SJamie Gritton.Fa "u_int type"
73320d8421SJamie Gritton.Fa "struct osd *osd"
74320d8421SJamie Gritton.Fa "u_int slot"
75aa90aec2SConrad Meyer.Fa "void **rsv"
76320d8421SJamie Gritton.Fa "void *value"
77320d8421SJamie Gritton.Fc
78320d8421SJamie Gritton.Ft void
79320d8421SJamie Gritton.Fo osd_free_reserved
80aa90aec2SConrad Meyer.Fa "void **rsv"
81320d8421SJamie Gritton.Fc
82320d8421SJamie Gritton.Ft void *
834a2b56ebSLawrence Stewart.Fo osd_get
844a2b56ebSLawrence Stewart.Fa "u_int type"
854a2b56ebSLawrence Stewart.Fa "struct osd *osd"
864a2b56ebSLawrence Stewart.Fa "u_int slot"
874a2b56ebSLawrence Stewart.Fc
884a2b56ebSLawrence Stewart.Ft void
894a2b56ebSLawrence Stewart.Fo osd_del
904a2b56ebSLawrence Stewart.Fa "u_int type"
914a2b56ebSLawrence Stewart.Fa "struct osd *osd"
924a2b56ebSLawrence Stewart.Fa "u_int slot"
934a2b56ebSLawrence Stewart.Fc
944a2b56ebSLawrence Stewart.Ft int
954a2b56ebSLawrence Stewart.Fo osd_call
964a2b56ebSLawrence Stewart.Fa "u_int type"
974a2b56ebSLawrence Stewart.Fa "u_int method"
984a2b56ebSLawrence Stewart.Fa "void *obj"
994a2b56ebSLawrence Stewart.Fa "void *data"
1004a2b56ebSLawrence Stewart.Fc
1014a2b56ebSLawrence Stewart.Ft void
1024a2b56ebSLawrence Stewart.Fo osd_exit
1034a2b56ebSLawrence Stewart.Fa "u_int type"
1044a2b56ebSLawrence Stewart.Fa "struct osd *osd"
1054a2b56ebSLawrence Stewart.Fc
1064a2b56ebSLawrence Stewart.Sh DESCRIPTION
1074a2b56ebSLawrence StewartThe
1084a2b56ebSLawrence Stewart.Nm
1094a2b56ebSLawrence Stewartframework provides a mechanism to dynamically associate arbitrary data at
1104a2b56ebSLawrence Stewartrun-time with any kernel data structure which has been suitably modified for use
1114a2b56ebSLawrence Stewartwith
1124a2b56ebSLawrence Stewart.Nm .
1134a2b56ebSLawrence StewartThe one-off modification required involves embedding a
1144a2b56ebSLawrence Stewart.Vt "struct osd"
1154a2b56ebSLawrence Stewartinside the kernel data structure.
1164a2b56ebSLawrence Stewart.Pp
1174a2b56ebSLawrence StewartAn additional benefit is that after the initial change to a structure is made,
1184a2b56ebSLawrence Stewartall subsequent use of
1194a2b56ebSLawrence Stewart.Nm
1204a2b56ebSLawrence Stewartwith the structure involves no changes to the structure's layout.
1214a2b56ebSLawrence StewartBy extension, if the data structure is part of the ABI,
1224a2b56ebSLawrence Stewart.Nm
1234a2b56ebSLawrence Stewartprovides a way of extending the structure in an ABI preserving manner.
1244a2b56ebSLawrence Stewart.Pp
1254a2b56ebSLawrence StewartThe details of the embedded
1264a2b56ebSLawrence Stewart.Vt "struct osd"
1274a2b56ebSLawrence Stewartare not relevant to consumers of the
1284a2b56ebSLawrence Stewart.Nm
1294a2b56ebSLawrence Stewartframework and should not be manipulated directly.
1304a2b56ebSLawrence Stewart.Pp
1314a2b56ebSLawrence StewartData associated with a structure is referenced by the
1324a2b56ebSLawrence Stewart.Nm
1334a2b56ebSLawrence Stewartframework using a type/slot identifier pair.
1344a2b56ebSLawrence StewartTypes are statically defined in
1354a2b56ebSLawrence Stewart.In sys/osd.h
1364a2b56ebSLawrence Stewartand provide a high-level grouping for slots to be registered under.
1374a2b56ebSLawrence StewartSlot identifiers are dynamically assigned by the framework when a data type is
1384a2b56ebSLawrence Stewartregistered using
1394a2b56ebSLawrence Stewart.Fn osd_register
1404a2b56ebSLawrence Stewartand remains valid until a corresponding call to
1414a2b56ebSLawrence Stewart.Fn osd_deregister .
1424a2b56ebSLawrence Stewart.Ss Functions
1434a2b56ebSLawrence StewartThe
1444a2b56ebSLawrence Stewart.Fn osd_register
1454a2b56ebSLawrence Stewartfunction registers a type/slot identifier pair with the
1464a2b56ebSLawrence Stewart.Nm
1474a2b56ebSLawrence Stewartframework for use with a new data type.
1484a2b56ebSLawrence StewartThe function may sleep and therefore cannot be called from a non-sleepable
1494a2b56ebSLawrence Stewartcontext.
1504a2b56ebSLawrence StewartThe
1514a2b56ebSLawrence Stewart.Fa type
1524a2b56ebSLawrence Stewartargument specifies which high-level type grouping from
1534a2b56ebSLawrence Stewart.In sys/osd.h
1544a2b56ebSLawrence Stewartthe slot identifier should be allocated under.
1554a2b56ebSLawrence StewartThe
1564a2b56ebSLawrence Stewart.Fa destructor
1574a2b56ebSLawrence Stewartargument specifies an optional osd_destructor_t function pointer that will be
1584a2b56ebSLawrence Stewartcalled for objects of the type being registered which are later destroyed by the
1594a2b56ebSLawrence Stewart.Fn osd_del
1604a2b56ebSLawrence Stewartfunction.
1614a2b56ebSLawrence StewartNULL may be passed if no destructor is required.
1624a2b56ebSLawrence StewartThe
1634a2b56ebSLawrence Stewart.Fa methods
1644a2b56ebSLawrence Stewartargument specifies an optional array of osd_method_t function pointers which
1654a2b56ebSLawrence Stewartcan be later invoked by the
1664a2b56ebSLawrence Stewart.Fn osd_call
1674a2b56ebSLawrence Stewartfunction.
1684a2b56ebSLawrence StewartNULL may be passed if no methods are required.
1694a2b56ebSLawrence StewartThe
1704a2b56ebSLawrence Stewart.Fa methods
1714a2b56ebSLawrence Stewartargument is currently only useful with the OSD_JAIL type identifier.
1724a2b56ebSLawrence Stewart.Pp
1734a2b56ebSLawrence StewartThe
1744a2b56ebSLawrence Stewart.Fn osd_deregister
1754a2b56ebSLawrence Stewartfunction deregisters a previously registered type/slot identifier pair.
1764a2b56ebSLawrence StewartThe function may sleep and therefore cannot be called from a non-sleepable
1774a2b56ebSLawrence Stewartcontext.
1784a2b56ebSLawrence StewartThe
1794a2b56ebSLawrence Stewart.Fa type
1804a2b56ebSLawrence Stewartargument specifies which high-level type grouping from
1814a2b56ebSLawrence Stewart.In sys/osd.h
1824a2b56ebSLawrence Stewartthe slot identifier is allocated under.
1834a2b56ebSLawrence StewartThe
1844a2b56ebSLawrence Stewart.Fa slot
1854a2b56ebSLawrence Stewartargument specifies the slot identifier which is being deregistered and should be
1864a2b56ebSLawrence Stewartthe value that was returned by
1874a2b56ebSLawrence Stewart.Fn osd_register
1884a2b56ebSLawrence Stewartwhen the data type was registered.
1894a2b56ebSLawrence Stewart.Pp
1904a2b56ebSLawrence StewartThe
1914a2b56ebSLawrence Stewart.Fn osd_set
1924a2b56ebSLawrence Stewartfunction associates a data object pointer with a kernel data structure's
1934a2b56ebSLawrence Stewart.Vt struct osd
1944a2b56ebSLawrence Stewartmember.
1954a2b56ebSLawrence StewartThe
1964a2b56ebSLawrence Stewart.Fa type
1974a2b56ebSLawrence Stewartargument specifies which high-level type grouping from
1984a2b56ebSLawrence Stewart.In sys/osd.h
1994a2b56ebSLawrence Stewartthe slot identifier is allocated under.
2004a2b56ebSLawrence StewartThe
2014a2b56ebSLawrence Stewart.Fa osd
2024a2b56ebSLawrence Stewartargument is a pointer to the kernel data structure's
2034a2b56ebSLawrence Stewart.Vt struct osd
2044a2b56ebSLawrence Stewartwhich will have the
2054a2b56ebSLawrence Stewart.Fa value
2064a2b56ebSLawrence Stewartpointer associated with it.
2074a2b56ebSLawrence StewartThe
2084a2b56ebSLawrence Stewart.Fa slot
2094a2b56ebSLawrence Stewartargument specifies the slot identifier to assign the
2104a2b56ebSLawrence Stewart.Fa value
2114a2b56ebSLawrence Stewartpointer to.
2124a2b56ebSLawrence StewartThe
2134a2b56ebSLawrence Stewart.Fa value
2144a2b56ebSLawrence Stewartargument points to a data object to associate with
2154a2b56ebSLawrence Stewart.Fa osd .
2164a2b56ebSLawrence Stewart.Pp
2174a2b56ebSLawrence StewartThe
218320d8421SJamie Gritton.Fn osd_set_reserved
219320d8421SJamie Grittonfunction does the same as
220320d8421SJamie Gritton.Fn osd_set ,
221320d8421SJamie Grittonbut with an extra argument
222320d8421SJamie Gritton.Fa rsv
223320d8421SJamie Grittonthat is internal-use memory previously allocated via
224320d8421SJamie Gritton.Fn osd_reserve .
225320d8421SJamie Gritton.Pp
226320d8421SJamie GrittonThe
2274a2b56ebSLawrence Stewart.Fn osd_get
2284a2b56ebSLawrence Stewartfunction returns the data pointer associated with a kernel data structure's
2294a2b56ebSLawrence Stewart.Vt struct osd
2304a2b56ebSLawrence Stewartmember from the specified type/slot identifier pair.
2314a2b56ebSLawrence StewartThe
2324a2b56ebSLawrence Stewart.Fa type
2334a2b56ebSLawrence Stewartargument specifies which high-level type grouping from
2344a2b56ebSLawrence Stewart.In sys/osd.h
2354a2b56ebSLawrence Stewartthe slot identifier is allocated under.
2364a2b56ebSLawrence StewartThe
2374a2b56ebSLawrence Stewart.Fa osd
2384a2b56ebSLawrence Stewartargument is a pointer to the kernel data structure's
2394a2b56ebSLawrence Stewart.Vt struct osd
2404a2b56ebSLawrence Stewartto retrieve the data pointer from.
2414a2b56ebSLawrence StewartThe
2424a2b56ebSLawrence Stewart.Fa slot
2434a2b56ebSLawrence Stewartargument specifies the slot identifier to retrieve the data pointer from.
2444a2b56ebSLawrence Stewart.Pp
2454a2b56ebSLawrence StewartThe
2464a2b56ebSLawrence Stewart.Fn osd_del
2474a2b56ebSLawrence Stewartfunction removes the data pointer associated with a kernel data structure's
2484a2b56ebSLawrence Stewart.Vt struct osd
2494a2b56ebSLawrence Stewartmember from the specified type/slot identifier pair.
2504a2b56ebSLawrence StewartThe
2514a2b56ebSLawrence Stewart.Fa type
2524a2b56ebSLawrence Stewartargument specifies which high-level type grouping from
2534a2b56ebSLawrence Stewart.In sys/osd.h
2544a2b56ebSLawrence Stewartthe slot identifier is allocated under.
2554a2b56ebSLawrence StewartThe
2564a2b56ebSLawrence Stewart.Fa osd
2574a2b56ebSLawrence Stewartargument is a pointer to the kernel data structure's
2584a2b56ebSLawrence Stewart.Vt struct osd
2594a2b56ebSLawrence Stewartto remove the data pointer from.
2604a2b56ebSLawrence StewartThe
2614a2b56ebSLawrence Stewart.Fa slot
2624a2b56ebSLawrence Stewartargument specifies the slot identifier to remove the data pointer from.
2634a2b56ebSLawrence StewartIf an osd_destructor_t function pointer was specified at registration time, the
2644a2b56ebSLawrence Stewartdestructor function will be called and passed the data pointer for the type/slot
2654a2b56ebSLawrence Stewartidentifier pair which is being deleted.
2664a2b56ebSLawrence Stewart.Pp
2674a2b56ebSLawrence StewartThe
2684a2b56ebSLawrence Stewart.Fn osd_call
2694a2b56ebSLawrence Stewartfunction calls the specified osd_method_t function pointer for all
2704a2b56ebSLawrence Stewartcurrently registered slots of a given type on the specified
2714a2b56ebSLawrence Stewart.Fa obj
2724a2b56ebSLawrence Stewartand
2734a2b56ebSLawrence Stewart.Fa data
2744a2b56ebSLawrence Stewartpointers.
2754a2b56ebSLawrence StewartThe function may sleep and therefore cannot be called from a non-sleepable
2764a2b56ebSLawrence Stewartcontext.
2774a2b56ebSLawrence StewartThe
2784a2b56ebSLawrence Stewart.Fa type
2794a2b56ebSLawrence Stewartargument specifies which high-level type grouping from
2804a2b56ebSLawrence Stewart.In sys/osd.h
2814a2b56ebSLawrence Stewartto call the method for.
2824a2b56ebSLawrence StewartThe
2834a2b56ebSLawrence Stewart.Fa method
2844a2b56ebSLawrence Stewartargument specifies the index into the osd_method_t array that was passed to
2854a2b56ebSLawrence Stewart.Fn osd_register .
2864a2b56ebSLawrence StewartThe
2874a2b56ebSLawrence Stewart.Fa obj
2884a2b56ebSLawrence Stewartand
2894a2b56ebSLawrence Stewart.Fa data
2904a2b56ebSLawrence Stewartarguments are passed to the method function pointer of each slot.
2914a2b56ebSLawrence Stewart.Pp
2924a2b56ebSLawrence StewartThe
2934a2b56ebSLawrence Stewart.Fn osd_exit
2944a2b56ebSLawrence Stewartfunction removes all data object pointers from all currently registered slots
2954a2b56ebSLawrence Stewartfor a given type for the specified kernel data structure's
2964a2b56ebSLawrence Stewart.Vt struct osd
2974a2b56ebSLawrence Stewartmember.
2984a2b56ebSLawrence StewartThe
2994a2b56ebSLawrence Stewart.Fa type
3004a2b56ebSLawrence Stewartargument specifies which high-level type grouping from
3014a2b56ebSLawrence Stewart.In sys/osd.h
3024a2b56ebSLawrence Stewartto remove data pointers from.
3034a2b56ebSLawrence StewartThe
3044a2b56ebSLawrence Stewart.Fa osd
3054a2b56ebSLawrence Stewartargument is a pointer to the kernel data structure's
3064a2b56ebSLawrence Stewart.Vt struct osd
3074a2b56ebSLawrence Stewartto remove all data object pointers for all currently registered slots from.
3084a2b56ebSLawrence Stewart.Sh IMPLEMENTATION NOTES
3094a2b56ebSLawrence Stewart.Nm
3104a2b56ebSLawrence Stewartuses a two dimensional matrix (array of arrays) as the data structure to manage
3114a2b56ebSLawrence Stewartthe external data associated with a kernel data structure's
3124a2b56ebSLawrence Stewart.Vt struct osd
3134a2b56ebSLawrence Stewartmember.
3144a2b56ebSLawrence StewartThe type identifier is used as the index into the outer array, and the slot
315aa90aec2SConrad Meyeridentifier is used as the index into the inner array.
316aa90aec2SConrad MeyerTo set or retrieve a data pointer for a given type/slot identifier pair,
3174a2b56ebSLawrence Stewart.Fn osd_set
3184a2b56ebSLawrence Stewartand
3194a2b56ebSLawrence Stewart.Fn osd_get
3204a2b56ebSLawrence Stewartperform the equivalent of array[type][slot], which is both constant time and
3214a2b56ebSLawrence Stewartfast.
3224a2b56ebSLawrence Stewart.Pp
3234a2b56ebSLawrence StewartIf
3244a2b56ebSLawrence Stewart.Fn osd_set
3254a2b56ebSLawrence Stewartis called on a
3264a2b56ebSLawrence Stewart.Vt struct osd
3274a2b56ebSLawrence Stewartfor the first time, the array for storing data pointers is dynamically allocated
3284a2b56ebSLawrence Stewartusing
3294a2b56ebSLawrence Stewart.Xr malloc 9
3304a2b56ebSLawrence Stewartwith M_NOWAIT to a size appropriate for the slot identifier being set.
3314a2b56ebSLawrence StewartIf a subsequent call to
3324a2b56ebSLawrence Stewart.Fn osd_set
3334a2b56ebSLawrence Stewartattempts to set a slot identifier which is numerically larger than the slot used
3344a2b56ebSLawrence Stewartin the previous
3354a2b56ebSLawrence Stewart.Fn osd_set
3364a2b56ebSLawrence Stewartcall,
3374a2b56ebSLawrence Stewart.Xr realloc 9
3384a2b56ebSLawrence Stewartis used to grow the array to the appropriate size such that the slot identifier
3394a2b56ebSLawrence Stewartcan be used.
3404a2b56ebSLawrence StewartTo maximise the efficiency of any code which calls
3414a2b56ebSLawrence Stewart.Fn osd_set
342aa90aec2SConrad Meyersequentially on a number of different slot identifiers (e.g., during an
3434a2b56ebSLawrence Stewartinitialisation phase) one should loop through the slot identifiers in descending
3444a2b56ebSLawrence Stewartorder from highest to lowest.
3454a2b56ebSLawrence StewartThis will result in only a single
3464a2b56ebSLawrence Stewart.Xr malloc 9
3474a2b56ebSLawrence Stewartcall to create an array of the largest slot size and all subsequent calls to
3484a2b56ebSLawrence Stewart.Fn osd_set
3494a2b56ebSLawrence Stewartwill proceed without any
3504a2b56ebSLawrence Stewart.Xr realloc 9
3514a2b56ebSLawrence Stewartcalls.
3524a2b56ebSLawrence Stewart.Pp
353320d8421SJamie GrittonIt is possible for
354320d8421SJamie Gritton.Fn osd_set
355aa90aec2SConrad Meyerto fail to allocate this array.
356aa90aec2SConrad MeyerTo ensure that such allocation succeeds,
357320d8421SJamie Gritton.Fn osd_reserve
358320d8421SJamie Grittonmay be called (in a non-blocking context), and it will pre-allocate the
359320d8421SJamie Grittonmemory via
360320d8421SJamie Gritton.Xr malloc 9
361320d8421SJamie Grittonwith M_WAITOK.
362320d8421SJamie GrittonThen this pre-allocated memory is passed to
363320d8421SJamie Gritton.Fn osd_set_reserved ,
364320d8421SJamie Grittonwhich will use it if necessary or otherwise discard it.
365320d8421SJamie GrittonThe memory may also be explicitly discarded by calling
366320d8421SJamie Gritton.Fn osd_free_reserved .
367320d8421SJamie GrittonAs this method always allocates memory whether or not it is ultimately needed,
368320d8421SJamie Grittonit should be used only rarely, such as in the unlikely event that
369320d8421SJamie Gritton.Fn osd_set
370320d8421SJamie Grittonfails.
371320d8421SJamie Gritton.Pp
3724a2b56ebSLawrence StewartThe
3734a2b56ebSLawrence Stewart.Nm
3744a2b56ebSLawrence StewartAPI is geared towards slot identifiers storing pointers to the same underlying
3754a2b56ebSLawrence Stewartdata structure type for a given
3764a2b56ebSLawrence Stewart.Nm
3774a2b56ebSLawrence Stewarttype identifier.
3784a2b56ebSLawrence StewartThis is not a requirement, and
3794a2b56ebSLawrence Stewart.Xr khelp 9
3804a2b56ebSLawrence Stewartfor example stores completely different data types in slots under the OSD_KHELP
3814a2b56ebSLawrence Stewarttype identifier.
3824a2b56ebSLawrence Stewart.Ss Locking
3834a2b56ebSLawrence Stewart.Nm
3844a2b56ebSLawrence Stewartinternally uses a mix of
3854a2b56ebSLawrence Stewart.Xr mutex 9 ,
3864a2b56ebSLawrence Stewart.Xr rmlock 9
3874a2b56ebSLawrence Stewartand
3884a2b56ebSLawrence Stewart.Xr sx 9
3894a2b56ebSLawrence Stewartlocks to protect its internal data structures and state.
3904a2b56ebSLawrence Stewart.Pp
3914a2b56ebSLawrence StewartResponsibility for synchronising access to a kernel data structure's
3924a2b56ebSLawrence Stewart.Vt struct osd
3934a2b56ebSLawrence Stewartmember is left to the subsystem that uses the data structure and calls the
3944a2b56ebSLawrence Stewart.Nm
3954a2b56ebSLawrence StewartAPI.
3964a2b56ebSLawrence Stewart.Pp
3974a2b56ebSLawrence Stewart.Fn osd_get
3984a2b56ebSLawrence Stewartonly acquires an
399a51584a2SGraham Percival.Xr rmlock 9
4004a2b56ebSLawrence Stewartin read mode, therefore making it safe to use in the majority of contexts within
4014a2b56ebSLawrence Stewartthe kernel including most fast paths.
4024a2b56ebSLawrence Stewart.Sh RETURN VALUES
4034a2b56ebSLawrence Stewart.Fn osd_register
4044a2b56ebSLawrence Stewartreturns the slot identifier for the newly registered data type.
4054a2b56ebSLawrence Stewart.Pp
4064a2b56ebSLawrence Stewart.Fn osd_set
407320d8421SJamie Grittonand
408320d8421SJamie Gritton.Fn osd_set_reserved
409320d8421SJamie Grittonreturn zero on success or ENOMEM if the specified type/slot identifier pair
4104a2b56ebSLawrence Stewarttriggered an internal
4114a2b56ebSLawrence Stewart.Xr realloc 9
412320d8421SJamie Grittonwhich failed
413c85d7166SChristian Brueffer.Ns (
414c85d7166SChristian Brueffer.Fn osd_set_reserved
415320d8421SJamie Grittonwill always succeed when
416320d8421SJamie Gritton.Fa rsv
417320d8421SJamie Grittonis non-NULL).
4184a2b56ebSLawrence Stewart.Pp
4194a2b56ebSLawrence Stewart.Fn osd_get
4204a2b56ebSLawrence Stewartreturns the data pointer for the specified type/slot identifier pair, or NULL if
4214a2b56ebSLawrence Stewartthe slot has not been initialised yet.
4224a2b56ebSLawrence Stewart.Pp
423320d8421SJamie Gritton.Fn osd_reserve
424320d8421SJamie Grittonreturns a pointer suitable for passing to
425320d8421SJamie Gritton.Fn osd_set_reserved
426320d8421SJamie Grittonor
427320d8421SJamie Gritton.Fn osd_free_reserved .
428320d8421SJamie Gritton.Pp
4294a2b56ebSLawrence Stewart.Fn osd_call
4304a2b56ebSLawrence Stewartreturns zero if no method is run or the method for each slot runs successfully.
4314a2b56ebSLawrence StewartIf a method for a slot returns non-zero,
4324a2b56ebSLawrence Stewart.Fn osd_call
4334a2b56ebSLawrence Stewartterminates prematurely and returns the method's error to the caller.
4344a2b56ebSLawrence Stewart.Sh SEE ALSO
4354a2b56ebSLawrence Stewart.Xr khelp 9
4364a2b56ebSLawrence Stewart.Sh HISTORY
4374a2b56ebSLawrence StewartThe
4384a2b56ebSLawrence StewartObject Specific Data (OSD) facility first appeared in
4394a2b56ebSLawrence Stewart.Fx 8.0 .
4404a2b56ebSLawrence Stewart.Sh AUTHORS
4414a2b56ebSLawrence Stewart.An -nosplit
4424a2b56ebSLawrence StewartThe
4434a2b56ebSLawrence Stewart.Nm
4444a2b56ebSLawrence Stewartfacility was written by
4458a7314fcSBaptiste Daroussin.An Pawel Jakub Dawidek Aq Mt pjd@FreeBSD.org .
4464a2b56ebSLawrence Stewart.Pp
4474a2b56ebSLawrence StewartThis manual page was written by
4488a7314fcSBaptiste Daroussin.An Lawrence Stewart Aq Mt lstewart@FreeBSD.org .
449