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