When skipping a relocation because the referenced symbol is undefined, make
authorkettenis <kettenis@openbsd.org>
Mon, 22 Dec 2014 13:32:51 +0000 (13:32 +0000)
committerkettenis <kettenis@openbsd.org>
Mon, 22 Dec 2014 13:32:51 +0000 (13:32 +0000)
sure we move on to the next relocation entry.

While there, also skip relocations for REL architectures.

lib/csu/boot.h

index a5422d4..60d778e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: boot.h,v 1.1 2014/12/22 03:51:08 kurt Exp $ */
+/*     $OpenBSD: boot.h,v 1.2 2014/12/22 13:32:51 kettenis Exp $ */
 
 /*
  * Copyright (c) 1998 Per Fogelstrom, Opsycon AB
@@ -172,7 +172,7 @@ _dl_boot_bind(const long sp, long *dl_data, Elf_Dyn *dynamicp)
                rp = (Elf_Rel *)(dynld.Dyn.info[DT_REL]);
                rs = dynld.dyn.relsz;
 
-               for (i = 0; i < rs; i += sizeof (Elf_Rel)) {
+               for (i = 0; i < rs; i += sizeof (Elf_Rel), rp++) {
                        Elf_Addr *ra;
                        const Elf_Sym *sp;
 
@@ -187,12 +187,15 @@ _dl_boot_bind(const long sp, long *dl_data, Elf_Dyn *dynamicp)
                                _dl_wrstderr((char *)dynld.dyn.strtab +
                                    sp->st_name);
 #endif
+#ifdef RCRT0
+                               continue;
+#else
                                _dl_exit(5);
+#endif
                        }
 
                        ra = (Elf_Addr *)(rp->r_offset + loff);
                        RELOC_REL(rp, sp, ra, loff);
-                       rp++;
                }
        }
 
@@ -214,7 +217,7 @@ _dl_boot_bind(const long sp, long *dl_data, Elf_Dyn *dynamicp)
                        rp = NULL;
                        rs = 0;
                }
-               for (i = 0; i < rs; i += sizeof (Elf_RelA)) {
+               for (i = 0; i < rs; i += sizeof (Elf_RelA), rp++) {
                        Elf_Addr *ra;
                        const Elf_Sym *sp;
 
@@ -236,7 +239,6 @@ _dl_boot_bind(const long sp, long *dl_data, Elf_Dyn *dynamicp)
 
                        ra = (Elf_Addr *)(rp->r_offset + loff);
                        RELOC_RELA(rp, sp, ra, loff, dynld.dyn.pltgot);
-                       rp++;
                }
        }