]> granicus.if.org Git - sysstat/blob - sa.h
sar: make buffers that hold timestamps bigger
[sysstat] / sa.h
1 /*
2  * sar/sadc: Report system activity
3  * (C) 1999-2016 by Sebastien Godard (sysstat <at> orange.fr)
4  */
5
6 #ifndef _SA_H
7 #define _SA_H
8
9 #include <stdio.h>
10
11 #include "common.h"
12 #include "prealloc.h"
13 #include "rd_stats.h"
14 #include "rd_sensors.h"
15
16 /*
17  ***************************************************************************
18  * Activity identification values.
19  ***************************************************************************
20  */
21
22 /* Number of activities */
23 #define NR_ACT          38
24 /* The value below is used for sanity check */
25 #define MAX_NR_ACT      256
26
27 /* Number of functions used to count items */
28 #define NR_F_COUNT      11
29
30 /* Activities */
31 #define A_CPU           1
32 #define A_PCSW          2
33 #define A_IRQ           3
34 #define A_SWAP          4
35 #define A_PAGE          5
36 #define A_IO            6
37 #define A_MEMORY        7
38 #define A_KTABLES       8
39 #define A_QUEUE         9
40 #define A_SERIAL        10
41 #define A_DISK          11
42 #define A_NET_DEV       12
43 #define A_NET_EDEV      13
44 #define A_NET_NFS       14
45 #define A_NET_NFSD      15
46 #define A_NET_SOCK      16
47 #define A_NET_IP        17
48 #define A_NET_EIP       18
49 #define A_NET_ICMP      19
50 #define A_NET_EICMP     20
51 #define A_NET_TCP       21
52 #define A_NET_ETCP      22
53 #define A_NET_UDP       23
54 #define A_NET_SOCK6     24
55 #define A_NET_IP6       25
56 #define A_NET_EIP6      26
57 #define A_NET_ICMP6     27
58 #define A_NET_EICMP6    28
59 #define A_NET_UDP6      29
60 #define A_PWR_CPUFREQ   30
61 #define A_PWR_FAN       31
62 #define A_PWR_TEMP      32
63 #define A_PWR_IN        33
64 #define A_HUGE          34
65 #define A_PWR_WGHFREQ   35
66 #define A_PWR_USB       36
67 #define A_FILESYSTEM    37
68 #define A_NET_FC        38
69
70
71 /* Macro used to flag an activity that should be collected */
72 #define COLLECT_ACTIVITY(m)     act[get_activity_position(act, m, EXIT_IF_NOT_FOUND)]->options |= AO_COLLECTED
73
74 /* Macro used to flag an activity that should be selected */
75 #define SELECT_ACTIVITY(m)      act[get_activity_position(act, m, EXIT_IF_NOT_FOUND)]->options |= AO_SELECTED
76
77
78 /*
79  ***************************************************************************
80  * Flags.
81  ***************************************************************************
82  */
83
84 #define S_F_SINCE_BOOT          0x00000001
85 #define S_F_SA_ROTAT            0x00000002
86 #define S_F_DEV_PRETTY          0x00000004
87 #define S_F_FORCE_FILE          0x00000008
88 #define S_F_INTERVAL_SET        0x00000010
89 #define S_F_TRUE_TIME           0x00000020
90 #define S_F_LOCK_FILE           0x00000040
91 #define S_F_SEC_EPOCH           0x00000080
92 #define S_F_HDR_ONLY            0x00000100
93 #define S_F_FILE_LOCKED         0x00000200
94 #define S_F_SA_YYYYMMDD         0x00000400
95 #define S_F_HORIZONTALLY        0x00000800
96 #define S_F_COMMENT             0x00001000
97 #define S_F_PERSIST_NAME        0x00002000
98 #define S_F_LOCAL_TIME          0x00004000
99 #define S_F_PREFD_TIME_OUTPUT   0x00008000
100 #define S_F_SVG_SKIP            0x00010000
101 #define S_F_SVG_AUTOSCALE       0x00020000
102 #define S_F_SVG_ONE_DAY         0x00040000
103
104 #define WANT_SINCE_BOOT(m)              (((m) & S_F_SINCE_BOOT)   == S_F_SINCE_BOOT)
105 #define WANT_SA_ROTAT(m)                (((m) & S_F_SA_ROTAT)     == S_F_SA_ROTAT)
106 #define USE_PRETTY_OPTION(m)            (((m) & S_F_DEV_PRETTY)   == S_F_DEV_PRETTY)
107 #define FORCE_FILE(m)                   (((m) & S_F_FORCE_FILE)   == S_F_FORCE_FILE)
108 #define INTERVAL_SET(m)                 (((m) & S_F_INTERVAL_SET) == S_F_INTERVAL_SET)
109 #define PRINT_TRUE_TIME(m)              (((m) & S_F_TRUE_TIME)    == S_F_TRUE_TIME)
110 #define LOCK_FILE(m)                    (((m) & S_F_LOCK_FILE)    == S_F_LOCK_FILE)
111 #define PRINT_SEC_EPOCH(m)              (((m) & S_F_SEC_EPOCH)    == S_F_SEC_EPOCH)
112 #define DISPLAY_HDR_ONLY(m)             (((m) & S_F_HDR_ONLY)     == S_F_HDR_ONLY)
113 #define FILE_LOCKED(m)                  (((m) & S_F_FILE_LOCKED)  == S_F_FILE_LOCKED)
114 #define USE_SA_YYYYMMDD(m)              (((m) & S_F_SA_YYYYMMDD)  == S_F_SA_YYYYMMDD)
115 #define DISPLAY_HORIZONTALLY(m)         (((m) & S_F_HORIZONTALLY) == S_F_HORIZONTALLY)
116 #define DISPLAY_COMMENT(m)              (((m) & S_F_COMMENT)      == S_F_COMMENT)
117 #define DISPLAY_PERSIST_NAME_S(m)       (((m) & S_F_PERSIST_NAME) == S_F_PERSIST_NAME)
118 #define PRINT_LOCAL_TIME(m)             (((m) & S_F_LOCAL_TIME)   == S_F_LOCAL_TIME)
119 #define USE_PREFD_TIME_OUTPUT(m)        (((m) & S_F_PREFD_TIME_OUTPUT)   == S_F_PREFD_TIME_OUTPUT)
120 #define SKIP_EMPTY_VIEWS(m)             (((m) & S_F_SVG_SKIP)     == S_F_SVG_SKIP)
121 #define AUTOSCALE_ON(m)                 (((m) & S_F_SVG_AUTOSCALE) == S_F_SVG_AUTOSCALE)
122 #define DISPLAY_ONE_DAY(m)              (((m) & S_F_SVG_ONE_DAY)   == S_F_SVG_ONE_DAY)
123
124 #define AO_F_NULL               0x00000000
125
126 /* Output flags for options -R / -r / -S */
127 #define AO_F_MEM_DIA            0x00000001
128 #define AO_F_MEM_AMT            0x00000002
129 #define AO_F_MEM_SWAP           0x00000004
130 /* AO_F_MEM_ALL: See opt_flags in struct activity below */
131 #define AO_F_MEM_ALL            (AO_F_MEM_AMT << 8)
132
133 #define DISPLAY_MEMORY(m)       (((m) & AO_F_MEM_DIA)     == AO_F_MEM_DIA)
134 #define DISPLAY_MEM_AMT(m)      (((m) & AO_F_MEM_AMT)     == AO_F_MEM_AMT)
135 #define DISPLAY_SWAP(m)         (((m) & AO_F_MEM_SWAP)    == AO_F_MEM_SWAP)
136 #define DISPLAY_MEM_ALL(m)      (((m) & AO_F_MEM_ALL)     == AO_F_MEM_ALL)
137
138 /* Output flags for option -u [ ALL ] */
139 #define AO_F_CPU_DEF            0x00000001
140 #define AO_F_CPU_ALL            0x00000002
141
142 #define DISPLAY_CPU_DEF(m)      (((m) & AO_F_CPU_DEF)     == AO_F_CPU_DEF)
143 #define DISPLAY_CPU_ALL(m)      (((m) & AO_F_CPU_ALL)     == AO_F_CPU_ALL)
144
145 /* Output flags for option -d */
146 #define AO_F_DISK_PART          0x00000001
147
148 #define COLLECT_PARTITIONS(m)   (((m) & AO_F_DISK_PART)   == AO_F_DISK_PART)
149
150 /* Output flags for option -F */
151 #define AO_F_FILESYSTEM         0x00000001
152 #define AO_F_MOUNT              0x00000002
153
154 #define DISPLAY_MOUNT(m)        (((m) & AO_F_MOUNT)       == AO_F_MOUNT)
155
156 /*
157  ***************************************************************************
158  * Various keywords and constants.
159  ***************************************************************************
160  */
161
162 /* Keywords */
163 #define K_XALL          "XALL"
164 #define K_SUM           "SUM"
165 #define K_DEV           "DEV"
166 #define K_EDEV          "EDEV"
167 #define K_NFS           "NFS"
168 #define K_NFSD          "NFSD"
169 #define K_SOCK          "SOCK"
170 #define K_IP            "IP"
171 #define K_EIP           "EIP"
172 #define K_ICMP          "ICMP"
173 #define K_EICMP         "EICMP"
174 #define K_TCP           "TCP"
175 #define K_ETCP          "ETCP"
176 #define K_UDP           "UDP"
177 #define K_SOCK6         "SOCK6"
178 #define K_IP6           "IP6"
179 #define K_EIP6          "EIP6"
180 #define K_ICMP6         "ICMP6"
181 #define K_EICMP6        "EICMP6"
182 #define K_UDP6          "UDP6"
183 #define K_CPU           "CPU"
184 #define K_FAN           "FAN"
185 #define K_TEMP          "TEMP"
186 #define K_IN            "IN"
187 #define K_FREQ          "FREQ"
188 #define K_MOUNT         "MOUNT"
189 #define K_FC            "FC"
190
191 #define K_INT           "INT"
192 #define K_DISK          "DISK"
193 #define K_XDISK         "XDISK"
194 #define K_SNMP          "SNMP"
195 #define K_IPV6          "IPV6"
196 #define K_POWER         "POWER"
197 #define K_USB           "USB"
198
199 #define K_SKIP_EMPTY    "skipempty"
200 #define K_AUTOSCALE     "autoscale"
201 #define K_ONEDAY        "oneday"
202
203 /* Groups of activities */
204 #define G_DEFAULT       0x00
205 #define G_INT           0x01
206 #define G_DISK          0x02
207 #define G_SNMP          0x04
208 #define G_IPV6          0x08
209 #define G_POWER         0x10
210 #define G_XDISK         0x20
211
212 /* sadc program */
213 #define SADC            "sadc"
214
215 /* Time must have the format HH:MM:SS with HH in 24-hour format */
216 #define DEF_TMSTART     "08:00:00"
217 #define DEF_TMEND       "18:00:00"
218
219 /*
220  * Macro used to define activity bitmap size.
221  * All those bitmaps have an additional bit used for global activity
222  * (eg. CPU "all" or total number of interrupts). That's why we do "(m) + 1".
223  */
224 #define BITMAP_SIZE(m)  ((((m) + 1) / 8) + 1)
225
226 #define UTSNAME_LEN     65
227 #define TIMESTAMP_LEN   64
228 #define HEADER_LINE_LEN 512
229
230 /*
231  * Define upper limit for various items.
232  * Made necessary because we have to check the number of
233  * items for each activity when we read a (possibly tainted)
234  * sa data file.
235  */
236 #define MAX_NR_SERIAL_LINES     512
237 #define MAX_NR_DISKS            8192
238 #define MAX_NR_IFACES           512
239 #define MAX_NR_FANS             128
240 #define MAX_NR_TEMP_SENSORS     128
241 #define MAX_NR_IN_SENSORS       128
242 #define MAX_NR_USB              1024
243 #define MAX_NR_FS               8192
244 #define MAX_NR_FCHOSTS          8192
245
246 /* NR_MAX is the upper limit used for unknown activities */
247 #define NR_MAX          65536
248 #define NR2_MAX         128
249
250 /* Maximum number of args that can be passed to sadc */
251 #define MAX_ARGV_NR     32
252
253 /* Miscellaneous constants */
254 #define USE_SADC                0
255 #define USE_SA_FILE             1
256 #define NO_TM_START             0
257 #define NO_TM_END               0
258 #define NO_RESET                0
259 #define NON_FATAL               0
260 #define FATAL                   1
261 #define C_SAR                   0
262 #define C_SADF                  1
263 #define ALL_ACTIVITIES          ~0U
264 #define EXIT_IF_NOT_FOUND       1
265 #define RESUME_IF_NOT_FOUND     0
266
267 #define SOFT_SIZE       0
268 #define HARD_SIZE       1
269
270 #define FIRST   0
271 #define SECOND  1
272 #define THIRD   2
273
274 #define CLOSE_XML_MARKUP        0
275 #define OPEN_XML_MARKUP         1
276
277 #define CLOSE_JSON_MARKUP       0
278 #define OPEN_JSON_MARKUP        1
279
280 #define COUNT_ACTIVITIES        0
281 #define COUNT_OUTPUTS           1
282
283 /* Type for all functions counting items */
284 #define __nr_t          int
285 /* Type for all functions reading statistics */
286 #define __read_funct_t  void
287 /* Type for all functions displaying statistics */
288 #define __print_funct_t void
289
290 /* Structure for SVG specific parameters */
291 struct svg_parm {
292         unsigned long dt;               /* Interval of time for current sample */
293         unsigned long ust_time_ref;     /* X axis start time in seconds since the epoch */
294         unsigned long ust_time_end;     /* X axis end time in seconds since the epoch */
295         unsigned long ust_time_first;   /* Time (in seconds since the epoch) for first sample */
296         int graph_no;                   /* Total number of views already displayed */
297         int restart;                    /* TRUE if we have just met a RESTART record */
298 };
299
300
301 /*
302  ***************************************************************************
303  * Definitions of header structures.
304  *
305  * Format of system activity data files:
306  *       __
307  *      |
308  *      | file_magic structure
309  *      |
310  *      |--
311  *      |
312  *      | file_header structure
313  *      |
314  *      |--                         --|
315  *      |                             |
316  *      | file_activity structure     | * sa_act_nr
317  *      |                             |
318  *      |--                         --|
319  *      |                             |
320  *      | record_header structure     |
321  *      |                             |
322  *      |--                           | * <count>
323  *      |                             |
324  *      | Statistics structures...(*) |
325  *      |                             |
326  *      |--                         --|
327  *
328  * (*)Note: If it's a special record, we may find a comment instead of
329  * statistics (R_COMMENT record type) or, if it's a R_RESTART record type,
330  * <sa_nr_vol_act> structures (of type file_activity) for the volatile
331  * activities.
332  ***************************************************************************
333  */
334
335 /*
336  * Sysstat magic number. Should never be modified.
337  * Indicate that the file was created by sysstat.
338  */
339 #define SYSSTAT_MAGIC   0xd596
340
341 /*
342  * Datafile format magic number.
343  * Modified to indicate that the format of the file is
344  * no longer compatible with that of previous sysstat versions.
345  */
346 #define FORMAT_MAGIC    0x2173
347
348 /* Previous datafile format magic number used by older sysstat versions */
349 #define PREVIOUS_FORMAT_MAGIC   0x2171
350
351 /* Padding in file_magic structure. See below. */
352 #define FILE_MAGIC_PADDING      63
353
354 /* Structure for file magic header data */
355 struct file_magic {
356         /*
357          * This field identifies the file as a file created by sysstat.
358          */
359         unsigned short sysstat_magic;
360         /*
361          * The value of this field varies whenever datafile format changes.
362          */
363         unsigned short format_magic;
364         /*
365          * Sysstat version used to create the file.
366          */
367         unsigned char sysstat_version;
368         unsigned char sysstat_patchlevel;
369         unsigned char sysstat_sublevel;
370         unsigned char sysstat_extraversion;
371         /*
372          * Size of file's header (size of file_header structure used by file).
373          */
374         unsigned int header_size;
375         /*
376          * Set to non zero if data file has been converted with "sadf -c" from
377          * an old format (version x.y.z) to a newest format (version X.Y.Z).
378          * In this case, the value is: Y*16 + Z + 1.
379          * The FORMAT_MAGIC value of the file can be used to determine X.
380          */
381         unsigned char upgraded;
382         /*
383          * Padding. Reserved for future use while avoiding a format change.
384          */
385         unsigned char pad[FILE_MAGIC_PADDING];
386 };
387
388 #define FILE_MAGIC_SIZE (sizeof(struct file_magic))
389
390
391 /* Header structure for system activity data file */
392 struct file_header {
393         /*
394          * Timestamp in seconds since the epoch.
395          */
396         unsigned long sa_ust_time       __attribute__ ((aligned (8)));
397         /*
398          * Number of CPU items (1 .. CPU_NR + 1) for the last sample in file.
399          */
400         unsigned int sa_last_cpu_nr     __attribute__ ((aligned (8)));
401         /*
402          * Number of activities saved in file.
403          */
404         unsigned int sa_act_nr;
405         /*
406          * Number of volatile activities in file. This is the number of
407          * file_activity structures saved after each restart mark in file.
408          */
409         unsigned int sa_vol_act_nr;
410         /*
411          * Current day, month and year.
412          * No need to save DST (Daylight Saving Time) flag, since it is not taken
413          * into account by the strftime() function used to print the timestamp.
414          */
415         unsigned char sa_day;
416         unsigned char sa_month;
417         unsigned char sa_year;
418         /*
419          * Size of a long integer. Useful to know the architecture on which
420          * the datafile was created.
421          */
422         char sa_sizeof_long;
423         /*
424          * Operating system name.
425          */
426         char sa_sysname[UTSNAME_LEN];
427         /*
428          * Machine hostname.
429          */
430         char sa_nodename[UTSNAME_LEN];
431         /*
432          * Operating system release number.
433          */
434         char sa_release[UTSNAME_LEN];
435         /*
436          * Machine architecture.
437          */
438         char sa_machine[UTSNAME_LEN];
439 };
440
441 #define FILE_HEADER_SIZE        (sizeof(struct file_header))
442 /* The values below are used for sanity check */
443 #define MIN_FILE_HEADER_SIZE    0
444 #define MAX_FILE_HEADER_SIZE    8192
445
446
447 /*
448  * Base magical number for activities.
449  */
450 #define ACTIVITY_MAGIC_BASE     0x8a
451 /*
452  * Magical value used for activities with
453  * unknown format (used for sadf -H only).
454  */
455 #define ACTIVITY_MAGIC_UNKNOWN  0x89
456
457 /* List of activities saved in file */
458 struct file_activity {
459         /*
460          * Identification value of activity.
461          */
462         unsigned int id         __attribute__ ((aligned (4)));
463         /*
464          * Activity magical number.
465          */
466         unsigned int magic      __attribute__ ((packed));
467         /*
468          * Number of items for this activity.
469          */
470         __nr_t nr               __attribute__ ((packed));
471         /*
472          * Number of sub-items for this activity.
473          */
474         __nr_t nr2              __attribute__ ((packed));
475         /*
476          * Size of an item structure.
477          */
478         int size                __attribute__ ((packed));
479 };
480
481 #define FILE_ACTIVITY_SIZE      (sizeof(struct file_activity))
482
483
484 /* Record type */
485 /*
486  * R_STATS means that this is a record of statistics.
487  */
488 #define R_STATS         1
489 /*
490  * R_RESTART means that this is a special record containing
491  * a LINUX RESTART message.
492  */
493 #define R_RESTART       2
494 /*
495  * R_LAST_STATS warns sar that this is the last record to be written
496  * to file before a file rotation, and that the next data to come will
497  * be a header file.
498  * Such a record is tagged R_STATS anyway before being written to file.
499  */
500 #define R_LAST_STATS    3
501 /*
502  * R_COMMENT means that this is a special record containing
503  * a comment.
504  */
505 #define R_COMMENT       4
506
507 /* Maximum length of a comment */
508 #define MAX_COMMENT_LEN 64
509
510 /* Header structure for every record */
511 struct record_header {
512         /*
513          * Machine uptime (multiplied by the # of proc).
514          */
515         unsigned long long uptime       __attribute__ ((aligned (16)));
516         /*
517          * Uptime reduced to one processor. Always set, even on UP machines.
518          */
519         unsigned long long uptime0      __attribute__ ((aligned (16)));
520         /*
521          * Timestamp (number of seconds since the epoch).
522          */
523         unsigned long ust_time          __attribute__ ((aligned (16)));
524         /*
525          * Record type: R_STATS, R_RESTART,...
526          */
527         unsigned char record_type       __attribute__ ((aligned (8)));
528         /*
529          * Timestamp: Hour (0-23), minute (0-59) and second (0-59).
530          * Used to determine TRUE time (immutable, non locale dependent time).
531          */
532         unsigned char hour;
533         unsigned char minute;
534         unsigned char second;
535 };
536
537 #define RECORD_HEADER_SIZE      (sizeof(struct record_header))
538
539
540 /*
541  ***************************************************************************
542  * Generic description of an activity.
543  ***************************************************************************
544  */
545
546 /* Activity options */
547 #define AO_NULL                 0x00
548 /*
549  * Indicate that corresponding activity should be collected by sadc.
550  */
551 #define AO_COLLECTED            0x01
552 /*
553  * Indicate that corresponding activity should be displayed by sar.
554  */
555 #define AO_SELECTED             0x02
556 /*
557  * When appending data to a file, the number of items (for every activity)
558  * is forced to that of the file (number of network interfaces, serial lines,
559  * etc.) Exceptions are volatile activities (like A_CPU) whose number of items
560  * is related to the number of CPUs: If current machine has a different number
561  * of CPU than that of the file (but is equal to sa_last_cpu_nr) then data
562  * will be appended with a number of items equal to that of the machine.
563  */
564 #define AO_VOLATILE             0x04
565 /*
566  * Indicate that the interval of time, given to f_print() function
567  * displaying statistics, should be the interval of time in jiffies
568  * multiplied by the number of processors.
569  */
570 #define AO_GLOBAL_ITV           0x08
571 /*
572  * This flag should be set for every activity closing a markup used
573  * by several activities. Used by sadf f_xml_print() functions to
574  * display XML output.
575  */
576 #define AO_CLOSE_MARKUP         0x10
577 /*
578  * Indicate that corresponding activity has multiple different
579  * output formats. This is the case for example for memory activity
580  * with options -r and -R.
581  * PS: Such an activity should appear in the list of activities that
582  * sar -A is supposed to display.
583  */
584 #define AO_MULTIPLE_OUTPUTS     0x20
585 /*
586  * Indicate that one (SVG) graph will be displayed for each
587  * distinct item for this activity (sadf -g).
588  */
589 #define AO_GRAPH_PER_ITEM       0x40
590
591 #define IS_COLLECTED(m)         (((m) & AO_COLLECTED)        == AO_COLLECTED)
592 #define IS_SELECTED(m)          (((m) & AO_SELECTED)         == AO_SELECTED)
593 #define IS_VOLATILE(m)          (((m) & AO_VOLATILE)         == AO_VOLATILE)
594 #define NEED_GLOBAL_ITV(m)      (((m) & AO_GLOBAL_ITV)       == AO_GLOBAL_ITV)
595 #define CLOSE_MARKUP(m)         (((m) & AO_CLOSE_MARKUP)     == AO_CLOSE_MARKUP)
596 #define HAS_MULTIPLE_OUTPUTS(m) (((m) & AO_MULTIPLE_OUTPUTS) == AO_MULTIPLE_OUTPUTS)
597 #define ONE_GRAPH_PER_ITEM(m)   (((m) & AO_GRAPH_PER_ITEM)   == AO_GRAPH_PER_ITEM)
598
599 #define _buf0   buf[0]
600
601 /* Structure used to define a bitmap needed by an activity */
602 struct act_bitmap {
603         /*
604          * Bitmap for activities that need one. Remember to allocate it
605          * before use!
606          */
607         unsigned char *b_array;
608         /*
609          * Size of the bitmap in bits. In fact, bitmap is sized to b_size + 1
610          * to take into account CPU "all"
611          */
612         int b_size;
613 };
614
615 /*
616  * Structure used to define an activity.
617  * Note: This structure can be modified without changing the format of data files.
618  */
619 struct activity {
620         /*
621          * This variable contains the identification value (A_...) for this activity.
622          */
623         unsigned int id;
624         /*
625          * Activity options (AO_...)
626          */
627         unsigned int options;
628         /*
629          * Activity magical number. This number changes when activity format in file
630          * is no longer compatible with the format of that same activity from
631          * previous versions.
632          */
633         unsigned int magic;
634         /*
635          * An activity belongs to a group (and only one).
636          * Groups are those selected with option -S of sadc.
637          */
638         unsigned int group;
639         /*
640          * Index in f_count[] array to determine function used to count
641          * the number of items (serial lines, network interfaces, etc.) -> @nr
642          * Such a function should _always_ return a value greater than
643          * or equal to 0.
644          *
645          * A value of -1 indicates that the number of items
646          * is a constant (and @nr is set to this value).
647          *
648          * These functions are called even if corresponding activities have not
649          * been selected, to make sure that all items have been calculated
650          * (including #CPU, etc.)
651          */
652         int f_count_index;
653         /*
654          * The f_count2() function is used to count the number of
655          * sub-items -> @nr2
656          * Such a function should _always_ return a value greater than
657          * or equal to 0.
658          *
659          * A NULL value for this function pointer indicates that the number of items
660          * is a constant (and @nr2 is set to this value).
661          */
662         __nr_t (*f_count2) (struct activity *);
663         /*
664          * This function reads the relevant file and fill the buffer
665          * with statistics corresponding to given activity.
666          */
667         __read_funct_t (*f_read) (struct activity *);
668         /*
669          * This function displays activity statistics onto the screen.
670          */
671         __print_funct_t (*f_print) (struct activity *, int, int, unsigned long long);
672         /*
673          * This function displays average activity statistics onto the screen.
674          */
675         __print_funct_t (*f_print_avg) (struct activity *, int, int, unsigned long long);
676         /*
677          * This function is used by sadf to display activity in a format that can
678          * easily be ingested by a relational database, or a format that can be
679          * handled by pattern processing commands like "awk".
680          */
681         __print_funct_t (*f_render) (struct activity *, int, char *, int, unsigned long long);
682         /*
683          * This function is used by sadf to display activity statistics in XML.
684          */
685         __print_funct_t (*f_xml_print) (struct activity *, int, int, unsigned long long);
686         /*
687          * This function is used by sadf to display activity statistics in JSON.
688          */
689         __print_funct_t (*f_json_print) (struct activity *, int, int, unsigned long long);
690         /*
691          * This function is used by sadf to display activity statistics in SVG.
692          */
693         __print_funct_t (*f_svg_print) (struct activity *, int, int, struct svg_parm *,
694                                         unsigned long long, struct record_header *);
695         /*
696          * Header string displayed by sadf -d.
697          * Header lines for each output (for activities with multiple outputs) are
698          * separated with a '|' character.
699          * For a given output, the first field corresponding to extended statistics
700          * (eg. -r ALL) begins with a '&' character.
701          */
702         char *hdr_line;
703         /*
704          * Name of activity.
705          */
706         char *name;
707         /*
708          * Number of SVG graphs for this activity. The total number of graphs for
709          * the activity can be greater though if flag AO_GRAPH_PER_ITEM is set, in
710          * which case the total number will  be @g_nr * @nr.
711          */
712         int g_nr;
713         /*
714          * Number of items on the system.
715          * A negative value (-1) is the default value and indicates that this number
716          * has still not been calculated by the f_count() function.
717          * A value of 0 means that this number has been calculated, but no items have
718          * been found.
719          * A positive value (>0) has either been calculated or is a constant.
720          */
721         __nr_t nr;
722         /*
723          * Number of sub-items on the system.
724          * @nr2 is in fact the second dimension of a matrix of items, the first
725          * one being @nr. @nr is the number of lines, and @nr2 the number of columns.
726          * A negative value (-1) is the default value and indicates that this number
727          * has still not been calculated by the f_count2() function.
728          * A value of 0 means that this number has been calculated, but no sub-items have
729          * been found.
730          * A positive value (>0) has either been calculated or is a constant.
731          * Rules:
732          * 1) IF @nr2 = 0 THEN @nr = 0
733          *    Note: If @nr = 0, then @nr2 is undetermined (may be -1, 0 or >0).
734          * 2) IF @nr > 0 THEN @nr2 > 0.
735          *    Note: If @nr2 > 0 then @nr is undetermined (may be -1, 0 or >0).
736          * 3) IF @nr <= 0 THEN @nr2 = -1 (this is the default value for @nr2,
737          * meaning that it has not been calculated).
738          */
739         __nr_t nr2;
740         /*
741          * Maximum number of elements that sar can handle for this item.
742          * NB: The maximum number of elements that sar can handle for sub-items
743          * is NR2_MAX.
744          */
745         __nr_t nr_max;
746         /*
747          * Size of an item.
748          * This is the size of the corresponding structure, as read from or written
749          * to a file, or read from or written by the data collector.
750          */
751         int fsize;
752         /*
753          * Size of an item.
754          * This is the size of the corresponding structure as mapped into memory.
755          * @msize can be different from @fsize when data are read from or written to
756          * a data file from a different sysstat version.
757          */
758         int msize;
759         /*
760          * Optional flags for activity. This is eg. used when AO_MULTIPLE_OUTPUTS
761          * option is set.
762          * 0x0001 - 0x0080 : Multiple outputs (eg. AO_F_MEM_AMT, AO_F_MEM_SWAP...)
763          * 0x0100 - 0x8000 : If bit set then display complete header (hdr_line) for
764          *                   corresponding output
765          * 0x010000+       : Optional flags
766          */
767         unsigned int opt_flags;
768         /*
769          * Buffers that will contain the statistics read. Its size is @nr * @nr2 * @size each.
770          * [0]: used by sadc.
771          * [0] and [1]: current/previous statistics values (used by sar).
772          * [2]: Used by sar to save first collected stats (used later to
773          * compute average).
774          */
775         void *buf[3];
776         /*
777          * Bitmap for activities that need one. Such a bitmap is needed by activity
778          * if @bitmap is not NULL.
779          */
780         struct act_bitmap *bitmap;
781 };
782
783
784 /*
785  ***************************************************************************
786  * Generic description of an output format for sadf (and sar).
787  ***************************************************************************
788  */
789
790 /* Type for all functions used by sadf to display stats in various formats */
791 #define __printf_funct_t void
792 #define __tm_funct_t char *
793
794 /*
795  * Structure used to define a report.
796  * A XML-like report has the following format:
797  *       __
798  *      |
799  *      | Header block
800  *      |  __
801  *      | |
802  *      | | Statistics block
803  *      | |  __
804  *      | | |
805  *      | | | Timestamp block
806  *      | | |  __
807  *      | | | |
808  *      | | | | Activity #1
809  *      | | | |__
810  *      | | | |
811  *      | | | | ...
812  *      | | | |__
813  *      | | | |
814  *      | | | | Activity #n
815  *      | | | |__
816  *      | | |__
817  *      | |__
818  *      | |
819  *      | | Restart messages block
820  *      | |__
821  *      | |
822  *      | | Comments block
823  *      | |__
824  *      |__
825  */
826 struct report_format {
827         /*
828          * This variable contains the identification value (F_...) for this report format.
829          */
830         unsigned int id;
831         /*
832          * Format options (FO_...).
833          */
834         unsigned int options;
835         /*
836          * This function displays the report header
837          * (data displayed once at the beginning of the report).
838          */
839         __printf_funct_t (*f_header) (void *, int, char *, struct file_magic *, struct file_header *,
840                                       __nr_t, struct activity * [], unsigned int []);
841         /*
842          * This function defines the statistics part of the report.
843          * Used only with textual (XML-like) reports.
844          */
845         __printf_funct_t (*f_statistics) (int *, int);
846         /*
847          * This function defines the timestamp part of the report.
848          * Used only with textual (XML-like) reports.
849          */
850         __tm_funct_t (*f_timestamp) (void *, int, char *, char *, unsigned long long,
851                                      struct file_header *, unsigned int);
852         /*
853          * This function displays the restart messages.
854          */
855         __printf_funct_t (*f_restart) (int *, int, char *, char *, int, struct file_header *,
856                                        unsigned int);
857         /*
858          * This function displays the comments.
859          */
860         __printf_funct_t (*f_comment) (int *, int, char *, char *, int, char *, struct file_header *);
861 };
862
863 /* Possible actions for functions used to display reports */
864 #define F_BEGIN 0x01
865 #define F_MAIN  0x02
866 #define F_END   0x04
867
868 /*
869  ***************************************************************************
870  * SVG output definitions
871  ***************************************************************************
872  */
873
874 /*
875  *   ^
876  * 1 | General header
877  *   v
878  *   ^   ^   ^
879  *   |   | 4 | Graph title
880  *   |   |   v
881  *   |   |   ^    |                                Caption
882  *   | 3 |   |    |
883  *   |   |   |  G |Y
884  * 2 |   | 5 |  r |
885  *   |   |   |  a |A
886  *   |   |   |  d |x
887  *   |   |   |  . |i
888  *   |   |   |    |s          X Axis
889  *   |   |   v    |-------------------------------
890  *   |   |              Grad.
891  *   |   v   <---><------------------------------>
892  *   |         6                8
893  *   | Gap
894  *   v<--------------------------------------------------------------->
895  *                                    7
896  */
897
898 /* #8 */
899 #define SVG_G_XSIZE     720
900 /* #6 */
901 #define SVG_M_XSIZE     70
902 /* #7 */
903 #define SVG_V_XSIZE     1050
904
905 /* #5 */
906 #define SVG_G_YSIZE     200
907 /* #1 */
908 #define SVG_H_YSIZE     50
909 /* #4 */
910 #define SVG_M_YSIZE     50
911 /* #2 */
912 #define SVG_T_YSIZE     310
913 /* #3 */
914 #define SVG_V_YSIZE     300
915
916 /* Grid: Nr of horizontal lines */
917 #define SVG_H_GRIDNR    3
918 /* Grid: Nr of vertical lines */
919 #define SVG_V_GRIDNR    10
920
921 /* Block size used to allocate arrays for graphs data */
922 #define CHUNKSIZE       4096
923
924 #define SVG_LINE_GRAPH  1
925 #define SVG_BAR_GRAPH   2
926
927 #define MAYBE   0x80
928
929 /*
930  ***************************************************************************
931  * Macro functions definitions.
932  *
933  * Note: Using 'do ... while' makes the macros safer to use
934  * (remember that macro use is followed by a semicolon).
935  ***************************************************************************
936  */
937
938 /* Close file descriptors */
939 #define CLOSE_ALL(_fd_)         do {                    \
940                                         close(_fd_[0]); \
941                                         close(_fd_[1]); \
942                                 } while (0)
943
944 #define CLOSE(_fd_)             if (_fd_ >= 0)          \
945                                         close(_fd_)
946
947
948 /*
949  ***************************************************************************
950  * Various structure definitions.
951  ***************************************************************************
952  */
953
954 /* Structure for timestamps */
955 struct tstamp {
956         int tm_sec;
957         int tm_min;
958         int tm_hour;
959         int use;
960 };
961
962
963 /*
964  ***************************************************************************
965  * Functions prototypes.
966  ***************************************************************************
967  */
968
969 /* Functions used to count number of items */
970 __nr_t wrap_get_cpu_nr
971         (struct activity *);
972 __nr_t wrap_get_irq_nr
973         (struct activity *);
974 __nr_t wrap_get_serial_nr
975         (struct activity *);
976 __nr_t wrap_get_disk_nr
977         (struct activity *);
978 __nr_t wrap_get_iface_nr
979         (struct activity *);
980 __nr_t wrap_get_fan_nr
981         (struct activity *);
982 __nr_t wrap_get_temp_nr
983         (struct activity *);
984 __nr_t wrap_get_in_nr
985         (struct activity *);
986 __nr_t wrap_get_freq_nr
987         (struct activity *);
988 __nr_t wrap_get_usb_nr
989         (struct activity *);
990 __nr_t wrap_get_filesystem_nr
991         (struct activity *);
992 __nr_t wrap_get_fchost_nr
993         (struct activity *);
994
995 /* Functions used to read activities statistics */
996 __read_funct_t wrap_read_stat_cpu
997         (struct activity *);
998 __read_funct_t wrap_read_stat_pcsw
999         (struct activity *);
1000 __read_funct_t wrap_read_stat_irq
1001         (struct activity *);
1002 __read_funct_t wrap_read_swap
1003         (struct activity *);
1004 __read_funct_t wrap_read_paging
1005         (struct activity *);
1006 __read_funct_t wrap_read_io
1007         (struct activity *);
1008 __read_funct_t wrap_read_meminfo
1009         (struct activity *);
1010 __read_funct_t wrap_read_kernel_tables
1011         (struct activity *);
1012 __read_funct_t wrap_read_loadavg
1013         (struct activity *);
1014 __read_funct_t wrap_read_tty_driver_serial
1015         (struct activity *);
1016 __read_funct_t wrap_read_disk
1017         (struct activity *);
1018 __read_funct_t wrap_read_net_dev
1019         (struct activity *);
1020 __read_funct_t wrap_read_net_edev
1021         (struct activity *);
1022 __read_funct_t wrap_read_net_nfs
1023         (struct activity *);
1024 __read_funct_t wrap_read_net_nfsd
1025         (struct activity *);
1026 __read_funct_t wrap_read_net_sock
1027         (struct activity *);
1028 __read_funct_t wrap_read_net_ip
1029         (struct activity *);
1030 __read_funct_t wrap_read_net_eip
1031         (struct activity *);
1032 __read_funct_t wrap_read_net_icmp
1033         (struct activity *);
1034 __read_funct_t wrap_read_net_eicmp
1035         (struct activity *);
1036 __read_funct_t wrap_read_net_tcp
1037         (struct activity *);
1038 __read_funct_t wrap_read_net_etcp
1039         (struct activity *);
1040 __read_funct_t wrap_read_net_udp
1041         (struct activity *);
1042 __read_funct_t wrap_read_net_sock6
1043         (struct activity *);
1044 __read_funct_t wrap_read_net_ip6
1045         (struct activity *);
1046 __read_funct_t wrap_read_net_eip6
1047         (struct activity *);
1048 __read_funct_t wrap_read_net_icmp6
1049         (struct activity *);
1050 __read_funct_t wrap_read_net_eicmp6
1051         (struct activity *);
1052 __read_funct_t wrap_read_net_udp6
1053         (struct activity *);
1054 __read_funct_t wrap_read_cpuinfo
1055         (struct activity *);
1056 __read_funct_t wrap_read_fan
1057         (struct activity *);
1058 __read_funct_t wrap_read_temp
1059         (struct activity *);
1060 __read_funct_t wrap_read_in
1061         (struct activity *);
1062 __read_funct_t wrap_read_meminfo_huge
1063         (struct activity *);
1064 __read_funct_t wrap_read_time_in_state
1065         (struct activity *);
1066 __read_funct_t wrap_read_bus_usb_dev
1067         (struct activity *);
1068 __read_funct_t wrap_read_filesystem
1069         (struct activity *);
1070 __read_funct_t wrap_read_fchost
1071         (struct activity *);
1072
1073 /* Other functions */
1074 void allocate_bitmaps
1075         (struct activity * []);
1076 void allocate_structures
1077         (struct activity * []);
1078 int check_alt_sa_dir
1079         (char *, int, int);
1080 int check_disk_reg
1081         (struct activity *, int, int, int);
1082 void check_file_actlst
1083         (int *, char *, struct activity * [], struct file_magic *, struct file_header *,
1084          struct file_activity **, unsigned int [], int);
1085 unsigned int check_net_dev_reg
1086         (struct activity *, int, int, unsigned int);
1087 unsigned int check_net_edev_reg
1088         (struct activity *, int, int, unsigned int);
1089 double compute_ifutil
1090         (struct stats_net_dev *, double, double);
1091 void copy_structures
1092         (struct activity * [], unsigned int [], struct record_header [], int, int);
1093 int datecmp
1094         (struct tm *, struct tstamp *);
1095 void display_sa_file_version
1096         (FILE *, struct file_magic *);
1097 void enum_version_nr
1098         (struct file_magic *);
1099 void free_bitmaps
1100         (struct activity * []);
1101 void free_structures
1102         (struct activity * []);
1103 int get_activity_nr
1104         (struct activity * [], unsigned int, int);
1105 int get_activity_position
1106         (struct activity * [], unsigned int, int);
1107 char *get_devname
1108         (unsigned int, unsigned int, int);
1109 void get_file_timestamp_struct
1110         (unsigned int, struct tm *, struct file_header *);
1111 void get_itv_value
1112         (struct record_header *, struct record_header *, unsigned int,
1113          unsigned long long *, unsigned long long *);
1114 void handle_invalid_sa_file
1115         (int *, struct file_magic *, char *, int);
1116 int next_slice
1117         (unsigned long long, unsigned long long, int, long);
1118 int parse_sar_opt
1119         (char * [], int *, struct activity * [], unsigned int *, int);
1120 int parse_sar_I_opt
1121         (char * [], int *, struct activity * []);
1122 int parse_sa_P_opt
1123         (char * [], int *, unsigned int *, struct activity * []);
1124 int parse_sar_m_opt
1125         (char * [], int *, struct activity * []);
1126 int parse_sar_n_opt
1127         (char * [], int *, struct activity * []);
1128 int parse_timestamp
1129         (char * [], int *, struct tstamp *, const char *);
1130 void print_report_hdr
1131         (unsigned int, struct tm *, struct file_header *, int);
1132 void print_sar_comment
1133         (int *, int, char *, char *, int, char *, struct file_header *);
1134 void print_sar_restart
1135         (int *, int, char *, char *, int, struct file_header *, unsigned int);
1136 int print_special_record
1137         (struct record_header *, unsigned int, struct tstamp *, struct tstamp *,
1138          int, int, struct tm *, struct tm *, char *, int, struct file_magic *,
1139          struct file_header *, struct activity * [], struct report_format *);
1140 void read_file_stat_bunch
1141         (struct activity * [], int, int, int, struct file_activity *);
1142 __nr_t read_vol_act_structures
1143         (int, struct activity * [], char *, struct file_magic *, unsigned int);
1144 int reallocate_vol_act_structures
1145         (struct activity * [], unsigned int, unsigned int);
1146 void replace_nonprintable_char
1147         (int, char *);
1148 int sa_fread
1149         (int, void *, int, int);
1150 int sa_get_record_timestamp_struct
1151         (unsigned int, struct record_header *, struct tm *, struct tm *);
1152 int sa_open_read_magic
1153         (int *, char *, struct file_magic *, int);
1154 void select_all_activities
1155         (struct activity * []);
1156 void select_default_activity
1157         (struct activity * []);
1158 void set_bitmap
1159         (unsigned char [], unsigned char, unsigned int);
1160 void set_default_file
1161         (char *, int, int);
1162 void set_hdr_rectime
1163         (unsigned int, struct tm *, struct file_header *);
1164 void set_record_timestamp_string
1165         (unsigned int, struct record_header *, char *, char *, int, struct tm *);
1166
1167 #endif  /* _SA_H */