forked from analogdevicesinc/libiio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xml.c
552 lines (477 loc) · 12.8 KB
/
xml.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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
// 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 <[email protected]>
*/
#include "debug.h"
#include "iio-private.h"
#include <errno.h>
#include <libxml/tree.h>
#include <string.h>
static int add_attr_to_channel(struct iio_channel *chn, xmlNode *n)
{
xmlAttr *attr;
char *name = NULL, *filename = NULL;
struct iio_channel_attr *attrs;
int err = -ENOMEM;
for (attr = n->properties; attr; attr = attr->next) {
if (!strcmp((char *) attr->name, "name")) {
name = iio_strdup((char *) attr->children->content);
if (!name)
goto err_free;
} else if (!strcmp((char *) attr->name, "filename")) {
filename = iio_strdup((char *) attr->children->content);
if (!filename)
goto err_free;
} else {
IIO_DEBUG("Unknown field \'%s\' in channel %s\n",
attr->name, chn->id);
}
}
if (!name) {
IIO_ERROR("Incomplete attribute in channel %s\n", chn->id);
err = -EINVAL;
goto err_free;
}
if (!filename) {
filename = iio_strdup(name);
if (!filename)
goto err_free;
}
attrs = realloc(chn->attrs, (1 + chn->nb_attrs) *
sizeof(struct iio_channel_attr));
if (!attrs)
goto err_free;
attrs[chn->nb_attrs].filename = filename;
attrs[chn->nb_attrs++].name = name;
chn->attrs = attrs;
return 0;
err_free:
free(name);
free(filename);
return err;
}
static int add_attr_to_device(struct iio_device *dev, xmlNode *n, enum iio_attr_type type)
{
xmlAttr *attr;
char *name = NULL;
for (attr = n->properties; attr; attr = attr->next) {
if (!strcmp((char *) attr->name, "name")) {
name = (char *) attr->children->content;
} else {
IIO_DEBUG("Unknown field \'%s\' in device %s\n",
attr->name, dev->id);
}
}
if (!name) {
IIO_ERROR("Incomplete attribute in device %s\n", dev->id);
return -EINVAL;
}
switch(type) {
case IIO_ATTR_TYPE_DEBUG:
return add_iio_dev_attr(&dev->debug_attrs, name, " debug", dev->id);
case IIO_ATTR_TYPE_DEVICE:
return add_iio_dev_attr(&dev->attrs, name, " ", dev->id);
case IIO_ATTR_TYPE_BUFFER:
return add_iio_dev_attr(&dev->buffer_attrs, name, " buffer", dev->id);
default:
return -EINVAL;
}
}
static int setup_scan_element(struct iio_channel *chn, xmlNode *n)
{
xmlAttr *attr;
int err;
for (attr = n->properties; attr; attr = attr->next) {
const char *name = (const char *) attr->name,
*content = (const char *) attr->children->content;
if (!strcmp(name, "index")) {
char *end;
long long value;
errno = 0;
value = strtoll(content, &end, 0);
if (end == content || value < 0 || errno == ERANGE)
return -EINVAL;
chn->index = (long) value;
} else if (!strcmp(name, "format")) {
char e, s;
if (strchr(content, 'X')) {
err = iio_sscanf(content, "%ce:%c%u/%uX%u>>%u",
#ifdef _MSC_BUILD
&e, (unsigned int)sizeof(e),
&s, (unsigned int)sizeof(s),
#else
&e, &s,
#endif
&chn->format.bits,
&chn->format.length,
&chn->format.repeat,
&chn->format.shift);
if (err != 6)
return -EINVAL;
} else {
chn->format.repeat = 1;
err = iio_sscanf(content, "%ce:%c%u/%u>>%u",
#ifdef _MSC_BUILD
&e, (unsigned int)sizeof(e),
&s, (unsigned int)sizeof(s),
#else
&e, &s,
#endif
&chn->format.bits,
&chn->format.length,
&chn->format.shift);
if (err != 5)
return -EINVAL;
}
chn->format.is_be = e == 'b';
chn->format.is_signed = (s == 's' || s == 'S');
chn->format.is_fully_defined = (s == 'S' || s == 'U' ||
chn->format.bits == chn->format.length);
} else if (!strcmp(name, "scale")) {
char *end;
float value;
errno = 0;
value = strtof(content, &end);
if (end == content || errno == ERANGE) {
chn->format.with_scale = false;
return -EINVAL;
}
chn->format.with_scale = true;
chn->format.scale = value;
} else {
IIO_DEBUG("Unknown attribute \'%s\' in <scan-element>\n",
name);
}
}
return 0;
}
static struct iio_channel * create_channel(struct iio_device *dev, xmlNode *n)
{
xmlAttr *attr;
struct iio_channel *chn;
int err = -ENOMEM;
chn = zalloc(sizeof(*chn));
if (!chn)
return ERR_PTR(-ENOMEM);
chn->dev = dev;
/* Set the default index value < 0 (== no index) */
chn->index = -ENOENT;
for (attr = n->properties; attr; attr = attr->next) {
const char *name = (const char *) attr->name,
*content = (const char *) attr->children->content;
if (!strcmp(name, "name")) {
chn->name = iio_strdup(content);
if (!chn->name)
goto err_free_channel;
} else if (!strcmp(name, "id")) {
chn->id = iio_strdup(content);
if (!chn->id)
goto err_free_channel;
} else if (!strcmp(name, "type")) {
if (!strcmp(content, "output"))
chn->is_output = true;
else if (strcmp(content, "input"))
IIO_DEBUG("Unknown channel type %s\n", content);
} else {
IIO_DEBUG("Unknown attribute \'%s\' in <channel>\n",
name);
}
}
if (!chn->id) {
IIO_ERROR("Incomplete <attribute>\n");
err = -EINVAL;
goto err_free_channel;
}
for (n = n->children; n; n = n->next) {
if (!strcmp((char *) n->name, "attribute")) {
err = add_attr_to_channel(chn, n);
if (err < 0)
goto err_free_channel;
} else if (!strcmp((char *) n->name, "scan-element")) {
chn->is_scan_element = true;
err = setup_scan_element(chn, n);
if (err < 0)
goto err_free_channel;
} else if (strcmp((char *) n->name, "text")) {
IIO_DEBUG("Unknown children \'%s\' in <channel>\n",
n->name);
continue;
}
}
iio_channel_init_finalize(chn);
return chn;
err_free_channel:
free_channel(chn);
return ERR_PTR(err);
}
static struct iio_device * create_device(struct iio_context *ctx, xmlNode *n)
{
xmlAttr *attr;
struct iio_device *dev;
int err = -ENOMEM;
dev = zalloc(sizeof(*dev));
if (!dev)
return ERR_PTR(-ENOMEM);
dev->ctx = ctx;
for (attr = n->properties; attr; attr = attr->next) {
if (!strcmp((char *) attr->name, "name")) {
dev->name = iio_strdup(
(char *) attr->children->content);
if (!dev->name)
goto err_free_device;
} else if (!strcmp((char *) attr->name, "label")) {
dev->label = iio_strdup((char *) attr->children->content);
if (!dev->label)
goto err_free_device;
} else if (!strcmp((char *) attr->name, "id")) {
dev->id = iio_strdup((char *) attr->children->content);
if (!dev->id)
goto err_free_device;
} else {
IIO_DEBUG("Unknown attribute \'%s\' in <device>\n",
attr->name);
}
}
if (!dev->id) {
IIO_ERROR("Unable to read device ID\n");
err = -EINVAL;
goto err_free_device;
}
for (n = n->children; n; n = n->next) {
if (!strcmp((char *) n->name, "channel")) {
struct iio_channel **chns,
*chn = create_channel(dev, n);
if (IS_ERR(chn)) {
err = PTR_ERR(chn);
IIO_ERROR("Unable to create channel: %d\n", err);
goto err_free_device;
}
chns = realloc(dev->channels, (1 + dev->nb_channels) *
sizeof(struct iio_channel *));
if (!chns) {
err = -ENOMEM;
IIO_ERROR("Unable to allocate memory\n");
free(chn);
goto err_free_device;
}
chns[dev->nb_channels++] = chn;
dev->channels = chns;
} else if (!strcmp((char *) n->name, "attribute")) {
err = add_attr_to_device(dev, n, IIO_ATTR_TYPE_DEVICE);
if (err < 0)
goto err_free_device;
} else if (!strcmp((char *) n->name, "debug-attribute")) {
err = add_attr_to_device(dev, n, IIO_ATTR_TYPE_DEBUG);
if (err < 0)
goto err_free_device;
} else if (!strcmp((char *) n->name, "buffer-attribute")) {
err = add_attr_to_device(dev, n, IIO_ATTR_TYPE_BUFFER);
if (err < 0)
goto err_free_device;
} else if (strcmp((char *) n->name, "text")) {
IIO_DEBUG("Unknown children \'%s\' in <device>\n",
n->name);
continue;
}
}
dev->words = (dev->nb_channels + 31) / 32;
if (dev->words) {
dev->mask = calloc(dev->words, sizeof(*dev->mask));
if (!dev->mask) {
err = -ENOMEM;
goto err_free_device;
}
}
return dev;
err_free_device:
free_device(dev);
return ERR_PTR(err);
}
static struct iio_context * xml_clone(const struct iio_context *ctx)
{
return xml_create_context_mem(ctx->xml, strlen(ctx->xml));
}
static const struct iio_backend_ops xml_ops = {
.clone = xml_clone,
};
static const struct iio_backend xml_backend = {
.api_version = IIO_BACKEND_API_V1,
.name = "xml",
.uri_prefix = "xml:",
.ops = &xml_ops,
};
static int parse_context_attr(struct iio_context *ctx, xmlNode *n)
{
xmlAttr *attr;
const char *name = NULL, *value = NULL;
for (attr = n->properties; attr; attr = attr->next) {
if (!strcmp((const char *) attr->name, "name")) {
name = (const char *) attr->children->content;
} else if (!strcmp((const char *) attr->name, "value")) {
value = (const char *) attr->children->content;
}
}
if (!name || !value)
return -EINVAL;
else
return iio_context_add_attr(ctx, name, value);
}
static int iio_populate_xml_context_helper(struct iio_context *ctx, xmlNode *root)
{
xmlNode *n;
int err;
for (n = root->children; n; n = n->next) {
struct iio_device *dev;
if (!strcmp((char *) n->name, "context-attribute")) {
err = parse_context_attr(ctx, n);
if (err)
return err;
continue;
} else if (strcmp((char *) n->name, "device")) {
if (strcmp((char *) n->name, "text"))
IIO_DEBUG("Unknown children \'%s\' in "
"<context>\n", n->name);
continue;
}
dev = create_device(ctx, n);
if (IS_ERR(dev)) {
err = PTR_ERR(dev);
IIO_ERROR("Unable to create device: %d\n", err);
return err;
}
err = iio_context_add_device(ctx, dev);
if (err) {
free(dev);
return err;
}
}
return iio_context_init(ctx);
}
static struct iio_context * iio_create_xml_context_helper(xmlDoc *doc)
{
const char *description = NULL, *git_tag = NULL, *content;
struct iio_context *ctx;
long major = 0, minor = 0;
xmlNode *root;
xmlAttr *attr;
char *end;
int err;
root = xmlDocGetRootElement(doc);
if (strcmp((char *) root->name, "context")) {
IIO_ERROR("Unrecognized XML file\n");
errno = EINVAL;
return NULL;
}
for (attr = root->properties; attr; attr = attr->next) {
content = (const char *) attr->children->content;
if (!strcmp((char *) attr->name, "description")) {
description = content;
} else if (!strcmp((char *) attr->name, "version-major")) {
major = strtol(content, &end, 10);
if (*end != '\0')
IIO_WARNING("invalid format for major version\n");
} else if (!strcmp((char *) attr->name, "version-minor")) {
minor = strtol(content, &end, 10);
if (*end != '\0')
IIO_WARNING("invalid format for minor version\n");
} else if (!strcmp((char *) attr->name, "version-git")) {
git_tag = content;
} else if (strcmp((char *) attr->name, "name")) {
IIO_DEBUG("Unknown parameter \'%s\' in <context>\n",
content);
}
}
ctx = iio_context_create_from_backend(&xml_backend, description);
if (!ctx)
return NULL;
if (git_tag) {
ctx->major = major;
ctx->minor = minor;
ctx->git_tag = iio_strdup(git_tag);
if (!ctx->git_tag) {
iio_context_destroy(ctx);
errno = ENOMEM;
return NULL;
}
}
err = iio_populate_xml_context_helper(ctx, root);
if (err) {
iio_context_destroy(ctx);
errno = -err;
return NULL;
}
return ctx;
}
struct iio_context * xml_create_context(const char *xml_file)
{
struct iio_context *ctx;
xmlDoc *doc;
LIBXML_TEST_VERSION;
doc = xmlReadFile(xml_file, NULL, XML_PARSE_DTDVALID);
if (!doc) {
IIO_ERROR("Unable to parse XML file\n");
errno = EINVAL;
return NULL;
}
ctx = iio_create_xml_context_helper(doc);
xmlFreeDoc(doc);
return ctx;
}
struct iio_context * xml_create_context_mem(const char *xml, size_t len)
{
struct iio_context *ctx;
xmlDoc *doc;
LIBXML_TEST_VERSION;
doc = xmlReadMemory(xml, (int) len, NULL, NULL, XML_PARSE_DTDVALID);
if (!doc) {
IIO_ERROR("Unable to parse XML file\n");
errno = EINVAL;
return NULL;
}
ctx = iio_create_xml_context_helper(doc);
xmlFreeDoc(doc);
return ctx;
}
static void cleanup_libxml2_stuff(void)
{
/*
* This function will be called only when the libiio library is
* unloaded (e.g. when the program exits).
*
* Cleanup libxml2 so that memory analyzer tools like Valgrind won't
* detect a memory leak.
*/
xmlCleanupParser();
xmlMemoryDump();
}
#if defined(_MSC_BUILD)
#pragma section(".CRT$XCU", read)
#define __CONSTRUCTOR(f, p) \
static void f(void); \
__declspec(allocate(".CRT$XCU")) void (*f##_)(void) = f; \
__pragma(comment(linker,"/include:" p #f "_")) \
static void f(void)
#ifdef _WIN64
#define _CONSTRUCTOR(f) __CONSTRUCTOR(f, "")
#else
#define _CONSTRUCTOR(f) __CONSTRUCTOR(f, "_")
#endif
#elif defined(__GNUC__)
#define _CONSTRUCTOR(f) static void __attribute__((constructor)) f(void)
#else
#define _CONSTRUCTOR(f) static void f(void)
#endif
_CONSTRUCTOR(initialize)
{
/*
* When the library loads, register our destructor.
* Do it here and not in the context creation function,
* as it could otherwise end up registering the destructor
* many times.
*/
atexit(cleanup_libxml2_stuff);
}
#undef _CONSTRUCTOR