diff options
author | Sergey Vlasov <vsu@altlinux.ru> | 2007-02-01 20:18:52 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2007-02-01 20:18:52 +0100 |
commit | c0c865d4664ea10309b0ffc12b2fad19ecb98129 (patch) | |
tree | 0d44579345677649f64cdf2a1de08bdfcce9943c /udev_rules.c | |
parent | 6ff4253618303d8ab77627e4b9afe115604b07f8 (diff) |
fix %c $string substitution
Fix udev_rules_apply_format() to give error messages for unknown
format elements and pass such elements to the output string
unmodified.
When truncating the substitution string to the length specified in the
format string, head[len] = '\0' could write outside the buffer if that
length was too large.
Diffstat (limited to 'udev_rules.c')
-rw-r--r-- | udev_rules.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/udev_rules.c b/udev_rules.c index edaaa71d12..d1c3f042c3 100644 --- a/udev_rules.c +++ b/udev_rules.c @@ -364,6 +364,8 @@ void udev_rules_apply_format(struct udevice *udev, char *string, size_t maxsize) goto found; } } + head[0] = '$'; + err("unknown format variable '%s'", head); } else if (head[0] == '%') { /* substitute format char */ if (head[1] == '\0') @@ -385,6 +387,8 @@ void udev_rules_apply_format(struct udevice *udev, char *string, size_t maxsize) goto found; } } + head[0] = '%'; + err("unknown format char '%c'", tail[0]); } head++; } @@ -554,7 +558,7 @@ found: break; } /* possibly truncate to format-char specified length */ - if (len != -1) { + if (len >= 0 && len < (int)strlen(head)) { head[len] = '\0'; dbg("truncate to %i chars, subtitution string becomes '%s'", len, head); } |