From: Shamus Hammons Date: Sat, 20 Dec 2014 17:06:52 +0000 (-0600) Subject: This Time For Sure :-P X-Git-Tag: v1.7.1~27 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rln;a=commitdiff_plain;h=3e667b86e26135a3bc04804948436f82f75010a7;ds=sidebyside This Time For Sure :-P The data structures in RLN are pretty piss poor in places, and likely that way because of whoever had this code before just bodged in a bunch of code to make it work they way they wanted it to. Trying to reverse course on that score. :-) --- diff --git a/rln.c b/rln.c index fb4cb58..1a44617 100644 --- a/rln.c +++ b/rln.c @@ -229,11 +229,14 @@ int DoSymbol(struct OFILE * ofile) { // Obtain the string table index for the relocation symbol, look // for it in the globals hash table to obtain information on that - // symbol. For the hash calculation to work correctly it must be - // placed in a 'clean' string before looking it up. + // symbol. +#if 0 memset(sym, 0, SYMLEN); strcpy(sym, symend + index); hptr = LookupHREC(sym); +#else + hptr = LookupHREC(symend + index); +#endif if (hptr == NULL) { @@ -376,7 +379,7 @@ int DoSymbol(struct OFILE * ofile) } } - // Increment DoSymbol() processsing + // Increment dosymi processsing dosymi++; return 0; @@ -408,7 +411,7 @@ void FreeHashes(void) // Add all global and external symbols to the output symbol table // [This is confusing--is it adding globals or locals? common == local! // but then again, we see this in the header: -// #define T_COMMON (T_GLOBAL | T_EXTERN)] +// #define T_COMMON (T_GLOBAL | T_EXTERN) but that could be just bullshit.] // long DoCommon(void) { @@ -1084,7 +1087,6 @@ int segmentpad(FILE * fd, long segsize, int value) // int write_ofile(struct OHEADER * header) { - FILE * fd; // File descriptor unsigned osize; // Object segment size struct OFILE * otemp; // Object file pointer int i, j; // Iterators @@ -1108,11 +1110,11 @@ int write_ofile(struct OHEADER * header) strcat(ofile, ".o"); // Object files (partial linking etc) } - fd = fopen(ofile, "wb"); // Attempt to open output file + FILE * fd = fopen(ofile, "wb"); // Attempt to open output file if (!fd) { - printf("Can't open output file %s\n", ofile); // Error opening output file + printf("Can't open output file %s\n", ofile); return 1; } @@ -1134,77 +1136,77 @@ int write_ofile(struct OHEADER * header) // additional code will need to be added for ABS and partial linking. // Build the COF_HDR - putword(himage + 0, 0x0150 ); // Magic Number (0x0150) - putword(himage + 2, 0x0003 ); // Sections Number (3) - putlong(himage + 4, 0x00000000 ); // Date (0L) - putlong(himage + 8, dsoff + header->dsize); // Offset to Symbols Section - putlong(himage + 12, ost_index); // Number of Symbols - putword(himage + 16, 0x001C ); // Size of RUN_HDR (0x1C) - putword(himage + 18, 0x0003 ); // Executable Flags (3) + putword(himage + 0, 0x0150 ); // Magic Number (0x0150) + putword(himage + 2, 0x0003 ); // Sections Number (3) + putlong(himage + 4, 0x00000000 ); // Date (0L) + putlong(himage + 8, dsoff + header->dsize); // Offset to Symbols Section + putlong(himage + 12, ost_index); // Number of Symbols + putword(himage + 16, 0x001C ); // Size of RUN_HDR (0x1C) + putword(himage + 18, 0x0003 ); // Executable Flags (3) // Build the RUN_HDR - putlong(himage + 20, 0x00000107 ); // Magic/vstamp - putlong(himage + 24, header->tsize ); // TEXT size in bytes - putlong(himage + 28, header->dsize ); // DATA size in bytes - putlong(himage + 32, header->bsize ); // BSS size in bytes - putlong(himage + 36, tbase ); // Start of executable, normally @TEXT - putlong(himage + 40, tbase ); // @TEXT - putlong(himage + 44, dbase ); // @DATA + putlong(himage + 20, 0x00000107 ); // Magic/vstamp + putlong(himage + 24, header->tsize ); // TEXT size in bytes + putlong(himage + 28, header->dsize ); // DATA size in bytes + putlong(himage + 32, header->bsize ); // BSS size in bytes + putlong(himage + 36, tbase ); // Start of executable, normally @TEXT + putlong(himage + 40, tbase ); // @TEXT + putlong(himage + 44, dbase ); // @DATA // Build the TEXT SEC_HDR putlong(himage + 48, 0x2E746578 ); - putlong(himage + 52, 0x74000000 ); // ".text" - putlong(himage + 56, tbase ); // TEXT START - putlong(himage + 60, tbase ); // TEXT START - putlong(himage + 64, header->tsize ); // TEXT size in bytes - putlong(himage + 68, tsoff ); // Offset to section data in file - putlong(himage + 72, 0x00000000 ); // Offset to section reloc in file (0L) - putlong(himage + 76, 0x00000000 ); // Offset to debug lines structures (0L) - putlong(himage + 80, 0x00000000 ); // Nreloc/nlnno (0L) - putlong(himage + 84, 0x00000020 ); // SEC_FLAGS: STYP_TEXT + putlong(himage + 52, 0x74000000 ); // ".text" + putlong(himage + 56, tbase ); // TEXT START + putlong(himage + 60, tbase ); // TEXT START + putlong(himage + 64, header->tsize ); // TEXT size in bytes + putlong(himage + 68, tsoff ); // Offset to section data in file + putlong(himage + 72, 0x00000000 ); // Offset to section reloc in file (0L) + putlong(himage + 76, 0x00000000 ); // Offset to debug lines structures (0L) + putlong(himage + 80, 0x00000000 ); // Nreloc/nlnno (0L) + putlong(himage + 84, 0x00000020 ); // SEC_FLAGS: STYP_TEXT // Build the DATA SEC_HDR putlong(himage + 88, 0x2E646174 ); - putlong(himage + 92, 0x61000000 ); // ".data" - putlong(himage + 96, dbase ); // DATA START - putlong(himage + 100, dbase ); // DATA START - putlong(himage + 104, header->dsize ); // DATA size in bytes - putlong(himage + 108, dsoff ); // Offset to section data in file - putlong(himage + 112, 0x00000000 ); // Offset to section reloc in file (0L) - putlong(himage + 116, 0x00000000 ); // Offset to debugging lines structures (0L) - putlong(himage + 120, 0x00000000 ); // Nreloc/nlnno (0L) - putlong(himage + 124, 0x00000040 ); // SEC_FLAGS: STYP_DATA + putlong(himage + 92, 0x61000000 ); // ".data" + putlong(himage + 96, dbase ); // DATA START + putlong(himage + 100, dbase ); // DATA START + putlong(himage + 104, header->dsize ); // DATA size in bytes + putlong(himage + 108, dsoff ); // Offset to section data in file + putlong(himage + 112, 0x00000000 ); // Offset to section reloc in file (0L) + putlong(himage + 116, 0x00000000 ); // Offset to debugging lines structures (0L) + putlong(himage + 120, 0x00000000 ); // Nreloc/nlnno (0L) + putlong(himage + 124, 0x00000040 ); // SEC_FLAGS: STYP_DATA // Build the BSS SEC_HDR putlong(himage + 128, 0x2E627373 ); - putlong(himage + 132, 0x00000000 ); // ".bss" - putlong(himage + 136, bbase ); // BSS START - putlong(himage + 140, bbase ); // BSS START - putlong(himage + 144, header->bsize ); // BSS size in bytes - putlong(himage + 148, bsoff ); // Offset to section data in file - putlong(himage + 152, 0x00000000 ); // Offset to section reloc in file (0L) - putlong(himage + 156, 0x00000000 ); // Offset to debugging lines structures (0L) - putlong(himage + 160, 0x00000000 ); // Nreloc/nlnno (0L) - putlong(himage + 164, 0x00000080 ); // SEC_FLAGS: STYP_BSS - - symoffset = 168; // Update symbol offset + putlong(himage + 132, 0x00000000 ); // ".bss" + putlong(himage + 136, bbase ); // BSS START + putlong(himage + 140, bbase ); // BSS START + putlong(himage + 144, header->bsize ); // BSS size in bytes + putlong(himage + 148, bsoff ); // Offset to section data in file + putlong(himage + 152, 0x00000000 ); // Offset to section reloc in file (0L) + putlong(himage + 156, 0x00000000 ); // Offset to debugging lines structures (0L) + putlong(himage + 160, 0x00000000 ); // Nreloc/nlnno (0L) + putlong(himage + 164, 0x00000080 ); // SEC_FLAGS: STYP_BSS + + symoffset = 168; // Update symbol offset } // Absolute (ABS) header else { // Build the ABS header - putword(himage + 0, 0x601B ); // Magic Number (0x601B) - putlong(himage + 2, header->tsize ); // TEXT segment size - putlong(himage + 6, header->dsize ); // DATA segment size - putlong(himage + 10, header->bsize ); // BSS segment size - putlong(himage + 14, ost_index * 14 ); // Symbol table size (?) - putlong(himage + 18, 0x00000000 ); // - putlong(himage + 22, tbase ); // TEXT base address - putword(himage + 26, 0xFFFF ); // Flags (?) - putlong(himage + 28, dbase ); // DATA base address - putlong(himage + 32, bbase ); // BSS base address + putword(himage + 0, 0x601B ); // Magic Number (0x601B) + putlong(himage + 2, header->tsize ); // TEXT segment size + putlong(himage + 6, header->dsize ); // DATA segment size + putlong(himage + 10, header->bsize ); // BSS segment size + putlong(himage + 14, ost_index * 14 ); // Symbol table size (?) + putlong(himage + 18, 0x00000000 ); // + putlong(himage + 22, tbase ); // TEXT base address + putword(himage + 26, 0xFFFF ); // Flags (?) + putlong(himage + 28, dbase ); // DATA base address + putlong(himage + 32, bbase ); // BSS base address - symoffset = 36; // Update symbol offset + symoffset = 36; // Update symbol offset } // Write the header, but not if noheaderflag @@ -1274,32 +1276,37 @@ int write_ofile(struct OHEADER * header) { if (header->ssize) { - if (fwrite(ost, (ost_ptr - ost), 1, fd) != 1) goto werror; - if (fwrite(oststr, (oststr_ptr - oststr), 1, fd) != 1) goto werror; + if (fwrite(ost, (ost_ptr - ost), 1, fd) != 1) + goto werror; + + if (fwrite(oststr, (oststr_ptr - oststr), 1, fd) != 1) + goto werror; } } // Absolute (ABS) symbol/string table else { // The symbol and string table have been created as part of the - // DoSymbol() function and the output symbol and string tables are in - // COF format. For an ABS file we need to process through this to - // create the 14 character long combined symbol and string table. - // Format of symbol table in ABS: AAAAAAAATTVVVV, where (A)=STRING, - // (T)=TYPE & (V)=VALUE + // DoSymbol() function and the output symbol and string tables are + // in COF format. For an ABS file we need to process through this + // to create the 14 character long combined symbol and string + // table. Format of symbol table in ABS: AAAAAAAATTVVVV, where + // (A)=STRING, (T)=TYPE & (V)=VALUE for(i=0; io_next = otemp->o_next; - ohold = otemp; + struct OFILE * ohold = otemp; if (!ohold->isArchiveFile) free(ohold->o_image); free(ohold); + + // Also need to remove them from the obj_* tables too :-P + // N.B.: Would probably be worthwhile to remove crap like this + // and stuff it into the OFILE structure... + if (wflag) + printf("»-> removing %s... (index == %i, len == %i)\n", obj_fname[i], i, obj_index - 1); + + int k; + + for(k=i; ko_next; + i++; } // Update base addresses and create symbols _TEXT_E, _DATA_E and _BSS_E @@ -1581,7 +1600,7 @@ struct OHEADER * make_ofile() } else { - // BSS is independant of DATA + // BSS is independent of DATA bbase = bval; OSTAdd("_BSS_E", 0x09000000, bval + bsssize); } @@ -1600,7 +1619,7 @@ struct OHEADER * make_ofile() } else { - // BSS is independant of DATA + // BSS is independent of DATA bbase = bval; OSTAdd("_BSS_E", 0x09000000, bval + bsssize); } @@ -1646,7 +1665,7 @@ struct OHEADER * make_ofile() else oprev->o_next = otemp->o_next; - ohold = otemp; + struct OFILE * ohold = otemp; if (ohold->o_image) if (!ohold->isArchiveFile) @@ -2047,7 +2066,7 @@ int DoItem(struct OFILE * obj) // Don't do anything if this is just an ARCHIVE marker, just add the file // to the olist - // (Shamus: N.B. it does no such ARCHIVE thing ATM) + // (Shamus: N.B.: it does no such ARCHIVE thing ATM) if (!(obj->o_flags & O_ARCHIVE)) { Ofile->o_header.magic = getlong(ptr); @@ -2118,7 +2137,7 @@ int ProcessLists(void) // Process the unresolved symbols list. This may involve pulling in symbols // from any included .a units. Such units are lazy linked by default; we - // generally don't want everything they provide, just what's refenced. + // generally don't want everything they provide, just what's referenced. for(uptr=unresolved; uptr!=NULL; ) { if (vflag > 1) @@ -2405,7 +2424,7 @@ int LoadObject(char * fname, int fd, char * ptr) return 1; } - // SCPCD : get the name of the file instead of all pathname + // SCPCD: get the name of the file instead of all pathname strcpy(obj_fname[obj_index], path_tail(fname)); obj_segsize[obj_index][0] = (getlong(ptr + 4) + secalign) & ~secalign; obj_segsize[obj_index][1] = (getlong(ptr + 8) + secalign) & ~secalign; @@ -2824,7 +2843,7 @@ int doargs(int argc, char * argv[]) printf("Error in text-segment address: cannot be contiguous\n"); return 1; } - else if ((ttype = 0), getval(argv[i], &tval)) + else if ((ttype = 0), GetHexValue(argv[i], &tval)) { printf("Error in text-segment address: %s is not 'r', 'x' or an address.", argv[i]); return 1; @@ -2842,7 +2861,7 @@ int doargs(int argc, char * argv[]) { dtype = -2; // DATA follows TEXT } - else if ((dtype = 0), getval(argv[i],&dval)) + else if ((dtype = 0), GetHexValue(argv[i], &dval)) { printf("Error in data-segment address: %s is not 'r', 'x' or an address.", argv[i]); return 1; @@ -2860,7 +2879,7 @@ int doargs(int argc, char * argv[]) { btype = -3; // BSS follows DATA } - else if ((btype = 0), getval(argv[i],&bval)) + else if ((btype = 0), GetHexValue(argv[i], &bval)) { printf("Error in bss-segment address: %s is not 'r', 'x[td]', or an address.", argv[i]); return 1; diff --git a/rln.h b/rln.h index 2e29463..c542202 100644 --- a/rln.h +++ b/rln.h @@ -55,12 +55,12 @@ #define PATCH 1 // Patch release number #ifdef WIN32 -#define PLATFORM "Win32" // Release platform - Windows +#define PLATFORM "Win32" // Release platform - Windows #else #ifdef __GCCUNIX__ -#define PLATFORM "OSX/Linux" // Release platform - MAC OSX or Linux +#define PLATFORM "OSX/Linux" // Release platform - MAC OSX or Linux #else -#define PLATFORM "Unknown" // Release platform - Not Specified +#define PLATFORM "Unknown" // Release platform - Not Specified #endif #endif