File: makespl.c

package info (click to toggle)
mtd 20050122-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,244 kB
  • ctags: 9,869
  • sloc: ansic: 97,013; asm: 1,055; sh: 558; makefile: 356; cpp: 68
file content (308 lines) | stat: -rw-r--r-- 7,597 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "doc_bootstub.h"

/* The commandline is at the next 256-byte boundary after the parameters. */
#define CMDLINE_LOCATION ((CHECKSUM_LOCATION+PARAM_BYTES+255)&0xffffff00)

unsigned char buf[0x3000];
unsigned char spl_sig[16] =
	{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x55,
	  0x84, 0xa8, 0xac, 0xa0, 0x30, 0x30, 0x30, 0x30 };
unsigned char stub_sig[16] =
	{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x55,
	  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
unsigned char image_sig[16] =
	{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xb1,
	  0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };

/* Keep this in sync with doc_bootstub.S */
struct params {
	union {
		unsigned short setup_seg;
		unsigned char checksum;
	};
	unsigned short low_sects;
	unsigned short high_sects;
	unsigned short initrd_sects;
	unsigned long initrd_bytes;
};

void writeblocks(int outfd, unsigned char *buf, int len, unsigned char *oob) {
	int ret;

	while (len) {
		if (len < 512) {
			memset(buf + len, 0xff, 512 - len);
			len = 512;
		}
		ret = write(outfd, buf, 512);
		if (ret < 0) {
			perror("write output file");
			exit(1);
		}
		if (ret < 512) {
			fprintf(stderr, "short write of output file (%d bytes < 512)\n", ret);
			exit(1);
		}
		ret = write(outfd, oob, 16);
		if (ret < 0) {
			perror("write output file");
			exit(1);
		}
		if (ret < 16) {
			fprintf(stderr, "short write of output file (%d bytes < 16)\n", ret);
			exit(1);
		}
		len -= 512;
		buf += 512;
	}
}

void usage(void)
{
	fprintf(stderr,
"Usage: makespl <stub input file> <kernel input file> <stub output file>\n"
"               [-b <bios extension output file>] [-i <initrd input file>]\n"
"               [-o <initrd output file>]\n"
"Specifying -b turns bios extension mode on.  In this case the stub output\n"
"file actually contains only kernel/initrd data.\n"
"If -i is specified but -o is not, the initrd output is appended to the stub\n"
"output file (default behavior).\n"
               );
	exit(1);
}

int main(int argc, char **argv)
{
	int len, i, stubfd, imgfd, outfd, biosfd, initfd, initrd_outfd;
	int ret;
	char *bios_extension = NULL;
	char *initrd = NULL;
	char *initrd_out = NULL;
	unsigned char checksum=0;
	int imglen, initrd_len, stublen;
	int stub_sects, initrd_sects;
	int image_sects, setup_sects, kernel_sects, image_start;
	struct params *params = (struct params *) (buf + CHECKSUM_LOCATION);

	if (sizeof(struct params) != PARAM_BYTES) {
		fprintf(stderr,
"Param size mismatch!  Some idiot changed the code wrong!  Aborting.\n");
		exit(1);
	}

	while (1) {
		int c = getopt(argc, argv, "b:B:i:I:");
		if (c == -1) break;

		switch (c) {
			case 'b':
			case 'B':
				bios_extension = optarg;
				break;
			case 'i':
			case 'I':
				initrd = optarg;
				break;
			case 'o':
			case 'O':
				initrd_out = optarg;
				break;
			default:
				usage();
		}
	}
			
	if ((argc - optind) != 3) usage();

	stubfd = open(argv[optind++], O_RDONLY);
	if (stubfd < 0) {
		perror("open stub input file");
		exit(1);
	}
	stublen = lseek(stubfd, 0, SEEK_END);
	lseek(stubfd, 0, SEEK_SET);
	stub_sects = (stublen + 511) >> 9;
	image_start = stub_sects << 9;
	/* Note:  image_start should be == stublen, because doc_bootstub.S
	 * should always pad to a 512-byte boundary.  Still, better safe than
	 * sorry. */

	imgfd = open(argv[optind++], O_RDONLY);
	if (imgfd < 0) {
		perror("open kernel input file");
		exit(1);
	}

	// get image length
	imglen = lseek(imgfd, 0, SEEK_END);
	lseek(imgfd, 0, SEEK_SET);
	image_sects = (imglen + 511) >> 9;

	outfd = open(argv[optind++], O_WRONLY | O_CREAT | O_TRUNC, 0664);
	if (outfd < 0) {
		perror("open stub output file");
		exit(1);
	}

	if (bios_extension) {
		biosfd = open(bios_extension, O_WRONLY | O_CREAT | O_TRUNC, 0664);
		if (biosfd < 0) {
			perror("open BIOS extension output file");
			exit(1);
		}
	}

	if (initrd) {
		initfd = open(initrd, O_RDONLY);
		if (initfd < 0) {
			perror("open BIOS extension output file");
			exit(1);
		}
		initrd_len = lseek(initfd, 0, SEEK_END);
		lseek(initfd, 0, SEEK_SET);
		initrd_sects = (initrd_len + 511) >> 9;
		initrd_outfd = outfd;
		if (initrd_out) {
			initrd_outfd = open(initrd_out, O_WRONLY | O_CREAT | O_TRUNC, 0664);
			if (initrd_outfd < 0) {
				perror("open initrd output file");
				exit(1);
			}
		}
	}

	/* Read the bootstub */
	len = read(stubfd, buf, stublen);
	if (len < 0) {
		perror("read from stub input file");
		exit(1);
	}
	if (len != stublen) {
		fprintf(stderr, "Unexpected EOF in stub input file\n");
		exit(1);
	}
	close(stubfd);

	if (*((unsigned short *) buf) == BIOS_SIG) {
		if (!bios_extension) {
			fprintf(stderr,
"Stub file was built as a Bios Extension, but bios extension mode was not\n"
"selected.  Aborting.\n");
			exit(1);
		}
	} else if (bios_extension) {
		fprintf(stderr,
"Stub file was not built as a Bios Extension, but bios extension mode was\n"
"selected.  Aborting.\n");
		exit(1);
	}

	if (isatty(0))
		fprintf(stderr, "Enter commandline: ");
	len = strlen(fgets(buf + CMDLINE_LOCATION, 256, stdin));
	len--;
	if (buf[CMDLINE_LOCATION+len] == '\n')
		buf[CMDLINE_LOCATION+len] = 0;
	fprintf(stderr, "Commandline is \"%s\"\n", buf + CMDLINE_LOCATION);
/*fprintf(stderr, "checksum is at %x, cmdline is at %x\n", CHECKSUM_LOCATION, CMDLINE_LOCATION);*/

	/* Read the kernel */
	len = read(imgfd, buf + image_start, sizeof(buf) - image_start);
	if (len < 0) {
		perror("read from kernel input file");
		exit(1);
	}

	setup_sects = buf[image_start + SETUP_SECTS_LOCATION];
	setup_sects++;
	kernel_sects = image_sects - setup_sects;

	if (bios_extension)
		fprintf(stderr, "%d Bios Extension sectors, ", stub_sects);
	else
		fprintf(stderr, "%d bootstub sectors, ", stub_sects);
	fprintf(stderr, "%d real-mode sectors, %d kernel sectors",
		setup_sects, kernel_sects);
	if (initrd)
		fprintf(stderr, ", %d initrd sectors\n", initrd_sects);
	else
		fprintf(stderr, "\n");

	params->low_sects = setup_sects;
	params->high_sects = kernel_sects;
	if (initrd) {
		params->initrd_sects = initrd_sects;
		params->initrd_bytes = initrd_len;
	}

	/* Calculate the csum */
	params->checksum = 0;	/* unnecessary */

	if (bios_extension) {
		for (i = 0; i < image_start; i++)
			checksum += buf[i];

		/* Set the slack byte to fix the csum */
		params->checksum = 0 - checksum;
	} else {
		for (i = 0; i < sizeof(buf); i++)
			checksum += buf[i];

		/* Set the slack byte to fix the csum */
		params->checksum = 0x55 - checksum;
	}

	if (bios_extension) {
		/* Write the bootstub and commandline to one file */
		ret = write(biosfd, buf, image_start);
		if (ret < 0) {
			perror("write BIOS extension output file");
			exit(1);
		}
	} else {
		/* Write the bootstub page */
		writeblocks(outfd, buf, 512, spl_sig);
		/* Write the commandline page */
		writeblocks(outfd, buf + 512, image_start - 512, stub_sig);
	}
	/* Write the rest of the first buffer */
	writeblocks(outfd, buf + image_start, sizeof(buf) - image_start,
		    image_sig);

	/* Now chuck out the rest of the kernel */

	while (1) {
		len = read(imgfd, buf, sizeof(buf));
		if (len < 0) {
			perror("read from kernel input file");
			exit(1);
		}
		if (len == 0)
			break;
		
		writeblocks(outfd, buf, len, image_sig);
	}

	if (!initrd) return 0;

	/* And the initrd right after that. */

	while (1) {
		len = read(initfd, buf, sizeof(buf));
		if (len < 0) {
			perror("read from initrd input file");
			exit(1);
		}
		if (len == 0)
			break;
		
		writeblocks(initrd_outfd, buf, len, image_sig);
	}

	return 0;
}