-
Notifications
You must be signed in to change notification settings - Fork 33
/
debug-flags.c
172 lines (151 loc) · 4.93 KB
/
debug-flags.c
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* nbdkit
* Copyright Red Hat
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Red Hat nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
#include "internal.h"
#include "strndup.h"
struct debug_flag {
struct debug_flag *next;
char *name; /* plugin or filter name */
char *flag; /* flag name */
char *symbol; /* symbol, eg. "myplugin_debug_foo" */
int value; /* value of flag */
bool used; /* if flag was successfully set */
};
/* Synthesize the name of the *_debug_* variable from the plugin name
* and flag.
*/
static char *
symbol_of_debug_flag (const char *name, const char *flag)
{
char *var;
size_t i;
int len;
len = asprintf (&var, "%s_debug_%s", name, flag);
if (len == -1) {
perror ("asprintf");
exit (EXIT_FAILURE);
}
/* If there are any '.'s remaining in the name, convert them to '_'. */
for (i = 0; i < (size_t) len; ++i) {
if (var[i] == '.')
var[i] = '_';
}
return var; /* caller frees */
}
/* Parse and add a single -D flag from the command line.
*
* Debug Flag must be "NAME.FLAG=N".
* ^ ^ ^
* arg p q (after +1 adjustment below)
*/
void
add_debug_flag (const char *arg)
{
struct debug_flag *flag;
char *p, *q;
p = strchr (arg, '.');
q = strchr (arg, '=');
if (p == NULL || q == NULL) {
bad_debug_flag:
fprintf (stderr,
"%s: -D (Debug Flag) must have the format NAME.FLAG=N\n",
program_name);
exit (EXIT_FAILURE);
}
p++; /* +1 adjustment */
q++;
if (p - arg <= 1) goto bad_debug_flag; /* NAME too short */
if (p > q) goto bad_debug_flag;
if (q - p <= 1) goto bad_debug_flag; /* FLAG too short */
if (*q == '\0') goto bad_debug_flag; /* N too short */
flag = malloc (sizeof *flag);
if (flag == NULL) {
debug_flag_perror:
perror ("malloc");
exit (EXIT_FAILURE);
}
flag->name = strndup (arg, p-arg-1);
if (!flag->name) goto debug_flag_perror;
flag->flag = strndup (p, q-p-1);
if (!flag->flag) goto debug_flag_perror;
if (nbdkit_parse_int ("flag", q, &flag->value) == -1)
goto bad_debug_flag;
flag->used = false;
flag->symbol = symbol_of_debug_flag (flag->name, flag->flag);
/* Add flag to the linked list. */
flag->next = debug_flags;
debug_flags = flag;
}
/* Apply all debug flags applicable to this backend. */
void
apply_debug_flags (void *dl, const char *name)
{
struct debug_flag *flag;
for (flag = debug_flags; flag != NULL; flag = flag->next) {
if (!flag->used && strcmp (name, flag->name) == 0) {
int *sym;
/* Find the symbol. */
sym = dlsym (dl, flag->symbol);
if (sym) {
/* Set the flag. */
*sym = flag->value;
}
else {
fprintf (stderr,
"%s: warning: -D %s.%s: %s does not contain a "
"global variable called %s\n",
program_name, name, flag->flag, name, flag->symbol);
}
/* Mark this flag as used. */
flag->used = true;
}
}
}
void
free_debug_flags (void)
{
while (debug_flags != NULL) {
struct debug_flag *next = debug_flags->next;
if (!debug_flags->used)
fprintf (stderr, "%s: warning: debug flag -D %s.%s was not used\n",
program_name, debug_flags->name, debug_flags->flag);
free (debug_flags->name);
free (debug_flags->flag);
free (debug_flags->symbol);
free (debug_flags);
debug_flags = next;
}
}