Add a quick description of the geom_getxml(3), geom_xml2tree(3),
[freebsd.git] / lib / libgeom / libgeom.3
1 .\" Copyright (c) 2003 Poul-Henning Kamp
2 .\" Copyright (c) 2007 Pawel Jakub Dawidek <pjd@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 names of the authors may not be used to endorse or promote
14 .\"    products derived from this software without specific prior written
15 .\"    permission.
16 .\"
17 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 .\" SUCH DAMAGE.
28 .\"
29 .\" $FreeBSD$
30 .\"
31 .Dd October 16, 2017
32 .Dt LIBGEOM 3
33 .Os
34 .Sh NAME
35 .Nm geom_stats_open ,
36 .Nm geom_stats_close ,
37 .Nm geom_stats_resync ,
38 .Nm geom_stats_snapshot_get ,
39 .Nm geom_stats_snapshot_free ,
40 .Nm geom_stats_snapshot_timestamp ,
41 .Nm geom_stats_snapshot_reset ,
42 .Nm geom_stats_snapshot_next ,
43 .Nm gctl_get_handle ,
44 .Nm gctl_ro_param ,
45 .Nm gctl_rw_param ,
46 .Nm gctl_issue ,
47 .Nm gctl_free ,
48 .Nm gctl_dump ,
49 .Nm geom_getxml ,
50 .Nm geom_xml2tree ,
51 .Nm geom_gettree ,
52 .Nm geom_deletetree ,
53 .Nm g_open ,
54 .Nm g_close ,
55 .Nm g_mediasize ,
56 .Nm g_sectorsize ,
57 .Nm g_stripeoffset ,
58 .Nm g_stripesize ,
59 .Nm g_flush ,
60 .Nm g_delete ,
61 .Nm g_device_path ,
62 .Nm g_get_ident ,
63 .Nm g_get_name ,
64 .Nm g_open_by_ident ,
65 .Nm g_providername
66 .Nd userland API library for kernel GEOM subsystem
67 .Sh LIBRARY
68 .Lb libgeom
69 .Sh SYNOPSIS
70 .Bd -literal
71 /* stdio.h is only required for `gctl_dump` */
72 .Ed
73 .In stdio.h
74 .In libgeom.h
75 .Ss "Statistics Functions"
76 .Ft void
77 .Fn geom_stats_close void
78 .Ft int
79 .Fn geom_stats_open void
80 .Ft void
81 .Fn geom_stats_resync void
82 .Ft "void *"
83 .Fn geom_stats_snapshot_get void
84 .Ft void
85 .Fn geom_stats_snapshot_free "void *arg"
86 .Ft void
87 .Fn geom_stats_snapshot_timestamp "void *arg" "struct timespec *tp"
88 .Ft void
89 .Fn geom_stats_snapshot_reset "void *arg"
90 .Ft "struct devstat *"
91 .Fn geom_stats_snapshot_next "void *arg"
92 .Ss "Control Functions"
93 .Ft "struct gctl_req *"
94 .Fn gctl_get_handle "void"
95 .Ft void
96 .Fn gctl_ro_param "struct gctl_req *req" "const char *name" "int len" "const void *value"
97 .Ft void
98 .Fn gctl_rw_param "struct gctl_req *req" "const char *name" "int len" "void *value"
99 .Ft "const char *"
100 .Fn gctl_issue "struct gctl_req *req"
101 .Ft void
102 .Fn gctl_free "struct gctl_req *req"
103 .Ft void
104 .Fn gctl_dump "struct gctl_req *req" "FILE *f"
105 .Ss "Utility Functions"
106 .Ft "char *"
107 .Fn geom_getxml void
108 .Ft int
109 .Fn geom_xml2tree "struct gmesh *gmp" "char *p"
110 .Ft int
111 .Fn geom_gettree "struct gmesh *gmp"
112 .Ft void
113 .Fn geom_deletetree "struct gmesh *gmp"
114 .Ft int
115 .Fn g_open "const char *name" "int dowrite"
116 .Ft int
117 .Fn g_close "int fd"
118 .Ft off_t
119 .Fn g_mediasize "int fd"
120 .Ft ssize_t
121 .Fn g_sectorsize "int fd"
122 .Ft ssize_t
123 .Fn g_stripeoffset "int fd"
124 .Ft ssize_t
125 .Fn g_stripesize "int fd"
126 .Ft int
127 .Fn g_flush "int fd"
128 .Ft int
129 .Fn g_delete "int fd" "off_t offset" "off_t length"
130 .Ft "char *"
131 .Fn g_device_path "const char *devpath"
132 .Ft int
133 .Fn g_get_ident "int fd" "char *ident" "size_t size"
134 .Ft int
135 .Fn g_get_name "const char *ident" "char *name" "size_t size"
136 .Ft int
137 .Fn g_open_by_ident "const char *ident" "int dowrite" "char *name" "size_t size"
138 .Ft "char *"
139 .Fn g_providername "int fd"
140 .Sh DESCRIPTION
141 The
142 .Nm geom
143 library contains the official and publicized API for
144 interacting with the GEOM subsystem in the kernel.
145 .Ss "Statistics Functions"
146 GEOM collects statistics data for all consumers and providers, but does
147 not perform any normalization or presentation on the raw data, this is
148 left as an exercise for user-land presentation utilities.
149 .Pp
150 The
151 .Fn geom_stats_open
152 and
153 .Fn geom_stats_close
154 functions open and close the necessary pathways to access the raw
155 statistics information in the kernel.
156 These functions are likely to
157 open one or more files and cache the file descriptors locally.
158 The
159 .Fn geom_stats_open
160 function returns zero on success, and sets
161 .Va errno
162 if not.
163 .Pp
164 The
165 .Fn geom_stats_resync
166 function will check if more statistics collection points have been
167 added in the kernel since
168 .Fn geom_stats_open
169 or the previous call to
170 .Fn geom_stats_resync .
171 .Pp
172 The
173 .Fn geom_stats_snapshot_get
174 function
175 will acquire a snapshot of the raw data from the kernel, and while a
176 reasonable effort is made to make this snapshot as atomic and consistent
177 as possible, no guarantee is given that it will actually be so.
178 The snapshot must be freed again using the
179 .Fn geom_stats_snapshot_free
180 function.
181 The
182 .Fn geom_stats_snapshot_get
183 function returns
184 .Dv NULL
185 on failure.
186 .Pp
187 The
188 .Fn geom_stats_snapshot_timestamp
189 function
190 provides access to the timestamp acquired in the snapshot.
191 .Pp
192 The
193 .Fn geom_stats_snapshot_reset
194 and
195 .Fn geom_stats_snapshot_next
196 functions
197 provide an iterator over the statistics slots in the snapshot.
198 The
199 .Fn geom_stats_snapshot_reset
200 function
201 forces the internal pointer in the snapshot back to before the first item.
202 The
203 .Fn geom_stats_snapshot_next
204 function
205 returns the next item, and
206 .Dv NULL
207 if there are no more items in the snapshot.
208 .Ss "Control Functions"
209 The
210 .Fn gctl_*
211 functions are used to send requests to GEOM classes.
212 In order for a GEOM
213 class to actually be able to receive these requests, it must have defined a
214 "ctlreq" method.
215 .Pp
216 A
217 .Vt "struct gctl_req *" ,
218 obtained with
219 .Fn gctl_get_handle ,
220 can hold any number of parameters, which must be added to it with
221 .Fn gctl_ro_param
222 (for read-only parameters) or
223 .Fn gctl_rw_param
224 (for read/write parameters).
225 .Pp
226 Both
227 .Fn gctl_ro_param
228 and
229 .Fn gctl_rw_param
230 take a string
231 .Fa name ,
232 which is used to identify the parameter, and a
233 .Fa value ,
234 which contains, in the read-only case, the data to be passed to the
235 GEOM class, or, in the read/write case, a pointer to preallocated memory
236 that the GEOM class should fill with the desired data.
237 If
238 .Fa len
239 is negative, it is assumed that
240 .Fa value
241 is an
242 .Tn ASCII
243 string and the actual length is taken from the string length of
244 .Fa value ;
245 otherwise it must hold the size of
246 .Fa value .
247 .Pp
248 A parameter with a
249 .Fa name
250 containing the string
251 .Qq Li class
252 is mandatory for each request, and the
253 corresponding
254 .Fa value
255 must hold the name of the GEOM class where the request should be sent to.
256 .Pp
257 Also mandatory for each request is a parameter with a
258 .Fa name
259 called
260 .Qq Li verb ,
261 and the corresponding
262 .Fa value
263 needs to hold the command string that the GEOM class should react upon.
264 .Pp
265 Once all desired parameters are filled in, the request must be sent to
266 the GEOM subsystem with
267 .Fn gctl_issue ,
268 which returns
269 .Dv NULL
270 on success, or a string containing the error message
271 on failure.
272 .Pp
273 After the request is finished, the allocated memory should be released with
274 .Fn gctl_free .
275 .Pp
276 The
277 .Fn gctl_dump
278 function
279 can be used to format the contents of
280 .Fa req
281 to the open file handle pointed to by
282 .Fa f ,
283 for debugging purposes.
284 .Pp
285 Error handling for the control functions is postponed until the call
286 to
287 .Fn gctl_issue ,
288 which returns
289 .Dv NULL
290 on success, or an error message corresponding to the
291 first error which happened.
292 .Ss "Utility Functions"
293 The
294 .Fn geom_getxml
295 function is a wrapper around
296 .Xr sysctl 3
297 that fetches the
298 .Ar kern.geom.confxml
299 OID, and returns it's value.
300 The allocated memory should be released with
301 .Xr free 2
302 after use.
303 .Pp
304 The
305 .Fn geom_xml2tree
306 function parses the XML representation of a GEOM topology passed as
307 .Ar p ,
308 allocates the needed data structures to access this information and fills in
309 the passed
310 .Ar gmp
311 data structure.
312 Memory allocated during this transformation should be released
313 using
314 .Fn geom_deletetree
315 after use.
316 .Pp
317 The
318 .Fn geom_gettree
319 function is a wrapper around the
320 .Fn geom_getxml
321 and
322 .Fn geom_xml2tree
323 functions.
324 Memory allocated during this operation should be released using
325 .Fn geom_deletetree
326 after use.
327 .Pp
328 The
329 .Fn geom_deletetree
330 function releases memory allocated for storing the data-structures referenced by
331 .Ar gmp .
332 .Pp
333 The
334 .Fn g_*
335 functions are used to communicate with GEOM providers.
336 .Pp
337 The
338 .Fn g_open
339 function opens the given provider and returns file descriptor number, which can
340 be used with other functions.
341 The
342 .Fa dowrite
343 argument indicates if operations that modify the provider (like
344 .Fn g_flush
345 or
346 .Fn g_delete )
347 are going to be called.
348 .Pp
349 The
350 .Fn g_close
351 function closes the provider.
352 .Pp
353 The
354 .Fn g_mediasize
355 function returns size of the given provider.
356 .Pp
357 The
358 .Fn g_sectorsize
359 function returns sector size of the given provider.
360 .Pp
361 The
362 .Fn g_stripeoffset
363 function returns stripe offset of the given provider.
364 .Pp
365 The
366 .Fn g_stripesize
367 function returns stripe size of the given provider.
368 .Pp
369 The
370 .Fn g_flush
371 function sends
372 .Dv BIO_FLUSH
373 request to flush write cache of the provider.
374 .Pp
375 The
376 .Fn g_delete
377 function tells the provider that the given data range is no longer used.
378 .Pp
379 The
380 .Fn g_device_path
381 function returns the full path to a provider given a partial or full path to the
382 device node.
383 .Dv NULL
384 is returned if the device cannot be found or is not a valid geom provider.
385 .Pp
386 The
387 .Fn g_get_ident
388 function returns provider's fixed and unique identifier.
389 The
390 .Fa ident
391 argument should be at least
392 .Dv DISK_IDENT_SIZE
393 big.
394 .Pp
395 The
396 .Fn g_get_name
397 function returns name of the provider, which identifier is equal to the
398 .Fa ident
399 string.
400 .Pp
401 The
402 .Fn g_open_by_ident
403 function opens provider using its identification, unlike
404 .Fn g_open
405 which uses the provider's name.
406 The function will store the provider's name in the
407 .Fa name
408 parameter if it is not
409 .Dv NULL .
410 .Pp
411 The
412 .Fn g_providername
413 function returns the provider name of an open file descriptor.
414 .Dv NULL
415 is returned the file descriptor does not point to a valid geom provider.
416 .Pp
417 All functions except
418 .Fn g_providername
419 and
420 .Fn g_device_path
421 return a value greater than or equal to
422 .Va 0
423 on success or
424 .Va -1
425 on failure.
426 .Sh EXAMPLES
427 Create a request that is to be sent to the CCD class, and tell
428 it to destroy a specific geom:
429 .Bd -literal -offset indent
430 H = gctl_get_handle();
431 gctl_ro_param(H, "verb", -1, "destroy geom");
432 gctl_ro_param(H, "class", -1, "CCD");
433 sprintf(buf, "ccd%d", ccd);
434 gctl_ro_param(H, "geom", -1, buf);
435 errstr = gctl_issue(H);
436 if (errstr != NULL)
437     err(1, "could not destroy ccd: %s", errstr);
438 gctl_free(H);
439 .Ed
440 .Sh HISTORY
441 The
442 .Nm geom
443 library appeared in
444 .Fx 5.1 .
445 .Sh AUTHORS
446 .An Poul-Henning Kamp Aq Mt phk@FreeBSD.org
447 .An Lukas Ertl Aq Mt le@FreeBSD.org
448 .An Pawel Jakub Dawidek Aq Mt pjd@FreeBSD.org