File: device.c

package info (click to toggle)
pdbg 3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,212 kB
  • sloc: ansic: 21,934; cpp: 3,363; sh: 3,343; makefile: 314; asm: 11
file content (997 lines) | stat: -rw-r--r-- 21,957 bytes parent folder | download
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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
/* Copyright 2013-2014 IBM Corp.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * 	http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include "target.h"
#include <libfdt.h>
#include <ccan/list/list.h>
#include <ccan/short_types/short_types.h>
#include <ccan/str/str.h>
#include <endian.h>

#include "debug.h"
#include "compiler.h"
#include "hwunit.h"

#define prerror printf
#define is_rodata(p) false

#define dt_for_each_child(parent, node) \
	list_for_each(&parent->children, node, list)

/* Used to give unique handles. */
static uint32_t last_phandle = 0;

static struct pdbg_target *pdbg_dt_root;

static const char *take_name(const char *name)
{
	if (!is_rodata(name) && !(name = strdup(name))) {
		prerror("Failed to allocate copy of name");
		abort();
	}
	return name;
}

/* Adds information representing an actual target */
static struct pdbg_target *dt_pdbg_target_new(const void *fdt, int node_offset)
{
	struct pdbg_target *target;
	struct pdbg_target_class *target_class;
	const struct hw_unit_info *hw_info = NULL;
	const struct fdt_property *prop;
	size_t size;

	prop = fdt_get_property(fdt, node_offset, "compatible", NULL);
	if (prop) {
		uint32_t prop_len = fdt32_to_cpu(prop->len);

		/*
		 * If I understand correctly, the property we have
		 * here can be a stringlist with a few compatible
		 * strings
		 */
		hw_info = pdbg_hwunit_find_compatible(prop->data, prop_len);
		if (hw_info)
			size = hw_info->size;
	}

	if (!hw_info)
		/* Couldn't find anything implementing this target */
		return NULL;

	target = calloc(1, size);
	if (!target) {
		prerror("Failed to allocate node\n");
		abort();
	}

	/* hw_info->hw_unit points to a per-target struct type. This
	 * works because the first member in the per-target struct is
	 * guaranteed to be the struct pdbg_target (see the comment
	 * above DECLARE_HW_UNIT). */
	memcpy(target, hw_info->hw_unit, size);
	target_class = get_target_class(target);
	list_add_tail(&target_class->targets, &target->class_link);

	return target;
}

static struct pdbg_target *dt_new_node(const char *name, void *fdt, int node_offset)
{
	struct pdbg_target *node = NULL;
	size_t size = sizeof(*node);

	if (fdt)
		node = dt_pdbg_target_new(fdt, node_offset);

	if (!node)
		node = calloc(1, size);

	if (!node) {
		prerror("Failed to allocate node\n");
		abort();
	}

	node->fdt = fdt;
	node->fdt_offset = fdt ? node_offset : -1;

	node->dn_name = take_name(name);
	node->parent = NULL;
	list_head_init(&node->properties);
	list_head_init(&node->children);
	node->phandle = ++last_phandle;

	return node;
}

static const char *get_unitname(const struct pdbg_target *node)
{
	const char *c = strchr(node->dn_name, '@');

	if (!c)
		return NULL;

	return c + 1;
}

static int dt_cmp_subnodes(const struct pdbg_target *a, const struct pdbg_target *b)
{
	const char *a_unit = get_unitname(a);
	const char *b_unit = get_unitname(b);

	ptrdiff_t basenamelen = a_unit - a->dn_name;

	/* sort hex unit addresses by number */
	if (a_unit && b_unit && !strncmp(a->dn_name, b->dn_name, basenamelen)) {
		unsigned long long a_num, b_num;
		char *a_end, *b_end;

		a_num = strtoul(a_unit, &a_end, 16);
		b_num = strtoul(b_unit, &b_end, 16);

		/* only compare if the unit addr parsed correctly */
		if (*a_end == 0 && *b_end == 0)
			return (a_num > b_num) - (a_num < b_num);
	}

	return strcmp(a->dn_name, b->dn_name);
}

static bool dt_attach_node(struct pdbg_target *parent, struct pdbg_target *child)
{
	struct pdbg_target *node = NULL;

	assert(!child->parent);

	if (list_empty(&parent->children)) {
		list_add(&parent->children, &child->list);
		child->parent = parent;

		return true;
	}

	dt_for_each_child(parent, node) {
		int cmp = dt_cmp_subnodes(node, child);

		/* Look for duplicates */
		if (cmp == 0) {
			prerror("DT: %s failed, duplicate %s\n",
				__func__, child->dn_name);
			return false;
		}

		/* insert before the first node that's larger
		 * the the node we're inserting */
		if (cmp > 0)
			break;
	}

	list_add_before(&parent->children, &child->list, &node->list);
	child->parent = parent;

	return true;
}

static char *dt_get_path(struct pdbg_target *node)
{
	unsigned int len = 0;
	struct pdbg_target *n;
	char *path, *p;

	/* Dealing with NULL is for test/debug purposes */
	if (!node)
		return strdup("<NULL>");

	for (n = node; n; n = n->parent) {
		n = target_to_virtual(n, false);
		len += strlen(n->dn_name);
		if (n->parent || n == node)
			len++;
	}
	path = calloc(1, len + 1);
	assert(path);
	p = path + len;
	for (n = node; n; n = n->parent) {
		n = target_to_virtual(n, false);
		len = strlen(n->dn_name);
		p -= len;
		memcpy(p, n->dn_name, len);
		if (n->parent || n == node)
			*(--p) = '/';
	}
	assert(p == path);

	return p;
}

static const char *__dt_path_split(const char *p,
				   const char **namep, unsigned int *namel,
				   const char **addrp, unsigned int *addrl)
{
	const char *at, *sl;

	*namel = *addrl = 0;

	/* Skip initial '/' */
	while (*p == '/')
		p++;

	/* Check empty path */
	if (*p == 0)
		return p;

	at = strchr(p, '@');
	sl = strchr(p, '/');
	if (sl == NULL)
		sl = p + strlen(p);
	if (sl < at)
		at = NULL;
	if (at) {
		*addrp = at + 1;
		*addrl = sl - at - 1;
	}
	*namep = p;
	*namel = at ? (at - p) : (sl - p);

	return sl;
}

static struct pdbg_target *dt_find_by_path(struct pdbg_target *root, const char *path)
{
	struct pdbg_target *n;
	const char *pn, *pa = NULL, *p = path, *nn = NULL, *na = NULL;
	unsigned int pnl, pal, nnl, nal;
	bool match, vnode;

	/* Walk path components */
	while (*p) {
		/* Extract next path component */
		p = __dt_path_split(p, &pn, &pnl, &pa, &pal);
		if (pnl == 0 && pal == 0)
			break;

		vnode = false;

again:
		/* Compare with each child node */
		match = false;
		list_for_each(&root->children, n, list) {
			match = true;
			__dt_path_split(n->dn_name, &nn, &nnl, &na, &nal);
			if (pnl && (pnl != nnl || strncmp(pn, nn, pnl)))
				match = false;
			if (pal && (pal != nal || strncmp(pa, na, pal)))
				match = false;
			if (match) {
				root = n;
				break;
			}
		}

		/* No child match */
		if (!match) {
			if (!vnode && root->vnode) {
				vnode = true;
				root = root->vnode;
				goto again;
			}
			return NULL;
		}
	}
	return target_to_real(root, false);
}

static void dt_add_phandle(struct pdbg_target *node, const char *name,
			   const void *val, size_t size)
{
	/*
	 * Filter out phandle properties, we re-generate them
	 * when flattening
	 */
	if (strcmp(name, "linux,phandle") == 0 ||
	    strcmp(name, "phandle") == 0) {
		assert(size == 4);
		node->phandle = *(const u32 *)val;
		if (node->phandle >= last_phandle)
			last_phandle = node->phandle;
	}
}

static const void *_target_property(struct pdbg_target *target, const char *name, size_t *size)
{
	const void *buf;
	int buflen;

	if (target->fdt_offset == -1) {
		size ? *size = 0 : 0;
		return NULL;
	}

	buf = fdt_getprop(target->fdt, target->fdt_offset, name, &buflen);
	if (!buf) {
		size ? *size = 0 : 0;
		return NULL;
	}

	size ? *size = buflen : 0;
	return buf;
}

bool pdbg_target_set_property(struct pdbg_target *target, const char *name, const void *val, size_t size)
{
	const void *p;
	size_t len;
	int ret;

	p = _target_property(target, name, &len);
	if (!p && target->vnode) {
		target = target->vnode;
		p = _target_property(target, name, &len);
	}
	if (!p)
		return false;

	if (!target->fdt || pdbg_fdt_is_readonly(target->fdt))
		return false;

	if (len != size)
		return false;

	ret = fdt_setprop_inplace(target->fdt, target->fdt_offset, name, val, size);
	if (ret)
		return false;

	return true;
}

const void *pdbg_target_property(struct pdbg_target *target, const char *name, size_t *size)
{
	const void *p;

	p = _target_property(target, name, size);
	if (!p && target->vnode)
		p = _target_property(target->vnode, name, size);

	return p;
}

static u32 dt_property_get_cell(const void *prop, size_t len, u32 index)
{
	assert(len >= (index+1)*sizeof(u32));
	/* Always aligned, so this works. */
	return fdt32_to_cpu(((const u32 *)prop)[index]);
}

/* First child of this node. */
static struct pdbg_target *dt_first(const struct pdbg_target *root)
{
	return list_top(&root->children, struct pdbg_target, list);
}

/* Return next node, or NULL. */
static struct pdbg_target *dt_next(const struct pdbg_target *root,
			const struct pdbg_target *prev)
{
	/* Children? */
	if (!list_empty(&prev->children))
		return dt_first(prev);

	do {
		/* More siblings? */
		if (prev->list.next != &prev->parent->children.n)
			return list_entry(prev->list.next, struct pdbg_target,list);

		/* No more siblings, move up to parent. */
		prev = prev->parent;
	} while (prev != root);

	return NULL;
}

static const void *dt_require_property(struct pdbg_target *node,
				       const char *name, int wanted_len,
				       size_t *prop_len)
{
	const void *p;
	size_t len;

	p = pdbg_target_property(node, name, &len);
	if (!p) {
		const char *path = dt_get_path(node);

		prerror("DT: Missing required property %s/%s\n",
			path, name);
		abort();
	}
	if (wanted_len >= 0 && len != wanted_len) {
		const char *path = dt_get_path(node);

		prerror("DT: Unexpected property length %s/%s\n",
			path, name);
		prerror("DT: Expected len: %d got len: %zu\n",
			wanted_len, len);
		abort();
	}

	if (prop_len) {
		*prop_len = len;
	}
	return p;
}

bool pdbg_target_compatible(struct pdbg_target *target, const char *compatible)
{
	const char *c, *end;
        size_t len;

        c = (const char *)pdbg_target_property(target, "compatible", &len);
        if (!c)
                return false;

        end = c + len;
        while(c < end) {
                if (!strcasecmp(compatible, c))
                        return true;

                c += strlen(c) + 1;
        }

        return false;
}

struct pdbg_target *__pdbg_next_compatible_node(struct pdbg_target *root,
                                                struct pdbg_target *prev,
                                                const char *compat)
{
        struct pdbg_target *target;

        target = prev ? dt_next(root, prev) : root;
        for (; target; target = dt_next(root, target))
                if (pdbg_target_compatible(target, compat))
                        return target;
        return NULL;
}

static uint32_t dt_prop_get_u32_def(struct pdbg_target *node,
				    const char *prop, uint32_t def)
{
	const void *p;
	size_t len;

	p = pdbg_target_property(node, prop, &len);
        if (!p)
                return def;


        return dt_property_get_cell(p, len, 0);
}

static enum pdbg_target_status str_to_status(const char *status)
{
	if (!strcmp(status, "enabled")) {
		/* There isn't really a use case for this at the moment except
		 * perhaps as some kind of expert mode which bypasses the usual
		 * probing process. However simply marking a top-level node as
		 * enabled would not be enough to make parent nodes enabled so
		 * this wouldn't work as expected anyway. */
		assert(0);
		return PDBG_TARGET_ENABLED;
	} else if (!strcmp(status, "disabled"))
		return PDBG_TARGET_DISABLED;
	else if (!strcmp(status, "mustexist"))
		return PDBG_TARGET_MUSTEXIST;
	else if (!strcmp(status, "nonexistent"))
		return PDBG_TARGET_NONEXISTENT;
	else if (!strcmp(status, "unknown"))
		return PDBG_TARGET_UNKNOWN;
	else
		abort();
}

static int dt_expand_node(struct pdbg_target *node, void *fdt, int fdt_node)
{
	const struct fdt_property *prop;
	int offset, nextoffset, err;
	struct pdbg_target *child;
	const char *name;
	uint32_t tag;
	uint32_t data;

	if (((err = fdt_check_header(fdt)) != 0)
	    || (fdt_node < 0) || (fdt_node % FDT_TAGSIZE)
	    || (fdt_next_tag(fdt, fdt_node, &fdt_node) != FDT_BEGIN_NODE)) {
		prerror("FDT: Error %d parsing node 0x%x\n", err, fdt_node);
		return -1;
	}

	nextoffset = fdt_node;
	do {
		offset = nextoffset;

		tag = fdt_next_tag(fdt, offset, &nextoffset);
		switch (tag) {
		case FDT_PROP:
			prop = fdt_offset_ptr(fdt, offset, 0);
			name = fdt_string(fdt, fdt32_to_cpu(prop->nameoff));
			if (strcmp("index", name) == 0) {
				memcpy(&data, prop->data, sizeof(data));
				node->index = fdt32_to_cpu(data);
			}

			if (strcmp("status", name) == 0)
				node->status = str_to_status(prop->data);

			dt_add_phandle(node, name, prop->data,
					fdt32_to_cpu(prop->len));
			break;
		case FDT_BEGIN_NODE:
			name = fdt_get_name(fdt, offset, NULL);
			child = dt_new_node(name, fdt, offset);
			assert(child);
			nextoffset = dt_expand_node(child, fdt, offset);

			/*
			 * This may fail in case of duplicate, keep it
			 * going for now, we may ultimately want to
			 * assert
			 */
			(void)dt_attach_node(node, child);
			break;
		case FDT_END:
			return -1;
		}
	} while (tag != FDT_END_NODE);

	return nextoffset;
}

static void dt_expand(struct pdbg_target *root, void *fdt)
{
	PR_DEBUG("FDT: Parsing fdt @%p\n", fdt);

	if (dt_expand_node(root, fdt, 0) < 0)
		abort();
}

static u64 dt_get_number(const void *pdata, unsigned int cells)
{
	const u32 *p = pdata;
	u64 ret = 0;

	while(cells--)
		ret = (ret << 32) | be32toh(*(p++));
	return ret;
}

static u32 dt_n_address_cells(const struct pdbg_target *node)
{
	if (!node->parent)
		return 0;
	return dt_prop_get_u32_def(node->parent, "#address-cells", 2);
}

static u32 dt_n_size_cells(const struct pdbg_target *node)
{
	if (!node->parent)
		return 0;
	return dt_prop_get_u32_def(node->parent, "#size-cells", 1);
}

uint64_t pdbg_target_address(struct pdbg_target *target, uint64_t *out_size)
{
	const void *p;
	size_t len;

	u32 na = dt_n_address_cells(target);
	u32 ns = dt_n_size_cells(target);
	u32 n;

	p = dt_require_property(target, "reg", -1, &len);
	n = (na + ns) * sizeof(u32);
	if (n > len) {
		PR_ERROR("Invalid reg value for %s\n", pdbg_target_path(target));
		abort();
	}
	if (out_size)
		*out_size = dt_get_number(p + na * sizeof(u32), ns);
	return dt_get_number(p, na);
}

static struct pdbg_target *dt_new_virtual(struct pdbg_target *root, const char *system_path)
{
	char *parent_path, *sep;
	struct pdbg_target *parent, *vnode;

	parent_path = strdup(system_path);
	assert(parent_path);

	sep = strrchr(parent_path, '/');
	if (!sep || sep[1] == '\0') {
		PR_ERROR("Invalid path reference \"%s\"\n", system_path);
		free(parent_path);
		return NULL;
	}

	*sep = '\0';

	parent = dt_find_by_path(root, parent_path);
	if (!parent) {
		PR_INFO("Path reference \"%s\" not found, ignoring\n", system_path);
		free(parent_path);
		return NULL;
	}

	vnode = dt_new_node(sep+1, NULL, 0);
	assert(vnode);

	free(parent_path);

	if (!dt_attach_node(parent, vnode)) {
		free(vnode);
		return NULL;
	}

	PR_DEBUG("Created virtual node %s\n", system_path);
	return vnode;
}

static void dt_link_virtual(struct pdbg_target *node, struct pdbg_target *vnode)
{
	node->vnode = vnode;
	vnode->vnode = node;
}

static void pdbg_targets_init_virtual(struct pdbg_target *node, struct pdbg_target *root)
{
	struct pdbg_target *vnode, *child = NULL;
	const char *system_path;
	size_t len;

	/* Skip virtual nodes */
	if (target_is_virtual(node))
		goto skip;

	system_path = (const char *)pdbg_target_property(node, "system-path", &len);
	if (!system_path)
		goto skip;

	assert(!target_is_virtual(node));

	/*
	 * A virtual node identifies the attachment point of a node in the
	 * system tree.
	 */
	vnode = dt_find_by_path(root, system_path);
	if (!vnode)
		vnode = dt_new_virtual(root, system_path);

	/* If virtual node does not exist, or cannot be created, skip */
	if (!vnode)
		goto skip;

	/*
	 * If the virtual node is linked, dt_find_by_path will return the
	 * linked target.  So if we found a virtual target, then it's
	 * definitely not linked.
	 */
	if (target_is_virtual(vnode)) {
		assert(!vnode->vnode);
		dt_link_virtual(node, vnode);
	}

skip:
	list_for_each(&node->children, child, list) {
		pdbg_targets_init_virtual(child, root);
	}
}

bool pdbg_targets_init(void *fdt)
{
	struct pdbg_dtb *dtb;

	if (pdbg_dt_root) {
		PR_WARNING("pdbg_targets_init() must be called only once\n");
		return true;
	}

	dtb = pdbg_default_dtb(fdt);

	if (!dtb) {
		pdbg_log(PDBG_ERROR, "Could not determine system\n");
		return false;
	}

	if (!dtb->system.fdt) {
		pdbg_log(PDBG_ERROR, "Could not find a system device tree\n");
		return false;
	}

	/* Root node needs to be valid when this function returns */
	pdbg_dt_root = dt_new_node("", dtb->system.fdt, 0);
	if (!pdbg_dt_root)
		return false;

	if (dtb->backend.fdt)
		dt_expand(pdbg_dt_root, dtb->backend.fdt);

	dt_expand(pdbg_dt_root, dtb->system.fdt);

	pdbg_targets_init_virtual(pdbg_dt_root, pdbg_dt_root);
	return true;
}

const char *pdbg_target_path(struct pdbg_target *target)
{
	if (!target->path)
		target->path = dt_get_path(target);

	return target->path;
}

struct pdbg_target *pdbg_target_from_path(struct pdbg_target *target, const char *path)
{
	if (!target)
		target = pdbg_dt_root;

	return dt_find_by_path(target, path);
}

struct pdbg_target *pdbg_target_root(void)
{
	return pdbg_dt_root;
}

bool pdbg_target_set_attribute(struct pdbg_target *target, const char *name, uint32_t size, uint32_t count, const void *val)
{
	void *buf;
	size_t total_size = count * size;
	uint32_t i;
	bool ok;

	buf = malloc(total_size);
	if (!buf)
		return false;

	if (size == 1) {
		memcpy(buf, val, total_size);

	} else if (size == 2) {
		uint16_t *b = (uint16_t *)buf;
		uint16_t *v = (uint16_t *)val;

		for (i = 0; i < count; i++)
			b[i] = htobe16(v[i]);

	} else if (size == 4) {
		uint32_t *b = (uint32_t *)buf;
		uint32_t *v = (uint32_t *)val;

		for (i = 0; i < count; i++)
			b[i] = htobe32(v[i]);

	} else if (size == 8) {
		uint64_t *b = (uint64_t *)buf;
		uint64_t *v = (uint64_t *)val;

		for (i = 0; i < count; i++)
			b[i] = htobe64(v[i]);

	} else {
		free(buf);
		return false;
	}

	ok = pdbg_target_set_property(target, name, buf, total_size);
	free(buf);

	return ok;
}

bool pdbg_target_get_attribute(struct pdbg_target *target, const char *name, uint32_t size, uint32_t count, void *val)
{
	const void *buf;
	size_t total_size;
	uint32_t i;

	buf = pdbg_target_property(target, name, &total_size);
	if (!buf)
		return false;

	if (total_size != count * size)
		return false;

	if (size == 1) {
		memcpy(val, buf, total_size);

	} else if (size == 2) {
		uint16_t *b = (uint16_t *)buf;
		uint16_t *v = (uint16_t *)val;

		for (i = 0; i < count; i++)
			v[i] = be16toh(b[i]);

	} else if (size == 4) {
		uint32_t *b = (uint32_t *)buf;
		uint32_t *v = (uint32_t *)val;

		for (i = 0; i < count; i++)
			v[i] = be32toh(b[i]);

	} else if (size == 8) {
		uint64_t *b = (uint64_t *)buf;
		uint64_t *v = (uint64_t *)val;

		for (i = 0; i < count; i++)
			v[i] = be64toh(b[i]);

	} else {
		return false;
	}

	return true;
}

static size_t spec_size(const char *spec)
{
	size_t size = 0, i;

	for (i = 0; i < strlen(spec); i++) {
		char ch = spec[i];

		if (ch == '1')
			size += 1;
		else if (ch == '2')
			size += 2;
		else if (ch == '4')
			size += 4;
		else if (ch == '8')
			size += 8;
		else
			return -1;
	}

	return size;
}

bool pdbg_target_set_attribute_packed(struct pdbg_target *target, const char *name, const char *spec, uint32_t count, const void *val)
{
	void *buf;
	size_t size, pos, i, j;
	bool ok;

	if (!spec || spec[0] == '\0')
		return false;

	if (count == 0)
		return false;

	size = spec_size(spec);
	if (size <= 0)
		return false;

	size = size * count;
	buf = malloc(size);
	if (!buf)
		return false;

	pos = 0;
	for (j=0; j<count; j++) {
		for (i=0; i<strlen(spec); i++) {
			char ch = spec[i];

			if (ch == '1') {
				uint8_t *b = (uint8_t *)buf + pos;
				uint8_t *v = (uint8_t *)val + pos;

				*b = *v;
				pos += 1;

			} else if (ch == '2') {
				uint16_t *b = (uint16_t *)((uint8_t *)buf + pos);
				uint16_t *v = (uint16_t *)((uint8_t *)val + pos);

				*b = htobe16(*v);
				pos += 2;

			} else if (ch == '4') {
				uint32_t *b = (uint32_t *)((uint8_t *)buf + pos);
				uint32_t *v = (uint32_t *)((uint8_t *)val + pos);

				*b = htobe32(*v);
				pos += 4;

			} else if (ch == '8') {
				uint64_t *b = (uint64_t *)((uint8_t *)buf + pos);
				uint64_t *v = (uint64_t *)((uint8_t *)val + pos);

				*b = htobe64(*v);
				pos += 8;

			} else {
				free(buf);
				return false;
			}
		}
	}

	ok = pdbg_target_set_property(target, name, buf, size);
	free(buf);

	return ok;
}

bool pdbg_target_get_attribute_packed(struct pdbg_target *target, const char *name, const char *spec, uint32_t count, void *val)
{
	const void *buf;
	size_t size, total_size, pos, i, j;

	if (!spec || spec[0] == '\0')
		return false;

	if (count == 0)
		return false;

	buf = pdbg_target_property(target, name, &total_size);
	if (!buf)
		return false;

	size = spec_size(spec);
	size = size * count;
	if (total_size != size)
		return false;

	pos = 0;
	for (j=0; j<count; j++) {
		for (i=0; i<strlen(spec); i++) {
			char ch = spec[i];

			if (ch == '1') {
				uint8_t *b = (uint8_t *)buf + pos;
				uint8_t *v = (uint8_t *)val + pos;

				*v = *b;
				pos += 1;

			} else if (ch == '2') {
				uint16_t *b = (uint16_t *)((uint8_t *)buf + pos);
				uint16_t *v = (uint16_t *)((uint8_t *)val + pos);

				*v = be16toh(*b);
				pos += 2;

			} else if (ch == '4') {
				uint32_t *b = (uint32_t *)((uint8_t *)buf + pos);
				uint32_t *v = (uint32_t *)((uint8_t *)val + pos);

				*v = be32toh(*b);
				pos += 4;

			} else if (ch == '8') {
				uint64_t *b = (uint64_t *)((uint8_t *)buf + pos);
				uint64_t *v = (uint64_t *)((uint8_t *)val + pos);

				*v = be64toh(*b);
				pos += 8;

			}
		}
	}

	return true;
}