diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-03-13 08:15:10 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:53:18 -0700 |
commit | 79f651f4bd2fb395a705792eb8ce551a6021bcd6 (patch) | |
tree | 87def72b236aea3e22ae4f09b6f36d85ad82b7b9 /udev_rules_parse.c | |
parent | 38285d23d702258d3b219532a9874555e797a292 (diff) |
[PATCH] simplify sysfs_pair handling
Diffstat (limited to 'udev_rules_parse.c')
-rw-r--r-- | udev_rules_parse.c | 41 |
1 files changed, 18 insertions, 23 deletions
diff --git a/udev_rules_parse.c b/udev_rules_parse.c index db83a67953..c4c684d059 100644 --- a/udev_rules_parse.c +++ b/udev_rules_parse.c @@ -55,7 +55,7 @@ static int add_config_dev(struct udev_rule *rule) "owner='%s', group='%s', mode=%#o, " "all_partions=%u, ignore_remove=%u, ignore_device=%u, last_rule=%u", rule->name, rule->symlink, rule->bus, rule->id, - rule->sysfs_pair[0].file, rule->sysfs_pair[0].value, + rule->sysfs_pair[0].name, rule->sysfs_pair[0].value, rule->kernel, rule->program, rule->result, rule->owner, rule->group, rule->mode, rule->partitions, rule->ignore_remove, rule->ignore_device, rule->last_rule); @@ -271,29 +271,24 @@ static int rules_parse(struct udevice *udev, const char *filename) } if (strncasecmp(key, KEY_SYSFS, sizeof(KEY_SYSFS)-1) == 0) { - struct sysfs_pair *pair = &rule.sysfs_pair[0]; - int sysfs_pair_num = 0; - - /* find first unused pair */ - while (pair->file[0] != '\0') { - ++sysfs_pair_num; - if (sysfs_pair_num >= MAX_SYSFS_PAIRS) { - pair = NULL; - break; - } - ++pair; + struct key_pair *pair; + + if (rule.sysfs_pair_count >= KEY_SYSFS_PAIRS_MAX) { + dbg("skip rule, to many " KEY_SYSFS " keys in a single rule"); + goto error; } - if (pair) { - attr = get_key_attribute(key + sizeof(KEY_SYSFS)-1); - if (attr == NULL) { - dbg("error parsing " KEY_SYSFS " attribute"); - continue; - } - strlcpy(pair->file, attr, sizeof(pair->file)); - strlcpy(pair->value, value, sizeof(pair->value)); - pair->operation = operation; - valid = 1; + pair = &rule.sysfs_pair[rule.sysfs_pair_count]; + rule.sysfs_pair_count++; + + attr = get_key_attribute(key + sizeof(KEY_SYSFS)-1); + if (attr == NULL) { + dbg("error parsing " KEY_SYSFS " attribute"); + continue; } + strlcpy(pair->name, attr, sizeof(pair->name)); + strlcpy(pair->value, value, sizeof(pair->value)); + pair->operation = operation; + valid = 1; continue; } @@ -394,7 +389,7 @@ static int rules_parse(struct udevice *udev, const char *filename) goto error; /* simple plausibility checks for given keys */ - if ((rule.sysfs_pair[0].file[0] == '\0') ^ + if ((rule.sysfs_pair[0].name[0] == '\0') ^ (rule.sysfs_pair[0].value[0] == '\0')) { info("inconsistency in " KEY_SYSFS " key"); goto error; |