[igt-dev] [PATCH i-g-t 5/5] lib/igt_pm: Avoid out-of-bounds reads and writes

Chris Wilson chris at chris-wilson.co.uk
Thu Mar 7 12:16:54 UTC 2019


Quoting Petri Latvala (2019-03-07 11:24:27)
> Read sizeof - 1 to buffers so null-termination stays in bounds.
> 
> Signed-off-by: Petri Latvala <petri.latvala at intel.com>
> ---
>  lib/igt_pm.c | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/lib/igt_pm.c b/lib/igt_pm.c
> index 49027238..94815239 100644
> --- a/lib/igt_pm.c
> +++ b/lib/igt_pm.c
> @@ -176,7 +176,7 @@ static int __igt_pm_enable_audio_runtime_pm(void)
>                 if (fd < 0)
>                         continue;
>  
> -               ret = read(fd, buf, sizeof(buf));
> +               ret = read(fd, buf, sizeof(buf) - 1);
>                 close(fd);
>                 igt_assert(ret > 0);

Could do with buf[ret] = '\0'; as well.

>                 strchomp(buf);
> @@ -206,7 +206,7 @@ static int __igt_pm_enable_audio_runtime_pm(void)
>         }
>  
>         igt_assert(read(fd, __igt_pm_audio_runtime_power_save,
> -                       sizeof(__igt_pm_audio_runtime_power_save)) > 0);
> +                       sizeof(__igt_pm_audio_runtime_power_save) - 1) > 0);

We reuse __igt_pm_audio_runtime_power_save and never complete clear it
between used.

We need

diff --git a/lib/igt_pm.c b/lib/igt_pm.c
index 585706cb1..a76f8ae64 100644
--- a/lib/igt_pm.c
+++ b/lib/igt_pm.c
@@ -101,7 +101,12 @@ static int __igt_pm_audio_restore_runtime_pm(void)

        close(fd);

-       __igt_pm_audio_runtime_power_save[0] = 0;
+       memset(__igt_pm_audio_runtime_power_save, 0
+              sizeof(__igt_pm_audio_runtime_power_save));
+
+       memset(__igt_pm_audio_runtime_control, 0
+              sizeof(__igt_pm_audio_runtime_control));
+
        free(__igt_pm_audio_runtime_control_path);
        __igt_pm_audio_runtime_control_path = NULL;

as well.


>         strchomp(__igt_pm_audio_runtime_power_save);
>         igt_install_exit_handler(__igt_pm_audio_runtime_exit_handler);
>         igt_assert_eq(write(fd, "1\n", 2), 2);
> @@ -219,7 +219,7 @@ static int __igt_pm_enable_audio_runtime_pm(void)
>         }
>  
>         igt_assert(read(fd, __igt_pm_audio_runtime_control,
> -                       sizeof(__igt_pm_audio_runtime_control)) > 0);
> +                       sizeof(__igt_pm_audio_runtime_control) - 1) > 0);
>         strchomp(__igt_pm_audio_runtime_control);
>         igt_assert_eq(write(fd, "auto\n", 5), 5);
>         close(fd);
> @@ -527,7 +527,7 @@ bool igt_setup_runtime_pm(void)
>          * them on test exit.
>          */
>         size = read(fd, __igt_pm_runtime_autosuspend,
> -                   sizeof(__igt_pm_runtime_autosuspend));
> +                   sizeof(__igt_pm_runtime_autosuspend) - 1);
>  

This needs __igt_pm_runtime_autosuspend[size] = '\0';

>         /*
>          * If we fail to read from the file, it means this system doesn't
> @@ -554,7 +554,7 @@ bool igt_setup_runtime_pm(void)
>         igt_assert_f(fd >= 0, "Can't open " POWER_DIR "/control\n");
>  
>         igt_assert(read(fd, __igt_pm_runtime_control,
> -                       sizeof(__igt_pm_runtime_control)) > 0);
> +                       sizeof(__igt_pm_runtime_control) - 1) > 0);
>         strchomp(__igt_pm_runtime_control);
>  
>         igt_debug("Saved runtime power management as '%s' and '%s'\n",
> @@ -588,7 +588,7 @@ enum igt_runtime_pm_status igt_get_runtime_pm_status(void)
>         char buf[32];
>  
>         lseek(pm_status_fd, 0, SEEK_SET);
> -       n_read = read(pm_status_fd, buf, ARRAY_SIZE(buf));
> +       n_read = read(pm_status_fd, buf, ARRAY_SIZE(buf) - 1);
>         igt_assert(n_read >= 0);
>         buf[n_read] = '\0';

Ok.
-Chris


More information about the igt-dev mailing list