Browse Source

Disallow re-use of the same label within a dts file

Currently, nothing will stop you from re-using the same label string
multiple times in a dts, e.g.:
	/ {
		samelabel: prop1 = "foo";
		samelabel: prop2 = "bar";
	};

or
	/ {
		samelabel: prop1 = "foo";
		samelabel: subnode {
		};
	};

When using node references by label, this could lead to confusing
results (with no warning), and in -Oasm mode will result in output
which the assembler will complain about (since it too will have
duplicate labels).

This patch, therefore, adds code to checks.c to give errors if you
attempt to re-use the same label.  It treats all labels (node,
property, and value) as residing in the same namespace, since the
assembler will treat them so for -Oasm mode.

Testcases for the new code are also added.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
David Gibson 15 years ago committed by Jon Loeliger
parent
commit
329055dbbc
  1. 56
      checks.c
  2. 4
      dtc.h
  3. 51
      livetree.c
  4. 15
      tests/reuse-label.dts
  5. 10
      tests/reuse-label1.dts
  6. 6
      tests/reuse-label2.dts
  7. 9
      tests/reuse-label3.dts
  8. 5
      tests/reuse-label4.dts
  9. 6
      tests/reuse-label5.dts
  10. 6
      tests/reuse-label6.dts
  11. 7
      tests/run_tests.sh

56
checks.c

@ -278,6 +278,59 @@ static void check_property_name_chars(struct check *c, struct node *dt, @@ -278,6 +278,59 @@ static void check_property_name_chars(struct check *c, struct node *dt,
}
PROP_CHECK(property_name_chars, PROPNODECHARS, ERROR);

#define DESCLABEL_FMT "%s%s%s%s%s"
#define DESCLABEL_ARGS(node,prop,mark) \
((mark) ? "value of " : ""), \
((prop) ? "'" : ""), \
((prop) ? (prop)->name : ""), \
((prop) ? "' in " : ""), (node)->fullpath

static void check_duplicate_label(struct check *c, struct node *dt,
const char *label, struct node *node,
struct property *prop, struct marker *mark)
{
struct node *othernode = NULL;
struct property *otherprop = NULL;
struct marker *othermark = NULL;

othernode = get_node_by_label(dt, label);

if (!othernode)
otherprop = get_property_by_label(dt, label, &othernode);
if (!othernode)
othermark = get_marker_label(dt, label, &othernode,
&otherprop);

if (!othernode)
return;

if ((othernode != node) || (otherprop != prop) || (othermark != mark))
FAIL(c, "Duplicate label '%s' on " DESCLABEL_FMT
" and " DESCLABEL_FMT,
label, DESCLABEL_ARGS(node, prop, mark),
DESCLABEL_ARGS(othernode, otherprop, othermark));
}

static void check_duplicate_label_node(struct check *c, struct node *dt,
struct node *node)
{
if (node->label)
check_duplicate_label(c, dt, node->label, node, NULL, NULL);
}
static void check_duplicate_label_prop(struct check *c, struct node *dt,
struct node *node, struct property *prop)
{
struct marker *m = prop->val.markers;

if (prop->label)
check_duplicate_label(c, dt, prop->label, node, prop, NULL);

for_each_marker_of_type(m, LABEL)
check_duplicate_label(c, dt, m->ref, node, prop, m);
}
CHECK(duplicate_label, NULL, check_duplicate_label_node,
check_duplicate_label_prop, NULL, ERROR);

static void check_explicit_phandles(struct check *c, struct node *root,
struct node *node, struct property *prop)
{
@ -573,6 +626,9 @@ static struct check *check_table[] = { @@ -573,6 +626,9 @@ static struct check *check_table[] = {
&duplicate_node_names, &duplicate_property_names,
&node_name_chars, &node_name_format, &property_name_chars,
&name_is_string, &name_properties,

&duplicate_label,

&explicit_phandles,
&phandle_references, &path_references,


4
dtc.h

@ -171,6 +171,10 @@ void add_child(struct node *parent, struct node *child); @@ -171,6 +171,10 @@ void add_child(struct node *parent, struct node *child);
const char *get_unitname(struct node *node);
struct property *get_property(struct node *node, const char *propname);
cell_t propval_cell(struct property *prop);
struct property *get_property_by_label(struct node *tree, const char *label,
struct node **node);
struct marker *get_marker_label(struct node *tree, const char *label,
struct node **node, struct property **prop);
struct node *get_subnode(struct node *node, const char *nodename);
struct node *get_node_by_path(struct node *tree, const char *path);
struct node *get_node_by_label(struct node *tree, const char *label);

51
livetree.c

@ -208,6 +208,57 @@ cell_t propval_cell(struct property *prop) @@ -208,6 +208,57 @@ cell_t propval_cell(struct property *prop)
return fdt32_to_cpu(*((cell_t *)prop->val.val));
}

struct property *get_property_by_label(struct node *tree, const char *label,
struct node **node)
{
struct property *prop;
struct node *c;

*node = tree;

for_each_property(tree, prop) {
if (prop->label && streq(prop->label, label))
return prop;
}

for_each_child(tree, c) {
prop = get_property_by_label(c, label, node);
if (prop)
return prop;
}

*node = NULL;
return NULL;
}

struct marker *get_marker_label(struct node *tree, const char *label,
struct node **node, struct property **prop)
{
struct marker *m;
struct property *p;
struct node *c;

*node = tree;

for_each_property(tree, p) {
*prop = p;
m = p->val.markers;
for_each_marker_of_type(m, LABEL)
if (streq(m->ref, label))
return m;
}

for_each_child(tree, c) {
m = get_marker_label(c, label, node, prop);
if (m)
return m;
}

*prop = NULL;
*node = NULL;
return NULL;
}

struct node *get_subnode(struct node *node, const char *nodename)
{
struct node *child;

15
tests/reuse-label.dts

@ -0,0 +1,15 @@ @@ -0,0 +1,15 @@
/dts-v1/;

/ {
label: property1 = "foo";
label: property2 = "bar";

test1 = &label;

label: node1 {
prop = "foo";
};
label: node2 {
prop = "bar";
};
};

10
tests/reuse-label1.dts

@ -0,0 +1,10 @@ @@ -0,0 +1,10 @@
/dts-v1/;

/ {
label: node1 {
prop = "foo";
};
label: node2 {
prop = "bar";
};
};

6
tests/reuse-label2.dts

@ -0,0 +1,6 @@ @@ -0,0 +1,6 @@
/dts-v1/;

/ {
label: property1 = "foo";
label: property2 = "bar";
};

9
tests/reuse-label3.dts

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
/dts-v1/;

/ {
label: property = "foo";

label: node {
property = "foo";
};
};

5
tests/reuse-label4.dts

@ -0,0 +1,5 @@ @@ -0,0 +1,5 @@
/dts-v1/;

/ {
property = label: "foo" label:;
};

6
tests/reuse-label5.dts

@ -0,0 +1,6 @@ @@ -0,0 +1,6 @@
/dts-v1/;

/ {
prop1 = label: "foo";
prop2 = "bar" label:;
};

6
tests/reuse-label6.dts

@ -0,0 +1,6 @@ @@ -0,0 +1,6 @@
/dts-v1/;

/ {
label: prop1 = "foo";
prop2 = "bar" label:;
};

7
tests/run_tests.sh

@ -318,6 +318,13 @@ dtc_tests () { @@ -318,6 +318,13 @@ dtc_tests () {
run_sh_test dtc-checkfails.sh node_name_format -- -I dtb -O dtb bad_node_format.dtb
run_sh_test dtc-checkfails.sh prop_name_chars -- -I dtb -O dtb bad_prop_char.dtb

run_sh_test dtc-checkfails.sh duplicate_label -- -I dts -O dtb reuse-label1.dts
run_sh_test dtc-checkfails.sh duplicate_label -- -I dts -O dtb reuse-label2.dts
run_sh_test dtc-checkfails.sh duplicate_label -- -I dts -O dtb reuse-label3.dts
run_sh_test dtc-checkfails.sh duplicate_label -- -I dts -O dtb reuse-label4.dts
run_sh_test dtc-checkfails.sh duplicate_label -- -I dts -O dtb reuse-label5.dts
run_sh_test dtc-checkfails.sh duplicate_label -- -I dts -O dtb reuse-label6.dts

# Check for proper behaviour reading from stdin
run_dtc_test -I dts -O dtb -o stdin_dtc_tree1.test.dtb - < test_tree1.dts
run_wrap_test cmp stdin_dtc_tree1.test.dtb dtc_tree1.test.dtb

Loading…
Cancel
Save