2 .\" Copyright (c) 1998, 1999 Kenneth D. Merry.
3 .\" All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
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.
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
28 .\" $FreeBSD: src/lib/libdevstat/devstat.3,v 1.7.2.8 2001/12/17 10:08:29 ru Exp $
44 .Nd device statistics utility library
52 .Fn getgeneration "void"
56 .Fn checkversion "void"
58 .Fn getdevs "struct statinfo *stats"
61 .Fa "struct device_selection **dev_select"
62 .Fa "int *num_selected"
63 .Fa "int *num_selections"
64 .Fa "long *select_generation"
65 .Fa "long current_generation"
66 .Fa "struct devstat *devices"
68 .Fa "struct devstat_match *matches"
70 .Fa "char **dev_selections"
71 .Fa "int num_dev_selections"
72 .Fa "devstat_select_mode select_mode"
78 .Fa "const char *match_str"
79 .Fa "struct devstat_match **matches"
80 .Fa "int *num_matches"
84 .Fa "struct devstat *current"
85 .Fa "struct devstat *previous"
86 .Fa "long double etime"
87 .Fa "u_int64_t *total_bytes"
88 .Fa "u_int64_t *total_transfers"
89 .Fa "u_int64_t *total_blocks"
90 .Fa "long double *kb_per_transfer"
91 .Fa "long double *transfers_per_second"
92 .Fa "long double *mb_per_second"
93 .Fa "long double *blocks_per_second"
94 .Fa "long double *ms_per_transaction"
98 .Fa "struct timeval cur_time"
99 .Fa "struct timeval prev_time"
104 library is a library of helper functions for dealing with the kernel
106 interface, which is accessible to users via
110 returns the number of devices registered with the
112 subsystem in the kernel.
115 returns the current generation of the
117 list of devices in the kernel.
120 returns the current kernel
125 checks the userland devstat version against the kernel devstat version.
126 If the two are identical, it returns zero.
127 Otherwise, it prints an appropriate error in
132 fetches the current list of devices and statistics into the supplied
137 structure can be found in
139 .Bd -literal -offset indent
141 struct kinfo_cputime cp_time;
142 struct devinfo *dinfo;
143 struct timeval busy_time;
150 structure to be allocated, and it also expects the
152 subelement to be allocated and zeroed prior to the first invocation of
156 subelement is used to store state between calls, and should not be modified
157 after the first call to
161 subelement contains the following elements:
162 .Bd -literal -offset indent
164 struct devstat *devices;
174 variable contains an array of
176 structures, but at the head of the array is the current
179 The reason the generation is at the head of the buffer is so that userland
180 software accessing the devstat statistics information can atomically get
181 both the statistics information and the corresponding generation number.
182 If client software were forced to get the generation number via a separate
184 variable (which is available for convenience), the list of devices could
185 change between the time the client gets the generation and the time the
186 client gets the device list.
192 structure is a pointer to memory that is allocated, and resized if
195 The devices subelement of the
197 structure is basically a pointer to the beginning of the array of devstat
202 The generation subelement of the
204 structure contains the generation number from the
212 structure contains the current
213 number of devices registered with the kernel
218 selects devices to display based upon a number of criteria:
220 .It specified devices
221 Specified devices are the first selection priority.
222 These are generally devices specified by name by the user e.g. da0, da1, cd0.
224 These are pattern matching expressions generated by
228 If performance mode is enabled, devices will be sorted based on the
232 structure passed in to
236 value currently must be maintained by the user.
237 In the future, this may be done for him in a
240 If no devices have been selected by name or by pattern, the performance
241 tracking code will select every device in the system, and sort them by
243 If devices have been selected by name or pattern, the performance tracking
244 code will honor those selections and will only sort among the selected
246 .It order in the devstat list
247 If the selection mode is set to DS_SELECT_ADD, and if there are still less
252 will automatically select up to
258 performs selections in four different modes:
259 .Bl -tag -width DS_SELECT_ADDONLY
263 will select any unselected devices specified by name or matching pattern.
264 It will also select more devices, in devstat list order, until the number
265 of selected devices is equal to
267 or until all devices are
272 will clear all current selections, and will only select devices specified
273 by name or by matching pattern.
277 will remove devices specified by name or by matching pattern.
278 It will not select any additional devices.
279 .It DS_SELECT_ADDONLY
282 will select any unselected devices specified by name or matching pattern.
283 In this respect it is identical to add mode.
284 It will not, however, select any devices other than those specified.
287 In all selection modes,
289 will not select any more than
292 One exception to this is when you are in
294 mode and no devices have been selected.
297 will select every device in the system.
298 Client programs must pay attention to selection order when deciding whether
299 to pay attention to a particular device.
300 This may be the wrong behavior, and probably requires additional thought.
303 handles allocation and resizing of the
311 .Va current_generation
315 generation and number of devices.
322 .Va select_generation
324 .Va current_generation ,
326 will resize the selection list as necessary, and re-initialize the
330 takes a comma separated match string and compiles it into a
331 \fBdevstat_match\fR structure that is understood by
333 Match strings have the following format:
334 .Bd -literal -offset indent
339 takes care of allocating and reallocating the match list as necessary.
340 Currently known match types include:
342 .Bl -tag -width indent -compact
344 .Bl -tag -width 9n -compact
346 Direct Access devices
348 Sequential Access devices
354 Write Once Read Multiple devices
360 Optical Memory devices
362 Medium Changer devices
364 Communication devices
366 Storage Array devices
368 Enclosure Services devices
374 .Bl -tag -width 9n -compact
376 Integrated Drive Electronics devices
378 Small Computer System Interface devices
380 Any other device interface
384 .Bl -tag -width 9n -compact
391 provides an easy way to obtain various device statistics.
392 Only two arguments are mandatory:
396 Every other argument is optional.
397 For most applications, the user will want to supply both
401 devstat structures so that statistics may be calculated over a given period
403 In some instances, for instance when calculating statistics since system boot,
404 the user may pass in a NULL pointer for the
409 will use the total stats in the
411 structure to calculate statistics over
413 The various statistics that may be calculated by
415 should be mostly explained by the function declaration itself, but for
416 completeness here is a list of variable names and the statistics that will
418 .Bl -tag -width transfers_per_second
420 This is the total number of bytes transferred on the given device, both
421 reads and writes, between the acquisition of
423 and the acquisition of
427 is NULL, the result will be the total reads and writes given in
430 This is the total number of transfers completed between the
433 and the acquisition of
437 is NULL, the result will be the total number of transactions listed in
442 divided by the device blocksize.
443 If the device blocksize is listed as
445 the device blocksize will default to 512 bytes.
447 This is the average number of kilobytes per transfer during the measurement
449 .It transfers_per_second
450 This is the average number of transfers per second.
452 This is average megabytes per second.
453 .It blocks_per_second
454 This is average blocks per second.
455 If the device blocksize is
457 a default blocksize of 512 bytes will be used instead.
458 .It ms_per_transaction
459 The average number of milliseconds per transaction.
463 provides an easy way to find the difference in seconds between two
466 This is most commonly used in conjunction with the time recorded by the
470 each time it fetches the current
478 return the indicated \fBsysctl\fR variable, or -1 if there is an error
479 fetching the variable.
482 returns 0 if the kernel and userland
485 If they do not match, it returns -1.
490 return -1 in case of an error, 0 if there is no error and 1 if the device
491 list or selected devices have changed.
492 A return value of 1 from
494 is usually a hint to re-run
496 because the device list has changed.
499 returns -1 for error, and 0 if there is no error.
502 returns -1 for error, and 0 for success.
505 returns the computed elapsed time.
507 If an error is returned from one of the
509 library functions, the reason for the error is generally printed in
513 .Dv DEVSTAT_ERRBUF_SIZE
524 statistics system first appeared in
527 .An Kenneth Merry Aq Mt ken@FreeBSD.org
529 There should probably be an interface to de-allocate memory allocated by
536 should probably not select more than
540 mode when no devices have been selected previously.
542 There should probably be functions to perform the statistics buffer
543 swapping that goes on in most of the clients of this library.
549 structures should probably be cleaned up and thought out a little more.