1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*
Copyright (c) 2008-2012 Red Hat, Inc. <http://www.redhat.com>
This file is part of GlusterFS.
This file is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3 or
later), or the GNU General Public License, version 2 (GPLv2), in all
cases as published by the Free Software Foundation.
*/
#ifndef STATEDUMP_H
#define STATEDUMP_H
#include <stdarg.h>
#include "inode.h"
#include "strfd.h"
#define GF_DUMP_MAX_BUF_LEN 4096
typedef struct gf_dump_xl_options_ {
gf_boolean_t dump_priv;
gf_boolean_t dump_inode;
gf_boolean_t dump_fd;
gf_boolean_t dump_inodectx;
gf_boolean_t dump_fdctx;
gf_boolean_t dump_history;
} gf_dump_xl_options_t;
typedef struct gf_dump_options_ {
gf_boolean_t dump_mem;
gf_boolean_t dump_iobuf;
gf_boolean_t dump_callpool;
gf_dump_xl_options_t xl_options; // options for all xlators
char *dump_path;
} gf_dump_options_t;
extern gf_dump_options_t dump_options;
__attribute__((__format__(__printf__, 3, 4))) static inline void
_gf_proc_dump_build_key(char *key, const char *prefix, const char *fmt, ...)
{
va_list ap;
int32_t len;
len = snprintf(key, GF_DUMP_MAX_BUF_LEN, "%s.", prefix);
if (len >= 0) {
va_start(ap, fmt);
len = vsnprintf(key + len, GF_DUMP_MAX_BUF_LEN - len, fmt, ap);
va_end(ap);
}
if (len < 0) {
*key = 0;
}
}
#define gf_proc_dump_build_key(key, key_prefix, fmt...) \
{ \
_gf_proc_dump_build_key(key, key_prefix, ##fmt); \
}
#define GF_PROC_DUMP_SET_OPTION(opt, val) opt = val
#define GF_CHECK_DUMP_OPTION_ENABLED(option_dump, var, label) \
do { \
if (option_dump == _gf_true) { \
var = _gf_false; \
goto label; \
} \
} while (0);
void
gf_proc_dump_init();
void
gf_proc_dump_fini(void);
void
gf_proc_dump_cleanup(void);
void
gf_proc_dump_info(int signum, glusterfs_ctx_t *ctx);
int
gf_proc_dump_add_section(char *key, ...);
int
gf_proc_dump_write(char *key, char *value, ...);
void
inode_table_dump(inode_table_t *itable, char *prefix);
void
inode_table_dump_to_dict(inode_table_t *itable, char *prefix, dict_t *dict);
void
fdtable_dump(fdtable_t *fdtable, char *prefix);
void
fdtable_dump_to_dict(fdtable_t *fdtable, char *prefix, dict_t *dict);
void
inode_dump(inode_t *inode, char *prefix);
void
gf_proc_dump_mem_info_to_dict(dict_t *dict);
void
gf_proc_dump_mempool_info_to_dict(glusterfs_ctx_t *ctx, dict_t *dict);
void
glusterd_init(int sig);
void
gf_proc_dump_xlator_private(xlator_t *this, strfd_t *strfd);
void
gf_proc_dump_mallinfo(strfd_t *strfd);
void
gf_proc_dump_xlator_history(xlator_t *this, strfd_t *strfd);
void
gf_proc_dump_xlator_meminfo(xlator_t *this, strfd_t *strfd);
void
gf_proc_dump_xlator_profile(xlator_t *this, strfd_t *strfd);
#endif /* STATEDUMP_H */
|