xref: /freebsd/sys/fs/msdosfs/msdosfs_denode.c (revision 27a0bc89a433a500c7c8befb01ac54596858cdad)
127a0bc89SDoug Rabson /*	$Id$ */
227a0bc89SDoug Rabson /*	$NetBSD: msdosfs_denode.c,v 1.9 1994/08/21 18:44:00 ws Exp $	*/
327a0bc89SDoug Rabson 
427a0bc89SDoug Rabson /*-
527a0bc89SDoug Rabson  * Copyright (C) 1994 Wolfgang Solfrank.
627a0bc89SDoug Rabson  * Copyright (C) 1994 TooLs GmbH.
727a0bc89SDoug Rabson  * All rights reserved.
827a0bc89SDoug Rabson  * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
927a0bc89SDoug Rabson  *
1027a0bc89SDoug Rabson  * Redistribution and use in source and binary forms, with or without
1127a0bc89SDoug Rabson  * modification, are permitted provided that the following conditions
1227a0bc89SDoug Rabson  * are met:
1327a0bc89SDoug Rabson  * 1. Redistributions of source code must retain the above copyright
1427a0bc89SDoug Rabson  *    notice, this list of conditions and the following disclaimer.
1527a0bc89SDoug Rabson  * 2. Redistributions in binary form must reproduce the above copyright
1627a0bc89SDoug Rabson  *    notice, this list of conditions and the following disclaimer in the
1727a0bc89SDoug Rabson  *    documentation and/or other materials provided with the distribution.
1827a0bc89SDoug Rabson  * 3. All advertising materials mentioning features or use of this software
1927a0bc89SDoug Rabson  *    must display the following acknowledgement:
2027a0bc89SDoug Rabson  *	This product includes software developed by TooLs GmbH.
2127a0bc89SDoug Rabson  * 4. The name of TooLs GmbH may not be used to endorse or promote products
2227a0bc89SDoug Rabson  *    derived from this software without specific prior written permission.
2327a0bc89SDoug Rabson  *
2427a0bc89SDoug Rabson  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
2527a0bc89SDoug Rabson  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2627a0bc89SDoug Rabson  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2727a0bc89SDoug Rabson  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2827a0bc89SDoug Rabson  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2927a0bc89SDoug Rabson  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
3027a0bc89SDoug Rabson  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
3127a0bc89SDoug Rabson  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
3227a0bc89SDoug Rabson  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
3327a0bc89SDoug Rabson  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3427a0bc89SDoug Rabson  */
3527a0bc89SDoug Rabson /*
3627a0bc89SDoug Rabson  * Written by Paul Popelka (paulp@uts.amdahl.com)
3727a0bc89SDoug Rabson  *
3827a0bc89SDoug Rabson  * You can do anything you want with this software, just don't say you wrote
3927a0bc89SDoug Rabson  * it, and don't remove this notice.
4027a0bc89SDoug Rabson  *
4127a0bc89SDoug Rabson  * This software is provided "as is".
4227a0bc89SDoug Rabson  *
4327a0bc89SDoug Rabson  * The author supplies this software to be publicly redistributed on the
4427a0bc89SDoug Rabson  * understanding that the author is not responsible for the correct
4527a0bc89SDoug Rabson  * functioning of this software in any circumstances and is not liable for
4627a0bc89SDoug Rabson  * any damages caused by this software.
4727a0bc89SDoug Rabson  *
4827a0bc89SDoug Rabson  * October 1992
4927a0bc89SDoug Rabson  */
5027a0bc89SDoug Rabson 
5127a0bc89SDoug Rabson #include <sys/param.h>
5227a0bc89SDoug Rabson #include <sys/systm.h>
5327a0bc89SDoug Rabson #include <sys/mount.h>
5427a0bc89SDoug Rabson #include <sys/malloc.h>
5527a0bc89SDoug Rabson #include <sys/proc.h>
5627a0bc89SDoug Rabson #include <sys/buf.h>
5727a0bc89SDoug Rabson #include <sys/vnode.h>
5827a0bc89SDoug Rabson #include <sys/kernel.h>		/* defines "time" */
5927a0bc89SDoug Rabson 
6027a0bc89SDoug Rabson #include <msdosfs/bpb.h>
6127a0bc89SDoug Rabson #include <msdosfs/msdosfsmount.h>
6227a0bc89SDoug Rabson #include <msdosfs/direntry.h>
6327a0bc89SDoug Rabson #include <msdosfs/denode.h>
6427a0bc89SDoug Rabson #include <msdosfs/fat.h>
6527a0bc89SDoug Rabson 
6627a0bc89SDoug Rabson struct denode **dehashtbl;
6727a0bc89SDoug Rabson u_long dehash;			/* size of hash table - 1 */
6827a0bc89SDoug Rabson #define	DEHASH(dev, deno)	(((dev) + (deno)) & dehash)
6927a0bc89SDoug Rabson 
7027a0bc89SDoug Rabson int msdosfs_init()
7127a0bc89SDoug Rabson {
7227a0bc89SDoug Rabson 	dehashtbl = hashinit(desiredvnodes/2, M_MSDOSFSMNT, &dehash);
7327a0bc89SDoug Rabson 	return 0;
7427a0bc89SDoug Rabson }
7527a0bc89SDoug Rabson 
7627a0bc89SDoug Rabson static struct denode *
7727a0bc89SDoug Rabson msdosfs_hashget(dev, dirclust, diroff)
7827a0bc89SDoug Rabson 	dev_t dev;
7927a0bc89SDoug Rabson 	u_long dirclust;
8027a0bc89SDoug Rabson 	u_long diroff;
8127a0bc89SDoug Rabson {
8227a0bc89SDoug Rabson 	struct denode *dep;
8327a0bc89SDoug Rabson 
8427a0bc89SDoug Rabson 	for (;;)
8527a0bc89SDoug Rabson 		for (dep = dehashtbl[DEHASH(dev, dirclust + diroff)];;
8627a0bc89SDoug Rabson 		     dep = dep->de_next) {
8727a0bc89SDoug Rabson 			if (dep == NULL)
8827a0bc89SDoug Rabson 				return NULL;
8927a0bc89SDoug Rabson 			if (dirclust != dep->de_dirclust
9027a0bc89SDoug Rabson 			    || diroff != dep->de_diroffset
9127a0bc89SDoug Rabson 			    || dev != dep->de_dev
9227a0bc89SDoug Rabson 			    || dep->de_refcnt == 0)
9327a0bc89SDoug Rabson 				continue;
9427a0bc89SDoug Rabson 			if (dep->de_flag & DE_LOCKED) {
9527a0bc89SDoug Rabson 				dep->de_flag |= DE_WANTED;
9627a0bc89SDoug Rabson 				sleep((caddr_t)dep, PINOD);
9727a0bc89SDoug Rabson 				break;
9827a0bc89SDoug Rabson 			}
9927a0bc89SDoug Rabson 			if (!vget(DETOV(dep), 1))
10027a0bc89SDoug Rabson 				return dep;
10127a0bc89SDoug Rabson 			break;
10227a0bc89SDoug Rabson 		}
10327a0bc89SDoug Rabson 	/* NOTREACHED */
10427a0bc89SDoug Rabson }
10527a0bc89SDoug Rabson 
10627a0bc89SDoug Rabson static void
10727a0bc89SDoug Rabson msdosfs_hashins(dep)
10827a0bc89SDoug Rabson 	struct denode *dep;
10927a0bc89SDoug Rabson {
11027a0bc89SDoug Rabson 	struct denode **depp, *deq;
11127a0bc89SDoug Rabson 
11227a0bc89SDoug Rabson 	depp = &dehashtbl[DEHASH(dep->de_dev, dep->de_dirclust + dep->de_diroffset)];
11327a0bc89SDoug Rabson 	if (deq = *depp)
11427a0bc89SDoug Rabson 		deq->de_prev = &dep->de_next;
11527a0bc89SDoug Rabson 	dep->de_next = deq;
11627a0bc89SDoug Rabson 	dep->de_prev = depp;
11727a0bc89SDoug Rabson 	*depp = dep;
11827a0bc89SDoug Rabson 	if (dep->de_flag & DE_LOCKED)
11927a0bc89SDoug Rabson 		panic("msdosfs_hashins: already locked");
12027a0bc89SDoug Rabson 	if (curproc)
12127a0bc89SDoug Rabson 		dep->de_lockholder = curproc->p_pid;
12227a0bc89SDoug Rabson 	else
12327a0bc89SDoug Rabson 		dep->de_lockholder = -1;
12427a0bc89SDoug Rabson 	dep->de_flag |= DE_LOCKED;
12527a0bc89SDoug Rabson }
12627a0bc89SDoug Rabson 
12727a0bc89SDoug Rabson static void
12827a0bc89SDoug Rabson msdosfs_hashrem(dep)
12927a0bc89SDoug Rabson 	struct denode *dep;
13027a0bc89SDoug Rabson {
13127a0bc89SDoug Rabson 	struct denode *deq;
13227a0bc89SDoug Rabson 	if (deq = dep->de_next)
13327a0bc89SDoug Rabson 		deq->de_prev = dep->de_prev;
13427a0bc89SDoug Rabson 	*dep->de_prev = deq;
13527a0bc89SDoug Rabson #ifdef DIAGNOSTIC
13627a0bc89SDoug Rabson 	dep->de_next = NULL;
13727a0bc89SDoug Rabson 	dep->de_prev = NULL;
13827a0bc89SDoug Rabson #endif
13927a0bc89SDoug Rabson }
14027a0bc89SDoug Rabson 
14127a0bc89SDoug Rabson /*
14227a0bc89SDoug Rabson  * If deget() succeeds it returns with the gotten denode locked().
14327a0bc89SDoug Rabson  *
14427a0bc89SDoug Rabson  * pmp	     - address of msdosfsmount structure of the filesystem containing
14527a0bc89SDoug Rabson  *	       the denode of interest.  The pm_dev field and the address of
14627a0bc89SDoug Rabson  *	       the msdosfsmount structure are used.
14727a0bc89SDoug Rabson  * dirclust  - which cluster bp contains, if dirclust is 0 (root directory)
14827a0bc89SDoug Rabson  *	       diroffset is relative to the beginning of the root directory,
14927a0bc89SDoug Rabson  *	       otherwise it is cluster relative.
15027a0bc89SDoug Rabson  * diroffset - offset past begin of cluster of denode we want
15127a0bc89SDoug Rabson  * direntptr - address of the direntry structure of interest. If direntptr is
15227a0bc89SDoug Rabson  *	       NULL, the block is read if necessary.
15327a0bc89SDoug Rabson  * depp	     - returns the address of the gotten denode.
15427a0bc89SDoug Rabson  */
15527a0bc89SDoug Rabson int
15627a0bc89SDoug Rabson deget(pmp, dirclust, diroffset, direntptr, depp)
15727a0bc89SDoug Rabson 	struct msdosfsmount *pmp;	/* so we know the maj/min number */
15827a0bc89SDoug Rabson 	u_long dirclust;		/* cluster this dir entry came from */
15927a0bc89SDoug Rabson 	u_long diroffset;		/* index of entry within the cluster */
16027a0bc89SDoug Rabson 	struct direntry *direntptr;
16127a0bc89SDoug Rabson 	struct denode **depp;		/* returns the addr of the gotten denode */
16227a0bc89SDoug Rabson {
16327a0bc89SDoug Rabson 	int error;
16427a0bc89SDoug Rabson 	dev_t dev = pmp->pm_dev;
16527a0bc89SDoug Rabson 	struct mount *mntp = pmp->pm_mountp;
16627a0bc89SDoug Rabson 	extern int (**msdosfs_vnodeop_p)();
16727a0bc89SDoug Rabson 	struct denode *ldep;
16827a0bc89SDoug Rabson 	struct vnode *nvp;
16927a0bc89SDoug Rabson 	struct buf *bp;
17027a0bc89SDoug Rabson 
17127a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
17227a0bc89SDoug Rabson 	printf("deget(pmp %08x, dirclust %d, diroffset %x, direntptr %x, depp %08x)\n",
17327a0bc89SDoug Rabson 	       pmp, dirclust, diroffset, direntptr, depp);
17427a0bc89SDoug Rabson #endif
17527a0bc89SDoug Rabson 
17627a0bc89SDoug Rabson 	/*
17727a0bc89SDoug Rabson 	 * If dir entry is given and refers to a directory, convert to
17827a0bc89SDoug Rabson 	 * canonical form
17927a0bc89SDoug Rabson 	 */
18027a0bc89SDoug Rabson 	if (direntptr && (direntptr->deAttributes & ATTR_DIRECTORY)) {
18127a0bc89SDoug Rabson 		dirclust = getushort(direntptr->deStartCluster);
18227a0bc89SDoug Rabson 		if (dirclust == MSDOSFSROOT)
18327a0bc89SDoug Rabson 			diroffset = MSDOSFSROOT_OFS;
18427a0bc89SDoug Rabson 		else
18527a0bc89SDoug Rabson 			diroffset = 0;
18627a0bc89SDoug Rabson 	}
18727a0bc89SDoug Rabson 
18827a0bc89SDoug Rabson 	/*
18927a0bc89SDoug Rabson 	 * See if the denode is in the denode cache. Use the location of
19027a0bc89SDoug Rabson 	 * the directory entry to compute the hash value. For subdir use
19127a0bc89SDoug Rabson 	 * address of "." entry. for root dir use cluster MSDOSFSROOT,
19227a0bc89SDoug Rabson 	 * offset MSDOSFSROOT_OFS
19327a0bc89SDoug Rabson 	 *
19427a0bc89SDoug Rabson 	 * NOTE: The check for de_refcnt > 0 below insures the denode being
19527a0bc89SDoug Rabson 	 * examined does not represent an unlinked but still open file.
19627a0bc89SDoug Rabson 	 * These files are not to be accessible even when the directory
19727a0bc89SDoug Rabson 	 * entry that represented the file happens to be reused while the
19827a0bc89SDoug Rabson 	 * deleted file is still open.
19927a0bc89SDoug Rabson 	 */
20027a0bc89SDoug Rabson 	if (ldep = msdosfs_hashget(dev, dirclust, diroffset)) {
20127a0bc89SDoug Rabson 		*depp = ldep;
20227a0bc89SDoug Rabson 		return 0;
20327a0bc89SDoug Rabson 	}
20427a0bc89SDoug Rabson 
20527a0bc89SDoug Rabson 
20627a0bc89SDoug Rabson 	/*
20727a0bc89SDoug Rabson 	 * Directory entry was not in cache, have to create a vnode and
20827a0bc89SDoug Rabson 	 * copy it from the passed disk buffer.
20927a0bc89SDoug Rabson 	 */
21027a0bc89SDoug Rabson 	/* getnewvnode() does a VREF() on the vnode */
21127a0bc89SDoug Rabson 	if (error = getnewvnode(VT_MSDOSFS, mntp, msdosfs_vnodeop_p, &nvp)) {
21227a0bc89SDoug Rabson 		*depp = 0;
21327a0bc89SDoug Rabson 		return error;
21427a0bc89SDoug Rabson 	}
21527a0bc89SDoug Rabson 	MALLOC(ldep, struct denode *, sizeof(struct denode), M_MSDOSFSNODE, M_WAITOK);
21627a0bc89SDoug Rabson 	bzero((caddr_t)ldep, sizeof *ldep);
21727a0bc89SDoug Rabson 	nvp->v_data = ldep;
21827a0bc89SDoug Rabson 	ldep->de_vnode = nvp;
21927a0bc89SDoug Rabson 	ldep->de_flag = 0;
22027a0bc89SDoug Rabson 	ldep->de_devvp = 0;
22127a0bc89SDoug Rabson 	ldep->de_lockf = 0;
22227a0bc89SDoug Rabson 	ldep->de_dev = dev;
22327a0bc89SDoug Rabson 	ldep->de_dirclust = dirclust;
22427a0bc89SDoug Rabson 	ldep->de_diroffset = diroffset;
22527a0bc89SDoug Rabson 	fc_purge(ldep, 0);	/* init the fat cache for this denode */
22627a0bc89SDoug Rabson 
22727a0bc89SDoug Rabson 	/*
22827a0bc89SDoug Rabson 	 * Insert the denode into the hash queue and lock the denode so it
22927a0bc89SDoug Rabson 	 * can't be accessed until we've read it in and have done what we
23027a0bc89SDoug Rabson 	 * need to it.
23127a0bc89SDoug Rabson 	 */
23227a0bc89SDoug Rabson 	msdosfs_hashins(ldep);
23327a0bc89SDoug Rabson 
23427a0bc89SDoug Rabson 	/*
23527a0bc89SDoug Rabson 	 * Copy the directory entry into the denode area of the vnode.
23627a0bc89SDoug Rabson 	 */
23727a0bc89SDoug Rabson 	if (dirclust == MSDOSFSROOT && diroffset == MSDOSFSROOT_OFS) {
23827a0bc89SDoug Rabson 		/*
23927a0bc89SDoug Rabson 		 * Directory entry for the root directory. There isn't one,
24027a0bc89SDoug Rabson 		 * so we manufacture one. We should probably rummage
24127a0bc89SDoug Rabson 		 * through the root directory and find a label entry (if it
24227a0bc89SDoug Rabson 		 * exists), and then use the time and date from that entry
24327a0bc89SDoug Rabson 		 * as the time and date for the root denode.
24427a0bc89SDoug Rabson 		 */
24527a0bc89SDoug Rabson 		ldep->de_Attributes = ATTR_DIRECTORY;
24627a0bc89SDoug Rabson 		ldep->de_StartCluster = MSDOSFSROOT;
24727a0bc89SDoug Rabson 		ldep->de_FileSize = pmp->pm_rootdirsize * pmp->pm_BytesPerSec;
24827a0bc89SDoug Rabson 		/*
24927a0bc89SDoug Rabson 		 * fill in time and date so that dos2unixtime() doesn't
25027a0bc89SDoug Rabson 		 * spit up when called from msdosfs_getattr() with root
25127a0bc89SDoug Rabson 		 * denode
25227a0bc89SDoug Rabson 		 */
25327a0bc89SDoug Rabson 		ldep->de_Time = 0x0000;	/* 00:00:00	 */
25427a0bc89SDoug Rabson 		ldep->de_Date = (0 << DD_YEAR_SHIFT) | (1 << DD_MONTH_SHIFT)
25527a0bc89SDoug Rabson 		    | (1 << DD_DAY_SHIFT);
25627a0bc89SDoug Rabson 		/* Jan 1, 1980	 */
25727a0bc89SDoug Rabson 		/* leave the other fields as garbage */
25827a0bc89SDoug Rabson 	} else {
25927a0bc89SDoug Rabson 		bp = NULL;
26027a0bc89SDoug Rabson 		if (!direntptr) {
26127a0bc89SDoug Rabson 			error = readep(pmp, dirclust, diroffset, &bp,
26227a0bc89SDoug Rabson 				       &direntptr);
26327a0bc89SDoug Rabson 			if (error)
26427a0bc89SDoug Rabson 				return error;
26527a0bc89SDoug Rabson 		}
26627a0bc89SDoug Rabson 		DE_INTERNALIZE(ldep, direntptr);
26727a0bc89SDoug Rabson 		if (bp)
26827a0bc89SDoug Rabson 			brelse(bp);
26927a0bc89SDoug Rabson 	}
27027a0bc89SDoug Rabson 
27127a0bc89SDoug Rabson 	/*
27227a0bc89SDoug Rabson 	 * Fill in a few fields of the vnode and finish filling in the
27327a0bc89SDoug Rabson 	 * denode.  Then return the address of the found denode.
27427a0bc89SDoug Rabson 	 */
27527a0bc89SDoug Rabson 	ldep->de_pmp = pmp;
27627a0bc89SDoug Rabson 	ldep->de_devvp = pmp->pm_devvp;
27727a0bc89SDoug Rabson 	ldep->de_refcnt = 1;
27827a0bc89SDoug Rabson 	if (ldep->de_Attributes & ATTR_DIRECTORY) {
27927a0bc89SDoug Rabson 		/*
28027a0bc89SDoug Rabson 		 * Since DOS directory entries that describe directories
28127a0bc89SDoug Rabson 		 * have 0 in the filesize field, we take this opportunity
28227a0bc89SDoug Rabson 		 * to find out the length of the directory and plug it into
28327a0bc89SDoug Rabson 		 * the denode structure.
28427a0bc89SDoug Rabson 		 */
28527a0bc89SDoug Rabson 		u_long size;
28627a0bc89SDoug Rabson 
28727a0bc89SDoug Rabson 		nvp->v_type = VDIR;
28827a0bc89SDoug Rabson 		if (ldep->de_StartCluster == MSDOSFSROOT)
28927a0bc89SDoug Rabson 			nvp->v_flag |= VROOT;
29027a0bc89SDoug Rabson 		else {
29127a0bc89SDoug Rabson 			error = pcbmap(ldep, 0xffff, 0, &size);
29227a0bc89SDoug Rabson 			if (error == E2BIG) {
29327a0bc89SDoug Rabson 				ldep->de_FileSize = size << pmp->pm_cnshift;
29427a0bc89SDoug Rabson 				error = 0;
29527a0bc89SDoug Rabson 			} else
29627a0bc89SDoug Rabson 				printf("deget(): pcbmap returned %d\n", error);
29727a0bc89SDoug Rabson 		}
29827a0bc89SDoug Rabson 	} else
29927a0bc89SDoug Rabson 		nvp->v_type = VREG;
30027a0bc89SDoug Rabson 	VREF(ldep->de_devvp);
30127a0bc89SDoug Rabson 	*depp = ldep;
30227a0bc89SDoug Rabson 	return 0;
30327a0bc89SDoug Rabson }
30427a0bc89SDoug Rabson 
30527a0bc89SDoug Rabson int
30627a0bc89SDoug Rabson deupdat(dep, tp, waitfor)
30727a0bc89SDoug Rabson 	struct denode *dep;
30827a0bc89SDoug Rabson 	struct timespec *tp;
30927a0bc89SDoug Rabson 	int waitfor;
31027a0bc89SDoug Rabson {
31127a0bc89SDoug Rabson 	int error;
31227a0bc89SDoug Rabson 	daddr_t bn;
31327a0bc89SDoug Rabson 	int diro;
31427a0bc89SDoug Rabson 	struct buf *bp;
31527a0bc89SDoug Rabson 	struct direntry *dirp;
31627a0bc89SDoug Rabson 	struct msdosfsmount *pmp = dep->de_pmp;
31727a0bc89SDoug Rabson 	struct timespec ts;
31827a0bc89SDoug Rabson 	struct vnode *vp = DETOV(dep);
31927a0bc89SDoug Rabson 
32027a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
32127a0bc89SDoug Rabson 	printf("deupdat(): dep %08x\n", dep);
32227a0bc89SDoug Rabson #endif
32327a0bc89SDoug Rabson 
32427a0bc89SDoug Rabson 	/*
32527a0bc89SDoug Rabson 	 * If the update bit is off, or this denode is from a readonly
32627a0bc89SDoug Rabson 	 * filesystem, or this denode is for a directory, or the denode
32727a0bc89SDoug Rabson 	 * represents an open but unlinked file then don't do anything. DOS
32827a0bc89SDoug Rabson 	 * directory entries that describe a directory do not ever get
32927a0bc89SDoug Rabson 	 * updated.  This is the way dos treats them.
33027a0bc89SDoug Rabson 	 */
33127a0bc89SDoug Rabson 	if ((dep->de_flag & DE_UPDATE) == 0 ||
33227a0bc89SDoug Rabson 	    vp->v_mount->mnt_flag & MNT_RDONLY ||
33327a0bc89SDoug Rabson 	    dep->de_Attributes & ATTR_DIRECTORY ||
33427a0bc89SDoug Rabson 	    dep->de_refcnt <= 0)
33527a0bc89SDoug Rabson 		return 0;
33627a0bc89SDoug Rabson 
33727a0bc89SDoug Rabson 	/*
33827a0bc89SDoug Rabson 	 * Read in the cluster containing the directory entry we want to
33927a0bc89SDoug Rabson 	 * update.
34027a0bc89SDoug Rabson 	 */
34127a0bc89SDoug Rabson 	if (error = readde(dep, &bp, &dirp))
34227a0bc89SDoug Rabson 		return error;
34327a0bc89SDoug Rabson 
34427a0bc89SDoug Rabson 	/*
34527a0bc89SDoug Rabson 	 * Put the passed in time into the directory entry.
34627a0bc89SDoug Rabson 	 */
34727a0bc89SDoug Rabson 	TIMEVAL_TO_TIMESPEC(&time, &ts);
34827a0bc89SDoug Rabson 	unix2dostime(&ts, &dep->de_Date, &dep->de_Time);
34927a0bc89SDoug Rabson 	dep->de_flag &= ~DE_UPDATE;
35027a0bc89SDoug Rabson 
35127a0bc89SDoug Rabson 	/*
35227a0bc89SDoug Rabson 	 * Copy the directory entry out of the denode into the cluster it
35327a0bc89SDoug Rabson 	 * came from.
35427a0bc89SDoug Rabson 	 */
35527a0bc89SDoug Rabson 	DE_EXTERNALIZE(dirp, dep);
35627a0bc89SDoug Rabson 
35727a0bc89SDoug Rabson 	/*
35827a0bc89SDoug Rabson 	 * Write the cluster back to disk.  If they asked for us to wait
35927a0bc89SDoug Rabson 	 * for the write to complete, then use bwrite() otherwise use
36027a0bc89SDoug Rabson 	 * bdwrite().
36127a0bc89SDoug Rabson 	 */
36227a0bc89SDoug Rabson 	error = 0;		/* note that error is 0 from above, but ... */
36327a0bc89SDoug Rabson 	if (waitfor)
36427a0bc89SDoug Rabson 		error = bwrite(bp);
36527a0bc89SDoug Rabson 	else
36627a0bc89SDoug Rabson 		bdwrite(bp);
36727a0bc89SDoug Rabson 	return error;
36827a0bc89SDoug Rabson }
36927a0bc89SDoug Rabson 
37027a0bc89SDoug Rabson /*
37127a0bc89SDoug Rabson  * Truncate the file described by dep to the length specified by length.
37227a0bc89SDoug Rabson  */
37327a0bc89SDoug Rabson int
37427a0bc89SDoug Rabson detrunc(dep, length, flags, cred, p)
37527a0bc89SDoug Rabson 	struct denode *dep;
37627a0bc89SDoug Rabson 	u_long length;
37727a0bc89SDoug Rabson 	int flags;
37827a0bc89SDoug Rabson 	struct ucred *cred;
37927a0bc89SDoug Rabson 	struct proc *p;
38027a0bc89SDoug Rabson {
38127a0bc89SDoug Rabson 	int error;
38227a0bc89SDoug Rabson 	int allerror;
38327a0bc89SDoug Rabson 	int vflags;
38427a0bc89SDoug Rabson 	u_long eofentry;
38527a0bc89SDoug Rabson 	u_long chaintofree;
38627a0bc89SDoug Rabson 	daddr_t bn;
38727a0bc89SDoug Rabson 	int boff;
38827a0bc89SDoug Rabson 	int isadir = dep->de_Attributes & ATTR_DIRECTORY;
38927a0bc89SDoug Rabson 	struct buf *bp;
39027a0bc89SDoug Rabson 	struct msdosfsmount *pmp = dep->de_pmp;
39127a0bc89SDoug Rabson 
39227a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
39327a0bc89SDoug Rabson 	printf("detrunc(): file %s, length %d, flags %d\n", dep->de_Name, length, flags);
39427a0bc89SDoug Rabson #endif
39527a0bc89SDoug Rabson 
39627a0bc89SDoug Rabson 	/*
39727a0bc89SDoug Rabson 	 * Disallow attempts to truncate the root directory since it is of
39827a0bc89SDoug Rabson 	 * fixed size.  That's just the way dos filesystems are.  We use
39927a0bc89SDoug Rabson 	 * the VROOT bit in the vnode because checking for the directory
40027a0bc89SDoug Rabson 	 * bit and a startcluster of 0 in the denode is not adequate to
40127a0bc89SDoug Rabson 	 * recognize the root directory at this point in a file or
40227a0bc89SDoug Rabson 	 * directory's life.
40327a0bc89SDoug Rabson 	 */
40427a0bc89SDoug Rabson 	if (DETOV(dep)->v_flag & VROOT) {
40527a0bc89SDoug Rabson 		printf("detrunc(): can't truncate root directory, clust %d, offset %d\n",
40627a0bc89SDoug Rabson 		    dep->de_dirclust, dep->de_diroffset);
40727a0bc89SDoug Rabson 		return EINVAL;
40827a0bc89SDoug Rabson 	}
40927a0bc89SDoug Rabson 
41027a0bc89SDoug Rabson 	vnode_pager_setsize(DETOV(dep), length);
41127a0bc89SDoug Rabson 
41227a0bc89SDoug Rabson 	if (dep->de_FileSize < length)
41327a0bc89SDoug Rabson 		return deextend(dep, length, cred);
41427a0bc89SDoug Rabson 
41527a0bc89SDoug Rabson 	/*
41627a0bc89SDoug Rabson 	 * If the desired length is 0 then remember the starting cluster of
41727a0bc89SDoug Rabson 	 * the file and set the StartCluster field in the directory entry
41827a0bc89SDoug Rabson 	 * to 0.  If the desired length is not zero, then get the number of
41927a0bc89SDoug Rabson 	 * the last cluster in the shortened file.  Then get the number of
42027a0bc89SDoug Rabson 	 * the first cluster in the part of the file that is to be freed.
42127a0bc89SDoug Rabson 	 * Then set the next cluster pointer in the last cluster of the
42227a0bc89SDoug Rabson 	 * file to CLUST_EOFE.
42327a0bc89SDoug Rabson 	 */
42427a0bc89SDoug Rabson 	if (length == 0) {
42527a0bc89SDoug Rabson 		chaintofree = dep->de_StartCluster;
42627a0bc89SDoug Rabson 		dep->de_StartCluster = 0;
42727a0bc89SDoug Rabson 		eofentry = ~0;
42827a0bc89SDoug Rabson 	} else {
42927a0bc89SDoug Rabson 		if (error = pcbmap(dep, de_clcount(pmp, length) - 1, 0, &eofentry)) {
43027a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
43127a0bc89SDoug Rabson 			printf("detrunc(): pcbmap fails %d\n", error);
43227a0bc89SDoug Rabson #endif
43327a0bc89SDoug Rabson 			return error;
43427a0bc89SDoug Rabson 		}
43527a0bc89SDoug Rabson 	}
43627a0bc89SDoug Rabson 
43727a0bc89SDoug Rabson 	fc_purge(dep, (length + pmp->pm_crbomask) >> pmp->pm_cnshift);
43827a0bc89SDoug Rabson 
43927a0bc89SDoug Rabson 	/*
44027a0bc89SDoug Rabson 	 * If the new length is not a multiple of the cluster size then we
44127a0bc89SDoug Rabson 	 * must zero the tail end of the new last cluster in case it
44227a0bc89SDoug Rabson 	 * becomes part of the file again because of a seek.
44327a0bc89SDoug Rabson 	 */
44427a0bc89SDoug Rabson 	if ((boff = length & pmp->pm_crbomask) != 0) {
44527a0bc89SDoug Rabson 		/*
44627a0bc89SDoug Rabson 		 * should read from file vnode or filesystem vnode
44727a0bc89SDoug Rabson 		 * depending on if file or dir
44827a0bc89SDoug Rabson 		 */
44927a0bc89SDoug Rabson 		if (isadir) {
45027a0bc89SDoug Rabson 			bn = cntobn(pmp, eofentry);
45127a0bc89SDoug Rabson 			error = bread(pmp->pm_devvp, bn, pmp->pm_bpcluster,
45227a0bc89SDoug Rabson 			    NOCRED, &bp);
45327a0bc89SDoug Rabson 		} else {
45427a0bc89SDoug Rabson 			bn = de_blk(pmp, length);
45527a0bc89SDoug Rabson 			error = bread(DETOV(dep), bn, pmp->pm_bpcluster,
45627a0bc89SDoug Rabson 			    NOCRED, &bp);
45727a0bc89SDoug Rabson 		}
45827a0bc89SDoug Rabson 		if (error) {
45927a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
46027a0bc89SDoug Rabson 			printf("detrunc(): bread fails %d\n", error);
46127a0bc89SDoug Rabson #endif
46227a0bc89SDoug Rabson 			return error;
46327a0bc89SDoug Rabson 		}
46427a0bc89SDoug Rabson 		vnode_pager_uncache(DETOV(dep));	/* what's this for? */
46527a0bc89SDoug Rabson 		/*
46627a0bc89SDoug Rabson 		 * is this the right place for it?
46727a0bc89SDoug Rabson 		 */
46827a0bc89SDoug Rabson 		bzero(bp->b_data + boff, pmp->pm_bpcluster - boff);
46927a0bc89SDoug Rabson 		if (flags & IO_SYNC)
47027a0bc89SDoug Rabson 			bwrite(bp);
47127a0bc89SDoug Rabson 		else
47227a0bc89SDoug Rabson 			bdwrite(bp);
47327a0bc89SDoug Rabson 	}
47427a0bc89SDoug Rabson 
47527a0bc89SDoug Rabson 	/*
47627a0bc89SDoug Rabson 	 * Write out the updated directory entry.  Even if the update fails
47727a0bc89SDoug Rabson 	 * we free the trailing clusters.
47827a0bc89SDoug Rabson 	 */
47927a0bc89SDoug Rabson 	dep->de_FileSize = length;
48027a0bc89SDoug Rabson 	dep->de_flag |= DE_UPDATE;
48127a0bc89SDoug Rabson 	vflags = (length > 0 ? V_SAVE : 0) | V_SAVEMETA;
48227a0bc89SDoug Rabson 	vinvalbuf(DETOV(dep), vflags, cred, p, 0, 0);
48327a0bc89SDoug Rabson 	allerror = deupdat(dep, &time, 1);
48427a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
48527a0bc89SDoug Rabson 	printf("detrunc(): allerror %d, eofentry %d\n",
48627a0bc89SDoug Rabson 	       allerror, eofentry);
48727a0bc89SDoug Rabson #endif
48827a0bc89SDoug Rabson 
48927a0bc89SDoug Rabson 	/*
49027a0bc89SDoug Rabson 	 * If we need to break the cluster chain for the file then do it
49127a0bc89SDoug Rabson 	 * now.
49227a0bc89SDoug Rabson 	 */
49327a0bc89SDoug Rabson 	if (eofentry != ~0) {
49427a0bc89SDoug Rabson 		error = fatentry(FAT_GET_AND_SET, pmp, eofentry,
49527a0bc89SDoug Rabson 				 &chaintofree, CLUST_EOFE);
49627a0bc89SDoug Rabson 		if (error) {
49727a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
49827a0bc89SDoug Rabson 			printf("detrunc(): fatentry errors %d\n", error);
49927a0bc89SDoug Rabson #endif
50027a0bc89SDoug Rabson 			return error;
50127a0bc89SDoug Rabson 		}
50227a0bc89SDoug Rabson 		fc_setcache(dep, FC_LASTFC, (length - 1) >> pmp->pm_cnshift,
50327a0bc89SDoug Rabson 			    eofentry);
50427a0bc89SDoug Rabson 	}
50527a0bc89SDoug Rabson 
50627a0bc89SDoug Rabson 	/*
50727a0bc89SDoug Rabson 	 * Now free the clusters removed from the file because of the
50827a0bc89SDoug Rabson 	 * truncation.
50927a0bc89SDoug Rabson 	 */
51027a0bc89SDoug Rabson 	if (chaintofree != 0 && !MSDOSFSEOF(chaintofree))
51127a0bc89SDoug Rabson 		freeclusterchain(pmp, chaintofree);
51227a0bc89SDoug Rabson 
51327a0bc89SDoug Rabson 	return allerror;
51427a0bc89SDoug Rabson }
51527a0bc89SDoug Rabson 
51627a0bc89SDoug Rabson /*
51727a0bc89SDoug Rabson  * Extend the file described by dep to length specified by length.
51827a0bc89SDoug Rabson  */
51927a0bc89SDoug Rabson int
52027a0bc89SDoug Rabson deextend(dep, length, cred)
52127a0bc89SDoug Rabson 	struct denode *dep;
52227a0bc89SDoug Rabson 	off_t length;
52327a0bc89SDoug Rabson 	struct ucred *cred;
52427a0bc89SDoug Rabson {
52527a0bc89SDoug Rabson 	struct msdosfsmount *pmp = dep->de_pmp;
52627a0bc89SDoug Rabson 	u_long count;
52727a0bc89SDoug Rabson 	int error;
52827a0bc89SDoug Rabson 
52927a0bc89SDoug Rabson 	/*
53027a0bc89SDoug Rabson 	 * The root of a DOS filesystem cannot be extended.
53127a0bc89SDoug Rabson 	 */
53227a0bc89SDoug Rabson 	if (DETOV(dep)->v_flag & VROOT)
53327a0bc89SDoug Rabson 		return EINVAL;
53427a0bc89SDoug Rabson 
53527a0bc89SDoug Rabson 	/*
53627a0bc89SDoug Rabson 	 * Directories can only be extended by the superuser.
53727a0bc89SDoug Rabson 	 * Is this really important?
53827a0bc89SDoug Rabson 	 */
53927a0bc89SDoug Rabson 	if (dep->de_Attributes & ATTR_DIRECTORY) {
54027a0bc89SDoug Rabson 		if (error = suser(cred, NULL))
54127a0bc89SDoug Rabson 			return error;
54227a0bc89SDoug Rabson 	}
54327a0bc89SDoug Rabson 
54427a0bc89SDoug Rabson 	if (length <= dep->de_FileSize)
54527a0bc89SDoug Rabson 		panic("deextend: file too large");
54627a0bc89SDoug Rabson 
54727a0bc89SDoug Rabson 	/*
54827a0bc89SDoug Rabson 	 * Compute the number of clusters to allocate.
54927a0bc89SDoug Rabson 	 */
55027a0bc89SDoug Rabson 	count = de_clcount(pmp, length) - de_clcount(pmp, dep->de_FileSize);
55127a0bc89SDoug Rabson 	if (count > 0) {
55227a0bc89SDoug Rabson 		if (count > pmp->pm_freeclustercount)
55327a0bc89SDoug Rabson 			return ENOSPC;
55427a0bc89SDoug Rabson 		if (error = extendfile(dep, count, NULL, NULL, DE_CLEAR)) {
55527a0bc89SDoug Rabson 			/* truncate the added clusters away again */
55627a0bc89SDoug Rabson 			(void) detrunc(dep, dep->de_FileSize, 0, cred, NULL);
55727a0bc89SDoug Rabson 			return error;
55827a0bc89SDoug Rabson 		}
55927a0bc89SDoug Rabson 	}
56027a0bc89SDoug Rabson 
56127a0bc89SDoug Rabson 	dep->de_flag |= DE_UPDATE;
56227a0bc89SDoug Rabson 	dep->de_FileSize = length;
56327a0bc89SDoug Rabson 	return deupdat(dep, &time, 1);
56427a0bc89SDoug Rabson }
56527a0bc89SDoug Rabson 
56627a0bc89SDoug Rabson /*
56727a0bc89SDoug Rabson  * Move a denode to its correct hash queue after the file it represents has
56827a0bc89SDoug Rabson  * been moved to a new directory.
56927a0bc89SDoug Rabson  */
57027a0bc89SDoug Rabson int reinsert(dep)
57127a0bc89SDoug Rabson 	struct denode *dep;
57227a0bc89SDoug Rabson {
57327a0bc89SDoug Rabson 	union dehead *deh;
57427a0bc89SDoug Rabson 
57527a0bc89SDoug Rabson 	/*
57627a0bc89SDoug Rabson 	 * Fix up the denode cache.  If the denode is for a directory,
57727a0bc89SDoug Rabson 	 * there is nothing to do since the hash is based on the starting
57827a0bc89SDoug Rabson 	 * cluster of the directory file and that hasn't changed.  If for a
57927a0bc89SDoug Rabson 	 * file the hash is based on the location of the directory entry,
58027a0bc89SDoug Rabson 	 * so we must remove it from the cache and re-enter it with the
58127a0bc89SDoug Rabson 	 * hash based on the new location of the directory entry.
58227a0bc89SDoug Rabson 	 */
58327a0bc89SDoug Rabson 	if ((dep->de_Attributes & ATTR_DIRECTORY) == 0) {
58427a0bc89SDoug Rabson 		msdosfs_hashrem(dep);
58527a0bc89SDoug Rabson 		msdosfs_hashins(dep);
58627a0bc89SDoug Rabson 	}
58727a0bc89SDoug Rabson 	return 0;
58827a0bc89SDoug Rabson }
58927a0bc89SDoug Rabson 
59027a0bc89SDoug Rabson int
59127a0bc89SDoug Rabson msdosfs_reclaim(ap)
59227a0bc89SDoug Rabson 	struct vop_reclaim_args /* {
59327a0bc89SDoug Rabson 		struct vnode *a_vp;
59427a0bc89SDoug Rabson 	} */ *ap;
59527a0bc89SDoug Rabson {
59627a0bc89SDoug Rabson 	struct vnode *vp = ap->a_vp;
59727a0bc89SDoug Rabson 	struct denode *dep = VTODE(vp);
59827a0bc89SDoug Rabson 	int i;
59927a0bc89SDoug Rabson 	extern int prtactive;
60027a0bc89SDoug Rabson 
60127a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
60227a0bc89SDoug Rabson 	printf("msdosfs_reclaim(): dep %08x, file %s, refcnt %d\n",
60327a0bc89SDoug Rabson 	    dep, dep->de_Name, dep->de_refcnt);
60427a0bc89SDoug Rabson #endif
60527a0bc89SDoug Rabson 
60627a0bc89SDoug Rabson 	if (prtactive && vp->v_usecount != 0)
60727a0bc89SDoug Rabson 		vprint("msdosfs_reclaim(): pushing active", vp);
60827a0bc89SDoug Rabson 
60927a0bc89SDoug Rabson 	/*
61027a0bc89SDoug Rabson 	 * Remove the denode from the denode hash chain we are in.
61127a0bc89SDoug Rabson 	 */
61227a0bc89SDoug Rabson 	msdosfs_hashrem(dep);
61327a0bc89SDoug Rabson 
61427a0bc89SDoug Rabson 	cache_purge(vp);
61527a0bc89SDoug Rabson 	/*
61627a0bc89SDoug Rabson 	 * Indicate that one less file on the filesystem is open.
61727a0bc89SDoug Rabson 	 */
61827a0bc89SDoug Rabson 	if (dep->de_devvp) {
61927a0bc89SDoug Rabson 		vrele(dep->de_devvp);
62027a0bc89SDoug Rabson 		dep->de_devvp = 0;
62127a0bc89SDoug Rabson 	}
62227a0bc89SDoug Rabson 
62327a0bc89SDoug Rabson 	dep->de_flag = 0;
62427a0bc89SDoug Rabson 
62527a0bc89SDoug Rabson 	FREE(dep, M_MSDOSFSNODE);
62627a0bc89SDoug Rabson 	vp->v_data = NULL;
62727a0bc89SDoug Rabson 
62827a0bc89SDoug Rabson 	return 0;
62927a0bc89SDoug Rabson }
63027a0bc89SDoug Rabson 
63127a0bc89SDoug Rabson int
63227a0bc89SDoug Rabson msdosfs_inactive(ap)
63327a0bc89SDoug Rabson 	struct vop_inactive_args /* {
63427a0bc89SDoug Rabson 		struct vnode *a_vp;
63527a0bc89SDoug Rabson 	} */ *ap;
63627a0bc89SDoug Rabson {
63727a0bc89SDoug Rabson 	struct vnode *vp = ap->a_vp;
63827a0bc89SDoug Rabson 	struct denode *dep = VTODE(vp);
63927a0bc89SDoug Rabson 	int error = 0;
64027a0bc89SDoug Rabson 	extern int prtactive;
64127a0bc89SDoug Rabson 
64227a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
64327a0bc89SDoug Rabson 	printf("msdosfs_inactive(): dep %08x, de_Name[0] %x\n", dep, dep->de_Name[0]);
64427a0bc89SDoug Rabson #endif
64527a0bc89SDoug Rabson 
64627a0bc89SDoug Rabson 	if (prtactive && vp->v_usecount != 0)
64727a0bc89SDoug Rabson 		vprint("msdosfs_inactive(): pushing active", vp);
64827a0bc89SDoug Rabson 
64927a0bc89SDoug Rabson 	/*
65027a0bc89SDoug Rabson 	 * Get rid of denodes related to stale file handles. Hmmm, what
65127a0bc89SDoug Rabson 	 * does this really do?
65227a0bc89SDoug Rabson 	 */
65327a0bc89SDoug Rabson 	if (dep->de_Name[0] == SLOT_DELETED) {
65427a0bc89SDoug Rabson 		if ((vp->v_flag & VXLOCK) == 0)
65527a0bc89SDoug Rabson 			vgone(vp);
65627a0bc89SDoug Rabson 		return 0;
65727a0bc89SDoug Rabson 	}
65827a0bc89SDoug Rabson 
65927a0bc89SDoug Rabson 	/*
66027a0bc89SDoug Rabson 	 * If the file has been deleted and it is on a read/write
66127a0bc89SDoug Rabson 	 * filesystem, then truncate the file, and mark the directory slot
66227a0bc89SDoug Rabson 	 * as empty.  (This may not be necessary for the dos filesystem.)
66327a0bc89SDoug Rabson 	 */
66427a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
66527a0bc89SDoug Rabson 	printf("msdosfs_inactive(): dep %08x, refcnt %d, mntflag %x, MNT_RDONLY %x\n",
66627a0bc89SDoug Rabson 	       dep, dep->de_refcnt, vp->v_mount->mnt_flag, MNT_RDONLY);
66727a0bc89SDoug Rabson #endif
66827a0bc89SDoug Rabson 	VOP_LOCK(vp);
66927a0bc89SDoug Rabson 	if (dep->de_refcnt <= 0 && (vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
67027a0bc89SDoug Rabson 		error = detrunc(dep, (u_long) 0, 0, NOCRED, NULL);
67127a0bc89SDoug Rabson 		dep->de_flag |= DE_UPDATE;
67227a0bc89SDoug Rabson 		dep->de_Name[0] = SLOT_DELETED;
67327a0bc89SDoug Rabson 	}
67427a0bc89SDoug Rabson 	DE_UPDAT(dep, &time, 0);
67527a0bc89SDoug Rabson 	VOP_UNLOCK(vp);
67627a0bc89SDoug Rabson 	dep->de_flag = 0;
67727a0bc89SDoug Rabson 
67827a0bc89SDoug Rabson 	/*
67927a0bc89SDoug Rabson 	 * If we are done with the denode, then reclaim it so that it can
68027a0bc89SDoug Rabson 	 * be reused now.
68127a0bc89SDoug Rabson 	 */
68227a0bc89SDoug Rabson #ifdef MSDOSFS_DEBUG
68327a0bc89SDoug Rabson 	printf("msdosfs_inactive(): v_usecount %d, de_Name[0] %x\n", vp->v_usecount,
68427a0bc89SDoug Rabson 	       dep->de_Name[0]);
68527a0bc89SDoug Rabson #endif
68627a0bc89SDoug Rabson 	if (vp->v_usecount == 0 && dep->de_Name[0] == SLOT_DELETED)
68727a0bc89SDoug Rabson 		vgone(vp);
68827a0bc89SDoug Rabson 	return error;
68927a0bc89SDoug Rabson }
690