-
Notifications
You must be signed in to change notification settings - Fork 2
/
MKFS.C
342 lines (317 loc) · 8.88 KB
/
MKFS.C
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
/*
* UZIX - UNIX Implementation for MSX
* (c) 1997-2001 Arcady Schekochikhin
* Adriano C. R. da Cunha
*
* UZIX is based on UZI (UNIX Zilog Implementation)
* UZI is a UNIX kernel clone written for Z-80 systems.
* All code is public domain, not being based on any AT&T code.
*
* The author, Douglas Braun, can be reached at:
* 7696 West Zayante Rd.
* Felton, CA 95018
* oliveb!intelca!mipos3!cadev4!dbraun
*
* This program is under GNU GPL, read COPYING for details
*
*/
/**********************************************************
UZIX utilities:
Make Filesystem: to make an UZIX disk.
Usage: mkfs [-yfqv] d: fsize isize [rsize]
**********************************************************/
/* The device is given as drive letter.
* Major device is always 0 (FDD), minor device is 0..7 (drives A..H)
*/
#define __MAIN__COMPILATION
#define NEED__DEVIO
/* #include "utildos.h" */
#include "uzix.h"
#ifdef SEPH
#include "types.h"
#include "signal.h"
#include "errno.h"
/* #error sdsdsd */
#endif
#include "unix.h"
#define PF printf
#ifdef SEPH
#include "sys\ioctl.h"
#include "sys\stat.h"
#endif
#ifdef _MSX_DOS
#include ".\include\stdio.h"
#include ".\include\stdlib.h"
#include ".\include\ctype.h"
#else
#include <stdio.h>
#include <stdlib.h>
/* #include <c:\tc\include\ctype.h> */
extern char bdos(int, ...);
extern void bufinit(void);
extern void *bread(dev_t dev, blkno_t blk, uchar rewrite);
#define d_open(dev) d_openclose(dev, 1)
#define d_close(dev) d_openclose(dev, 0)
extern int d_openclose(dev_t dev, uchar open);
extern int d_init(void);
#define xexit(n) exit(n)
extern unsigned char TotalDrives;
/* char TEMPDBUF[BUFSIZE]; */
#endif
char bootblock[512] = {
0xEB, 0xFE, 0x90, 'U', 'Z', 'I', 'X', 'd',
'i', 's', 'k', 0x00, 0x02, 0x02, 0x01, 0x00,
0x00, 0x00, 0x00, 0xA0, 0x05, 0xF9, 0x00, 0x00,
0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0xD0, 0x36,
0x56, 0x23, 0x36, 0xC0, 0x31, 0x1F, 0xF5, 0x11,
0x4A, 0xC0, 0x0E, 0x09, 0xCD, 0x7D, 0xF3, 0x0E,
0x08, 0xCD, 0x7D, 0xF3, 0xFE, 0x1B, 0xCA, 0x22,
0x40, 0xF3, 0xDB, 0xA8, 0xE6, 0xFC, 0xD3, 0xA8,
0x3A, 0xFF, 0xFF, 0x2F, 0xE6, 0xFC, 0x32, 0xFF,
0xFF, 0xC7, 0x57, 0x41, 0x52, 0x4E, 0x49, 0x4E,
0x47, 0x21, 0x07, 0x0D, 0x0A, 0x0A, 0x54, 0x68,
0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x61, 0x6E,
0x20, 0x55, 0x5A, 0x49, 0x58, 0x20, 0x64, 0x69,
0x73, 0x6B, 0x2C, 0x20, 0x6E, 0x6F, 0x6E, 0x20,
0x62, 0x6F, 0x6F, 0x74, 0x61, 0x62, 0x6C, 0x65,
0x2E, 0x0D, 0x0A, 0x55, 0x73, 0x69, 0x6E, 0x67,
0x20, 0x69, 0x74, 0x20, 0x75, 0x6E, 0x64, 0x65,
0x72, 0x20, 0x4D, 0x53, 0x58, 0x44, 0x4F, 0x53,
0x20, 0x63, 0x61, 0x6E, 0x20, 0x64, 0x61, 0x6D,
0x61, 0x67, 0x65, 0x20, 0x69, 0x74, 0x2E, 0x0D,
0x0A, 0x0A, 0x48, 0x69, 0x74, 0x20, 0x45, 0x53,
0x43, 0x20, 0x66, 0x6F, 0x72, 0x20, 0x42, 0x41,
0x53, 0x49, 0x43, 0x20, 0x6F, 0x72, 0x20, 0x61,
0x6E, 0x79, 0x20, 0x6B, 0x65, 0x79, 0x20, 0x74,
0x6F, 0x20, 0x72, 0x65, 0x62, 0x6F, 0x6F, 0x74,
0x2E, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};
#ifdef ORI_UTIL
int isdigit(char cc) {
if ((cc>='0') && (cc<='9')) return 1; else return 0;
}
#endif
/* This makes a filesystem */
dev_t dev;
direct_t dirbuf[DIRECTPERBLOCK] = {
{ ROOTINODE, "." },
{ ROOTINODE, ".."}
};
dinode_t inode[DINODESPERBLOCK];
uchar _fmt = 0; /* do low level formatting */
uchar _yes = 0; /* yes to all questions */
uchar _quick = 0; /* quick initialization */
uchar _verb = 0; /* be verbose */
void dwrite __P((uint, void *));
int yes __P((char *));
void mkfs __P((uint, uint,uint));
void doformatting __P((void));
void dwrite(blk, addr)
uint blk;
void *addr;
{
char *buf = bread(dev, blk, 2);
if (buf == NULL) {
printf("mkfs: device or drive error\n");
xexit(1);
}
bcopy(addr, buf, BUFSIZE);
bfree((bufptr)buf, 2);
}
int yes(char* p) {
char line;
PF(p);
if (_yes)
PF("Y\n");
line=bdos(1);
PF("\n");
return ((line=='y') || (line=='Y'));
}
void mkfs(fsize, isize, rsize)
uint fsize, isize, rsize;
{
uint j, lm;
char *buf;
filesys_t fs;
char zeroed[BUFSIZE];
buf = bread(dev, 0, 0);
if (buf == NULL) {
printf("mkfs: disk is not MS(X)DOS compatible, device or drive error\n");
xexit(1);
}
if (_verb) {
PF("Creating boot block...\n");
}
/* Preserve disk data (number of sectors, format type, etc) */
for (j = 11; j < 30; j++) bootblock[j] = buf[j];
/* Preserve other relevant data (we just use first 256 bytes) */
for (j = 256; j < 512; j++) bootblock[j] = buf[j];
/* Write new boot block */
bfree((bufptr)buf, 0);
bootblock[0x10] = rsize;
dwrite(0,bootblock);
/* Zero out the blocks */
bzero(zeroed, BUFSIZE);
if (_verb) {
PF("Initializing inodes, be patient...\n");
}
if (_quick) {
dwrite(fsize-1,zeroed); /* Last block */
lm = SUPERBLOCK+1+rsize+isize; /* Super+Reserv+Inodes */
}
else lm = fsize; /* All blocks of filesys */
j = 1;
while (j < lm) {
if (_verb && j % 9 == 0) {
PF("Blk #%d\r", j);
}
dwrite(j++, zeroed);
}
if (_verb) {
PF("Blk #%d\n",--j);
}
/* Initialize the super-block */
if (_verb) {
PF("Creating super-block...\n");
}
bzero(&fs,sizeof(fs));
fs.s_mounted = SMOUNTED; /* Magic number */
fs.s_reserv = SUPERBLOCK+1+rsize;
fs.s_isize = isize;
fs.s_fsize = fsize;
fs.s_tinode = DINODESPERBLOCK * isize - 2;
/* Free each block, building the free list */
j = fsize - 1;
while (j > SUPERBLOCK+1+rsize+isize) {
if (fs.s_nfree == FSFREEBLOCKS) {
dwrite(j, (char *) &fs.s_nfree);
fs.s_nfree = 0;
bzero(fs.s_free,sizeof(fs.s_free));
}
fs.s_tfree++;
fs.s_free[fs.s_nfree++] = j--;
}
/* The inodes are already zeroed out */
/* create the root dir */
inode[ROOTINODE].i_mode = S_IFDIR | 0755;
inode[ROOTINODE].i_nlink = 3;
inode[ROOTINODE].i_size = sizeof(direct_t)*2;
inode[ROOTINODE].i_addr[0] = SUPERBLOCK+1+rsize+isize;
/* Reserve reserved inode */
inode[0].i_nlink = 1;
inode[0].i_mode = ~0;
/* Free inodes in first inode block */
j = ROOTINODE+1;
while (j < DINODESPERBLOCK) {
if (fs.s_ninode == FSFREEINODES)
break;
fs.s_inode[fs.s_ninode++] = j++;
}
dwrite(SUPERBLOCK+1+rsize, inode);
dwrite(SUPERBLOCK+1+rsize+isize, dirbuf);
/* Write out super block */
dwrite(SUPERBLOCK, &fs);
}
void doformatting() {
#ifdef _MSX_DOS
if (_verb) {
PF("Low level formatting:\n");
}
asm(" push ix");
asm(" push iy");
asm(" ld ix,0147h"); /* FORMAT function (it asks user) */
asm(" ld iy,(0fcc0h)"); /* ROM BIOS slot */
asm(" call 001Ch");
asm(" pop iy");
asm(" pop ix");
#else
printf("Use FDISK for partition formatting!\n");
#endif
}
void main(argc, argv)
int argc;
char *argv[];
{
uint fsize, isize, rsize = 0, ap = 1;
uchar *p;
#ifdef _MSX_DOS
initenv();
#endif
while (*(p = (uchar *)argv[ap]) == '-') {
++p;
++ap;
--argc;
while (*p) {
switch (*p++) {
case 'y': case 'Y': _yes = 1; break;
case 'f': case 'F': _fmt = 1; break;
case 'q': case 'Q': _quick = 1; break;
case 'v': case 'V': _verb = 1; break;
default:
printf("Illegal switch %s\n", p);
xexit(-1);
}
}
}
if ((argc < 4) || (argv[ap+0][1] != ':') || !isdigit(argv[ap+0][0])) {
/* parameters order agree with FSCK */
printf("usage: mkfs [-yfqv] d: fsize isize [rsize]\n");
xexit(-1);
}
dev = argv[ap+0][0] - '0';
fsize = (uint) atoi(argv[ap+1]);
isize = (uint) atoi(argv[ap+2]);
if (argc > 4)
rsize = (uint) atoi(argv[ap+3]);
if (dev >= 8) {
printf("Invalid drive %c:.\n",dev+65);
xexit(-1);
}
if (fsize < 100 || isize >= fsize/30 || rsize > 100) {
printf("Bad parameter values\n");
xexit(-1);
}
PF("\nMaking filesystem on drive %c, fsize %u, isize %u, rsize %u. ",
dev+'0', fsize, isize, rsize);
if (!yes("Confirm? "))
xexit(-1);
#ifdef _MSX_DOS
if (!_yes) {
PF("Insert disk and press RETURN: ");
getchar();
}
#endif
PF("\n");
if (_fmt)
doformatting();
bufinit();
d_init();
#ifdef ORI_UTIL
if (!TotalDrives) { /* IDEBDOS check and devices fd0..fd9 configuring */
printf("\nNo drives or IDEBDOS v2.x not installed\n");
xexit(1);
}
#endif
if (d_open(dev)) {
printf("Can't open device %x",dev);
xexit(-1);
}
mkfs(fsize, isize, rsize);
d_close(dev);
bufsync();
if (_verb)
PF("Filesystem on drive %c successfully initialized!\n", dev+'0');
exit(0);
}