forked from cleech/open-isns
-
Notifications
You must be signed in to change notification settings - Fork 22
/
util.c
268 lines (223 loc) · 4.17 KB
/
util.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/*
* util.c
*
* Misc utility functions
*
* Copyright (C) 2006, 2007 Olaf Kirch <olaf.kirch@oracle.com>
*/
#include <sys/stat.h>
#include <stdlib.h>
#include <string.h>
#include <err.h>
#include <errno.h>
#include <libisns/util.h>
unsigned long
parse_size(const char *arg)
{
unsigned long mult = 1, ret;
char *s;
ret = strtol(arg, &s, 0);
switch (*s++) {
case 'g':
case 'G':
mult = 1024 * 1024 * 1024;
break;
case 'm':
case 'M':
mult = 1024 * 1024;
break;
case 'k':
case 'K':
mult = 1024;
break;
case '\0':
return ret;
default:
bad:
err(1, "parse_size: unknown unit in \"%s\"", arg);
}
if (*s != '\0')
goto bad;
return mult * ret;
}
char *
print_size(unsigned long size)
{
static char unit[] = "-kMG";
static char buffer[64];
unsigned int power = 0;
/* allow size to be divided 3 times at most (k,M,G) */
unsigned int max_loops = 3;
while (size && !(size % 1024) && power < max_loops) {
size /= 1024;
power++;
}
if (!power) {
snprintf(buffer, sizeof(buffer), "%lu", size);
} else {
snprintf(buffer, sizeof(buffer), "%lu%c",
size, unit[power]);
}
return buffer;
}
unsigned int
parse_count(const char *arg)
{
unsigned long ret;
char *s;
ret = strtoul(arg, &s, 0);
if (*s != '\0')
err(1, "parse_count: unexpected character in \"%s\"", arg);
return ret;
}
int
parse_int(const char *arg)
{
long ret;
char *s;
ret = strtol(arg, &s, 0);
if (*s != '\0')
err(1, "parse_count: unexpected character in \"%s\"", arg);
return ret;
}
long long
parse_longlong(const char *arg)
{
long long ret;
char *s;
ret = strtoll(arg, &s, 0);
if (*s != '\0')
err(1, "parse_count: unexpected character in \"%s\"", arg);
return ret;
}
double
parse_double(const char *arg)
{
double ret;
char *s;
ret = strtod(arg, &s);
if (*s != '\0')
err(1, "parse_count: unexpected character in \"%s\"", arg);
return ret;
}
unsigned int
parse_timeout(const char *arg)
{
unsigned int v, ret = 0;
char *s;
do {
v = strtoul(arg, &s, 10);
switch (*s) {
case '\0':
ret += v;
break;
case 'd': /* days */
v *= 24;
/* fallthru */
case 'h': /* hours */
v *= 60;
/* fallthru */
case 'm': /* minutes */
v *= 60;
/* fallthru */
case 's': /* seconds */
ret += v;
++s;
break;
default:
errx(1, "parse_timeout: unexpected character in \"%s\"\n",
arg);
}
arg = s;
} while (*arg);
return ret;
}
void
isns_string_array_append(struct string_array *array, const char *val)
{
if (!(array->count % 32)) {
array->list = isns_realloc(array->list,
(array->count + 32) * sizeof(val));
}
array->list[array->count++] = val? isns_strdup(val) : NULL;
}
void
isns_string_array_destroy(struct string_array *array)
{
unsigned int i;
for (i = 0; i < array->count; ++i)
isns_free(array->list[i]);
isns_free(array->list);
memset(array, 0, sizeof(*array));
}
void
isns_assign_string(char **var, const char *val)
{
char *s = NULL;
if (val && !(s = isns_strdup(val)))
errx(1, "out of memory");
if (*var)
isns_free(*var);
*var = s;
}
/*
* Recursively create a directory
*/
int
isns_mkdir_recursive(const char *pathname)
{
const char *orig_pathname = pathname;
char *squirrel[64];
char *copy = NULL, *s;
int ns = 0;
if (!pathname || !strcmp(pathname, "."))
return 0;
while (1) {
if (mkdir(pathname, 0755) >= 0) {
if (ns == 0)
break;
*squirrel[--ns] = '/';
continue;
}
if (errno == EEXIST)
goto good;
if (errno != ENOENT)
goto bad;
if (copy == NULL) {
copy = isns_strdup(pathname);
pathname = copy;
}
s = strrchr(copy, '/');
while (s > copy && s[-1] == '/')
--s;
*s = '\0';
isns_assert(ns < 64);
squirrel[ns++] = s;
if (s == copy)
goto bad;
}
good: if (copy)
isns_free(copy);
errno = 0;
return 0;
bad: if (copy)
isns_free(copy);
perror(orig_pathname);
return -1;
}
/*
* This one differs from POSIX dirname; it does not
* modify its argument
*/
const char *
isns_dirname(const char *pathname)
{
static char buffer[4096];
char *s;
strcpy(buffer, pathname);
if ((s = strrchr(buffer, '/')) != NULL) {
*s = '\0';
return buffer;
}
return ".";
}