core: ctxless: bail-out if num_lines == 0
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 6 Mar 2019 15:03:34 +0000 (16:03 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 6 Mar 2019 16:53:37 +0000 (17:53 +0100)
Return -1 and set errno to EINVAL if the number of lines specified in
any context-less helper is 0. This is done in addition to bailing out
when the number is higher than the maximum supported number of GPIO
lines. This fixes the segfaults that currently ocurr for num_lines == 0.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
src/lib/ctxless.c

index a0681a5aedd46f3ea6435f43dd779cb44042e4e1..d90a3e0ecaea9c55c147a0c36131fc5f3e25e689 100644 (file)
@@ -38,7 +38,7 @@ int gpiod_ctxless_get_value_multiple(const char *device,
        int rv, flags;
        unsigned int i;
 
-       if (num_lines > GPIOD_LINE_BULK_MAX_LINES) {
+       if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES) {
                errno = EINVAL;
                return -1;
        }
@@ -95,7 +95,7 @@ int gpiod_ctxless_set_value_multiple(const char *device,
        unsigned int i;
        int rv, flags;
 
-       if (num_lines > GPIOD_LINE_BULK_MAX_LINES) {
+       if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES) {
                errno = EINVAL;
                return -1;
        }
@@ -142,7 +142,7 @@ static int basic_event_poll(unsigned int num_lines,
        unsigned int i;
        int rv, ret;
 
-       if (num_lines > GPIOD_LINE_BULK_MAX_LINES)
+       if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES)
                return GPIOD_CTXLESS_EVENT_POLL_RET_ERR;
 
        memset(poll_fds, 0, sizeof(poll_fds));
@@ -235,7 +235,7 @@ int gpiod_ctxless_event_monitor_multiple(
        struct gpiod_line *line;
        unsigned int i;
 
-       if (num_lines > GPIOD_LINE_BULK_MAX_LINES) {
+       if (!num_lines || num_lines > GPIOD_LINE_BULK_MAX_LINES) {
                errno = EINVAL;
                return -1;
        }