ffs_vfsops.c revision 1.98.4.2 1 1.98.4.1 tv /* $NetBSD: ffs_vfsops.c,v 1.98.4.2 2003/09/24 11:02:14 tron Exp $ */
2 1.4 cgd
3 1.1 mycroft /*
4 1.1 mycroft * Copyright (c) 1989, 1991, 1993, 1994
5 1.1 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 mycroft *
7 1.1 mycroft * Redistribution and use in source and binary forms, with or without
8 1.1 mycroft * modification, are permitted provided that the following conditions
9 1.1 mycroft * are met:
10 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
11 1.1 mycroft * notice, this list of conditions and the following disclaimer.
12 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
14 1.1 mycroft * documentation and/or other materials provided with the distribution.
15 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
16 1.1 mycroft * must display the following acknowledgement:
17 1.1 mycroft * This product includes software developed by the University of
18 1.1 mycroft * California, Berkeley and its contributors.
19 1.1 mycroft * 4. Neither the name of the University nor the names of its contributors
20 1.1 mycroft * may be used to endorse or promote products derived from this software
21 1.1 mycroft * without specific prior written permission.
22 1.1 mycroft *
23 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 mycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 mycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 mycroft * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 mycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 mycroft * SUCH DAMAGE.
34 1.1 mycroft *
35 1.33 fvdl * @(#)ffs_vfsops.c 8.31 (Berkeley) 5/20/95
36 1.1 mycroft */
37 1.88 lukem
38 1.88 lukem #include <sys/cdefs.h>
39 1.98.4.1 tv __KERNEL_RCSID(0, "$NetBSD: ffs_vfsops.c,v 1.98.4.2 2003/09/24 11:02:14 tron Exp $");
40 1.36 scottr
41 1.81 mrg #if defined(_KERNEL_OPT)
42 1.45 thorpej #include "opt_ffs.h"
43 1.36 scottr #include "opt_quota.h"
44 1.41 jonathan #include "opt_compat_netbsd.h"
45 1.66 matt #include "opt_softdep.h"
46 1.37 scottr #endif
47 1.1 mycroft
48 1.1 mycroft #include <sys/param.h>
49 1.1 mycroft #include <sys/systm.h>
50 1.1 mycroft #include <sys/namei.h>
51 1.1 mycroft #include <sys/proc.h>
52 1.1 mycroft #include <sys/kernel.h>
53 1.1 mycroft #include <sys/vnode.h>
54 1.1 mycroft #include <sys/socket.h>
55 1.1 mycroft #include <sys/mount.h>
56 1.1 mycroft #include <sys/buf.h>
57 1.23 thorpej #include <sys/device.h>
58 1.1 mycroft #include <sys/mbuf.h>
59 1.1 mycroft #include <sys/file.h>
60 1.1 mycroft #include <sys/disklabel.h>
61 1.1 mycroft #include <sys/ioctl.h>
62 1.1 mycroft #include <sys/errno.h>
63 1.1 mycroft #include <sys/malloc.h>
64 1.43 thorpej #include <sys/pool.h>
65 1.29 fvdl #include <sys/lock.h>
66 1.33 fvdl #include <sys/sysctl.h>
67 1.1 mycroft
68 1.1 mycroft #include <miscfs/specfs/specdev.h>
69 1.1 mycroft
70 1.1 mycroft #include <ufs/ufs/quota.h>
71 1.1 mycroft #include <ufs/ufs/ufsmount.h>
72 1.1 mycroft #include <ufs/ufs/inode.h>
73 1.25 bouyer #include <ufs/ufs/dir.h>
74 1.1 mycroft #include <ufs/ufs/ufs_extern.h>
75 1.34 bouyer #include <ufs/ufs/ufs_bswap.h>
76 1.1 mycroft
77 1.1 mycroft #include <ufs/ffs/fs.h>
78 1.1 mycroft #include <ufs/ffs/ffs_extern.h>
79 1.1 mycroft
80 1.59 jdolecek /* how many times ffs_init() was called */
81 1.59 jdolecek int ffs_initcount = 0;
82 1.59 jdolecek
83 1.29 fvdl extern struct lock ufs_hashlock;
84 1.29 fvdl
85 1.32 thorpej extern struct vnodeopv_desc ffs_vnodeop_opv_desc;
86 1.32 thorpej extern struct vnodeopv_desc ffs_specop_opv_desc;
87 1.32 thorpej extern struct vnodeopv_desc ffs_fifoop_opv_desc;
88 1.32 thorpej
89 1.79 jdolecek const struct vnodeopv_desc * const ffs_vnodeopv_descs[] = {
90 1.32 thorpej &ffs_vnodeop_opv_desc,
91 1.32 thorpej &ffs_specop_opv_desc,
92 1.32 thorpej &ffs_fifoop_opv_desc,
93 1.32 thorpej NULL,
94 1.32 thorpej };
95 1.32 thorpej
96 1.17 mycroft struct vfsops ffs_vfsops = {
97 1.17 mycroft MOUNT_FFS,
98 1.1 mycroft ffs_mount,
99 1.1 mycroft ufs_start,
100 1.1 mycroft ffs_unmount,
101 1.1 mycroft ufs_root,
102 1.1 mycroft ufs_quotactl,
103 1.1 mycroft ffs_statfs,
104 1.1 mycroft ffs_sync,
105 1.1 mycroft ffs_vget,
106 1.1 mycroft ffs_fhtovp,
107 1.1 mycroft ffs_vptofh,
108 1.1 mycroft ffs_init,
109 1.86 chs ffs_reinit,
110 1.59 jdolecek ffs_done,
111 1.33 fvdl ffs_sysctl,
112 1.23 thorpej ffs_mountroot,
113 1.48 wrstuden ufs_check_export,
114 1.32 thorpej ffs_vnodeopv_descs,
115 1.1 mycroft };
116 1.1 mycroft
117 1.87 chs struct genfs_ops ffs_genfsops = {
118 1.87 chs ffs_gop_size,
119 1.87 chs ffs_gop_alloc,
120 1.87 chs genfs_gop_write,
121 1.87 chs };
122 1.87 chs
123 1.43 thorpej struct pool ffs_inode_pool;
124 1.43 thorpej
125 1.1 mycroft /*
126 1.33 fvdl * Called by main() when ffs is going to be mounted as root.
127 1.1 mycroft */
128 1.1 mycroft
129 1.19 christos int
130 1.1 mycroft ffs_mountroot()
131 1.1 mycroft {
132 1.33 fvdl struct fs *fs;
133 1.33 fvdl struct mount *mp;
134 1.1 mycroft struct proc *p = curproc; /* XXX */
135 1.1 mycroft struct ufsmount *ump;
136 1.1 mycroft int error;
137 1.23 thorpej
138 1.23 thorpej if (root_device->dv_class != DV_DISK)
139 1.23 thorpej return (ENODEV);
140 1.23 thorpej
141 1.1 mycroft /*
142 1.26 mrg * Get vnodes for rootdev.
143 1.1 mycroft */
144 1.26 mrg if (bdevvp(rootdev, &rootvp))
145 1.1 mycroft panic("ffs_mountroot: can't setup bdevvp's");
146 1.1 mycroft
147 1.51 wrstuden if ((error = vfs_rootmountalloc(MOUNT_FFS, "root_device", &mp))) {
148 1.51 wrstuden vrele(rootvp);
149 1.33 fvdl return (error);
150 1.51 wrstuden }
151 1.19 christos if ((error = ffs_mountfs(rootvp, mp, p)) != 0) {
152 1.33 fvdl mp->mnt_op->vfs_refcount--;
153 1.33 fvdl vfs_unbusy(mp);
154 1.1 mycroft free(mp, M_MOUNT);
155 1.51 wrstuden vrele(rootvp);
156 1.1 mycroft return (error);
157 1.1 mycroft }
158 1.33 fvdl simple_lock(&mountlist_slock);
159 1.11 mycroft CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
160 1.33 fvdl simple_unlock(&mountlist_slock);
161 1.1 mycroft ump = VFSTOUFS(mp);
162 1.1 mycroft fs = ump->um_fs;
163 1.42 perry memset(fs->fs_fsmnt, 0, sizeof(fs->fs_fsmnt));
164 1.33 fvdl (void)copystr(mp->mnt_stat.f_mntonname, fs->fs_fsmnt, MNAMELEN - 1, 0);
165 1.1 mycroft (void)ffs_statfs(mp, &mp->mnt_stat, p);
166 1.33 fvdl vfs_unbusy(mp);
167 1.1 mycroft inittodr(fs->fs_time);
168 1.1 mycroft return (0);
169 1.1 mycroft }
170 1.1 mycroft
171 1.1 mycroft /*
172 1.1 mycroft * VFS Operations.
173 1.1 mycroft *
174 1.1 mycroft * mount system call
175 1.1 mycroft */
176 1.1 mycroft int
177 1.1 mycroft ffs_mount(mp, path, data, ndp, p)
178 1.61 augustss struct mount *mp;
179 1.22 cgd const char *path;
180 1.22 cgd void *data;
181 1.1 mycroft struct nameidata *ndp;
182 1.1 mycroft struct proc *p;
183 1.1 mycroft {
184 1.1 mycroft struct vnode *devvp;
185 1.1 mycroft struct ufs_args args;
186 1.19 christos struct ufsmount *ump = NULL;
187 1.61 augustss struct fs *fs;
188 1.14 mycroft size_t size;
189 1.95 christos int error, flags, update;
190 1.9 mycroft mode_t accessmode;
191 1.1 mycroft
192 1.19 christos error = copyin(data, (caddr_t)&args, sizeof (struct ufs_args));
193 1.19 christos if (error)
194 1.1 mycroft return (error);
195 1.66 matt
196 1.66 matt #if !defined(SOFTDEP)
197 1.67 perseant mp->mnt_flag &= ~MNT_SOFTDEP;
198 1.66 matt #endif
199 1.66 matt
200 1.95 christos update = mp->mnt_flag & MNT_UPDATE;
201 1.95 christos
202 1.95 christos /* Check arguments */
203 1.95 christos if (update) {
204 1.95 christos /* Use the extant mount */
205 1.95 christos ump = VFSTOUFS(mp);
206 1.95 christos devvp = ump->um_devvp;
207 1.97 enami if (args.fspec == NULL)
208 1.97 enami vref(devvp);
209 1.95 christos } else {
210 1.95 christos /* New mounts must have a filename for the device */
211 1.95 christos if (args.fspec == NULL)
212 1.96 christos return (EINVAL);
213 1.95 christos }
214 1.95 christos
215 1.97 enami if (args.fspec != NULL) {
216 1.95 christos /*
217 1.95 christos * Look up the name and verify that it's sane.
218 1.95 christos */
219 1.95 christos NDINIT(ndp, LOOKUP, FOLLOW, UIO_USERSPACE, args.fspec, p);
220 1.95 christos if ((error = namei(ndp)) != 0)
221 1.95 christos return (error);
222 1.95 christos devvp = ndp->ni_vp;
223 1.95 christos
224 1.95 christos if (!update) {
225 1.95 christos /*
226 1.95 christos * Be sure this is a valid block device
227 1.95 christos */
228 1.95 christos if (devvp->v_type != VBLK)
229 1.95 christos error = ENOTBLK;
230 1.95 christos else if (major(devvp->v_rdev) >= nblkdev)
231 1.95 christos error = ENXIO;
232 1.95 christos } else {
233 1.95 christos /*
234 1.95 christos * Be sure we're still naming the same device
235 1.95 christos * used for our initial mount
236 1.95 christos */
237 1.95 christos if (devvp != ump->um_devvp)
238 1.95 christos error = EINVAL;
239 1.95 christos }
240 1.95 christos }
241 1.95 christos
242 1.1 mycroft /*
243 1.95 christos * If mount by non-root, then verify that user has necessary
244 1.95 christos * permissions on the device.
245 1.1 mycroft */
246 1.95 christos if (error == 0 && p->p_ucred->cr_uid != 0) {
247 1.95 christos accessmode = VREAD;
248 1.96 christos if (update ?
249 1.96 christos (mp->mnt_flag & MNT_WANTRDWR) != 0 :
250 1.96 christos (mp->mnt_flag & MNT_RDONLY) == 0)
251 1.95 christos accessmode |= VWRITE;
252 1.95 christos vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
253 1.95 christos error = VOP_ACCESS(devvp, accessmode, p->p_ucred, p);
254 1.95 christos VOP_UNLOCK(devvp, 0);
255 1.95 christos }
256 1.95 christos
257 1.95 christos if (error) {
258 1.95 christos vrele(devvp);
259 1.95 christos return (error);
260 1.95 christos }
261 1.95 christos
262 1.95 christos if (!update) {
263 1.95 christos error = ffs_mountfs(devvp, mp, p);
264 1.95 christos if (error) {
265 1.95 christos vrele(devvp);
266 1.95 christos return (error);
267 1.95 christos }
268 1.95 christos
269 1.1 mycroft ump = VFSTOUFS(mp);
270 1.1 mycroft fs = ump->um_fs;
271 1.95 christos if ((mp->mnt_flag & (MNT_SOFTDEP | MNT_ASYNC)) ==
272 1.95 christos (MNT_SOFTDEP | MNT_ASYNC)) {
273 1.95 christos printf("%s fs uses soft updates, "
274 1.96 christos "ignoring async mode\n",
275 1.96 christos fs->fs_fsmnt);
276 1.95 christos mp->mnt_flag &= ~MNT_ASYNC;
277 1.95 christos }
278 1.95 christos } else {
279 1.95 christos /*
280 1.96 christos * Update the mount.
281 1.96 christos */
282 1.96 christos
283 1.96 christos /*
284 1.96 christos * The initial mount got a reference on this
285 1.96 christos * device, so drop the one obtained via
286 1.96 christos * namei(), above.
287 1.95 christos */
288 1.96 christos vrele(devvp);
289 1.96 christos
290 1.95 christos fs = ump->um_fs;
291 1.1 mycroft if (fs->fs_ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
292 1.95 christos /*
293 1.95 christos * Changing from r/w to r/o
294 1.95 christos */
295 1.1 mycroft flags = WRITECLOSE;
296 1.1 mycroft if (mp->mnt_flag & MNT_FORCE)
297 1.1 mycroft flags |= FORCECLOSE;
298 1.55 fvdl if (mp->mnt_flag & MNT_SOFTDEP)
299 1.55 fvdl error = softdep_flushfiles(mp, flags, p);
300 1.55 fvdl else
301 1.55 fvdl error = ffs_flushfiles(mp, flags, p);
302 1.89 fvdl if (fs->fs_pendingblocks != 0 ||
303 1.89 fvdl fs->fs_pendinginodes != 0) {
304 1.89 fvdl printf("%s: update error: blocks %d files %d\n",
305 1.89 fvdl fs->fs_fsmnt, fs->fs_pendingblocks,
306 1.89 fvdl fs->fs_pendinginodes);
307 1.89 fvdl fs->fs_pendingblocks = 0;
308 1.89 fvdl fs->fs_pendinginodes = 0;
309 1.89 fvdl }
310 1.15 mycroft if (error == 0 &&
311 1.15 mycroft ffs_cgupdate(ump, MNT_WAIT) == 0 &&
312 1.15 mycroft fs->fs_clean & FS_WASCLEAN) {
313 1.65 fvdl if (mp->mnt_flag & MNT_SOFTDEP)
314 1.65 fvdl fs->fs_flags &= ~FS_DOSOFTDEP;
315 1.15 mycroft fs->fs_clean = FS_ISCLEAN;
316 1.15 mycroft (void) ffs_sbupdate(ump, MNT_WAIT);
317 1.15 mycroft }
318 1.15 mycroft if (error)
319 1.15 mycroft return (error);
320 1.15 mycroft fs->fs_ronly = 1;
321 1.78 mycroft fs->fs_fmod = 0;
322 1.1 mycroft }
323 1.65 fvdl
324 1.65 fvdl /*
325 1.65 fvdl * Flush soft dependencies if disabling it via an update
326 1.65 fvdl * mount. This may leave some items to be processed,
327 1.65 fvdl * so don't do this yet XXX.
328 1.65 fvdl */
329 1.65 fvdl if ((fs->fs_flags & FS_DOSOFTDEP) &&
330 1.65 fvdl !(mp->mnt_flag & MNT_SOFTDEP) && fs->fs_ronly == 0) {
331 1.65 fvdl #ifdef notyet
332 1.65 fvdl flags = WRITECLOSE;
333 1.65 fvdl if (mp->mnt_flag & MNT_FORCE)
334 1.65 fvdl flags |= FORCECLOSE;
335 1.65 fvdl error = softdep_flushfiles(mp, flags, p);
336 1.65 fvdl if (error == 0 && ffs_cgupdate(ump, MNT_WAIT) == 0)
337 1.65 fvdl fs->fs_flags &= ~FS_DOSOFTDEP;
338 1.65 fvdl (void) ffs_sbupdate(ump, MNT_WAIT);
339 1.66 matt #elif defined(SOFTDEP)
340 1.65 fvdl mp->mnt_flag |= MNT_SOFTDEP;
341 1.65 fvdl #endif
342 1.65 fvdl }
343 1.65 fvdl
344 1.65 fvdl /*
345 1.65 fvdl * When upgrading to a softdep mount, we must first flush
346 1.65 fvdl * all vnodes. (not done yet -- see above)
347 1.65 fvdl */
348 1.65 fvdl if (!(fs->fs_flags & FS_DOSOFTDEP) &&
349 1.65 fvdl (mp->mnt_flag & MNT_SOFTDEP) && fs->fs_ronly == 0) {
350 1.65 fvdl #ifdef notyet
351 1.65 fvdl flags = WRITECLOSE;
352 1.65 fvdl if (mp->mnt_flag & MNT_FORCE)
353 1.65 fvdl flags |= FORCECLOSE;
354 1.65 fvdl error = ffs_flushfiles(mp, flags, p);
355 1.65 fvdl #else
356 1.65 fvdl mp->mnt_flag &= ~MNT_SOFTDEP;
357 1.65 fvdl #endif
358 1.65 fvdl }
359 1.65 fvdl
360 1.15 mycroft if (mp->mnt_flag & MNT_RELOAD) {
361 1.96 christos error = ffs_reload(mp, p->p_ucred, p);
362 1.15 mycroft if (error)
363 1.15 mycroft return (error);
364 1.15 mycroft }
365 1.95 christos
366 1.9 mycroft if (fs->fs_ronly && (mp->mnt_flag & MNT_WANTRDWR)) {
367 1.9 mycroft /*
368 1.95 christos * Changing from read-only to read/write
369 1.9 mycroft */
370 1.1 mycroft fs->fs_ronly = 0;
371 1.15 mycroft fs->fs_clean <<= 1;
372 1.15 mycroft fs->fs_fmod = 1;
373 1.55 fvdl if ((fs->fs_flags & FS_DOSOFTDEP)) {
374 1.55 fvdl error = softdep_mount(devvp, mp, fs,
375 1.55 fvdl p->p_ucred);
376 1.55 fvdl if (error)
377 1.55 fvdl return (error);
378 1.65 fvdl }
379 1.9 mycroft }
380 1.1 mycroft if (args.fspec == 0) {
381 1.1 mycroft /*
382 1.1 mycroft * Process export requests.
383 1.1 mycroft */
384 1.1 mycroft return (vfs_export(mp, &ump->um_export, &args.export));
385 1.1 mycroft }
386 1.55 fvdl if ((mp->mnt_flag & (MNT_SOFTDEP | MNT_ASYNC)) ==
387 1.55 fvdl (MNT_SOFTDEP | MNT_ASYNC)) {
388 1.55 fvdl printf("%s fs uses soft updates, ignoring async mode\n",
389 1.55 fvdl fs->fs_fsmnt);
390 1.55 fvdl mp->mnt_flag &= ~MNT_ASYNC;
391 1.55 fvdl }
392 1.1 mycroft }
393 1.1 mycroft
394 1.1 mycroft (void) copyinstr(path, fs->fs_fsmnt, sizeof(fs->fs_fsmnt) - 1, &size);
395 1.42 perry memset(fs->fs_fsmnt + size, 0, sizeof(fs->fs_fsmnt) - size);
396 1.42 perry memcpy(mp->mnt_stat.f_mntonname, fs->fs_fsmnt, MNAMELEN);
397 1.1 mycroft (void) copyinstr(args.fspec, mp->mnt_stat.f_mntfromname, MNAMELEN - 1,
398 1.1 mycroft &size);
399 1.42 perry memset(mp->mnt_stat.f_mntfromname + size, 0, MNAMELEN - size);
400 1.65 fvdl if (mp->mnt_flag & MNT_SOFTDEP)
401 1.65 fvdl fs->fs_flags |= FS_DOSOFTDEP;
402 1.74 fvdl else
403 1.74 fvdl fs->fs_flags &= ~FS_DOSOFTDEP;
404 1.15 mycroft if (fs->fs_fmod != 0) { /* XXX */
405 1.15 mycroft fs->fs_fmod = 0;
406 1.15 mycroft if (fs->fs_clean & FS_WASCLEAN)
407 1.15 mycroft fs->fs_time = time.tv_sec;
408 1.89 fvdl else {
409 1.82 lukem printf("%s: file system not clean (fs_clean=%x); please fsck(8)\n",
410 1.34 bouyer mp->mnt_stat.f_mntfromname, fs->fs_clean);
411 1.89 fvdl printf("%s: lost blocks %d files %d\n",
412 1.89 fvdl mp->mnt_stat.f_mntfromname, fs->fs_pendingblocks,
413 1.89 fvdl fs->fs_pendinginodes);
414 1.89 fvdl }
415 1.15 mycroft (void) ffs_cgupdate(ump, MNT_WAIT);
416 1.15 mycroft }
417 1.1 mycroft return (0);
418 1.1 mycroft }
419 1.1 mycroft
420 1.1 mycroft /*
421 1.1 mycroft * Reload all incore data for a filesystem (used after running fsck on
422 1.1 mycroft * the root filesystem and finding things to fix). The filesystem must
423 1.1 mycroft * be mounted read-only.
424 1.1 mycroft *
425 1.1 mycroft * Things to do to update the mount:
426 1.1 mycroft * 1) invalidate all cached meta-data.
427 1.1 mycroft * 2) re-read superblock from disk.
428 1.1 mycroft * 3) re-read summary information from disk.
429 1.1 mycroft * 4) invalidate all inactive vnodes.
430 1.1 mycroft * 5) invalidate all cached file data.
431 1.1 mycroft * 6) re-read inode data for all active vnodes.
432 1.1 mycroft */
433 1.19 christos int
434 1.1 mycroft ffs_reload(mountp, cred, p)
435 1.61 augustss struct mount *mountp;
436 1.1 mycroft struct ucred *cred;
437 1.1 mycroft struct proc *p;
438 1.1 mycroft {
439 1.61 augustss struct vnode *vp, *nvp, *devvp;
440 1.1 mycroft struct inode *ip;
441 1.84 lukem void *space;
442 1.1 mycroft struct buf *bp;
443 1.18 cgd struct fs *fs, *newfs;
444 1.1 mycroft struct partinfo dpart;
445 1.1 mycroft int i, blks, size, error;
446 1.18 cgd int32_t *lp;
447 1.44 thorpej caddr_t cp;
448 1.1 mycroft
449 1.1 mycroft if ((mountp->mnt_flag & MNT_RDONLY) == 0)
450 1.1 mycroft return (EINVAL);
451 1.1 mycroft /*
452 1.1 mycroft * Step 1: invalidate all cached meta-data.
453 1.1 mycroft */
454 1.1 mycroft devvp = VFSTOUFS(mountp)->um_devvp;
455 1.55 fvdl vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
456 1.55 fvdl error = vinvalbuf(devvp, 0, cred, p, 0, 0);
457 1.55 fvdl VOP_UNLOCK(devvp, 0);
458 1.55 fvdl if (error)
459 1.1 mycroft panic("ffs_reload: dirty1");
460 1.1 mycroft /*
461 1.1 mycroft * Step 2: re-read superblock from disk.
462 1.1 mycroft */
463 1.1 mycroft if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, NOCRED, p) != 0)
464 1.1 mycroft size = DEV_BSIZE;
465 1.1 mycroft else
466 1.1 mycroft size = dpart.disklab->d_secsize;
467 1.33 fvdl error = bread(devvp, (ufs_daddr_t)(SBOFF / size), SBSIZE, NOCRED, &bp);
468 1.47 bouyer if (error) {
469 1.47 bouyer brelse(bp);
470 1.1 mycroft return (error);
471 1.47 bouyer }
472 1.34 bouyer fs = VFSTOUFS(mountp)->um_fs;
473 1.34 bouyer newfs = malloc(fs->fs_sbsize, M_UFSMNT, M_WAITOK);
474 1.42 perry memcpy(newfs, bp->b_data, fs->fs_sbsize);
475 1.34 bouyer #ifdef FFS_EI
476 1.55 fvdl if (VFSTOUFS(mountp)->um_flags & UFS_NEEDSWAP) {
477 1.83 lukem ffs_sb_swap((struct fs*)bp->b_data, newfs);
478 1.55 fvdl fs->fs_flags |= FS_SWAPPED;
479 1.98.4.2 tron } else
480 1.34 bouyer #endif
481 1.98.4.2 tron fs->fs_flags &= ~FS_SWAPPED;
482 1.18 cgd if (newfs->fs_magic != FS_MAGIC || newfs->fs_bsize > MAXBSIZE ||
483 1.18 cgd newfs->fs_bsize < sizeof(struct fs)) {
484 1.1 mycroft brelse(bp);
485 1.34 bouyer free(newfs, M_UFSMNT);
486 1.1 mycroft return (EIO); /* XXX needs translation */
487 1.1 mycroft }
488 1.18 cgd /*
489 1.18 cgd * Copy pointer fields back into superblock before copying in XXX
490 1.18 cgd * new superblock. These should really be in the ufsmount. XXX
491 1.18 cgd * Note that important parameters (eg fs_ncg) are unchanged.
492 1.18 cgd */
493 1.84 lukem newfs->fs_csp = fs->fs_csp;
494 1.18 cgd newfs->fs_maxcluster = fs->fs_maxcluster;
495 1.85 lukem newfs->fs_contigdirs = fs->fs_contigdirs;
496 1.76 mycroft newfs->fs_ronly = fs->fs_ronly;
497 1.42 perry memcpy(fs, newfs, (u_int)fs->fs_sbsize);
498 1.1 mycroft if (fs->fs_sbsize < SBSIZE)
499 1.1 mycroft bp->b_flags |= B_INVAL;
500 1.1 mycroft brelse(bp);
501 1.34 bouyer free(newfs, M_UFSMNT);
502 1.3 mycroft mountp->mnt_maxsymlinklen = fs->fs_maxsymlinklen;
503 1.1 mycroft ffs_oldfscompat(fs);
504 1.85 lukem /* An old fsck may have zeroed these fields, so recheck them. */
505 1.85 lukem if (fs->fs_avgfilesize <= 0)
506 1.85 lukem fs->fs_avgfilesize = AVFILESIZ;
507 1.85 lukem if (fs->fs_avgfpdir <= 0)
508 1.85 lukem fs->fs_avgfpdir = AFPDIR;
509 1.89 fvdl if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
510 1.89 fvdl fs->fs_pendingblocks = 0;
511 1.89 fvdl fs->fs_pendinginodes = 0;
512 1.89 fvdl }
513 1.85 lukem
514 1.55 fvdl ffs_statfs(mountp, &mountp->mnt_stat, p);
515 1.1 mycroft /*
516 1.1 mycroft * Step 3: re-read summary information from disk.
517 1.1 mycroft */
518 1.1 mycroft blks = howmany(fs->fs_cssize, fs->fs_fsize);
519 1.84 lukem space = fs->fs_csp;
520 1.1 mycroft for (i = 0; i < blks; i += fs->fs_frag) {
521 1.1 mycroft size = fs->fs_bsize;
522 1.1 mycroft if (i + fs->fs_frag > blks)
523 1.1 mycroft size = (blks - i) * fs->fs_fsize;
524 1.19 christos error = bread(devvp, fsbtodb(fs, fs->fs_csaddr + i), size,
525 1.19 christos NOCRED, &bp);
526 1.47 bouyer if (error) {
527 1.47 bouyer brelse(bp);
528 1.1 mycroft return (error);
529 1.47 bouyer }
530 1.34 bouyer #ifdef FFS_EI
531 1.55 fvdl if (UFS_FSNEEDSWAP(fs))
532 1.84 lukem ffs_csum_swap((struct csum *)bp->b_data,
533 1.84 lukem (struct csum *)space, size);
534 1.34 bouyer else
535 1.34 bouyer #endif
536 1.84 lukem memcpy(space, bp->b_data, (size_t)size);
537 1.84 lukem space = (char *)space + size;
538 1.1 mycroft brelse(bp);
539 1.1 mycroft }
540 1.55 fvdl if ((fs->fs_flags & FS_DOSOFTDEP))
541 1.55 fvdl softdep_mount(devvp, mountp, fs, cred);
542 1.18 cgd /*
543 1.18 cgd * We no longer know anything about clusters per cylinder group.
544 1.18 cgd */
545 1.18 cgd if (fs->fs_contigsumsize > 0) {
546 1.18 cgd lp = fs->fs_maxcluster;
547 1.18 cgd for (i = 0; i < fs->fs_ncg; i++)
548 1.18 cgd *lp++ = fs->fs_contigsumsize;
549 1.18 cgd }
550 1.18 cgd
551 1.1 mycroft loop:
552 1.33 fvdl simple_lock(&mntvnode_slock);
553 1.1 mycroft for (vp = mountp->mnt_vnodelist.lh_first; vp != NULL; vp = nvp) {
554 1.33 fvdl if (vp->v_mount != mountp) {
555 1.33 fvdl simple_unlock(&mntvnode_slock);
556 1.33 fvdl goto loop;
557 1.33 fvdl }
558 1.1 mycroft nvp = vp->v_mntvnodes.le_next;
559 1.1 mycroft /*
560 1.1 mycroft * Step 4: invalidate all inactive vnodes.
561 1.1 mycroft */
562 1.33 fvdl if (vrecycle(vp, &mntvnode_slock, p))
563 1.33 fvdl goto loop;
564 1.1 mycroft /*
565 1.1 mycroft * Step 5: invalidate all cached file data.
566 1.1 mycroft */
567 1.33 fvdl simple_lock(&vp->v_interlock);
568 1.33 fvdl simple_unlock(&mntvnode_slock);
569 1.33 fvdl if (vget(vp, LK_EXCLUSIVE | LK_INTERLOCK))
570 1.1 mycroft goto loop;
571 1.1 mycroft if (vinvalbuf(vp, 0, cred, p, 0, 0))
572 1.1 mycroft panic("ffs_reload: dirty2");
573 1.1 mycroft /*
574 1.1 mycroft * Step 6: re-read inode data for all active vnodes.
575 1.1 mycroft */
576 1.1 mycroft ip = VTOI(vp);
577 1.19 christos error = bread(devvp, fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
578 1.19 christos (int)fs->fs_bsize, NOCRED, &bp);
579 1.19 christos if (error) {
580 1.47 bouyer brelse(bp);
581 1.1 mycroft vput(vp);
582 1.1 mycroft return (error);
583 1.1 mycroft }
584 1.44 thorpej cp = (caddr_t)bp->b_data +
585 1.44 thorpej (ino_to_fsbo(fs, ip->i_number) * DINODE_SIZE);
586 1.34 bouyer #ifdef FFS_EI
587 1.55 fvdl if (UFS_FSNEEDSWAP(fs))
588 1.44 thorpej ffs_dinode_swap((struct dinode *)cp,
589 1.44 thorpej &ip->i_din.ffs_din);
590 1.34 bouyer else
591 1.34 bouyer #endif
592 1.44 thorpej memcpy(&ip->i_din.ffs_din, cp, DINODE_SIZE);
593 1.55 fvdl ip->i_ffs_effnlink = ip->i_ffs_nlink;
594 1.1 mycroft brelse(bp);
595 1.1 mycroft vput(vp);
596 1.33 fvdl simple_lock(&mntvnode_slock);
597 1.1 mycroft }
598 1.33 fvdl simple_unlock(&mntvnode_slock);
599 1.1 mycroft return (0);
600 1.1 mycroft }
601 1.1 mycroft
602 1.1 mycroft /*
603 1.1 mycroft * Common code for mount and mountroot
604 1.1 mycroft */
605 1.1 mycroft int
606 1.1 mycroft ffs_mountfs(devvp, mp, p)
607 1.61 augustss struct vnode *devvp;
608 1.1 mycroft struct mount *mp;
609 1.1 mycroft struct proc *p;
610 1.1 mycroft {
611 1.34 bouyer struct ufsmount *ump;
612 1.1 mycroft struct buf *bp;
613 1.34 bouyer struct fs *fs;
614 1.9 mycroft dev_t dev;
615 1.1 mycroft struct partinfo dpart;
616 1.84 lukem void *space;
617 1.1 mycroft int blks;
618 1.52 drochner int error, i, size, ronly;
619 1.52 drochner #ifdef FFS_EI
620 1.52 drochner int needswap;
621 1.52 drochner #endif
622 1.9 mycroft int32_t *lp;
623 1.9 mycroft struct ucred *cred;
624 1.9 mycroft u_int64_t maxfilesize; /* XXX */
625 1.34 bouyer u_int32_t sbsize;
626 1.1 mycroft
627 1.9 mycroft dev = devvp->v_rdev;
628 1.9 mycroft cred = p ? p->p_ucred : NOCRED;
629 1.1 mycroft /*
630 1.1 mycroft * Disallow multiple mounts of the same device.
631 1.1 mycroft * Disallow mounting of a device that is currently in use
632 1.1 mycroft * (except for root, which might share swap device for miniroot).
633 1.1 mycroft * Flush out any old buffers remaining from a previous use.
634 1.1 mycroft */
635 1.19 christos if ((error = vfs_mountedon(devvp)) != 0)
636 1.1 mycroft return (error);
637 1.1 mycroft if (vcount(devvp) > 1 && devvp != rootvp)
638 1.1 mycroft return (EBUSY);
639 1.55 fvdl vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
640 1.55 fvdl error = vinvalbuf(devvp, V_SAVE, cred, p, 0, 0);
641 1.55 fvdl VOP_UNLOCK(devvp, 0);
642 1.55 fvdl if (error)
643 1.1 mycroft return (error);
644 1.1 mycroft
645 1.1 mycroft ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
646 1.19 christos error = VOP_OPEN(devvp, ronly ? FREAD : FREAD|FWRITE, FSCRED, p);
647 1.19 christos if (error)
648 1.1 mycroft return (error);
649 1.9 mycroft if (VOP_IOCTL(devvp, DIOCGPART, (caddr_t)&dpart, FREAD, cred, p) != 0)
650 1.1 mycroft size = DEV_BSIZE;
651 1.1 mycroft else
652 1.1 mycroft size = dpart.disklab->d_secsize;
653 1.1 mycroft
654 1.1 mycroft bp = NULL;
655 1.1 mycroft ump = NULL;
656 1.33 fvdl error = bread(devvp, (ufs_daddr_t)(SBOFF / size), SBSIZE, cred, &bp);
657 1.19 christos if (error)
658 1.1 mycroft goto out;
659 1.34 bouyer
660 1.34 bouyer fs = (struct fs*)bp->b_data;
661 1.34 bouyer if (fs->fs_magic == FS_MAGIC) {
662 1.34 bouyer sbsize = fs->fs_sbsize;
663 1.34 bouyer #ifdef FFS_EI
664 1.52 drochner needswap = 0;
665 1.34 bouyer } else if (fs->fs_magic == bswap32(FS_MAGIC)) {
666 1.52 drochner sbsize = bswap32(fs->fs_sbsize);
667 1.34 bouyer needswap = 1;
668 1.34 bouyer #endif
669 1.34 bouyer } else {
670 1.34 bouyer error = EINVAL;
671 1.34 bouyer goto out;
672 1.46 bouyer }
673 1.49 bouyer if (sbsize > MAXBSIZE || sbsize < sizeof(struct fs)) {
674 1.46 bouyer error = EINVAL;
675 1.46 bouyer goto out;
676 1.34 bouyer }
677 1.34 bouyer
678 1.34 bouyer fs = malloc((u_long)sbsize, M_UFSMNT, M_WAITOK);
679 1.42 perry memcpy(fs, bp->b_data, sbsize);
680 1.34 bouyer #ifdef FFS_EI
681 1.55 fvdl if (needswap) {
682 1.83 lukem ffs_sb_swap((struct fs*)bp->b_data, fs);
683 1.55 fvdl fs->fs_flags |= FS_SWAPPED;
684 1.98.4.2 tron } else
685 1.34 bouyer #endif
686 1.98.4.2 tron fs->fs_flags &= ~FS_SWAPPED;
687 1.56 drochner ffs_oldfscompat(fs);
688 1.56 drochner
689 1.49 bouyer if (fs->fs_bsize > MAXBSIZE || fs->fs_bsize < sizeof(struct fs)) {
690 1.49 bouyer error = EINVAL;
691 1.49 bouyer goto out;
692 1.49 bouyer }
693 1.46 bouyer /* make sure cylinder group summary area is a reasonable size. */
694 1.46 bouyer if (fs->fs_cgsize == 0 || fs->fs_cpg == 0 ||
695 1.46 bouyer fs->fs_ncg > fs->fs_ncyl / fs->fs_cpg + 1 ||
696 1.46 bouyer fs->fs_cssize >
697 1.46 bouyer fragroundup(fs, fs->fs_ncg * sizeof(struct csum))) {
698 1.1 mycroft error = EINVAL; /* XXX needs translation */
699 1.34 bouyer goto out2;
700 1.1 mycroft }
701 1.89 fvdl if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
702 1.89 fvdl fs->fs_pendingblocks = 0;
703 1.89 fvdl fs->fs_pendinginodes = 0;
704 1.89 fvdl }
705 1.1 mycroft /* XXX updating 4.2 FFS superblocks trashes rotational layout tables */
706 1.1 mycroft if (fs->fs_postblformat == FS_42POSTBLFMT && !ronly) {
707 1.1 mycroft error = EROFS; /* XXX what should be returned? */
708 1.34 bouyer goto out2;
709 1.1 mycroft }
710 1.56 drochner
711 1.1 mycroft ump = malloc(sizeof *ump, M_UFSMNT, M_WAITOK);
712 1.42 perry memset((caddr_t)ump, 0, sizeof *ump);
713 1.34 bouyer ump->um_fs = fs;
714 1.1 mycroft if (fs->fs_sbsize < SBSIZE)
715 1.1 mycroft bp->b_flags |= B_INVAL;
716 1.1 mycroft brelse(bp);
717 1.1 mycroft bp = NULL;
718 1.94 chs
719 1.94 chs /*
720 1.98.4.1 tv * verify that we can access the last block in the fs
721 1.98.4.1 tv * if we're mounting read/write.
722 1.94 chs */
723 1.94 chs
724 1.98.4.1 tv if (!ronly) {
725 1.98.4.1 tv error = bread(devvp, fsbtodb(fs, fs->fs_size - 1), fs->fs_fsize,
726 1.98.4.1 tv cred, &bp);
727 1.98.4.1 tv if (bp->b_bcount != fs->fs_fsize)
728 1.98.4.1 tv error = EINVAL;
729 1.98.4.1 tv bp->b_flags |= B_INVAL;
730 1.98.4.1 tv if (error)
731 1.98.4.1 tv goto out;
732 1.98.4.1 tv brelse(bp);
733 1.98.4.1 tv bp = NULL;
734 1.98.4.1 tv }
735 1.94 chs
736 1.1 mycroft fs->fs_ronly = ronly;
737 1.15 mycroft if (ronly == 0) {
738 1.15 mycroft fs->fs_clean <<= 1;
739 1.1 mycroft fs->fs_fmod = 1;
740 1.15 mycroft }
741 1.9 mycroft size = fs->fs_cssize;
742 1.9 mycroft blks = howmany(size, fs->fs_fsize);
743 1.9 mycroft if (fs->fs_contigsumsize > 0)
744 1.9 mycroft size += fs->fs_ncg * sizeof(int32_t);
745 1.85 lukem size += fs->fs_ncg * sizeof(*fs->fs_contigdirs);
746 1.84 lukem space = malloc((u_long)size, M_UFSMNT, M_WAITOK);
747 1.84 lukem fs->fs_csp = space;
748 1.1 mycroft for (i = 0; i < blks; i += fs->fs_frag) {
749 1.1 mycroft size = fs->fs_bsize;
750 1.1 mycroft if (i + fs->fs_frag > blks)
751 1.1 mycroft size = (blks - i) * fs->fs_fsize;
752 1.19 christos error = bread(devvp, fsbtodb(fs, fs->fs_csaddr + i), size,
753 1.19 christos cred, &bp);
754 1.19 christos if (error) {
755 1.84 lukem free(fs->fs_csp, M_UFSMNT);
756 1.34 bouyer goto out2;
757 1.1 mycroft }
758 1.34 bouyer #ifdef FFS_EI
759 1.34 bouyer if (needswap)
760 1.84 lukem ffs_csum_swap((struct csum *)bp->b_data,
761 1.84 lukem (struct csum *)space, size);
762 1.34 bouyer else
763 1.34 bouyer #endif
764 1.42 perry memcpy(space, bp->b_data, (u_int)size);
765 1.34 bouyer
766 1.84 lukem space = (char *)space + size;
767 1.1 mycroft brelse(bp);
768 1.1 mycroft bp = NULL;
769 1.1 mycroft }
770 1.9 mycroft if (fs->fs_contigsumsize > 0) {
771 1.85 lukem fs->fs_maxcluster = lp = space;
772 1.9 mycroft for (i = 0; i < fs->fs_ncg; i++)
773 1.9 mycroft *lp++ = fs->fs_contigsumsize;
774 1.85 lukem space = lp;
775 1.9 mycroft }
776 1.85 lukem size = fs->fs_ncg * sizeof(*fs->fs_contigdirs);
777 1.85 lukem fs->fs_contigdirs = space;
778 1.85 lukem space = (char *)space + size;
779 1.85 lukem memset(fs->fs_contigdirs, 0, size);
780 1.85 lukem /* Compatibility for old filesystems - XXX */
781 1.85 lukem if (fs->fs_avgfilesize <= 0)
782 1.85 lukem fs->fs_avgfilesize = AVFILESIZ;
783 1.85 lukem if (fs->fs_avgfpdir <= 0)
784 1.85 lukem fs->fs_avgfpdir = AFPDIR;
785 1.1 mycroft mp->mnt_data = (qaddr_t)ump;
786 1.1 mycroft mp->mnt_stat.f_fsid.val[0] = (long)dev;
787 1.17 mycroft mp->mnt_stat.f_fsid.val[1] = makefstype(MOUNT_FFS);
788 1.1 mycroft mp->mnt_maxsymlinklen = fs->fs_maxsymlinklen;
789 1.73 chs mp->mnt_fs_bshift = fs->fs_bshift;
790 1.73 chs mp->mnt_dev_bshift = DEV_BSHIFT; /* XXX */
791 1.1 mycroft mp->mnt_flag |= MNT_LOCAL;
792 1.34 bouyer #ifdef FFS_EI
793 1.34 bouyer if (needswap)
794 1.34 bouyer ump->um_flags |= UFS_NEEDSWAP;
795 1.34 bouyer #endif
796 1.1 mycroft ump->um_mountp = mp;
797 1.1 mycroft ump->um_dev = dev;
798 1.1 mycroft ump->um_devvp = devvp;
799 1.1 mycroft ump->um_nindir = fs->fs_nindir;
800 1.73 chs ump->um_lognindir = ffs(fs->fs_nindir) - 1;
801 1.1 mycroft ump->um_bptrtodb = fs->fs_fsbtodb;
802 1.1 mycroft ump->um_seqinc = fs->fs_frag;
803 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++)
804 1.1 mycroft ump->um_quotas[i] = NULLVP;
805 1.55 fvdl devvp->v_specmountpoint = mp;
806 1.9 mycroft ump->um_savedmaxfilesize = fs->fs_maxfilesize; /* XXX */
807 1.9 mycroft maxfilesize = (u_int64_t)0x80000000 * fs->fs_bsize - 1; /* XXX */
808 1.9 mycroft if (fs->fs_maxfilesize > maxfilesize) /* XXX */
809 1.9 mycroft fs->fs_maxfilesize = maxfilesize; /* XXX */
810 1.55 fvdl if (ronly == 0 && (fs->fs_flags & FS_DOSOFTDEP)) {
811 1.55 fvdl error = softdep_mount(devvp, mp, fs, cred);
812 1.55 fvdl if (error) {
813 1.84 lukem free(fs->fs_csp, M_UFSMNT);
814 1.55 fvdl goto out;
815 1.55 fvdl }
816 1.55 fvdl }
817 1.1 mycroft return (0);
818 1.34 bouyer out2:
819 1.34 bouyer free(fs, M_UFSMNT);
820 1.1 mycroft out:
821 1.55 fvdl devvp->v_specmountpoint = NULL;
822 1.1 mycroft if (bp)
823 1.1 mycroft brelse(bp);
824 1.53 wrstuden vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY);
825 1.9 mycroft (void)VOP_CLOSE(devvp, ronly ? FREAD : FREAD|FWRITE, cred, p);
826 1.53 wrstuden VOP_UNLOCK(devvp, 0);
827 1.1 mycroft if (ump) {
828 1.1 mycroft free(ump, M_UFSMNT);
829 1.1 mycroft mp->mnt_data = (qaddr_t)0;
830 1.1 mycroft }
831 1.1 mycroft return (error);
832 1.1 mycroft }
833 1.1 mycroft
834 1.1 mycroft /*
835 1.1 mycroft * Sanity checks for old file systems.
836 1.1 mycroft *
837 1.1 mycroft * XXX - goes away some day.
838 1.1 mycroft */
839 1.19 christos int
840 1.1 mycroft ffs_oldfscompat(fs)
841 1.1 mycroft struct fs *fs;
842 1.1 mycroft {
843 1.1 mycroft int i;
844 1.1 mycroft
845 1.1 mycroft fs->fs_npsect = max(fs->fs_npsect, fs->fs_nsect); /* XXX */
846 1.1 mycroft fs->fs_interleave = max(fs->fs_interleave, 1); /* XXX */
847 1.1 mycroft if (fs->fs_postblformat == FS_42POSTBLFMT) /* XXX */
848 1.1 mycroft fs->fs_nrpos = 8; /* XXX */
849 1.1 mycroft if (fs->fs_inodefmt < FS_44INODEFMT) { /* XXX */
850 1.5 mycroft u_int64_t sizepb = fs->fs_bsize; /* XXX */
851 1.1 mycroft /* XXX */
852 1.1 mycroft fs->fs_maxfilesize = fs->fs_bsize * NDADDR - 1; /* XXX */
853 1.1 mycroft for (i = 0; i < NIADDR; i++) { /* XXX */
854 1.1 mycroft sizepb *= NINDIR(fs); /* XXX */
855 1.1 mycroft fs->fs_maxfilesize += sizepb; /* XXX */
856 1.1 mycroft } /* XXX */
857 1.1 mycroft fs->fs_qbmask = ~fs->fs_bmask; /* XXX */
858 1.1 mycroft fs->fs_qfmask = ~fs->fs_fmask; /* XXX */
859 1.1 mycroft } /* XXX */
860 1.1 mycroft return (0);
861 1.1 mycroft }
862 1.1 mycroft
863 1.1 mycroft /*
864 1.1 mycroft * unmount system call
865 1.1 mycroft */
866 1.1 mycroft int
867 1.1 mycroft ffs_unmount(mp, mntflags, p)
868 1.1 mycroft struct mount *mp;
869 1.1 mycroft int mntflags;
870 1.1 mycroft struct proc *p;
871 1.1 mycroft {
872 1.61 augustss struct ufsmount *ump;
873 1.61 augustss struct fs *fs;
874 1.91 fvdl int error, flags, penderr;
875 1.1 mycroft
876 1.91 fvdl penderr = 0;
877 1.1 mycroft flags = 0;
878 1.11 mycroft if (mntflags & MNT_FORCE)
879 1.1 mycroft flags |= FORCECLOSE;
880 1.55 fvdl if (mp->mnt_flag & MNT_SOFTDEP) {
881 1.55 fvdl if ((error = softdep_flushfiles(mp, flags, p)) != 0)
882 1.55 fvdl return (error);
883 1.55 fvdl } else {
884 1.55 fvdl if ((error = ffs_flushfiles(mp, flags, p)) != 0)
885 1.55 fvdl return (error);
886 1.55 fvdl }
887 1.1 mycroft ump = VFSTOUFS(mp);
888 1.1 mycroft fs = ump->um_fs;
889 1.89 fvdl if (fs->fs_pendingblocks != 0 || fs->fs_pendinginodes != 0) {
890 1.89 fvdl printf("%s: unmount pending error: blocks %d files %d\n",
891 1.89 fvdl fs->fs_fsmnt, fs->fs_pendingblocks, fs->fs_pendinginodes);
892 1.89 fvdl fs->fs_pendingblocks = 0;
893 1.89 fvdl fs->fs_pendinginodes = 0;
894 1.91 fvdl penderr = 1;
895 1.89 fvdl }
896 1.15 mycroft if (fs->fs_ronly == 0 &&
897 1.15 mycroft ffs_cgupdate(ump, MNT_WAIT) == 0 &&
898 1.15 mycroft fs->fs_clean & FS_WASCLEAN) {
899 1.91 fvdl /*
900 1.91 fvdl * XXXX don't mark fs clean in the case of softdep
901 1.91 fvdl * pending block errors, until they are fixed.
902 1.91 fvdl */
903 1.91 fvdl if (penderr == 0) {
904 1.91 fvdl if (mp->mnt_flag & MNT_SOFTDEP)
905 1.91 fvdl fs->fs_flags &= ~FS_DOSOFTDEP;
906 1.91 fvdl fs->fs_clean = FS_ISCLEAN;
907 1.91 fvdl }
908 1.15 mycroft (void) ffs_sbupdate(ump, MNT_WAIT);
909 1.15 mycroft }
910 1.54 enami if (ump->um_devvp->v_type != VBAD)
911 1.55 fvdl ump->um_devvp->v_specmountpoint = NULL;
912 1.53 wrstuden vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
913 1.9 mycroft error = VOP_CLOSE(ump->um_devvp, fs->fs_ronly ? FREAD : FREAD|FWRITE,
914 1.1 mycroft NOCRED, p);
915 1.53 wrstuden vput(ump->um_devvp);
916 1.84 lukem free(fs->fs_csp, M_UFSMNT);
917 1.1 mycroft free(fs, M_UFSMNT);
918 1.1 mycroft free(ump, M_UFSMNT);
919 1.1 mycroft mp->mnt_data = (qaddr_t)0;
920 1.1 mycroft mp->mnt_flag &= ~MNT_LOCAL;
921 1.1 mycroft return (error);
922 1.1 mycroft }
923 1.1 mycroft
924 1.1 mycroft /*
925 1.1 mycroft * Flush out all the files in a filesystem.
926 1.1 mycroft */
927 1.19 christos int
928 1.1 mycroft ffs_flushfiles(mp, flags, p)
929 1.61 augustss struct mount *mp;
930 1.1 mycroft int flags;
931 1.1 mycroft struct proc *p;
932 1.1 mycroft {
933 1.1 mycroft extern int doforce;
934 1.61 augustss struct ufsmount *ump;
935 1.19 christos int error;
936 1.1 mycroft
937 1.1 mycroft if (!doforce)
938 1.1 mycroft flags &= ~FORCECLOSE;
939 1.1 mycroft ump = VFSTOUFS(mp);
940 1.1 mycroft #ifdef QUOTA
941 1.1 mycroft if (mp->mnt_flag & MNT_QUOTA) {
942 1.19 christos int i;
943 1.19 christos if ((error = vflush(mp, NULLVP, SKIPSYSTEM|flags)) != 0)
944 1.1 mycroft return (error);
945 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++) {
946 1.1 mycroft if (ump->um_quotas[i] == NULLVP)
947 1.1 mycroft continue;
948 1.1 mycroft quotaoff(p, mp, i);
949 1.1 mycroft }
950 1.1 mycroft /*
951 1.1 mycroft * Here we fall through to vflush again to ensure
952 1.1 mycroft * that we have gotten rid of all the system vnodes.
953 1.1 mycroft */
954 1.1 mycroft }
955 1.1 mycroft #endif
956 1.55 fvdl /*
957 1.55 fvdl * Flush all the files.
958 1.55 fvdl */
959 1.1 mycroft error = vflush(mp, NULLVP, flags);
960 1.55 fvdl if (error)
961 1.55 fvdl return (error);
962 1.55 fvdl /*
963 1.55 fvdl * Flush filesystem metadata.
964 1.55 fvdl */
965 1.55 fvdl vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
966 1.71 fvdl error = VOP_FSYNC(ump->um_devvp, p->p_ucred, FSYNC_WAIT, 0, 0, p);
967 1.55 fvdl VOP_UNLOCK(ump->um_devvp, 0);
968 1.1 mycroft return (error);
969 1.1 mycroft }
970 1.1 mycroft
971 1.1 mycroft /*
972 1.1 mycroft * Get file system statistics.
973 1.1 mycroft */
974 1.1 mycroft int
975 1.1 mycroft ffs_statfs(mp, sbp, p)
976 1.1 mycroft struct mount *mp;
977 1.61 augustss struct statfs *sbp;
978 1.1 mycroft struct proc *p;
979 1.1 mycroft {
980 1.61 augustss struct ufsmount *ump;
981 1.61 augustss struct fs *fs;
982 1.1 mycroft
983 1.1 mycroft ump = VFSTOUFS(mp);
984 1.1 mycroft fs = ump->um_fs;
985 1.1 mycroft if (fs->fs_magic != FS_MAGIC)
986 1.1 mycroft panic("ffs_statfs");
987 1.1 mycroft #ifdef COMPAT_09
988 1.1 mycroft sbp->f_type = 1;
989 1.1 mycroft #else
990 1.1 mycroft sbp->f_type = 0;
991 1.1 mycroft #endif
992 1.1 mycroft sbp->f_bsize = fs->fs_fsize;
993 1.1 mycroft sbp->f_iosize = fs->fs_bsize;
994 1.1 mycroft sbp->f_blocks = fs->fs_dsize;
995 1.98 mycroft sbp->f_bfree = blkstofrags(fs, fs->fs_cstotal.cs_nbfree) +
996 1.89 fvdl fs->fs_cstotal.cs_nffree + dbtofsb(fs, fs->fs_pendingblocks);
997 1.31 mjacob sbp->f_bavail = (long) (((u_int64_t) fs->fs_dsize * (u_int64_t)
998 1.38 kleink (100 - fs->fs_minfree) / (u_int64_t) 100) -
999 1.92 pooka (u_int64_t) (fs->fs_dsize - sbp->f_bfree));
1000 1.1 mycroft sbp->f_files = fs->fs_ncg * fs->fs_ipg - ROOTINO;
1001 1.89 fvdl sbp->f_ffree = fs->fs_cstotal.cs_nifree + fs->fs_pendinginodes;
1002 1.1 mycroft if (sbp != &mp->mnt_stat) {
1003 1.42 perry memcpy(sbp->f_mntonname, mp->mnt_stat.f_mntonname, MNAMELEN);
1004 1.42 perry memcpy(sbp->f_mntfromname, mp->mnt_stat.f_mntfromname, MNAMELEN);
1005 1.1 mycroft }
1006 1.12 mycroft strncpy(sbp->f_fstypename, mp->mnt_op->vfs_name, MFSNAMELEN);
1007 1.1 mycroft return (0);
1008 1.1 mycroft }
1009 1.1 mycroft
1010 1.1 mycroft /*
1011 1.1 mycroft * Go through the disk queues to initiate sandbagged IO;
1012 1.1 mycroft * go through the inodes to write those that have been modified;
1013 1.1 mycroft * initiate the writing of the super block if it has been modified.
1014 1.1 mycroft *
1015 1.1 mycroft * Note: we are always called with the filesystem marked `MPBUSY'.
1016 1.1 mycroft */
1017 1.1 mycroft int
1018 1.1 mycroft ffs_sync(mp, waitfor, cred, p)
1019 1.1 mycroft struct mount *mp;
1020 1.1 mycroft int waitfor;
1021 1.1 mycroft struct ucred *cred;
1022 1.1 mycroft struct proc *p;
1023 1.1 mycroft {
1024 1.33 fvdl struct vnode *vp, *nvp;
1025 1.33 fvdl struct inode *ip;
1026 1.33 fvdl struct ufsmount *ump = VFSTOUFS(mp);
1027 1.33 fvdl struct fs *fs;
1028 1.1 mycroft int error, allerror = 0;
1029 1.1 mycroft
1030 1.1 mycroft fs = ump->um_fs;
1031 1.33 fvdl if (fs->fs_fmod != 0 && fs->fs_ronly != 0) { /* XXX */
1032 1.33 fvdl printf("fs = %s\n", fs->fs_fsmnt);
1033 1.33 fvdl panic("update: rofs mod");
1034 1.1 mycroft }
1035 1.1 mycroft /*
1036 1.1 mycroft * Write back each (modified) inode.
1037 1.1 mycroft */
1038 1.33 fvdl simple_lock(&mntvnode_slock);
1039 1.1 mycroft loop:
1040 1.64 mycroft for (vp = LIST_FIRST(&mp->mnt_vnodelist); vp != NULL; vp = nvp) {
1041 1.1 mycroft /*
1042 1.1 mycroft * If the vnode that we are about to sync is no longer
1043 1.1 mycroft * associated with this mount point, start over.
1044 1.1 mycroft */
1045 1.1 mycroft if (vp->v_mount != mp)
1046 1.1 mycroft goto loop;
1047 1.33 fvdl simple_lock(&vp->v_interlock);
1048 1.64 mycroft nvp = LIST_NEXT(vp, v_mntvnodes);
1049 1.1 mycroft ip = VTOI(vp);
1050 1.57 fvdl if (vp->v_type == VNON ||
1051 1.57 fvdl ((ip->i_flag &
1052 1.63 mycroft (IN_ACCESS | IN_CHANGE | IN_UPDATE | IN_MODIFIED | IN_ACCESSED)) == 0 &&
1053 1.75 chs LIST_EMPTY(&vp->v_dirtyblkhd) &&
1054 1.87 chs vp->v_uobj.uo_npages == 0))
1055 1.57 fvdl {
1056 1.33 fvdl simple_unlock(&vp->v_interlock);
1057 1.33 fvdl continue;
1058 1.33 fvdl }
1059 1.33 fvdl simple_unlock(&mntvnode_slock);
1060 1.33 fvdl error = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK);
1061 1.33 fvdl if (error) {
1062 1.33 fvdl simple_lock(&mntvnode_slock);
1063 1.33 fvdl if (error == ENOENT)
1064 1.33 fvdl goto loop;
1065 1.1 mycroft continue;
1066 1.33 fvdl }
1067 1.35 kleink if ((error = VOP_FSYNC(vp, cred,
1068 1.71 fvdl waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0, p)) != 0)
1069 1.1 mycroft allerror = error;
1070 1.1 mycroft vput(vp);
1071 1.33 fvdl simple_lock(&mntvnode_slock);
1072 1.1 mycroft }
1073 1.33 fvdl simple_unlock(&mntvnode_slock);
1074 1.1 mycroft /*
1075 1.1 mycroft * Force stale file system control information to be flushed.
1076 1.1 mycroft */
1077 1.55 fvdl if (waitfor != MNT_LAZY) {
1078 1.55 fvdl if (ump->um_mountp->mnt_flag & MNT_SOFTDEP)
1079 1.55 fvdl waitfor = MNT_NOWAIT;
1080 1.55 fvdl vn_lock(ump->um_devvp, LK_EXCLUSIVE | LK_RETRY);
1081 1.55 fvdl if ((error = VOP_FSYNC(ump->um_devvp, cred,
1082 1.71 fvdl waitfor == MNT_WAIT ? FSYNC_WAIT : 0, 0, 0, p)) != 0)
1083 1.55 fvdl allerror = error;
1084 1.55 fvdl VOP_UNLOCK(ump->um_devvp, 0);
1085 1.55 fvdl }
1086 1.1 mycroft #ifdef QUOTA
1087 1.1 mycroft qsync(mp);
1088 1.1 mycroft #endif
1089 1.33 fvdl /*
1090 1.33 fvdl * Write back modified superblock.
1091 1.33 fvdl */
1092 1.33 fvdl if (fs->fs_fmod != 0) {
1093 1.33 fvdl fs->fs_fmod = 0;
1094 1.33 fvdl fs->fs_time = time.tv_sec;
1095 1.64 mycroft if ((error = ffs_cgupdate(ump, waitfor)))
1096 1.64 mycroft allerror = error;
1097 1.33 fvdl }
1098 1.1 mycroft return (allerror);
1099 1.1 mycroft }
1100 1.1 mycroft
1101 1.1 mycroft /*
1102 1.1 mycroft * Look up a FFS dinode number to find its incore vnode, otherwise read it
1103 1.1 mycroft * in from disk. If it is in core, wait for the lock bit to clear, then
1104 1.1 mycroft * return the inode locked. Detection and handling of mount points must be
1105 1.1 mycroft * done by the calling routine.
1106 1.1 mycroft */
1107 1.1 mycroft int
1108 1.1 mycroft ffs_vget(mp, ino, vpp)
1109 1.1 mycroft struct mount *mp;
1110 1.1 mycroft ino_t ino;
1111 1.1 mycroft struct vnode **vpp;
1112 1.1 mycroft {
1113 1.33 fvdl struct fs *fs;
1114 1.33 fvdl struct inode *ip;
1115 1.1 mycroft struct ufsmount *ump;
1116 1.1 mycroft struct buf *bp;
1117 1.1 mycroft struct vnode *vp;
1118 1.1 mycroft dev_t dev;
1119 1.43 thorpej int error;
1120 1.44 thorpej caddr_t cp;
1121 1.1 mycroft
1122 1.1 mycroft ump = VFSTOUFS(mp);
1123 1.1 mycroft dev = ump->um_dev;
1124 1.68 fvdl
1125 1.68 fvdl if ((*vpp = ufs_ihashget(dev, ino, LK_EXCLUSIVE)) != NULL)
1126 1.68 fvdl return (0);
1127 1.1 mycroft
1128 1.1 mycroft /* Allocate a new vnode/inode. */
1129 1.19 christos if ((error = getnewvnode(VT_UFS, mp, ffs_vnodeop_p, &vp)) != 0) {
1130 1.1 mycroft *vpp = NULL;
1131 1.1 mycroft return (error);
1132 1.1 mycroft }
1133 1.68 fvdl
1134 1.68 fvdl /*
1135 1.68 fvdl * If someone beat us to it while sleeping in getnewvnode(),
1136 1.68 fvdl * push back the freshly allocated vnode we don't need, and return.
1137 1.68 fvdl */
1138 1.87 chs
1139 1.68 fvdl do {
1140 1.68 fvdl if ((*vpp = ufs_ihashget(dev, ino, LK_EXCLUSIVE)) != NULL) {
1141 1.69 fvdl ungetnewvnode(vp);
1142 1.68 fvdl return (0);
1143 1.68 fvdl }
1144 1.68 fvdl } while (lockmgr(&ufs_hashlock, LK_EXCLUSIVE|LK_SLEEPFAIL, 0));
1145 1.68 fvdl
1146 1.43 thorpej /*
1147 1.43 thorpej * XXX MFS ends up here, too, to allocate an inode. Should we
1148 1.43 thorpej * XXX create another pool for MFS inodes?
1149 1.43 thorpej */
1150 1.87 chs
1151 1.43 thorpej ip = pool_get(&ffs_inode_pool, PR_WAITOK);
1152 1.87 chs memset(ip, 0, sizeof(struct inode));
1153 1.1 mycroft vp->v_data = ip;
1154 1.1 mycroft ip->i_vnode = vp;
1155 1.1 mycroft ip->i_fs = fs = ump->um_fs;
1156 1.1 mycroft ip->i_dev = dev;
1157 1.1 mycroft ip->i_number = ino;
1158 1.77 chs LIST_INIT(&ip->i_pcbufhd);
1159 1.1 mycroft #ifdef QUOTA
1160 1.19 christos {
1161 1.19 christos int i;
1162 1.19 christos
1163 1.19 christos for (i = 0; i < MAXQUOTAS; i++)
1164 1.19 christos ip->i_dquot[i] = NODQUOT;
1165 1.19 christos }
1166 1.1 mycroft #endif
1167 1.86 chs
1168 1.1 mycroft /*
1169 1.1 mycroft * Put it onto its hash chain and lock it so that other requests for
1170 1.1 mycroft * this inode will block if they arrive while we are sleeping waiting
1171 1.1 mycroft * for old data structures to be purged or for the contents of the
1172 1.1 mycroft * disk portion of this inode to be read.
1173 1.1 mycroft */
1174 1.87 chs
1175 1.1 mycroft ufs_ihashins(ip);
1176 1.33 fvdl lockmgr(&ufs_hashlock, LK_RELEASE, 0);
1177 1.1 mycroft
1178 1.1 mycroft /* Read in the disk contents for the inode, copy into the inode. */
1179 1.19 christos error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
1180 1.19 christos (int)fs->fs_bsize, NOCRED, &bp);
1181 1.19 christos if (error) {
1182 1.87 chs
1183 1.1 mycroft /*
1184 1.1 mycroft * The inode does not contain anything useful, so it would
1185 1.1 mycroft * be misleading to leave it on its hash chain. With mode
1186 1.1 mycroft * still zero, it will be unlinked and returned to the free
1187 1.1 mycroft * list by vput().
1188 1.1 mycroft */
1189 1.87 chs
1190 1.1 mycroft vput(vp);
1191 1.1 mycroft brelse(bp);
1192 1.1 mycroft *vpp = NULL;
1193 1.1 mycroft return (error);
1194 1.1 mycroft }
1195 1.44 thorpej cp = (caddr_t)bp->b_data + (ino_to_fsbo(fs, ino) * DINODE_SIZE);
1196 1.34 bouyer #ifdef FFS_EI
1197 1.55 fvdl if (UFS_FSNEEDSWAP(fs))
1198 1.44 thorpej ffs_dinode_swap((struct dinode *)cp, &ip->i_din.ffs_din);
1199 1.34 bouyer else
1200 1.34 bouyer #endif
1201 1.44 thorpej memcpy(&ip->i_din.ffs_din, cp, DINODE_SIZE);
1202 1.55 fvdl if (DOINGSOFTDEP(vp))
1203 1.55 fvdl softdep_load_inodeblock(ip);
1204 1.55 fvdl else
1205 1.55 fvdl ip->i_ffs_effnlink = ip->i_ffs_nlink;
1206 1.1 mycroft brelse(bp);
1207 1.1 mycroft
1208 1.1 mycroft /*
1209 1.1 mycroft * Initialize the vnode from the inode, check for aliases.
1210 1.1 mycroft * Note that the underlying vnode may have changed.
1211 1.1 mycroft */
1212 1.87 chs
1213 1.87 chs ufs_vinit(mp, ffs_specop_p, ffs_fifoop_p, &vp);
1214 1.87 chs
1215 1.1 mycroft /*
1216 1.1 mycroft * Finish inode initialization now that aliasing has been resolved.
1217 1.1 mycroft */
1218 1.87 chs
1219 1.87 chs genfs_node_init(vp, &ffs_genfsops);
1220 1.1 mycroft ip->i_devvp = ump->um_devvp;
1221 1.1 mycroft VREF(ip->i_devvp);
1222 1.87 chs
1223 1.1 mycroft /*
1224 1.1 mycroft * Ensure that uid and gid are correct. This is a temporary
1225 1.1 mycroft * fix until fsck has been changed to do the update.
1226 1.1 mycroft */
1227 1.87 chs
1228 1.38 kleink if (fs->fs_inodefmt < FS_44INODEFMT) { /* XXX */
1229 1.38 kleink ip->i_ffs_uid = ip->i_din.ffs_din.di_ouid; /* XXX */
1230 1.38 kleink ip->i_ffs_gid = ip->i_din.ffs_din.di_ogid; /* XXX */
1231 1.38 kleink } /* XXX */
1232 1.73 chs uvm_vnp_setsize(vp, ip->i_ffs_size);
1233 1.1 mycroft *vpp = vp;
1234 1.1 mycroft return (0);
1235 1.1 mycroft }
1236 1.1 mycroft
1237 1.1 mycroft /*
1238 1.1 mycroft * File handle to vnode
1239 1.1 mycroft *
1240 1.1 mycroft * Have to be really careful about stale file handles:
1241 1.1 mycroft * - check that the inode number is valid
1242 1.1 mycroft * - call ffs_vget() to get the locked inode
1243 1.1 mycroft * - check for an unallocated inode (i_mode == 0)
1244 1.1 mycroft * - check that the given client host has export rights and return
1245 1.1 mycroft * those rights via. exflagsp and credanonp
1246 1.1 mycroft */
1247 1.1 mycroft int
1248 1.48 wrstuden ffs_fhtovp(mp, fhp, vpp)
1249 1.61 augustss struct mount *mp;
1250 1.1 mycroft struct fid *fhp;
1251 1.1 mycroft struct vnode **vpp;
1252 1.1 mycroft {
1253 1.61 augustss struct ufid *ufhp;
1254 1.1 mycroft struct fs *fs;
1255 1.1 mycroft
1256 1.1 mycroft ufhp = (struct ufid *)fhp;
1257 1.1 mycroft fs = VFSTOUFS(mp)->um_fs;
1258 1.1 mycroft if (ufhp->ufid_ino < ROOTINO ||
1259 1.1 mycroft ufhp->ufid_ino >= fs->fs_ncg * fs->fs_ipg)
1260 1.1 mycroft return (ESTALE);
1261 1.48 wrstuden return (ufs_fhtovp(mp, ufhp, vpp));
1262 1.1 mycroft }
1263 1.1 mycroft
1264 1.1 mycroft /*
1265 1.1 mycroft * Vnode pointer to File handle
1266 1.1 mycroft */
1267 1.1 mycroft /* ARGSUSED */
1268 1.19 christos int
1269 1.1 mycroft ffs_vptofh(vp, fhp)
1270 1.1 mycroft struct vnode *vp;
1271 1.1 mycroft struct fid *fhp;
1272 1.1 mycroft {
1273 1.61 augustss struct inode *ip;
1274 1.61 augustss struct ufid *ufhp;
1275 1.1 mycroft
1276 1.1 mycroft ip = VTOI(vp);
1277 1.1 mycroft ufhp = (struct ufid *)fhp;
1278 1.1 mycroft ufhp->ufid_len = sizeof(struct ufid);
1279 1.1 mycroft ufhp->ufid_ino = ip->i_number;
1280 1.25 bouyer ufhp->ufid_gen = ip->i_ffs_gen;
1281 1.1 mycroft return (0);
1282 1.33 fvdl }
1283 1.33 fvdl
1284 1.33 fvdl void
1285 1.33 fvdl ffs_init()
1286 1.33 fvdl {
1287 1.59 jdolecek if (ffs_initcount++ > 0)
1288 1.59 jdolecek return;
1289 1.59 jdolecek
1290 1.55 fvdl softdep_initialize();
1291 1.33 fvdl ufs_init();
1292 1.43 thorpej
1293 1.43 thorpej pool_init(&ffs_inode_pool, sizeof(struct inode), 0, 0, 0, "ffsinopl",
1294 1.93 thorpej &pool_allocator_nointr);
1295 1.86 chs }
1296 1.86 chs
1297 1.86 chs void
1298 1.86 chs ffs_reinit()
1299 1.86 chs {
1300 1.86 chs softdep_reinitialize();
1301 1.86 chs ufs_reinit();
1302 1.59 jdolecek }
1303 1.59 jdolecek
1304 1.59 jdolecek void
1305 1.59 jdolecek ffs_done()
1306 1.59 jdolecek {
1307 1.59 jdolecek if (--ffs_initcount > 0)
1308 1.59 jdolecek return;
1309 1.59 jdolecek
1310 1.59 jdolecek /* XXX softdep cleanup ? */
1311 1.59 jdolecek ufs_done();
1312 1.59 jdolecek pool_destroy(&ffs_inode_pool);
1313 1.33 fvdl }
1314 1.33 fvdl
1315 1.33 fvdl int
1316 1.33 fvdl ffs_sysctl(name, namelen, oldp, oldlenp, newp, newlen, p)
1317 1.33 fvdl int *name;
1318 1.33 fvdl u_int namelen;
1319 1.33 fvdl void *oldp;
1320 1.33 fvdl size_t *oldlenp;
1321 1.33 fvdl void *newp;
1322 1.33 fvdl size_t newlen;
1323 1.33 fvdl struct proc *p;
1324 1.33 fvdl {
1325 1.87 chs extern int doasyncfree;
1326 1.62 jdolecek extern int ffs_log_changeopt;
1327 1.33 fvdl
1328 1.33 fvdl /* all sysctl names at this level are terminal */
1329 1.33 fvdl if (namelen != 1)
1330 1.33 fvdl return (ENOTDIR); /* overloaded */
1331 1.33 fvdl
1332 1.33 fvdl switch (name[0]) {
1333 1.33 fvdl case FFS_ASYNCFREE:
1334 1.33 fvdl return (sysctl_int(oldp, oldlenp, newp, newlen, &doasyncfree));
1335 1.62 jdolecek case FFS_LOG_CHANGEOPT:
1336 1.62 jdolecek return (sysctl_int(oldp, oldlenp, newp, newlen,
1337 1.62 jdolecek &ffs_log_changeopt));
1338 1.33 fvdl default:
1339 1.33 fvdl return (EOPNOTSUPP);
1340 1.33 fvdl }
1341 1.33 fvdl /* NOTREACHED */
1342 1.1 mycroft }
1343 1.1 mycroft
1344 1.1 mycroft /*
1345 1.1 mycroft * Write a superblock and associated information back to disk.
1346 1.1 mycroft */
1347 1.1 mycroft int
1348 1.1 mycroft ffs_sbupdate(mp, waitfor)
1349 1.1 mycroft struct ufsmount *mp;
1350 1.1 mycroft int waitfor;
1351 1.1 mycroft {
1352 1.61 augustss struct fs *fs = mp->um_fs;
1353 1.61 augustss struct buf *bp;
1354 1.15 mycroft int i, error = 0;
1355 1.34 bouyer int32_t saved_nrpos = fs->fs_nrpos;
1356 1.34 bouyer int64_t saved_qbmask = fs->fs_qbmask;
1357 1.34 bouyer int64_t saved_qfmask = fs->fs_qfmask;
1358 1.34 bouyer u_int64_t saved_maxfilesize = fs->fs_maxfilesize;
1359 1.55 fvdl u_int8_t saveflag;
1360 1.1 mycroft
1361 1.1 mycroft /* Restore compatibility to old file systems. XXX */
1362 1.1 mycroft if (fs->fs_postblformat == FS_42POSTBLFMT) /* XXX */
1363 1.34 bouyer fs->fs_nrpos = -1; /* XXX */
1364 1.1 mycroft if (fs->fs_inodefmt < FS_44INODEFMT) { /* XXX */
1365 1.5 mycroft int32_t *lp, tmp; /* XXX */
1366 1.1 mycroft /* XXX */
1367 1.38 kleink lp = (int32_t *)&fs->fs_qbmask; /* XXX nuke qfmask too */
1368 1.1 mycroft tmp = lp[4]; /* XXX */
1369 1.1 mycroft for (i = 4; i > 0; i--) /* XXX */
1370 1.1 mycroft lp[i] = lp[i-1]; /* XXX */
1371 1.1 mycroft lp[0] = tmp; /* XXX */
1372 1.1 mycroft } /* XXX */
1373 1.34 bouyer fs->fs_maxfilesize = mp->um_savedmaxfilesize; /* XXX */
1374 1.34 bouyer
1375 1.34 bouyer bp = getblk(mp->um_devvp, SBOFF >> (fs->fs_fshift - fs->fs_fsbtodb),
1376 1.34 bouyer (int)fs->fs_sbsize, 0, 0);
1377 1.55 fvdl saveflag = fs->fs_flags & FS_INTERNAL;
1378 1.55 fvdl fs->fs_flags &= ~FS_INTERNAL;
1379 1.42 perry memcpy(bp->b_data, fs, fs->fs_sbsize);
1380 1.34 bouyer #ifdef FFS_EI
1381 1.34 bouyer if (mp->um_flags & UFS_NEEDSWAP)
1382 1.83 lukem ffs_sb_swap(fs, (struct fs*)bp->b_data);
1383 1.34 bouyer #endif
1384 1.34 bouyer
1385 1.55 fvdl fs->fs_flags |= saveflag;
1386 1.34 bouyer fs->fs_nrpos = saved_nrpos; /* XXX */
1387 1.34 bouyer fs->fs_qbmask = saved_qbmask; /* XXX */
1388 1.34 bouyer fs->fs_qfmask = saved_qfmask; /* XXX */
1389 1.34 bouyer fs->fs_maxfilesize = saved_maxfilesize; /* XXX */
1390 1.34 bouyer
1391 1.1 mycroft if (waitfor == MNT_WAIT)
1392 1.1 mycroft error = bwrite(bp);
1393 1.1 mycroft else
1394 1.1 mycroft bawrite(bp);
1395 1.15 mycroft return (error);
1396 1.15 mycroft }
1397 1.15 mycroft
1398 1.15 mycroft int
1399 1.15 mycroft ffs_cgupdate(mp, waitfor)
1400 1.15 mycroft struct ufsmount *mp;
1401 1.15 mycroft int waitfor;
1402 1.15 mycroft {
1403 1.61 augustss struct fs *fs = mp->um_fs;
1404 1.61 augustss struct buf *bp;
1405 1.15 mycroft int blks;
1406 1.84 lukem void *space;
1407 1.15 mycroft int i, size, error = 0, allerror = 0;
1408 1.15 mycroft
1409 1.15 mycroft allerror = ffs_sbupdate(mp, waitfor);
1410 1.1 mycroft blks = howmany(fs->fs_cssize, fs->fs_fsize);
1411 1.84 lukem space = fs->fs_csp;
1412 1.1 mycroft for (i = 0; i < blks; i += fs->fs_frag) {
1413 1.1 mycroft size = fs->fs_bsize;
1414 1.1 mycroft if (i + fs->fs_frag > blks)
1415 1.1 mycroft size = (blks - i) * fs->fs_fsize;
1416 1.1 mycroft bp = getblk(mp->um_devvp, fsbtodb(fs, fs->fs_csaddr + i),
1417 1.1 mycroft size, 0, 0);
1418 1.34 bouyer #ifdef FFS_EI
1419 1.34 bouyer if (mp->um_flags & UFS_NEEDSWAP)
1420 1.34 bouyer ffs_csum_swap((struct csum*)space,
1421 1.38 kleink (struct csum*)bp->b_data, size);
1422 1.34 bouyer else
1423 1.34 bouyer #endif
1424 1.42 perry memcpy(bp->b_data, space, (u_int)size);
1425 1.84 lukem space = (char *)space + size;
1426 1.1 mycroft if (waitfor == MNT_WAIT)
1427 1.1 mycroft error = bwrite(bp);
1428 1.1 mycroft else
1429 1.1 mycroft bawrite(bp);
1430 1.1 mycroft }
1431 1.15 mycroft if (!allerror && error)
1432 1.15 mycroft allerror = error;
1433 1.15 mycroft return (allerror);
1434 1.1 mycroft }
1435