-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakeDisk.c
205 lines (179 loc) · 6.13 KB
/
MakeDisk.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
#include "MakePartition.c"
int MakeDisk(char * parametros[],size_t n0){
printf("\nIniciando creación del disco...\n");
// if ( n0 > 4 ){
// printf("ERROR 0x01 0x0F 0x0F.\nError en la creación del disco, demasiados parametros (%lu).\n",n0);
// return 0;
// }
char unit = 'M';
char * path = "";
char * name = "";
char * fullPath = "";
int size = 0;
bool flagSize=0;
bool flagPath=0;
bool flagName=0;
for (int i = 0; i < n0; ++i)
{
char * argumento[50];
size_t n = 0;
for (char * p = strtok(parametros[i], "::"); p; p = strtok(NULL, "::"))
{
if (n >= 50)
{
// maximum number of storable tokens exceeded
break;
}
argumento[n++] = p;
}
// for (size_t i = 0; i != n; ++i)
// {
// printf("Token %zu is '%s'.\n", i, argumento[i]);
// }
if ((strcasecmp (argumento[0],"+unit ") == 0) || (strcasecmp (argumento[0],"+unit") == 0) ){
unit = argumento[1][0];
// printf("Unidad del disco: %c \n",unit);
}
if ((strcasecmp (argumento[0],"-size ") == 0) || (strcasecmp (argumento[0],"-size") == 0) ){
size= atoi(argumento[1]);
if (size < 1)
{
printf("ERROR 0x01 0x0F 0x02.\nError en la creación del disco, El tamaño debe ser positivo y mayor que cero (%d).\n",size);
return 0;
}
flagSize=1;
// printf("Tamaño del disco: %d \n",size);
}
if ((strcasecmp (argumento[0],"-path ") == 0) || (strcasecmp (argumento[0],"-path") == 0) ){
char lastChar = argumento[1][strlen (argumento[1])-1];
path = strdup(argumento[1]);
int j = i+1;
while(lastChar!='"'){
// printf(">'%s' - '%s'\n",path,parametros[i+1]);
char * tmp = strdup(parametros[j]);
j++;
strcat(path," ");
// printf(">'%s'\n",path);
strcat(path,tmp);
// printf(">'%s'\n",path);
lastChar = path[strlen(path)-1];
}
lastChar = path[strlen(path)-1];
if (lastChar=='/')
{
path[strlen (path) - 1] = '\0';
}
removeChar(path,'"');
flagPath=1;
// printf("Ubicación del disco: %s \n",path);
}
if ((strcasecmp (argumento[0],"-name ") == 0) || (strcasecmp (argumento[0],"-name") == 0) ){
char lastChar = argumento[1][strlen (argumento[1])-1];
name = strdup(argumento[1]);
while(lastChar!='"'){
// printf(">'%s' - '%s'\n",name,parametros[i+1]);
char * tmp = strdup(parametros[i+1]);
strcat(name," ");
// printf(">'%s'\n",name);
strcat(name,tmp);
// printf(">'%s'\n",name);
lastChar = name[strlen(name)-1];
}
removeChar(name,'"');
flagName=1;
// printf("Ubicación del disco: %s \n",path);
}
// printf("Fin del argumento\n\n");
}
if ( !(flagPath && flagSize && flagName) ) {
printf("ERROR 0x01 0x0%d 0x0%d.\nError en la creación del disco, al paracer falta un parametro obligatorio\n\n",flagPath,flagSize);
return 0;
}
int realsize = size;
switch(unit){
case 'k':
unit='K';
case 'K':
realsize = size * 1024;
break;
case 'm':
unit='M';
case 'M':
realsize = size * 1024 * 1024;
break;
default:
printf("ERROR 0x01 0x0F 0x01.\nError en la creación del disco, No se reconoce la unidad (%c).\n",unit);
return 0;
}
mbr masterboot;
masterboot.mbr_tamaño = realsize;
masterboot.mbr_fecha_creacion=(int)time(NULL);
masterboot.mbr_disk_signature = rand();
masterboot.mbr_partition_1.part_status = 'N';
masterboot.mbr_partition_2.part_status = 'N';
masterboot.mbr_partition_3.part_status = 'N';
masterboot.mbr_partition_4.part_status = 'N';
char garbage[realsize];
FILE *fp;
struct stat st = {0};
printf("Verificando si existe el directorio...\n");
if (stat(path, &st) == -1) {
printf("Creando el directorio '%s'...\n",path);
if( mkdir(path, 0700) != 0 ){
printf("ERROR 0x01 0x0F 0x04.\nError desconocido en la creación del directorio.\n");
return 0;
}
//sprintf("Path creado\n");
}
fullPath = strcat(path,"/");
fullPath = strcat(path,name);
printf("\nCreando el disco en: '%s' con una capacidad de %d %cB \n",fullPath,size,unit);
fp = fopen(fullPath, "w+b");
// char part_status ='1';
// char part_type ='p';
// char part_fit ='c';
// int part_start =0;
// int part_size = 0;
// char part_name [16] = "MarioA.";
for (int i = 0; i < sizeof(garbage); ++i)
{
fputc('\0',fp);
}
rewind(fp);
fwrite(&masterboot, sizeof(mbr), 1,fp);
//fwrite (buffer , sizeof(char), sizeof(buffer), pFile);
// fprintf(fp,"%d",masterboot.mbr_tamaño);
// fprintf(fp,"%d",masterboot.mbr_fecha_creacion);
// fprintf(fp,"%d",masterboot.mbr_disk_signature);
fclose(fp);
printf("MBR Size: '%lu'\n", sizeof(masterboot)); //120
printf("Size: '%d bytes'\n", masterboot.mbr_tamaño); //
// printf("Size of Size: '%lu'\n", sizeof(masterboot.mbr_tamaño)); //
printf("Time: '%d' (unix timestamp)\n", masterboot.mbr_fecha_creacion); //
// printf("Size of Time: '%lu'\n", sizeof(masterboot.mbr_fecha_creacion)); //
printf("Disk Signature: '%d'\n", masterboot.mbr_disk_signature);
printf("Real size: '%d bytes'\n", realsize); //
return 1;
}
/*
Mkdisk –Size=3000 –unit=K –path=Disco1.dsk
Mkdisk –Size=3000 –unit=K –path=/Users/marioalvarado/Documents/USAC/MIA/Progra/ejemplo03.02.16/Prueba/Disco1.dsk
Mkdisk –path=/home/user/Disco2.dsk –Unit=K –size=3000
mkdisk –size=5 –unit=M –path="/home/mis discos/Disco3.dsk"
Mkdisk –size=10 –path="/home/mis discos/Disco4.dsk"
*/
/* MBR */ // 120?
// int mbr_tamaño; // 4
// time_t mbr_fecha_creacion; // 4 (5-8)
// int mbr_disk_signature; // 4 (9-12)
// partition mbr_partition_1; // 24 (13-36)
// partition mbr_partition_2; // 24 (37-60)
// partition mbr_partition_3; // 24 (61-84)
// partition mbr_partition_4; // 24 (85-108)
/* Partition */ // 24
// char part_status; // 1 (13) (37) (61) (85)
// char part_type; // 1 (14) (38) (62) (86)
// char part_fit; // 1 (15) (39) (63) (87)
// char part_start; // 1 (16) (40) (64) (88)
// int part_size; // 4 (17-20) (41-44) (65-68) (89-92)
// char part_name [16]; // 16 (21-36) (45-60) (69-84) (93-108)