forked from Stichting-MINIX-Research-Foundation/minix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboot.c
More file actions
executable file
·1961 lines (1670 loc) · 43.2 KB
/
Copy pathboot.c
File metadata and controls
executable file
·1961 lines (1670 loc) · 43.2 KB
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* boot.c - Load and start Minix. Author: Kees J. Bot
* 27 Dec 1991
*/
char version[]= "2.20";
#define BIOS (!UNIX) /* Either uses BIOS or UNIX syscalls. */
#define nil 0
#define _POSIX_SOURCE 1
#define _MINIX 1
#include <stddef.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
#include <string.h>
#include <errno.h>
#include <ibm/partition.h>
#include <minix/config.h>
#include <minix/type.h>
#include <minix/com.h>
#include <minix/dmap.h>
#include <minix/const.h>
#include <minix/minlib.h>
#include <minix/syslib.h>
#if BIOS
#include <kernel/const.h>
#include <kernel/type.h>
#endif
#if UNIX
#include <stdio.h>
#include <time.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <termios.h>
#endif
#include "rawfs.h"
#undef EXTERN
#define EXTERN /* Empty */
#include "boot.h"
#define arraysize(a) (sizeof(a) / sizeof((a)[0]))
#define arraylimit(a) ((a) + arraysize(a))
#define between(a, c, z) ((unsigned) ((c) - (a)) <= ((z) - (a)))
int fsok= -1; /* File system state. Initially unknown. */
static int block_size;
#if BIOS
/* this data is reserved for BIOS int 0x13 to put the 'specification packet'
* in. It has a structure of course, but we don't define a struct because
* of compiler padding. We fiddle out the bytes ourselves later.
*/
unsigned char boot_spec[24];
char *bios_err(int err)
/* Translate BIOS error code to a readable string. (This is a rare trait
* known as error checking and reporting. Take a good look at it, you won't
* see it often.)
*/
{
static struct errlist {
int err;
char *what;
} errlist[] = {
#if !DOS
{ 0x00, "No error" },
{ 0x01, "Invalid command" },
{ 0x02, "Address mark not found" },
{ 0x03, "Disk write-protected" },
{ 0x04, "Sector not found" },
{ 0x05, "Reset failed" },
{ 0x06, "Floppy disk removed" },
{ 0x07, "Bad parameter table" },
{ 0x08, "DMA overrun" },
{ 0x09, "DMA crossed 64 KB boundary" },
{ 0x0A, "Bad sector flag" },
{ 0x0B, "Bad track flag" },
{ 0x0C, "Media type not found" },
{ 0x0D, "Invalid number of sectors on format" },
{ 0x0E, "Control data address mark detected" },
{ 0x0F, "DMA arbitration level out of range" },
{ 0x10, "Uncorrectable CRC or ECC data error" },
{ 0x11, "ECC corrected data error" },
{ 0x20, "Controller failed" },
{ 0x40, "Seek failed" },
{ 0x80, "Disk timed-out" },
{ 0xAA, "Drive not ready" },
{ 0xBB, "Undefined error" },
{ 0xCC, "Write fault" },
{ 0xE0, "Status register error" },
{ 0xFF, "Sense operation failed" }
#else /* DOS */
{ 0x00, "No error" },
{ 0x01, "Function number invalid" },
{ 0x02, "File not found" },
{ 0x03, "Path not found" },
{ 0x04, "Too many open files" },
{ 0x05, "Access denied" },
{ 0x06, "Invalid handle" },
{ 0x0C, "Access code invalid" },
#endif /* DOS */
};
struct errlist *errp;
for (errp= errlist; errp < arraylimit(errlist); errp++) {
if (errp->err == err) return errp->what;
}
return "Unknown error";
}
char *unix_err(int err)
/* Translate the few errors rawfs can give. */
{
switch (err) {
case ENOENT: return "No such file or directory";
case ENOTDIR: return "Not a directory";
default: return "Unknown error";
}
}
void rwerr(char *rw, off_t sec, int err)
{
printf("\n%s error 0x%02x (%s) at sector %ld absolute\n",
rw, err, bios_err(err), sec);
}
void readerr(off_t sec, int err) { rwerr("Read", sec, err); }
void writerr(off_t sec, int err) { rwerr("Write", sec, err); }
void readblock(off_t blk, char *buf, int block_size)
/* Read blocks for the rawfs package. */
{
int r;
u32_t sec= lowsec + blk * RATIO(block_size);
if(!block_size) {
printf("block_size 0\n");
exit(1);
}
if ((r= readsectors(mon2abs(buf), sec, 1 * RATIO(block_size))) != 0) {
readerr(sec, r); exit(1);
}
}
#define istty (1)
#define alarm(n) (0)
#endif /* BIOS */
#if UNIX
/* The Minix boot block must start with these bytes: */
char boot_magic[] = { 0x31, 0xC0, 0x8E, 0xD8, 0xFA, 0x8E, 0xD0, 0xBC };
struct biosdev {
char *name; /* Name of device. */
int device; /* Device to edit parameters. */
} bootdev;
struct termios termbuf;
int istty;
void quit(int status)
{
if (istty) (void) tcsetattr(0, TCSANOW, &termbuf);
exit(status);
}
#define exit(s) quit(s)
void report(char *label)
/* edparams: label: No such file or directory */
{
fprintf(stderr, "edparams: %s: %s\n", label, strerror(errno));
}
void fatal(char *label)
{
report(label);
exit(1);
}
void *alloc(void *m, size_t n)
{
m= m == nil ? malloc(n) : realloc(m, n);
if (m == nil) fatal("");
return m;
}
#define malloc(n) alloc(nil, n)
#define realloc(m, n) alloc(m, n)
#define mon2abs(addr) ((void *) (addr))
int rwsectors(int rw, void *addr, u32_t sec, int nsec)
{
ssize_t r;
size_t len= nsec * SECTOR_SIZE;
if (lseek(bootdev.device, sec * SECTOR_SIZE, SEEK_SET) == -1)
return errno;
if (rw == 0) {
r= read(bootdev.device, (char *) addr, len);
} else {
r= write(bootdev.device, (char *) addr, len);
}
if (r == -1) return errno;
if (r != len) return EIO;
return 0;
}
#define readsectors(a, s, n) rwsectors(0, (a), (s), (n))
#define writesectors(a, s, n) rwsectors(1, (a), (s), (n))
#define readerr(sec, err) (errno= (err), report(bootdev.name))
#define writerr(sec, err) (errno= (err), report(bootdev.name))
#define putch(c) putchar(c)
#define unix_err(err) strerror(err)
void readblock(off_t blk, char *buf, int block_size)
/* Read blocks for the rawfs package. */
{
if(!block_size) fatal("block_size 0");
errno= EIO;
if (lseek(bootdev.device, blk * block_size, SEEK_SET) == -1
|| read(bootdev.device, buf, block_size) != block_size)
{
fatal(bootdev.name);
}
}
sig_atomic_t trapsig;
void trap(int sig)
{
trapsig= sig;
signal(sig, trap);
}
int escape(void)
{
if (trapsig == SIGINT) {
trapsig= 0;
return 1;
}
return 0;
}
static unsigned char unchar;
int getch(void)
{
unsigned char c;
fflush(stdout);
if (unchar != 0) {
c= unchar;
unchar= 0;
return c;
}
switch (read(0, &c, 1)) {
case -1:
if (errno != EINTR) fatal("");
return(ESC);
case 0:
if (istty) putch('\n');
exit(0);
default:
if (istty && c == termbuf.c_cc[VEOF]) {
putch('\n');
exit(0);
}
return c;
}
}
#define ungetch(c) ((void) (unchar = (c)))
#define get_tick() ((u32_t) time(nil))
#define clear_screen() printf("[clear]")
#define boot_device(device) printf("[boot %s]\n", device)
#define ctty(line) printf("[ctty %s]\n", line)
#define bootminix() (run_trailer() && printf("[boot]\n"))
#define off() printf("[off]")
#endif /* UNIX */
char *readline(void)
/* Read a line including a newline with echoing. */
{
char *line;
size_t i, z;
int c;
i= 0;
z= 20;
line= malloc(z * sizeof(char));
do {
c= getch();
if (strchr("\b\177\25\30", c) != nil) {
/* Backspace, DEL, ctrl-U, or ctrl-X. */
do {
if (i == 0) break;
printf("\b \b");
i--;
} while (c == '\25' || c == '\30');
} else
if (c < ' ' && c != '\n') {
putch('\7');
} else {
putch(c);
line[i++]= c;
if (i == z) {
z*= 2;
line= realloc(line, z * sizeof(char));
}
}
} while (c != '\n');
line[i]= 0;
return line;
}
int sugar(char *tok)
/* Recognize special tokens. */
{
return strchr("=(){};\n", tok[0]) != nil;
}
char *onetoken(char **aline)
/* Returns a string with one token for tokenize. */
{
char *line= *aline;
size_t n;
char *tok;
/* Skip spaces and runs of newlines. */
while (*line == ' ' || (*line == '\n' && line[1] == '\n')) line++;
*aline= line;
/* Don't do odd junk (nor the terminating 0!). */
if ((unsigned) *line < ' ' && *line != '\n') return nil;
if (*line == '(') {
/* Function argument, anything goes but () must match. */
int depth= 0;
while ((unsigned) *line >= ' ') {
if (*line == '(') depth++;
if (*line++ == ')' && --depth == 0) break;
}
} else
if (sugar(line)) {
/* Single character token. */
line++;
} else {
/* Multicharacter token. */
do line++; while ((unsigned) *line > ' ' && !sugar(line));
}
n= line - *aline;
tok= malloc((n + 1) * sizeof(char));
memcpy(tok, *aline, n);
tok[n]= 0;
if (tok[0] == '\n') tok[0]= ';'; /* ';' same as '\n' */
*aline= line;
return tok;
}
/* Typed commands form strings of tokens. */
typedef struct token {
struct token *next; /* Next in a command chain. */
char *token;
} token;
token **tokenize(token **acmds, char *line)
/* Takes a line apart to form tokens. The tokens are inserted into a command
* chain at *acmds. Tokenize returns a reference to where another line could
* be added. Tokenize looks at spaces as token separators, and recognizes only
* ';', '=', '{', '}', and '\n' as single character tokens. One token is
* formed from '(' and ')' with anything in between as long as more () match.
*/
{
char *tok;
token *newcmd;
while ((tok= onetoken(&line)) != nil) {
newcmd= malloc(sizeof(*newcmd));
newcmd->token= tok;
newcmd->next= *acmds;
*acmds= newcmd;
acmds= &newcmd->next;
}
return acmds;
}
token *cmds; /* String of commands to execute. */
int err; /* Set on an error. */
char *poptoken(void)
/* Pop one token off the command chain. */
{
token *cmd= cmds;
char *tok= cmd->token;
cmds= cmd->next;
free(cmd);
return tok;
}
void voidtoken(void)
/* Remove one token from the command chain. */
{
free(poptoken());
}
void parse_code(char *code)
/* Tokenize a string of monitor code, making sure there is a delimiter. It is
* to be executed next. (Prepended to the current input.)
*/
{
if (cmds != nil && cmds->token[0] != ';') (void) tokenize(&cmds, ";");
(void) tokenize(&cmds, code);
}
int interrupt(void)
/* Clean up after an ESC has been typed. */
{
if (escape()) {
printf("[ESC]\n");
err= 1;
return 1;
}
return 0;
}
#if BIOS
int activate;
struct biosdev {
char name[8];
int device, primary, secondary;
} bootdev, tmpdev;
int get_master(char *master, struct part_entry **table, u32_t pos)
/* Read a master boot sector and its partition table. */
{
int r, n;
struct part_entry *pe, **pt;
if ((r= readsectors(mon2abs(master), pos, 1)) != 0) return r;
pe= (struct part_entry *) (master + PART_TABLE_OFF);
for (pt= table; pt < table + NR_PARTITIONS; pt++) *pt= pe++;
/* DOS has the misguided idea that partition tables must be sorted. */
if (pos != 0) return 0; /* But only the primary. */
n= NR_PARTITIONS;
do {
for (pt= table; pt < table + NR_PARTITIONS-1; pt++) {
if (pt[0]->sysind == NO_PART
|| pt[0]->lowsec > pt[1]->lowsec) {
pe= pt[0]; pt[0]= pt[1]; pt[1]= pe;
}
}
} while (--n > 0);
return 0;
}
void initialize(void)
{
char master[SECTOR_SIZE];
struct part_entry *table[NR_PARTITIONS];
int r, p;
u32_t masterpos;
char *argp;
/* Copy the boot program to the far end of low memory, this must be
* done to get out of the way of Minix, and to put the data area
* cleanly inside a 64K chunk if using BIOS I/O (no DMA problems).
*/
u32_t oldaddr= caddr;
u32_t memend= mem[0].base + mem[0].size;
u32_t newaddr= (memend - runsize) & ~0x0000FL;
#if !DOS
u32_t dma64k= (memend - 1) & ~0x0FFFFL;
/* Check if data segment crosses a 64K boundary. */
if (newaddr + (daddr - caddr) < dma64k) newaddr= dma64k - runsize;
#endif
/* Set the new caddr for relocate. */
caddr= newaddr;
/* Copy code and data. */
raw_copy(newaddr, oldaddr, runsize);
/* Make the copy running. */
relocate();
#if !DOS
/* Take the monitor out of the memory map if we have memory to spare,
* and also keep the BIOS data area safe (1.5K), plus a bit extra for
* where we may have to put a.out headers for older kernels.
*/
if (mon_return = (mem[1].size > 512*1024L)) mem[0].size = newaddr;
mem[0].base += 2048;
mem[0].size -= 2048;
/* Find out what the boot device and partition was. */
bootdev.name[0]= 0;
bootdev.device= device;
bootdev.primary= -1;
bootdev.secondary= -1;
if (device < 0x80) {
/* Floppy. */
strcpy(bootdev.name, "fd0");
bootdev.name[2] += bootdev.device;
return;
}
/* Disk: Get the partition table from the very first sector, and
* determine the partition we booted from using the information from
* the booted partition entry as passed on by the bootstrap (rem_part).
* All we need from it is the partition offset.
*/
raw_copy(mon2abs(&lowsec),
vec2abs(&rem_part) + offsetof(struct part_entry, lowsec),
sizeof(lowsec));
masterpos= 0; /* Master bootsector position. */
for (;;) {
/* Extract the partition table from the master boot sector. */
if ((r= get_master(master, table, masterpos)) != 0) {
readerr(masterpos, r); exit(1);
}
/* See if you can find "lowsec" back. */
for (p= 0; p < NR_PARTITIONS; p++) {
if (lowsec - table[p]->lowsec < table[p]->size) break;
}
if (lowsec == table[p]->lowsec) { /* Found! */
if (bootdev.primary < 0)
bootdev.primary= p;
else
bootdev.secondary= p;
break;
}
if (p == NR_PARTITIONS || bootdev.primary >= 0
|| table[p]->sysind != MINIX_PART) {
/* The boot partition cannot be named, this only means
* that "bootdev" doesn't work.
*/
bootdev.device= -1;
return;
}
/* See if the primary partition is subpartitioned. */
bootdev.primary= p;
masterpos= table[p]->lowsec;
}
strcpy(bootdev.name, "d0p0");
bootdev.name[1] += (device - 0x80);
bootdev.name[3] += bootdev.primary;
if (bootdev.secondary >= 0) {
strcat(bootdev.name, "s0");
bootdev.name[5] += bootdev.secondary;
}
#else /* DOS */
/* Take the monitor out of the memory map if we have memory to spare,
* note that only half our PSP is needed at the new place, the first
* half is to be kept in its place.
*/
if (mem[1].size > 0) mem[0].size = newaddr + 0x80 - mem[0].base;
/* Parse the command line. */
argp= PSP + 0x81;
argp[PSP[0x80]]= 0;
while (between('\1', *argp, ' ')) argp++;
vdisk= argp;
while (!between('\0', *argp, ' ')) argp++;
while (between('\1', *argp, ' ')) *argp++= 0;
if (*vdisk == 0) {
printf("\nUsage: boot <vdisk> [commands ...]\n");
exit(1);
}
drun= *argp == 0 ? "main" : argp;
if ((r= dev_open()) != 0) {
printf("\n%s: Error %02x (%s)\n", vdisk, r, bios_err(r));
exit(1);
}
/* Find the active partition on the virtual disk. */
if ((r= get_master(master, table, 0)) != 0) {
readerr(0, r); exit(1);
}
strcpy(bootdev.name, "d0");
bootdev.primary= -1;
for (p= 0; p < NR_PARTITIONS; p++) {
if (table[p]->bootind != 0 && table[p]->sysind == MINIX_PART) {
bootdev.primary= p;
strcat(bootdev.name, "p0");
bootdev.name[3] += p;
lowsec= table[p]->lowsec;
break;
}
}
#endif /* DOS */
}
#endif /* BIOS */
/* Reserved names: */
enum resnames {
R_NULL, R_BOOT, R_CTTY, R_DELAY, R_ECHO, R_EXIT, R_HELP,
R_LS, R_MENU, R_OFF, R_SAVE, R_SET, R_TRAP, R_UNSET
};
char resnames[][6] = {
"", "boot", "ctty", "delay", "echo", "exit", "help",
"ls", "menu", "off", "save", "set", "trap", "unset",
};
/* Using this for all null strings saves a lot of memory. */
#define null (resnames[0])
int reserved(char *s)
/* Recognize reserved strings. */
{
int r;
for (r= R_BOOT; r <= R_UNSET; r++) {
if (strcmp(s, resnames[r]) == 0) return r;
}
return R_NULL;
}
void sfree(char *s)
/* Free a non-null string. */
{
if (s != nil && s != null) free(s);
}
char *copystr(char *s)
/* Copy a non-null string using malloc. */
{
char *c;
if (*s == 0) return null;
c= malloc((strlen(s) + 1) * sizeof(char));
strcpy(c, s);
return c;
}
int is_default(environment *e)
{
return (e->flags & E_SPECIAL) && e->defval == nil;
}
environment **searchenv(char *name)
{
environment **aenv= &env;
while (*aenv != nil && strcmp((*aenv)->name, name) != 0) {
aenv= &(*aenv)->next;
}
return aenv;
}
#define b_getenv(name) (*searchenv(name))
/* Return the environment *structure* belonging to name, or nil if not found. */
char *b_value(char *name)
/* The value of a variable. */
{
environment *e= b_getenv(name);
return e == nil || !(e->flags & E_VAR) ? nil : e->value;
}
char *b_body(char *name)
/* The value of a function. */
{
environment *e= b_getenv(name);
return e == nil || !(e->flags & E_FUNCTION) ? nil : e->value;
}
int b_setenv(int flags, char *name, char *arg, char *value)
/* Change the value of an environment variable. Returns the flags of the
* variable if you are not allowed to change it, 0 otherwise.
*/
{
environment **aenv, *e;
if (*(aenv= searchenv(name)) == nil) {
if (reserved(name)) return E_RESERVED;
e= malloc(sizeof(*e));
e->name= copystr(name);
e->flags= flags;
e->defval= nil;
e->next= nil;
*aenv= e;
} else {
e= *aenv;
/* Don't change special variables to functions or vv. */
if (e->flags & E_SPECIAL
&& (e->flags & E_FUNCTION) != (flags & E_FUNCTION)
) return e->flags;
e->flags= (e->flags & E_STICKY) | flags;
if (is_default(e)) {
e->defval= e->value;
} else {
sfree(e->value);
}
sfree(e->arg);
}
e->arg= copystr(arg);
e->value= copystr(value);
return 0;
}
int b_setvar(int flags, char *name, char *value)
/* Set variable or simple function. */
{
int r;
if((r=b_setenv(flags, name, null, value))) {
return r;
}
return r;
}
void b_unset(char *name)
/* Remove a variable from the environment. A special variable is reset to
* its default value.
*/
{
environment **aenv, *e;
if ((e= *(aenv= searchenv(name))) == nil) return;
if (e->flags & E_SPECIAL) {
if (e->defval != nil) {
sfree(e->arg);
e->arg= null;
sfree(e->value);
e->value= e->defval;
e->defval= nil;
}
} else {
sfree(e->name);
sfree(e->arg);
sfree(e->value);
*aenv= e->next;
free(e);
}
}
long a2l(char *a)
/* Cheap atol(). */
{
int sign= 1;
long n= 0;
if (*a == '-') { sign= -1; a++; }
while (between('0', *a, '9')) n= n * 10 + (*a++ - '0');
return sign * n;
}
char *ul2a(u32_t n, unsigned b)
/* Transform a long number to ascii at base b, (b >= 8). */
{
static char num[(CHAR_BIT * sizeof(n) + 2) / 3 + 1];
char *a= arraylimit(num) - 1;
static char hex[16] = "0123456789ABCDEF";
do *--a = hex[(int) (n % b)]; while ((n/= b) > 0);
return a;
}
char *ul2a10(u32_t n)
/* Transform a long number to ascii at base 10. */
{
return ul2a(n, 10);
}
unsigned a2x(char *a)
/* Ascii to hex. */
{
unsigned n= 0;
int c;
for (;;) {
c= *a;
if (between('0', c, '9')) c= c - '0' + 0x0;
else
if (between('A', c, 'F')) c= c - 'A' + 0xA;
else
if (between('a', c, 'f')) c= c - 'a' + 0xa;
else
break;
n= (n<<4) | c;
a++;
}
return n;
}
void get_parameters(void)
{
char params[SECTOR_SIZE + 1];
token **acmds;
int r, bus;
memory *mp;
static char bus_type[][4] = {
"xt", "at", "mca"
};
static char vid_type[][4] = {
"mda", "cga", "ega", "ega", "vga", "vga"
};
static char vid_chrome[][6] = {
"mono", "color"
};
/* Variables that Minix needs: */
b_setvar(E_SPECIAL|E_VAR|E_DEV, "rootdev", "ram");
b_setvar(E_SPECIAL|E_VAR|E_DEV, "ramimagedev", "bootdev");
b_setvar(E_SPECIAL|E_VAR, "ramsize", "0");
#if BIOS
b_setvar(E_SPECIAL|E_VAR, "processor", ul2a10(getprocessor()));
b_setvar(E_SPECIAL|E_VAR, "bus", bus_type[get_bus()]);
b_setvar(E_SPECIAL|E_VAR, "video", vid_type[get_video()]);
b_setvar(E_SPECIAL|E_VAR, "chrome", vid_chrome[get_video() & 1]);
params[0]= 0;
for (mp= mem; mp < arraylimit(mem); mp++) {
if (mp->size == 0) continue;
if (params[0] != 0) strcat(params, ",");
strcat(params, ul2a(mp->base, 0x10));
strcat(params, ":");
strcat(params, ul2a(mp->size, 0x10));
}
b_setvar(E_SPECIAL|E_VAR, "memory", params);
#if 0
b_setvar(E_SPECIAL|E_VAR, "c0",
DOS ? "dosfile" : get_bus() == 1 ? "at" : "bios");
#else
b_setvar(E_SPECIAL|E_VAR, "label", "AT");
b_setvar(E_SPECIAL|E_VAR, "controller", "c0");
#endif
#if DOS
b_setvar(E_SPECIAL|E_VAR, "dosfile-d0", vdisk);
#endif
#endif
#if UNIX
b_setvar(E_SPECIAL|E_VAR, "processor", "?");
b_setvar(E_SPECIAL|E_VAR, "bus", "?");
b_setvar(E_SPECIAL|E_VAR, "video", "?");
b_setvar(E_SPECIAL|E_VAR, "chrome", "?");
b_setvar(E_SPECIAL|E_VAR, "memory", "?");
b_setvar(E_SPECIAL|E_VAR, "c0", "?");
#endif
/* Variables boot needs: */
b_setvar(E_SPECIAL|E_VAR, "image", "boot/image");
b_setvar(E_SPECIAL|E_FUNCTION, "leader",
"echo --- Welcome to MINIX 3. This is the boot monitor. ---\\n");
b_setvar(E_SPECIAL|E_FUNCTION, "main", "menu");
b_setvar(E_SPECIAL|E_FUNCTION, "trailer", "");
/* Default hidden menu function: */
b_setenv(E_RESERVED|E_FUNCTION, null, "=,Start MINIX", "boot");
/* Tokenize bootparams sector. */
if ((r= readsectors(mon2abs(params), lowsec+PARAMSEC, 1)) != 0) {
readerr(lowsec+PARAMSEC, r);
exit(1);
}
params[SECTOR_SIZE]= 0;
acmds= tokenize(&cmds, params);
/* Stuff the default action into the command chain. */
#if UNIX
(void) tokenize(acmds, ":;");
#elif DOS
(void) tokenize(tokenize(acmds, ":;leader;"), drun);
#else /* BIOS */
(void) tokenize(acmds, ":;leader;main");
#endif
}
char *addptr;
void addparm(char *n)
{
while (*n != 0 && *addptr != 0) *addptr++ = *n++;
}
void save_parameters(void)
/* Save nondefault environment variables to the bootparams sector. */
{
environment *e;
char params[SECTOR_SIZE + 1];
int r;
/* Default filling: */
memset(params, '\n', SECTOR_SIZE);
/* Don't touch the 0! */
params[SECTOR_SIZE]= 0;
addptr= params;
for (e= env; e != nil; e= e->next) {
if (e->flags & E_RESERVED || is_default(e)) continue;
addparm(e->name);
if (e->flags & E_FUNCTION) {
addparm("(");
addparm(e->arg);
addparm(")");
} else {
addparm((e->flags & (E_DEV|E_SPECIAL)) != E_DEV
? "=" : "=d ");
}
addparm(e->value);
if (*addptr == 0) {
printf("The environment is too big\n");
return;
}
*addptr++= '\n';
}
/* Save the parameters on disk. */
if ((r= writesectors(mon2abs(params), lowsec+PARAMSEC, 1)) != 0) {
writerr(lowsec+PARAMSEC, r);
printf("Can't save environment\n");
}
}
void show_env(void)
/* Show the environment settings. */
{
environment *e;
unsigned more= 0;
int c;
for (e= env; e != nil; e= e->next) {
if (e->flags & E_RESERVED) continue;
if (!istty && is_default(e)) continue;
if (e->flags & E_FUNCTION) {
printf("%s(%s) %s\n", e->name, e->arg, e->value);
} else {
printf(is_default(e) ? "%s = (%s)\n" : "%s = %s\n",
e->name, e->value);
}
if (e->next != nil && istty && ++more % 20 == 0) {
printf("More? ");
c= getch();
if (c == ESC || c > ' ') {
putch('\n');
if (c > ' ') ungetch(c);
break;
}
printf("\b\b\b\b\b\b");
}