home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / gcl-1.000 / gcl-1 / gcl-1.0 / c / unexlin.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-14  |  26.6 KB  |  985 lines

  1. /* Copyright (C) 1985, 1986, 1987, 1988 Free Software Foundation, Inc.
  2.  
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU Library General Public License as published by
  5.     the Free Software Foundation; either version 1, or (at your option)
  6.     any later version.
  7.  
  8.     This program is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.     GNU Library General Public License for more details.
  12.  
  13.     You should have received a copy of the GNU Library General Public License
  14.     along with this program; if not, write to the Free Software
  15.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16.  
  17. In other words, you are welcome to use, share and improve this program.
  18. You are forbidden to forbid anyone else to use, share and improve
  19. what you give them.   Help stamp out software-hoarding!  */
  20.  
  21. /* MODIFIED by M. Frigo (6 Mar 1993) to work with the linux port
  22.  * of akcl-1-615 
  23.  */
  24.  
  25. /*
  26.  * unexec.c - Convert a running program into an a.out file.
  27.  *
  28.  * Author:    Spencer W. Thomas
  29.  *         Computer Science Dept.
  30.  *         University of Utah
  31.  * Date:    Tue Mar  2 1982
  32.  * Modified heavily since then.
  33.  *
  34.  * Synopsis:
  35.  *    unexec (new_name, a_name, data_start, bss_start, entry_address)
  36.  *    char *new_name, *a_name;
  37.  *    unsigned data_start, bss_start, entry_address;
  38.  *
  39.  * Takes a snapshot of the program and makes an a.out format file in the
  40.  * file named by the string argument new_name.
  41.  * If a_name is non-NULL, the symbol table will be taken from the given file.
  42.  * On some machines, an existing a_name file is required.
  43.  *
  44.  * The boundaries within the a.out file may be adjusted with the data_start
  45.  * and bss_start arguments.  Either or both may be given as 0 for defaults.
  46.  *
  47.  * Data_start gives the boundary between the text segment and the data
  48.  * segment of the program.  The text segment can contain shared, read-only
  49.  * program code and literal data, while the data segment is always unshared
  50.  * and unprotected.  Data_start gives the lowest unprotected address.
  51.  * The value you specify may be rounded down to a suitable boundary
  52.  * as required by the machine you are using.
  53.  *
  54.  * Specifying zero for data_start means the boundary between text and data
  55.  * should not be the same as when the program was loaded.
  56.  * If NO_REMAP is defined, the argument data_start is ignored and the
  57.  * segment boundaries are never changed.
  58.  *
  59.  * Bss_start indicates how much of the data segment is to be saved in the
  60.  * a.out file and restored when the program is executed.  It gives the lowest
  61.  * unsaved address, and is rounded up to a page boundary.  The default when 0
  62.  * is given assumes that the entire data segment is to be stored, including
  63.  * the previous data and bss as well as any additional storage allocated with
  64.  * break (2).
  65.  *
  66.  * The new file is set up to start at entry_address.
  67.  *
  68.  * If you make improvements I'd like to get them too.
  69.  * harpo!utah-cs!thomas, thomas@Utah-20
  70.  *
  71.  */
  72.  
  73. /* Modified to support SysVr3 shared libraries by James Van Artsdalen
  74.  * of Dell Computer Corporation.  james@bigtex.cactus.org.
  75.  */
  76.  
  77. /* There are several compilation parameters affecting unexec:
  78.  
  79. * COFF
  80.  
  81. Define this if your system uses COFF for executables.
  82. Otherwise we assume you use Berkeley format.
  83.  
  84. * NO_REMAP
  85.  
  86. Define this if you do not want to try to save Emacs's pure data areas
  87. as part of the text segment.
  88.  
  89. Saving them as text is good because it allows users to share more.
  90.  
  91. However, on machines that locate the text area far from the data area,
  92. the boundary cannot feasibly be moved.  Such machines require
  93. NO_REMAP.
  94.  
  95. Also, remapping can cause trouble with the built-in startup routine
  96. /lib/crt0.o, which defines `environ' as an initialized variable.
  97. Dumping `environ' as pure does not work!  So, to use remapping,
  98. you must write a startup routine for your machine in Emacs's crt0.c.
  99. If NO_REMAP is defined, Emacs uses the system's crt0.o.
  100.  
  101. * SECTION_ALIGNMENT
  102.  
  103. Some machines that use COFF executables require that each section
  104. start on a certain boundary *in the COFF file*.  Such machines should
  105. define SECTION_ALIGNMENT to a mask of the low-order bits that must be
  106. zero on such a boundary.  This mask is used to control padding between
  107. segments in the COFF file.
  108.  
  109. If SECTION_ALIGNMENT is not defined, the segments are written
  110. consecutively with no attempt at alignment.  This is right for
  111. unmodified system V.
  112.  
  113. * SEGMENT_MASK
  114.  
  115. Some machines require that the beginnings and ends of segments
  116. *in core* be on certain boundaries.  For most machines, a page
  117. boundary is sufficient.  That is the default.  When a larger
  118. boundary is needed, define SEGMENT_MASK to a mask of
  119. the bits that must be zero on such a boundary.
  120.  
  121. * A_TEXT_OFFSET(HDR)
  122.  
  123. Some machines count the a.out header as part of the size of the text
  124. segment (a_text); they may actually load the header into core as the
  125. first data in the text segment.  Some have additional padding between
  126. the header and the real text of the program that is counted in a_text.
  127.  
  128. For these machines, define A_TEXT_OFFSET(HDR) to examine the header
  129. structure HDR and return the number of bytes to add to `a_text'
  130. before writing it (above and beyond the number of bytes of actual
  131. program text).  HDR's standard fields are already correct, except that
  132. this adjustment to the `a_text' field has not yet been made;
  133. thus, the amount of offset can depend on the data in the file.
  134.   
  135. * A_TEXT_SEEK(HDR)
  136.  
  137. If defined, this macro specifies the number of bytes to seek into the
  138. a.out file before starting to write the text segment.a
  139.  
  140. * EXEC_MAGIC
  141.  
  142. For machines using COFF, this macro, if defined, is a value stored
  143. into the magic number field of the output file.
  144.  
  145. * ADJUST_EXEC_HEADER
  146.  
  147. This macro can be used to generate statements to adjust or
  148. initialize nonstandard fields in the file header
  149.  
  150. * ADDR_CORRECT(ADDR)
  151.  
  152. Macro to correct an int which is the bit pattern of a pointer to a byte
  153. into an int which is the number of a byte.
  154.  
  155. This macro has a default definition which is usually right.
  156. This default definition is a no-op on most machines (where a
  157. pointer looks like an int) but not on all machines.
  158.  
  159. */
  160.  
  161. #ifndef emacs
  162. #define PERROR(arg) perror (arg); return -1
  163. #else
  164. #include "config.h"
  165. #define PERROR(file) report_error (file, new)
  166. #endif
  167.  
  168. #ifndef CANNOT_DUMP  /* all rest of file!  */
  169.  
  170. #ifndef CANNOT_UNEXEC /* most of rest of file */
  171.  
  172. #include <a.out.h>
  173. /* Define getpagesize () if the system does not.
  174.    Note that this may depend on symbols defined in a.out.h
  175.  */
  176.  
  177. #ifndef makedev            /* Try to detect types.h already loaded */
  178. #include <sys/types.h>
  179. #endif
  180. #include <stdio.h>
  181. #include <sys/stat.h>
  182. #include <errno.h>
  183.  
  184. extern char *start_of_text ();        /* Start of text */
  185. extern char *start_of_data ();        /* Start of initialized data */
  186. #define start_of_data() &etext
  187. #define start_of_text() ( (char *) 0 )
  188. extern char *etext;
  189.  
  190. static int make_hdr (), copy_text_and_data (), copy_sym ();
  191. static int mark_x ();
  192.  
  193. #ifdef COFF
  194. #ifndef USG
  195. #ifndef STRIDE
  196. #ifndef UMAX
  197. #ifndef sun386
  198. /* I have a suspicion that these are turned off on all systems
  199.    and can be deleted.  Try it in version 19.  */
  200. #include <filehdr.h>
  201. #include <aouthdr.h>
  202. #include <scnhdr.h>
  203. #include <syms.h>
  204. #endif /* not sun386 */
  205. #endif /* not UMAX */
  206. #endif /* Not STRIDE */
  207. #endif /* not USG */
  208. static long block_copy_start;        /* Old executable start point */
  209. static struct filehdr f_hdr;        /* File header */
  210. static struct aouthdr f_ohdr;        /* Optional file header (a.out) */
  211. long bias;            /* Bias to add for growth */
  212. long lnnoptr;            /* Pointer to line-number info within file */
  213. #define SYMS_START block_copy_start
  214.  
  215. static long text_scnptr;
  216. static long data_scnptr;
  217.  
  218. #else /* not COFF */
  219.  
  220. #define SYMS_START ((long) N_SYMOFF (ohdr))
  221.  
  222. /* Some machines override the structure name for an a.out header.  */
  223. #ifndef EXEC_HDR_TYPE
  224. #define EXEC_HDR_TYPE struct exec
  225. #endif
  226.  
  227. #ifdef HPUX
  228. #ifdef HP9000S200_ID
  229. #define MY_ID HP9000S200_ID
  230. #else
  231. #include <model.h>
  232. #define MY_ID MYSYS
  233. #endif /* no HP9000S200_ID */
  234. static MAGIC OLDMAGIC = {MY_ID, SHARE_MAGIC};
  235. static MAGIC NEWMAGIC = {MY_ID, DEMAND_MAGIC};
  236. #define N_TXTOFF(x) TEXT_OFFSET(x)
  237. #define N_SYMOFF(x) LESYM_OFFSET(x)
  238. static EXEC_HDR_TYPE hdr, ohdr;
  239.  
  240. #else /* not HPUX */
  241.  
  242. extern char *sbrk ();
  243.  
  244. #if defined (USG) && !defined (IBMRTAIX) && !defined (IRIS) && !defined(linux)
  245. static struct bhdr hdr, ohdr;
  246. #define a_magic fmagic
  247. #define a_text tsize
  248. #define a_data dsize
  249. #define a_bss bsize
  250. #define a_syms ssize
  251. #define a_trsize rtsize
  252. #define a_drsize rdsize
  253. #define a_entry entry
  254. #define    N_BADMAG(x) \
  255.     (((x).fmagic)!=OMAGIC && ((x).fmagic)!=NMAGIC &&\
  256.      ((x).fmagic)!=FMAGIC && ((x).fmagic)!=IMAGIC)
  257. #define NEWMAGIC FMAGIC
  258. #else /* IRIS or IBMRTAIX or not USG */
  259. static EXEC_HDR_TYPE hdr, ohdr;
  260. #define NEWMAGIC ZMAGIC
  261. #endif /* IRIS or IBMRTAIX not USG */
  262. #endif /* not HPUX */
  263.  
  264. static int unexec_text_start;
  265. static int unexec_data_start;
  266.  
  267. #endif /* not COFF */
  268.  
  269. static int pagemask;
  270.  
  271. /* Correct an int which is the bit pattern of a pointer to a byte
  272.    into an int which is the number of a byte.
  273.    This is a no-op on ordinary machines, but not on all.  */
  274.  
  275. #ifndef ADDR_CORRECT   /* Let m-*.h files override this definition */
  276. #define ADDR_CORRECT(x) ((char *)(x) - (char*)0)
  277. #endif
  278.  
  279. #ifdef emacs
  280.  
  281. static
  282. report_error (file, fd)
  283.      char *file;
  284.      int fd;
  285. {
  286.   if (fd)
  287.     close (fd);
  288.   error ("Failure operating on %s", file);
  289. }
  290. #endif /* emacs */
  291.  
  292. #define ERROR0(msg) report_error_1 (new, msg, 0, 0); return -1
  293. #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1
  294. #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1
  295.  
  296. static
  297. report_error_1 (fd, msg, a1, a2)
  298.      int fd;
  299.      char *msg;
  300.      int a1, a2;
  301. {
  302.   close (fd);
  303. #ifdef emacs
  304.   error (msg, a1, a2);
  305. #else
  306.   fprintf (stderr, msg, a1, a2);
  307.   fprintf (stderr, "\n");
  308. #endif
  309. }
  310.  
  311. /* ****************************************************************
  312.  * unexec
  313.  *
  314.  * driving logic.
  315.  */
  316. unexec (new_name, a_name, data_start, bss_start, entry_address)
  317.      char *new_name, *a_name;
  318.      unsigned data_start, bss_start, entry_address;
  319. {
  320.   int new, a_out = -1;
  321.  
  322.   if (a_name && (a_out = open (a_name, 0)) < 0)
  323.     {
  324.       PERROR (a_name);
  325.     }
  326.   if ((new = creat (new_name, 0666)) < 0)
  327.     {
  328.       PERROR (new_name);
  329.     }
  330.  
  331.   if (make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) < 0
  332.       || copy_text_and_data (new, a_out) < 0
  333.       || copy_sym (new, a_out, a_name, new_name) < 0
  334. #ifdef COFF
  335.       || adjust_lnnoptrs (new, a_out, new_name) < 0
  336. #endif
  337.       )
  338.     {
  339.       close (new);
  340.       /* unlink (new_name);            /* Failed, unlink new a.out */
  341.       return -1;    
  342.     }
  343.  
  344.   close (new);
  345.   if (a_out >= 0)
  346.     close (a_out);
  347.   return mark_x (new_name);
  348. }
  349.  
  350. /* ****************************************************************
  351.  * make_hdr
  352.  *
  353.  * Make the header in the new a.out from the header in core.
  354.  * Modify the text and data sizes.
  355.  */
  356. static int
  357. make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name)
  358.      int new, a_out;
  359.      unsigned data_start, bss_start, entry_address;
  360.      char *a_name;
  361.      char *new_name;
  362. {
  363.   int tem;
  364. #ifdef COFF
  365.   auto struct scnhdr f_thdr;        /* Text section header */
  366.   auto struct scnhdr f_dhdr;        /* Data section header */
  367.   auto struct scnhdr f_bhdr;        /* Bss section header */
  368.   auto struct scnhdr scntemp;        /* Temporary section header */
  369.   register int scns;
  370. #endif /* COFF */
  371. #ifdef USG_SHARED_LIBRARIES
  372.   extern unsigned int bss_end;
  373. #else
  374.   unsigned int bss_end;
  375. #endif
  376.  
  377.   pagemask = getpagesize () - 1;
  378.  
  379.   /* Adjust text/data boundary. */
  380. #ifdef NO_REMAP
  381.   data_start = (int) start_of_data ();
  382. #else /* not NO_REMAP */
  383.   if (!data_start)
  384.     data_start = (int) start_of_data ();
  385. #endif /* not NO_REMAP */
  386.   data_start = ADDR_CORRECT (data_start);
  387.  
  388. #ifdef SEGMENT_MASK
  389.   data_start = data_start & ~SEGMENT_MASK; /* (Down) to segment boundary. */
  390. #else
  391.   data_start = data_start & ~pagemask; /* (Down) to page boundary. */
  392. #endif
  393.  
  394.   bss_end = ADDR_CORRECT (sbrk (0)) + pagemask;
  395.   bss_end &= ~ pagemask;
  396.  
  397.   /* Adjust data/bss boundary. */
  398.   if (bss_start != 0)
  399.     {
  400.       bss_start = (ADDR_CORRECT (bss_start) + pagemask);
  401.       /* (Up) to page bdry. */
  402.       bss_start &= ~ pagemask;
  403.       if (bss_start > bss_end)
  404.     {
  405.       ERROR1 ("unexec: Specified bss_start (%u) is past end of program",
  406.           bss_start);
  407.     }
  408.     }
  409.   else
  410.     bss_start = bss_end;
  411.  
  412.   if (data_start > bss_start)    /* Can't have negative data size. */
  413.     {
  414.       ERROR2 ("unexec: data_start (%u) can't be greater than bss_start (%u)",
  415.           data_start, bss_start);
  416.     }
  417.  
  418. #ifdef COFF
  419.   /* Salvage as much info from the existing file as possible */
  420.   if (a_out >= 0)
  421.     {
  422.       if (read (a_out, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr))
  423.     {
  424.       PERROR (a_name);
  425.     }
  426.       block_copy_start += sizeof (f_hdr);
  427.       if (f_hdr.f_opthdr > 0)
  428.     {
  429.       if (read (a_out, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr))
  430.         {
  431.           PERROR (a_name);
  432.         }
  433.       block_copy_start += sizeof (f_ohdr);
  434.     }
  435.       /* Loop through section headers, copying them in */
  436.       for (scns = f_hdr.f_nscns; scns > 0; scns--) {
  437.     if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
  438.       {
  439.         PERROR (a_name);
  440.       }
  441.     if (scntemp.s_scnptr > 0L)
  442.       {
  443.             if (block_copy_start < scntemp.s_scnptr + scntemp.s_size)
  444.           block_copy_start = scntemp.s_scnptr + scntemp.s_size;
  445.       }
  446.     if (strcmp (scntemp.s_name, ".text") == 0)
  447.       {
  448.         f_thdr = scntemp;
  449.       }
  450.     else if (strcmp (scntemp.s_name, ".data") == 0)
  451.       {
  452.         f_dhdr = scntemp;
  453.       }
  454.     else if (strcmp (scntemp.s_name, ".bss") == 0)
  455.       {
  456.         f_bhdr = scntemp;
  457.       }
  458.       }
  459.     }
  460.   else
  461.     {
  462.       ERROR0 ("can't build a COFF file from scratch yet");
  463.     }
  464.  
  465.   /* Now we alter the contents of all the f_*hdr variables
  466.      to correspond to what we want to dump.  */
  467.  
  468. #ifdef USG_SHARED_LIBRARIES
  469.  
  470.   /* The amount of data we're adding to the file is distance from the
  471.    * end of the original .data space to the current end of the .data
  472.    * space.
  473.    */
  474.  
  475.   bias = bss_end - (f_ohdr.data_start + f_dhdr.s_size);
  476.  
  477. #endif
  478.  
  479.   f_hdr.f_flags |= (F_RELFLG | F_EXEC);
  480. #ifdef TPIX
  481.   f_hdr.f_nscns = 3;
  482. #endif
  483. #ifdef EXEC_MAGIC
  484.   f_ohdr.magic = EXEC_MAGIC;
  485. #endif
  486. #ifndef NO_REMAP
  487.   f_ohdr.text_start = (long) start_of_text ();
  488.   f_ohdr.tsize = data_start - f_ohdr.text_start;
  489.   f_ohdr.data_start = data_start;
  490. #endif /* NO_REMAP */
  491.   f_ohdr.dsize = bss_start - f_ohdr.data_start;
  492.   f_ohdr.bsize = bss_end - bss_start;
  493.   f_thdr.s_size = f_ohdr.tsize;
  494.   f_thdr.s_scnptr = sizeof (f_hdr) + sizeof (f_ohdr);
  495.   f_thdr.s_scnptr += (f_hdr.f_nscns) * (sizeof (f_thdr));
  496.   lnnoptr = f_thdr.s_lnnoptr;
  497. #ifdef SECTION_ALIGNMENT
  498.   /* Some systems require special alignment
  499.      of the sections in the file itself.  */
  500.   f_thdr.s_scnptr
  501.     = (f_thdr.s_scnptr + SECTION_ALIGNMENT) & ~SECTION_ALIGNMENT;
  502. #endif /* SECTION_ALIGNMENT */
  503. #ifdef TPIX
  504.   f_thdr.s_scnptr = 0xd0;
  505. #endif
  506.   text_scnptr = f_thdr.s_scnptr;
  507.   f_dhdr.s_paddr = f_ohdr.data_start;
  508.   f_dhdr.s_vaddr = f_ohdr.data_start;
  509.   f_dhdr.s_size = f_ohdr.dsize;
  510.   f_dhdr.s_scnptr = f_thdr.s_scnptr + f_thdr.s_size;
  511. #ifdef SECTION_ALIGNMENT
  512.   /* Some systems require special alignment
  513.      of the sections in the file itself.  */
  514.   f_dhdr.s_scnptr
  515.     = (f_dhdr.s_scnptr + SECTION_ALIGNMENT) & ~SECTION_ALIGNMENT;
  516. #endif /* SECTION_ALIGNMENT */
  517. #ifdef DATA_SECTION_ALIGNMENT
  518.   /* Some systems require special alignment
  519.      of the data section only.  */
  520.   f_dhdr.s_scnptr
  521.     = (f_dhdr.s_scnptr + DATA_SECTION_ALIGNMENT) & ~DATA_SECTION_ALIGNMENT;
  522. #endif /* DATA_SECTION_ALIGNMENT */
  523.   data_scnptr = f_dhdr.s_scnptr;
  524.   f_bhdr.s_paddr = f_ohdr.data_start + f_ohdr.dsize;
  525.   f_bhdr.s_vaddr = f_ohdr.data_start + f_ohdr.dsize;
  526.   f_bhdr.s_size = f_ohdr.bsize;
  527.   f_bhdr.s_scnptr = 0L;
  528. #ifndef USG_SHARED_LIBRARIES
  529.   bias = f_dhdr.s_scnptr + f_dhdr.s_size - block_copy_start;
  530. #endif
  531.  
  532.   if (f_hdr.f_symptr > 0L)
  533.     {
  534.       f_hdr.f_symptr += bias;
  535.     }
  536.  
  537.   if (f_thdr.s_lnnoptr > 0L)
  538.     {
  539.       f_thdr.s_lnnoptr += bias;
  540.     }
  541.  
  542. #ifdef ADJUST_EXEC_HEADER
  543.   ADJUST_EXEC_HEADER
  544. #endif /* ADJUST_EXEC_HEADER */
  545.  
  546.   if (write (new, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr))
  547.     {
  548.       PERROR (new_name);
  549.     }
  550.  
  551.   if (write (new, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr))
  552.     {
  553.       PERROR (new_name);
  554.     }
  555.  
  556. #ifndef USG_SHARED_LIBRARIES
  557.  
  558.   if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr))
  559.     {
  560.       PERROR (new_name);
  561.     }
  562.  
  563.   if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr))
  564.     {
  565.       PERROR (new_name);
  566.     }
  567.  
  568.   if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr))
  569.     {
  570.       PERROR (new_name);
  571.     }
  572.  
  573. #else /* USG_SHARED_LIBRARIES */
  574.  
  575.   /* The purpose of this code is to write out the new file's section
  576.    * header table.
  577.    *
  578.    * Scan through the original file's sections.  If the encountered
  579.    * section is one we know (.text, .data or .bss), write out the
  580.    * correct header.  If it is a section we do not know (such as
  581.    * .lib), adjust the address of where the section data is in the
  582.    * file, and write out the header.
  583.    *
  584.    * If any section preceeds .text or .data in the file, this code
  585.    * will not adjust the file pointer for that section correctly.
  586.    */
  587.  
  588.   lseek (a_out, sizeof (f_hdr) + sizeof (f_ohdr), 0);
  589.  
  590.   for (scns = f_hdr.f_nscns; scns > 0; scns--)
  591.     {
  592.       if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
  593.     PERROR (a_name);
  594.  
  595.       if (!strcmp (scntemp.s_name, f_thdr.s_name))    /* .text */
  596.     {
  597.       if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr))
  598.         PERROR (new_name);
  599.     }
  600.       else if (!strcmp (scntemp.s_name, f_dhdr.s_name))    /* .data */
  601.     {
  602.       if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr))
  603.         PERROR (new_name);
  604.     }
  605.       else if (!strcmp (scntemp.s_name, f_bhdr.s_name))    /* .bss */
  606.     {
  607.       if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr))
  608.         PERROR (new_name);
  609.     }
  610.       else
  611.     {
  612.       if (scntemp.s_scnptr)
  613.         scntemp.s_scnptr += bias;
  614.       if (write (new, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
  615.         PERROR (new_name);
  616.     }
  617.     }
  618. #endif /* USG_SHARED_LIBRARIES */
  619.  
  620.   return (0);
  621.  
  622. #else /* if not COFF */
  623.  
  624.   /* Get symbol table info from header of a.out file if given one. */
  625.   if (a_out >= 0)
  626.     {
  627.       if (read (a_out, &ohdr, sizeof hdr) != sizeof hdr)
  628.     {
  629.       PERROR (a_name);
  630.     }
  631.  
  632.       if (N_BADMAG (ohdr))
  633.     {
  634.       ERROR1 ("invalid magic number in %s", a_name);
  635.     }
  636.       hdr = ohdr;
  637.     }
  638.   else
  639.     {
  640.       bzero (hdr, sizeof hdr);
  641.     }
  642.  
  643.   unexec_text_start = (long) start_of_text ();
  644.   unexec_data_start = data_start;
  645.  
  646.   /* Machine-dependent fixup for header, or maybe for unexec_text_start */
  647. #ifdef ADJUST_EXEC_HEADER
  648.   ADJUST_EXEC_HEADER;
  649. #endif /* ADJUST_EXEC_HEADER */
  650.  
  651.   hdr.a_trsize = 0;
  652.   hdr.a_drsize = 0;
  653.   if (entry_address != 0)
  654.     hdr.a_entry = entry_address;
  655.  
  656.   hdr.a_bss = bss_end - bss_start;
  657.   hdr.a_data = bss_start - data_start;
  658. #ifdef NO_REMAP
  659.   hdr.a_text = ohdr.a_text;
  660. #else /* not NO_REMAP */
  661.   hdr.a_text = data_start - unexec_text_start;
  662.  
  663. #ifdef A_TEXT_OFFSET
  664.   hdr.a_text += A_TEXT_OFFSET (ohdr);
  665. #endif
  666.  
  667. #endif /* not NO_REMAP */
  668.  
  669.   if (write (new, &hdr, sizeof hdr) != sizeof hdr)
  670.     {
  671.       PERROR (new_name);
  672.     }
  673.  
  674. #ifdef A_TEXT_OFFSET
  675.   hdr.a_text -= A_TEXT_OFFSET (ohdr);
  676. #endif
  677.  
  678.   return 0;
  679.  
  680. #endif /* not COFF */
  681. }
  682.  
  683. /* ****************************************************************
  684.  * copy_text_and_data
  685.  *
  686.  * Copy the text and data segments from memory to the new a.out
  687.  */
  688. static int
  689. copy_text_and_data (new, a_out)
  690.      int new, a_out;
  691. {
  692.   register char *end;
  693.   register char *ptr;
  694.  
  695. #ifdef COFF
  696.  
  697. #ifdef USG_SHARED_LIBRARIES
  698.  
  699.   int scns;
  700.   struct scnhdr scntemp;        /* Temporary section header */
  701.  
  702.   /* The purpose of this code is to write out the new file's section
  703.    * contents.
  704.    *
  705.    * Step through the section table.  If we know the section (.text,
  706.    * .data) do the appropriate thing.  Otherwise, if the section has
  707.    * no allocated space in the file (.bss), do nothing.  Otherwise,
  708.    * the section has space allocated in the file, and is not a section
  709.    * we know.  So just copy it.
  710.    */
  711.  
  712.   lseek (a_out, sizeof (struct filehdr) + sizeof (struct aouthdr), 0);
  713.  
  714.   for (scns = f_hdr.f_nscns; scns > 0; scns--)
  715.     {
  716.       if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
  717.     PERROR ("temacs");
  718.  
  719.       if (!strcmp (scntemp.s_name, ".text"))
  720.     {
  721.       lseek (new, (long) text_scnptr, 0);
  722.       ptr = (char *) f_ohdr.text_start;
  723.       end = ptr + f_ohdr.tsize;
  724.       write_segment (new, ptr, end);
  725.     }
  726.       else if (!strcmp (scntemp.s_name, ".data"))
  727.     {
  728.       lseek (new, (long) data_scnptr, 0);
  729.       ptr = (char *) f_ohdr.data_start;
  730.       end = ptr + f_ohdr.dsize;
  731.       write_segment (new, ptr, end);
  732.     }
  733.       else if (!scntemp.s_scnptr)
  734.     ; /* do nothing - no data for this section */
  735.       else
  736.     {
  737.       char page[BUFSIZ];
  738.       int size, n;
  739.       long old_a_out_ptr = lseek (a_out, 0, 1);
  740.  
  741.       lseek (a_out, scntemp.s_scnptr, 0);
  742.       for (size = scntemp.s_size; size > 0; size -= sizeof (page))
  743.         {
  744.           n = size > sizeof (page) ? sizeof (page) : size;
  745.           if (read (a_out, page, n) != n || write (new, page, n) != n)
  746.         PERROR ("xemacs");
  747.         }
  748.       lseek (a_out, old_a_out_ptr, 0);
  749.     }
  750.     }
  751.  
  752. #else /* COFF, but not USG_SHARED_LIBRARIES */
  753.  
  754.   lseek (new, (long) text_scnptr, 0);
  755.   ptr = (char *) f_ohdr.text_start;
  756.   end = ptr + f_ohdr.tsize;
  757.   write_segment (new, ptr, end);
  758.  
  759.   lseek (new, (long) data_scnptr, 0);
  760.   ptr = (char *) f_ohdr.data_start;
  761.   end = ptr + f_ohdr.dsize;
  762.   write_segment (new, ptr, end);
  763.  
  764. #endif /* USG_SHARED_LIBRARIES */
  765.  
  766. #else /* if not COFF */
  767.  
  768. /* Some machines count the header as part of the text segment.
  769.    That is to say, the header appears in core
  770.    just before the address that start_of_text () returns.
  771.    For them, N_TXTOFF is the place where the header goes.
  772.    We must adjust the seek to the place after the header.
  773.    Note that at this point hdr.a_text does *not* count
  774.    the extra A_TEXT_OFFSET bytes, only the actual bytes of code.  */
  775.  
  776. #ifdef A_TEXT_SEEK
  777.   lseek (new, (long) A_TEXT_SEEK (hdr), 0);
  778. #else
  779. #ifdef A_TEXT_OFFSET
  780.   /* Note that on the Sequent machine A_TEXT_OFFSET != sizeof (hdr)
  781.      and sizeof (hdr) is the correct amount to add here.  */
  782.   /* In version 19, eliminate this case and use A_TEXT_SEEK whenever
  783.      N_TXTOFF is not right.  */
  784.   lseek (new, (long) N_TXTOFF (hdr) + sizeof (hdr), 0);
  785. #else
  786.   lseek (new, (long) N_TXTOFF (hdr), 0);
  787. #endif /* no A_TEXT_OFFSET */
  788. #endif /* no A_TEXT_SEEK */
  789.  
  790.   ptr = (char *) unexec_text_start;
  791.   end = ptr + hdr.a_text;
  792.   write_segment (new, ptr, end);
  793.  
  794.   ptr = (char *) unexec_data_start;
  795.   end = ptr + hdr.a_data;
  796. /*  This lseek is certainly incorrect when A_TEXT_OFFSET
  797.     and I believe it is a no-op otherwise.
  798.     Let's see if its absence ever fails.  */
  799. /*  lseek (new, (long) N_TXTOFF (hdr) + hdr.a_text, 0); */
  800.   write_segment (new, ptr, end);
  801.  
  802. #endif /* not COFF */
  803.  
  804.   return 0;
  805. }
  806.  
  807. write_segment (new, ptr, end)
  808.      int new;
  809.      register char *ptr, *end;
  810. {
  811.   register int i, nwrite, ret;
  812.   char buf[80];
  813.   extern int errno;
  814.   char zeros[128];
  815.  
  816.   bzero (zeros, sizeof zeros);
  817.  
  818.   for (i = 0; ptr < end;)
  819.     {
  820.       /* distance to next multiple of 128.  */
  821.       nwrite = (((int) ptr + 128) & -128) - (int) ptr;
  822.       /* But not beyond specified end.  */
  823.       if (nwrite > end - ptr) nwrite = end - ptr;
  824.       ret = write (new, ptr, nwrite);
  825.       /* If write gets a page fault, it means we reached
  826.      a gap between the old text segment and the old data segment.
  827.      This gap has probably been remapped into part of the text segment.
  828.      So write zeros for it.  */
  829.       if (ret == -1 && errno == EFAULT)
  830.     write (new, zeros, nwrite);
  831.       else if (nwrite != ret)
  832.     {
  833.       sprintf (buf,
  834.            "unexec write failure: addr 0x%x, fileno %d, size 0x%x, wrote 0x%x, errno %d",
  835.            ptr, new, nwrite, ret, errno);
  836.       PERROR (buf);
  837.     }
  838.       i += nwrite;
  839.       ptr += nwrite;
  840.     }
  841. }
  842.  
  843. /* ****************************************************************
  844.  * copy_sym
  845.  *
  846.  * Copy the relocation information and symbol table from the a.out to the new
  847.  */
  848. static int
  849. copy_sym (new, a_out, a_name, new_name)
  850.      int new, a_out;
  851.      char *a_name, *new_name;
  852. {
  853.   char page[1024];
  854.   int n;
  855.  
  856.   if (a_out < 0)
  857.     return 0;
  858.  
  859. #ifdef COFF
  860.   if (SYMS_START == 0L)
  861.     return 0;
  862. #endif  /* COFF */
  863.  
  864. #ifdef COFF
  865.   if (lnnoptr)            /* if there is line number info */
  866.     lseek (a_out, lnnoptr, 0);    /* start copying from there */
  867.   else
  868. #endif /* COFF */
  869.     lseek (a_out, SYMS_START, 0);    /* Position a.out to symtab. */
  870.  
  871.   while ((n = read (a_out, page, sizeof page)) > 0)
  872.     {
  873.       if (write (new, page, n) != n)
  874.     {
  875.       PERROR (new_name);
  876.     }
  877.     }
  878.   if (n < 0)
  879.     {
  880.       PERROR (a_name);
  881.     }
  882.   return 0;
  883. }
  884.  
  885. /* ****************************************************************
  886.  * mark_x
  887.  *
  888.  * After succesfully building the new a.out, mark it executable
  889.  */
  890. static int
  891. mark_x (name)
  892.      char *name;
  893. {
  894.   struct stat sbuf;
  895.   int um;
  896.   int new = 0;  /* for PERROR */
  897.  
  898.   um = umask (777);
  899.   umask (um);
  900.   if (stat (name, &sbuf) == -1)
  901.     {
  902.       PERROR (name);
  903.     }
  904.   sbuf.st_mode |= 0111 & ~um;
  905.   if (chmod (name, sbuf.st_mode) == -1)
  906.     PERROR (name);
  907.   return 0;
  908. }
  909.  
  910. /*
  911.  *    If the COFF file contains a symbol table and a line number section,
  912.  *    then any auxiliary entries that have values for x_lnnoptr must
  913.  *    be adjusted by the amount that the line number section has moved
  914.  *    in the file (bias computed in make_hdr).  The #@$%&* designers of
  915.  *    the auxiliary entry structures used the absolute file offsets for
  916.  *    the line number entry rather than an offset from the start of the
  917.  *    line number section!
  918.  *
  919.  *    When I figure out how to scan through the symbol table and pick out
  920.  *    the auxiliary entries that need adjustment, this routine will
  921.  *    be fixed.  As it is now, all such entries are wrong and sdb
  922.  *    will complain.   Fred Fish, UniSoft Systems Inc.
  923.  */
  924.  
  925. #ifdef COFF
  926.  
  927. /* This function is probably very slow.  Instead of reopening the new
  928.    file for input and output it should copy from the old to the new
  929.    using the two descriptors already open (WRITEDESC and READDESC).
  930.    Instead of reading one small structure at a time it should use
  931.    a reasonable size buffer.  But I don't have time to work on such
  932.    things, so I am installing it as submitted to me.  -- RMS.  */
  933.  
  934. adjust_lnnoptrs (writedesc, readdesc, new_name)
  935.      int writedesc;
  936.      int readdesc;
  937.      char *new_name;
  938. {
  939.   register int nsyms;
  940.   register int new;
  941. #if defined (amdahl_uts) || defined (pfa)
  942.   SYMENT symentry;
  943.   AUXENT auxentry;
  944. #else
  945.   struct syment symentry;
  946.   union auxent auxentry;
  947. #endif
  948.  
  949.   if (!lnnoptr || !f_hdr.f_symptr)
  950.     return 0;
  951.  
  952.   if ((new = open (new_name, 2)) < 0)
  953.     {
  954.       PERROR (new_name);
  955.       return -1;
  956.     }
  957.  
  958.   lseek (new, f_hdr.f_symptr, 0);
  959.   for (nsyms = 0; nsyms < f_hdr.f_nsyms; nsyms++)
  960.     {
  961.       read (new, &symentry, SYMESZ);
  962.       if (symentry.n_numaux)
  963.     {
  964.       read (new, &auxentry, AUXESZ);
  965.       nsyms++;
  966.       if (ISFCN (symentry.n_type)) {
  967.         auxentry.x_sym.x_fcnary.x_fcn.x_lnnoptr += bias;
  968.         lseek (new, -AUXESZ, 1);
  969.         write (new, &auxentry, AUXESZ);
  970.       }
  971.     }
  972.     }
  973.   close (new);
  974. }
  975.  
  976. #endif /* COFF */
  977.  
  978. #endif /* not CANNOT_UNEXEC */
  979.  
  980. #endif /* not CANNOT_DUMP */
  981.  
  982. #ifdef UNIXSAVE
  983. #include "save.c"
  984. #endif
  985.