-
Notifications
You must be signed in to change notification settings - Fork 316
/
utilities.c
437 lines (360 loc) · 8.96 KB
/
utilities.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
* libiio - Library for interfacing industrial I/O (IIO) devices
*
* Copyright (C) 2014 Analog Devices, Inc.
* Author: Paul Cercueil <paul.cercueil@analog.com>
*/
/* Force the XSI version of strerror_r */
#undef _GNU_SOURCE
#include "iio-config.h"
#include "iio-private.h"
#include "network.h" // for FQDN_LEN
#include <errno.h>
#include <iio/iio-debug.h>
#include <locale.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <Windows.h>
#else
#include <time.h>
#endif
#if defined(_WIN32) || \
(defined(__APPLE__) && defined(__MACH__)) || \
(defined(__USE_XOPEN2K8) && \
(!defined(__UCLIBC__) || defined(__UCLIBC_HAS_LOCALE__)))
#define LOCALE_SUPPORT
#endif
#ifdef LOCALE_SUPPORT
#if defined(__MINGW32__) || (!defined(_WIN32) && !defined(HAS_NEWLOCALE))
static int read_double_locale(const char *str, double *val)
{
char *end, *old_locale;
double value;
bool problem = false;
/* XXX: This is not thread-safe, but it's the only way we have to
* support locales under MinGW without linking with Visual Studio
* libraries. */
old_locale = iio_strdup(setlocale(LC_NUMERIC, NULL));
if (!old_locale)
return -ENOMEM;
setlocale(LC_NUMERIC, "C");
errno = 0;
value = strtod(str, &end);
if (end == str || errno == ERANGE)
problem = true;
setlocale(LC_NUMERIC, old_locale);
free(old_locale);
if (problem)
return -EINVAL;
*val = value;
return 0;
}
static int write_double_locale(char *buf, size_t len, double val)
{
/* XXX: Not thread-safe, see above */
char *old_locale = iio_strdup(setlocale(LC_NUMERIC, NULL));
if (!old_locale)
return -ENOMEM;
setlocale(LC_NUMERIC, "C");
iio_snprintf(buf, len, "%f", val);
setlocale(LC_NUMERIC, old_locale);
free(old_locale);
return 0;
}
#elif defined(_WIN32)
static int read_double_locale(const char *str, double *val)
{
char *end;
double value;
bool problem = false;
_locale_t locale = _create_locale(LC_NUMERIC, "C");
if (!locale)
return -ENOMEM;
errno = 0;
value = _strtod_l(str, &end, locale);
if (end == str || errno == ERANGE)
problem = true;
_free_locale(locale);
if (problem)
return -EINVAL;
*val = value;
return 0;
}
static int write_double_locale(char *buf, size_t len, double val)
{
_locale_t locale = _create_locale(LC_NUMERIC, "C");
if (!locale)
return -ENOMEM;
_snprintf_s_l(buf, len, _TRUNCATE, "%f", locale, val);
_free_locale(locale);
return 0;
}
#else
static int read_double_locale(const char *str, double *val)
{
char *end;
double value;
bool problem = false;
locale_t old_locale, new_locale;
new_locale = newlocale(LC_NUMERIC_MASK, "C", (locale_t) 0);
if (!new_locale)
return -errno;
old_locale = uselocale(new_locale);
errno = 0;
value = strtod(str, &end);
if (end == str || errno == ERANGE)
problem = true;
uselocale(old_locale);
freelocale(new_locale);
if (problem)
return -EINVAL;
*val = value;
return 0;
}
static int write_double_locale(char *buf, size_t len, double val)
{
locale_t old_locale, new_locale;
new_locale = newlocale(LC_NUMERIC_MASK, "C", (locale_t) 0);
if (!new_locale)
return -errno;
old_locale = uselocale(new_locale);
iio_snprintf(buf, len, "%f", val);
uselocale(old_locale);
freelocale(new_locale);
return 0;
}
#endif
#endif
int read_double(const char *str, double *val)
{
#ifdef LOCALE_SUPPORT
return read_double_locale(str, val);
#else
char *end;
double value;
errno = 0;
value = strtod(str, &end);
if (end == str || errno == ERANGE)
return -EINVAL;
*val = value;
return 0;
#endif
}
int write_double(char *buf, size_t len, double val)
{
#ifdef LOCALE_SUPPORT
return write_double_locale(buf, len, val);
#else
iio_snprintf(buf, len, "%f", val);
return 0;
#endif
}
void iio_strerror(int err, char *buf, size_t len)
{
/* strerror only works with positive error codes.
* Support negative error codes by just negating the value. */
int ret = err < 0 ? -err : err;
#if defined(_WIN32)
ret = strerror_s(buf, len, ret);
#elif defined(HAS_STRERROR_R)
ret = strerror_r(ret, buf, len);
#else
/* no strerror_s, no strerror_r... just use the default message */
ret = 0xf7de;
#endif
if (ret != 0)
iio_snprintf(buf, len, "Unknown error %i", err);
else {
size_t i = strnlen(buf, len);
iio_snprintf(buf + i, len - i, " (%i)", err);
}
}
char *iio_strtok_r(char *str, const char *delim, char **saveptr)
{
#if defined(_WIN32)
return strtok_s(str, delim, saveptr);
#elif defined(HAS_STRTOK_R)
return strtok_r(str, delim, saveptr);
#else
#error Need a implementation of strtok_r for this platform
#endif
}
char *iio_strdup(const char *str)
{
#if defined(_WIN32)
return _strdup(str);
#elif defined(HAS_STRDUP)
return strdup(str);
#else
size_t len = strlen(str);
char *buf = malloc(len + 1);
if (buf)
memcpy(buf, str, len + 1);
return buf;
#endif
}
/* strndup conforms to POSIX.1-2008; but Windows does not provided it
*/
char *iio_strndup(const char *str, size_t n)
{
#ifdef HAS_STRNDUP
return strndup(str, n);
#else
size_t len = strnlen(str, n);
char *buf = malloc(len + 1);
if (buf) {
/* len = size of buf, so memcpy is OK */
memcpy(buf, str, len); /* Flawfinder: ignore */
buf[len] = 0;
}
return buf;
#endif
}
/* strlcpy is designed to be safer, more consistent, and less error prone
* replacements for strncpy, since it guarantees to NUL-terminate the result.
*
* This function
* Copyright (c) 1998, 2015 Todd C. Miller <Todd.Miller@courtesan.com>
* https://github.com/freebsd/freebsd/blob/master/sys/libkern/strlcpy.c
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* Copy string src to buffer dst of size dsize. At most dsize-1
* chars will be copied. Always NUL terminates (unless dsize == 0).
* Returns strlen(src); if retval >= dsize, truncation occurred.
*
* src is assumed to be null terminated, if it is not, this function will
* dereference unknown memory beyond src.
*/
size_t iio_strlcpy(char * __restrict dst, const char * __restrict src, size_t dsize)
{
const char *osrc = src;
size_t nleft = dsize;
/* Copy as many bytes as will fit. */
if (nleft != 0) {
while (--nleft != 0) {
if ((*dst++ = *src++) == '\0')
break;
}
}
/* Not enough room in dst, add NUL and traverse rest of src. */
if (nleft == 0) {
if (dsize != 0)
*dst = '\0'; /* NUL-terminate dst */
while (*src++)
;
}
return(src - osrc - 1); /* count does not include NUL */
}
/* Cross platform version of getenv */
char * iio_getenv (char * envvar)
{
char *hostname;
size_t len, tmp;
#ifdef _MSC_BUILD
if (_dupenv_s(&hostname, NULL, envvar))
return NULL;
#else
/* This is qualified below, and a copy is returned
* so it's safe to use
*/
hostname = getenv(envvar); /* Flawfinder: ignore */
#endif
if (!hostname)
return NULL;
tmp = FQDN_LEN + sizeof("serial:") + sizeof(":65535") - 2;
len = strnlen(hostname, tmp);
/* Should be smaller than max length */
if (len == tmp)
goto wrong_str;
/* should be more than "usb:" or "ip:" */
tmp = sizeof("ip:") - 1;
if (len < tmp)
goto wrong_str;
#ifdef _MSC_BUILD
return hostname;
#else
return strdup (hostname);
#endif
wrong_str:
#ifdef _WIN32
free(hostname);
#endif
return NULL;
}
ssize_t __iio_printf iio_snprintf(char *buf, size_t len, const char *fmt, ...)
{
va_list ap;
int ret;
va_start(ap, fmt);
ret = vsnprintf(buf, len, fmt, ap);
if (len && ret >= (ssize_t)len)
ret = -ERANGE;
va_end(ap);
return (ssize_t)ret;
}
bool iio_list_has_elem(const char *list, const char *elem)
{
const char *ptr;
if (!list)
return false;
while (true) {
ptr = strchr(list, ',');
if (!ptr)
return !strcmp(list, elem);
if (!strncmp(list, elem,
(uintptr_t) ptr - (uintptr_t) list)) {
return true;
}
list = ptr + 1;
}
}
void iio_prm_printf(const struct iio_context_params *params,
enum iio_log_level msg_level,
const char *fmt, ...)
{
FILE *out = NULL;
uint64_t now;
va_list ap;
va_start(ap, fmt);
if (params && msg_level <= params->log_level) {
if (msg_level <= params->stderr_level)
out = params->err ? params->err : stderr;
else
out = params->out ? params->out : stdout;
} else if (!params && msg_level <= DEFAULT_LOG_LEVEL) {
out = msg_level <= LEVEL_WARNING ? stderr : stdout;
}
if (out) {
if (params
&& params->timestamp_level > LEVEL_NOLOG
&& params->timestamp_level <= msg_level) {
now = iio_read_counter_us() - library_startup_time_us;
fprintf(out, "(%u.%06us) ", (unsigned int)(now / 1000000),
(unsigned int)now % 1000000);
}
vfprintf(out, fmt, ap);
}
va_end(ap);
}
uint64_t iio_read_counter_us(void)
{
uint64_t value;
#ifdef _WIN32
LARGE_INTEGER freq, cnt;
QueryPerformanceFrequency(&freq);
QueryPerformanceCounter(&cnt);
value = (1000000 * cnt.QuadPart) / freq.QuadPart;
#else
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
value = ts.tv_sec * 1000000ull + (uint64_t)ts.tv_nsec / 1000ull;
#endif
return value;
}