Standardize error checking for strtol calls
authorBryce Harrington <bryce@osg.samsung.com>
Thu, 4 Aug 2016 00:40:48 +0000 (17:40 -0700)
committerBryce Harrington <bryce@osg.samsung.com>
Sun, 7 Aug 2016 01:19:01 +0000 (18:19 -0700)
This tightens up the strtol() error checking in several places where it
is used for parsing environment variables, and in the backlight
interface that is reading numbers from files under /sys/class/backlight.
All of these uses are expecting strings containing decimal numbers and
nothing else, so the error checking can all be tightened up and made
consistent with other strtol() calls.

This follows the error checking style used in Wayland
(c.f. wayland-client.c and scanner.c) and c.f. commit cbc05378.

Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
compositor/main.c
compositor/systemd-notify.c
libweston/compositor.c
libweston/libbacklight.c

index 6746e3a..5fb5d5a 100644 (file)
@@ -1699,8 +1699,9 @@ int main(int argc, char *argv[])
        server_socket = getenv("WAYLAND_SERVER_SOCKET");
        if (server_socket) {
                weston_log("Running with single client\n");
+               errno = 0;
                fd = strtol(server_socket, &end, 10);
-               if (*end != '\0')
+               if (errno != 0 || end == server_socket || *end != '\0')
                        fd = -1;
        } else {
                fd = -1;
index 9fbd5ee..6104124 100644 (file)
@@ -146,7 +146,7 @@ module_init(struct weston_compositor *compositor,
 
        errno = 0;
        watchdog_time_conv = strtol(watchdog_time_env, &tail, 10);
-       if ((errno != 0) || (*tail != '\0'))
+       if (errno != 0 || tail == watchdog_time_env || *tail != '\0')
                return 0;
 
        /* Convert 'WATCHDOG_USEC' to milliseconds and notify
index b045381..e9c2a83 100644 (file)
@@ -4628,8 +4628,9 @@ weston_environment_get_fd(const char *env)
        e = getenv(env);
        if (!e)
                return -1;
+       errno = 0;
        fd = strtol(e, &end, 10);
-       if (*end != '\0')
+       if (errno != 0 || end == e || *end != '\0')
                return -1;
 
        flags = fcntl(fd, F_GETFD);
index 4039575..59f4e44 100644 (file)
@@ -48,6 +48,7 @@ static long backlight_get(struct backlight *backlight, char *node)
 {
        char buffer[100];
        char *path;
+       char *end;
        int fd;
        long value, ret;
 
@@ -65,8 +66,15 @@ static long backlight_get(struct backlight *backlight, char *node)
                goto out;
        }
 
-       value = strtol(buffer, NULL, 10);
+       errno = 0;
+       value = strtol(buffer, &end, 10);
+       if (errno != 0 || end == buffer || *end != '\0') {
+               ret = -1;
+               goto out;
+       }
+
        ret = value;
+
 out:
        if (fd >= 0)
                close(fd);