Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sys / vfs / mfs / mfs_vfsops.c
1 /*
2  * Copyright (c) 1989, 1990, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)mfs_vfsops.c        8.11 (Berkeley) 6/19/95
34  * $FreeBSD: src/sys/ufs/mfs/mfs_vfsops.c,v 1.81.2.3 2001/07/04 17:35:21 tegge Exp $
35  * $DragonFly: src/sys/vfs/mfs/mfs_vfsops.c,v 1.2 2003/06/17 04:28:59 dillon Exp $
36  */
37
38
39 #include "opt_mfs.h"
40
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/conf.h>
44 #include <sys/kernel.h>
45 #include <sys/proc.h>
46 #include <sys/buf.h>
47 #include <sys/mount.h>
48 #include <sys/signalvar.h>
49 #include <sys/vnode.h>
50 #include <sys/malloc.h>
51 #include <sys/linker.h>
52
53 #include <ufs/ufs/quota.h>
54 #include <ufs/ufs/inode.h>
55 #include <ufs/ufs/ufsmount.h>
56 #include <ufs/ufs/ufs_extern.h>
57
58 #include <ufs/ffs/fs.h>
59 #include <ufs/ffs/ffs_extern.h>
60
61 #include <ufs/mfs/mfsnode.h>
62 #include <ufs/mfs/mfs_extern.h>
63
64 MALLOC_DEFINE(M_MFSNODE, "MFS node", "MFS vnode private part");
65
66
67 static int mfs_minor;           /* used for building internal dev_t */
68
69 extern vop_t **mfs_vnodeop_p;
70
71 static int      mfs_mount __P((struct mount *mp,
72                         char *path, caddr_t data, struct nameidata *ndp, 
73                         struct proc *p));
74 static int      mfs_start __P((struct mount *mp, int flags, struct proc *p));
75 static int      mfs_statfs __P((struct mount *mp, struct statfs *sbp, 
76                         struct proc *p));
77 static int      mfs_init __P((struct vfsconf *));
78
79 static struct cdevsw mfs_cdevsw = {
80         /* open */      noopen,
81         /* close */     noclose,
82         /* read */      physread,
83         /* write */     physwrite,
84         /* ioctl */     noioctl,
85         /* poll */      nopoll,
86         /* mmap */      nommap,
87         /* strategy */  nostrategy,
88         /* name */      "MFS",
89         /* maj */       253,
90         /* dump */      nodump,
91         /* psize */     nopsize,
92         /* flags */     D_DISK,
93         /* bmaj */      253,
94 };
95
96 /*
97  * mfs vfs operations.
98  */
99 static struct vfsops mfs_vfsops = {
100         mfs_mount,
101         mfs_start,
102         ffs_unmount,
103         ufs_root,
104         ufs_quotactl,
105         mfs_statfs,
106         ffs_sync,
107         ffs_vget,
108         ffs_fhtovp,
109         ufs_check_export,
110         ffs_vptofh,
111         mfs_init,
112         vfs_stduninit,
113         vfs_stdextattrctl,
114 };
115
116 VFS_SET(mfs_vfsops, mfs, 0);
117
118
119 /*
120  * mfs_mount
121  *
122  * Called when mounting local physical media
123  *
124  * PARAMETERS:
125  *              mountroot
126  *                      mp      mount point structure
127  *                      path    NULL (flag for root mount!!!)
128  *                      data    <unused>
129  *                      ndp     <unused>
130  *                      p       process (user credentials check [statfs])
131  *
132  *              mount
133  *                      mp      mount point structure
134  *                      path    path to mount point
135  *                      data    pointer to argument struct in user space
136  *                      ndp     mount point namei() return (used for
137  *                              credentials on reload), reused to look
138  *                              up block device.
139  *                      p       process (user credentials check)
140  *
141  * RETURNS:     0       Success
142  *              !0      error number (errno.h)
143  *
144  * LOCK STATE:
145  *
146  *              ENTRY
147  *                      mount point is locked
148  *              EXIT
149  *                      mount point is locked
150  *
151  * NOTES:
152  *              A NULL path can be used for a flag since the mount
153  *              system call will fail with EFAULT in copyinstr in
154  *              namei() if it is a genuine NULL from the user.
155  */
156 /* ARGSUSED */
157 static int
158 mfs_mount(mp, path, data, ndp, p)
159         register struct mount *mp;
160         char *path;
161         caddr_t data;
162         struct nameidata *ndp;
163         struct proc *p;
164 {
165         struct vnode *devvp;
166         struct mfs_args args;
167         struct ufsmount *ump;
168         struct fs *fs;
169         struct mfsnode *mfsp;
170         size_t size;
171         int flags, err;
172         dev_t dev;
173
174         /*
175          * Use NULL path to flag a root mount
176          */
177         if( path == NULL) {
178                 /*
179                  ***
180                  * Mounting root file system
181                  ***
182                  */
183
184                 /* you lose */
185                 panic("mfs_mount: mount MFS as root: not configured!");
186         }
187
188         /*
189          ***
190          * Mounting non-root file system or updating a file system
191          ***
192          */
193
194         /* copy in user arguments*/
195         if ((err = copyin(data, (caddr_t)&args, sizeof (struct mfs_args))) != 0)
196                 goto error_1;
197
198         /*
199          * If updating, check whether changing from read-only to
200          * read/write; if there is no device name, that's all we do.
201          */
202         if (mp->mnt_flag & MNT_UPDATE) {
203                 /*
204                  ********************
205                  * UPDATE
206                  ********************
207                  */
208                 ump = VFSTOUFS(mp);
209                 fs = ump->um_fs;
210                 if (fs->fs_ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
211                         flags = WRITECLOSE;
212                         if (mp->mnt_flag & MNT_FORCE)
213                                 flags |= FORCECLOSE;
214                         err = ffs_flushfiles(mp, flags, p);
215                         if (err)
216                                 goto error_1;
217                 }
218                 if (fs->fs_ronly && (mp->mnt_kern_flag & MNTK_WANTRDWR))
219                         fs->fs_ronly = 0;
220                 /* if not updating name...*/
221                 if (args.fspec == 0) {
222                         /*
223                          * Process export requests.  Jumping to "success"
224                          * will return the vfs_export() error code. 
225                          */
226                         err = vfs_export(mp, &ump->um_export, &args.export);
227                         goto success;
228                 }
229
230                 /* XXX MFS does not support name updating*/
231                 goto success;
232         }
233         /*
234          * Do the MALLOC before the getnewvnode since doing so afterward
235          * might cause a bogus v_data pointer to get dereferenced
236          * elsewhere if MALLOC should block.
237          */
238         MALLOC(mfsp, struct mfsnode *, sizeof *mfsp, M_MFSNODE, M_WAITOK);
239
240         err = getnewvnode(VT_MFS, (struct mount *)0, mfs_vnodeop_p, &devvp);
241         if (err) {
242                 FREE(mfsp, M_MFSNODE);
243                 goto error_1;
244         }
245         devvp->v_type = VBLK;
246         dev = make_dev(&mfs_cdevsw, mfs_minor, 0, 0, 0, "MFS%d", mfs_minor);
247         /* It is not clear that these will get initialized otherwise */
248         dev->si_bsize_phys = DEV_BSIZE;
249         dev->si_iosize_max = DFLTPHYS;
250         addaliasu(devvp, makeudev(253, mfs_minor++));
251         devvp->v_data = mfsp;
252         mfsp->mfs_baseoff = args.base;
253         mfsp->mfs_size = args.size;
254         mfsp->mfs_vnode = devvp;
255         mfsp->mfs_pid = p->p_pid;
256         mfsp->mfs_active = 1;
257         bufq_init(&mfsp->buf_queue);
258
259         /*
260          * Since this is a new mount, we want the names for
261          * the device and the mount point copied in.  If an
262          * error occurs,  the mountpoint is discarded by the
263          * upper level code.
264          */
265         /* Save "last mounted on" info for mount point (NULL pad)*/
266         copyinstr(      path,                           /* mount point*/
267                         mp->mnt_stat.f_mntonname,       /* save area*/
268                         MNAMELEN - 1,                   /* max size*/
269                         &size);                         /* real size*/
270         bzero( mp->mnt_stat.f_mntonname + size, MNAMELEN - size);
271
272         /* Save "mounted from" info for mount point (NULL pad)*/
273         copyinstr(      args.fspec,                     /* device name*/
274                         mp->mnt_stat.f_mntfromname,     /* save area*/
275                         MNAMELEN - 1,                   /* max size*/
276                         &size);                         /* real size*/
277         bzero( mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
278
279         if ((err = ffs_mountfs(devvp, mp, p, M_MFSNODE)) != 0) { 
280                 mfsp->mfs_active = 0;
281                 goto error_2;
282         }
283
284         /*
285          * Initialize FS stat information in mount struct; uses both
286          * mp->mnt_stat.f_mntonname and mp->mnt_stat.f_mntfromname
287          *
288          * This code is common to root and non-root mounts
289          */
290         (void) VFS_STATFS(mp, &mp->mnt_stat, p);
291
292         goto success;
293
294 error_2:        /* error with devvp held*/
295
296         /* release devvp before failing*/
297         vrele(devvp);
298
299 error_1:        /* no state to back out*/
300
301 success:
302         return( err);
303 }
304
305
306 static int      mfs_pri = PWAIT | PCATCH;               /* XXX prob. temp */
307
308 /*
309  * Used to grab the process and keep it in the kernel to service
310  * memory filesystem I/O requests.
311  *
312  * Loop servicing I/O requests.
313  * Copy the requested data into or out of the memory filesystem
314  * address space.
315  */
316 /* ARGSUSED */
317 static int
318 mfs_start(mp, flags, p)
319         struct mount *mp;
320         int flags;
321         struct proc *p;
322 {
323         register struct vnode *vp = VFSTOUFS(mp)->um_devvp;
324         register struct mfsnode *mfsp = VTOMFS(vp);
325         register struct buf *bp;
326         register int gotsig = 0, sig;
327
328         /*
329          * We must prevent the system from trying to swap
330          * out or kill ( when swap space is low, see vm/pageout.c ) the
331          * process.  A deadlock can occur if the process is swapped out,
332          * and the system can loop trying to kill the unkillable ( while
333          * references exist ) MFS process when swap space is low.
334          */
335         PHOLD(curproc);
336
337         while (mfsp->mfs_active) {
338                 int s;
339
340                 s = splbio();
341
342                 while ((bp = bufq_first(&mfsp->buf_queue)) != NULL) {
343                         bufq_remove(&mfsp->buf_queue, bp);
344                         splx(s);
345                         mfs_doio(bp, mfsp);
346                         wakeup((caddr_t)bp);
347                         s = splbio();
348                 }
349
350                 splx(s);
351
352                 /*
353                  * If a non-ignored signal is received, try to unmount.
354                  * If that fails, clear the signal (it has been "processed"),
355                  * otherwise we will loop here, as tsleep will always return
356                  * EINTR/ERESTART.
357                  */
358                 /*
359                  * Note that dounmount() may fail if work was queued after
360                  * we slept. We have to jump hoops here to make sure that we
361                  * process any buffers after the sleep, before we dounmount()
362                  */
363                 if (gotsig) {
364                         gotsig = 0;
365                         if (dounmount(mp, 0, p) != 0) {
366                                 sig = CURSIG(p);
367                                 if (sig)
368                                         SIGDELSET(p->p_siglist, sig);
369                         }
370                 }
371                 else if (tsleep((caddr_t)vp, mfs_pri, "mfsidl", 0))
372                         gotsig++;       /* try to unmount in next pass */
373         }
374         return (0);
375 }
376
377 /*
378  * Get file system statistics.
379  */
380 static int
381 mfs_statfs(mp, sbp, p)
382         struct mount *mp;
383         struct statfs *sbp;
384         struct proc *p;
385 {
386         int error;
387
388         error = ffs_statfs(mp, sbp, p);
389         sbp->f_type = mp->mnt_vfc->vfc_typenum;
390         return (error);
391 }
392
393 /*
394  * Memory based filesystem initialization.
395  */
396 static int
397 mfs_init(vfsp)
398         struct vfsconf *vfsp;
399 {
400
401         cdevsw_add(&mfs_cdevsw);
402         return (0);
403 }
404