From 12f0744f340746b3a1c1accfdf993d6548f33e56 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 23 May 2017 17:35:49 -0700 Subject: Add and use xmmap. Everyone forgets that mmap returns MAP_FAILED rather than NULL on failure. Every use of mmap in toybox was either doing the wrong check, or no check at all (including the two I personally added). --- toys/pending/mdev.c | 175 ++++++++++++++++++++++++++-------------------------- 1 file changed, 87 insertions(+), 88 deletions(-) (limited to 'toys/pending/mdev.c') diff --git a/toys/pending/mdev.c b/toys/pending/mdev.c index 2688cf35..1cf4e7cd 100644 --- a/toys/pending/mdev.c +++ b/toys/pending/mdev.c @@ -82,103 +82,102 @@ static void make_device(char *path) // mmap the config file if (-1!=(fd = open("/etc/mdev.conf", O_RDONLY))) { + int line = 0; + len = fdlength(fd); - conf = mmap(NULL, len, PROT_READ, MAP_PRIVATE, fd, 0); - if (conf) { - int line = 0; - - // Loop through lines in mmaped file - for (pos = conf; pos-confpw_uid; - } - s++; - // parse GID - gid = strtoul(s,&s2,10); - if (end2!=s2) { - struct group *grp; - char *str = strndup(s, end2-s); - grp = getgrnam(str); - free(str); - if (!grp) goto end_line; - gid = grp->gr_gid; - } - break; + conf = xmmap(NULL, len, PROT_READ, MAP_PRIVATE, fd, 0); + + // Loop through lines in mmaped file + for (pos = conf; pos-confpw_uid; } - // mode - case 1: - { - mode = strtoul(pos, &pos, 8); - if (pos!=end2) goto end_line; - goto found_device; + s++; + // parse GID + gid = strtoul(s,&s2,10); + if (end2!=s2) { + struct group *grp; + char *str = strndup(s, end2-s); + grp = getgrnam(str); + free(str); + if (!grp) goto end_line; + gid = grp->gr_gid; } + break; + } + // mode + case 1: + { + mode = strtoul(pos, &pos, 8); + if (pos!=end2) goto end_line; + goto found_device; } - pos=end2; } + pos=end2; + } end_line: - // Did everything parse happily? - if (field && field!=3) error_exit("Bad line %d", line); + // Did everything parse happily? + if (field && field!=3) error_exit("Bad line %d", line); - // Next line - pos = ++end; - } -found_device: - munmap(conf, len); + // Next line + pos = ++end; } - close(fd); +found_device: + munmap(conf, len); } + close(fd); } sprintf(toybuf, "/dev/%s", device_name); -- cgit v1.2.3