-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenfs.c
130 lines (123 loc) · 3.19 KB
/
genfs.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
/*
* Copyright (C) 2005 - Alejandro Liu Ly <alejandro_liu@hotmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* @project mfstool
* @module genfs
* @section 3
* @doc routines for creating new file systems
*/
#include "minix_fs.h"
#include "protos.h"
#include <getopt.h>
#include <stdlib.h>
/**
* Parse mkfs/genfs command line arguments
* @param argc - argc from command line
* @param argv - argv from command line
* @param magic_p - returns filesystem magic number
* @param nblks_p - returns size of file system
* @param inodes_p - return number of requested inodes
*/
/*
* -n namelen
* -1 -> version1
* -2|v -> version2
* -i nodecount
* -s nblocks
* -k
*/
void parse_mkfs(int argc,char **argv,int *magic_p,int *nblks_p,int *inodes_p,int *keepdata_p) {
int c;
int namelen = 30;
int version = 2;
*nblks_p = -1;
*inodes_p = 0;
*keepdata_p = 0;
while (1) {
c = getopt(argc,argv,"12vki:n:s:");
if (c == -1) break;
switch (c) {
case '1':
version = 1;
break;
case '2':
case 'v':
version = 2;
break;
case 'n':
namelen = atoi(optarg);
if (namelen != 30 && namelen != 14)
fatalmsg("invalid name len (%d) must be 30 or 14",namelen);
case 'i':
*inodes_p = atoi(optarg);
break;
case 's':
*nblks_p = atoi(optarg);
break;
case 'k':
*keepdata_p = 1;
break;
default:
usage(argv[0]);
}
}
if (*nblks_p == -1)
fatalmsg("no filesystem size specified");
if (version == 2)
*magic_p = namelen == 30 ? MINIX2_SUPER_MAGIC2 : MINIX2_SUPER_MAGIC;
else
*magic_p = namelen == 30 ? MINIX_SUPER_MAGIC2 : MINIX_SUPER_MAGIC;
}
/**
* Create an empty filesystem
* @param argc - from command line
* @param argv - from command line
*/
void cmd_mkfs(int argc,char **argv) {
int req_inos;
int req_blks;
int magic;
int keepdata;
char *filename = argv[0];
struct minix_fs_dat *fs;
parse_mkfs(argc,argv,&magic,&req_blks,&req_inos,&keepdata);
fs = new_fs(filename,magic,req_blks,req_inos,keepdata);
close_fs(fs);
}
/**
* Generate a new filesystem
* @param argc - from command line
* @param argv - from command line
*/
void cmd_genfs(int argc,char **argv) {
int req_inos;
int req_blks;
int magic;
int keepdata;
char *filename = argv[0];
struct minix_fs_dat *fs;
parse_mkfs(argc,argv,&magic,&req_blks,&req_inos,&keepdata);
fs = new_fs(filename,magic,req_blks,req_inos,keepdata);
{
int i;
for (i=optind;i<argc;i++) {
printf("%3d) %s\n",i,argv[i]);
}
}
close_fs(fs);
}