fix error checking in pthread_getname_np
authorÉrico Nogueira <ericonr@disroot.org>
Sat, 10 Jul 2021 03:24:59 +0000 (00:24 -0300)
committerRich Felker <dalias@aerifal.cx>
Fri, 6 Aug 2021 15:26:15 +0000 (11:26 -0400)
len is unsigned and can never be smaller than 0. though unlikely, an
error in read() would have lead to an out of bounds write to name.

Reported-by: Michael Forney <mforney@mforney.org>
src/thread/pthread_getname_np.c

index 48d1a29..85504e4 100644 (file)
@@ -17,7 +17,7 @@ int pthread_getname_np(pthread_t thread, char *name, size_t len)
 
        snprintf(f, sizeof f, "/proc/self/task/%d/comm", thread->tid);
        pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
-       if ((fd = open(f, O_RDONLY|O_CLOEXEC)) < 0 || (len = read(fd, name, len)) < 0) status = errno;
+       if ((fd = open(f, O_RDONLY|O_CLOEXEC)) < 0 || (len = read(fd, name, len)) == -1) status = errno;
        else name[len-1] = 0; /* remove trailing new line only if successful */
        if (fd >= 0) close(fd);
        pthread_setcancelstate(cs, 0);