xf86drm: Bound strstr() to the allocated data
We are reading at most sizeof(data) bytes, but then data may not contain a terminating '\0', at least in theory, so strstr() may overflow the stack allocated array. Make sure that data always contains at least one '\0'. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>main
parent
db138b9ba1
commit
3627f38da9
|
@ -2863,7 +2863,7 @@ static int drmParsePciBusInfo(int maj, int min, drmPciBusInfoPtr info)
|
|||
{
|
||||
#ifdef __linux__
|
||||
char path[PATH_MAX + 1];
|
||||
char data[128];
|
||||
char data[128 + 1];
|
||||
char *str;
|
||||
int domain, bus, dev, func;
|
||||
int fd, ret;
|
||||
|
@ -2874,6 +2874,7 @@ static int drmParsePciBusInfo(int maj, int min, drmPciBusInfoPtr info)
|
|||
return -errno;
|
||||
|
||||
ret = read(fd, data, sizeof(data));
|
||||
data[128] = '\0';
|
||||
close(fd);
|
||||
if (ret < 0)
|
||||
return -errno;
|
||||
|
|
Loading…
Reference in New Issue