dir.c revision 1.9 1 1.9 ws /* $NetBSD: dir.c,v 1.9 1997/09/08 14:05:30 ws Exp $ */
2 1.1 ws
3 1.1 ws /*
4 1.1 ws * Copyright (C) 1995, 1996 Wolfgang Solfrank
5 1.1 ws * Copyright (c) 1995 Martin Husemann
6 1.1 ws * Some structure declaration borrowed from Paul Popelka
7 1.1 ws * (paulp (at) uts.amdahl.com), see /sys/msdosfs/ for reference.
8 1.1 ws *
9 1.1 ws * Redistribution and use in source and binary forms, with or without
10 1.1 ws * modification, are permitted provided that the following conditions
11 1.1 ws * are met:
12 1.1 ws * 1. Redistributions of source code must retain the above copyright
13 1.1 ws * notice, this list of conditions and the following disclaimer.
14 1.1 ws * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 ws * notice, this list of conditions and the following disclaimer in the
16 1.1 ws * documentation and/or other materials provided with the distribution.
17 1.1 ws * 3. All advertising materials mentioning features or use of this software
18 1.1 ws * must display the following acknowledgement:
19 1.1 ws * This product includes software developed by Martin Husemann
20 1.1 ws * and Wolfgang Solfrank.
21 1.1 ws * 4. Neither the name of the University nor the names of its contributors
22 1.1 ws * may be used to endorse or promote products derived from this software
23 1.1 ws * without specific prior written permission.
24 1.1 ws *
25 1.1 ws * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
26 1.1 ws * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 1.1 ws * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 1.1 ws * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29 1.1 ws * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 1.1 ws * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 1.1 ws * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 1.1 ws * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 1.1 ws * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 1.1 ws * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 1.1 ws */
36 1.1 ws
37 1.1 ws
38 1.1 ws #ifndef lint
39 1.9 ws static char rcsid[] = "$NetBSD: dir.c,v 1.9 1997/09/08 14:05:30 ws Exp $";
40 1.1 ws #endif /* not lint */
41 1.1 ws
42 1.1 ws #include <stdio.h>
43 1.1 ws #include <stdlib.h>
44 1.1 ws #include <string.h>
45 1.1 ws #include <ctype.h>
46 1.1 ws #include <stdio.h>
47 1.1 ws #include <unistd.h>
48 1.1 ws #include <time.h>
49 1.1 ws
50 1.2 ws #include <sys/param.h>
51 1.2 ws
52 1.1 ws #include "ext.h"
53 1.8 christos #include "fsutil.h"
54 1.1 ws
55 1.1 ws #define SLOT_EMPTY 0x00 /* slot has never been used */
56 1.1 ws #define SLOT_E5 0x05 /* the real value is 0xe5 */
57 1.1 ws #define SLOT_DELETED 0xe5 /* file in this slot deleted */
58 1.1 ws
59 1.1 ws #define ATTR_NORMAL 0x00 /* normal file */
60 1.1 ws #define ATTR_READONLY 0x01 /* file is readonly */
61 1.1 ws #define ATTR_HIDDEN 0x02 /* file is hidden */
62 1.1 ws #define ATTR_SYSTEM 0x04 /* file is a system file */
63 1.1 ws #define ATTR_VOLUME 0x08 /* entry is a volume label */
64 1.1 ws #define ATTR_DIRECTORY 0x10 /* entry is a directory name */
65 1.1 ws #define ATTR_ARCHIVE 0x20 /* file is new or modified */
66 1.1 ws
67 1.1 ws #define ATTR_WIN95 0x0f /* long name record */
68 1.1 ws
69 1.1 ws /*
70 1.1 ws * This is the format of the contents of the deTime field in the direntry
71 1.1 ws * structure.
72 1.1 ws * We don't use bitfields because we don't know how compilers for
73 1.1 ws * arbitrary machines will lay them out.
74 1.1 ws */
75 1.1 ws #define DT_2SECONDS_MASK 0x1F /* seconds divided by 2 */
76 1.1 ws #define DT_2SECONDS_SHIFT 0
77 1.1 ws #define DT_MINUTES_MASK 0x7E0 /* minutes */
78 1.1 ws #define DT_MINUTES_SHIFT 5
79 1.1 ws #define DT_HOURS_MASK 0xF800 /* hours */
80 1.1 ws #define DT_HOURS_SHIFT 11
81 1.1 ws
82 1.1 ws /*
83 1.1 ws * This is the format of the contents of the deDate field in the direntry
84 1.1 ws * structure.
85 1.1 ws */
86 1.1 ws #define DD_DAY_MASK 0x1F /* day of month */
87 1.1 ws #define DD_DAY_SHIFT 0
88 1.1 ws #define DD_MONTH_MASK 0x1E0 /* month */
89 1.1 ws #define DD_MONTH_SHIFT 5
90 1.1 ws #define DD_YEAR_MASK 0xFE00 /* year - 1980 */
91 1.1 ws #define DD_YEAR_SHIFT 9
92 1.1 ws
93 1.6 christos
94 1.6 christos /* dir.c */
95 1.6 christos static struct dosDirEntry *newDosDirEntry __P((void));
96 1.6 christos static void freeDosDirEntry __P((struct dosDirEntry *));
97 1.6 christos static struct dirTodoNode *newDirTodo __P((void));
98 1.6 christos static void freeDirTodo __P((struct dirTodoNode *));
99 1.6 christos static char *fullpath __P((struct dosDirEntry *));
100 1.6 christos static u_char calcShortSum __P((u_char *));
101 1.6 christos static int delete __P((int, struct bootblock *, struct fatEntry *, cl_t, int,
102 1.6 christos cl_t, int, int));
103 1.6 christos static int removede __P((int, struct bootblock *, struct fatEntry *, u_char *,
104 1.6 christos u_char *, cl_t, cl_t, cl_t, char *, int));
105 1.6 christos static int checksize __P((struct bootblock *, struct fatEntry *, u_char *,
106 1.6 christos struct dosDirEntry *));
107 1.6 christos static int readDosDirSection __P((int, struct bootblock *, struct fatEntry *,
108 1.6 christos struct dosDirEntry *));
109 1.6 christos
110 1.1 ws /*
111 1.3 ws * Manage free dosDirEntry structures.
112 1.3 ws */
113 1.3 ws static struct dosDirEntry *freede;
114 1.3 ws
115 1.3 ws static struct dosDirEntry *
116 1.3 ws newDosDirEntry()
117 1.3 ws {
118 1.3 ws struct dosDirEntry *de;
119 1.3 ws
120 1.3 ws if (!(de = freede)) {
121 1.3 ws if (!(de = (struct dosDirEntry *)malloc(sizeof *de)))
122 1.3 ws return 0;
123 1.3 ws } else
124 1.3 ws freede = de->next;
125 1.3 ws return de;
126 1.3 ws }
127 1.3 ws
128 1.3 ws static void
129 1.3 ws freeDosDirEntry(de)
130 1.3 ws struct dosDirEntry *de;
131 1.3 ws {
132 1.3 ws de->next = freede;
133 1.3 ws freede = de;
134 1.3 ws }
135 1.3 ws
136 1.3 ws /*
137 1.3 ws * The same for dirTodoNode structures.
138 1.3 ws */
139 1.3 ws static struct dirTodoNode *freedt;
140 1.3 ws
141 1.3 ws static struct dirTodoNode *
142 1.3 ws newDirTodo()
143 1.3 ws {
144 1.3 ws struct dirTodoNode *dt;
145 1.3 ws
146 1.3 ws if (!(dt = freedt)) {
147 1.3 ws if (!(dt = (struct dirTodoNode *)malloc(sizeof *dt)))
148 1.3 ws return 0;
149 1.3 ws } else
150 1.3 ws freedt = dt->next;
151 1.3 ws return dt;
152 1.3 ws }
153 1.3 ws
154 1.3 ws static void
155 1.3 ws freeDirTodo(dt)
156 1.3 ws struct dirTodoNode *dt;
157 1.3 ws {
158 1.3 ws dt->next = freedt;
159 1.3 ws freedt = dt;
160 1.3 ws }
161 1.3 ws
162 1.3 ws /*
163 1.3 ws * The stack of unread directories
164 1.3 ws */
165 1.3 ws struct dirTodoNode *pendingDirectories = NULL;
166 1.3 ws
167 1.3 ws /*
168 1.2 ws * Return the full pathname for a directory entry.
169 1.2 ws */
170 1.2 ws static char *
171 1.2 ws fullpath(dir)
172 1.2 ws struct dosDirEntry *dir;
173 1.2 ws {
174 1.2 ws static char namebuf[MAXPATHLEN + 1];
175 1.2 ws char *cp, *np;
176 1.2 ws int nl;
177 1.2 ws
178 1.2 ws cp = namebuf + sizeof namebuf - 1;
179 1.2 ws *cp = '\0';
180 1.2 ws do {
181 1.2 ws np = dir->lname[0] ? dir->lname : dir->name;
182 1.2 ws nl = strlen(np);
183 1.2 ws if ((cp -= nl) <= namebuf + 1)
184 1.2 ws break;
185 1.2 ws memcpy(cp, np, nl);
186 1.2 ws *--cp = '/';
187 1.4 christos } while ((dir = dir->parent) != NULL);
188 1.5 ws if (dir)
189 1.2 ws *--cp = '?';
190 1.9 ws else
191 1.9 ws cp++;
192 1.2 ws return cp;
193 1.2 ws }
194 1.2 ws
195 1.2 ws /*
196 1.1 ws * Calculate a checksum over an 8.3 alias name
197 1.1 ws */
198 1.1 ws static u_char
199 1.1 ws calcShortSum(p)
200 1.1 ws u_char *p;
201 1.1 ws {
202 1.1 ws u_char sum = 0;
203 1.1 ws int i;
204 1.1 ws
205 1.1 ws for (i = 0; i < 11; i++) {
206 1.1 ws sum = (sum << 7)|(sum >> 1); /* rotate right */
207 1.1 ws sum += p[i];
208 1.1 ws }
209 1.1 ws
210 1.1 ws return sum;
211 1.1 ws }
212 1.1 ws
213 1.1 ws /*
214 1.1 ws * Global variables temporarily used during a directory scan
215 1.1 ws */
216 1.1 ws static char longName[DOSLONGNAMELEN] = "";
217 1.1 ws static u_char *buffer = NULL;
218 1.1 ws static u_char *delbuf = NULL;
219 1.1 ws
220 1.3 ws struct dosDirEntry *rootDir;
221 1.3 ws static struct dosDirEntry *lostDir;
222 1.3 ws
223 1.1 ws /*
224 1.1 ws * Init internal state for a new directory scan.
225 1.1 ws */
226 1.1 ws int
227 1.1 ws resetDosDirSection(boot)
228 1.1 ws struct bootblock *boot;
229 1.1 ws {
230 1.1 ws int b1, b2;
231 1.1 ws
232 1.1 ws b1 = boot->RootDirEnts * 32;
233 1.1 ws b2 = boot->SecPerClust * boot->BytesPerSec;
234 1.1 ws
235 1.1 ws if (!(buffer = malloc(b1 > b2 ? b1 : b2))
236 1.3 ws || !(delbuf = malloc(b2))
237 1.3 ws || !(rootDir = newDosDirEntry())) {
238 1.1 ws perror("No space for directory");
239 1.1 ws return FSFATAL;
240 1.1 ws }
241 1.3 ws memset(rootDir, 0, sizeof *rootDir);
242 1.1 ws return FSOK;
243 1.1 ws }
244 1.1 ws
245 1.1 ws /*
246 1.1 ws * Cleanup after a directory scan
247 1.1 ws */
248 1.1 ws void
249 1.1 ws finishDosDirSection()
250 1.1 ws {
251 1.3 ws struct dirTodoNode *p, *np;
252 1.3 ws struct dosDirEntry *d, *nd;
253 1.3 ws
254 1.3 ws for (p = pendingDirectories; p; p = np) {
255 1.3 ws np = p->next;
256 1.3 ws freeDirTodo(p);
257 1.3 ws }
258 1.3 ws pendingDirectories = 0;
259 1.3 ws for (d = rootDir; d; d = nd) {
260 1.4 christos if ((nd = d->child) != NULL) {
261 1.3 ws d->child = 0;
262 1.3 ws continue;
263 1.3 ws }
264 1.3 ws if (!(nd = d->next))
265 1.3 ws nd = d->parent;
266 1.3 ws freeDosDirEntry(d);
267 1.3 ws }
268 1.3 ws rootDir = lostDir = NULL;
269 1.1 ws free(buffer);
270 1.1 ws free(delbuf);
271 1.1 ws buffer = NULL;
272 1.1 ws delbuf = NULL;
273 1.1 ws }
274 1.1 ws
275 1.1 ws /*
276 1.1 ws * Delete directory entries between startcl, startoff and endcl, endoff.
277 1.1 ws */
278 1.1 ws static int
279 1.1 ws delete(f, boot, fat, startcl, startoff, endcl, endoff, notlast)
280 1.1 ws int f;
281 1.1 ws struct bootblock *boot;
282 1.1 ws struct fatEntry *fat;
283 1.1 ws cl_t startcl;
284 1.1 ws int startoff;
285 1.1 ws cl_t endcl;
286 1.1 ws int endoff;
287 1.1 ws int notlast;
288 1.1 ws {
289 1.1 ws u_char *s, *e;
290 1.1 ws off_t off;
291 1.1 ws int clsz = boot->SecPerClust * boot->BytesPerSec;
292 1.1 ws
293 1.1 ws s = delbuf + startoff;
294 1.1 ws e = delbuf + clsz;
295 1.1 ws while (startcl >= CLUST_FIRST && startcl < boot->NumClusters) {
296 1.1 ws if (startcl == endcl) {
297 1.1 ws if (notlast)
298 1.1 ws break;
299 1.1 ws e = delbuf + endoff;
300 1.1 ws }
301 1.1 ws off = startcl * boot->SecPerClust + boot->ClusterOffset;
302 1.1 ws off *= boot->BytesPerSec;
303 1.1 ws if (lseek(f, off, SEEK_SET) != off
304 1.1 ws || read(f, delbuf, clsz) != clsz) {
305 1.1 ws perror("Unable to read directory");
306 1.1 ws return FSFATAL;
307 1.1 ws }
308 1.1 ws while (s < e) {
309 1.1 ws *s = SLOT_DELETED;
310 1.1 ws s += 32;
311 1.1 ws }
312 1.1 ws if (lseek(f, off, SEEK_SET) != off
313 1.1 ws || write(f, delbuf, clsz) != clsz) {
314 1.1 ws perror("Unable to write directory");
315 1.1 ws return FSFATAL;
316 1.1 ws }
317 1.1 ws if (startcl == endcl)
318 1.1 ws break;
319 1.1 ws startcl = fat[startcl].next;
320 1.1 ws s = delbuf;
321 1.1 ws }
322 1.1 ws return FSOK;
323 1.1 ws }
324 1.1 ws
325 1.1 ws static int
326 1.3 ws removede(f, boot, fat, start, end, startcl, endcl, curcl, path, type)
327 1.1 ws int f;
328 1.1 ws struct bootblock *boot;
329 1.1 ws struct fatEntry *fat;
330 1.1 ws u_char *start;
331 1.1 ws u_char *end;
332 1.1 ws cl_t startcl;
333 1.1 ws cl_t endcl;
334 1.1 ws cl_t curcl;
335 1.1 ws char *path;
336 1.3 ws int type;
337 1.1 ws {
338 1.3 ws switch (type) {
339 1.3 ws case 0:
340 1.1 ws pwarn("Invalid long filename entry for %s\n", path);
341 1.3 ws break;
342 1.3 ws case 1:
343 1.1 ws pwarn("Invalid long filename entry at end of directory %s\n", path);
344 1.3 ws break;
345 1.3 ws case 2:
346 1.3 ws pwarn("Invalid long filename entry for volume label\n");
347 1.3 ws break;
348 1.3 ws }
349 1.1 ws if (ask(0, "Remove")) {
350 1.1 ws if (startcl != curcl) {
351 1.1 ws if (delete(f, boot, fat,
352 1.1 ws startcl, start - buffer,
353 1.1 ws endcl, end - buffer,
354 1.1 ws endcl == curcl) == FSFATAL)
355 1.1 ws return FSFATAL;
356 1.1 ws start = buffer;
357 1.1 ws }
358 1.1 ws if (endcl == curcl)
359 1.1 ws for (; start < end; start += 32)
360 1.1 ws *start = SLOT_DELETED;
361 1.1 ws return FSDIRMOD;
362 1.1 ws }
363 1.1 ws return FSERROR;
364 1.1 ws }
365 1.1 ws
366 1.1 ws /*
367 1.1 ws * Check an in-memory file entry
368 1.1 ws */
369 1.1 ws static int
370 1.1 ws checksize(boot, fat, p, dir)
371 1.1 ws struct bootblock *boot;
372 1.1 ws struct fatEntry *fat;
373 1.1 ws u_char *p;
374 1.1 ws struct dosDirEntry *dir;
375 1.1 ws {
376 1.1 ws /*
377 1.1 ws * Check size on ordinary files
378 1.1 ws */
379 1.3 ws int32_t physicalSize;
380 1.1 ws
381 1.3 ws if (dir->head == CLUST_FREE)
382 1.3 ws physicalSize = 0;
383 1.3 ws else {
384 1.3 ws if (dir->head < CLUST_FIRST || dir->head >= boot->NumClusters)
385 1.3 ws return FSERROR;
386 1.3 ws physicalSize = fat[dir->head].length * boot->ClusterSize;
387 1.3 ws }
388 1.1 ws if (physicalSize < dir->size) {
389 1.6 christos pwarn("size of %s is %u, should at most be %u\n",
390 1.2 ws fullpath(dir), dir->size, physicalSize);
391 1.1 ws if (ask(1, "Truncate")) {
392 1.1 ws dir->size = physicalSize;
393 1.1 ws p[28] = (u_char)physicalSize;
394 1.1 ws p[29] = (u_char)(physicalSize >> 8);
395 1.1 ws p[30] = (u_char)(physicalSize >> 16);
396 1.1 ws p[31] = (u_char)(physicalSize >> 24);
397 1.1 ws return FSDIRMOD;
398 1.1 ws } else
399 1.1 ws return FSERROR;
400 1.1 ws } else if (physicalSize - dir->size >= boot->ClusterSize) {
401 1.1 ws pwarn("%s has too many clusters allocated\n",
402 1.2 ws fullpath(dir));
403 1.1 ws if (ask(1, "Drop superfluous clusters")) {
404 1.1 ws cl_t cl;
405 1.1 ws u_int32_t sz = 0;
406 1.1 ws
407 1.1 ws for (cl = dir->head; (sz += boot->ClusterSize) < dir->size;)
408 1.1 ws cl = fat[cl].next;
409 1.1 ws clearchain(boot, fat, fat[cl].next);
410 1.1 ws fat[cl].next = CLUST_EOF;
411 1.1 ws return FSFATMOD;
412 1.1 ws } else
413 1.1 ws return FSERROR;
414 1.1 ws }
415 1.1 ws return FSOK;
416 1.1 ws }
417 1.1 ws
418 1.1 ws /*
419 1.1 ws * Read a directory and
420 1.1 ws * - resolve long name records
421 1.1 ws * - enter file and directory records into the parent's list
422 1.1 ws * - push directories onto the todo-stack
423 1.1 ws */
424 1.3 ws static int
425 1.1 ws readDosDirSection(f, boot, fat, dir)
426 1.1 ws int f;
427 1.1 ws struct bootblock *boot;
428 1.1 ws struct fatEntry *fat;
429 1.1 ws struct dosDirEntry *dir;
430 1.1 ws {
431 1.1 ws struct dosDirEntry dirent, *d;
432 1.1 ws u_char *p, *vallfn, *invlfn, *empty;
433 1.1 ws off_t off;
434 1.1 ws int i, j, k, last;
435 1.4 christos cl_t cl, valcl = ~0, invcl = ~0, empcl = ~0;
436 1.1 ws char *t;
437 1.1 ws u_int lidx = 0;
438 1.1 ws int shortSum;
439 1.1 ws int mod = FSOK;
440 1.1 ws #define THISMOD 0x8000 /* Only used within this routine */
441 1.1 ws
442 1.1 ws cl = dir->head;
443 1.2 ws if (dir->parent && (cl < CLUST_FIRST || cl >= boot->NumClusters)) {
444 1.1 ws /*
445 1.1 ws * Already handled somewhere else.
446 1.1 ws */
447 1.1 ws return FSOK;
448 1.1 ws }
449 1.1 ws shortSum = -1;
450 1.1 ws vallfn = invlfn = empty = NULL;
451 1.1 ws do {
452 1.2 ws if (!dir->parent) {
453 1.1 ws last = boot->RootDirEnts * 32;
454 1.1 ws off = boot->ResSectors + boot->FATs * boot->FATsecs;
455 1.1 ws } else {
456 1.1 ws last = boot->SecPerClust * boot->BytesPerSec;
457 1.1 ws off = cl * boot->SecPerClust + boot->ClusterOffset;
458 1.1 ws }
459 1.1 ws
460 1.1 ws off *= boot->BytesPerSec;
461 1.1 ws if (lseek(f, off, SEEK_SET) != off
462 1.1 ws || read(f, buffer, last) != last) {
463 1.1 ws perror("Unable to read directory");
464 1.1 ws return FSFATAL;
465 1.1 ws }
466 1.1 ws last /= 32;
467 1.1 ws /*
468 1.1 ws * Check `.' and `..' entries here? XXX
469 1.1 ws */
470 1.1 ws for (p = buffer, i = 0; i < last; i++, p += 32) {
471 1.1 ws if (dir->fsckflags & DIREMPWARN) {
472 1.1 ws *p = SLOT_EMPTY;
473 1.1 ws continue;
474 1.1 ws }
475 1.1 ws
476 1.1 ws if (*p == SLOT_EMPTY || *p == SLOT_DELETED) {
477 1.1 ws if (*p == SLOT_EMPTY) {
478 1.1 ws dir->fsckflags |= DIREMPTY;
479 1.1 ws empty = p;
480 1.1 ws empcl = cl;
481 1.1 ws }
482 1.1 ws continue;
483 1.1 ws }
484 1.1 ws
485 1.1 ws if (dir->fsckflags & DIREMPTY) {
486 1.1 ws if (!(dir->fsckflags & DIREMPWARN)) {
487 1.1 ws pwarn("%s has entries after end of directory\n",
488 1.2 ws fullpath(dir));
489 1.1 ws if (ask(1, "Extend")) {
490 1.7 ws u_char *q;
491 1.7 ws
492 1.1 ws dir->fsckflags &= ~DIREMPTY;
493 1.1 ws if (delete(f, boot, fat,
494 1.1 ws empcl, empty - buffer,
495 1.7 ws cl, p - buffer, 1) == FSFATAL)
496 1.1 ws return FSFATAL;
497 1.7 ws q = empcl == cl ? empty : buffer;
498 1.7 ws for (; q < p; q += 32)
499 1.7 ws *q = SLOT_DELETED;
500 1.7 ws mod |= THISMOD|FSDIRMOD;
501 1.1 ws } else if (ask(0, "Truncate"))
502 1.1 ws dir->fsckflags |= DIREMPWARN;
503 1.1 ws }
504 1.1 ws if (dir->fsckflags & DIREMPWARN) {
505 1.1 ws *p = SLOT_DELETED;
506 1.1 ws mod |= THISMOD|FSDIRMOD;
507 1.1 ws continue;
508 1.1 ws } else if (dir->fsckflags & DIREMPTY)
509 1.1 ws mod |= FSERROR;
510 1.1 ws empty = NULL;
511 1.1 ws }
512 1.1 ws
513 1.1 ws if (p[11] == ATTR_WIN95) {
514 1.1 ws if (*p & LRFIRST) {
515 1.1 ws if (shortSum != -1) {
516 1.1 ws if (!invlfn) {
517 1.1 ws invlfn = vallfn;
518 1.1 ws invcl = valcl;
519 1.1 ws }
520 1.1 ws }
521 1.1 ws memset(longName, 0, sizeof longName);
522 1.1 ws shortSum = p[13];
523 1.1 ws vallfn = p;
524 1.1 ws valcl = cl;
525 1.1 ws } else if (shortSum != p[13]
526 1.4 christos || lidx != (*p & LRNOMASK)) {
527 1.1 ws if (!invlfn) {
528 1.1 ws invlfn = vallfn;
529 1.1 ws invcl = valcl;
530 1.1 ws }
531 1.1 ws if (!invlfn) {
532 1.1 ws invlfn = p;
533 1.1 ws invcl = cl;
534 1.1 ws }
535 1.1 ws vallfn = NULL;
536 1.1 ws }
537 1.1 ws lidx = *p & LRNOMASK;
538 1.1 ws t = longName + --lidx * 13;
539 1.1 ws for (k = 1; k < 11 && t < longName + sizeof(longName); k += 2) {
540 1.1 ws if (!p[k] && !p[k + 1])
541 1.1 ws break;
542 1.1 ws *t++ = p[k];
543 1.1 ws /*
544 1.1 ws * Warn about those unusable chars in msdosfs here? XXX
545 1.1 ws */
546 1.1 ws if (p[k + 1])
547 1.1 ws t[-1] = '?';
548 1.1 ws }
549 1.1 ws if (k >= 11)
550 1.1 ws for (k = 14; k < 26 && t < longName + sizeof(longName); k += 2) {
551 1.1 ws if (!p[k] && !p[k + 1])
552 1.1 ws break;
553 1.1 ws *t++ = p[k];
554 1.1 ws if (p[k + 1])
555 1.1 ws t[-1] = '?';
556 1.1 ws }
557 1.1 ws if (k >= 26)
558 1.1 ws for (k = 28; k < 32 && t < longName + sizeof(longName); k += 2) {
559 1.1 ws if (!p[k] && !p[k + 1])
560 1.1 ws break;
561 1.1 ws *t++ = p[k];
562 1.1 ws if (p[k + 1])
563 1.1 ws t[-1] = '?';
564 1.1 ws }
565 1.1 ws if (t >= longName + sizeof(longName)) {
566 1.1 ws pwarn("long filename too long\n");
567 1.1 ws if (!invlfn) {
568 1.1 ws invlfn = vallfn;
569 1.1 ws invcl = valcl;
570 1.1 ws }
571 1.1 ws vallfn = NULL;
572 1.1 ws }
573 1.1 ws if (p[26] | (p[27] << 8)) {
574 1.1 ws pwarn("long filename record cluster start != 0\n");
575 1.1 ws if (!invlfn) {
576 1.1 ws invlfn = vallfn;
577 1.1 ws invcl = cl;
578 1.1 ws }
579 1.1 ws vallfn = NULL;
580 1.1 ws }
581 1.1 ws continue; /* long records don't carry further
582 1.1 ws * information */
583 1.1 ws }
584 1.1 ws
585 1.1 ws /*
586 1.1 ws * This is a standard msdosfs directory entry.
587 1.1 ws */
588 1.1 ws memset(&dirent, 0, sizeof dirent);
589 1.1 ws
590 1.1 ws /*
591 1.1 ws * it's a short name record, but we need to know
592 1.1 ws * more, so get the flags first.
593 1.1 ws */
594 1.1 ws dirent.flags = p[11];
595 1.1 ws
596 1.1 ws /*
597 1.1 ws * Translate from 850 to ISO here XXX
598 1.1 ws */
599 1.1 ws for (j = 0; j < 8; j++)
600 1.1 ws dirent.name[j] = p[j];
601 1.1 ws dirent.name[8] = '\0';
602 1.1 ws for (k = 7; k >= 0 && dirent.name[k] == ' '; k--)
603 1.1 ws dirent.name[k] = '\0';
604 1.1 ws if (dirent.name[k] != '\0')
605 1.1 ws k++;
606 1.1 ws if (dirent.name[0] == SLOT_E5)
607 1.1 ws dirent.name[0] = 0xe5;
608 1.3 ws
609 1.3 ws if (dirent.flags & ATTR_VOLUME) {
610 1.3 ws if (vallfn || invlfn) {
611 1.3 ws mod |= removede(f, boot, fat,
612 1.3 ws invlfn ? invlfn : vallfn, p,
613 1.3 ws invlfn ? invcl : valcl, -1, 0,
614 1.3 ws fullpath(dir), 2);
615 1.3 ws vallfn = NULL;
616 1.3 ws invlfn = NULL;
617 1.3 ws }
618 1.3 ws continue;
619 1.3 ws }
620 1.3 ws
621 1.3 ws if (p[8] != ' ')
622 1.1 ws dirent.name[k++] = '.';
623 1.1 ws for (j = 0; j < 3; j++)
624 1.1 ws dirent.name[k++] = p[j+8];
625 1.1 ws dirent.name[k] = '\0';
626 1.1 ws for (k--; k >= 0 && dirent.name[k] == ' '; k--)
627 1.1 ws dirent.name[k] = '\0';
628 1.1 ws
629 1.1 ws if (vallfn && shortSum != calcShortSum(p)) {
630 1.1 ws if (!invlfn) {
631 1.1 ws invlfn = vallfn;
632 1.1 ws invcl = valcl;
633 1.1 ws }
634 1.1 ws vallfn = NULL;
635 1.1 ws }
636 1.1 ws dirent.head = p[26] | (p[27] << 8);
637 1.1 ws dirent.size = p[28] | (p[29] << 8) | (p[30] << 16) | (p[31] << 24);
638 1.1 ws if (vallfn) {
639 1.1 ws strcpy(dirent.lname, longName);
640 1.1 ws longName[0] = '\0';
641 1.1 ws shortSum = -1;
642 1.1 ws }
643 1.3 ws
644 1.1 ws if (invlfn) {
645 1.1 ws mod |= k = removede(f, boot, fat,
646 1.1 ws invlfn, vallfn ? vallfn : p,
647 1.1 ws invcl, vallfn ? valcl : cl, cl,
648 1.2 ws fullpath(&dirent), 0);
649 1.1 ws if (mod & FSFATAL)
650 1.1 ws return FSFATAL;
651 1.1 ws if (vallfn
652 1.1 ws ? (valcl == cl && vallfn != buffer)
653 1.1 ws : p != buffer)
654 1.1 ws if (k & FSDIRMOD)
655 1.1 ws mod |= THISMOD;
656 1.1 ws }
657 1.1 ws vallfn = NULL; /* not used any longer */
658 1.1 ws invlfn = NULL;
659 1.9 ws dirent.parent = dir;
660 1.9 ws dirent.next = dir->child;
661 1.1 ws
662 1.1 ws if (dirent.size == 0 && !(dirent.flags & ATTR_DIRECTORY)) {
663 1.1 ws if (dirent.head != 0) {
664 1.1 ws pwarn("%s has clusters, but size 0\n",
665 1.2 ws fullpath(&dirent));
666 1.1 ws if (ask(1, "Drop allocated clusters")) {
667 1.1 ws p[26] = p[27] = 0;
668 1.1 ws clearchain(boot, fat, dirent.head);
669 1.1 ws dirent.head = 0;
670 1.1 ws mod |= THISMOD|FSDIRMOD|FSFATMOD;
671 1.1 ws } else
672 1.1 ws mod |= FSERROR;
673 1.1 ws }
674 1.1 ws } else if (dirent.head == 0
675 1.1 ws && !strcmp(dirent.name, "..")
676 1.3 ws && dir->parent /* XXX */
677 1.2 ws && !dir->parent->parent) {
678 1.1 ws /*
679 1.1 ws * Do nothing, the parent is the root
680 1.1 ws */
681 1.1 ws } else if (dirent.head < CLUST_FIRST
682 1.1 ws || dirent.head >= boot->NumClusters
683 1.1 ws || fat[dirent.head].next == CLUST_FREE
684 1.1 ws || (fat[dirent.head].next >= CLUST_RSRVD
685 1.1 ws && fat[dirent.head].next < CLUST_EOFS)
686 1.1 ws || fat[dirent.head].head != dirent.head) {
687 1.1 ws if (dirent.head == 0)
688 1.1 ws pwarn("%s has no clusters\n",
689 1.2 ws fullpath(&dirent));
690 1.1 ws else if (dirent.head < CLUST_FIRST
691 1.1 ws || dirent.head >= boot->NumClusters)
692 1.1 ws pwarn("%s starts with cluster out of range(%d)\n",
693 1.2 ws fullpath(&dirent),
694 1.1 ws dirent.head);
695 1.1 ws else if (fat[dirent.head].next == CLUST_FREE)
696 1.1 ws pwarn("%s starts with free cluster\n",
697 1.2 ws fullpath(&dirent));
698 1.1 ws else if (fat[dirent.head].next >= CLUST_RSRVD)
699 1.1 ws pwarn("%s starts with %s cluster\n",
700 1.2 ws fullpath(&dirent),
701 1.1 ws rsrvdcltype(fat[dirent.head].next));
702 1.1 ws else
703 1.1 ws pwarn("%s doesn't start a cluster chain\n",
704 1.2 ws fullpath(&dirent));
705 1.1 ws if (dirent.flags & ATTR_DIRECTORY) {
706 1.1 ws if (ask(0, "Remove")) {
707 1.1 ws *p = SLOT_DELETED;
708 1.1 ws mod |= THISMOD|FSDIRMOD;
709 1.1 ws } else
710 1.1 ws mod |= FSERROR;
711 1.1 ws continue;
712 1.1 ws } else {
713 1.1 ws if (ask(1, "Truncate")) {
714 1.1 ws p[28] = p[29] = p[30] = p[31] = 0;
715 1.1 ws dirent.size = 0;
716 1.1 ws mod |= THISMOD|FSDIRMOD;
717 1.1 ws } else
718 1.1 ws mod |= FSERROR;
719 1.1 ws }
720 1.1 ws }
721 1.1 ws
722 1.3 ws if (dirent.head >= CLUST_FIRST && dirent.head < boot->NumClusters)
723 1.3 ws fat[dirent.head].flags |= FAT_USED;
724 1.1 ws
725 1.3 ws if (dirent.flags & ATTR_DIRECTORY) {
726 1.1 ws /*
727 1.1 ws * gather more info for directories
728 1.1 ws */
729 1.1 ws struct dirTodoNode * n;
730 1.1 ws
731 1.3 ws if (dirent.size) {
732 1.1 ws pwarn("Directory %s has size != 0\n",
733 1.3 ws fullpath(&dirent));
734 1.1 ws if (ask(1, "Correct")) {
735 1.1 ws p[28] = p[29] = p[30] = p[31] = 0;
736 1.3 ws dirent.size = 0;
737 1.1 ws mod |= THISMOD|FSDIRMOD;
738 1.1 ws } else
739 1.1 ws mod |= FSERROR;
740 1.1 ws }
741 1.1 ws /*
742 1.1 ws * handle `.' and `..' specially
743 1.1 ws */
744 1.3 ws if (strcmp(dirent.name, ".") == 0) {
745 1.3 ws if (dirent.head != dir->head) {
746 1.1 ws pwarn("`.' entry in %s has incorrect start cluster\n",
747 1.2 ws fullpath(dir));
748 1.1 ws if (ask(1, "Correct")) {
749 1.3 ws dirent.head = dir->head;
750 1.3 ws p[26] = (u_char)dirent.head;
751 1.3 ws p[27] = (u_char)(dirent.head >> 8);
752 1.1 ws mod |= THISMOD|FSDIRMOD;
753 1.1 ws } else
754 1.1 ws mod |= FSERROR;
755 1.1 ws }
756 1.1 ws continue;
757 1.1 ws }
758 1.3 ws if (strcmp(dirent.name, "..") == 0) {
759 1.3 ws if (dir->parent /* XXX */
760 1.3 ws && dirent.head != dir->parent->head) {
761 1.1 ws pwarn("`..' entry in %s has incorrect start cluster\n",
762 1.2 ws fullpath(dir));
763 1.1 ws if (ask(1, "Correct")) {
764 1.3 ws dirent.head = dir->parent->head;
765 1.3 ws p[26] = (u_char)dirent.head;
766 1.3 ws p[27] = (u_char)(dirent.head >> 8);
767 1.1 ws mod |= THISMOD|FSDIRMOD;
768 1.1 ws } else
769 1.1 ws mod |= FSERROR;
770 1.1 ws }
771 1.1 ws continue;
772 1.1 ws }
773 1.1 ws
774 1.3 ws /* create directory tree node */
775 1.3 ws if (!(d = newDosDirEntry())) {
776 1.3 ws perror("No space for directory");
777 1.3 ws return FSFATAL;
778 1.3 ws }
779 1.3 ws memcpy(d, &dirent, sizeof(struct dosDirEntry));
780 1.3 ws /* link it into the tree */
781 1.3 ws dir->child = d;
782 1.3 ws
783 1.1 ws /* Enter this directory into the todo list */
784 1.3 ws if (!(n = newDirTodo())) {
785 1.2 ws perror("No space for todo list");
786 1.2 ws return FSFATAL;
787 1.2 ws }
788 1.1 ws n->next = pendingDirectories;
789 1.1 ws n->dir = d;
790 1.1 ws pendingDirectories = n;
791 1.1 ws } else {
792 1.3 ws mod |= k = checksize(boot, fat, p, &dirent);
793 1.1 ws if (k & FSDIRMOD)
794 1.1 ws mod |= THISMOD;
795 1.1 ws }
796 1.9 ws boot->NumFiles++;
797 1.1 ws }
798 1.1 ws if (mod & THISMOD) {
799 1.1 ws last *= 32;
800 1.1 ws if (lseek(f, off, SEEK_SET) != off
801 1.1 ws || write(f, buffer, last) != last) {
802 1.1 ws perror("Unable to write directory");
803 1.1 ws return FSFATAL;
804 1.1 ws }
805 1.1 ws mod &= ~THISMOD;
806 1.1 ws }
807 1.1 ws } while ((cl = fat[cl].next) >= CLUST_FIRST && cl < boot->NumClusters);
808 1.1 ws if (invlfn || vallfn)
809 1.1 ws mod |= removede(f, boot, fat,
810 1.1 ws invlfn ? invlfn : vallfn, p,
811 1.1 ws invlfn ? invcl : valcl, -1, 0,
812 1.2 ws fullpath(dir), 1);
813 1.1 ws return mod & ~THISMOD;
814 1.1 ws }
815 1.1 ws
816 1.3 ws int
817 1.3 ws handleDirTree(dosfs, boot, fat)
818 1.3 ws int dosfs;
819 1.3 ws struct bootblock *boot;
820 1.3 ws struct fatEntry *fat;
821 1.3 ws {
822 1.3 ws int mod;
823 1.3 ws
824 1.3 ws mod = readDosDirSection(dosfs, boot, fat, rootDir);
825 1.3 ws if (mod & FSFATAL)
826 1.3 ws return FSFATAL;
827 1.3 ws
828 1.3 ws if (mod & FSFATMOD) {
829 1.3 ws mod &= ~FSFATMOD;
830 1.3 ws mod |= writefat(dosfs, boot, fat); /* delay writing fats? XXX */
831 1.3 ws }
832 1.3 ws
833 1.3 ws if (mod & FSFATAL)
834 1.3 ws return FSFATAL;
835 1.3 ws
836 1.3 ws /*
837 1.3 ws * process the directory todo list
838 1.3 ws */
839 1.3 ws while (pendingDirectories) {
840 1.3 ws struct dosDirEntry *dir = pendingDirectories->dir;
841 1.3 ws struct dirTodoNode *n = pendingDirectories->next;
842 1.3 ws
843 1.3 ws /*
844 1.3 ws * remove TODO entry now, the list might change during
845 1.3 ws * directory reads
846 1.3 ws */
847 1.3 ws freeDirTodo(pendingDirectories);
848 1.3 ws pendingDirectories = n;
849 1.3 ws
850 1.3 ws /*
851 1.3 ws * handle subdirectory
852 1.3 ws */
853 1.3 ws mod |= readDosDirSection(dosfs, boot, fat, dir);
854 1.3 ws if (mod & FSFATAL)
855 1.3 ws return FSFATAL;
856 1.3 ws if (mod & FSFATMOD) {
857 1.3 ws mod &= ~FSFATMOD;
858 1.3 ws mod |= writefat(dosfs, boot, fat); /* delay writing fats? XXX */
859 1.3 ws }
860 1.3 ws if (mod & FSFATAL)
861 1.3 ws return FSFATAL;
862 1.3 ws }
863 1.3 ws return mod;
864 1.3 ws }
865 1.3 ws
866 1.1 ws /*
867 1.1 ws * Try to reconnect a FAT chain into dir
868 1.1 ws */
869 1.1 ws static u_char *lfbuf;
870 1.1 ws static cl_t lfcl;
871 1.1 ws static off_t lfoff;
872 1.1 ws
873 1.1 ws int
874 1.3 ws reconnect(dosfs, boot, fat, head)
875 1.1 ws int dosfs;
876 1.1 ws struct bootblock *boot;
877 1.1 ws struct fatEntry *fat;
878 1.1 ws cl_t head;
879 1.1 ws {
880 1.1 ws struct dosDirEntry d;
881 1.1 ws u_char *p;
882 1.1 ws
883 1.3 ws if (!lostDir) {
884 1.3 ws for (lostDir = rootDir->child; lostDir; lostDir = lostDir->next) {
885 1.3 ws if (!strcmp(lostDir->name, LOSTDIR))
886 1.3 ws break;
887 1.3 ws }
888 1.3 ws if (!lostDir) { /* Create LOSTDIR? XXX */
889 1.3 ws pwarn("No %s directory\n", LOSTDIR);
890 1.3 ws return FSERROR;
891 1.3 ws }
892 1.3 ws }
893 1.1 ws if (!lfbuf) {
894 1.1 ws lfbuf = malloc(boot->ClusterSize);
895 1.1 ws if (!lfbuf) {
896 1.1 ws perror("No space for buffer");
897 1.1 ws return FSFATAL;
898 1.1 ws }
899 1.1 ws p = NULL;
900 1.1 ws } else
901 1.1 ws p = lfbuf;
902 1.1 ws while (1) {
903 1.1 ws if (p)
904 1.9 ws for (; p < lfbuf + boot->ClusterSize; p += 32)
905 1.1 ws if (*p == SLOT_EMPTY
906 1.1 ws || *p == SLOT_DELETED)
907 1.1 ws break;
908 1.1 ws if (p && p < lfbuf + boot->ClusterSize)
909 1.1 ws break;
910 1.3 ws lfcl = p ? fat[lfcl].next : lostDir->head;
911 1.1 ws if (lfcl < CLUST_FIRST || lfcl >= boot->NumClusters) {
912 1.3 ws /* Extend LOSTDIR? XXX */
913 1.1 ws pwarn("No space in %s\n", LOSTDIR);
914 1.1 ws return FSERROR;
915 1.1 ws }
916 1.1 ws lfoff = lfcl * boot->ClusterSize
917 1.1 ws + boot->ClusterOffset * boot->BytesPerSec;
918 1.1 ws if (lseek(dosfs, lfoff, SEEK_SET) != lfoff
919 1.9 ws || read(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) {
920 1.1 ws perror("could not read LOST.DIR");
921 1.1 ws return FSFATAL;
922 1.1 ws }
923 1.1 ws p = lfbuf;
924 1.1 ws }
925 1.1 ws
926 1.1 ws if (!ask(0, "Reconnect"))
927 1.1 ws return FSERROR;
928 1.1 ws
929 1.1 ws boot->NumFiles++;
930 1.1 ws /* Ensure uniqueness of entry here! XXX */
931 1.1 ws memset(&d, 0, sizeof d);
932 1.1 ws sprintf(d.name, "%d", head);
933 1.1 ws d.flags = 0;
934 1.1 ws d.head = head;
935 1.1 ws d.size = fat[head].length * boot->ClusterSize;
936 1.1 ws
937 1.1 ws memset(p, 0, 32);
938 1.1 ws memset(p, ' ', 11);
939 1.3 ws memcpy(p, d.name, strlen(d.name));
940 1.3 ws p[26] = (u_char)d.head;
941 1.3 ws p[27] = (u_char)(d.head >> 8);
942 1.3 ws p[28] = (u_char)d.size;
943 1.3 ws p[29] = (u_char)(d.size >> 8);
944 1.3 ws p[30] = (u_char)(d.size >> 16);
945 1.3 ws p[31] = (u_char)(d.size >> 24);
946 1.3 ws fat[head].flags |= FAT_USED;
947 1.1 ws if (lseek(dosfs, lfoff, SEEK_SET) != lfoff
948 1.9 ws || write(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) {
949 1.1 ws perror("could not write LOST.DIR");
950 1.1 ws return FSFATAL;
951 1.1 ws }
952 1.1 ws return FSDIRMOD;
953 1.1 ws }
954 1.1 ws
955 1.1 ws void
956 1.1 ws finishlf()
957 1.1 ws {
958 1.1 ws if (lfbuf)
959 1.1 ws free(lfbuf);
960 1.1 ws lfbuf = NULL;
961 1.1 ws }
962