annotate src/unexencap.c @ 1648:712931b4b71d

[xemacs-hg @ 2003-08-27 18:06:54 by youngs] 2003-08-28 Steve Youngs <youngs@xemacs.org> * README.packages: Update. 2003-08-28 Steve Youngs <youngs@xemacs.org> * PACKAGES: Update. 2003-08-28 Steve Youngs <youngs@xemacs.org> * xemacs-faq.texi (Q2.0.2): Rewrite, mentioning the correct way to remove a package. (Q3.8.2): big-menubar is in the edit-utils package. (Q4.3.2): Add a comment about not needing TM for things like Gnus, MH-E and VM. (Q5.3.3): State correct location of ps-print.el. * xemacs/packages.texi (Packages): Remove "Creating Packages" menu entry. (Package Terminology): Whitespace clean up. (Installing Packages): Whitespace clean up and add some @code formatters. Re-organise the menu so that installation via PUI is first and Sumo is last. (Automatically): mule-base is no longer a requirement for using PUI. Mention optionally requiring mailcrypt. (Note): Removed. (Manually): Move to below the PUI installation method. (Sumo): Move to below the manual installation method. (Which Packages): Add mailcrypt. (Building Packages): Remove duplicated stuff that is in lispref/packaging.texi, xref to it instead. (Local.rules File): xref to the appropriate node in lispref/packaging.texi. (Available Packages): Update to current reality. (all): Removed. (srckit): Removed. (binkit): Removed. * xemacs/reading.texi (Reading Mail): Mention Gnus and MEW. * new-users-guide/custom2.texi (Init File): big-menubar.el is in the edit-utils package. * lispref/packaging.texi (Packaging): (The User View): (The Library Maintainer View): (Infrastructure): (Control Files): (Obtaining): (The Package Release Engineer View): (Package Terminology): (Building Packages): (Makefile Targets): (packages): New. (Local.rules File): (XEMACS_PACKAGES): Removed. (XEMACS_INSTALLED_PACKAGES_ROOT): New. (NONMULE_PACKAGES): New. (EXCLUDES): New. (Creating Packages): (BATCH): New. (VERSION): Removed. (AUTHOR_VERSION): Removed. (MAINTAINER): Removed. (PACKAGE): Removed. (PKG_TYPE): Removed. (REQUIRES): Removed. (CATEGORY): Removed. (ELS): Removed. (ELCS): Removed. (all): Removed. (srckit): Removed. (binkit): Removed. (are): New. (STANDARD_DOCS): New. (ELCS_1_DEST): New. (example): New. (PACKAGE_SUPPRESS): New. (EXPLICIT_DOCS): New. (DATA_DEST): New. (Documenting Packages): Not quite a total rewrite, but a fairly thorough audit nonetheless.
author youngs
date Wed, 27 Aug 2003 18:07:10 +0000
parents 376386a54a3c
children 04bc9d2f42c7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Waiting for papers! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 * Do an unexec() for coff encapsulation. Uses the approach I took
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 * for AKCL, so don't be surprised if it doesn't look too much like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 * the other unexec() routines. Assumes NO_REMAP. Should be easy to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 * adapt to the emacs style unexec() if that is desired, but this works
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 * just fine for me with GCC/GAS/GLD under System V. - Jordan
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 #include <sys/types.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 #include <sys/fcntl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 #include <sys/file.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 #include "/usr/gnu/lib/gcc/gcc-include/a.out.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 filecpy(to, from, n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 FILE *to, *from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 int n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 char buffer[BUFSIZ];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 if (n > BUFSIZ) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 fread(buffer, BUFSIZ, 1, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 fwrite(buffer, BUFSIZ, 1, to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 n -= BUFSIZ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 } else if (n > 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 fread(buffer, 1, n, from);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 fwrite(buffer, 1, n, to);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 } else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 /* ****************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 * unexec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 * driving logic.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 * ****************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 unexec (new_name, a_name, data_start, bss_start, entry_address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 char *new_name, *a_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 unsigned data_start, bss_start, entry_address;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 struct coffheader header1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 struct coffscn *tp, *dp, *bp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 struct exec header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 int stsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 char *original_file = a_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 char *save_file = new_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 char *data_begin, *data_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 int original_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 FILE *original, *save;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 int n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 char *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 extern char *sbrk();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 char stdin_buf[BUFSIZ], stdout_buf[BUFSIZ];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 fclose(stdin);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 original = fopen(original_file, "r");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 if (stdin != original || original->_file != 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 fprintf(stderr, "unexec: Can't open the original file.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 exit(1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 setbuf(original, stdin_buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 fclose(stdout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 unlink(save_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 n = open (save_file, O_CREAT|O_WRONLY, 0777);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 if (n != 1 || (save = fdopen(n, "w")) != stdout) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 fprintf(stderr, "unexec: Can't open the save file.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 exit(1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 setbuf(save, stdout_buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 fread(&header1, sizeof(header1), 1, original);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 tp = &header1.scns[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 dp = &header1.scns[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 bp = &header1.scns[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 fread(&header, sizeof(header), 1, original);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 data_begin=(char *)N_DATADDR(header);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 data_end = sbrk(0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 original_data = header.a_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 header.a_data = data_end - data_begin;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 header.a_bss = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 dp->s_size = header.a_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 bp->s_paddr = dp->s_vaddr + dp->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 bp->s_vaddr = bp->s_paddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 bp->s_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 header1.tsize = tp->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 header1.dsize = dp->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 header1.bsize = bp->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 fwrite(&header1, sizeof(header1), 1, save);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 fwrite(&header, sizeof(header), 1, save);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 filecpy(save, original, header.a_text);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 for (n = header.a_data, p = data_begin; ; n -= BUFSIZ, p += BUFSIZ)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 if (n > BUFSIZ)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 fwrite(p, BUFSIZ, 1, save);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 else if (n > 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 fwrite(p, 1, n, save);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 } else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 fseek(original, original_data, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 filecpy(save, original, header.a_syms+header.a_trsize+header.a_drsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 fread(&stsize, sizeof(stsize), 1, original);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 fwrite(&stsize, sizeof(stsize), 1, save);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 filecpy(save, original, stsize - sizeof(stsize));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 fclose(original);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 fclose(save);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 }