megasas: Replace trace_megasas_dcmd_dump_frame()
[qemu/ar7.git] / cutils.c
blobe2bc1b89df1ebab2e4cc0bd77e1d8a43f35be9f2
1 /*
2 * Simple C functions to supplement the C library
4 * Copyright (c) 2006 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 #include "qemu-common.h"
25 #include "host-utils.h"
26 #include <math.h>
28 #include "qemu_socket.h"
29 #include "iov.h"
31 void pstrcpy(char *buf, int buf_size, const char *str)
33 int c;
34 char *q = buf;
36 if (buf_size <= 0)
37 return;
39 for(;;) {
40 c = *str++;
41 if (c == 0 || q >= buf + buf_size - 1)
42 break;
43 *q++ = c;
45 *q = '\0';
48 /* strcat and truncate. */
49 char *pstrcat(char *buf, int buf_size, const char *s)
51 int len;
52 len = strlen(buf);
53 if (len < buf_size)
54 pstrcpy(buf + len, buf_size - len, s);
55 return buf;
58 int strstart(const char *str, const char *val, const char **ptr)
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++;
69 if (ptr)
70 *ptr = p;
71 return 1;
74 int stristart(const char *str, const char *val, const char **ptr)
76 const char *p, *q;
77 p = str;
78 q = val;
79 while (*q != '\0') {
80 if (qemu_toupper(*p) != qemu_toupper(*q))
81 return 0;
82 p++;
83 q++;
85 if (ptr)
86 *ptr = p;
87 return 1;
90 /* XXX: use host strnlen if available ? */
91 int qemu_strnlen(const char *s, int max_len)
93 int i;
95 for(i = 0; i < max_len; i++) {
96 if (s[i] == '\0') {
97 break;
100 return i;
103 time_t mktimegm(struct tm *tm)
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--;
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;
117 int qemu_fls(int i)
119 return 32 - clz32(i);
123 * Make sure data goes on disk, but if possible do not bother to
124 * write out the inode just for timestamp updates.
126 * Unfortunately even in 2009 many operating systems do not support
127 * fdatasync and have to fall back to fsync.
129 int qemu_fdatasync(int fd)
131 #ifdef CONFIG_FDATASYNC
132 return fdatasync(fd);
133 #else
134 return fsync(fd);
135 #endif
138 /* io vectors */
140 void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint)
142 qiov->iov = g_malloc(alloc_hint * sizeof(struct iovec));
143 qiov->niov = 0;
144 qiov->nalloc = alloc_hint;
145 qiov->size = 0;
148 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov)
150 int i;
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;
160 void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len)
162 assert(qiov->nalloc != -1);
164 if (qiov->niov == qiov->nalloc) {
165 qiov->nalloc = 2 * qiov->nalloc + 1;
166 qiov->iov = g_realloc(qiov->iov, qiov->nalloc * sizeof(struct iovec));
168 qiov->iov[qiov->niov].iov_base = base;
169 qiov->iov[qiov->niov].iov_len = len;
170 qiov->size += len;
171 ++qiov->niov;
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.
184 void qemu_iovec_concat(QEMUIOVector *dst,
185 QEMUIOVector *src, size_t soffset, size_t sbytes)
187 int i;
188 size_t done;
189 struct iovec *siov = src->iov;
190 assert(dst->nalloc != -1);
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;
198 } else {
199 soffset -= siov[i].iov_len;
202 /* return done; */
205 void qemu_iovec_destroy(QEMUIOVector *qiov)
207 assert(qiov->nalloc != -1);
209 qemu_iovec_reset(qiov);
210 g_free(qiov->iov);
211 qiov->nalloc = 0;
212 qiov->iov = NULL;
215 void qemu_iovec_reset(QEMUIOVector *qiov)
217 assert(qiov->nalloc != -1);
219 qiov->niov = 0;
220 qiov->size = 0;
223 size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
224 void *buf, size_t bytes)
226 return iov_to_buf(qiov->iov, qiov->niov, offset, buf, bytes);
229 size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
230 const void *buf, size_t bytes)
232 return iov_from_buf(qiov->iov, qiov->niov, offset, buf, bytes);
235 size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
236 int fillc, size_t bytes)
238 return iov_memset(qiov->iov, qiov->niov, offset, fillc, bytes);
242 * Checks if a buffer is all zeroes
244 * Attention! The len must be a multiple of 4 * sizeof(long) due to
245 * restriction of optimizations in this function.
247 bool buffer_is_zero(const void *buf, size_t len)
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.
255 size_t i;
256 long d0, d1, d2, d3;
257 const long * const data = buf;
259 assert(len % (4 * sizeof(long)) == 0);
260 len /= sizeof(long);
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];
268 if (d0 || d1 || d2 || d3) {
269 return false;
273 return true;
276 #ifndef _WIN32
277 /* Sets a specific flag */
278 int fcntl_setfl(int fd, int flag)
280 int flags;
282 flags = fcntl(fd, F_GETFL);
283 if (flags == -1)
284 return -errno;
286 if (fcntl(fd, F_SETFL, flags | flag) == -1)
287 return -errno;
289 return 0;
291 #endif
293 static int64_t suffix_mul(char suffix, int64_t unit)
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;
307 return -1;
311 * Convert string to bytes, allowing either B/b for bytes, K/k for KB,
312 * M/m for MB, G/g for GB or T/t for TB. End pointer will be returned
313 * in *end, if not NULL. Return -1 on error.
315 int64_t strtosz_suffix_unit(const char *nptr, char **end,
316 const char default_suffix, int64_t unit)
318 int64_t retval = -1;
319 char *endptr;
320 unsigned char c;
321 int mul_required = 0;
322 double val, mul, integral, fraction;
324 errno = 0;
325 val = strtod(nptr, &endptr);
326 if (isnan(val) || endptr == nptr || errno != 0) {
327 goto fail;
329 fraction = modf(val, &integral);
330 if (fraction != 0) {
331 mul_required = 1;
333 c = *endptr;
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);
341 if (mul == 1 && mul_required) {
342 goto fail;
344 if ((val * mul >= INT64_MAX) || val < 0) {
345 goto fail;
347 retval = val * mul;
349 fail:
350 if (end) {
351 *end = endptr;
354 return retval;
357 int64_t strtosz_suffix(const char *nptr, char **end, const char default_suffix)
359 return strtosz_suffix_unit(nptr, end, default_suffix, 1024);
362 int64_t strtosz(const char *nptr, char **end)
364 return strtosz_suffix(nptr, end, STRTOSZ_DEFSUFFIX_MB);
367 int qemu_parse_fd(const char *param)
369 int fd;
370 char *endptr = NULL;
372 fd = strtol(param, &endptr, 10);
373 if (*endptr || (fd == 0 && param == endptr)) {
374 return -1;
376 return fd;