]> git.saurik.com Git - apple/xnu.git/blame - bsd/miscfs/union/union_vfsops.c
xnu-1504.15.3.tar.gz
[apple/xnu.git] / bsd / miscfs / union / union_vfsops.c
CommitLineData
1c79356b 1/*
2d21ac55 2 * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved.
5d5c5d0d 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
29/*
30 * Copyright (c) 1994, 1995 The Regents of the University of California.
31 * Copyright (c) 1994, 1995 Jan-Simon Pendry.
32 * All rights reserved.
33 *
34 * This code is derived from software donated to Berkeley by
35 * Jan-Simon Pendry.
36 *
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
39 * are met:
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * 3. All advertising materials mentioning features or use of this software
46 * must display the following acknowledgement:
47 * This product includes software developed by the University of
48 * California, Berkeley and its contributors.
49 * 4. Neither the name of the University nor the names of its contributors
50 * may be used to endorse or promote products derived from this software
51 * without specific prior written permission.
52 *
53 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
54 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
55 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
56 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
57 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
58 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
59 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
61 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
62 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
63 * SUCH DAMAGE.
64 *
65 * @(#)union_vfsops.c 8.20 (Berkeley) 5/20/95
66 */
67
68/*
69 * Union Layer
70 */
71
72#include <sys/param.h>
73#include <sys/systm.h>
74#include <sys/time.h>
75#include <sys/types.h>
91447636
A
76#include <sys/proc_internal.h>
77#include <sys/kauth.h>
78#include <sys/vnode_internal.h>
79#include <sys/mount_internal.h>
1c79356b
A
80#include <sys/namei.h>
81#include <sys/malloc.h>
82#include <sys/filedesc.h>
83#include <sys/queue.h>
84#include <miscfs/union/union.h>
85
2d21ac55
A
86static int union_itercallback(vnode_t, void *);
87static int union_root(mount_t, vnode_t *, vfs_context_t);
91447636 88
1c79356b
A
89/*
90 * Mount union filesystem
91 */
2d21ac55 92static int
91447636 93union_mount(mount_t mp, __unused vnode_t devvp, user_addr_t data, vfs_context_t context)
1c79356b 94{
91447636 95 proc_t p = vfs_context_proc(context);
1c79356b 96 int error = 0;
91447636 97 struct user_union_args args;
1c79356b
A
98 struct vnode *lowerrootvp = NULLVP;
99 struct vnode *upperrootvp = NULLVP;
2d21ac55 100 struct union_mount *um = NULL;
91447636 101 kauth_cred_t cred = NOCRED;
2d21ac55
A
102 const char *cp = NULL;
103 char *vcp;
1c79356b
A
104 int len;
105 u_int size;
91447636
A
106 struct nameidata nd;
107
1c79356b
A
108#ifdef UNION_DIAGNOSTIC
109 printf("union_mount(mp = %x)\n", mp);
110#endif
111
112 /*
113 * Update is a no-op
114 */
115 if (mp->mnt_flag & MNT_UPDATE) {
116 /*
117 * Need to provide.
118 * 1. a way to convert between rdonly and rdwr mounts.
119 * 2. support for nfs exports.
120 */
91447636 121 error = ENOTSUP;
1c79356b
A
122 goto bad;
123 }
124
125 /*
126 * Get argument
127 */
91447636
A
128 if (vfs_context_is64bit(context)) {
129 error = copyin(data, (caddr_t)&args, sizeof(args));
130 }
131 else {
132 struct union_args temp;
133 error = copyin(data, (caddr_t)&temp, sizeof (temp));
134 args.target = CAST_USER_ADDR_T(temp.target);
135 args.mntflags = temp.mntflags;
136 }
137 if (error)
1c79356b
A
138 goto bad;
139
140 lowerrootvp = mp->mnt_vnodecovered;
91447636 141 vnode_get(lowerrootvp);
1c79356b
A
142
143 /*
144 * Find upper node.
145 */
91447636
A
146 NDINIT(&nd, LOOKUP, FOLLOW|WANTPARENT,
147 (IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32),
148 args.target, context);
1c79356b 149
91447636 150 if ((error = namei(&nd)))
1c79356b
A
151 goto bad;
152
91447636
A
153 nameidone(&nd);
154 upperrootvp = nd.ni_vp;
155 vnode_put(nd.ni_dvp);
156 nd.ni_dvp = NULL;
1c79356b
A
157
158 if (upperrootvp->v_type != VDIR) {
159 error = EINVAL;
160 goto bad;
161 }
162
1c79356b
A
163 MALLOC(um, struct union_mount *, sizeof(struct union_mount),
164 M_UFSMNT, M_WAITOK);
165
166 /*
167 * Keep a held reference to the target vnodes.
91447636 168 * They are vnode_put'd in union_unmount.
1c79356b
A
169 *
170 * Depending on the _BELOW flag, the filesystems are
171 * viewed in a different order. In effect, this is the
172 * same as providing a mount under option to the mount syscall.
173 */
174
175 um->um_op = args.mntflags & UNMNT_OPMASK;
176 switch (um->um_op) {
177 case UNMNT_ABOVE:
178 um->um_lowervp = lowerrootvp;
179 um->um_uppervp = upperrootvp;
180 break;
181
182 case UNMNT_BELOW:
183 um->um_lowervp = upperrootvp;
184 um->um_uppervp = lowerrootvp;
185 break;
186
187 case UNMNT_REPLACE:
91447636 188 vnode_put(lowerrootvp);
1c79356b
A
189 lowerrootvp = NULLVP;
190 um->um_uppervp = upperrootvp;
191 um->um_lowervp = lowerrootvp;
192 break;
193
2d21ac55
A
194#ifdef FAULTFS
195 case UNMNT_FAULTIN:
196 um->um_lowervp = upperrootvp;
197 um->um_uppervp = lowerrootvp;
198 break;
199#endif
200
1c79356b
A
201 default:
202 error = EINVAL;
203 goto bad;
204 }
205
2d21ac55
A
206 if (um->um_lowervp != NULLVP)
207 um->um_lowervid = vnode_vid(um->um_lowervp);
208 if (um->um_uppervp != NULLVP)
209 um->um_uppervid = vnode_vid(um->um_uppervp);
1c79356b
A
210 /*
211 * Unless the mount is readonly, ensure that the top layer
212 * supports whiteout operations
213 */
2d21ac55
A
214#ifdef FAULTFS
215 if ((um->um_op != UNMNT_FAULTIN) && (mp->mnt_flag & MNT_RDONLY) == 0)
216#else
217 if ((mp->mnt_flag & MNT_RDONLY) == 0)
218#endif
219 {
91447636
A
220 error = VNOP_WHITEOUT(um->um_uppervp, (struct componentname *) 0,
221 LOOKUP, context);
1c79356b
A
222 if (error)
223 goto bad;
224 }
225
91447636 226 um->um_cred = kauth_cred_get_with_ref();
1c79356b
A
227 um->um_cmode = UN_DIRMODE &~ p->p_fd->fd_cmask;
228
229 /*
230 * Depending on what you think the MNT_LOCAL flag might mean,
231 * you may want the && to be || on the conditional below.
232 * At the moment it has been defined that the filesystem is
233 * only local if it is all local, ie the MNT_LOCAL flag implies
234 * that the entire namespace is local. If you think the MNT_LOCAL
235 * flag implies that some of the files might be stored locally
236 * then you will want to change the conditional.
237 */
238 if (um->um_op == UNMNT_ABOVE) {
239 if (((um->um_lowervp == NULLVP) ||
240 (um->um_lowervp->v_mount->mnt_flag & MNT_LOCAL)) &&
241 (um->um_uppervp->v_mount->mnt_flag & MNT_LOCAL))
242 mp->mnt_flag |= MNT_LOCAL;
243 }
244
245 /*
246 * Copy in the upper layer's RDONLY flag. This is for the benefit
247 * of lookup() which explicitly checks the flag, rather than asking
248 * the filesystem for it's own opinion. This means, that an update
249 * mount of the underlying filesystem to go from rdonly to rdwr
250 * will leave the unioned view as read-only.
251 */
252 mp->mnt_flag |= (um->um_uppervp->v_mount->mnt_flag & MNT_RDONLY);
253
254 mp->mnt_data = (qaddr_t) um;
255 vfs_getnewfsid(mp);
256
1c79356b
A
257
258 switch (um->um_op) {
259 case UNMNT_ABOVE:
260 cp = "<above>:";
261 break;
262 case UNMNT_BELOW:
263 cp = "<below>:";
264 break;
265 case UNMNT_REPLACE:
266 cp = "";
267 break;
2d21ac55
A
268#ifdef FAULTFS
269 case UNMNT_FAULTIN:
270 cp = "/FaultingFS/";
271 break;
272#endif
1c79356b
A
273 }
274 len = strlen(cp);
91447636 275 bcopy(cp, mp->mnt_vfsstat.f_mntfromname, len);
1c79356b 276
2d21ac55 277 vcp = mp->mnt_vfsstat.f_mntfromname + len;
1c79356b
A
278 len = MNAMELEN - len;
279
2d21ac55
A
280 (void) copyinstr(args.target, vcp, len - 1, (size_t *)&size);
281 bzero(vcp + size, len - size);
282
1c79356b
A
283#ifdef UNION_DIAGNOSTIC
284 printf("union_mount: from %s, on %s\n",
91447636 285 mp->mnt_vfsstat.f_mntfromname, mp->mnt_vfsstat.f_mntonname);
1c79356b
A
286#endif
287 return (0);
288
289bad:
290 if (um)
291 _FREE(um, M_UFSMNT);
0c530ab8
A
292 if (IS_VALID_CRED(cred))
293 kauth_cred_unref(&cred);
1c79356b 294 if (upperrootvp)
91447636 295 vnode_put(upperrootvp);
1c79356b 296 if (lowerrootvp)
91447636 297 vnode_put(lowerrootvp);
1c79356b
A
298 return (error);
299}
300
301/*
302 * VFS start. Nothing needed here - the start routine
303 * on the underlying filesystem(s) will have been called
304 * when that filesystem was mounted.
305 */
2d21ac55 306static int
91447636 307union_start(__unused struct mount *mp, __unused int flags, __unused vfs_context_t context)
1c79356b
A
308{
309
310 return (0);
311}
312
91447636
A
313static int
314union_itercallback(__unused vnode_t vp, void *args)
315{
316 int num = *(int *)args;
317
318 *(int *)args = num + 1;
319 return(VNODE_RETURNED);
320}
321
322
323
1c79356b
A
324/*
325 * Free reference to union layer
326 */
2d21ac55
A
327static int
328union_unmount(mount_t mp, int mntflags, vfs_context_t context)
1c79356b
A
329{
330 struct union_mount *um = MOUNTTOUNIONMOUNT(mp);
331 struct vnode *um_rootvp;
332 int error;
333 int freeing;
334 int flags = 0;
1c79356b
A
335
336#ifdef UNION_DIAGNOSTIC
337 printf("union_unmount(mp = %x)\n", mp);
338#endif
339
340 if (mntflags & MNT_FORCE)
341 flags |= FORCECLOSE;
342
2d21ac55 343 if ((error = union_root(mp, &um_rootvp, context)))
1c79356b
A
344 return (error);
345
346 /*
347 * Keep flushing vnodes from the mount list.
348 * This is needed because of the un_pvp held
349 * reference to the parent vnode.
350 * If more vnodes have been freed on a given pass,
351 * the try again. The loop will iterate at most
352 * (d) times, where (d) is the maximum tree depth
353 * in the filesystem.
354 */
355 for (freeing = 0; vflush(mp, um_rootvp, flags) != 0;) {
91447636 356 int n = 0;
1c79356b 357
91447636 358 vnode_iterate(mp, VNODE_NOLOCK_INTERNAL, union_itercallback, &n);
1c79356b
A
359
360 /* if this is unchanged then stop */
361 if (n == freeing)
362 break;
363
364 /* otherwise try once more time */
365 freeing = n;
366 }
367
368 /* At this point the root vnode should have a single reference */
91447636
A
369 if (vnode_isinuse(um_rootvp, 0)) {
370 vnode_put(um_rootvp);
1c79356b
A
371 return (EBUSY);
372 }
373
374#ifdef UNION_DIAGNOSTIC
375 vprint("union root", um_rootvp);
376#endif
377 /*
378 * Discard references to upper and lower target vnodes.
379 */
380 if (um->um_lowervp)
91447636
A
381 vnode_put(um->um_lowervp);
382 vnode_put(um->um_uppervp);
0c530ab8
A
383 if (IS_VALID_CRED(um->um_cred)) {
384 kauth_cred_unref(&um->um_cred);
1c79356b
A
385 }
386 /*
387 * Release reference on underlying root vnode
388 */
91447636 389 vnode_put(um_rootvp);
1c79356b
A
390 /*
391 * And blow it away for future re-use
392 */
91447636 393 vnode_reclaim(um_rootvp);
1c79356b
A
394 /*
395 * Finally, throw away the union_mount structure
396 */
397 _FREE(mp->mnt_data, M_UFSMNT); /* XXX */
2d21ac55 398 mp->mnt_data = NULL;
1c79356b
A
399 return (0);
400}
401
2d21ac55 402static int
91447636 403union_root(mount_t mp, vnode_t *vpp, __unused vfs_context_t context)
1c79356b 404{
1c79356b
A
405 struct union_mount *um = MOUNTTOUNIONMOUNT(mp);
406 int error;
1c79356b
A
407
408 /*
409 * Return locked reference to root.
410 */
91447636 411 vnode_get(um->um_uppervp);
1c79356b 412 if (um->um_lowervp)
91447636 413 vnode_get(um->um_lowervp);
2d21ac55
A
414
415 union_lock();
1c79356b
A
416 error = union_allocvp(vpp, mp,
417 (struct vnode *) 0,
418 (struct vnode *) 0,
419 (struct componentname *) 0,
420 um->um_uppervp,
421 um->um_lowervp,
422 1);
2d21ac55 423 union_unlock();
1c79356b
A
424
425 if (error) {
91447636 426 vnode_put(um->um_uppervp);
1c79356b 427 if (um->um_lowervp)
91447636
A
428 vnode_put(um->um_lowervp);
429 }
1c79356b
A
430
431 return (error);
432}
433
91447636
A
434static int
435union_vfs_getattr(mount_t mp, struct vfs_attr *fsap, vfs_context_t context)
1c79356b
A
436{
437 int error;
438 struct union_mount *um = MOUNTTOUNIONMOUNT(mp);
91447636
A
439 struct vfs_attr attr;
440 uint32_t lbsize = 0;
1c79356b
A
441
442#ifdef UNION_DIAGNOSTIC
91447636 443 printf("union_vfs_getattr(mp = %x, lvp = %x, uvp = %x)\n", mp,
1c79356b
A
444 um->um_lowervp,
445 um->um_uppervp);
446#endif
447
91447636 448 /* Get values from lower file system (if any) */
1c79356b 449 if (um->um_lowervp) {
91447636
A
450 VFSATTR_INIT(&attr);
451 VFSATTR_WANTED(&attr, f_bsize);
452 VFSATTR_WANTED(&attr, f_blocks);
453 VFSATTR_WANTED(&attr, f_bused);
454 VFSATTR_WANTED(&attr, f_files);
455 error = vfs_getattr(um->um_lowervp->v_mount, &attr, context);
1c79356b
A
456 if (error)
457 return (error);
91447636
A
458
459 /* now copy across the "interesting" information and fake the rest */
460 if (VFSATTR_IS_SUPPORTED(&attr, f_bsize))
461 lbsize = attr.f_bsize;
462 else
463 lbsize = um->um_lowervp->v_mount->mnt_devblocksize;
464 fsap->f_blocks = VFSATTR_IS_SUPPORTED(&attr, f_blocks) ? attr.f_blocks : 0;
465 fsap->f_bused = VFSATTR_IS_SUPPORTED(&attr, f_bused) ? attr.f_bused : 0;
466 fsap->f_files = VFSATTR_IS_SUPPORTED(&attr, f_files) ? attr.f_files : 0;
467 } else {
468 fsap->f_blocks = 0;
469 fsap->f_bused = 0;
470 fsap->f_files = 0;
1c79356b
A
471 }
472
91447636
A
473 VFSATTR_INIT(&attr);
474 VFSATTR_WANTED(&attr, f_bsize);
475 VFSATTR_WANTED(&attr, f_blocks);
476 VFSATTR_WANTED(&attr, f_bfree);
477 VFSATTR_WANTED(&attr, f_bavail);
478 VFSATTR_WANTED(&attr, f_files);
479 VFSATTR_WANTED(&attr, f_ffree);
480 error = vfs_getattr(um->um_uppervp->v_mount, &attr, context);
1c79356b
A
481 if (error)
482 return (error);
483
91447636
A
484 if (VFSATTR_IS_SUPPORTED(&attr, f_bsize)) {
485 fsap->f_bsize = attr.f_bsize;
486 VFSATTR_SET_SUPPORTED(fsap, f_bsize);
487 }
488 if (VFSATTR_IS_SUPPORTED(&attr, f_iosize)) {
489 fsap->f_iosize = attr.f_iosize;
490 VFSATTR_SET_SUPPORTED(fsap, f_iosize);
491 }
1c79356b
A
492
493 /*
494 * if the lower and upper blocksizes differ, then frig the
495 * block counts so that the sizes reported by df make some
496 * kind of sense. none of this makes sense though.
497 */
91447636
A
498 if (VFSATTR_IS_SUPPORTED(&attr, f_bsize))
499 fsap->f_bsize = attr.f_bsize;
500 else
501 fsap->f_bsize = um->um_uppervp->v_mount->mnt_devblocksize;
502 VFSATTR_RETURN(fsap, f_bsize, attr.f_bsize);
503 if (fsap->f_bsize != lbsize)
504 fsap->f_blocks = fsap->f_blocks * lbsize / attr.f_bsize;
1c79356b
A
505
506 /*
507 * The "total" fields count total resources in all layers,
508 * the "free" fields count only those resources which are
509 * free in the upper layer (since only the upper layer
510 * is writeable).
511 */
91447636
A
512 if (VFSATTR_IS_SUPPORTED(&attr, f_blocks))
513 fsap->f_blocks += attr.f_blocks;
514 if (VFSATTR_IS_SUPPORTED(&attr, f_bfree))
515 fsap->f_bfree = attr.f_bfree;
516 if (VFSATTR_IS_SUPPORTED(&attr, f_bavail))
517 fsap->f_bavail = attr.f_bavail;
518 if (VFSATTR_IS_SUPPORTED(&attr, f_bused))
519 fsap->f_bused += attr.f_bused;
520 if (VFSATTR_IS_SUPPORTED(&attr, f_files))
521 fsap->f_files += attr.f_files;
522 if (VFSATTR_IS_SUPPORTED(&attr, f_ffree))
523 fsap->f_ffree = attr.f_ffree;
524
525 VFSATTR_SET_SUPPORTED(fsap, f_bsize);
526 VFSATTR_SET_SUPPORTED(fsap, f_blocks);
527 VFSATTR_SET_SUPPORTED(fsap, f_bfree);
528 VFSATTR_SET_SUPPORTED(fsap, f_bavail);
529 VFSATTR_SET_SUPPORTED(fsap, f_bused);
530 VFSATTR_SET_SUPPORTED(fsap, f_files);
531 VFSATTR_SET_SUPPORTED(fsap, f_ffree);
532
1c79356b
A
533 return (0);
534}
535
536/*
537 * XXX - Assumes no data cached at union layer.
538 */
2d21ac55 539#define union_sync (int (*) (mount_t, int, vfs_context_t))nullop
91447636
A
540
541#define union_fhtovp (int (*) (mount_t, int, unsigned char *, vnode_t *, vfs_context_t))eopnotsupp
91447636
A
542#define union_sysctl (int (*) (int *, u_int, user_addr_t, size_t *, user_addr_t, size_t, vfs_context_t))eopnotsupp
543#define union_vget (int (*) (mount_t, ino64_t, vnode_t *, vfs_context_t))eopnotsupp
544#define union_vptofh (int (*) (vnode_t, int *, unsigned char *, vfs_context_t))eopnotsupp
1c79356b
A
545
546struct vfsops union_vfsops = {
547 union_mount,
548 union_start,
549 union_unmount,
550 union_root,
91447636
A
551 NULL, /* quotactl */
552 union_vfs_getattr,
1c79356b
A
553 union_sync,
554 union_vget,
555 union_fhtovp,
556 union_vptofh,
557 union_init,
2d21ac55
A
558 union_sysctl,
559 NULL,
560 {NULL}
1c79356b 561};
2d21ac55
A
562
563