msdosfs_vnops.c revision 1.111 1 1.111 mrg /* $NetBSD: msdosfs_vnops.c,v 1.111 2023/08/14 05:41:09 mrg Exp $ */
2 1.1 jdolecek
3 1.1 jdolecek /*-
4 1.1 jdolecek * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
5 1.1 jdolecek * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
6 1.1 jdolecek * All rights reserved.
7 1.1 jdolecek * Original code by Paul Popelka (paulp (at) uts.amdahl.com) (see below).
8 1.1 jdolecek *
9 1.1 jdolecek * Redistribution and use in source and binary forms, with or without
10 1.1 jdolecek * modification, are permitted provided that the following conditions
11 1.1 jdolecek * are met:
12 1.1 jdolecek * 1. Redistributions of source code must retain the above copyright
13 1.1 jdolecek * notice, this list of conditions and the following disclaimer.
14 1.1 jdolecek * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 jdolecek * notice, this list of conditions and the following disclaimer in the
16 1.1 jdolecek * documentation and/or other materials provided with the distribution.
17 1.1 jdolecek * 3. All advertising materials mentioning features or use of this software
18 1.1 jdolecek * must display the following acknowledgement:
19 1.1 jdolecek * This product includes software developed by TooLs GmbH.
20 1.1 jdolecek * 4. The name of TooLs GmbH may not be used to endorse or promote products
21 1.1 jdolecek * derived from this software without specific prior written permission.
22 1.1 jdolecek *
23 1.1 jdolecek * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
24 1.1 jdolecek * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 jdolecek * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 jdolecek * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 1.1 jdolecek * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28 1.1 jdolecek * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
29 1.1 jdolecek * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30 1.1 jdolecek * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
31 1.1 jdolecek * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
32 1.1 jdolecek * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 jdolecek */
34 1.1 jdolecek /*
35 1.1 jdolecek * Written by Paul Popelka (paulp (at) uts.amdahl.com)
36 1.1 jdolecek *
37 1.1 jdolecek * You can do anything you want with this software, just don't say you wrote
38 1.1 jdolecek * it, and don't remove this notice.
39 1.1 jdolecek *
40 1.1 jdolecek * This software is provided "as is".
41 1.1 jdolecek *
42 1.1 jdolecek * The author supplies this software to be publicly redistributed on the
43 1.1 jdolecek * understanding that the author is not responsible for the correct
44 1.1 jdolecek * functioning of this software in any circumstances and is not liable for
45 1.1 jdolecek * any damages caused by this software.
46 1.1 jdolecek *
47 1.1 jdolecek * October 1992
48 1.1 jdolecek */
49 1.1 jdolecek
50 1.1 jdolecek #include <sys/cdefs.h>
51 1.111 mrg __KERNEL_RCSID(0, "$NetBSD: msdosfs_vnops.c,v 1.111 2023/08/14 05:41:09 mrg Exp $");
52 1.1 jdolecek
53 1.1 jdolecek #include <sys/param.h>
54 1.1 jdolecek #include <sys/systm.h>
55 1.1 jdolecek #include <sys/namei.h>
56 1.1 jdolecek #include <sys/resourcevar.h> /* defines plimit structure in proc struct */
57 1.1 jdolecek #include <sys/kernel.h>
58 1.1 jdolecek #include <sys/file.h> /* define FWRITE ... */
59 1.1 jdolecek #include <sys/stat.h>
60 1.1 jdolecek #include <sys/buf.h>
61 1.1 jdolecek #include <sys/proc.h>
62 1.1 jdolecek #include <sys/mount.h>
63 1.1 jdolecek #include <sys/vnode.h>
64 1.1 jdolecek #include <sys/signalvar.h>
65 1.1 jdolecek #include <sys/malloc.h>
66 1.1 jdolecek #include <sys/dirent.h>
67 1.1 jdolecek #include <sys/lockf.h>
68 1.28 elad #include <sys/kauth.h>
69 1.1 jdolecek
70 1.1 jdolecek #include <miscfs/genfs/genfs.h>
71 1.1 jdolecek #include <miscfs/specfs/specdev.h> /* XXX */ /* defines v_rdev */
72 1.1 jdolecek
73 1.1 jdolecek #include <uvm/uvm_extern.h>
74 1.1 jdolecek
75 1.1 jdolecek #include <fs/msdosfs/bpb.h>
76 1.1 jdolecek #include <fs/msdosfs/direntry.h>
77 1.1 jdolecek #include <fs/msdosfs/denode.h>
78 1.1 jdolecek #include <fs/msdosfs/msdosfsmount.h>
79 1.1 jdolecek #include <fs/msdosfs/fat.h>
80 1.1 jdolecek
81 1.1 jdolecek /*
82 1.1 jdolecek * Some general notes:
83 1.1 jdolecek *
84 1.1 jdolecek * In the ufs filesystem the inodes, superblocks, and indirect blocks are
85 1.1 jdolecek * read/written using the vnode for the filesystem. Blocks that represent
86 1.1 jdolecek * the contents of a file are read/written using the vnode for the file
87 1.1 jdolecek * (including directories when they are read/written as files). This
88 1.1 jdolecek * presents problems for the dos filesystem because data that should be in
89 1.1 jdolecek * an inode (if dos had them) resides in the directory itself. Since we
90 1.1 jdolecek * must update directory entries without the benefit of having the vnode
91 1.1 jdolecek * for the directory we must use the vnode for the filesystem. This means
92 1.1 jdolecek * that when a directory is actually read/written (via read, write, or
93 1.1 jdolecek * readdir, or seek) we must use the vnode for the filesystem instead of
94 1.1 jdolecek * the vnode for the directory as would happen in ufs. This is to insure we
95 1.1 jdolecek * retrieve the correct block from the buffer cache since the hash value is
96 1.1 jdolecek * based upon the vnode address and the desired block number.
97 1.1 jdolecek */
98 1.1 jdolecek
99 1.1 jdolecek /*
100 1.1 jdolecek * Create a regular file. On entry the directory to contain the file being
101 1.69 dholland * created is locked. We must release before we return.
102 1.1 jdolecek */
103 1.1 jdolecek int
104 1.58 dsl msdosfs_create(void *v)
105 1.1 jdolecek {
106 1.89 hannken struct vop_create_v3_args /* {
107 1.1 jdolecek struct vnode *a_dvp;
108 1.1 jdolecek struct vnode **a_vpp;
109 1.1 jdolecek struct componentname *a_cnp;
110 1.1 jdolecek struct vattr *a_vap;
111 1.1 jdolecek } */ *ap = v;
112 1.1 jdolecek struct componentname *cnp = ap->a_cnp;
113 1.1 jdolecek struct denode ndirent;
114 1.1 jdolecek struct denode *dep;
115 1.1 jdolecek struct denode *pdep = VTODE(ap->a_dvp);
116 1.1 jdolecek int error;
117 1.1 jdolecek
118 1.1 jdolecek #ifdef MSDOSFS_DEBUG
119 1.1 jdolecek printf("msdosfs_create(cnp %p, vap %p\n", cnp, ap->a_vap);
120 1.1 jdolecek #endif
121 1.1 jdolecek
122 1.1 jdolecek /*
123 1.1 jdolecek * If this is the root directory and there is no space left we
124 1.1 jdolecek * can't do anything. This is because the root directory can not
125 1.1 jdolecek * change size.
126 1.1 jdolecek */
127 1.1 jdolecek if (pdep->de_StartCluster == MSDOSFSROOT
128 1.108 hannken && pdep->de_crap.mlr_fndoffset >= pdep->de_FileSize) {
129 1.1 jdolecek error = ENOSPC;
130 1.1 jdolecek goto bad;
131 1.1 jdolecek }
132 1.1 jdolecek
133 1.1 jdolecek /*
134 1.1 jdolecek * Create a directory entry for the file, then call createde() to
135 1.1 jdolecek * have it installed. NOTE: DOS files are always executable. We
136 1.1 jdolecek * use the absence of the owner write bit to make the file
137 1.1 jdolecek * readonly.
138 1.1 jdolecek */
139 1.1 jdolecek memset(&ndirent, 0, sizeof(ndirent));
140 1.110 thorpej if ((error = msdosfs_uniqdosname(pdep, cnp, ndirent.de_Name)) != 0)
141 1.1 jdolecek goto bad;
142 1.1 jdolecek
143 1.1 jdolecek ndirent.de_Attributes = (ap->a_vap->va_mode & S_IWUSR) ?
144 1.1 jdolecek ATTR_ARCHIVE : ATTR_ARCHIVE | ATTR_READONLY;
145 1.1 jdolecek ndirent.de_StartCluster = 0;
146 1.1 jdolecek ndirent.de_FileSize = 0;
147 1.1 jdolecek ndirent.de_dev = pdep->de_dev;
148 1.1 jdolecek ndirent.de_devvp = pdep->de_devvp;
149 1.1 jdolecek ndirent.de_pmp = pdep->de_pmp;
150 1.1 jdolecek ndirent.de_flag = DE_ACCESS | DE_CREATE | DE_UPDATE;
151 1.20 christos DETIMES(&ndirent, NULL, NULL, NULL, pdep->de_pmp->pm_gmtoff);
152 1.110 thorpej if ((error = msdosfs_createde(&ndirent, pdep, &pdep->de_crap, &dep,
153 1.110 thorpej cnp)) != 0)
154 1.1 jdolecek goto bad;
155 1.1 jdolecek *ap->a_vpp = DETOV(dep);
156 1.99 christos cache_enter(ap->a_dvp, *ap->a_vpp, cnp->cn_nameptr, cnp->cn_namelen,
157 1.99 christos cnp->cn_flags);
158 1.1 jdolecek return (0);
159 1.1 jdolecek
160 1.1 jdolecek bad:
161 1.1 jdolecek return (error);
162 1.1 jdolecek }
163 1.1 jdolecek
164 1.1 jdolecek int
165 1.58 dsl msdosfs_close(void *v)
166 1.1 jdolecek {
167 1.1 jdolecek struct vop_close_args /* {
168 1.1 jdolecek struct vnode *a_vp;
169 1.1 jdolecek int a_fflag;
170 1.28 elad kauth_cred_t a_cred;
171 1.1 jdolecek } */ *ap = v;
172 1.1 jdolecek struct vnode *vp = ap->a_vp;
173 1.1 jdolecek struct denode *dep = VTODE(vp);
174 1.1 jdolecek
175 1.76 rmind mutex_enter(vp->v_interlock);
176 1.101 ad if (vrefcnt(vp) > 1)
177 1.20 christos DETIMES(dep, NULL, NULL, NULL, dep->de_pmp->pm_gmtoff);
178 1.76 rmind mutex_exit(vp->v_interlock);
179 1.1 jdolecek return (0);
180 1.1 jdolecek }
181 1.1 jdolecek
182 1.61 elad static int
183 1.103 christos msdosfs_check_possible(struct vnode *vp, struct denode *dep, accmode_t accmode)
184 1.1 jdolecek {
185 1.1 jdolecek
186 1.1 jdolecek /*
187 1.1 jdolecek * Disallow write attempts on read-only file systems;
188 1.1 jdolecek * unless the file is a socket, fifo, or a block or
189 1.1 jdolecek * character device resident on the file system.
190 1.1 jdolecek */
191 1.103 christos if (accmode & VWRITE) {
192 1.1 jdolecek switch (vp->v_type) {
193 1.1 jdolecek case VDIR:
194 1.1 jdolecek case VLNK:
195 1.1 jdolecek case VREG:
196 1.1 jdolecek if (vp->v_mount->mnt_flag & MNT_RDONLY)
197 1.1 jdolecek return (EROFS);
198 1.1 jdolecek default:
199 1.1 jdolecek break;
200 1.1 jdolecek }
201 1.1 jdolecek }
202 1.1 jdolecek
203 1.61 elad return 0;
204 1.61 elad }
205 1.61 elad
206 1.61 elad static int
207 1.103 christos msdosfs_check_permitted(struct vnode *vp, struct denode *dep, accmode_t accmode,
208 1.61 elad kauth_cred_t cred)
209 1.61 elad {
210 1.61 elad struct msdosfsmount *pmp = dep->de_pmp;
211 1.61 elad mode_t file_mode;
212 1.61 elad
213 1.1 jdolecek if ((dep->de_Attributes & ATTR_READONLY) == 0)
214 1.61 elad file_mode = S_IRWXU|S_IRWXG|S_IRWXO;
215 1.1 jdolecek else
216 1.61 elad file_mode = S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
217 1.61 elad
218 1.80 elad file_mode &= (vp->v_type == VDIR ? pmp->pm_dirmask : pmp->pm_mask);
219 1.80 elad
220 1.103 christos return kauth_authorize_vnode(cred, KAUTH_ACCESS_ACTION(accmode,
221 1.103 christos vp->v_type, file_mode), vp, NULL, genfs_can_access(vp, cred,
222 1.103 christos pmp->pm_uid, pmp->pm_gid, file_mode, NULL, accmode));
223 1.61 elad }
224 1.61 elad
225 1.61 elad int
226 1.61 elad msdosfs_access(void *v)
227 1.61 elad {
228 1.61 elad struct vop_access_args /* {
229 1.61 elad struct vnode *a_vp;
230 1.103 christos accmode_t a_accmode;
231 1.61 elad kauth_cred_t a_cred;
232 1.61 elad } */ *ap = v;
233 1.61 elad struct vnode *vp = ap->a_vp;
234 1.61 elad struct denode *dep = VTODE(vp);
235 1.61 elad int error;
236 1.61 elad
237 1.103 christos error = msdosfs_check_possible(vp, dep, ap->a_accmode);
238 1.61 elad if (error)
239 1.61 elad return error;
240 1.61 elad
241 1.103 christos error = msdosfs_check_permitted(vp, dep, ap->a_accmode, ap->a_cred);
242 1.61 elad
243 1.61 elad return error;
244 1.1 jdolecek }
245 1.1 jdolecek
246 1.1 jdolecek int
247 1.58 dsl msdosfs_getattr(void *v)
248 1.1 jdolecek {
249 1.1 jdolecek struct vop_getattr_args /* {
250 1.1 jdolecek struct vnode *a_vp;
251 1.1 jdolecek struct vattr *a_vap;
252 1.28 elad kauth_cred_t a_cred;
253 1.1 jdolecek } */ *ap = v;
254 1.1 jdolecek struct denode *dep = VTODE(ap->a_vp);
255 1.1 jdolecek struct msdosfsmount *pmp = dep->de_pmp;
256 1.1 jdolecek struct vattr *vap = ap->a_vap;
257 1.1 jdolecek mode_t mode;
258 1.1 jdolecek u_long dirsperblk = pmp->pm_BytesPerSec / sizeof(struct direntry);
259 1.19 christos ino_t fileid;
260 1.1 jdolecek
261 1.20 christos DETIMES(dep, NULL, NULL, NULL, pmp->pm_gmtoff);
262 1.1 jdolecek vap->va_fsid = dep->de_dev;
263 1.1 jdolecek /*
264 1.1 jdolecek * The following computation of the fileid must be the same as that
265 1.1 jdolecek * used in msdosfs_readdir() to compute d_fileno. If not, pwd
266 1.1 jdolecek * doesn't work.
267 1.1 jdolecek */
268 1.1 jdolecek if (dep->de_Attributes & ATTR_DIRECTORY) {
269 1.19 christos fileid = cntobn(pmp, (ino_t)dep->de_StartCluster) * dirsperblk;
270 1.1 jdolecek if (dep->de_StartCluster == MSDOSFSROOT)
271 1.1 jdolecek fileid = 1;
272 1.1 jdolecek } else {
273 1.19 christos fileid = cntobn(pmp, (ino_t)dep->de_dirclust) * dirsperblk;
274 1.1 jdolecek if (dep->de_dirclust == MSDOSFSROOT)
275 1.1 jdolecek fileid = roottobn(pmp, 0) * dirsperblk;
276 1.1 jdolecek fileid += dep->de_diroffset / sizeof(struct direntry);
277 1.1 jdolecek }
278 1.1 jdolecek vap->va_fileid = fileid;
279 1.1 jdolecek if ((dep->de_Attributes & ATTR_READONLY) == 0)
280 1.1 jdolecek mode = S_IRWXU|S_IRWXG|S_IRWXO;
281 1.1 jdolecek else
282 1.1 jdolecek mode = S_IRUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
283 1.6 jdolecek vap->va_mode =
284 1.6 jdolecek mode & (ap->a_vp->v_type == VDIR ? pmp->pm_dirmask : pmp->pm_mask);
285 1.1 jdolecek vap->va_uid = pmp->pm_uid;
286 1.1 jdolecek vap->va_gid = pmp->pm_gid;
287 1.1 jdolecek vap->va_nlink = 1;
288 1.1 jdolecek vap->va_rdev = 0;
289 1.1 jdolecek vap->va_size = ap->a_vp->v_size;
290 1.110 thorpej msdosfs_dos2unixtime(dep->de_MDate, dep->de_MTime, 0, pmp->pm_gmtoff,
291 1.7 itojun &vap->va_mtime);
292 1.1 jdolecek if (dep->de_pmp->pm_flags & MSDOSFSMNT_LONGNAME) {
293 1.110 thorpej msdosfs_dos2unixtime(dep->de_ADate, 0, 0, pmp->pm_gmtoff,
294 1.7 itojun &vap->va_atime);
295 1.110 thorpej msdosfs_dos2unixtime(dep->de_CDate, dep->de_CTime, dep->de_CHun,
296 1.7 itojun pmp->pm_gmtoff, &vap->va_ctime);
297 1.1 jdolecek } else {
298 1.1 jdolecek vap->va_atime = vap->va_mtime;
299 1.1 jdolecek vap->va_ctime = vap->va_mtime;
300 1.1 jdolecek }
301 1.1 jdolecek vap->va_flags = 0;
302 1.82 njoly if ((dep->de_Attributes & ATTR_ARCHIVE) == 0) {
303 1.81 njoly vap->va_flags |= SF_ARCHIVED;
304 1.1 jdolecek vap->va_mode |= S_ARCH1;
305 1.82 njoly }
306 1.1 jdolecek vap->va_gen = 0;
307 1.1 jdolecek vap->va_blocksize = pmp->pm_bpcluster;
308 1.1 jdolecek vap->va_bytes =
309 1.1 jdolecek (dep->de_FileSize + pmp->pm_crbomask) & ~pmp->pm_crbomask;
310 1.1 jdolecek vap->va_type = ap->a_vp->v_type;
311 1.1 jdolecek return (0);
312 1.1 jdolecek }
313 1.1 jdolecek
314 1.1 jdolecek int
315 1.58 dsl msdosfs_setattr(void *v)
316 1.1 jdolecek {
317 1.1 jdolecek struct vop_setattr_args /* {
318 1.1 jdolecek struct vnode *a_vp;
319 1.1 jdolecek struct vattr *a_vap;
320 1.28 elad kauth_cred_t a_cred;
321 1.1 jdolecek } */ *ap = v;
322 1.1 jdolecek int error = 0, de_changed = 0;
323 1.1 jdolecek struct denode *dep = VTODE(ap->a_vp);
324 1.1 jdolecek struct msdosfsmount *pmp = dep->de_pmp;
325 1.1 jdolecek struct vnode *vp = ap->a_vp;
326 1.1 jdolecek struct vattr *vap = ap->a_vap;
327 1.28 elad kauth_cred_t cred = ap->a_cred;
328 1.1 jdolecek
329 1.1 jdolecek #ifdef MSDOSFS_DEBUG
330 1.51 ad printf("msdosfs_setattr(): vp %p, vap %p, cred %p\n",
331 1.51 ad ap->a_vp, vap, cred);
332 1.1 jdolecek #endif
333 1.1 jdolecek /*
334 1.1 jdolecek * Note we silently ignore uid or gid changes.
335 1.1 jdolecek */
336 1.1 jdolecek if ((vap->va_type != VNON) || (vap->va_nlink != (nlink_t)VNOVAL) ||
337 1.1 jdolecek (vap->va_fsid != VNOVAL) || (vap->va_fileid != VNOVAL) ||
338 1.1 jdolecek (vap->va_blocksize != VNOVAL) || (vap->va_rdev != VNOVAL) ||
339 1.1 jdolecek (vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL) ||
340 1.14 perry (vap->va_uid != VNOVAL && vap->va_uid != pmp->pm_uid) ||
341 1.1 jdolecek (vap->va_gid != VNOVAL && vap->va_gid != pmp->pm_gid)) {
342 1.1 jdolecek #ifdef MSDOSFS_DEBUG
343 1.1 jdolecek printf("msdosfs_setattr(): returning EINVAL\n");
344 1.57 cegger printf(" va_type %d, va_nlink %x, va_fsid %"PRIx64", va_fileid %llx\n",
345 1.16 christos vap->va_type, vap->va_nlink, vap->va_fsid,
346 1.16 christos (unsigned long long)vap->va_fileid);
347 1.57 cegger printf(" va_blocksize %lx, va_rdev %"PRIx64", va_bytes %"PRIx64", va_gen %lx\n",
348 1.68 njoly vap->va_blocksize, vap->va_rdev, vap->va_bytes, vap->va_gen);
349 1.1 jdolecek #endif
350 1.1 jdolecek return (EINVAL);
351 1.1 jdolecek }
352 1.1 jdolecek /*
353 1.1 jdolecek * Silently ignore attributes modifications on directories.
354 1.1 jdolecek */
355 1.1 jdolecek if (ap->a_vp->v_type == VDIR)
356 1.1 jdolecek return 0;
357 1.1 jdolecek
358 1.1 jdolecek if (vap->va_size != VNOVAL) {
359 1.64 hannken if (vp->v_mount->mnt_flag & MNT_RDONLY) {
360 1.64 hannken error = EROFS;
361 1.64 hannken goto bad;
362 1.64 hannken }
363 1.110 thorpej error = msdosfs_detrunc(dep, (u_long)vap->va_size, 0, cred);
364 1.1 jdolecek if (error)
365 1.64 hannken goto bad;
366 1.1 jdolecek de_changed = 1;
367 1.1 jdolecek }
368 1.1 jdolecek if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
369 1.64 hannken if (vp->v_mount->mnt_flag & MNT_RDONLY) {
370 1.64 hannken error = EROFS;
371 1.64 hannken goto bad;
372 1.64 hannken }
373 1.80 elad error = kauth_authorize_vnode(cred, KAUTH_VNODE_WRITE_TIMES,
374 1.103 christos ap->a_vp, NULL, genfs_can_chtimes(ap->a_vp, cred,
375 1.103 christos pmp->pm_uid, vap->va_vaflags));
376 1.59 elad if (error)
377 1.64 hannken goto bad;
378 1.1 jdolecek if ((pmp->pm_flags & MSDOSFSMNT_NOWIN95) == 0 &&
379 1.1 jdolecek vap->va_atime.tv_sec != VNOVAL)
380 1.110 thorpej msdosfs_unix2dostime(&vap->va_atime, pmp->pm_gmtoff,
381 1.110 thorpej &dep->de_ADate, NULL, NULL);
382 1.1 jdolecek if (vap->va_mtime.tv_sec != VNOVAL)
383 1.110 thorpej msdosfs_unix2dostime(&vap->va_mtime, pmp->pm_gmtoff,
384 1.110 thorpej &dep->de_MDate, &dep->de_MTime, NULL);
385 1.1 jdolecek dep->de_Attributes |= ATTR_ARCHIVE;
386 1.1 jdolecek dep->de_flag |= DE_MODIFIED;
387 1.1 jdolecek de_changed = 1;
388 1.1 jdolecek }
389 1.1 jdolecek /*
390 1.1 jdolecek * DOS files only have the ability to have their writability
391 1.1 jdolecek * attribute set, so we use the owner write bit to set the readonly
392 1.1 jdolecek * attribute.
393 1.1 jdolecek */
394 1.1 jdolecek if (vap->va_mode != (mode_t)VNOVAL) {
395 1.64 hannken if (vp->v_mount->mnt_flag & MNT_RDONLY) {
396 1.64 hannken error = EROFS;
397 1.64 hannken goto bad;
398 1.64 hannken }
399 1.80 elad error = kauth_authorize_vnode(cred, KAUTH_VNODE_WRITE_FLAGS, vp,
400 1.103 christos NULL, genfs_can_chflags(vp, cred, pmp->pm_uid, false));
401 1.80 elad if (error)
402 1.64 hannken goto bad;
403 1.1 jdolecek /* We ignore the read and execute bits. */
404 1.1 jdolecek if (vap->va_mode & S_IWUSR)
405 1.1 jdolecek dep->de_Attributes &= ~ATTR_READONLY;
406 1.1 jdolecek else
407 1.1 jdolecek dep->de_Attributes |= ATTR_READONLY;
408 1.1 jdolecek dep->de_flag |= DE_MODIFIED;
409 1.1 jdolecek de_changed = 1;
410 1.1 jdolecek }
411 1.1 jdolecek /*
412 1.1 jdolecek * Allow the `archived' bit to be toggled.
413 1.1 jdolecek */
414 1.1 jdolecek if (vap->va_flags != VNOVAL) {
415 1.64 hannken if (vp->v_mount->mnt_flag & MNT_RDONLY) {
416 1.64 hannken error = EROFS;
417 1.64 hannken goto bad;
418 1.64 hannken }
419 1.80 elad error = kauth_authorize_vnode(cred, KAUTH_VNODE_WRITE_FLAGS, vp,
420 1.103 christos NULL, genfs_can_chflags(vp, cred, pmp->pm_uid, false));
421 1.80 elad if (error)
422 1.64 hannken goto bad;
423 1.1 jdolecek if (vap->va_flags & SF_ARCHIVED)
424 1.1 jdolecek dep->de_Attributes &= ~ATTR_ARCHIVE;
425 1.1 jdolecek else
426 1.1 jdolecek dep->de_Attributes |= ATTR_ARCHIVE;
427 1.1 jdolecek dep->de_flag |= DE_MODIFIED;
428 1.1 jdolecek de_changed = 1;
429 1.1 jdolecek }
430 1.1 jdolecek
431 1.1 jdolecek if (de_changed) {
432 1.110 thorpej error = msdosfs_deupdat(dep, 1);
433 1.64 hannken if (error)
434 1.64 hannken goto bad;
435 1.64 hannken }
436 1.64 hannken
437 1.64 hannken bad:
438 1.64 hannken return error;
439 1.1 jdolecek }
440 1.1 jdolecek
441 1.1 jdolecek int
442 1.58 dsl msdosfs_read(void *v)
443 1.1 jdolecek {
444 1.1 jdolecek struct vop_read_args /* {
445 1.1 jdolecek struct vnode *a_vp;
446 1.1 jdolecek struct uio *a_uio;
447 1.1 jdolecek int a_ioflag;
448 1.28 elad kauth_cred_t a_cred;
449 1.1 jdolecek } */ *ap = v;
450 1.54 pooka int error = 0;
451 1.1 jdolecek int64_t diff;
452 1.1 jdolecek int blsize;
453 1.1 jdolecek long n;
454 1.1 jdolecek long on;
455 1.1 jdolecek daddr_t lbn;
456 1.1 jdolecek vsize_t bytelen;
457 1.1 jdolecek struct buf *bp;
458 1.1 jdolecek struct vnode *vp = ap->a_vp;
459 1.1 jdolecek struct denode *dep = VTODE(vp);
460 1.1 jdolecek struct msdosfsmount *pmp = dep->de_pmp;
461 1.1 jdolecek struct uio *uio = ap->a_uio;
462 1.1 jdolecek
463 1.1 jdolecek /*
464 1.1 jdolecek * If they didn't ask for any data, then we are done.
465 1.1 jdolecek */
466 1.1 jdolecek
467 1.1 jdolecek if (uio->uio_resid == 0)
468 1.1 jdolecek return (0);
469 1.1 jdolecek if (uio->uio_offset < 0)
470 1.1 jdolecek return (EINVAL);
471 1.1 jdolecek if (uio->uio_offset >= dep->de_FileSize)
472 1.1 jdolecek return (0);
473 1.1 jdolecek
474 1.1 jdolecek if (vp->v_type == VREG) {
475 1.23 yamt const int advice = IO_ADV_DECODE(ap->a_ioflag);
476 1.23 yamt
477 1.1 jdolecek while (uio->uio_resid > 0) {
478 1.1 jdolecek bytelen = MIN(dep->de_FileSize - uio->uio_offset,
479 1.1 jdolecek uio->uio_resid);
480 1.1 jdolecek
481 1.1 jdolecek if (bytelen == 0)
482 1.1 jdolecek break;
483 1.54 pooka error = ubc_uiomove(&vp->v_uobj, uio, bytelen, advice,
484 1.102 ad UBC_READ | UBC_PARTIALOK | UBC_VNODE_FLAGS(vp));
485 1.1 jdolecek if (error)
486 1.1 jdolecek break;
487 1.1 jdolecek }
488 1.1 jdolecek dep->de_flag |= DE_ACCESS;
489 1.1 jdolecek goto out;
490 1.1 jdolecek }
491 1.1 jdolecek
492 1.1 jdolecek /* this loop is only for directories now */
493 1.1 jdolecek do {
494 1.1 jdolecek lbn = de_cluster(pmp, uio->uio_offset);
495 1.1 jdolecek on = uio->uio_offset & pmp->pm_crbomask;
496 1.1 jdolecek n = MIN(pmp->pm_bpcluster - on, uio->uio_resid);
497 1.79 hannken if (uio->uio_offset >= dep->de_FileSize) {
498 1.1 jdolecek return (0);
499 1.79 hannken }
500 1.1 jdolecek /* file size (and hence diff) may be up to 4GB */
501 1.1 jdolecek diff = dep->de_FileSize - uio->uio_offset;
502 1.1 jdolecek if (diff < n)
503 1.1 jdolecek n = (long) diff;
504 1.1 jdolecek
505 1.34 scw /* convert cluster # to sector # */
506 1.110 thorpej error = msdosfs_pcbmap(dep, lbn, &lbn, 0, &blsize);
507 1.1 jdolecek if (error)
508 1.64 hannken goto bad;
509 1.1 jdolecek
510 1.1 jdolecek /*
511 1.1 jdolecek * If we are operating on a directory file then be sure to
512 1.1 jdolecek * do i/o with the vnode for the filesystem instead of the
513 1.1 jdolecek * vnode for the directory.
514 1.1 jdolecek */
515 1.34 scw error = bread(pmp->pm_devvp, de_bn2kb(pmp, lbn), blsize,
516 1.92 maxv 0, &bp);
517 1.1 jdolecek if (error) {
518 1.64 hannken goto bad;
519 1.1 jdolecek }
520 1.85 hannken n = MIN(n, pmp->pm_bpcluster - bp->b_resid);
521 1.38 christos error = uiomove((char *)bp->b_data + on, (int) n, uio);
522 1.42 ad brelse(bp, 0);
523 1.1 jdolecek } while (error == 0 && uio->uio_resid > 0 && n != 0);
524 1.14 perry
525 1.1 jdolecek out:
526 1.93 riastrad if ((ap->a_ioflag & IO_SYNC) == IO_SYNC) {
527 1.93 riastrad int uerror;
528 1.93 riastrad
529 1.110 thorpej uerror = msdosfs_deupdat(dep, 1);
530 1.93 riastrad if (error == 0)
531 1.93 riastrad error = uerror;
532 1.93 riastrad }
533 1.64 hannken bad:
534 1.1 jdolecek return (error);
535 1.1 jdolecek }
536 1.1 jdolecek
537 1.1 jdolecek /*
538 1.1 jdolecek * Write data to a file or directory.
539 1.1 jdolecek */
540 1.1 jdolecek int
541 1.58 dsl msdosfs_write(void *v)
542 1.1 jdolecek {
543 1.1 jdolecek struct vop_write_args /* {
544 1.1 jdolecek struct vnode *a_vp;
545 1.1 jdolecek struct uio *a_uio;
546 1.1 jdolecek int a_ioflag;
547 1.28 elad kauth_cred_t a_cred;
548 1.1 jdolecek } */ *ap = v;
549 1.107 thorpej int resid;
550 1.13 chs int error = 0;
551 1.13 chs int ioflag = ap->a_ioflag;
552 1.1 jdolecek u_long osize;
553 1.1 jdolecek u_long count;
554 1.1 jdolecek vsize_t bytelen;
555 1.1 jdolecek off_t oldoff;
556 1.74 hannken size_t rem;
557 1.1 jdolecek struct uio *uio = ap->a_uio;
558 1.1 jdolecek struct vnode *vp = ap->a_vp;
559 1.1 jdolecek struct denode *dep = VTODE(vp);
560 1.1 jdolecek struct msdosfsmount *pmp = dep->de_pmp;
561 1.28 elad kauth_cred_t cred = ap->a_cred;
562 1.37 thorpej bool async;
563 1.1 jdolecek
564 1.1 jdolecek #ifdef MSDOSFS_DEBUG
565 1.1 jdolecek printf("msdosfs_write(vp %p, uio %p, ioflag %x, cred %p\n",
566 1.1 jdolecek vp, uio, ioflag, cred);
567 1.1 jdolecek printf("msdosfs_write(): diroff %lu, dirclust %lu, startcluster %lu\n",
568 1.1 jdolecek dep->de_diroffset, dep->de_dirclust, dep->de_StartCluster);
569 1.1 jdolecek #endif
570 1.1 jdolecek
571 1.1 jdolecek switch (vp->v_type) {
572 1.1 jdolecek case VREG:
573 1.1 jdolecek if (ioflag & IO_APPEND)
574 1.1 jdolecek uio->uio_offset = dep->de_FileSize;
575 1.1 jdolecek break;
576 1.1 jdolecek case VDIR:
577 1.1 jdolecek return EISDIR;
578 1.1 jdolecek default:
579 1.1 jdolecek panic("msdosfs_write(): bad file type");
580 1.1 jdolecek }
581 1.1 jdolecek
582 1.1 jdolecek if (uio->uio_offset < 0)
583 1.1 jdolecek return (EINVAL);
584 1.1 jdolecek
585 1.1 jdolecek if (uio->uio_resid == 0)
586 1.1 jdolecek return (0);
587 1.1 jdolecek
588 1.17 xtraeme /* Don't bother to try to write files larger than the fs limit */
589 1.17 xtraeme if (uio->uio_offset + uio->uio_resid > MSDOSFS_FILESIZE_MAX)
590 1.17 xtraeme return (EFBIG);
591 1.17 xtraeme
592 1.1 jdolecek /*
593 1.1 jdolecek * If the offset we are starting the write at is beyond the end of
594 1.1 jdolecek * the file, then they've done a seek. Unix filesystems allow
595 1.1 jdolecek * files with holes in them, DOS doesn't so we must fill the hole
596 1.1 jdolecek * with zeroed blocks.
597 1.1 jdolecek */
598 1.1 jdolecek if (uio->uio_offset > dep->de_FileSize) {
599 1.110 thorpej if ((error = msdosfs_deextend(dep, uio->uio_offset,
600 1.110 thorpej cred)) != 0) {
601 1.1 jdolecek return (error);
602 1.64 hannken }
603 1.1 jdolecek }
604 1.1 jdolecek
605 1.1 jdolecek /*
606 1.1 jdolecek * Remember some values in case the write fails.
607 1.1 jdolecek */
608 1.1 jdolecek async = vp->v_mount->mnt_flag & MNT_ASYNC;
609 1.1 jdolecek resid = uio->uio_resid;
610 1.1 jdolecek osize = dep->de_FileSize;
611 1.1 jdolecek
612 1.1 jdolecek /*
613 1.1 jdolecek * If we write beyond the end of the file, extend it to its ultimate
614 1.1 jdolecek * size ahead of the time to hopefully get a contiguous area.
615 1.1 jdolecek */
616 1.1 jdolecek if (uio->uio_offset + resid > osize) {
617 1.1 jdolecek count = de_clcount(pmp, uio->uio_offset + resid) -
618 1.1 jdolecek de_clcount(pmp, osize);
619 1.110 thorpej if ((error = msdosfs_extendfile(dep, count, NULL, NULL, 0)))
620 1.1 jdolecek goto errexit;
621 1.1 jdolecek
622 1.1 jdolecek dep->de_FileSize = uio->uio_offset + resid;
623 1.45 reinoud /* hint uvm to not read in extended part */
624 1.45 reinoud uvm_vnp_setwritesize(vp, dep->de_FileSize);
625 1.74 hannken /* zero out the remainder of the last page */
626 1.74 hannken rem = round_page(dep->de_FileSize) - dep->de_FileSize;
627 1.74 hannken if (rem > 0)
628 1.77 hannken ubc_zerorange(&vp->v_uobj, (off_t)dep->de_FileSize,
629 1.102 ad rem, UBC_VNODE_FLAGS(vp));
630 1.1 jdolecek }
631 1.1 jdolecek
632 1.1 jdolecek do {
633 1.1 jdolecek oldoff = uio->uio_offset;
634 1.1 jdolecek bytelen = uio->uio_resid;
635 1.1 jdolecek
636 1.54 pooka error = ubc_uiomove(&vp->v_uobj, uio, bytelen,
637 1.102 ad IO_ADV_DECODE(ioflag), UBC_WRITE | UBC_VNODE_FLAGS(vp));
638 1.34 scw if (error)
639 1.1 jdolecek break;
640 1.1 jdolecek
641 1.1 jdolecek /*
642 1.1 jdolecek * flush what we just wrote if necessary.
643 1.1 jdolecek * XXXUBC simplistic async flushing.
644 1.1 jdolecek */
645 1.1 jdolecek
646 1.1 jdolecek if (!async && oldoff >> 16 != uio->uio_offset >> 16) {
647 1.100 ad rw_enter(vp->v_uobj.vmobjlock, RW_WRITER);
648 1.1 jdolecek error = VOP_PUTPAGES(vp, (oldoff >> 16) << 16,
649 1.83 chs (uio->uio_offset >> 16) << 16,
650 1.83 chs PGO_CLEANIT | PGO_LAZY);
651 1.1 jdolecek }
652 1.1 jdolecek } while (error == 0 && uio->uio_resid > 0);
653 1.45 reinoud
654 1.45 reinoud /* set final size */
655 1.45 reinoud uvm_vnp_setsize(vp, dep->de_FileSize);
656 1.1 jdolecek if (error == 0 && ioflag & IO_SYNC) {
657 1.100 ad rw_enter(vp->v_uobj.vmobjlock, RW_WRITER);
658 1.1 jdolecek error = VOP_PUTPAGES(vp, trunc_page(oldoff),
659 1.1 jdolecek round_page(oldoff + bytelen), PGO_CLEANIT | PGO_SYNCIO);
660 1.1 jdolecek }
661 1.1 jdolecek dep->de_flag |= DE_UPDATE;
662 1.1 jdolecek
663 1.1 jdolecek /*
664 1.1 jdolecek * If the write failed and they want us to, truncate the file back
665 1.1 jdolecek * to the size it was before the write was attempted.
666 1.1 jdolecek */
667 1.1 jdolecek errexit:
668 1.1 jdolecek if (error) {
669 1.110 thorpej msdosfs_detrunc(dep, osize, ioflag & IO_SYNC, NOCRED);
670 1.1 jdolecek uio->uio_offset -= resid - uio->uio_resid;
671 1.1 jdolecek uio->uio_resid = resid;
672 1.1 jdolecek } else if ((ioflag & IO_SYNC) == IO_SYNC)
673 1.110 thorpej error = msdosfs_deupdat(dep, 1);
674 1.1 jdolecek KASSERT(vp->v_size == dep->de_FileSize);
675 1.1 jdolecek return (error);
676 1.1 jdolecek }
677 1.1 jdolecek
678 1.1 jdolecek int
679 1.21 yamt msdosfs_update(struct vnode *vp, const struct timespec *acc,
680 1.21 yamt const struct timespec *mod, int flags)
681 1.1 jdolecek {
682 1.1 jdolecek struct buf *bp;
683 1.1 jdolecek struct direntry *dirp;
684 1.1 jdolecek struct denode *dep;
685 1.1 jdolecek int error;
686 1.1 jdolecek
687 1.21 yamt if (vp->v_mount->mnt_flag & MNT_RDONLY)
688 1.1 jdolecek return (0);
689 1.21 yamt dep = VTODE(vp);
690 1.21 yamt DETIMES(dep, acc, mod, NULL, dep->de_pmp->pm_gmtoff);
691 1.1 jdolecek if ((dep->de_flag & DE_MODIFIED) == 0)
692 1.1 jdolecek return (0);
693 1.1 jdolecek dep->de_flag &= ~DE_MODIFIED;
694 1.1 jdolecek if (dep->de_Attributes & ATTR_DIRECTORY)
695 1.1 jdolecek return (0);
696 1.1 jdolecek if (dep->de_refcnt <= 0)
697 1.1 jdolecek return (0);
698 1.110 thorpej error = msdosfs_readde(dep, &bp, &dirp);
699 1.1 jdolecek if (error)
700 1.1 jdolecek return (error);
701 1.1 jdolecek DE_EXTERNALIZE(dirp, dep);
702 1.21 yamt if (flags & (UPDATE_WAIT|UPDATE_DIROP))
703 1.1 jdolecek return (bwrite(bp));
704 1.1 jdolecek else {
705 1.1 jdolecek bdwrite(bp);
706 1.1 jdolecek return (0);
707 1.1 jdolecek }
708 1.1 jdolecek }
709 1.1 jdolecek
710 1.1 jdolecek /*
711 1.1 jdolecek * Flush the blocks of a file to disk.
712 1.1 jdolecek *
713 1.1 jdolecek * This function is worthless for vnodes that represent directories. Maybe we
714 1.1 jdolecek * could just do a sync if they try an fsync on a directory file.
715 1.1 jdolecek */
716 1.1 jdolecek int
717 1.58 dsl msdosfs_remove(void *v)
718 1.1 jdolecek {
719 1.107 thorpej struct vop_remove_v3_args /* {
720 1.1 jdolecek struct vnode *a_dvp;
721 1.1 jdolecek struct vnode *a_vp;
722 1.1 jdolecek struct componentname *a_cnp;
723 1.107 thorpej nlink_t ctx_vp_new_nlink;
724 1.1 jdolecek } */ *ap = v;
725 1.1 jdolecek struct denode *dep = VTODE(ap->a_vp);
726 1.1 jdolecek struct denode *ddep = VTODE(ap->a_dvp);
727 1.1 jdolecek int error;
728 1.1 jdolecek
729 1.1 jdolecek if (ap->a_vp->v_type == VDIR)
730 1.1 jdolecek error = EPERM;
731 1.1 jdolecek else
732 1.110 thorpej error = msdosfs_removede(ddep, dep, &ddep->de_crap);
733 1.1 jdolecek #ifdef MSDOSFS_DEBUG
734 1.101 ad printf("msdosfs_remove(), dep %p, usecount %d\n",
735 1.101 ad dep, vrefcnt(ap->a_vp));
736 1.1 jdolecek #endif
737 1.1 jdolecek if (ddep == dep)
738 1.1 jdolecek vrele(ap->a_vp);
739 1.1 jdolecek else
740 1.1 jdolecek vput(ap->a_vp); /* causes msdosfs_inactive() to be called
741 1.1 jdolecek * via vrele() */
742 1.98 riastrad
743 1.1 jdolecek return (error);
744 1.1 jdolecek }
745 1.1 jdolecek
746 1.2 jdolecek static const struct {
747 1.1 jdolecek struct direntry dot;
748 1.1 jdolecek struct direntry dotdot;
749 1.1 jdolecek } dosdirtemplate = {
750 1.1 jdolecek { ". ", " ", /* the . entry */
751 1.1 jdolecek ATTR_DIRECTORY, /* file attribute */
752 1.1 jdolecek 0, /* reserved */
753 1.1 jdolecek 0, { 0, 0 }, { 0, 0 }, /* create time & date */
754 1.1 jdolecek { 0, 0 }, /* access date */
755 1.1 jdolecek { 0, 0 }, /* high bits of start cluster */
756 1.1 jdolecek { 210, 4 }, { 210, 4 }, /* modify time & date */
757 1.1 jdolecek { 0, 0 }, /* startcluster */
758 1.1 jdolecek { 0, 0, 0, 0 } /* filesize */
759 1.1 jdolecek },
760 1.1 jdolecek { ".. ", " ", /* the .. entry */
761 1.1 jdolecek ATTR_DIRECTORY, /* file attribute */
762 1.1 jdolecek 0, /* reserved */
763 1.1 jdolecek 0, { 0, 0 }, { 0, 0 }, /* create time & date */
764 1.1 jdolecek { 0, 0 }, /* access date */
765 1.1 jdolecek { 0, 0 }, /* high bits of start cluster */
766 1.1 jdolecek { 210, 4 }, { 210, 4 }, /* modify time & date */
767 1.1 jdolecek { 0, 0 }, /* startcluster */
768 1.1 jdolecek { 0, 0, 0, 0 } /* filesize */
769 1.1 jdolecek }
770 1.1 jdolecek };
771 1.1 jdolecek
772 1.1 jdolecek int
773 1.58 dsl msdosfs_mkdir(void *v)
774 1.1 jdolecek {
775 1.89 hannken struct vop_mkdir_v3_args /* {
776 1.1 jdolecek struct vnode *a_dvp;
777 1.1 jdolecek struvt vnode **a_vpp;
778 1.1 jdolecek struvt componentname *a_cnp;
779 1.1 jdolecek struct vattr *a_vap;
780 1.1 jdolecek } */ *ap = v;
781 1.1 jdolecek struct componentname *cnp = ap->a_cnp;
782 1.1 jdolecek struct denode ndirent;
783 1.1 jdolecek struct denode *dep;
784 1.1 jdolecek struct denode *pdep = VTODE(ap->a_dvp);
785 1.1 jdolecek int error;
786 1.1 jdolecek int bn;
787 1.1 jdolecek u_long newcluster, pcl;
788 1.52 hannken daddr_t lbn;
789 1.1 jdolecek struct direntry *denp;
790 1.1 jdolecek struct msdosfsmount *pmp = pdep->de_pmp;
791 1.1 jdolecek struct buf *bp;
792 1.1 jdolecek int async = pdep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC;
793 1.1 jdolecek
794 1.1 jdolecek /*
795 1.1 jdolecek * If this is the root directory and there is no space left we
796 1.1 jdolecek * can't do anything. This is because the root directory can not
797 1.1 jdolecek * change size.
798 1.1 jdolecek */
799 1.1 jdolecek if (pdep->de_StartCluster == MSDOSFSROOT
800 1.108 hannken && pdep->de_crap.mlr_fndoffset >= pdep->de_FileSize) {
801 1.1 jdolecek error = ENOSPC;
802 1.1 jdolecek goto bad2;
803 1.1 jdolecek }
804 1.1 jdolecek
805 1.1 jdolecek /*
806 1.1 jdolecek * Allocate a cluster to hold the about to be created directory.
807 1.1 jdolecek */
808 1.110 thorpej error = msdosfs_clusteralloc(pmp, 0, 1, &newcluster, NULL);
809 1.1 jdolecek if (error)
810 1.1 jdolecek goto bad2;
811 1.1 jdolecek
812 1.1 jdolecek memset(&ndirent, 0, sizeof(ndirent));
813 1.1 jdolecek ndirent.de_pmp = pmp;
814 1.1 jdolecek ndirent.de_flag = DE_ACCESS | DE_CREATE | DE_UPDATE;
815 1.20 christos DETIMES(&ndirent, NULL, NULL, NULL, pmp->pm_gmtoff);
816 1.1 jdolecek
817 1.1 jdolecek /*
818 1.1 jdolecek * Now fill the cluster with the "." and ".." entries. And write
819 1.1 jdolecek * the cluster to disk. This way it is there for the parent
820 1.1 jdolecek * directory to be pointing at if there were a crash.
821 1.1 jdolecek */
822 1.1 jdolecek bn = cntobn(pmp, newcluster);
823 1.52 hannken lbn = de_bn2kb(pmp, bn);
824 1.1 jdolecek /* always succeeds */
825 1.52 hannken bp = getblk(pmp->pm_devvp, lbn, pmp->pm_bpcluster, 0, 0);
826 1.1 jdolecek memset(bp->b_data, 0, pmp->pm_bpcluster);
827 1.1 jdolecek memcpy(bp->b_data, &dosdirtemplate, sizeof dosdirtemplate);
828 1.1 jdolecek denp = (struct direntry *)bp->b_data;
829 1.1 jdolecek putushort(denp[0].deStartCluster, newcluster);
830 1.1 jdolecek putushort(denp[0].deCDate, ndirent.de_CDate);
831 1.1 jdolecek putushort(denp[0].deCTime, ndirent.de_CTime);
832 1.1 jdolecek denp[0].deCHundredth = ndirent.de_CHun;
833 1.1 jdolecek putushort(denp[0].deADate, ndirent.de_ADate);
834 1.1 jdolecek putushort(denp[0].deMDate, ndirent.de_MDate);
835 1.1 jdolecek putushort(denp[0].deMTime, ndirent.de_MTime);
836 1.1 jdolecek pcl = pdep->de_StartCluster;
837 1.1 jdolecek if (FAT32(pmp) && pcl == pmp->pm_rootdirblk)
838 1.1 jdolecek pcl = 0;
839 1.1 jdolecek putushort(denp[1].deStartCluster, pcl);
840 1.1 jdolecek putushort(denp[1].deCDate, ndirent.de_CDate);
841 1.1 jdolecek putushort(denp[1].deCTime, ndirent.de_CTime);
842 1.1 jdolecek denp[1].deCHundredth = ndirent.de_CHun;
843 1.1 jdolecek putushort(denp[1].deADate, ndirent.de_ADate);
844 1.1 jdolecek putushort(denp[1].deMDate, ndirent.de_MDate);
845 1.1 jdolecek putushort(denp[1].deMTime, ndirent.de_MTime);
846 1.1 jdolecek if (FAT32(pmp)) {
847 1.1 jdolecek putushort(denp[0].deHighClust, newcluster >> 16);
848 1.1 jdolecek putushort(denp[1].deHighClust, pdep->de_StartCluster >> 16);
849 1.22 christos } else {
850 1.22 christos putushort(denp[0].deHighClust, 0);
851 1.22 christos putushort(denp[1].deHighClust, 0);
852 1.1 jdolecek }
853 1.1 jdolecek
854 1.1 jdolecek if (async)
855 1.1 jdolecek bdwrite(bp);
856 1.1 jdolecek else if ((error = bwrite(bp)) != 0)
857 1.1 jdolecek goto bad;
858 1.1 jdolecek
859 1.1 jdolecek /*
860 1.1 jdolecek * Now build up a directory entry pointing to the newly allocated
861 1.1 jdolecek * cluster. This will be written to an empty slot in the parent
862 1.1 jdolecek * directory.
863 1.1 jdolecek */
864 1.110 thorpej if ((error = msdosfs_uniqdosname(pdep, cnp, ndirent.de_Name)) != 0)
865 1.1 jdolecek goto bad;
866 1.1 jdolecek
867 1.1 jdolecek ndirent.de_Attributes = ATTR_DIRECTORY;
868 1.1 jdolecek ndirent.de_StartCluster = newcluster;
869 1.1 jdolecek ndirent.de_FileSize = 0;
870 1.1 jdolecek ndirent.de_dev = pdep->de_dev;
871 1.1 jdolecek ndirent.de_devvp = pdep->de_devvp;
872 1.110 thorpej if ((error = msdosfs_createde(&ndirent, pdep, &pdep->de_crap, &dep,
873 1.110 thorpej cnp)) != 0)
874 1.1 jdolecek goto bad;
875 1.1 jdolecek *ap->a_vpp = DETOV(dep);
876 1.1 jdolecek return (0);
877 1.1 jdolecek
878 1.1 jdolecek bad:
879 1.110 thorpej msdosfs_clusterfree(pmp, newcluster, NULL);
880 1.1 jdolecek bad2:
881 1.1 jdolecek return (error);
882 1.1 jdolecek }
883 1.1 jdolecek
884 1.1 jdolecek int
885 1.58 dsl msdosfs_rmdir(void *v)
886 1.1 jdolecek {
887 1.98 riastrad struct vop_rmdir_v2_args /* {
888 1.1 jdolecek struct vnode *a_dvp;
889 1.1 jdolecek struct vnode *a_vp;
890 1.1 jdolecek struct componentname *a_cnp;
891 1.1 jdolecek } */ *ap = v;
892 1.1 jdolecek struct vnode *vp = ap->a_vp;
893 1.1 jdolecek struct vnode *dvp = ap->a_dvp;
894 1.1 jdolecek struct componentname *cnp = ap->a_cnp;
895 1.1 jdolecek struct denode *ip, *dp;
896 1.1 jdolecek int error;
897 1.1 jdolecek
898 1.1 jdolecek ip = VTODE(vp);
899 1.1 jdolecek dp = VTODE(dvp);
900 1.1 jdolecek /*
901 1.1 jdolecek * No rmdir "." please.
902 1.1 jdolecek */
903 1.1 jdolecek if (dp == ip) {
904 1.98 riastrad vrele(vp);
905 1.1 jdolecek return (EINVAL);
906 1.1 jdolecek }
907 1.1 jdolecek /*
908 1.1 jdolecek * Verify the directory is empty (and valid).
909 1.1 jdolecek * (Rmdir ".." won't be valid since
910 1.1 jdolecek * ".." will contain a reference to
911 1.1 jdolecek * the current directory and thus be
912 1.1 jdolecek * non-empty.)
913 1.1 jdolecek */
914 1.1 jdolecek error = 0;
915 1.110 thorpej if (!msdosfs_dosdirempty(ip) || ip->de_flag & DE_RENAME) {
916 1.1 jdolecek error = ENOTEMPTY;
917 1.1 jdolecek goto out;
918 1.1 jdolecek }
919 1.1 jdolecek /*
920 1.1 jdolecek * Delete the entry from the directory. For dos filesystems this
921 1.1 jdolecek * gets rid of the directory entry on disk, the in memory copy
922 1.1 jdolecek * still exists but the de_refcnt is <= 0. This prevents it from
923 1.1 jdolecek * being found by deget(). When the vput() on dep is done we give
924 1.1 jdolecek * up access and eventually msdosfs_reclaim() will be called which
925 1.1 jdolecek * will remove it from the denode cache.
926 1.1 jdolecek */
927 1.110 thorpej if ((error = msdosfs_removede(dp, ip, &dp->de_crap)) != 0)
928 1.1 jdolecek goto out;
929 1.1 jdolecek /*
930 1.1 jdolecek * This is where we decrement the link count in the parent
931 1.1 jdolecek * directory. Since dos filesystems don't do this we just purge
932 1.1 jdolecek * the name cache and let go of the parent directory denode.
933 1.1 jdolecek */
934 1.1 jdolecek cache_purge(dvp);
935 1.1 jdolecek /*
936 1.1 jdolecek * Truncate the directory that is being deleted.
937 1.1 jdolecek */
938 1.110 thorpej error = msdosfs_detrunc(ip, (u_long)0, IO_SYNC, cnp->cn_cred);
939 1.1 jdolecek cache_purge(vp);
940 1.1 jdolecek out:
941 1.1 jdolecek vput(vp);
942 1.1 jdolecek return (error);
943 1.1 jdolecek }
944 1.1 jdolecek
945 1.1 jdolecek int
946 1.58 dsl msdosfs_readdir(void *v)
947 1.1 jdolecek {
948 1.1 jdolecek struct vop_readdir_args /* {
949 1.1 jdolecek struct vnode *a_vp;
950 1.1 jdolecek struct uio *a_uio;
951 1.28 elad kauth_cred_t a_cred;
952 1.1 jdolecek int *a_eofflag;
953 1.1 jdolecek off_t **a_cookies;
954 1.1 jdolecek int *a_ncookies;
955 1.1 jdolecek } */ *ap = v;
956 1.1 jdolecek int error = 0;
957 1.1 jdolecek int diff;
958 1.1 jdolecek long n;
959 1.1 jdolecek int blsize;
960 1.1 jdolecek long on;
961 1.1 jdolecek long lost;
962 1.1 jdolecek long count;
963 1.1 jdolecek u_long cn;
964 1.19 christos ino_t fileno;
965 1.1 jdolecek u_long dirsperblk;
966 1.1 jdolecek long bias = 0;
967 1.1 jdolecek daddr_t bn, lbn;
968 1.1 jdolecek struct buf *bp;
969 1.1 jdolecek struct denode *dep = VTODE(ap->a_vp);
970 1.1 jdolecek struct msdosfsmount *pmp = dep->de_pmp;
971 1.1 jdolecek struct direntry *dentp;
972 1.41 rumble struct dirent *dirbuf;
973 1.1 jdolecek struct uio *uio = ap->a_uio;
974 1.1 jdolecek off_t *cookies = NULL;
975 1.1 jdolecek int ncookies = 0, nc = 0;
976 1.1 jdolecek off_t offset, uio_off;
977 1.1 jdolecek int chksum = -1;
978 1.95 christos uint16_t namlen;
979 1.1 jdolecek
980 1.1 jdolecek #ifdef MSDOSFS_DEBUG
981 1.1 jdolecek printf("msdosfs_readdir(): vp %p, uio %p, cred %p, eofflagp %p\n",
982 1.1 jdolecek ap->a_vp, uio, ap->a_cred, ap->a_eofflag);
983 1.1 jdolecek #endif
984 1.1 jdolecek
985 1.1 jdolecek /*
986 1.1 jdolecek * msdosfs_readdir() won't operate properly on regular files since
987 1.1 jdolecek * it does i/o only with the filesystem vnode, and hence can
988 1.1 jdolecek * retrieve the wrong block from the buffer cache for a plain file.
989 1.1 jdolecek * So, fail attempts to readdir() on a plain file.
990 1.1 jdolecek */
991 1.1 jdolecek if ((dep->de_Attributes & ATTR_DIRECTORY) == 0)
992 1.1 jdolecek return (ENOTDIR);
993 1.1 jdolecek
994 1.1 jdolecek /*
995 1.1 jdolecek * If the user buffer is smaller than the size of one dos directory
996 1.1 jdolecek * entry or the file offset is not a multiple of the size of a
997 1.1 jdolecek * directory entry, then we fail the read.
998 1.1 jdolecek */
999 1.1 jdolecek count = uio->uio_resid & ~(sizeof(struct direntry) - 1);
1000 1.1 jdolecek offset = uio->uio_offset;
1001 1.1 jdolecek if (count < sizeof(struct direntry) ||
1002 1.1 jdolecek (offset & (sizeof(struct direntry) - 1)))
1003 1.1 jdolecek return (EINVAL);
1004 1.1 jdolecek lost = uio->uio_resid - count;
1005 1.1 jdolecek uio->uio_resid = count;
1006 1.1 jdolecek uio_off = uio->uio_offset;
1007 1.41 rumble
1008 1.64 hannken
1009 1.41 rumble /* Allocate a temporary dirent buffer. */
1010 1.41 rumble dirbuf = malloc(sizeof(struct dirent), M_MSDOSFSTMP, M_WAITOK | M_ZERO);
1011 1.1 jdolecek
1012 1.1 jdolecek if (ap->a_ncookies) {
1013 1.40 rumble nc = uio->uio_resid / _DIRENT_MINSIZE((struct dirent *)0);
1014 1.1 jdolecek cookies = malloc(nc * sizeof (off_t), M_TEMP, M_WAITOK);
1015 1.1 jdolecek *ap->a_cookies = cookies;
1016 1.1 jdolecek }
1017 1.1 jdolecek
1018 1.1 jdolecek dirsperblk = pmp->pm_BytesPerSec / sizeof(struct direntry);
1019 1.1 jdolecek
1020 1.1 jdolecek /*
1021 1.1 jdolecek * If they are reading from the root directory then, we simulate
1022 1.1 jdolecek * the . and .. entries since these don't exist in the root
1023 1.1 jdolecek * directory. We also set the offset bias to make up for having to
1024 1.1 jdolecek * simulate these entries. By this I mean that at file offset 64 we
1025 1.1 jdolecek * read the first entry in the root directory that lives on disk.
1026 1.1 jdolecek */
1027 1.1 jdolecek if (dep->de_StartCluster == MSDOSFSROOT
1028 1.1 jdolecek || (FAT32(pmp) && dep->de_StartCluster == pmp->pm_rootdirblk)) {
1029 1.1 jdolecek #if 0
1030 1.34 scw printf("msdosfs_readdir(): going after . or .. in root dir, "
1031 1.34 scw "offset %" PRIu64 "\n", offset);
1032 1.1 jdolecek #endif
1033 1.1 jdolecek bias = 2 * sizeof(struct direntry);
1034 1.1 jdolecek if (offset < bias) {
1035 1.1 jdolecek for (n = (int)offset / sizeof(struct direntry);
1036 1.1 jdolecek n < 2; n++) {
1037 1.1 jdolecek if (FAT32(pmp))
1038 1.41 rumble dirbuf->d_fileno = cntobn(pmp,
1039 1.19 christos (ino_t)pmp->pm_rootdirblk)
1040 1.19 christos * dirsperblk;
1041 1.1 jdolecek else
1042 1.41 rumble dirbuf->d_fileno = 1;
1043 1.41 rumble dirbuf->d_type = DT_DIR;
1044 1.1 jdolecek switch (n) {
1045 1.1 jdolecek case 0:
1046 1.41 rumble dirbuf->d_namlen = 1;
1047 1.41 rumble strlcpy(dirbuf->d_name, ".",
1048 1.41 rumble sizeof(dirbuf->d_name));
1049 1.1 jdolecek break;
1050 1.1 jdolecek case 1:
1051 1.41 rumble dirbuf->d_namlen = 2;
1052 1.41 rumble strlcpy(dirbuf->d_name, "..",
1053 1.41 rumble sizeof(dirbuf->d_name));
1054 1.1 jdolecek break;
1055 1.1 jdolecek }
1056 1.41 rumble dirbuf->d_reclen = _DIRENT_SIZE(dirbuf);
1057 1.41 rumble if (uio->uio_resid < dirbuf->d_reclen)
1058 1.1 jdolecek goto out;
1059 1.41 rumble error = uiomove(dirbuf, dirbuf->d_reclen, uio);
1060 1.1 jdolecek if (error)
1061 1.1 jdolecek goto out;
1062 1.1 jdolecek offset += sizeof(struct direntry);
1063 1.1 jdolecek uio_off = offset;
1064 1.1 jdolecek if (cookies) {
1065 1.1 jdolecek *cookies++ = offset;
1066 1.1 jdolecek ncookies++;
1067 1.1 jdolecek if (ncookies >= nc)
1068 1.1 jdolecek goto out;
1069 1.1 jdolecek }
1070 1.1 jdolecek }
1071 1.1 jdolecek }
1072 1.1 jdolecek }
1073 1.1 jdolecek
1074 1.1 jdolecek while (uio->uio_resid > 0) {
1075 1.1 jdolecek lbn = de_cluster(pmp, offset - bias);
1076 1.1 jdolecek on = (offset - bias) & pmp->pm_crbomask;
1077 1.1 jdolecek n = MIN(pmp->pm_bpcluster - on, uio->uio_resid);
1078 1.1 jdolecek diff = dep->de_FileSize - (offset - bias);
1079 1.1 jdolecek if (diff <= 0)
1080 1.1 jdolecek break;
1081 1.1 jdolecek n = MIN(n, diff);
1082 1.110 thorpej if ((error = msdosfs_pcbmap(dep, lbn, &bn, &cn, &blsize)) != 0)
1083 1.1 jdolecek break;
1084 1.34 scw error = bread(pmp->pm_devvp, de_bn2kb(pmp, bn), blsize,
1085 1.92 maxv 0, &bp);
1086 1.1 jdolecek if (error) {
1087 1.64 hannken goto bad;
1088 1.1 jdolecek }
1089 1.1 jdolecek n = MIN(n, blsize - bp->b_resid);
1090 1.1 jdolecek
1091 1.1 jdolecek /*
1092 1.1 jdolecek * Convert from dos directory entries to fs-independent
1093 1.1 jdolecek * directory entries.
1094 1.1 jdolecek */
1095 1.38 christos for (dentp = (struct direntry *)((char *)bp->b_data + on);
1096 1.38 christos (char *)dentp < (char *)bp->b_data + on + n;
1097 1.1 jdolecek dentp++, offset += sizeof(struct direntry)) {
1098 1.1 jdolecek #if 0
1099 1.1 jdolecek
1100 1.1 jdolecek printf("rd: dentp %08x prev %08x crnt %08x deName %02x attr %02x\n",
1101 1.1 jdolecek dentp, prev, crnt, dentp->deName[0], dentp->deAttributes);
1102 1.1 jdolecek #endif
1103 1.1 jdolecek /*
1104 1.1 jdolecek * If this is an unused entry, we can stop.
1105 1.1 jdolecek */
1106 1.1 jdolecek if (dentp->deName[0] == SLOT_EMPTY) {
1107 1.42 ad brelse(bp, 0);
1108 1.1 jdolecek goto out;
1109 1.1 jdolecek }
1110 1.1 jdolecek /*
1111 1.1 jdolecek * Skip deleted entries.
1112 1.1 jdolecek */
1113 1.1 jdolecek if (dentp->deName[0] == SLOT_DELETED) {
1114 1.1 jdolecek chksum = -1;
1115 1.1 jdolecek continue;
1116 1.1 jdolecek }
1117 1.1 jdolecek
1118 1.1 jdolecek /*
1119 1.1 jdolecek * Handle Win95 long directory entries
1120 1.1 jdolecek */
1121 1.1 jdolecek if (dentp->deAttributes == ATTR_WIN95) {
1122 1.1 jdolecek if (pmp->pm_flags & MSDOSFSMNT_SHORTNAME)
1123 1.1 jdolecek continue;
1124 1.110 thorpej chksum =
1125 1.110 thorpej msdosfs_win2unixfn((struct winentry *)dentp,
1126 1.95 christos dirbuf, chksum, &namlen,
1127 1.95 christos pmp->pm_flags & MSDOSFSMNT_UTF8);
1128 1.96 christos if (chksum != -1)
1129 1.96 christos dirbuf->d_namlen = namlen;
1130 1.1 jdolecek continue;
1131 1.1 jdolecek }
1132 1.1 jdolecek
1133 1.1 jdolecek /*
1134 1.1 jdolecek * Skip volume labels
1135 1.1 jdolecek */
1136 1.1 jdolecek if (dentp->deAttributes & ATTR_VOLUME) {
1137 1.1 jdolecek chksum = -1;
1138 1.1 jdolecek continue;
1139 1.1 jdolecek }
1140 1.1 jdolecek /*
1141 1.1 jdolecek * This computation of d_fileno must match
1142 1.1 jdolecek * the computation of va_fileid in
1143 1.1 jdolecek * msdosfs_getattr.
1144 1.1 jdolecek */
1145 1.1 jdolecek if (dentp->deAttributes & ATTR_DIRECTORY) {
1146 1.1 jdolecek fileno = getushort(dentp->deStartCluster);
1147 1.1 jdolecek if (FAT32(pmp))
1148 1.19 christos fileno |= ((ino_t)getushort(dentp->deHighClust)) << 16;
1149 1.1 jdolecek /* if this is the root directory */
1150 1.1 jdolecek if (fileno == MSDOSFSROOT)
1151 1.1 jdolecek if (FAT32(pmp))
1152 1.1 jdolecek fileno = cntobn(pmp,
1153 1.19 christos (ino_t)pmp->pm_rootdirblk)
1154 1.19 christos * dirsperblk;
1155 1.1 jdolecek else
1156 1.1 jdolecek fileno = 1;
1157 1.1 jdolecek else
1158 1.1 jdolecek fileno = cntobn(pmp, fileno) * dirsperblk;
1159 1.41 rumble dirbuf->d_fileno = fileno;
1160 1.41 rumble dirbuf->d_type = DT_DIR;
1161 1.1 jdolecek } else {
1162 1.41 rumble dirbuf->d_fileno =
1163 1.41 rumble offset / sizeof(struct direntry);
1164 1.41 rumble dirbuf->d_type = DT_REG;
1165 1.1 jdolecek }
1166 1.111 mrg if (chksum != msdosfs_winChksum(dentp->deName)) {
1167 1.111 mrg char deName[11];
1168 1.111 mrg
1169 1.111 mrg memcpy(deName, dentp->deName,
1170 1.111 mrg sizeof dentp->deName);
1171 1.111 mrg memset(&deName[8], 0, 3);
1172 1.110 thorpej dirbuf->d_namlen =
1173 1.111 mrg msdosfs_dos2unixfn(deName,
1174 1.111 mrg (u_char *)dirbuf->d_name,
1175 1.111 mrg pmp->pm_flags & MSDOSFSMNT_SHORTNAME);
1176 1.111 mrg } else
1177 1.41 rumble dirbuf->d_name[dirbuf->d_namlen] = 0;
1178 1.95 christos namlen = dirbuf->d_namlen;
1179 1.1 jdolecek chksum = -1;
1180 1.41 rumble dirbuf->d_reclen = _DIRENT_SIZE(dirbuf);
1181 1.41 rumble if (uio->uio_resid < dirbuf->d_reclen) {
1182 1.42 ad brelse(bp, 0);
1183 1.1 jdolecek goto out;
1184 1.1 jdolecek }
1185 1.41 rumble error = uiomove(dirbuf, dirbuf->d_reclen, uio);
1186 1.1 jdolecek if (error) {
1187 1.42 ad brelse(bp, 0);
1188 1.1 jdolecek goto out;
1189 1.1 jdolecek }
1190 1.1 jdolecek uio_off = offset + sizeof(struct direntry);
1191 1.1 jdolecek if (cookies) {
1192 1.1 jdolecek *cookies++ = offset + sizeof(struct direntry);
1193 1.1 jdolecek ncookies++;
1194 1.1 jdolecek if (ncookies >= nc) {
1195 1.42 ad brelse(bp, 0);
1196 1.1 jdolecek goto out;
1197 1.1 jdolecek }
1198 1.1 jdolecek }
1199 1.1 jdolecek }
1200 1.42 ad brelse(bp, 0);
1201 1.1 jdolecek }
1202 1.1 jdolecek
1203 1.1 jdolecek out:
1204 1.1 jdolecek uio->uio_offset = uio_off;
1205 1.1 jdolecek uio->uio_resid += lost;
1206 1.1 jdolecek if (dep->de_FileSize - (offset - bias) <= 0)
1207 1.1 jdolecek *ap->a_eofflag = 1;
1208 1.1 jdolecek else
1209 1.1 jdolecek *ap->a_eofflag = 0;
1210 1.1 jdolecek
1211 1.1 jdolecek if (ap->a_ncookies) {
1212 1.1 jdolecek if (error) {
1213 1.1 jdolecek free(*ap->a_cookies, M_TEMP);
1214 1.1 jdolecek *ap->a_ncookies = 0;
1215 1.1 jdolecek *ap->a_cookies = NULL;
1216 1.1 jdolecek } else
1217 1.1 jdolecek *ap->a_ncookies = ncookies;
1218 1.1 jdolecek }
1219 1.64 hannken
1220 1.64 hannken bad:
1221 1.41 rumble free(dirbuf, M_MSDOSFSTMP);
1222 1.1 jdolecek return (error);
1223 1.1 jdolecek }
1224 1.1 jdolecek
1225 1.1 jdolecek /*
1226 1.1 jdolecek * vp - address of vnode file the file
1227 1.1 jdolecek * bn - which cluster we are interested in mapping to a filesystem block number.
1228 1.1 jdolecek * vpp - returns the vnode for the block special file holding the filesystem
1229 1.1 jdolecek * containing the file of interest
1230 1.1 jdolecek * bnp - address of where to return the filesystem relative block number
1231 1.1 jdolecek */
1232 1.1 jdolecek int
1233 1.58 dsl msdosfs_bmap(void *v)
1234 1.1 jdolecek {
1235 1.1 jdolecek struct vop_bmap_args /* {
1236 1.1 jdolecek struct vnode *a_vp;
1237 1.1 jdolecek daddr_t a_bn;
1238 1.1 jdolecek struct vnode **a_vpp;
1239 1.1 jdolecek daddr_t *a_bnp;
1240 1.1 jdolecek int *a_runp;
1241 1.1 jdolecek } */ *ap = v;
1242 1.1 jdolecek struct denode *dep = VTODE(ap->a_vp);
1243 1.47 christos int run, maxrun;
1244 1.47 christos daddr_t runbn;
1245 1.34 scw int status;
1246 1.1 jdolecek
1247 1.1 jdolecek if (ap->a_vpp != NULL)
1248 1.1 jdolecek *ap->a_vpp = dep->de_devvp;
1249 1.1 jdolecek if (ap->a_bnp == NULL)
1250 1.1 jdolecek return (0);
1251 1.110 thorpej status = msdosfs_pcbmap(dep, ap->a_bn, ap->a_bnp, 0, 0);
1252 1.47 christos
1253 1.47 christos /*
1254 1.47 christos * From FreeBSD:
1255 1.47 christos * A little kludgy, but we loop calling pcbmap until we
1256 1.47 christos * reach the end of the contiguous piece, or reach MAXPHYS.
1257 1.47 christos * Since it reduces disk I/Os, the "wasted" CPU is put to
1258 1.47 christos * good use (4 to 5 fold sequential read I/O improvement on USB
1259 1.47 christos * drives).
1260 1.47 christos */
1261 1.47 christos if (ap->a_runp != NULL) {
1262 1.47 christos /* taken from ufs_bmap */
1263 1.47 christos maxrun = ulmin(MAXPHYS / dep->de_pmp->pm_bpcluster - 1,
1264 1.47 christos dep->de_pmp->pm_maxcluster - ap->a_bn);
1265 1.47 christos for (run = 1; run <= maxrun; run++) {
1266 1.110 thorpej if (msdosfs_pcbmap(dep, ap->a_bn + run, &runbn, NULL,
1267 1.110 thorpej NULL) != 0 || runbn !=
1268 1.47 christos *ap->a_bnp + de_cn2bn(dep->de_pmp, run))
1269 1.47 christos break;
1270 1.47 christos }
1271 1.47 christos *ap->a_runp = run - 1;
1272 1.1 jdolecek }
1273 1.47 christos
1274 1.34 scw /*
1275 1.34 scw * We need to scale *ap->a_bnp by sector_size/DEV_BSIZE
1276 1.34 scw */
1277 1.34 scw *ap->a_bnp = de_bn2kb(dep->de_pmp, *ap->a_bnp);
1278 1.34 scw return status;
1279 1.1 jdolecek }
1280 1.1 jdolecek
1281 1.1 jdolecek int
1282 1.58 dsl msdosfs_strategy(void *v)
1283 1.1 jdolecek {
1284 1.1 jdolecek struct vop_strategy_args /* {
1285 1.9 hannken struct vnode *a_vp;
1286 1.1 jdolecek struct buf *a_bp;
1287 1.1 jdolecek } */ *ap = v;
1288 1.9 hannken struct vnode *vp = ap->a_vp;
1289 1.1 jdolecek struct buf *bp = ap->a_bp;
1290 1.1 jdolecek struct denode *dep = VTODE(bp->b_vp);
1291 1.1 jdolecek int error = 0;
1292 1.1 jdolecek
1293 1.9 hannken if (vp->v_type == VBLK || vp->v_type == VCHR)
1294 1.1 jdolecek panic("msdosfs_strategy: spec");
1295 1.1 jdolecek /*
1296 1.1 jdolecek * If we don't already know the filesystem relative block number
1297 1.1 jdolecek * then get it using pcbmap(). If pcbmap() returns the block
1298 1.1 jdolecek * number as -1 then we've got a hole in the file. DOS filesystems
1299 1.1 jdolecek * don't allow files with holes, so we shouldn't ever see this.
1300 1.1 jdolecek */
1301 1.1 jdolecek if (bp->b_blkno == bp->b_lblkno) {
1302 1.110 thorpej error = msdosfs_pcbmap(dep, de_bn2cn(dep->de_pmp, bp->b_lblkno),
1303 1.1 jdolecek &bp->b_blkno, 0, 0);
1304 1.1 jdolecek if (error)
1305 1.1 jdolecek bp->b_blkno = -1;
1306 1.1 jdolecek if (bp->b_blkno == -1)
1307 1.1 jdolecek clrbuf(bp);
1308 1.34 scw else
1309 1.34 scw bp->b_blkno = de_bn2kb(dep->de_pmp, bp->b_blkno);
1310 1.1 jdolecek }
1311 1.1 jdolecek if (bp->b_blkno == -1) {
1312 1.1 jdolecek biodone(bp);
1313 1.1 jdolecek return (error);
1314 1.1 jdolecek }
1315 1.1 jdolecek
1316 1.1 jdolecek /*
1317 1.1 jdolecek * Read/write the block from/to the disk that contains the desired
1318 1.1 jdolecek * file block.
1319 1.1 jdolecek */
1320 1.1 jdolecek
1321 1.1 jdolecek vp = dep->de_devvp;
1322 1.8 hannken return (VOP_STRATEGY(vp, bp));
1323 1.1 jdolecek }
1324 1.1 jdolecek
1325 1.1 jdolecek int
1326 1.58 dsl msdosfs_print(void *v)
1327 1.1 jdolecek {
1328 1.1 jdolecek struct vop_print_args /* {
1329 1.1 jdolecek struct vnode *vp;
1330 1.1 jdolecek } */ *ap = v;
1331 1.1 jdolecek struct denode *dep = VTODE(ap->a_vp);
1332 1.1 jdolecek
1333 1.1 jdolecek printf(
1334 1.1 jdolecek "tag VT_MSDOSFS, startcluster %ld, dircluster %ld, diroffset %ld ",
1335 1.1 jdolecek dep->de_StartCluster, dep->de_dirclust, dep->de_diroffset);
1336 1.56 christos printf(" dev %llu, %llu ", (unsigned long long)major(dep->de_dev),
1337 1.56 christos (unsigned long long)minor(dep->de_dev));
1338 1.1 jdolecek printf("\n");
1339 1.1 jdolecek return (0);
1340 1.1 jdolecek }
1341 1.1 jdolecek
1342 1.1 jdolecek int
1343 1.58 dsl msdosfs_advlock(void *v)
1344 1.1 jdolecek {
1345 1.1 jdolecek struct vop_advlock_args /* {
1346 1.1 jdolecek struct vnode *a_vp;
1347 1.11 jrf void *a_id;
1348 1.1 jdolecek int a_op;
1349 1.1 jdolecek struct flock *a_fl;
1350 1.1 jdolecek int a_flags;
1351 1.1 jdolecek } */ *ap = v;
1352 1.1 jdolecek struct denode *dep = VTODE(ap->a_vp);
1353 1.1 jdolecek
1354 1.1 jdolecek return lf_advlock(ap, &dep->de_lockf, dep->de_FileSize);
1355 1.1 jdolecek }
1356 1.1 jdolecek
1357 1.1 jdolecek int
1358 1.58 dsl msdosfs_pathconf(void *v)
1359 1.1 jdolecek {
1360 1.1 jdolecek struct vop_pathconf_args /* {
1361 1.1 jdolecek struct vnode *a_vp;
1362 1.1 jdolecek int a_name;
1363 1.1 jdolecek register_t *a_retval;
1364 1.1 jdolecek } */ *ap = v;
1365 1.1 jdolecek
1366 1.1 jdolecek switch (ap->a_name) {
1367 1.1 jdolecek case _PC_LINK_MAX:
1368 1.1 jdolecek *ap->a_retval = 1;
1369 1.1 jdolecek return (0);
1370 1.1 jdolecek case _PC_NAME_MAX:
1371 1.12 jdolecek *ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_namemax;
1372 1.1 jdolecek return (0);
1373 1.1 jdolecek case _PC_PATH_MAX:
1374 1.1 jdolecek *ap->a_retval = PATH_MAX;
1375 1.1 jdolecek return (0);
1376 1.1 jdolecek case _PC_CHOWN_RESTRICTED:
1377 1.1 jdolecek *ap->a_retval = 1;
1378 1.1 jdolecek return (0);
1379 1.1 jdolecek case _PC_NO_TRUNC:
1380 1.78 hannken *ap->a_retval = 1;
1381 1.1 jdolecek return (0);
1382 1.1 jdolecek case _PC_SYNC_IO:
1383 1.1 jdolecek *ap->a_retval = 1;
1384 1.1 jdolecek return (0);
1385 1.1 jdolecek case _PC_FILESIZEBITS:
1386 1.1 jdolecek *ap->a_retval = 32;
1387 1.1 jdolecek return (0);
1388 1.1 jdolecek default:
1389 1.104 christos return genfs_pathconf(ap);
1390 1.1 jdolecek }
1391 1.1 jdolecek /* NOTREACHED */
1392 1.1 jdolecek }
1393 1.1 jdolecek
1394 1.21 yamt int
1395 1.58 dsl msdosfs_fsync(void *v)
1396 1.21 yamt {
1397 1.21 yamt struct vop_fsync_args /* {
1398 1.21 yamt struct vnode *a_vp;
1399 1.28 elad kauth_cred_t a_cred;
1400 1.21 yamt int a_flags;
1401 1.21 yamt off_t offlo;
1402 1.21 yamt off_t offhi;
1403 1.21 yamt } */ *ap = v;
1404 1.21 yamt struct vnode *vp = ap->a_vp;
1405 1.21 yamt int wait;
1406 1.21 yamt int error;
1407 1.21 yamt
1408 1.21 yamt wait = (ap->a_flags & FSYNC_WAIT) != 0;
1409 1.83 chs error = vflushbuf(vp, ap->a_flags);
1410 1.75 hannken if (error == 0 && (ap->a_flags & FSYNC_DATAONLY) == 0)
1411 1.21 yamt error = msdosfs_update(vp, NULL, NULL, wait ? UPDATE_WAIT : 0);
1412 1.21 yamt
1413 1.21 yamt if (error == 0 && ap->a_flags & FSYNC_CACHE) {
1414 1.21 yamt struct denode *dep = VTODE(vp);
1415 1.21 yamt struct vnode *devvp = dep->de_devvp;
1416 1.21 yamt
1417 1.21 yamt int l = 0;
1418 1.21 yamt error = VOP_IOCTL(devvp, DIOCCACHESYNC, &l, FWRITE,
1419 1.44 pooka curlwp->l_cred);
1420 1.21 yamt }
1421 1.21 yamt
1422 1.21 yamt return (error);
1423 1.21 yamt }
1424 1.21 yamt
1425 1.20 christos void
1426 1.20 christos msdosfs_detimes(struct denode *dep, const struct timespec *acc,
1427 1.20 christos const struct timespec *mod, const struct timespec *cre, int gmtoff)
1428 1.20 christos {
1429 1.20 christos struct timespec *ts = NULL, tsb;
1430 1.20 christos
1431 1.20 christos KASSERT(dep->de_flag & (DE_UPDATE | DE_CREATE | DE_ACCESS));
1432 1.29 kardel /* XXX just call getnanotime early and use result if needed? */
1433 1.20 christos dep->de_flag |= DE_MODIFIED;
1434 1.20 christos if (dep->de_flag & DE_UPDATE) {
1435 1.29 kardel if (mod == NULL) {
1436 1.29 kardel getnanotime(&tsb);
1437 1.29 kardel mod = ts = &tsb;
1438 1.29 kardel }
1439 1.110 thorpej msdosfs_unix2dostime(mod, gmtoff, &dep->de_MDate,
1440 1.110 thorpej &dep->de_MTime, NULL);
1441 1.20 christos dep->de_Attributes |= ATTR_ARCHIVE;
1442 1.20 christos }
1443 1.20 christos if ((dep->de_pmp->pm_flags & MSDOSFSMNT_NOWIN95) == 0) {
1444 1.20 christos if (dep->de_flag & DE_ACCESS) {
1445 1.20 christos if (acc == NULL)
1446 1.29 kardel acc = ts == NULL ?
1447 1.29 kardel (getnanotime(&tsb), ts = &tsb) : ts;
1448 1.110 thorpej msdosfs_unix2dostime(acc, gmtoff, &dep->de_ADate,
1449 1.110 thorpej NULL, NULL);
1450 1.20 christos }
1451 1.20 christos if (dep->de_flag & DE_CREATE) {
1452 1.20 christos if (cre == NULL)
1453 1.29 kardel cre = ts == NULL ?
1454 1.29 kardel (getnanotime(&tsb), ts = &tsb) : ts;
1455 1.110 thorpej msdosfs_unix2dostime(cre, gmtoff, &dep->de_CDate,
1456 1.20 christos &dep->de_CTime, &dep->de_CHun);
1457 1.20 christos }
1458 1.20 christos }
1459 1.20 christos
1460 1.20 christos dep->de_flag &= ~(DE_UPDATE | DE_CREATE | DE_ACCESS);
1461 1.20 christos }
1462 1.20 christos
1463 1.1 jdolecek /* Global vfs data structures for msdosfs */
1464 1.18 xtraeme int (**msdosfs_vnodeop_p)(void *);
1465 1.1 jdolecek const struct vnodeopv_entry_desc msdosfs_vnodeop_entries[] = {
1466 1.1 jdolecek { &vop_default_desc, vn_default_error },
1467 1.105 dholland { &vop_parsepath_desc, genfs_parsepath }, /* parsepath */
1468 1.1 jdolecek { &vop_lookup_desc, msdosfs_lookup }, /* lookup */
1469 1.1 jdolecek { &vop_create_desc, msdosfs_create }, /* create */
1470 1.63 pooka { &vop_mknod_desc, genfs_eopnotsupp }, /* mknod */
1471 1.62 pooka { &vop_open_desc, genfs_nullop }, /* open */
1472 1.1 jdolecek { &vop_close_desc, msdosfs_close }, /* close */
1473 1.1 jdolecek { &vop_access_desc, msdosfs_access }, /* access */
1474 1.103 christos { &vop_accessx_desc, genfs_accessx }, /* accessx */
1475 1.1 jdolecek { &vop_getattr_desc, msdosfs_getattr }, /* getattr */
1476 1.1 jdolecek { &vop_setattr_desc, msdosfs_setattr }, /* setattr */
1477 1.1 jdolecek { &vop_read_desc, msdosfs_read }, /* read */
1478 1.1 jdolecek { &vop_write_desc, msdosfs_write }, /* write */
1479 1.91 dholland { &vop_fallocate_desc, genfs_eopnotsupp }, /* fallocate */
1480 1.91 dholland { &vop_fdiscard_desc, genfs_eopnotsupp }, /* fdiscard */
1481 1.1 jdolecek { &vop_fcntl_desc, genfs_fcntl }, /* fcntl */
1482 1.106 dholland { &vop_ioctl_desc, genfs_enoioctl }, /* ioctl */
1483 1.106 dholland { &vop_poll_desc, genfs_poll }, /* poll */
1484 1.1 jdolecek { &vop_kqfilter_desc, genfs_kqfilter }, /* kqfilter */
1485 1.106 dholland { &vop_revoke_desc, genfs_revoke }, /* revoke */
1486 1.106 dholland { &vop_mmap_desc, genfs_mmap }, /* mmap */
1487 1.1 jdolecek { &vop_fsync_desc, msdosfs_fsync }, /* fsync */
1488 1.106 dholland { &vop_seek_desc, genfs_seek }, /* seek */
1489 1.1 jdolecek { &vop_remove_desc, msdosfs_remove }, /* remove */
1490 1.63 pooka { &vop_link_desc, genfs_eopnotsupp }, /* link */
1491 1.1 jdolecek { &vop_rename_desc, msdosfs_rename }, /* rename */
1492 1.1 jdolecek { &vop_mkdir_desc, msdosfs_mkdir }, /* mkdir */
1493 1.1 jdolecek { &vop_rmdir_desc, msdosfs_rmdir }, /* rmdir */
1494 1.63 pooka { &vop_symlink_desc, genfs_eopnotsupp }, /* symlink */
1495 1.1 jdolecek { &vop_readdir_desc, msdosfs_readdir }, /* readdir */
1496 1.62 pooka { &vop_readlink_desc, genfs_einval }, /* readlink */
1497 1.106 dholland { &vop_abortop_desc, genfs_abortop }, /* abortop */
1498 1.1 jdolecek { &vop_inactive_desc, msdosfs_inactive }, /* inactive */
1499 1.1 jdolecek { &vop_reclaim_desc, msdosfs_reclaim }, /* reclaim */
1500 1.1 jdolecek { &vop_lock_desc, genfs_lock }, /* lock */
1501 1.1 jdolecek { &vop_unlock_desc, genfs_unlock }, /* unlock */
1502 1.1 jdolecek { &vop_bmap_desc, msdosfs_bmap }, /* bmap */
1503 1.1 jdolecek { &vop_strategy_desc, msdosfs_strategy }, /* strategy */
1504 1.1 jdolecek { &vop_print_desc, msdosfs_print }, /* print */
1505 1.1 jdolecek { &vop_islocked_desc, genfs_islocked }, /* islocked */
1506 1.1 jdolecek { &vop_pathconf_desc, msdosfs_pathconf }, /* pathconf */
1507 1.1 jdolecek { &vop_advlock_desc, msdosfs_advlock }, /* advlock */
1508 1.1 jdolecek { &vop_bwrite_desc, vn_bwrite }, /* bwrite */
1509 1.1 jdolecek { &vop_getpages_desc, genfs_getpages }, /* getpages */
1510 1.1 jdolecek { &vop_putpages_desc, genfs_putpages }, /* putpages */
1511 1.1 jdolecek { NULL, NULL }
1512 1.1 jdolecek };
1513 1.1 jdolecek const struct vnodeopv_desc msdosfs_vnodeop_opv_desc =
1514 1.1 jdolecek { &msdosfs_vnodeop_p, msdosfs_vnodeop_entries };
1515