core: make the library NULL-aware
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Sun, 18 Dec 2022 09:06:18 +0000 (10:06 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 6 Jan 2023 11:46:02 +0000 (12:46 +0100)
commit4c4dced3c796e9cf83d281eb4f6c58c23d149800
treea76ec26e023591283f750bb81f2668a84043d7d0
parent936785d36e2971b3d9cccfd51d4a46dd1760597b
core: make the library NULL-aware

Currently we almost never check the validity of pointers passed to the
core C API routines. While we cannot know if a non-NULL pointer points
to an actual object, we can at least verify that it is not NULL before
dereferencing it.

Conceptually we can think of two categories of pointers in libgpiod:

First, there are the objects we manipulate using the API. These are
normally the first arguments in any given method and they are only
instantiated inside the library and never dereferenced by the user.

They should always be valid, so passing a NULL pointer here should
always lead to a crash. Currently it will take the form of a segfault
at the moment of dereference but with this change, we make the user
program abort() with the stack trace pointing right at the offender.

The second category would be pointers to objects that are logically
parameters of methods i.e. not their first argument. Example is:
gpiod_chip_request_lines(chip, req_cfg, line_cfg) (whose logical OOP
version would be: chip->request_lines(req_cfg, line_cfg)). Here we
accept a NULL req_cfg but we'll segfault on a NULL line_cfg. For
consistency: don't crash here but instead return -1 and set errno
to EINVAL. Same everywhere else.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
14 files changed:
lib/chip-info.c
lib/chip.c
lib/edge-event.c
lib/info-event.c
lib/internal.c
lib/line-config.c
lib/line-info.c
lib/line-request.c
lib/line-settings.c
lib/request-config.c
tests/tests-chip.c
tests/tests-edge-event.c
tests/tests-line-config.c
tests/tests-misc.c