]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/contrib/openzfs/include/os/freebsd/spl/sys/kstat.h
OpenZFS: MFV 2.0-rc3-gfc5966
[FreeBSD/FreeBSD.git] / sys / contrib / openzfs / include / os / freebsd / spl / sys / kstat.h
1 /*
2  *  Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3  *  Copyright (C) 2007 The Regents of the University of California.
4  *  Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5  *  Written by Brian Behlendorf <behlendorf1@llnl.gov>.
6  *  UCRL-CODE-235197
7  *
8  *  This file is part of the SPL, Solaris Porting Layer.
9  *  For details, see <http://zfsonlinux.org/>.
10  *
11  *  The SPL is free software; you can redistribute it and/or modify it
12  *  under the terms of the GNU General Public License as published by the
13  *  Free Software Foundation; either version 2 of the License, or (at your
14  *  option) any later version.
15  *
16  *  The SPL is distributed in the hope that it will be useful, but WITHOUT
17  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19  *  for more details.
20  *
21  *  You should have received a copy of the GNU General Public License along
22  *  with the SPL.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25 #ifndef _SPL_KSTAT_H
26 #define _SPL_KSTAT_H
27 #include <sys/types.h>
28 #include <sys/sysctl.h>
29 struct list_head {};
30 #include <sys/mutex.h>
31 #include <sys/proc.h>
32
33 #define KSTAT_STRLEN            255
34 #define KSTAT_RAW_MAX           (128*1024)
35
36 /*
37  * For reference valid classes are:
38  * disk, tape, net, controller, vm, kvm, hat, streams, kstat, misc
39  */
40
41 #define KSTAT_TYPE_RAW          0 /* can be anything; ks_ndata >= 1 */
42 #define KSTAT_TYPE_NAMED        1 /* name/value pair; ks_ndata >= 1 */
43 #define KSTAT_TYPE_INTR         2 /* interrupt stats; ks_ndata == 1 */
44 #define KSTAT_TYPE_IO           3 /* I/O stats; ks_ndata == 1 */
45 #define KSTAT_TYPE_TIMER        4 /* event timer; ks_ndata >= 1 */
46 #define KSTAT_NUM_TYPES         5
47
48 #define KSTAT_DATA_CHAR         0
49 #define KSTAT_DATA_INT32        1
50 #define KSTAT_DATA_UINT32       2
51 #define KSTAT_DATA_INT64        3
52 #define KSTAT_DATA_UINT64       4
53 #define KSTAT_DATA_LONG         5
54 #define KSTAT_DATA_ULONG        6
55 #define KSTAT_DATA_STRING       7
56 #define KSTAT_NUM_DATAS         8
57
58 #define KSTAT_INTR_HARD         0
59 #define KSTAT_INTR_SOFT         1
60 #define KSTAT_INTR_WATCHDOG     2
61 #define KSTAT_INTR_SPURIOUS     3
62 #define KSTAT_INTR_MULTSVC      4
63 #define KSTAT_NUM_INTRS         5
64
65 #define KSTAT_FLAG_VIRTUAL      0x01
66 #define KSTAT_FLAG_VAR_SIZE     0x02
67 #define KSTAT_FLAG_WRITABLE     0x04
68 #define KSTAT_FLAG_PERSISTENT   0x08
69 #define KSTAT_FLAG_DORMANT      0x10
70 #define KSTAT_FLAG_INVALID      0x20
71 #define KSTAT_FLAG_LONGSTRINGS  0x40
72 #define KSTAT_FLAG_NO_HEADERS   0x80
73
74 #define KS_MAGIC                0x9d9d9d9d
75
76 /* Dynamic updates */
77 #define KSTAT_READ              0
78 #define KSTAT_WRITE             1
79
80 struct kstat_s;
81 typedef struct kstat_s kstat_t;
82
83 typedef int kid_t;                              /* unique kstat id */
84 typedef int kstat_update_t(struct kstat_s *, int); /* dynamic update cb */
85
86 struct seq_file {
87         char *sf_buf;
88         size_t sf_size;
89 };
90
91 void seq_printf(struct seq_file *m, const char *fmt, ...);
92
93
94 typedef struct kstat_module {
95         char ksm_name[KSTAT_STRLEN+1];          /* module name */
96         struct list_head ksm_module_list;       /* module linkage */
97         struct list_head ksm_kstat_list;        /* list of kstat entries */
98         struct proc_dir_entry *ksm_proc;        /* proc entry */
99 } kstat_module_t;
100
101 typedef struct kstat_raw_ops {
102         int (*headers)(char *buf, size_t size);
103         int (*seq_headers)(struct seq_file *);
104         int (*data)(char *buf, size_t size, void *data);
105         void *(*addr)(kstat_t *ksp, loff_t index);
106 } kstat_raw_ops_t;
107
108 struct kstat_s {
109         int             ks_magic;               /* magic value */
110         kid_t           ks_kid;                 /* unique kstat ID */
111         hrtime_t        ks_crtime;              /* creation time */
112         hrtime_t        ks_snaptime;            /* last access time */
113         char            ks_module[KSTAT_STRLEN+1]; /* provider module name */
114         int             ks_instance;            /* provider module instance */
115         char            ks_name[KSTAT_STRLEN+1]; /* kstat name */
116         char            ks_class[KSTAT_STRLEN+1]; /* kstat class */
117         uchar_t         ks_type;                /* kstat data type */
118         uchar_t         ks_flags;               /* kstat flags */
119         void            *ks_data;               /* kstat type-specific data */
120         uint_t          ks_ndata;               /* # of data records */
121         size_t          ks_data_size;           /* size of kstat data section */
122         kstat_update_t  *ks_update;             /* dynamic updates */
123         void            *ks_private;            /* private data */
124         void            *ks_private1;           /* private data */
125         kmutex_t        ks_private_lock;        /* kstat private data lock */
126         kmutex_t        *ks_lock;               /* kstat data lock */
127         struct list_head ks_list;               /* kstat linkage */
128         kstat_module_t  *ks_owner;              /* kstat module linkage */
129         kstat_raw_ops_t ks_raw_ops;             /* ops table for raw type */
130         char            *ks_raw_buf;            /* buf used for raw ops */
131         size_t          ks_raw_bufsize;         /* size of raw ops buffer */
132         struct sysctl_ctx_list ks_sysctl_ctx;
133         struct sysctl_oid *ks_sysctl_root;
134
135 };
136
137 typedef struct kstat_named_s {
138         char    name[KSTAT_STRLEN];     /* name of counter */
139         uchar_t data_type;              /* data type */
140         union {
141                 char c[16];     /* 128-bit int */
142                 int32_t i32;    /* 32-bit signed int */
143                 uint32_t ui32;  /* 32-bit unsigned int */
144                 int64_t i64;    /* 64-bit signed int */
145                 uint64_t ui64;  /* 64-bit unsigned int */
146                 long l;         /* native signed long */
147                 ulong_t ul;     /* native unsigned long */
148                 struct {
149                         union {
150                                 char *ptr;      /* NULL-term string */
151                                 char __pad[8];  /* 64-bit padding */
152                         } addr;
153                         uint32_t len;           /* # bytes for strlen + '\0' */
154                 } string;
155         } value;
156 } kstat_named_t;
157
158 #define KSTAT_NAMED_STR_PTR(knptr) ((knptr)->value.string.addr.ptr)
159 #define KSTAT_NAMED_STR_BUFLEN(knptr) ((knptr)->value.string.len)
160
161 typedef struct kstat_intr {
162         uint_t intrs[KSTAT_NUM_INTRS];
163 } kstat_intr_t;
164
165 typedef struct kstat_io {
166         u_longlong_t    nread;          /* number of bytes read */
167         u_longlong_t    nwritten;       /* number of bytes written */
168         uint_t          reads;          /* number of read operations */
169         uint_t          writes;         /* number of write operations */
170         hrtime_t        wtime;          /* cumulative wait (pre-service) time */
171         hrtime_t        wlentime;       /* cumulative wait len*time product */
172         hrtime_t        wlastupdate;    /* last time wait queue changed */
173         hrtime_t        rtime;          /* cumulative run (service) time */
174         hrtime_t        rlentime;       /* cumulative run length*time product */
175         hrtime_t        rlastupdate;    /* last time run queue changed */
176         uint_t          wcnt;           /* count of elements in wait state */
177         uint_t          rcnt;           /* count of elements in run state */
178 } kstat_io_t;
179
180 typedef struct kstat_timer {
181         char            name[KSTAT_STRLEN+1]; /* event name */
182         u_longlong_t    num_events;      /* number of events */
183         hrtime_t        elapsed_time;    /* cumulative elapsed time */
184         hrtime_t        min_time;        /* shortest event duration */
185         hrtime_t        max_time;        /* longest event duration */
186         hrtime_t        start_time;      /* previous event start time */
187         hrtime_t        stop_time;       /* previous event stop time */
188 } kstat_timer_t;
189
190 int spl_kstat_init(void);
191 void spl_kstat_fini(void);
192
193 extern void __kstat_set_raw_ops(kstat_t *ksp,
194     int (*headers)(char *buf, size_t size),
195     int (*data)(char *buf, size_t size, void *data),
196     void* (*addr)(kstat_t *ksp, loff_t index));
197
198 extern void __kstat_set_seq_raw_ops(kstat_t *ksp,
199     int (*headers)(struct seq_file *),
200     int (*data)(char *buf, size_t size, void *data),
201     void* (*addr)(kstat_t *ksp, loff_t index));
202
203
204 extern kstat_t *__kstat_create(const char *ks_module, int ks_instance,
205     const char *ks_name, const char *ks_class, uchar_t ks_type,
206     uint_t ks_ndata, uchar_t ks_flags);
207
208 extern void __kstat_install(kstat_t *ksp);
209 extern void __kstat_delete(kstat_t *ksp);
210 extern void kstat_waitq_enter(kstat_io_t *);
211 extern void kstat_waitq_exit(kstat_io_t *);
212 extern void kstat_runq_enter(kstat_io_t *);
213 extern void kstat_runq_exit(kstat_io_t *);
214
215 #define kstat_set_seq_raw_ops(k, h, d, a) \
216     __kstat_set_seq_raw_ops(k, h, d, a)
217 #define kstat_set_raw_ops(k, h, d, a) \
218     __kstat_set_raw_ops(k, h, d, a)
219 #define kstat_create(m, i, n, c, t, s, f) \
220     __kstat_create(m, i, n, c, t, s, f)
221
222 #define kstat_install(k)                __kstat_install(k)
223 #define kstat_delete(k)                 __kstat_delete(k)
224
225 #endif  /* _SPL_KSTAT_H */