]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/fs/tmpfs/tmpfs_vfsops.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / fs / tmpfs / tmpfs_vfsops.c
1 /*      $NetBSD: tmpfs_vfsops.c,v 1.10 2005/12/11 12:24:29 christos Exp $       */
2
3 /*-
4  * Copyright (c) 2005 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Julio M. Merino Vidal, developed as part of Google's Summer of Code
9  * 2005 program.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 /*
34  * Efficient memory file system.
35  *
36  * tmpfs is a file system that uses NetBSD's virtual memory sub-system
37  * (the well-known UVM) to store file data and metadata in an efficient
38  * way.  This means that it does not follow the structure of an on-disk
39  * file system because it simply does not need to.  Instead, it uses
40  * memory-specific data structures and algorithms to automatically
41  * allocate and release resources.
42  */
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD$");
45
46 #include <sys/param.h>
47 #include <sys/limits.h>
48 #include <sys/lock.h>
49 #include <sys/mutex.h>
50 #include <sys/kernel.h>
51 #include <sys/stat.h>
52 #include <sys/systm.h>
53 #include <sys/sysctl.h>
54
55 #include <vm/vm.h>
56 #include <vm/vm_object.h>
57 #include <vm/vm_param.h>
58
59 #include <fs/tmpfs/tmpfs.h>
60
61 /*
62  * Default permission for root node
63  */
64 #define TMPFS_DEFAULT_ROOT_MODE (S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH)
65
66 MALLOC_DEFINE(M_TMPFSMNT, "tmpfs mount", "tmpfs mount structures");
67 MALLOC_DEFINE(M_TMPFSNAME, "tmpfs name", "tmpfs file names");
68
69 /* --------------------------------------------------------------------- */
70
71 static int      tmpfs_mount(struct mount *);
72 static int      tmpfs_unmount(struct mount *, int);
73 static int      tmpfs_root(struct mount *, int flags, struct vnode **);
74 static int      tmpfs_fhtovp(struct mount *, struct fid *, int,
75                     struct vnode **);
76 static int      tmpfs_statfs(struct mount *, struct statfs *);
77
78 /* --------------------------------------------------------------------- */
79
80 static const char *tmpfs_opts[] = {
81         "from", "size", "maxfilesize", "inodes", "uid", "gid", "mode", "export",
82         NULL
83 };
84
85 static const char *tmpfs_updateopts[] = {
86         "from", "export", NULL
87 };
88
89 /* --------------------------------------------------------------------- */
90
91 static int
92 tmpfs_getopt_size(struct vfsoptlist *opts, const char *name, off_t *value)
93 {
94         char *opt_value, *vtp;
95         quad_t iv;
96         int error, opt_len;
97
98         error = vfs_getopt(opts, name, (void **)&opt_value, &opt_len);
99         if (error != 0)
100                 return (error);
101         if (opt_len == 0 || opt_value == NULL)
102                 return (EINVAL);
103         if (opt_value[0] == '\0' || opt_value[opt_len - 1] != '\0')
104                 return (EINVAL);
105         iv = strtoq(opt_value, &vtp, 0);
106         if (vtp == opt_value || (vtp[0] != '\0' && vtp[1] != '\0'))
107                 return (EINVAL);
108         if (iv < 0)
109                 return (EINVAL);
110         switch (vtp[0]) {
111         case 't':
112         case 'T':
113                 iv *= 1024;
114         case 'g':
115         case 'G':
116                 iv *= 1024;
117         case 'm':
118         case 'M':
119                 iv *= 1024;
120         case 'k':
121         case 'K':
122                 iv *= 1024;
123         case '\0':
124                 break;
125         default:
126                 return (EINVAL);
127         }
128         *value = iv;
129
130         return (0);
131 }
132
133
134 static int
135 tmpfs_node_ctor(void *mem, int size, void *arg, int flags)
136 {
137         struct tmpfs_node *node = (struct tmpfs_node *)mem;
138
139         node->tn_gen++;
140         node->tn_size = 0;
141         node->tn_status = 0;
142         node->tn_flags = 0;
143         node->tn_links = 0;
144         node->tn_vnode = NULL;
145         node->tn_vpstate = 0;
146
147         return (0);
148 }
149
150 static void
151 tmpfs_node_dtor(void *mem, int size, void *arg)
152 {
153         struct tmpfs_node *node = (struct tmpfs_node *)mem;
154         node->tn_type = VNON;
155 }
156
157 static int
158 tmpfs_node_init(void *mem, int size, int flags)
159 {
160         struct tmpfs_node *node = (struct tmpfs_node *)mem;
161         node->tn_id = 0;
162
163         mtx_init(&node->tn_interlock, "tmpfs node interlock", NULL, MTX_DEF);
164         node->tn_gen = arc4random();
165
166         return (0);
167 }
168
169 static void
170 tmpfs_node_fini(void *mem, int size)
171 {
172         struct tmpfs_node *node = (struct tmpfs_node *)mem;
173
174         mtx_destroy(&node->tn_interlock);
175 }
176
177 static int
178 tmpfs_mount(struct mount *mp)
179 {
180         const size_t nodes_per_page = howmany(PAGE_SIZE,
181             sizeof(struct tmpfs_dirent) + sizeof(struct tmpfs_node));
182         struct tmpfs_mount *tmp;
183         struct tmpfs_node *root;
184         int error;
185         /* Size counters. */
186         u_quad_t pages;
187         off_t nodes_max, size_max, maxfilesize;
188
189         /* Root node attributes. */
190         uid_t root_uid;
191         gid_t root_gid;
192         mode_t root_mode;
193
194         struct vattr va;
195
196         if (vfs_filteropt(mp->mnt_optnew, tmpfs_opts))
197                 return (EINVAL);
198
199         if (mp->mnt_flag & MNT_UPDATE) {
200                 /* Only support update mounts for certain options. */
201                 if (vfs_filteropt(mp->mnt_optnew, tmpfs_updateopts) != 0)
202                         return (EOPNOTSUPP);
203                 if (vfs_flagopt(mp->mnt_optnew, "ro", NULL, 0) !=
204                     ((struct tmpfs_mount *)mp->mnt_data)->tm_ronly)
205                         return (EOPNOTSUPP);
206                 return (0);
207         }
208
209         vn_lock(mp->mnt_vnodecovered, LK_SHARED | LK_RETRY);
210         error = VOP_GETATTR(mp->mnt_vnodecovered, &va, mp->mnt_cred);
211         VOP_UNLOCK(mp->mnt_vnodecovered, 0);
212         if (error)
213                 return (error);
214
215         if (mp->mnt_cred->cr_ruid != 0 ||
216             vfs_scanopt(mp->mnt_optnew, "gid", "%d", &root_gid) != 1)
217                 root_gid = va.va_gid;
218         if (mp->mnt_cred->cr_ruid != 0 ||
219             vfs_scanopt(mp->mnt_optnew, "uid", "%d", &root_uid) != 1)
220                 root_uid = va.va_uid;
221         if (mp->mnt_cred->cr_ruid != 0 ||
222             vfs_scanopt(mp->mnt_optnew, "mode", "%ho", &root_mode) != 1)
223                 root_mode = va.va_mode;
224         if (tmpfs_getopt_size(mp->mnt_optnew, "inodes", &nodes_max) != 0)
225                 nodes_max = 0;
226         if (tmpfs_getopt_size(mp->mnt_optnew, "size", &size_max) != 0)
227                 size_max = 0;
228         if (tmpfs_getopt_size(mp->mnt_optnew, "maxfilesize", &maxfilesize) != 0)
229                 maxfilesize = 0;
230
231         /* Do not allow mounts if we do not have enough memory to preserve
232          * the minimum reserved pages. */
233         if (tmpfs_mem_avail() < TMPFS_PAGES_MINRESERVED)
234                 return ENOSPC;
235
236         /* Get the maximum number of memory pages this file system is
237          * allowed to use, based on the maximum size the user passed in
238          * the mount structure.  A value of zero is treated as if the
239          * maximum available space was requested. */
240         if (size_max < PAGE_SIZE || size_max > OFF_MAX - PAGE_SIZE ||
241             (SIZE_MAX < OFF_MAX && size_max / PAGE_SIZE >= SIZE_MAX))
242                 pages = SIZE_MAX;
243         else
244                 pages = howmany(size_max, PAGE_SIZE);
245         MPASS(pages > 0);
246
247         if (nodes_max <= 3) {
248                 if (pages < INT_MAX / nodes_per_page)
249                         nodes_max = pages * nodes_per_page;
250                 else
251                         nodes_max = INT_MAX;
252         }
253         if (nodes_max > INT_MAX)
254                 nodes_max = INT_MAX;
255         MPASS(nodes_max >= 3);
256
257         /* Allocate the tmpfs mount structure and fill it. */
258         tmp = (struct tmpfs_mount *)malloc(sizeof(struct tmpfs_mount),
259             M_TMPFSMNT, M_WAITOK | M_ZERO);
260
261         mtx_init(&tmp->allnode_lock, "tmpfs allnode lock", NULL, MTX_DEF);
262         tmp->tm_nodes_max = nodes_max;
263         tmp->tm_nodes_inuse = 0;
264         tmp->tm_maxfilesize = maxfilesize > 0 ? maxfilesize : OFF_MAX;
265         LIST_INIT(&tmp->tm_nodes_used);
266
267         tmp->tm_pages_max = pages;
268         tmp->tm_pages_used = 0;
269         tmp->tm_ino_unr = new_unrhdr(2, INT_MAX, &tmp->allnode_lock);
270         tmp->tm_dirent_pool = uma_zcreate("TMPFS dirent",
271             sizeof(struct tmpfs_dirent),
272             NULL, NULL, NULL, NULL,
273             UMA_ALIGN_PTR, 0);
274         tmp->tm_node_pool = uma_zcreate("TMPFS node",
275             sizeof(struct tmpfs_node),
276             tmpfs_node_ctor, tmpfs_node_dtor,
277             tmpfs_node_init, tmpfs_node_fini,
278             UMA_ALIGN_PTR, 0);
279         tmp->tm_ronly = (mp->mnt_flag & MNT_RDONLY) != 0;
280
281         /* Allocate the root node. */
282         error = tmpfs_alloc_node(tmp, VDIR, root_uid,
283             root_gid, root_mode & ALLPERMS, NULL, NULL,
284             VNOVAL, &root);
285
286         if (error != 0 || root == NULL) {
287             uma_zdestroy(tmp->tm_node_pool);
288             uma_zdestroy(tmp->tm_dirent_pool);
289             delete_unrhdr(tmp->tm_ino_unr);
290             free(tmp, M_TMPFSMNT);
291             return error;
292         }
293         KASSERT(root->tn_id == 2, ("tmpfs root with invalid ino: %d", root->tn_id));
294         tmp->tm_root = root;
295
296         MNT_ILOCK(mp);
297         mp->mnt_flag |= MNT_LOCAL;
298         mp->mnt_kern_flag |= MNTK_MPSAFE;
299         MNT_IUNLOCK(mp);
300
301         mp->mnt_data = tmp;
302         mp->mnt_stat.f_namemax = MAXNAMLEN;
303         vfs_getnewfsid(mp);
304         vfs_mountedfrom(mp, "tmpfs");
305
306         return 0;
307 }
308
309 /* --------------------------------------------------------------------- */
310
311 /* ARGSUSED2 */
312 static int
313 tmpfs_unmount(struct mount *mp, int mntflags)
314 {
315         int error;
316         int flags = 0;
317         struct tmpfs_mount *tmp;
318         struct tmpfs_node *node;
319
320         /* Handle forced unmounts. */
321         if (mntflags & MNT_FORCE)
322                 flags |= FORCECLOSE;
323
324         /* Finalize all pending I/O. */
325         error = vflush(mp, 0, flags, curthread);
326         if (error != 0)
327                 return error;
328
329         tmp = VFS_TO_TMPFS(mp);
330
331         /* Free all associated data.  The loop iterates over the linked list
332          * we have containing all used nodes.  For each of them that is
333          * a directory, we free all its directory entries.  Note that after
334          * freeing a node, it will automatically go to the available list,
335          * so we will later have to iterate over it to release its items. */
336         node = LIST_FIRST(&tmp->tm_nodes_used);
337         while (node != NULL) {
338                 struct tmpfs_node *next;
339
340                 if (node->tn_type == VDIR) {
341                         struct tmpfs_dirent *de;
342
343                         de = TAILQ_FIRST(&node->tn_dir.tn_dirhead);
344                         while (de != NULL) {
345                                 struct tmpfs_dirent *nde;
346
347                                 nde = TAILQ_NEXT(de, td_entries);
348                                 tmpfs_free_dirent(tmp, de, FALSE);
349                                 de = nde;
350                                 node->tn_size -= sizeof(struct tmpfs_dirent);
351                         }
352                 }
353
354                 next = LIST_NEXT(node, tn_entries);
355                 tmpfs_free_node(tmp, node);
356                 node = next;
357         }
358
359         uma_zdestroy(tmp->tm_dirent_pool);
360         uma_zdestroy(tmp->tm_node_pool);
361         delete_unrhdr(tmp->tm_ino_unr);
362
363         mtx_destroy(&tmp->allnode_lock);
364         MPASS(tmp->tm_pages_used == 0);
365         MPASS(tmp->tm_nodes_inuse == 0);
366
367         /* Throw away the tmpfs_mount structure. */
368         free(mp->mnt_data, M_TMPFSMNT);
369         mp->mnt_data = NULL;
370
371         MNT_ILOCK(mp);
372         mp->mnt_flag &= ~MNT_LOCAL;
373         MNT_IUNLOCK(mp);
374         return 0;
375 }
376
377 /* --------------------------------------------------------------------- */
378
379 static int
380 tmpfs_root(struct mount *mp, int flags, struct vnode **vpp)
381 {
382         int error;
383         error = tmpfs_alloc_vp(mp, VFS_TO_TMPFS(mp)->tm_root, flags, vpp);
384
385         if (!error)
386                 (*vpp)->v_vflag |= VV_ROOT;
387
388         return error;
389 }
390
391 /* --------------------------------------------------------------------- */
392
393 static int
394 tmpfs_fhtovp(struct mount *mp, struct fid *fhp, int flags,
395     struct vnode **vpp)
396 {
397         boolean_t found;
398         struct tmpfs_fid *tfhp;
399         struct tmpfs_mount *tmp;
400         struct tmpfs_node *node;
401
402         tmp = VFS_TO_TMPFS(mp);
403
404         tfhp = (struct tmpfs_fid *)fhp;
405         if (tfhp->tf_len != sizeof(struct tmpfs_fid))
406                 return EINVAL;
407
408         if (tfhp->tf_id >= tmp->tm_nodes_max)
409                 return EINVAL;
410
411         found = FALSE;
412
413         TMPFS_LOCK(tmp);
414         LIST_FOREACH(node, &tmp->tm_nodes_used, tn_entries) {
415                 if (node->tn_id == tfhp->tf_id &&
416                     node->tn_gen == tfhp->tf_gen) {
417                         found = TRUE;
418                         break;
419                 }
420         }
421         TMPFS_UNLOCK(tmp);
422
423         if (found)
424                 return (tmpfs_alloc_vp(mp, node, LK_EXCLUSIVE, vpp));
425
426         return (EINVAL);
427 }
428
429 /* --------------------------------------------------------------------- */
430
431 /* ARGSUSED2 */
432 static int
433 tmpfs_statfs(struct mount *mp, struct statfs *sbp)
434 {
435         struct tmpfs_mount *tmp;
436         size_t used;
437
438         tmp = VFS_TO_TMPFS(mp);
439
440         sbp->f_iosize = PAGE_SIZE;
441         sbp->f_bsize = PAGE_SIZE;
442
443         used = tmpfs_pages_used(tmp);
444         if (tmp->tm_pages_max != SIZE_MAX)
445                  sbp->f_blocks = tmp->tm_pages_max;
446         else
447                  sbp->f_blocks = used + tmpfs_mem_avail();
448         if (sbp->f_blocks <= used)
449                 sbp->f_bavail = 0;
450         else
451                 sbp->f_bavail = sbp->f_blocks - used;
452         sbp->f_bfree = sbp->f_bavail;
453         used = tmp->tm_nodes_inuse;
454         sbp->f_files = tmp->tm_nodes_max;
455         if (sbp->f_files <= used)
456                 sbp->f_ffree = 0;
457         else
458                 sbp->f_ffree = sbp->f_files - used;
459         /* sbp->f_owner = tmp->tn_uid; */
460
461         return 0;
462 }
463
464 /* --------------------------------------------------------------------- */
465
466 /*
467  * tmpfs vfs operations.
468  */
469
470 struct vfsops tmpfs_vfsops = {
471         .vfs_mount =                    tmpfs_mount,
472         .vfs_unmount =                  tmpfs_unmount,
473         .vfs_root =                     tmpfs_root,
474         .vfs_statfs =                   tmpfs_statfs,
475         .vfs_fhtovp =                   tmpfs_fhtovp,
476 };
477 VFS_SET(tmpfs_vfsops, tmpfs, 0);