]>
Commit | Line | Data |
---|---|---|
18607dcb FB |
1 | /* |
2 | * Simple C functions to supplement the C library | |
5fafdf24 | 3 | * |
18607dcb FB |
4 | * Copyright (c) 2006 Fabrice Bellard |
5 | * | |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
faf07963 | 24 | #include "qemu-common.h" |
8d371d4b | 25 | #include "host-utils.h" |
9f9b17a4 | 26 | #include <math.h> |
18607dcb | 27 | |
8c5135f9 | 28 | #include "qemu_socket.h" |
3d9b4925 | 29 | #include "iov.h" |
8c5135f9 | 30 | |
18607dcb FB |
31 | void pstrcpy(char *buf, int buf_size, const char *str) |
32 | { | |
33 | int c; | |
34 | char *q = buf; | |
35 | ||
36 | if (buf_size <= 0) | |
37 | return; | |
38 | ||
39 | for(;;) { | |
40 | c = *str++; | |
41 | if (c == 0 || q >= buf + buf_size - 1) | |
42 | break; | |
43 | *q++ = c; | |
44 | } | |
45 | *q = '\0'; | |
46 | } | |
47 | ||
48 | /* strcat and truncate. */ | |
49 | char *pstrcat(char *buf, int buf_size, const char *s) | |
50 | { | |
51 | int len; | |
52 | len = strlen(buf); | |
5fafdf24 | 53 | if (len < buf_size) |
18607dcb FB |
54 | pstrcpy(buf + len, buf_size - len, s); |
55 | return buf; | |
56 | } | |
57 | ||
58 | int strstart(const char *str, const char *val, const char **ptr) | |
59 | { | |
60 | const char *p, *q; | |
61 | p = str; | |
62 | q = val; | |
63 | while (*q != '\0') { | |
64 | if (*p != *q) | |
65 | return 0; | |
66 | p++; | |
67 | q++; | |
68 | } | |
69 | if (ptr) | |
70 | *ptr = p; | |
71 | return 1; | |
72 | } | |
73 | ||
74 | int stristart(const char *str, const char *val, const char **ptr) | |
75 | { | |
76 | const char *p, *q; | |
77 | p = str; | |
78 | q = val; | |
79 | while (*q != '\0') { | |
cd390083 | 80 | if (qemu_toupper(*p) != qemu_toupper(*q)) |
18607dcb FB |
81 | return 0; |
82 | p++; | |
83 | q++; | |
84 | } | |
85 | if (ptr) | |
86 | *ptr = p; | |
87 | return 1; | |
88 | } | |
3c6b2088 | 89 | |
d43277c5 BS |
90 | /* XXX: use host strnlen if available ? */ |
91 | int qemu_strnlen(const char *s, int max_len) | |
92 | { | |
93 | int i; | |
94 | ||
95 | for(i = 0; i < max_len; i++) { | |
96 | if (s[i] == '\0') { | |
97 | break; | |
98 | } | |
99 | } | |
100 | return i; | |
101 | } | |
102 | ||
3c6b2088 FB |
103 | time_t mktimegm(struct tm *tm) |
104 | { | |
105 | time_t t; | |
106 | int y = tm->tm_year + 1900, m = tm->tm_mon + 1, d = tm->tm_mday; | |
107 | if (m < 3) { | |
108 | m += 12; | |
109 | y--; | |
110 | } | |
111 | t = 86400 * (d + (153 * m - 457) / 5 + 365 * y + y / 4 - y / 100 + | |
112 | y / 400 - 719469); | |
113 | t += 3600 * tm->tm_hour + 60 * tm->tm_min + tm->tm_sec; | |
114 | return t; | |
115 | } | |
b39ade83 | 116 | |
ad46db9a | 117 | int qemu_fls(int i) |
b39ade83 | 118 | { |
8d371d4b | 119 | return 32 - clz32(i); |
b39ade83 | 120 | } |
44e3ee8a | 121 | |
6f1953c4 CH |
122 | /* |
123 | * Make sure data goes on disk, but if possible do not bother to | |
124 | * write out the inode just for timestamp updates. | |
125 | * | |
126 | * Unfortunately even in 2009 many operating systems do not support | |
127 | * fdatasync and have to fall back to fsync. | |
128 | */ | |
129 | int qemu_fdatasync(int fd) | |
130 | { | |
5f6b9e8f | 131 | #ifdef CONFIG_FDATASYNC |
6f1953c4 CH |
132 | return fdatasync(fd); |
133 | #else | |
134 | return fsync(fd); | |
135 | #endif | |
136 | } | |
137 | ||
44e3ee8a AL |
138 | /* io vectors */ |
139 | ||
140 | void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint) | |
141 | { | |
7267c094 | 142 | qiov->iov = g_malloc(alloc_hint * sizeof(struct iovec)); |
44e3ee8a AL |
143 | qiov->niov = 0; |
144 | qiov->nalloc = alloc_hint; | |
249aa745 | 145 | qiov->size = 0; |
44e3ee8a AL |
146 | } |
147 | ||
522584a5 AL |
148 | void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov) |
149 | { | |
150 | int i; | |
151 | ||
152 | qiov->iov = iov; | |
153 | qiov->niov = niov; | |
154 | qiov->nalloc = -1; | |
155 | qiov->size = 0; | |
156 | for (i = 0; i < niov; i++) | |
157 | qiov->size += iov[i].iov_len; | |
158 | } | |
159 | ||
44e3ee8a AL |
160 | void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len) |
161 | { | |
522584a5 AL |
162 | assert(qiov->nalloc != -1); |
163 | ||
44e3ee8a AL |
164 | if (qiov->niov == qiov->nalloc) { |
165 | qiov->nalloc = 2 * qiov->nalloc + 1; | |
7267c094 | 166 | qiov->iov = g_realloc(qiov->iov, qiov->nalloc * sizeof(struct iovec)); |
44e3ee8a AL |
167 | } |
168 | qiov->iov[qiov->niov].iov_base = base; | |
169 | qiov->iov[qiov->niov].iov_len = len; | |
249aa745 | 170 | qiov->size += len; |
44e3ee8a AL |
171 | ++qiov->niov; |
172 | } | |
173 | ||
40b4f539 | 174 | /* |
1b093c48 MT |
175 | * Concatenates (partial) iovecs from src to the end of dst. |
176 | * It starts copying after skipping `soffset' bytes at the | |
177 | * beginning of src and adds individual vectors from src to | |
178 | * dst copies up to `sbytes' bytes total, or up to the end | |
179 | * of src if it comes first. This way, it is okay to specify | |
180 | * very large value for `sbytes' to indicate "up to the end | |
181 | * of src". | |
182 | * Only vector pointers are processed, not the actual data buffers. | |
40b4f539 | 183 | */ |
1b093c48 MT |
184 | void qemu_iovec_concat(QEMUIOVector *dst, |
185 | QEMUIOVector *src, size_t soffset, size_t sbytes) | |
40b4f539 KW |
186 | { |
187 | int i; | |
188 | size_t done; | |
1b093c48 | 189 | struct iovec *siov = src->iov; |
40b4f539 | 190 | assert(dst->nalloc != -1); |
1b093c48 MT |
191 | assert(src->size >= soffset); |
192 | for (i = 0, done = 0; done < sbytes && i < src->niov; i++) { | |
193 | if (soffset < siov[i].iov_len) { | |
194 | size_t len = MIN(siov[i].iov_len - soffset, sbytes - done); | |
195 | qemu_iovec_add(dst, siov[i].iov_base + soffset, len); | |
196 | done += len; | |
197 | soffset = 0; | |
b8a83a4f | 198 | } else { |
1b093c48 | 199 | soffset -= siov[i].iov_len; |
b8a83a4f | 200 | } |
40b4f539 | 201 | } |
1b093c48 | 202 | /* return done; */ |
b8a83a4f KW |
203 | } |
204 | ||
44e3ee8a AL |
205 | void qemu_iovec_destroy(QEMUIOVector *qiov) |
206 | { | |
522584a5 AL |
207 | assert(qiov->nalloc != -1); |
208 | ||
bd83b362 | 209 | qemu_iovec_reset(qiov); |
7267c094 | 210 | g_free(qiov->iov); |
bd83b362 PB |
211 | qiov->nalloc = 0; |
212 | qiov->iov = NULL; | |
44e3ee8a AL |
213 | } |
214 | ||
be959463 AL |
215 | void qemu_iovec_reset(QEMUIOVector *qiov) |
216 | { | |
522584a5 AL |
217 | assert(qiov->nalloc != -1); |
218 | ||
be959463 AL |
219 | qiov->niov = 0; |
220 | qiov->size = 0; | |
221 | } | |
222 | ||
d5e6b161 MT |
223 | size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset, |
224 | void *buf, size_t bytes) | |
44e3ee8a | 225 | { |
d5e6b161 | 226 | return iov_to_buf(qiov->iov, qiov->niov, offset, buf, bytes); |
44e3ee8a AL |
227 | } |
228 | ||
03396148 MT |
229 | size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset, |
230 | const void *buf, size_t bytes) | |
44e3ee8a | 231 | { |
03396148 | 232 | return iov_from_buf(qiov->iov, qiov->niov, offset, buf, bytes); |
44e3ee8a | 233 | } |
db1a4972 | 234 | |
3d9b4925 MT |
235 | size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset, |
236 | int fillc, size_t bytes) | |
b8a83a4f | 237 | { |
3d9b4925 | 238 | return iov_memset(qiov->iov, qiov->niov, offset, fillc, bytes); |
e0d9c6f9 CT |
239 | } |
240 | ||
1a6d39fd SH |
241 | /* |
242 | * Checks if a buffer is all zeroes | |
243 | * | |
244 | * Attention! The len must be a multiple of 4 * sizeof(long) due to | |
245 | * restriction of optimizations in this function. | |
246 | */ | |
247 | bool buffer_is_zero(const void *buf, size_t len) | |
248 | { | |
249 | /* | |
250 | * Use long as the biggest available internal data type that fits into the | |
251 | * CPU register and unroll the loop to smooth out the effect of memory | |
252 | * latency. | |
253 | */ | |
254 | ||
255 | size_t i; | |
256 | long d0, d1, d2, d3; | |
257 | const long * const data = buf; | |
258 | ||
259 | assert(len % (4 * sizeof(long)) == 0); | |
260 | len /= sizeof(long); | |
261 | ||
262 | for (i = 0; i < len; i += 4) { | |
263 | d0 = data[i + 0]; | |
264 | d1 = data[i + 1]; | |
265 | d2 = data[i + 2]; | |
266 | d3 = data[i + 3]; | |
267 | ||
268 | if (d0 || d1 || d2 || d3) { | |
269 | return false; | |
270 | } | |
271 | } | |
272 | ||
273 | return true; | |
274 | } | |
275 | ||
db1a4972 PB |
276 | #ifndef _WIN32 |
277 | /* Sets a specific flag */ | |
278 | int fcntl_setfl(int fd, int flag) | |
279 | { | |
280 | int flags; | |
281 | ||
282 | flags = fcntl(fd, F_GETFL); | |
283 | if (flags == -1) | |
284 | return -errno; | |
285 | ||
286 | if (fcntl(fd, F_SETFL, flags | flag) == -1) | |
287 | return -errno; | |
288 | ||
289 | return 0; | |
290 | } | |
291 | #endif | |
292 | ||
eba90e4e MA |
293 | static int64_t suffix_mul(char suffix, int64_t unit) |
294 | { | |
295 | switch (qemu_toupper(suffix)) { | |
296 | case STRTOSZ_DEFSUFFIX_B: | |
297 | return 1; | |
298 | case STRTOSZ_DEFSUFFIX_KB: | |
299 | return unit; | |
300 | case STRTOSZ_DEFSUFFIX_MB: | |
301 | return unit * unit; | |
302 | case STRTOSZ_DEFSUFFIX_GB: | |
303 | return unit * unit * unit; | |
304 | case STRTOSZ_DEFSUFFIX_TB: | |
305 | return unit * unit * unit * unit; | |
306 | } | |
307 | return -1; | |
308 | } | |
309 | ||
9f9b17a4 JS |
310 | /* |
311 | * Convert string to bytes, allowing either B/b for bytes, K/k for KB, | |
8dddfb55 | 312 | * M/m for MB, G/g for GB or T/t for TB. End pointer will be returned |
eba90e4e | 313 | * in *end, if not NULL. Return -1 on error. |
9f9b17a4 | 314 | */ |
a732e1ba JR |
315 | int64_t strtosz_suffix_unit(const char *nptr, char **end, |
316 | const char default_suffix, int64_t unit) | |
9f9b17a4 | 317 | { |
70b4f4bb | 318 | int64_t retval = -1; |
f3bd362a | 319 | char *endptr; |
eba90e4e | 320 | unsigned char c; |
9f9b17a4 JS |
321 | int mul_required = 0; |
322 | double val, mul, integral, fraction; | |
323 | ||
324 | errno = 0; | |
325 | val = strtod(nptr, &endptr); | |
326 | if (isnan(val) || endptr == nptr || errno != 0) { | |
327 | goto fail; | |
328 | } | |
7eb05349 JS |
329 | fraction = modf(val, &integral); |
330 | if (fraction != 0) { | |
9f9b17a4 JS |
331 | mul_required = 1; |
332 | } | |
9f9b17a4 | 333 | c = *endptr; |
eba90e4e MA |
334 | mul = suffix_mul(c, unit); |
335 | if (mul >= 0) { | |
336 | endptr++; | |
337 | } else { | |
338 | mul = suffix_mul(default_suffix, unit); | |
339 | assert(mul >= 0); | |
9f9b17a4 | 340 | } |
eba90e4e | 341 | if (mul == 1 && mul_required) { |
9f9b17a4 JS |
342 | goto fail; |
343 | } | |
70b4f4bb | 344 | if ((val * mul >= INT64_MAX) || val < 0) { |
9f9b17a4 JS |
345 | goto fail; |
346 | } | |
347 | retval = val * mul; | |
348 | ||
349 | fail: | |
350 | if (end) { | |
351 | *end = endptr; | |
352 | } | |
353 | ||
354 | return retval; | |
355 | } | |
d8427002 | 356 | |
a732e1ba JR |
357 | int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix) |
358 | { | |
fdc9c41a | 359 | return strtosz_suffix_unit(nptr, end, default_suffix, 1024); |
a732e1ba JR |
360 | } |
361 | ||
70b4f4bb | 362 | int64_t strtosz(const char *nptr, char **end) |
d8427002 JS |
363 | { |
364 | return strtosz_suffix(nptr, end, STRTOSZ_DEFSUFFIX_MB); | |
365 | } | |
443916d1 SB |
366 | |
367 | int qemu_parse_fd(const char *param) | |
368 | { | |
369 | int fd; | |
370 | char *endptr = NULL; | |
371 | ||
372 | fd = strtol(param, &endptr, 10); | |
373 | if (*endptr || (fd == 0 && param == endptr)) { | |
374 | return -1; | |
375 | } | |
376 | return fd; | |
377 | } |