wok-current annotate cross-arm-glibc/stuff/glibc-2.14.1-fixes-1.patch @ rev 12702

Add: cross-arm-glibc (2.14.1)
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 03 18:07:11 2012 +0200 (2012-05-03)
parents
children
rev   line source
pankso@12702 1 Submitted By: Matt Burgess <matthew_at_linuxfromscratch_dot_org>
pankso@12702 2 Date: 2011-10-07
pankso@12702 3 Initial Package Version: 2.14.1
pankso@12702 4 Upstream Status: From upstream
pankso@12702 5 Origin: Matt Burgess
pankso@12702 6 Description: Fixes Firefox crashes and a bug when programs link to
pankso@12702 7 SDL.
pankso@12702 8
pankso@12702 9 diff -Naur glibc-2.14.1.orig/elf/dl-close.c glibc-2.14.1/elf/dl-close.c
pankso@12702 10 --- glibc-2.14.1.orig/elf/dl-close.c 2011-10-07 09:48:55.000000000 +0000
pankso@12702 11 +++ glibc-2.14.1/elf/dl-close.c 2011-10-07 19:43:10.346411120 +0000
pankso@12702 12 @@ -119,17 +119,8 @@
pankso@12702 13 if (map->l_direct_opencount > 0 || map->l_type != lt_loaded
pankso@12702 14 || dl_close_state != not_pending)
pankso@12702 15 {
pankso@12702 16 - if (map->l_direct_opencount == 0)
pankso@12702 17 - {
pankso@12702 18 - if (map->l_type == lt_loaded)
pankso@12702 19 - dl_close_state = rerun;
pankso@12702 20 - else if (map->l_type == lt_library)
pankso@12702 21 - {
pankso@12702 22 - struct link_map **oldp = map->l_initfini;
pankso@12702 23 - map->l_initfini = map->l_orig_initfini;
pankso@12702 24 - _dl_scope_free (oldp);
pankso@12702 25 - }
pankso@12702 26 - }
pankso@12702 27 + if (map->l_direct_opencount == 0 && map->l_type == lt_loaded)
pankso@12702 28 + dl_close_state = rerun;
pankso@12702 29
pankso@12702 30 /* There are still references to this object. Do nothing more. */
pankso@12702 31 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0))
pankso@12702 32 diff -Naur glibc-2.14.1.orig/elf/dl-deps.c glibc-2.14.1/elf/dl-deps.c
pankso@12702 33 --- glibc-2.14.1.orig/elf/dl-deps.c 2011-10-07 09:48:55.000000000 +0000
pankso@12702 34 +++ glibc-2.14.1/elf/dl-deps.c 2011-10-07 19:43:10.348432639 +0000
pankso@12702 35 @@ -478,6 +478,7 @@
pankso@12702 36 nneeded * sizeof needed[0]);
pankso@12702 37 atomic_write_barrier ();
pankso@12702 38 l->l_initfini = l_initfini;
pankso@12702 39 + l->l_free_initfini = 1;
pankso@12702 40 }
pankso@12702 41
pankso@12702 42 /* If we have no auxiliary objects just go on to the next map. */
pankso@12702 43 @@ -678,6 +679,7 @@
pankso@12702 44 l_initfini[nlist] = NULL;
pankso@12702 45 atomic_write_barrier ();
pankso@12702 46 map->l_initfini = l_initfini;
pankso@12702 47 + map->l_free_initfini = 1;
pankso@12702 48 if (l_reldeps != NULL)
pankso@12702 49 {
pankso@12702 50 atomic_write_barrier ();
pankso@12702 51 @@ -686,7 +688,7 @@
pankso@12702 52 _dl_scope_free (old_l_reldeps);
pankso@12702 53 }
pankso@12702 54 if (old_l_initfini != NULL)
pankso@12702 55 - map->l_orig_initfini = old_l_initfini;
pankso@12702 56 + _dl_scope_free (old_l_initfini);
pankso@12702 57
pankso@12702 58 if (errno_reason)
pankso@12702 59 _dl_signal_error (errno_reason == -1 ? 0 : errno_reason, objname,
pankso@12702 60 diff -Naur glibc-2.14.1.orig/elf/dl-libc.c glibc-2.14.1/elf/dl-libc.c
pankso@12702 61 --- glibc-2.14.1.orig/elf/dl-libc.c 2011-10-07 09:48:55.000000000 +0000
pankso@12702 62 +++ glibc-2.14.1/elf/dl-libc.c 2011-10-07 19:43:10.352411141 +0000
pankso@12702 63 @@ -279,6 +279,10 @@
pankso@12702 64 if (! old->dont_free)
pankso@12702 65 free (old);
pankso@12702 66 }
pankso@12702 67 +
pankso@12702 68 + /* Free the initfini dependency list. */
pankso@12702 69 + if (l->l_free_initfini)
pankso@12702 70 + free (l->l_initfini);
pankso@12702 71 }
pankso@12702 72
pankso@12702 73 if (__builtin_expect (GL(dl_ns)[ns]._ns_global_scope_alloc, 0) != 0
pankso@12702 74 diff -Naur glibc-2.14.1.orig/elf/rtld.c glibc-2.14.1/elf/rtld.c
pankso@12702 75 --- glibc-2.14.1.orig/elf/rtld.c 2011-10-07 09:48:55.000000000 +0000
pankso@12702 76 +++ glibc-2.14.1/elf/rtld.c 2011-10-07 19:43:10.355406263 +0000
pankso@12702 77 @@ -2263,6 +2263,7 @@
pankso@12702 78 lnp->dont_free = 1;
pankso@12702 79 lnp = lnp->next;
pankso@12702 80 }
pankso@12702 81 + l->l_free_initfini = 0;
pankso@12702 82
pankso@12702 83 if (l != &GL(dl_rtld_map))
pankso@12702 84 _dl_relocate_object (l, l->l_scope, GLRO(dl_lazy) ? RTLD_LAZY : 0,
pankso@12702 85 diff -Naur glibc-2.14.1.orig/include/link.h glibc-2.14.1/include/link.h
pankso@12702 86 --- glibc-2.14.1.orig/include/link.h 2011-10-07 09:48:55.000000000 +0000
pankso@12702 87 +++ glibc-2.14.1/include/link.h 2011-10-07 19:43:10.357462703 +0000
pankso@12702 88 @@ -192,6 +192,9 @@
pankso@12702 89 during LD_TRACE_PRELINKING=1
pankso@12702 90 contains any DT_SYMBOLIC
pankso@12702 91 libraries. */
pankso@12702 92 + unsigned int l_free_initfini:1; /* Nonzero if l_initfini can be
pankso@12702 93 + freed, ie. not allocated with
pankso@12702 94 + the dummy malloc in ld.so. */
pankso@12702 95
pankso@12702 96 /* Collected information about own RPATH directories. */
pankso@12702 97 struct r_search_path_struct l_rpath_dirs;
pankso@12702 98 @@ -240,9 +243,6 @@
pankso@12702 99
pankso@12702 100 /* List of object in order of the init and fini calls. */
pankso@12702 101 struct link_map **l_initfini;
pankso@12702 102 - /* The init and fini list generated at startup, saved when the
pankso@12702 103 - object is also loaded dynamically. */
pankso@12702 104 - struct link_map **l_orig_initfini;
pankso@12702 105
pankso@12702 106 /* List of the dependencies introduced through symbol binding. */
pankso@12702 107 struct link_map_reldeps
pankso@12702 108 diff -Naur glibc-2.14.1.orig/resolv/res_query.c glibc-2.14.1/resolv/res_query.c
pankso@12702 109 --- glibc-2.14.1.orig/resolv/res_query.c 2011-10-07 09:48:55.000000000 +0000
pankso@12702 110 +++ glibc-2.14.1/resolv/res_query.c 2011-10-07 19:43:10.361412711 +0000
pankso@12702 111 @@ -122,6 +122,7 @@
pankso@12702 112 int *resplen2)
pankso@12702 113 {
pankso@12702 114 HEADER *hp = (HEADER *) answer;
pankso@12702 115 + HEADER *hp2;
pankso@12702 116 int n, use_malloc = 0;
pankso@12702 117 u_int oflags = statp->_flags;
pankso@12702 118
pankso@12702 119 @@ -239,26 +240,25 @@
pankso@12702 120 /* __libc_res_nsend might have reallocated the buffer. */
pankso@12702 121 hp = (HEADER *) *answerp;
pankso@12702 122
pankso@12702 123 - /* We simplify the following tests by assigning HP to HP2. It
pankso@12702 124 - is easy to verify that this is the same as ignoring all
pankso@12702 125 - tests of HP2. */
pankso@12702 126 - HEADER *hp2 = answerp2 ? (HEADER *) *answerp2 : hp;
pankso@12702 127 -
pankso@12702 128 - if (n < (int) sizeof (HEADER) && answerp2 != NULL
pankso@12702 129 - && *resplen2 > (int) sizeof (HEADER))
pankso@12702 130 + /* We simplify the following tests by assigning HP to HP2 or
pankso@12702 131 + vice versa. It is easy to verify that this is the same as
pankso@12702 132 + ignoring all tests of HP or HP2. */
pankso@12702 133 + if (answerp2 == NULL || *resplen2 < (int) sizeof (HEADER))
pankso@12702 134 {
pankso@12702 135 - /* Special case of partial answer. */
pankso@12702 136 - assert (hp != hp2);
pankso@12702 137 - hp = hp2;
pankso@12702 138 + hp2 = hp;
pankso@12702 139 }
pankso@12702 140 - else if (answerp2 != NULL && *resplen2 < (int) sizeof (HEADER)
pankso@12702 141 - && n > (int) sizeof (HEADER))
pankso@12702 142 + else
pankso@12702 143 {
pankso@12702 144 - /* Special case of partial answer. */
pankso@12702 145 - assert (hp != hp2);
pankso@12702 146 - hp2 = hp;
pankso@12702 147 + hp2 = (HEADER *) *answerp2;
pankso@12702 148 + if (n < (int) sizeof (HEADER))
pankso@12702 149 + {
pankso@12702 150 + hp = hp2;
pankso@12702 151 + }
pankso@12702 152 }
pankso@12702 153
pankso@12702 154 + /* Make sure both hp and hp2 are defined */
pankso@12702 155 + assert((hp != NULL) && (hp2 != NULL));
pankso@12702 156 +
pankso@12702 157 if ((hp->rcode != NOERROR || ntohs(hp->ancount) == 0)
pankso@12702 158 && (hp2->rcode != NOERROR || ntohs(hp2->ancount) == 0)) {
pankso@12702 159 #ifdef DEBUG