arrfab / rpms / glibc

Forked from rpms/glibc 4 years ago
Clone

Blame SOURCES/glibc-rh1595191-4.patch

147e83
commit 2d1c89a5d7c872a1109768f50e2508cf9a4b0348
147e83
Author: Florian Weimer <fweimer@redhat.com>
147e83
Date:   Wed Jun 20 09:45:19 2018 +0200
147e83
147e83
    libio: Avoid ptrdiff_t overflow in IO_validate_vtable
147e83
    
147e83
    If the candidate pointer is sufficiently far away from
147e83
    __start___libc_IO_vtables, the result might not fit into ptrdiff_t.
147e83
147e83
diff --git a/libio/libioP.h b/libio/libioP.h
147e83
index b60244ac5fc3d908..f1576381500ffc85 100644
147e83
--- a/libio/libioP.h
147e83
+++ b/libio/libioP.h
147e83
@@ -957,8 +957,8 @@ IO_validate_vtable (const struct _IO_jump_t *vtable)
147e83
   /* Fast path: The vtable pointer is within the __libc_IO_vtables
147e83
      section.  */
147e83
   uintptr_t section_length = __stop___libc_IO_vtables - __start___libc_IO_vtables;
147e83
-  const char *ptr = (const char *) vtable;
147e83
-  uintptr_t offset = ptr - __start___libc_IO_vtables;
147e83
+  uintptr_t ptr = (uintptr_t) vtable;
147e83
+  uintptr_t offset = ptr - (uintptr_t) __start___libc_IO_vtables;
147e83
   if (__glibc_unlikely (offset >= section_length))
147e83
     /* The vtable pointer is not in the expected section.  Use the
147e83
        slow path, which will terminate the process if necessary.  */