kernel - Performance tuning
[dragonfly.git] / sys / kern / vfs_syscalls.c
1 /*
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)vfs_syscalls.c      8.13 (Berkeley) 4/15/94
35  * $FreeBSD: src/sys/kern/vfs_syscalls.c,v 1.151.2.18 2003/04/04 20:35:58 tegge Exp $
36  */
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/buf.h>
41 #include <sys/conf.h>
42 #include <sys/sysent.h>
43 #include <sys/malloc.h>
44 #include <sys/mount.h>
45 #include <sys/mountctl.h>
46 #include <sys/sysproto.h>
47 #include <sys/filedesc.h>
48 #include <sys/kernel.h>
49 #include <sys/fcntl.h>
50 #include <sys/file.h>
51 #include <sys/linker.h>
52 #include <sys/stat.h>
53 #include <sys/unistd.h>
54 #include <sys/vnode.h>
55 #include <sys/proc.h>
56 #include <sys/priv.h>
57 #include <sys/jail.h>
58 #include <sys/namei.h>
59 #include <sys/nlookup.h>
60 #include <sys/dirent.h>
61 #include <sys/extattr.h>
62 #include <sys/spinlock.h>
63 #include <sys/kern_syscall.h>
64 #include <sys/objcache.h>
65 #include <sys/sysctl.h>
66
67 #include <sys/buf2.h>
68 #include <sys/file2.h>
69 #include <sys/spinlock2.h>
70 #include <sys/mplock2.h>
71
72 #include <vm/vm.h>
73 #include <vm/vm_object.h>
74 #include <vm/vm_page.h>
75
76 #include <machine/limits.h>
77 #include <machine/stdarg.h>
78
79 #include <vfs/union/union.h>
80
81 static void mount_warning(struct mount *mp, const char *ctl, ...)
82                 __printflike(2, 3);
83 static int mount_path(struct proc *p, struct mount *mp, char **rb, char **fb);
84 static int checkvp_chdir (struct vnode *vn, struct thread *td);
85 static void checkdirs (struct nchandle *old_nch, struct nchandle *new_nch);
86 static int chroot_refuse_vdir_fds (struct filedesc *fdp);
87 static int chroot_visible_mnt(struct mount *mp, struct proc *p);
88 static int getutimes (const struct timeval *, struct timespec *);
89 static int setfown (struct mount *, struct vnode *, uid_t, gid_t);
90 static int setfmode (struct vnode *, int);
91 static int setfflags (struct vnode *, int);
92 static int setutimes (struct vnode *, struct vattr *,
93                         const struct timespec *, int);
94 static int      usermount = 0;  /* if 1, non-root can mount fs. */
95
96 int (*union_dircheckp) (struct thread *, struct vnode **, struct file *);
97
98 SYSCTL_INT(_vfs, OID_AUTO, usermount, CTLFLAG_RW, &usermount, 0,
99     "Allow non-root users to mount filesystems");
100
101 /*
102  * Virtual File System System Calls
103  */
104
105 /*
106  * Mount a file system.
107  *
108  * mount_args(char *type, char *path, int flags, caddr_t data)
109  *
110  * MPALMOSTSAFE
111  */
112 int
113 sys_mount(struct mount_args *uap)
114 {
115         struct thread *td = curthread;
116         struct vnode *vp;
117         struct nchandle nch;
118         struct mount *mp, *nullmp;
119         struct vfsconf *vfsp;
120         int error, flag = 0, flag2 = 0;
121         int hasmount;
122         struct vattr va;
123         struct nlookupdata nd;
124         char fstypename[MFSNAMELEN];
125         struct ucred *cred;
126
127         cred = td->td_ucred;
128         if (jailed(cred)) {
129                 error = EPERM;
130                 goto done;
131         }
132         if (usermount == 0 && (error = priv_check(td, PRIV_ROOT)))
133                 goto done;
134
135         /*
136          * Do not allow NFS export by non-root users.
137          */
138         if (uap->flags & MNT_EXPORTED) {
139                 error = priv_check(td, PRIV_ROOT);
140                 if (error)
141                         goto done;
142         }
143         /*
144          * Silently enforce MNT_NOSUID and MNT_NODEV for non-root users
145          */
146         if (priv_check(td, PRIV_ROOT)) 
147                 uap->flags |= MNT_NOSUID | MNT_NODEV;
148
149         /*
150          * Lookup the requested path and extract the nch and vnode.
151          */
152         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
153         if (error == 0) {
154                 if ((error = nlookup(&nd)) == 0) {
155                         if (nd.nl_nch.ncp->nc_vp == NULL)
156                                 error = ENOENT;
157                 }
158         }
159         if (error) {
160                 nlookup_done(&nd);
161                 goto done;
162         }
163
164         /*
165          * If the target filesystem is resolved via a nullfs mount, then
166          * nd.nl_nch.mount will be pointing to the nullfs mount structure
167          * instead of the target file system. We need it in case we are
168          * doing an update.
169          */
170         nullmp = nd.nl_nch.mount;
171
172         /*
173          * Extract the locked+refd ncp and cleanup the nd structure
174          */
175         nch = nd.nl_nch;
176         cache_zero(&nd.nl_nch);
177         nlookup_done(&nd);
178
179         if ((nch.ncp->nc_flag & NCF_ISMOUNTPT) &&
180             (mp = cache_findmount(&nch)) != NULL) {
181                 cache_dropmount(mp);
182                 hasmount = 1;
183         } else {
184                 hasmount = 0;
185         }
186
187
188         /*
189          * now we have the locked ref'd nch and unreferenced vnode.
190          */
191         vp = nch.ncp->nc_vp;
192         if ((error = vget(vp, LK_EXCLUSIVE)) != 0) {
193                 cache_put(&nch);
194                 goto done;
195         }
196         cache_unlock(&nch);
197
198         /*
199          * Extract the file system type. We need to know this early, to take
200          * appropriate actions if we are dealing with a nullfs.
201          */
202         if ((error = copyinstr(uap->type, fstypename, MFSNAMELEN, NULL)) != 0) {
203                 cache_drop(&nch);
204                 vput(vp);
205                 goto done;
206         }
207
208         /*
209          * Now we have an unlocked ref'd nch and a locked ref'd vp
210          */
211         if (uap->flags & MNT_UPDATE) {
212                 if ((vp->v_flag & (VROOT|VPFSROOT)) == 0) {
213                         cache_drop(&nch);
214                         vput(vp);
215                         error = EINVAL;
216                         goto done;
217                 }
218
219                 if (strncmp(fstypename, "null", 5) == 0) {
220                         KKASSERT(nullmp);
221                         mp = nullmp;
222                 } else {
223                         mp = vp->v_mount;
224                 }
225
226                 flag = mp->mnt_flag;
227                 flag2 = mp->mnt_kern_flag;
228                 /*
229                  * We only allow the filesystem to be reloaded if it
230                  * is currently mounted read-only.
231                  */
232                 if ((uap->flags & MNT_RELOAD) &&
233                     ((mp->mnt_flag & MNT_RDONLY) == 0)) {
234                         cache_drop(&nch);
235                         vput(vp);
236                         error = EOPNOTSUPP;     /* Needs translation */
237                         goto done;
238                 }
239                 /*
240                  * Only root, or the user that did the original mount is
241                  * permitted to update it.
242                  */
243                 if (mp->mnt_stat.f_owner != cred->cr_uid &&
244                     (error = priv_check(td, PRIV_ROOT))) {
245                         cache_drop(&nch);
246                         vput(vp);
247                         goto done;
248                 }
249                 if (vfs_busy(mp, LK_NOWAIT)) {
250                         cache_drop(&nch);
251                         vput(vp);
252                         error = EBUSY;
253                         goto done;
254                 }
255                 if (hasmount) {
256                         cache_drop(&nch);
257                         vfs_unbusy(mp);
258                         vput(vp);
259                         error = EBUSY;
260                         goto done;
261                 }
262                 mp->mnt_flag |=
263                     uap->flags & (MNT_RELOAD | MNT_FORCE | MNT_UPDATE);
264                 lwkt_gettoken(&mp->mnt_token);
265                 vn_unlock(vp);
266                 goto update;
267         }
268
269         /*
270          * If the user is not root, ensure that they own the directory
271          * onto which we are attempting to mount.
272          */
273         if ((error = VOP_GETATTR(vp, &va)) ||
274             (va.va_uid != cred->cr_uid &&
275              (error = priv_check(td, PRIV_ROOT)))) {
276                 cache_drop(&nch);
277                 vput(vp);
278                 goto done;
279         }
280         if ((error = vinvalbuf(vp, V_SAVE, 0, 0)) != 0) {
281                 cache_drop(&nch);
282                 vput(vp);
283                 goto done;
284         }
285         if (vp->v_type != VDIR) {
286                 cache_drop(&nch);
287                 vput(vp);
288                 error = ENOTDIR;
289                 goto done;
290         }
291         if (vp->v_mount->mnt_kern_flag & MNTK_NOSTKMNT) {
292                 cache_drop(&nch);
293                 vput(vp);
294                 error = EPERM;
295                 goto done;
296         }
297         vfsp = vfsconf_find_by_name(fstypename);
298         if (vfsp == NULL) {
299                 linker_file_t lf;
300
301                 /* Only load modules for root (very important!) */
302                 if ((error = priv_check(td, PRIV_ROOT)) != 0) {
303                         cache_drop(&nch);
304                         vput(vp);
305                         goto done;
306                 }
307                 error = linker_load_file(fstypename, &lf);
308                 if (error || lf == NULL) {
309                         cache_drop(&nch);
310                         vput(vp);
311                         if (lf == NULL)
312                                 error = ENODEV;
313                         goto done;
314                 }
315                 lf->userrefs++;
316                 /* lookup again, see if the VFS was loaded */
317                 vfsp = vfsconf_find_by_name(fstypename);
318                 if (vfsp == NULL) {
319                         lf->userrefs--;
320                         linker_file_unload(lf);
321                         cache_drop(&nch);
322                         vput(vp);
323                         error = ENODEV;
324                         goto done;
325                 }
326         }
327         if (hasmount) {
328                 cache_drop(&nch);
329                 vput(vp);
330                 error = EBUSY;
331                 goto done;
332         }
333
334         /*
335          * Allocate and initialize the filesystem.
336          */
337         mp = kmalloc(sizeof(struct mount), M_MOUNT, M_ZERO|M_WAITOK);
338         mount_init(mp);
339         vfs_busy(mp, LK_NOWAIT);
340         mp->mnt_op = vfsp->vfc_vfsops;
341         mp->mnt_vfc = vfsp;
342         vfsp->vfc_refcount++;
343         mp->mnt_stat.f_type = vfsp->vfc_typenum;
344         mp->mnt_flag |= vfsp->vfc_flags & MNT_VISFLAGMASK;
345         strncpy(mp->mnt_stat.f_fstypename, vfsp->vfc_name, MFSNAMELEN);
346         mp->mnt_stat.f_owner = cred->cr_uid;
347         lwkt_gettoken(&mp->mnt_token);
348         vn_unlock(vp);
349 update:
350         /*
351          * (per-mount token acquired at this point)
352          *
353          * Set the mount level flags.
354          */
355         if (uap->flags & MNT_RDONLY)
356                 mp->mnt_flag |= MNT_RDONLY;
357         else if (mp->mnt_flag & MNT_RDONLY)
358                 mp->mnt_kern_flag |= MNTK_WANTRDWR;
359         mp->mnt_flag &=~ (MNT_NOSUID | MNT_NOEXEC | MNT_NODEV |
360             MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC | MNT_NOATIME |
361             MNT_NOSYMFOLLOW | MNT_IGNORE | MNT_TRIM |
362             MNT_NOCLUSTERR | MNT_NOCLUSTERW | MNT_SUIDDIR);
363         mp->mnt_flag |= uap->flags & (MNT_NOSUID | MNT_NOEXEC |
364             MNT_NODEV | MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC | MNT_FORCE |
365             MNT_NOSYMFOLLOW | MNT_IGNORE | MNT_TRIM |
366             MNT_NOATIME | MNT_NOCLUSTERR | MNT_NOCLUSTERW | MNT_SUIDDIR);
367         /*
368          * Mount the filesystem.
369          * XXX The final recipients of VFS_MOUNT just overwrite the ndp they
370          * get. 
371          */
372         error = VFS_MOUNT(mp, uap->path, uap->data, cred);
373         if (mp->mnt_flag & MNT_UPDATE) {
374                 if (mp->mnt_kern_flag & MNTK_WANTRDWR)
375                         mp->mnt_flag &= ~MNT_RDONLY;
376                 mp->mnt_flag &=~ (MNT_UPDATE | MNT_RELOAD | MNT_FORCE);
377                 mp->mnt_kern_flag &=~ MNTK_WANTRDWR;
378                 if (error) {
379                         mp->mnt_flag = flag;
380                         mp->mnt_kern_flag = flag2;
381                 }
382                 lwkt_reltoken(&mp->mnt_token);
383                 vfs_unbusy(mp);
384                 vrele(vp);
385                 cache_drop(&nch);
386                 goto done;
387         }
388         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
389
390         /*
391          * Put the new filesystem on the mount list after root.  The mount
392          * point gets its own mnt_ncmountpt (unless the VFS already set one
393          * up) which represents the root of the mount.  The lookup code
394          * detects the mount point going forward and checks the root of
395          * the mount going backwards.
396          *
397          * It is not necessary to invalidate or purge the vnode underneath
398          * because elements under the mount will be given their own glue
399          * namecache record.
400          */
401         if (!error) {
402                 if (mp->mnt_ncmountpt.ncp == NULL) {
403                         /* 
404                          * allocate, then unlock, but leave the ref intact 
405                          */
406                         cache_allocroot(&mp->mnt_ncmountpt, mp, NULL);
407                         cache_unlock(&mp->mnt_ncmountpt);
408                 }
409                 mp->mnt_ncmounton = nch;                /* inherits ref */
410                 nch.ncp->nc_flag |= NCF_ISMOUNTPT;
411                 cache_ismounting(mp);
412
413                 mountlist_insert(mp, MNTINS_LAST);
414                 vn_unlock(vp);
415                 checkdirs(&mp->mnt_ncmounton, &mp->mnt_ncmountpt);
416                 error = vfs_allocate_syncvnode(mp);
417                 lwkt_reltoken(&mp->mnt_token);
418                 vfs_unbusy(mp);
419                 error = VFS_START(mp, 0);
420                 vrele(vp);
421         } else {
422                 vn_syncer_thr_stop(mp);
423                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_coherency_ops);
424                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_journal_ops);
425                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_norm_ops);
426                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_spec_ops);
427                 vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_fifo_ops);
428                 mp->mnt_vfc->vfc_refcount--;
429                 lwkt_reltoken(&mp->mnt_token);
430                 vfs_unbusy(mp);
431                 kfree(mp, M_MOUNT);
432                 cache_drop(&nch);
433                 vput(vp);
434         }
435 done:
436         return (error);
437 }
438
439 /*
440  * Scan all active processes to see if any of them have a current
441  * or root directory onto which the new filesystem has just been
442  * mounted. If so, replace them with the new mount point.
443  *
444  * Both old_nch and new_nch are ref'd on call but not locked.
445  * new_nch must be temporarily locked so it can be associated with the
446  * vnode representing the root of the mount point.
447  */
448 struct checkdirs_info {
449         struct nchandle old_nch;
450         struct nchandle new_nch;
451         struct vnode *old_vp;
452         struct vnode *new_vp;
453 };
454
455 static int checkdirs_callback(struct proc *p, void *data);
456
457 static void
458 checkdirs(struct nchandle *old_nch, struct nchandle *new_nch)
459 {
460         struct checkdirs_info info;
461         struct vnode *olddp;
462         struct vnode *newdp;
463         struct mount *mp;
464
465         /*
466          * If the old mount point's vnode has a usecount of 1, it is not
467          * being held as a descriptor anywhere.
468          */
469         olddp = old_nch->ncp->nc_vp;
470         if (olddp == NULL || VREFCNT(olddp) == 1)
471                 return;
472
473         /*
474          * Force the root vnode of the new mount point to be resolved
475          * so we can update any matching processes.
476          */
477         mp = new_nch->mount;
478         if (VFS_ROOT(mp, &newdp))
479                 panic("mount: lost mount");
480         vn_unlock(newdp);
481         cache_lock(new_nch);
482         vn_lock(newdp, LK_EXCLUSIVE | LK_RETRY);
483         cache_setunresolved(new_nch);
484         cache_setvp(new_nch, newdp);
485         cache_unlock(new_nch);
486
487         /*
488          * Special handling of the root node
489          */
490         if (rootvnode == olddp) {
491                 vref(newdp);
492                 vfs_cache_setroot(newdp, cache_hold(new_nch));
493         }
494
495         /*
496          * Pass newdp separately so the callback does not have to access
497          * it via new_nch->ncp->nc_vp.
498          */
499         info.old_nch = *old_nch;
500         info.new_nch = *new_nch;
501         info.new_vp = newdp;
502         allproc_scan(checkdirs_callback, &info);
503         vput(newdp);
504 }
505
506 /*
507  * NOTE: callback is not MP safe because the scanned process's filedesc
508  * structure can be ripped out from under us, amoung other things.
509  */
510 static int
511 checkdirs_callback(struct proc *p, void *data)
512 {
513         struct checkdirs_info *info = data;
514         struct filedesc *fdp;
515         struct nchandle ncdrop1;
516         struct nchandle ncdrop2;
517         struct vnode *vprele1;
518         struct vnode *vprele2;
519
520         if ((fdp = p->p_fd) != NULL) {
521                 cache_zero(&ncdrop1);
522                 cache_zero(&ncdrop2);
523                 vprele1 = NULL;
524                 vprele2 = NULL;
525
526                 /*
527                  * MPUNSAFE - XXX fdp can be pulled out from under a
528                  * foreign process.
529                  *
530                  * A shared filedesc is ok, we don't have to copy it
531                  * because we are making this change globally.
532                  */
533                 spin_lock(&fdp->fd_spin);
534                 if (fdp->fd_ncdir.mount == info->old_nch.mount &&
535                     fdp->fd_ncdir.ncp == info->old_nch.ncp) {
536                         vprele1 = fdp->fd_cdir;
537                         vref(info->new_vp);
538                         fdp->fd_cdir = info->new_vp;
539                         ncdrop1 = fdp->fd_ncdir;
540                         cache_copy(&info->new_nch, &fdp->fd_ncdir);
541                 }
542                 if (fdp->fd_nrdir.mount == info->old_nch.mount &&
543                     fdp->fd_nrdir.ncp == info->old_nch.ncp) {
544                         vprele2 = fdp->fd_rdir;
545                         vref(info->new_vp);
546                         fdp->fd_rdir = info->new_vp;
547                         ncdrop2 = fdp->fd_nrdir;
548                         cache_copy(&info->new_nch, &fdp->fd_nrdir);
549                 }
550                 spin_unlock(&fdp->fd_spin);
551                 if (ncdrop1.ncp)
552                         cache_drop(&ncdrop1);
553                 if (ncdrop2.ncp)
554                         cache_drop(&ncdrop2);
555                 if (vprele1)
556                         vrele(vprele1);
557                 if (vprele2)
558                         vrele(vprele2);
559         }
560         return(0);
561 }
562
563 /*
564  * Unmount a file system.
565  *
566  * Note: unmount takes a path to the vnode mounted on as argument,
567  * not special file (as before).
568  *
569  * umount_args(char *path, int flags)
570  *
571  * MPALMOSTSAFE
572  */
573 int
574 sys_unmount(struct unmount_args *uap)
575 {
576         struct thread *td = curthread;
577         struct proc *p __debugvar = td->td_proc;
578         struct mount *mp = NULL;
579         struct nlookupdata nd;
580         int error;
581
582         KKASSERT(p);
583         get_mplock();
584         if (td->td_ucred->cr_prison != NULL) {
585                 error = EPERM;
586                 goto done;
587         }
588         if (usermount == 0 && (error = priv_check(td, PRIV_ROOT)))
589                 goto done;
590
591         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
592         if (error == 0)
593                 error = nlookup(&nd);
594         if (error)
595                 goto out;
596
597         mp = nd.nl_nch.mount;
598
599         /*
600          * Only root, or the user that did the original mount is
601          * permitted to unmount this filesystem.
602          */
603         if ((mp->mnt_stat.f_owner != td->td_ucred->cr_uid) &&
604             (error = priv_check(td, PRIV_ROOT)))
605                 goto out;
606
607         /*
608          * Don't allow unmounting the root file system.
609          */
610         if (mp->mnt_flag & MNT_ROOTFS) {
611                 error = EINVAL;
612                 goto out;
613         }
614
615         /*
616          * Must be the root of the filesystem
617          */
618         if (nd.nl_nch.ncp != mp->mnt_ncmountpt.ncp) {
619                 error = EINVAL;
620                 goto out;
621         }
622
623 out:
624         nlookup_done(&nd);
625         if (error == 0)
626                 error = dounmount(mp, uap->flags);
627 done:
628         rel_mplock();
629         return (error);
630 }
631
632 /*
633  * Do the actual file system unmount.
634  */
635 static int
636 dounmount_interlock(struct mount *mp)
637 {
638         if (mp->mnt_kern_flag & MNTK_UNMOUNT)
639                 return (EBUSY);
640         mp->mnt_kern_flag |= MNTK_UNMOUNT;
641         return(0);
642 }
643
644 static int
645 unmount_allproc_cb(struct proc *p, void *arg)
646 {
647         struct mount *mp;
648
649         if (p->p_textnch.ncp == NULL)
650                 return 0;
651
652         mp = (struct mount *)arg;
653         if (p->p_textnch.mount == mp)
654                 cache_drop(&p->p_textnch);
655
656         return 0;
657 }
658
659 int
660 dounmount(struct mount *mp, int flags)
661 {
662         struct namecache *ncp;
663         struct nchandle nch;
664         struct vnode *vp;
665         int error;
666         int async_flag;
667         int lflags;
668         int freeok = 1;
669         int retry;
670
671         lwkt_gettoken(&mp->mnt_token);
672         /*
673          * Exclusive access for unmounting purposes
674          */
675         if ((error = mountlist_interlock(dounmount_interlock, mp)) != 0)
676                 goto out;
677
678         /*
679          * Allow filesystems to detect that a forced unmount is in progress.
680          */
681         if (flags & MNT_FORCE)
682                 mp->mnt_kern_flag |= MNTK_UNMOUNTF;
683         lflags = LK_EXCLUSIVE | ((flags & MNT_FORCE) ? 0 : LK_TIMELOCK);
684         error = lockmgr(&mp->mnt_lock, lflags);
685         if (error) {
686                 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
687                 if (mp->mnt_kern_flag & MNTK_MWAIT) {
688                         mp->mnt_kern_flag &= ~MNTK_MWAIT;
689                         wakeup(mp);
690                 }
691                 goto out;
692         }
693
694         if (mp->mnt_flag & MNT_EXPUBLIC)
695                 vfs_setpublicfs(NULL, NULL, NULL);
696
697         vfs_msync(mp, MNT_WAIT);
698         async_flag = mp->mnt_flag & MNT_ASYNC;
699         mp->mnt_flag &=~ MNT_ASYNC;
700
701         /*
702          * If this filesystem isn't aliasing other filesystems,
703          * try to invalidate any remaining namecache entries and
704          * check the count afterwords.
705          */
706         if ((mp->mnt_kern_flag & MNTK_NCALIASED) == 0) {
707                 cache_lock(&mp->mnt_ncmountpt);
708                 cache_inval(&mp->mnt_ncmountpt, CINV_DESTROY|CINV_CHILDREN);
709                 cache_unlock(&mp->mnt_ncmountpt);
710
711                 if ((ncp = mp->mnt_ncmountpt.ncp) != NULL &&
712                     (ncp->nc_refs != 1 || TAILQ_FIRST(&ncp->nc_list))) {
713                         allproc_scan(&unmount_allproc_cb, mp);
714                 }
715
716                 if ((ncp = mp->mnt_ncmountpt.ncp) != NULL &&
717                     (ncp->nc_refs != 1 || TAILQ_FIRST(&ncp->nc_list))) {
718
719                         if ((flags & MNT_FORCE) == 0) {
720                                 error = EBUSY;
721                                 mount_warning(mp, "Cannot unmount: "
722                                                   "%d namecache "
723                                                   "references still "
724                                                   "present",
725                                                   ncp->nc_refs - 1);
726                         } else {
727                                 mount_warning(mp, "Forced unmount: "
728                                                   "%d namecache "
729                                                   "references still "
730                                                   "present",
731                                                   ncp->nc_refs - 1);
732                                 freeok = 0;
733                         }
734                 }
735         }
736
737         /*
738          * Decomission our special mnt_syncer vnode.  This also stops
739          * the vnlru code.  If we are unable to unmount we recommission
740          * the vnode.
741          *
742          * Then sync the filesystem.
743          */
744         if ((vp = mp->mnt_syncer) != NULL) {
745                 mp->mnt_syncer = NULL;
746                 atomic_set_int(&vp->v_refcnt, VREF_FINALIZE);
747                 vrele(vp);
748         }
749         if ((mp->mnt_flag & MNT_RDONLY) == 0)
750                 VFS_SYNC(mp, MNT_WAIT);
751
752         /*
753          * nchandle records ref the mount structure.  Expect a count of 1
754          * (our mount->mnt_ncmountpt).
755          *
756          * Scans can get temporary refs on a mountpoint (thought really
757          * heavy duty stuff like cache_findmount() do not).
758          */
759         for (retry = 0; retry < 10 && mp->mnt_refs != 1; ++retry) {
760                 cache_unmounting(mp);
761                 tsleep(&mp->mnt_refs, 0, "mntbsy", hz / 10 + 1);
762         }
763         if (mp->mnt_refs != 1) {
764                 if ((flags & MNT_FORCE) == 0) {
765                         mount_warning(mp, "Cannot unmount: "
766                                           "%d mount refs still present",
767                                           mp->mnt_refs);
768                         error = EBUSY;
769                 } else {
770                         mount_warning(mp, "Forced unmount: "
771                                           "%d mount refs still present",
772                                           mp->mnt_refs);
773                         freeok = 0;
774                 }
775         }
776
777         /*
778          * So far so good, sync the filesystem once more and
779          * call the VFS unmount code if the sync succeeds.
780          */
781         if (error == 0) {
782                 if (((mp->mnt_flag & MNT_RDONLY) ||
783                      (error = VFS_SYNC(mp, MNT_WAIT)) == 0) ||
784                     (flags & MNT_FORCE)) {
785                         error = VFS_UNMOUNT(mp, flags);
786                 }
787         }
788
789         /*
790          * If an error occurred we can still recover, restoring the
791          * syncer vnode and misc flags.
792          */
793         if (error) {
794                 if (mp->mnt_syncer == NULL)
795                         vfs_allocate_syncvnode(mp);
796                 mp->mnt_kern_flag &= ~(MNTK_UNMOUNT | MNTK_UNMOUNTF);
797                 mp->mnt_flag |= async_flag;
798                 lockmgr(&mp->mnt_lock, LK_RELEASE);
799                 if (mp->mnt_kern_flag & MNTK_MWAIT) {
800                         mp->mnt_kern_flag &= ~MNTK_MWAIT;
801                         wakeup(mp);
802                 }
803                 goto out;
804         }
805         /*
806          * Clean up any journals still associated with the mount after
807          * filesystem activity has ceased.
808          */
809         journal_remove_all_journals(mp, 
810             ((flags & MNT_FORCE) ? MC_JOURNAL_STOP_IMM : 0));
811
812         mountlist_remove(mp);
813
814         /*
815          * Remove any installed vnode ops here so the individual VFSs don't
816          * have to.
817          */
818         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_coherency_ops);
819         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_journal_ops);
820         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_norm_ops);
821         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_spec_ops);
822         vfs_rm_vnodeops(mp, NULL, &mp->mnt_vn_fifo_ops);
823
824         if (mp->mnt_ncmountpt.ncp != NULL) {
825                 nch = mp->mnt_ncmountpt;
826                 cache_zero(&mp->mnt_ncmountpt);
827                 cache_clrmountpt(&nch);
828                 cache_drop(&nch);
829         }
830         if (mp->mnt_ncmounton.ncp != NULL) {
831                 cache_unmounting(mp);
832                 nch = mp->mnt_ncmounton;
833                 cache_zero(&mp->mnt_ncmounton);
834                 cache_clrmountpt(&nch);
835                 cache_drop(&nch);
836         }
837
838         mp->mnt_vfc->vfc_refcount--;
839         if (!TAILQ_EMPTY(&mp->mnt_nvnodelist))
840                 panic("unmount: dangling vnode");
841         lockmgr(&mp->mnt_lock, LK_RELEASE);
842         if (mp->mnt_kern_flag & MNTK_MWAIT) {
843                 mp->mnt_kern_flag &= ~MNTK_MWAIT;
844                 wakeup(mp);
845         }
846
847         /*
848          * If we reach here and freeok != 0 we must free the mount.
849          * If refs > 1 cycle and wait, just in case someone tried
850          * to busy the mount after we decided to do the unmount.
851          */
852         if (freeok) {
853                 while (mp->mnt_refs > 1) {
854                         cache_unmounting(mp);
855                         wakeup(mp);
856                         tsleep(&mp->mnt_refs, 0, "umntrwait", hz / 10 + 1);
857                 }
858                 lwkt_reltoken(&mp->mnt_token);
859                 kfree(mp, M_MOUNT);
860                 mp = NULL;
861         }
862         error = 0;
863 out:
864         if (mp)
865                 lwkt_reltoken(&mp->mnt_token);
866         return (error);
867 }
868
869 static
870 void
871 mount_warning(struct mount *mp, const char *ctl, ...)
872 {
873         char *ptr;
874         char *buf;
875         __va_list va;
876
877         __va_start(va, ctl);
878         if (cache_fullpath(NULL, &mp->mnt_ncmounton, NULL,
879                            &ptr, &buf, 0) == 0) {
880                 kprintf("unmount(%s): ", ptr);
881                 kvprintf(ctl, va);
882                 kprintf("\n");
883                 kfree(buf, M_TEMP);
884         } else {
885                 kprintf("unmount(%p", mp);
886                 if (mp->mnt_ncmounton.ncp && mp->mnt_ncmounton.ncp->nc_name)
887                         kprintf(",%s", mp->mnt_ncmounton.ncp->nc_name);
888                 kprintf("): ");
889                 kvprintf(ctl, va);
890                 kprintf("\n");
891         }
892         __va_end(va);
893 }
894
895 /*
896  * Shim cache_fullpath() to handle the case where a process is chrooted into
897  * a subdirectory of a mount.  In this case if the root mount matches the
898  * process root directory's mount we have to specify the process's root
899  * directory instead of the mount point, because the mount point might
900  * be above the root directory.
901  */
902 static
903 int
904 mount_path(struct proc *p, struct mount *mp, char **rb, char **fb)
905 {
906         struct nchandle *nch;
907
908         if (p && p->p_fd->fd_nrdir.mount == mp)
909                 nch = &p->p_fd->fd_nrdir;
910         else
911                 nch = &mp->mnt_ncmountpt;
912         return(cache_fullpath(p, nch, NULL, rb, fb, 0));
913 }
914
915 /*
916  * Sync each mounted filesystem.
917  */
918
919 #ifdef DEBUG
920 static int syncprt = 0;
921 SYSCTL_INT(_debug, OID_AUTO, syncprt, CTLFLAG_RW, &syncprt, 0, "");
922 #endif /* DEBUG */
923
924 static int sync_callback(struct mount *mp, void *data);
925
926 int
927 sys_sync(struct sync_args *uap)
928 {
929         mountlist_scan(sync_callback, NULL, MNTSCAN_FORWARD);
930         return (0);
931 }
932
933 static
934 int
935 sync_callback(struct mount *mp, void *data __unused)
936 {
937         int asyncflag;
938
939         if ((mp->mnt_flag & MNT_RDONLY) == 0) {
940                 asyncflag = mp->mnt_flag & MNT_ASYNC;
941                 mp->mnt_flag &= ~MNT_ASYNC;
942                 vfs_msync(mp, MNT_NOWAIT);
943                 VFS_SYNC(mp, MNT_NOWAIT);
944                 mp->mnt_flag |= asyncflag;
945         }
946         return(0);
947 }
948
949 /* XXX PRISON: could be per prison flag */
950 static int prison_quotas;
951 #if 0
952 SYSCTL_INT(_kern_prison, OID_AUTO, quotas, CTLFLAG_RW, &prison_quotas, 0, "");
953 #endif
954
955 /*
956  *  quotactl_args(char *path, int fcmd, int uid, caddr_t arg)
957  *
958  * Change filesystem quotas.
959  *
960  * MPALMOSTSAFE
961  */
962 int
963 sys_quotactl(struct quotactl_args *uap)
964 {
965         struct nlookupdata nd;
966         struct thread *td;
967         struct mount *mp;
968         int error;
969
970         get_mplock();
971         td = curthread;
972         if (td->td_ucred->cr_prison && !prison_quotas) {
973                 error = EPERM;
974                 goto done;
975         }
976
977         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
978         if (error == 0)
979                 error = nlookup(&nd);
980         if (error == 0) {
981                 mp = nd.nl_nch.mount;
982                 error = VFS_QUOTACTL(mp, uap->cmd, uap->uid,
983                                     uap->arg, nd.nl_cred);
984         }
985         nlookup_done(&nd);
986 done:
987         rel_mplock();
988         return (error);
989 }
990
991 /*
992  * mountctl(char *path, int op, int fd, const void *ctl, int ctllen,
993  *              void *buf, int buflen)
994  *
995  * This function operates on a mount point and executes the specified
996  * operation using the specified control data, and possibly returns data.
997  *
998  * The actual number of bytes stored in the result buffer is returned, 0
999  * if none, otherwise an error is returned.
1000  *
1001  * MPALMOSTSAFE
1002  */
1003 int
1004 sys_mountctl(struct mountctl_args *uap)
1005 {
1006         struct thread *td = curthread;
1007         struct proc *p = td->td_proc;
1008         struct file *fp;
1009         void *ctl = NULL;
1010         void *buf = NULL;
1011         char *path = NULL;
1012         int error;
1013
1014         /*
1015          * Sanity and permissions checks.  We must be root.
1016          */
1017         KKASSERT(p);
1018         if (td->td_ucred->cr_prison != NULL)
1019                 return (EPERM);
1020         if ((uap->op != MOUNTCTL_MOUNTFLAGS) &&
1021             (error = priv_check(td, PRIV_ROOT)) != 0)
1022                 return (error);
1023
1024         /*
1025          * Argument length checks
1026          */
1027         if (uap->ctllen < 0 || uap->ctllen > 1024)
1028                 return (EINVAL);
1029         if (uap->buflen < 0 || uap->buflen > 16 * 1024)
1030                 return (EINVAL);
1031         if (uap->path == NULL)
1032                 return (EINVAL);
1033
1034         /*
1035          * Allocate the necessary buffers and copyin data
1036          */
1037         path = objcache_get(namei_oc, M_WAITOK);
1038         error = copyinstr(uap->path, path, MAXPATHLEN, NULL);
1039         if (error)
1040                 goto done;
1041
1042         if (uap->ctllen) {
1043                 ctl = kmalloc(uap->ctllen + 1, M_TEMP, M_WAITOK|M_ZERO);
1044                 error = copyin(uap->ctl, ctl, uap->ctllen);
1045                 if (error)
1046                         goto done;
1047         }
1048         if (uap->buflen)
1049                 buf = kmalloc(uap->buflen + 1, M_TEMP, M_WAITOK|M_ZERO);
1050
1051         /*
1052          * Validate the descriptor
1053          */
1054         if (uap->fd >= 0) {
1055                 fp = holdfp(p->p_fd, uap->fd, -1);
1056                 if (fp == NULL) {
1057                         error = EBADF;
1058                         goto done;
1059                 }
1060         } else {
1061                 fp = NULL;
1062         }
1063
1064         /*
1065          * Execute the internal kernel function and clean up.
1066          */
1067         get_mplock();
1068         error = kern_mountctl(path, uap->op, fp, ctl, uap->ctllen, buf, uap->buflen, &uap->sysmsg_result);
1069         rel_mplock();
1070         if (fp)
1071                 fdrop(fp);
1072         if (error == 0 && uap->sysmsg_result > 0)
1073                 error = copyout(buf, uap->buf, uap->sysmsg_result);
1074 done:
1075         if (path)
1076                 objcache_put(namei_oc, path);
1077         if (ctl)
1078                 kfree(ctl, M_TEMP);
1079         if (buf)
1080                 kfree(buf, M_TEMP);
1081         return (error);
1082 }
1083
1084 /*
1085  * Execute a mount control operation by resolving the path to a mount point
1086  * and calling vop_mountctl().  
1087  *
1088  * Use the mount point from the nch instead of the vnode so nullfs mounts
1089  * can properly spike the VOP.
1090  */
1091 int
1092 kern_mountctl(const char *path, int op, struct file *fp, 
1093                 const void *ctl, int ctllen, 
1094                 void *buf, int buflen, int *res)
1095 {
1096         struct vnode *vp;
1097         struct mount *mp;
1098         struct nlookupdata nd;
1099         int error;
1100
1101         *res = 0;
1102         vp = NULL;
1103         error = nlookup_init(&nd, path, UIO_SYSSPACE, NLC_FOLLOW);
1104         if (error == 0)
1105                 error = nlookup(&nd);
1106         if (error == 0)
1107                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
1108         mp = nd.nl_nch.mount;
1109         nlookup_done(&nd);
1110         if (error)
1111                 return (error);
1112         vn_unlock(vp);
1113
1114         /*
1115          * Must be the root of the filesystem
1116          */
1117         if ((vp->v_flag & (VROOT|VPFSROOT)) == 0) {
1118                 vrele(vp);
1119                 return (EINVAL);
1120         }
1121         error = vop_mountctl(mp->mnt_vn_use_ops, vp, op, fp, ctl, ctllen,
1122                              buf, buflen, res);
1123         vrele(vp);
1124         return (error);
1125 }
1126
1127 int
1128 kern_statfs(struct nlookupdata *nd, struct statfs *buf)
1129 {
1130         struct thread *td = curthread;
1131         struct proc *p = td->td_proc;
1132         struct mount *mp;
1133         struct statfs *sp;
1134         char *fullpath, *freepath;
1135         int error;
1136
1137         if ((error = nlookup(nd)) != 0)
1138                 return (error);
1139         mp = nd->nl_nch.mount;
1140         sp = &mp->mnt_stat;
1141         if ((error = VFS_STATFS(mp, sp, nd->nl_cred)) != 0)
1142                 return (error);
1143
1144         error = mount_path(p, mp, &fullpath, &freepath);
1145         if (error)
1146                 return(error);
1147         bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
1148         strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
1149         kfree(freepath, M_TEMP);
1150
1151         sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
1152         bcopy(sp, buf, sizeof(*buf));
1153         /* Only root should have access to the fsid's. */
1154         if (priv_check(td, PRIV_ROOT))
1155                 buf->f_fsid.val[0] = buf->f_fsid.val[1] = 0;
1156         return (0);
1157 }
1158
1159 /*
1160  * statfs_args(char *path, struct statfs *buf)
1161  *
1162  * Get filesystem statistics.
1163  */
1164 int
1165 sys_statfs(struct statfs_args *uap)
1166 {
1167         struct nlookupdata nd;
1168         struct statfs buf;
1169         int error;
1170
1171         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1172         if (error == 0)
1173                 error = kern_statfs(&nd, &buf);
1174         nlookup_done(&nd);
1175         if (error == 0)
1176                 error = copyout(&buf, uap->buf, sizeof(*uap->buf));
1177         return (error);
1178 }
1179
1180 int
1181 kern_fstatfs(int fd, struct statfs *buf)
1182 {
1183         struct thread *td = curthread;
1184         struct proc *p = td->td_proc;
1185         struct file *fp;
1186         struct mount *mp;
1187         struct statfs *sp;
1188         char *fullpath, *freepath;
1189         int error;
1190
1191         KKASSERT(p);
1192         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
1193                 return (error);
1194
1195         /*
1196          * Try to use mount info from any overlays rather than the
1197          * mount info for the underlying vnode, otherwise we will
1198          * fail when operating on null-mounted paths inside a chroot.
1199          */
1200         if ((mp = fp->f_nchandle.mount) == NULL)
1201                 mp = ((struct vnode *)fp->f_data)->v_mount;
1202         if (mp == NULL) {
1203                 error = EBADF;
1204                 goto done;
1205         }
1206         if (fp->f_cred == NULL) {
1207                 error = EINVAL;
1208                 goto done;
1209         }
1210         sp = &mp->mnt_stat;
1211         if ((error = VFS_STATFS(mp, sp, fp->f_cred)) != 0)
1212                 goto done;
1213
1214         if ((error = mount_path(p, mp, &fullpath, &freepath)) != 0)
1215                 goto done;
1216         bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
1217         strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
1218         kfree(freepath, M_TEMP);
1219
1220         sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
1221         bcopy(sp, buf, sizeof(*buf));
1222
1223         /* Only root should have access to the fsid's. */
1224         if (priv_check(td, PRIV_ROOT))
1225                 buf->f_fsid.val[0] = buf->f_fsid.val[1] = 0;
1226         error = 0;
1227 done:
1228         fdrop(fp);
1229         return (error);
1230 }
1231
1232 /*
1233  * fstatfs_args(int fd, struct statfs *buf)
1234  *
1235  * Get filesystem statistics.
1236  */
1237 int
1238 sys_fstatfs(struct fstatfs_args *uap)
1239 {
1240         struct statfs buf;
1241         int error;
1242
1243         error = kern_fstatfs(uap->fd, &buf);
1244
1245         if (error == 0)
1246                 error = copyout(&buf, uap->buf, sizeof(*uap->buf));
1247         return (error);
1248 }
1249
1250 int
1251 kern_statvfs(struct nlookupdata *nd, struct statvfs *buf)
1252 {
1253         struct mount *mp;
1254         struct statvfs *sp;
1255         int error;
1256
1257         if ((error = nlookup(nd)) != 0)
1258                 return (error);
1259         mp = nd->nl_nch.mount;
1260         sp = &mp->mnt_vstat;
1261         if ((error = VFS_STATVFS(mp, sp, nd->nl_cred)) != 0)
1262                 return (error);
1263
1264         sp->f_flag = 0;
1265         if (mp->mnt_flag & MNT_RDONLY)
1266                 sp->f_flag |= ST_RDONLY;
1267         if (mp->mnt_flag & MNT_NOSUID)
1268                 sp->f_flag |= ST_NOSUID;
1269         bcopy(sp, buf, sizeof(*buf));
1270         return (0);
1271 }
1272
1273 /*
1274  * statfs_args(char *path, struct statfs *buf)
1275  *
1276  * Get filesystem statistics.
1277  */
1278 int
1279 sys_statvfs(struct statvfs_args *uap)
1280 {
1281         struct nlookupdata nd;
1282         struct statvfs buf;
1283         int error;
1284
1285         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1286         if (error == 0)
1287                 error = kern_statvfs(&nd, &buf);
1288         nlookup_done(&nd);
1289         if (error == 0)
1290                 error = copyout(&buf, uap->buf, sizeof(*uap->buf));
1291         return (error);
1292 }
1293
1294 int
1295 kern_fstatvfs(int fd, struct statvfs *buf)
1296 {
1297         struct thread *td = curthread;
1298         struct proc *p = td->td_proc;
1299         struct file *fp;
1300         struct mount *mp;
1301         struct statvfs *sp;
1302         int error;
1303
1304         KKASSERT(p);
1305         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
1306                 return (error);
1307         if ((mp = fp->f_nchandle.mount) == NULL)
1308                 mp = ((struct vnode *)fp->f_data)->v_mount;
1309         if (mp == NULL) {
1310                 error = EBADF;
1311                 goto done;
1312         }
1313         if (fp->f_cred == NULL) {
1314                 error = EINVAL;
1315                 goto done;
1316         }
1317         sp = &mp->mnt_vstat;
1318         if ((error = VFS_STATVFS(mp, sp, fp->f_cred)) != 0)
1319                 goto done;
1320
1321         sp->f_flag = 0;
1322         if (mp->mnt_flag & MNT_RDONLY)
1323                 sp->f_flag |= ST_RDONLY;
1324         if (mp->mnt_flag & MNT_NOSUID)
1325                 sp->f_flag |= ST_NOSUID;
1326
1327         bcopy(sp, buf, sizeof(*buf));
1328         error = 0;
1329 done:
1330         fdrop(fp);
1331         return (error);
1332 }
1333
1334 /*
1335  * fstatfs_args(int fd, struct statfs *buf)
1336  *
1337  * Get filesystem statistics.
1338  */
1339 int
1340 sys_fstatvfs(struct fstatvfs_args *uap)
1341 {
1342         struct statvfs buf;
1343         int error;
1344
1345         error = kern_fstatvfs(uap->fd, &buf);
1346
1347         if (error == 0)
1348                 error = copyout(&buf, uap->buf, sizeof(*uap->buf));
1349         return (error);
1350 }
1351
1352 /*
1353  * getfsstat_args(struct statfs *buf, long bufsize, int flags)
1354  *
1355  * Get statistics on all filesystems.
1356  */
1357
1358 struct getfsstat_info {
1359         struct statfs *sfsp;
1360         long count;
1361         long maxcount;
1362         int error;
1363         int flags;
1364         struct thread *td;
1365 };
1366
1367 static int getfsstat_callback(struct mount *, void *);
1368
1369 int
1370 sys_getfsstat(struct getfsstat_args *uap)
1371 {
1372         struct thread *td = curthread;
1373         struct getfsstat_info info;
1374
1375         bzero(&info, sizeof(info));
1376
1377         info.maxcount = uap->bufsize / sizeof(struct statfs);
1378         info.sfsp = uap->buf;
1379         info.count = 0;
1380         info.flags = uap->flags;
1381         info.td = td;
1382
1383         mountlist_scan(getfsstat_callback, &info, MNTSCAN_FORWARD);
1384         if (info.sfsp && info.count > info.maxcount)
1385                 uap->sysmsg_result = info.maxcount;
1386         else
1387                 uap->sysmsg_result = info.count;
1388         return (info.error);
1389 }
1390
1391 static int
1392 getfsstat_callback(struct mount *mp, void *data)
1393 {
1394         struct getfsstat_info *info = data;
1395         struct statfs *sp;
1396         char *freepath;
1397         char *fullpath;
1398         int error;
1399
1400         if (info->sfsp && info->count < info->maxcount) {
1401                 if (info->td->td_proc &&
1402                     !chroot_visible_mnt(mp, info->td->td_proc)) {
1403                         return(0);
1404                 }
1405                 sp = &mp->mnt_stat;
1406
1407                 /*
1408                  * If MNT_NOWAIT or MNT_LAZY is specified, do not
1409                  * refresh the fsstat cache. MNT_NOWAIT or MNT_LAZY
1410                  * overrides MNT_WAIT.
1411                  */
1412                 if (((info->flags & (MNT_LAZY|MNT_NOWAIT)) == 0 ||
1413                     (info->flags & MNT_WAIT)) &&
1414                     (error = VFS_STATFS(mp, sp, info->td->td_ucred))) {
1415                         return(0);
1416                 }
1417                 sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
1418
1419                 error = mount_path(info->td->td_proc, mp, &fullpath, &freepath);
1420                 if (error) {
1421                         info->error = error;
1422                         return(-1);
1423                 }
1424                 bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
1425                 strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
1426                 kfree(freepath, M_TEMP);
1427
1428                 error = copyout(sp, info->sfsp, sizeof(*sp));
1429                 if (error) {
1430                         info->error = error;
1431                         return (-1);
1432                 }
1433                 ++info->sfsp;
1434         }
1435         info->count++;
1436         return(0);
1437 }
1438
1439 /*
1440  * getvfsstat_args(struct statfs *buf, struct statvfs *vbuf,
1441                    long bufsize, int flags)
1442  *
1443  * Get statistics on all filesystems.
1444  */
1445
1446 struct getvfsstat_info {
1447         struct statfs *sfsp;
1448         struct statvfs *vsfsp;
1449         long count;
1450         long maxcount;
1451         int error;
1452         int flags;
1453         struct thread *td;
1454 };
1455
1456 static int getvfsstat_callback(struct mount *, void *);
1457
1458 int
1459 sys_getvfsstat(struct getvfsstat_args *uap)
1460 {
1461         struct thread *td = curthread;
1462         struct getvfsstat_info info;
1463
1464         bzero(&info, sizeof(info));
1465
1466         info.maxcount = uap->vbufsize / sizeof(struct statvfs);
1467         info.sfsp = uap->buf;
1468         info.vsfsp = uap->vbuf;
1469         info.count = 0;
1470         info.flags = uap->flags;
1471         info.td = td;
1472
1473         mountlist_scan(getvfsstat_callback, &info, MNTSCAN_FORWARD);
1474         if (info.vsfsp && info.count > info.maxcount)
1475                 uap->sysmsg_result = info.maxcount;
1476         else
1477                 uap->sysmsg_result = info.count;
1478         return (info.error);
1479 }
1480
1481 static int
1482 getvfsstat_callback(struct mount *mp, void *data)
1483 {
1484         struct getvfsstat_info *info = data;
1485         struct statfs *sp;
1486         struct statvfs *vsp;
1487         char *freepath;
1488         char *fullpath;
1489         int error;
1490
1491         if (info->vsfsp && info->count < info->maxcount) {
1492                 if (info->td->td_proc &&
1493                     !chroot_visible_mnt(mp, info->td->td_proc)) {
1494                         return(0);
1495                 }
1496                 sp = &mp->mnt_stat;
1497                 vsp = &mp->mnt_vstat;
1498
1499                 /*
1500                  * If MNT_NOWAIT or MNT_LAZY is specified, do not
1501                  * refresh the fsstat cache. MNT_NOWAIT or MNT_LAZY
1502                  * overrides MNT_WAIT.
1503                  */
1504                 if (((info->flags & (MNT_LAZY|MNT_NOWAIT)) == 0 ||
1505                     (info->flags & MNT_WAIT)) &&
1506                     (error = VFS_STATFS(mp, sp, info->td->td_ucred))) {
1507                         return(0);
1508                 }
1509                 sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
1510
1511                 if (((info->flags & (MNT_LAZY|MNT_NOWAIT)) == 0 ||
1512                     (info->flags & MNT_WAIT)) &&
1513                     (error = VFS_STATVFS(mp, vsp, info->td->td_ucred))) {
1514                         return(0);
1515                 }
1516                 vsp->f_flag = 0;
1517                 if (mp->mnt_flag & MNT_RDONLY)
1518                         vsp->f_flag |= ST_RDONLY;
1519                 if (mp->mnt_flag & MNT_NOSUID)
1520                         vsp->f_flag |= ST_NOSUID;
1521
1522                 error = mount_path(info->td->td_proc, mp, &fullpath, &freepath);
1523                 if (error) {
1524                         info->error = error;
1525                         return(-1);
1526                 }
1527                 bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
1528                 strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
1529                 kfree(freepath, M_TEMP);
1530
1531                 error = copyout(sp, info->sfsp, sizeof(*sp));
1532                 if (error == 0)
1533                         error = copyout(vsp, info->vsfsp, sizeof(*vsp));
1534                 if (error) {
1535                         info->error = error;
1536                         return (-1);
1537                 }
1538                 ++info->sfsp;
1539                 ++info->vsfsp;
1540         }
1541         info->count++;
1542         return(0);
1543 }
1544
1545
1546 /*
1547  * fchdir_args(int fd)
1548  *
1549  * Change current working directory to a given file descriptor.
1550  */
1551 int
1552 sys_fchdir(struct fchdir_args *uap)
1553 {
1554         struct thread *td = curthread;
1555         struct proc *p = td->td_proc;
1556         struct filedesc *fdp = p->p_fd;
1557         struct vnode *vp, *ovp;
1558         struct mount *mp;
1559         struct file *fp;
1560         struct nchandle nch, onch, tnch;
1561         int error;
1562
1563         if ((error = holdvnode(fdp, uap->fd, &fp)) != 0)
1564                 return (error);
1565         lwkt_gettoken(&p->p_token);
1566         vp = (struct vnode *)fp->f_data;
1567         vref(vp);
1568         vn_lock(vp, LK_SHARED | LK_RETRY);
1569         if (fp->f_nchandle.ncp == NULL)
1570                 error = ENOTDIR;
1571         else
1572                 error = checkvp_chdir(vp, td);
1573         if (error) {
1574                 vput(vp);
1575                 goto done;
1576         }
1577         cache_copy(&fp->f_nchandle, &nch);
1578
1579         /*
1580          * If the ncp has become a mount point, traverse through
1581          * the mount point.
1582          */
1583
1584         while (!error && (nch.ncp->nc_flag & NCF_ISMOUNTPT) &&
1585                (mp = cache_findmount(&nch)) != NULL
1586         ) {
1587                 error = nlookup_mp(mp, &tnch);
1588                 if (error == 0) {
1589                         cache_unlock(&tnch);    /* leave ref intact */
1590                         vput(vp);
1591                         vp = tnch.ncp->nc_vp;
1592                         error = vget(vp, LK_SHARED);
1593                         KKASSERT(error == 0);
1594                         cache_drop(&nch);
1595                         nch = tnch;
1596                 }
1597                 cache_dropmount(mp);
1598         }
1599         if (error == 0) {
1600                 ovp = fdp->fd_cdir;
1601                 onch = fdp->fd_ncdir;
1602                 vn_unlock(vp);          /* leave ref intact */
1603                 fdp->fd_cdir = vp;
1604                 fdp->fd_ncdir = nch;
1605                 cache_drop(&onch);
1606                 vrele(ovp);
1607         } else {
1608                 cache_drop(&nch);
1609                 vput(vp);
1610         }
1611         fdrop(fp);
1612 done:
1613         lwkt_reltoken(&p->p_token);
1614         return (error);
1615 }
1616
1617 int
1618 kern_chdir(struct nlookupdata *nd)
1619 {
1620         struct thread *td = curthread;
1621         struct proc *p = td->td_proc;
1622         struct filedesc *fdp = p->p_fd;
1623         struct vnode *vp, *ovp;
1624         struct nchandle onch;
1625         int error;
1626
1627         nd->nl_flags |= NLC_SHAREDLOCK;
1628         if ((error = nlookup(nd)) != 0)
1629                 return (error);
1630         if ((vp = nd->nl_nch.ncp->nc_vp) == NULL)
1631                 return (ENOENT);
1632         if ((error = vget(vp, LK_SHARED)) != 0)
1633                 return (error);
1634
1635         lwkt_gettoken(&p->p_token);
1636         error = checkvp_chdir(vp, td);
1637         vn_unlock(vp);
1638         if (error == 0) {
1639                 ovp = fdp->fd_cdir;
1640                 onch = fdp->fd_ncdir;
1641                 cache_unlock(&nd->nl_nch);      /* leave reference intact */
1642                 fdp->fd_ncdir = nd->nl_nch;
1643                 fdp->fd_cdir = vp;
1644                 cache_drop(&onch);
1645                 vrele(ovp);
1646                 cache_zero(&nd->nl_nch);
1647         } else {
1648                 vrele(vp);
1649         }
1650         lwkt_reltoken(&p->p_token);
1651         return (error);
1652 }
1653
1654 /*
1655  * chdir_args(char *path)
1656  *
1657  * Change current working directory (``.'').
1658  */
1659 int
1660 sys_chdir(struct chdir_args *uap)
1661 {
1662         struct nlookupdata nd;
1663         int error;
1664
1665         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1666         if (error == 0)
1667                 error = kern_chdir(&nd);
1668         nlookup_done(&nd);
1669         return (error);
1670 }
1671
1672 /*
1673  * Helper function for raised chroot(2) security function:  Refuse if
1674  * any filedescriptors are open directories.
1675  */
1676 static int
1677 chroot_refuse_vdir_fds(struct filedesc *fdp)
1678 {
1679         struct vnode *vp;
1680         struct file *fp;
1681         int error;
1682         int fd;
1683
1684         for (fd = 0; fd < fdp->fd_nfiles ; fd++) {
1685                 if ((error = holdvnode(fdp, fd, &fp)) != 0)
1686                         continue;
1687                 vp = (struct vnode *)fp->f_data;
1688                 if (vp->v_type != VDIR) {
1689                         fdrop(fp);
1690                         continue;
1691                 }
1692                 fdrop(fp);
1693                 return(EPERM);
1694         }
1695         return (0);
1696 }
1697
1698 /*
1699  * This sysctl determines if we will allow a process to chroot(2) if it
1700  * has a directory open:
1701  *      0: disallowed for all processes.
1702  *      1: allowed for processes that were not already chroot(2)'ed.
1703  *      2: allowed for all processes.
1704  */
1705
1706 static int chroot_allow_open_directories = 1;
1707
1708 SYSCTL_INT(_kern, OID_AUTO, chroot_allow_open_directories, CTLFLAG_RW,
1709      &chroot_allow_open_directories, 0, "");
1710
1711 /*
1712  * chroot to the specified namecache entry.  We obtain the vp from the
1713  * namecache data.  The passed ncp must be locked and referenced and will
1714  * remain locked and referenced on return.
1715  */
1716 int
1717 kern_chroot(struct nchandle *nch)
1718 {
1719         struct thread *td = curthread;
1720         struct proc *p = td->td_proc;
1721         struct filedesc *fdp = p->p_fd;
1722         struct vnode *vp;
1723         int error;
1724
1725         /*
1726          * Only privileged user can chroot
1727          */
1728         error = priv_check_cred(td->td_ucred, PRIV_VFS_CHROOT, 0);
1729         if (error)
1730                 return (error);
1731
1732         /*
1733          * Disallow open directory descriptors (fchdir() breakouts).
1734          */
1735         if (chroot_allow_open_directories == 0 ||
1736            (chroot_allow_open_directories == 1 && fdp->fd_rdir != rootvnode)) {
1737                 if ((error = chroot_refuse_vdir_fds(fdp)) != 0)
1738                         return (error);
1739         }
1740         if ((vp = nch->ncp->nc_vp) == NULL)
1741                 return (ENOENT);
1742
1743         if ((error = vget(vp, LK_SHARED)) != 0)
1744                 return (error);
1745
1746         /*
1747          * Check the validity of vp as a directory to change to and 
1748          * associate it with rdir/jdir.
1749          */
1750         error = checkvp_chdir(vp, td);
1751         vn_unlock(vp);                  /* leave reference intact */
1752         if (error == 0) {
1753                 vrele(fdp->fd_rdir);
1754                 fdp->fd_rdir = vp;      /* reference inherited by fd_rdir */
1755                 cache_drop(&fdp->fd_nrdir);
1756                 cache_copy(nch, &fdp->fd_nrdir);
1757                 if (fdp->fd_jdir == NULL) {
1758                         fdp->fd_jdir = vp;
1759                         vref(fdp->fd_jdir);
1760                         cache_copy(nch, &fdp->fd_njdir);
1761                 }
1762         } else {
1763                 vrele(vp);
1764         }
1765         return (error);
1766 }
1767
1768 /*
1769  * chroot_args(char *path)
1770  *
1771  * Change notion of root (``/'') directory.
1772  */
1773 int
1774 sys_chroot(struct chroot_args *uap)
1775 {
1776         struct thread *td __debugvar = curthread;
1777         struct nlookupdata nd;
1778         int error;
1779
1780         KKASSERT(td->td_proc);
1781         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1782         if (error == 0) {
1783                 nd.nl_flags |= NLC_EXEC;
1784                 error = nlookup(&nd);
1785                 if (error == 0)
1786                         error = kern_chroot(&nd.nl_nch);
1787         }
1788         nlookup_done(&nd);
1789         return(error);
1790 }
1791
1792 int
1793 sys_chroot_kernel(struct chroot_kernel_args *uap)
1794 {
1795         struct thread *td = curthread;
1796         struct nlookupdata nd;
1797         struct nchandle *nch;
1798         struct vnode *vp;
1799         int error;
1800
1801         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
1802         if (error)
1803                 goto error_nond;
1804
1805         error = nlookup(&nd);
1806         if (error)
1807                 goto error_out;
1808
1809         nch = &nd.nl_nch;
1810
1811         error = priv_check_cred(td->td_ucred, PRIV_VFS_CHROOT, 0);
1812         if (error)
1813                 goto error_out;
1814
1815         if ((vp = nch->ncp->nc_vp) == NULL) {
1816                 error = ENOENT;
1817                 goto error_out;
1818         }
1819
1820         if ((error = cache_vref(nch, nd.nl_cred, &vp)) != 0)
1821                 goto error_out;
1822
1823         kprintf("chroot_kernel: set new rootnch/rootvnode to %s\n", uap->path);
1824         get_mplock();
1825         vfs_cache_setroot(vp, cache_hold(nch));
1826         rel_mplock();
1827
1828 error_out:
1829         nlookup_done(&nd);
1830 error_nond:
1831         return(error);
1832 }
1833
1834 /*
1835  * Common routine for chroot and chdir.  Given a locked, referenced vnode,
1836  * determine whether it is legal to chdir to the vnode.  The vnode's state
1837  * is not changed by this call.
1838  */
1839 int
1840 checkvp_chdir(struct vnode *vp, struct thread *td)
1841 {
1842         int error;
1843
1844         if (vp->v_type != VDIR)
1845                 error = ENOTDIR;
1846         else
1847                 error = VOP_EACCESS(vp, VEXEC, td->td_ucred);
1848         return (error);
1849 }
1850
1851 int
1852 kern_open(struct nlookupdata *nd, int oflags, int mode, int *res)
1853 {
1854         struct thread *td = curthread;
1855         struct proc *p = td->td_proc;
1856         struct lwp *lp = td->td_lwp;
1857         struct filedesc *fdp = p->p_fd;
1858         int cmode, flags;
1859         struct file *nfp;
1860         struct file *fp;
1861         struct vnode *vp;
1862         int type, indx, error = 0;
1863         struct flock lf;
1864
1865         if ((oflags & O_ACCMODE) == O_ACCMODE)
1866                 return (EINVAL);
1867         flags = FFLAGS(oflags);
1868         error = falloc(lp, &nfp, NULL);
1869         if (error)
1870                 return (error);
1871         fp = nfp;
1872         cmode = ((mode &~ fdp->fd_cmask) & ALLPERMS) & ~S_ISTXT;
1873
1874         /*
1875          * XXX p_dupfd is a real mess.  It allows a device to return a
1876          * file descriptor to be duplicated rather then doing the open
1877          * itself.
1878          */
1879         lp->lwp_dupfd = -1;
1880
1881         /*
1882          * Call vn_open() to do the lookup and assign the vnode to the 
1883          * file pointer.  vn_open() does not change the ref count on fp
1884          * and the vnode, on success, will be inherited by the file pointer
1885          * and unlocked.
1886          *
1887          * Request a shared lock on the vnode if possible.
1888          */
1889         nd->nl_flags |= NLC_LOCKVP;
1890         if ((flags & (O_CREAT|O_TRUNC)) == 0)
1891                 nd->nl_flags |= NLC_SHAREDLOCK;
1892
1893         error = vn_open(nd, fp, flags, cmode);
1894         nlookup_done(nd);
1895
1896         if (error) {
1897                 /*
1898                  * handle special fdopen() case.  bleh.  dupfdopen() is
1899                  * responsible for dropping the old contents of ofiles[indx]
1900                  * if it succeeds.
1901                  *
1902                  * Note that fsetfd() will add a ref to fp which represents
1903                  * the fd_files[] assignment.  We must still drop our
1904                  * reference.
1905                  */
1906                 if ((error == ENODEV || error == ENXIO) && lp->lwp_dupfd >= 0) {
1907                         if (fdalloc(p, 0, &indx) == 0) {
1908                                 error = dupfdopen(fdp, indx, lp->lwp_dupfd, flags, error);
1909                                 if (error == 0) {
1910                                         *res = indx;
1911                                         fdrop(fp);      /* our ref */
1912                                         return (0);
1913                                 }
1914                                 fsetfd(fdp, NULL, indx);
1915                         }
1916                 }
1917                 fdrop(fp);      /* our ref */
1918                 if (error == ERESTART)
1919                         error = EINTR;
1920                 return (error);
1921         }
1922
1923         /*
1924          * ref the vnode for ourselves so it can't be ripped out from under
1925          * is.  XXX need an ND flag to request that the vnode be returned
1926          * anyway.
1927          *
1928          * Reserve a file descriptor but do not assign it until the open
1929          * succeeds.
1930          */
1931         vp = (struct vnode *)fp->f_data;
1932         vref(vp);
1933         if ((error = fdalloc(p, 0, &indx)) != 0) {
1934                 fdrop(fp);
1935                 vrele(vp);
1936                 return (error);
1937         }
1938
1939         /*
1940          * If no error occurs the vp will have been assigned to the file
1941          * pointer.
1942          */
1943         lp->lwp_dupfd = 0;
1944
1945         if (flags & (O_EXLOCK | O_SHLOCK)) {
1946                 lf.l_whence = SEEK_SET;
1947                 lf.l_start = 0;
1948                 lf.l_len = 0;
1949                 if (flags & O_EXLOCK)
1950                         lf.l_type = F_WRLCK;
1951                 else
1952                         lf.l_type = F_RDLCK;
1953                 if (flags & FNONBLOCK)
1954                         type = 0;
1955                 else
1956                         type = F_WAIT;
1957
1958                 if ((error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, type)) != 0) {
1959                         /*
1960                          * lock request failed.  Clean up the reserved
1961                          * descriptor.
1962                          */
1963                         vrele(vp);
1964                         fsetfd(fdp, NULL, indx);
1965                         fdrop(fp);
1966                         return (error);
1967                 }
1968                 fp->f_flag |= FHASLOCK;
1969         }
1970 #if 0
1971         /*
1972          * Assert that all regular file vnodes were created with a object.
1973          */
1974         KASSERT(vp->v_type != VREG || vp->v_object != NULL,
1975                 ("open: regular file has no backing object after vn_open"));
1976 #endif
1977
1978         vrele(vp);
1979
1980         /*
1981          * release our private reference, leaving the one associated with the
1982          * descriptor table intact.
1983          */
1984         fsetfd(fdp, fp, indx);
1985         fdrop(fp);
1986         *res = indx;
1987         if (oflags & O_CLOEXEC)
1988                 error = fsetfdflags(fdp, *res, UF_EXCLOSE);
1989         return (error);
1990 }
1991
1992 /*
1993  * open_args(char *path, int flags, int mode)
1994  *
1995  * Check permissions, allocate an open file structure,
1996  * and call the device open routine if any.
1997  */
1998 int
1999 sys_open(struct open_args *uap)
2000 {
2001         struct nlookupdata nd;
2002         int error;
2003
2004         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2005         if (error == 0) {
2006                 error = kern_open(&nd, uap->flags,
2007                                     uap->mode, &uap->sysmsg_result);
2008         }
2009         nlookup_done(&nd);
2010         return (error);
2011 }
2012
2013 /*
2014  * openat_args(int fd, char *path, int flags, int mode)
2015  */
2016 int
2017 sys_openat(struct openat_args *uap)
2018 {
2019         struct nlookupdata nd;
2020         int error;
2021         struct file *fp;
2022
2023         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, UIO_USERSPACE, 0);
2024         if (error == 0) {
2025                 error = kern_open(&nd, uap->flags, uap->mode, 
2026                                         &uap->sysmsg_result);
2027         }
2028         nlookup_done_at(&nd, fp);
2029         return (error);
2030 }
2031
2032 int
2033 kern_mknod(struct nlookupdata *nd, int mode, int rmajor, int rminor)
2034 {
2035         struct thread *td = curthread;
2036         struct proc *p = td->td_proc;
2037         struct vnode *vp;
2038         struct vattr vattr;
2039         int error;
2040         int whiteout = 0;
2041
2042         KKASSERT(p);
2043
2044         VATTR_NULL(&vattr);
2045         vattr.va_mode = (mode & ALLPERMS) &~ p->p_fd->fd_cmask;
2046         vattr.va_rmajor = rmajor;
2047         vattr.va_rminor = rminor;
2048
2049         switch (mode & S_IFMT) {
2050         case S_IFMT:    /* used by badsect to flag bad sectors */
2051                 error = priv_check_cred(td->td_ucred, PRIV_VFS_MKNOD_BAD, 0);
2052                 vattr.va_type = VBAD;
2053                 break;
2054         case S_IFCHR:
2055                 error = priv_check(td, PRIV_VFS_MKNOD_DEV);
2056                 vattr.va_type = VCHR;
2057                 break;
2058         case S_IFBLK:
2059                 error = priv_check(td, PRIV_VFS_MKNOD_DEV);
2060                 vattr.va_type = VBLK;
2061                 break;
2062         case S_IFWHT:
2063                 error = priv_check_cred(td->td_ucred, PRIV_VFS_MKNOD_WHT, 0);
2064                 whiteout = 1;
2065                 break;
2066         case S_IFDIR:   /* special directories support for HAMMER */
2067                 error = priv_check_cred(td->td_ucred, PRIV_VFS_MKNOD_DIR, 0);
2068                 vattr.va_type = VDIR;
2069                 break;
2070         default:
2071                 error = EINVAL;
2072                 break;
2073         }
2074
2075         if (error)
2076                 return (error);
2077
2078         bwillinode(1);
2079         nd->nl_flags |= NLC_CREATE | NLC_REFDVP;
2080         if ((error = nlookup(nd)) != 0)
2081                 return (error);
2082         if (nd->nl_nch.ncp->nc_vp)
2083                 return (EEXIST);
2084         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
2085                 return (error);
2086
2087         if (whiteout) {
2088                 error = VOP_NWHITEOUT(&nd->nl_nch, nd->nl_dvp,
2089                                       nd->nl_cred, NAMEI_CREATE);
2090         } else {
2091                 vp = NULL;
2092                 error = VOP_NMKNOD(&nd->nl_nch, nd->nl_dvp,
2093                                    &vp, nd->nl_cred, &vattr);
2094                 if (error == 0)
2095                         vput(vp);
2096         }
2097         return (error);
2098 }
2099
2100 /*
2101  * mknod_args(char *path, int mode, int dev)
2102  *
2103  * Create a special file.
2104  */
2105 int
2106 sys_mknod(struct mknod_args *uap)
2107 {
2108         struct nlookupdata nd;
2109         int error;
2110
2111         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2112         if (error == 0) {
2113                 error = kern_mknod(&nd, uap->mode,
2114                                    umajor(uap->dev), uminor(uap->dev));
2115         }
2116         nlookup_done(&nd);
2117         return (error);
2118 }
2119
2120 /*
2121  * mknodat_args(int fd, char *path, mode_t mode, dev_t dev)
2122  *
2123  * Create a special file.  The path is relative to the directory associated
2124  * with fd.
2125  */
2126 int
2127 sys_mknodat(struct mknodat_args *uap)
2128 {
2129         struct nlookupdata nd;
2130         struct file *fp;
2131         int error;
2132
2133         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, UIO_USERSPACE, 0);
2134         if (error == 0) {
2135                 error = kern_mknod(&nd, uap->mode,
2136                                    umajor(uap->dev), uminor(uap->dev));
2137         }
2138         nlookup_done_at(&nd, fp);
2139         return (error);
2140 }
2141
2142 int
2143 kern_mkfifo(struct nlookupdata *nd, int mode)
2144 {
2145         struct thread *td = curthread;
2146         struct proc *p = td->td_proc;
2147         struct vattr vattr;
2148         struct vnode *vp;
2149         int error;
2150
2151         bwillinode(1);
2152
2153         nd->nl_flags |= NLC_CREATE | NLC_REFDVP;
2154         if ((error = nlookup(nd)) != 0)
2155                 return (error);
2156         if (nd->nl_nch.ncp->nc_vp)
2157                 return (EEXIST);
2158         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
2159                 return (error);
2160
2161         VATTR_NULL(&vattr);
2162         vattr.va_type = VFIFO;
2163         vattr.va_mode = (mode & ALLPERMS) &~ p->p_fd->fd_cmask;
2164         vp = NULL;
2165         error = VOP_NMKNOD(&nd->nl_nch, nd->nl_dvp, &vp, nd->nl_cred, &vattr);
2166         if (error == 0)
2167                 vput(vp);
2168         return (error);
2169 }
2170
2171 /*
2172  * mkfifo_args(char *path, int mode)
2173  *
2174  * Create a named pipe.
2175  */
2176 int
2177 sys_mkfifo(struct mkfifo_args *uap)
2178 {
2179         struct nlookupdata nd;
2180         int error;
2181
2182         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2183         if (error == 0)
2184                 error = kern_mkfifo(&nd, uap->mode);
2185         nlookup_done(&nd);
2186         return (error);
2187 }
2188
2189 /*
2190  * mkfifoat_args(int fd, char *path, mode_t mode)
2191  *
2192  * Create a named pipe.  The path is relative to the directory associated
2193  * with fd.
2194  */
2195 int
2196 sys_mkfifoat(struct mkfifoat_args *uap)
2197 {
2198         struct nlookupdata nd;
2199         struct file *fp;
2200         int error;
2201
2202         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, UIO_USERSPACE, 0);
2203         if (error == 0)
2204                 error = kern_mkfifo(&nd, uap->mode);
2205         nlookup_done_at(&nd, fp);
2206         return (error);
2207 }
2208
2209 static int hardlink_check_uid = 0;
2210 SYSCTL_INT(_security, OID_AUTO, hardlink_check_uid, CTLFLAG_RW,
2211     &hardlink_check_uid, 0, 
2212     "Unprivileged processes cannot create hard links to files owned by other "
2213     "users");
2214 static int hardlink_check_gid = 0;
2215 SYSCTL_INT(_security, OID_AUTO, hardlink_check_gid, CTLFLAG_RW,
2216     &hardlink_check_gid, 0,
2217     "Unprivileged processes cannot create hard links to files owned by other "
2218     "groups");
2219
2220 static int
2221 can_hardlink(struct vnode *vp, struct thread *td, struct ucred *cred)
2222 {
2223         struct vattr va;
2224         int error;
2225
2226         /*
2227          * Shortcut if disabled
2228          */
2229         if (hardlink_check_uid == 0 && hardlink_check_gid == 0)
2230                 return (0);
2231
2232         /*
2233          * Privileged user can always hardlink
2234          */
2235         if (priv_check_cred(cred, PRIV_VFS_LINK, 0) == 0)
2236                 return (0);
2237
2238         /*
2239          * Otherwise only if the originating file is owned by the
2240          * same user or group.  Note that any group is allowed if
2241          * the file is owned by the caller.
2242          */
2243         error = VOP_GETATTR(vp, &va);
2244         if (error != 0)
2245                 return (error);
2246         
2247         if (hardlink_check_uid) {
2248                 if (cred->cr_uid != va.va_uid)
2249                         return (EPERM);
2250         }
2251         
2252         if (hardlink_check_gid) {
2253                 if (cred->cr_uid != va.va_uid && !groupmember(va.va_gid, cred))
2254                         return (EPERM);
2255         }
2256
2257         return (0);
2258 }
2259
2260 int
2261 kern_link(struct nlookupdata *nd, struct nlookupdata *linknd)
2262 {
2263         struct thread *td = curthread;
2264         struct vnode *vp;
2265         int error;
2266
2267         /*
2268          * Lookup the source and obtained a locked vnode.
2269          *
2270          * You may only hardlink a file which you have write permission
2271          * on or which you own.
2272          *
2273          * XXX relookup on vget failure / race ?
2274          */
2275         bwillinode(1);
2276         nd->nl_flags |= NLC_WRITE | NLC_OWN | NLC_HLINK;
2277         if ((error = nlookup(nd)) != 0)
2278                 return (error);
2279         vp = nd->nl_nch.ncp->nc_vp;
2280         KKASSERT(vp != NULL);
2281         if (vp->v_type == VDIR)
2282                 return (EPERM);         /* POSIX */
2283         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
2284                 return (error);
2285         if ((error = vget(vp, LK_EXCLUSIVE)) != 0)
2286                 return (error);
2287
2288         /*
2289          * Unlock the source so we can lookup the target without deadlocking
2290          * (XXX vp is locked already, possible other deadlock?).  The target
2291          * must not exist.
2292          */
2293         KKASSERT(nd->nl_flags & NLC_NCPISLOCKED);
2294         nd->nl_flags &= ~NLC_NCPISLOCKED;
2295         cache_unlock(&nd->nl_nch);
2296         vn_unlock(vp);
2297
2298         linknd->nl_flags |= NLC_CREATE | NLC_REFDVP;
2299         if ((error = nlookup(linknd)) != 0) {
2300                 vrele(vp);
2301                 return (error);
2302         }
2303         if (linknd->nl_nch.ncp->nc_vp) {
2304                 vrele(vp);
2305                 return (EEXIST);
2306         }
2307         if ((error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY)) != 0) {
2308                 vrele(vp);
2309                 return (error);
2310         }
2311
2312         /*
2313          * Finally run the new API VOP.
2314          */
2315         error = can_hardlink(vp, td, td->td_ucred);
2316         if (error == 0) {
2317                 error = VOP_NLINK(&linknd->nl_nch, linknd->nl_dvp,
2318                                   vp, linknd->nl_cred);
2319         }
2320         vput(vp);
2321         return (error);
2322 }
2323
2324 /*
2325  * link_args(char *path, char *link)
2326  *
2327  * Make a hard file link.
2328  */
2329 int
2330 sys_link(struct link_args *uap)
2331 {
2332         struct nlookupdata nd, linknd;
2333         int error;
2334
2335         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2336         if (error == 0) {
2337                 error = nlookup_init(&linknd, uap->link, UIO_USERSPACE, 0);
2338                 if (error == 0)
2339                         error = kern_link(&nd, &linknd);
2340                 nlookup_done(&linknd);
2341         }
2342         nlookup_done(&nd);
2343         return (error);
2344 }
2345
2346 /*
2347  * linkat_args(int fd1, char *path1, int fd2, char *path2, int flags)
2348  *
2349  * Make a hard file link. The path1 argument is relative to the directory
2350  * associated with fd1, and similarly the path2 argument is relative to
2351  * the directory associated with fd2.
2352  */
2353 int
2354 sys_linkat(struct linkat_args *uap)
2355 {
2356         struct nlookupdata nd, linknd;
2357         struct file *fp1, *fp2;
2358         int error;
2359
2360         error = nlookup_init_at(&nd, &fp1, uap->fd1, uap->path1, UIO_USERSPACE,
2361             (uap->flags & AT_SYMLINK_FOLLOW) ? NLC_FOLLOW : 0);
2362         if (error == 0) {
2363                 error = nlookup_init_at(&linknd, &fp2, uap->fd2,
2364                     uap->path2, UIO_USERSPACE, 0);
2365                 if (error == 0)
2366                         error = kern_link(&nd, &linknd);
2367                 nlookup_done_at(&linknd, fp2);
2368         }
2369         nlookup_done_at(&nd, fp1);
2370         return (error);
2371 }
2372
2373 int
2374 kern_symlink(struct nlookupdata *nd, char *path, int mode)
2375 {
2376         struct vattr vattr;
2377         struct vnode *vp;
2378         struct vnode *dvp;
2379         int error;
2380
2381         bwillinode(1);
2382         nd->nl_flags |= NLC_CREATE | NLC_REFDVP;
2383         if ((error = nlookup(nd)) != 0)
2384                 return (error);
2385         if (nd->nl_nch.ncp->nc_vp)
2386                 return (EEXIST);
2387         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
2388                 return (error);
2389         dvp = nd->nl_dvp;
2390         VATTR_NULL(&vattr);
2391         vattr.va_mode = mode;
2392         error = VOP_NSYMLINK(&nd->nl_nch, dvp, &vp, nd->nl_cred, &vattr, path);
2393         if (error == 0)
2394                 vput(vp);
2395         return (error);
2396 }
2397
2398 /*
2399  * symlink(char *path, char *link)
2400  *
2401  * Make a symbolic link.
2402  */
2403 int
2404 sys_symlink(struct symlink_args *uap)
2405 {
2406         struct thread *td = curthread;
2407         struct nlookupdata nd;
2408         char *path;
2409         int error;
2410         int mode;
2411
2412         path = objcache_get(namei_oc, M_WAITOK);
2413         error = copyinstr(uap->path, path, MAXPATHLEN, NULL);
2414         if (error == 0) {
2415                 error = nlookup_init(&nd, uap->link, UIO_USERSPACE, 0);
2416                 if (error == 0) {
2417                         mode = ACCESSPERMS & ~td->td_proc->p_fd->fd_cmask;
2418                         error = kern_symlink(&nd, path, mode);
2419                 }
2420                 nlookup_done(&nd);
2421         }
2422         objcache_put(namei_oc, path);
2423         return (error);
2424 }
2425
2426 /*
2427  * symlinkat_args(char *path1, int fd, char *path2)
2428  *
2429  * Make a symbolic link.  The path2 argument is relative to the directory
2430  * associated with fd.
2431  */
2432 int
2433 sys_symlinkat(struct symlinkat_args *uap)
2434 {
2435         struct thread *td = curthread;
2436         struct nlookupdata nd;
2437         struct file *fp;
2438         char *path1;
2439         int error;
2440         int mode;
2441
2442         path1 = objcache_get(namei_oc, M_WAITOK);
2443         error = copyinstr(uap->path1, path1, MAXPATHLEN, NULL);
2444         if (error == 0) {
2445                 error = nlookup_init_at(&nd, &fp, uap->fd, uap->path2,
2446                     UIO_USERSPACE, 0);
2447                 if (error == 0) {
2448                         mode = ACCESSPERMS & ~td->td_proc->p_fd->fd_cmask;
2449                         error = kern_symlink(&nd, path1, mode);
2450                 }
2451                 nlookup_done_at(&nd, fp);
2452         }
2453         objcache_put(namei_oc, path1);
2454         return (error);
2455 }
2456
2457 /*
2458  * undelete_args(char *path)
2459  *
2460  * Delete a whiteout from the filesystem.
2461  */
2462 int
2463 sys_undelete(struct undelete_args *uap)
2464 {
2465         struct nlookupdata nd;
2466         int error;
2467
2468         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2469         bwillinode(1);
2470         nd.nl_flags |= NLC_DELETE | NLC_REFDVP;
2471         if (error == 0)
2472                 error = nlookup(&nd);
2473         if (error == 0)
2474                 error = ncp_writechk(&nd.nl_nch);
2475         if (error == 0) {
2476                 error = VOP_NWHITEOUT(&nd.nl_nch, nd.nl_dvp, nd.nl_cred,
2477                                       NAMEI_DELETE);
2478         }
2479         nlookup_done(&nd);
2480         return (error);
2481 }
2482
2483 int
2484 kern_unlink(struct nlookupdata *nd)
2485 {
2486         int error;
2487
2488         bwillinode(1);
2489         nd->nl_flags |= NLC_DELETE | NLC_REFDVP;
2490         if ((error = nlookup(nd)) != 0)
2491                 return (error);
2492         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
2493                 return (error);
2494         error = VOP_NREMOVE(&nd->nl_nch, nd->nl_dvp, nd->nl_cred);
2495         return (error);
2496 }
2497
2498 /*
2499  * unlink_args(char *path)
2500  *
2501  * Delete a name from the filesystem.
2502  */
2503 int
2504 sys_unlink(struct unlink_args *uap)
2505 {
2506         struct nlookupdata nd;
2507         int error;
2508
2509         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2510         if (error == 0)
2511                 error = kern_unlink(&nd);
2512         nlookup_done(&nd);
2513         return (error);
2514 }
2515
2516
2517 /*
2518  * unlinkat_args(int fd, char *path, int flags)
2519  *
2520  * Delete the file or directory entry pointed to by fd/path.
2521  */
2522 int
2523 sys_unlinkat(struct unlinkat_args *uap)
2524 {
2525         struct nlookupdata nd;
2526         struct file *fp;
2527         int error;
2528
2529         if (uap->flags & ~AT_REMOVEDIR)
2530                 return (EINVAL);
2531
2532         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, UIO_USERSPACE, 0);
2533         if (error == 0) {
2534                 if (uap->flags & AT_REMOVEDIR)
2535                         error = kern_rmdir(&nd);
2536                 else
2537                         error = kern_unlink(&nd);
2538         }
2539         nlookup_done_at(&nd, fp);
2540         return (error);
2541 }
2542
2543 int
2544 kern_lseek(int fd, off_t offset, int whence, off_t *res)
2545 {
2546         struct thread *td = curthread;
2547         struct proc *p = td->td_proc;
2548         struct file *fp;
2549         struct vnode *vp;
2550         struct vattr vattr;
2551         off_t new_offset;
2552         int error;
2553
2554         fp = holdfp(p->p_fd, fd, -1);
2555         if (fp == NULL)
2556                 return (EBADF);
2557         if (fp->f_type != DTYPE_VNODE) {
2558                 error = ESPIPE;
2559                 goto done;
2560         }
2561         vp = (struct vnode *)fp->f_data;
2562
2563         switch (whence) {
2564         case L_INCR:
2565                 spin_lock(&fp->f_spin);
2566                 new_offset = fp->f_offset + offset;
2567                 error = 0;
2568                 break;
2569         case L_XTND:
2570                 error = VOP_GETATTR(vp, &vattr);
2571                 spin_lock(&fp->f_spin);
2572                 new_offset = offset + vattr.va_size;
2573                 break;
2574         case L_SET:
2575                 new_offset = offset;
2576                 error = 0;
2577                 spin_lock(&fp->f_spin);
2578                 break;
2579         default:
2580                 new_offset = 0;
2581                 error = EINVAL;
2582                 spin_lock(&fp->f_spin);
2583                 break;
2584         }
2585
2586         /*
2587          * Validate the seek position.  Negative offsets are not allowed
2588          * for regular files or directories.
2589          *
2590          * Normally we would also not want to allow negative offsets for
2591          * character and block-special devices.  However kvm addresses
2592          * on 64 bit architectures might appear to be negative and must
2593          * be allowed.
2594          */
2595         if (error == 0) {
2596                 if (new_offset < 0 &&
2597                     (vp->v_type == VREG || vp->v_type == VDIR)) {
2598                         error = EINVAL;
2599                 } else {
2600                         fp->f_offset = new_offset;
2601                 }
2602         }
2603         *res = fp->f_offset;
2604         spin_unlock(&fp->f_spin);
2605 done:
2606         fdrop(fp);
2607         return (error);
2608 }
2609
2610 /*
2611  * lseek_args(int fd, int pad, off_t offset, int whence)
2612  *
2613  * Reposition read/write file offset.
2614  */
2615 int
2616 sys_lseek(struct lseek_args *uap)
2617 {
2618         int error;
2619
2620         error = kern_lseek(uap->fd, uap->offset, uap->whence,
2621                            &uap->sysmsg_offset);
2622
2623         return (error);
2624 }
2625
2626 /*
2627  * Check if current process can access given file.  amode is a bitmask of *_OK
2628  * access bits.  flags is a bitmask of AT_* flags.
2629  */
2630 int
2631 kern_access(struct nlookupdata *nd, int amode, int flags)
2632 {
2633         struct vnode *vp;
2634         int error, mode;
2635
2636         if (flags & ~AT_EACCESS)
2637                 return (EINVAL);
2638         nd->nl_flags |= NLC_SHAREDLOCK;
2639         if ((error = nlookup(nd)) != 0)
2640                 return (error);
2641 retry:
2642         error = cache_vget(&nd->nl_nch, nd->nl_cred, LK_SHARED, &vp);
2643         if (error)
2644                 return (error);
2645
2646         /* Flags == 0 means only check for existence. */
2647         if (amode) {
2648                 mode = 0;
2649                 if (amode & R_OK)
2650                         mode |= VREAD;
2651                 if (amode & W_OK)
2652                         mode |= VWRITE;
2653                 if (amode & X_OK)
2654                         mode |= VEXEC;
2655                 if ((mode & VWRITE) == 0 || 
2656                     (error = vn_writechk(vp, &nd->nl_nch)) == 0)
2657                         error = VOP_ACCESS_FLAGS(vp, mode, flags, nd->nl_cred);
2658
2659                 /*
2660                  * If the file handle is stale we have to re-resolve the
2661                  * entry.  This is a hack at the moment.
2662                  */
2663                 if (error == ESTALE) {
2664                         vput(vp);
2665                         cache_setunresolved(&nd->nl_nch);
2666                         error = cache_resolve(&nd->nl_nch, nd->nl_cred);
2667                         if (error == 0) {
2668                                 vp = NULL;
2669                                 goto retry;
2670                         }
2671                         return(error);
2672                 }
2673         }
2674         vput(vp);
2675         return (error);
2676 }
2677
2678 /*
2679  * access_args(char *path, int flags)
2680  *
2681  * Check access permissions.
2682  */
2683 int
2684 sys_access(struct access_args *uap)
2685 {
2686         struct nlookupdata nd;
2687         int error;
2688
2689         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2690         if (error == 0)
2691                 error = kern_access(&nd, uap->flags, 0);
2692         nlookup_done(&nd);
2693         return (error);
2694 }
2695
2696
2697 /*
2698  * eaccess_args(char *path, int flags)
2699  *
2700  * Check access permissions.
2701  */
2702 int
2703 sys_eaccess(struct eaccess_args *uap)
2704 {
2705         struct nlookupdata nd;
2706         int error;
2707
2708         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2709         if (error == 0)
2710                 error = kern_access(&nd, uap->flags, AT_EACCESS);
2711         nlookup_done(&nd);
2712         return (error);
2713 }
2714
2715
2716 /*
2717  * faccessat_args(int fd, char *path, int amode, int flags)
2718  *
2719  * Check access permissions.
2720  */
2721 int
2722 sys_faccessat(struct faccessat_args *uap)
2723 {
2724         struct nlookupdata nd;
2725         struct file *fp;
2726         int error;
2727
2728         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, UIO_USERSPACE, 
2729                                 NLC_FOLLOW);
2730         if (error == 0)
2731                 error = kern_access(&nd, uap->amode, uap->flags);
2732         nlookup_done_at(&nd, fp);
2733         return (error);
2734 }
2735
2736 int
2737 kern_stat(struct nlookupdata *nd, struct stat *st)
2738 {
2739         int error;
2740         struct vnode *vp;
2741
2742         nd->nl_flags |= NLC_SHAREDLOCK;
2743         if ((error = nlookup(nd)) != 0)
2744                 return (error);
2745 again:
2746         if ((vp = nd->nl_nch.ncp->nc_vp) == NULL)
2747                 return (ENOENT);
2748
2749         if ((error = vget(vp, LK_SHARED)) != 0)
2750                 return (error);
2751         error = vn_stat(vp, st, nd->nl_cred);
2752
2753         /*
2754          * If the file handle is stale we have to re-resolve the entry.  This
2755          * is a hack at the moment.
2756          */
2757         if (error == ESTALE) {
2758                 vput(vp);
2759                 cache_setunresolved(&nd->nl_nch);
2760                 error = cache_resolve(&nd->nl_nch, nd->nl_cred);
2761                 if (error == 0)
2762                         goto again;
2763         } else {
2764                 vput(vp);
2765         }
2766         return (error);
2767 }
2768
2769 /*
2770  * stat_args(char *path, struct stat *ub)
2771  *
2772  * Get file status; this version follows links.
2773  */
2774 int
2775 sys_stat(struct stat_args *uap)
2776 {
2777         struct nlookupdata nd;
2778         struct stat st;
2779         int error;
2780
2781         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
2782         if (error == 0) {
2783                 error = kern_stat(&nd, &st);
2784                 if (error == 0)
2785                         error = copyout(&st, uap->ub, sizeof(*uap->ub));
2786         }
2787         nlookup_done(&nd);
2788         return (error);
2789 }
2790
2791 /*
2792  * lstat_args(char *path, struct stat *ub)
2793  *
2794  * Get file status; this version does not follow links.
2795  */
2796 int
2797 sys_lstat(struct lstat_args *uap)
2798 {
2799         struct nlookupdata nd;
2800         struct stat st;
2801         int error;
2802
2803         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2804         if (error == 0) {
2805                 error = kern_stat(&nd, &st);
2806                 if (error == 0)
2807                         error = copyout(&st, uap->ub, sizeof(*uap->ub));
2808         }
2809         nlookup_done(&nd);
2810         return (error);
2811 }
2812
2813 /*
2814  * fstatat_args(int fd, char *path, struct stat *sb, int flags)
2815  *
2816  * Get status of file pointed to by fd/path.
2817  */
2818 int
2819 sys_fstatat(struct fstatat_args *uap)
2820 {
2821         struct nlookupdata nd;
2822         struct stat st;
2823         int error;
2824         int flags;
2825         struct file *fp;
2826
2827         if (uap->flags & ~AT_SYMLINK_NOFOLLOW)
2828                 return (EINVAL);
2829
2830         flags = (uap->flags & AT_SYMLINK_NOFOLLOW) ? 0 : NLC_FOLLOW;
2831
2832         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, 
2833                                 UIO_USERSPACE, flags);
2834         if (error == 0) {
2835                 error = kern_stat(&nd, &st);
2836                 if (error == 0)
2837                         error = copyout(&st, uap->sb, sizeof(*uap->sb));
2838         }
2839         nlookup_done_at(&nd, fp);
2840         return (error);
2841 }
2842
2843 static int
2844 kern_pathconf(char *path, int name, int flags, register_t *sysmsg_regp)
2845 {
2846         struct nlookupdata nd;
2847         struct vnode *vp;
2848         int error;
2849
2850         vp = NULL;
2851         error = nlookup_init(&nd, path, UIO_USERSPACE, flags);
2852         if (error == 0)
2853                 error = nlookup(&nd);
2854         if (error == 0)
2855                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
2856         nlookup_done(&nd);
2857         if (error == 0) {
2858                 error = VOP_PATHCONF(vp, name, sysmsg_regp);
2859                 vput(vp);
2860         }
2861         return (error);
2862 }
2863
2864 /*
2865  * pathconf_Args(char *path, int name)
2866  *
2867  * Get configurable pathname variables.
2868  */
2869 int
2870 sys_pathconf(struct pathconf_args *uap)
2871 {
2872         return (kern_pathconf(uap->path, uap->name, NLC_FOLLOW,
2873                 &uap->sysmsg_reg));
2874 }
2875
2876 /*
2877  * lpathconf_Args(char *path, int name)
2878  *
2879  * Get configurable pathname variables, but don't follow symlinks.
2880  */
2881 int
2882 sys_lpathconf(struct lpathconf_args *uap)
2883 {
2884         return (kern_pathconf(uap->path, uap->name, 0, &uap->sysmsg_reg));
2885 }
2886
2887 /*
2888  * XXX: daver
2889  * kern_readlink isn't properly split yet.  There is a copyin burried
2890  * in VOP_READLINK().
2891  */
2892 int
2893 kern_readlink(struct nlookupdata *nd, char *buf, int count, int *res)
2894 {
2895         struct thread *td = curthread;
2896         struct vnode *vp;
2897         struct iovec aiov;
2898         struct uio auio;
2899         int error;
2900
2901         nd->nl_flags |= NLC_SHAREDLOCK;
2902         if ((error = nlookup(nd)) != 0)
2903                 return (error);
2904         error = cache_vget(&nd->nl_nch, nd->nl_cred, LK_SHARED, &vp);
2905         if (error)
2906                 return (error);
2907         if (vp->v_type != VLNK) {
2908                 error = EINVAL;
2909         } else {
2910                 aiov.iov_base = buf;
2911                 aiov.iov_len = count;
2912                 auio.uio_iov = &aiov;
2913                 auio.uio_iovcnt = 1;
2914                 auio.uio_offset = 0;
2915                 auio.uio_rw = UIO_READ;
2916                 auio.uio_segflg = UIO_USERSPACE;
2917                 auio.uio_td = td;
2918                 auio.uio_resid = count;
2919                 error = VOP_READLINK(vp, &auio, td->td_ucred);
2920         }
2921         vput(vp);
2922         *res = count - auio.uio_resid;
2923         return (error);
2924 }
2925
2926 /*
2927  * readlink_args(char *path, char *buf, int count)
2928  *
2929  * Return target name of a symbolic link.
2930  */
2931 int
2932 sys_readlink(struct readlink_args *uap)
2933 {
2934         struct nlookupdata nd;
2935         int error;
2936
2937         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
2938         if (error == 0) {
2939                 error = kern_readlink(&nd, uap->buf, uap->count,
2940                                         &uap->sysmsg_result);
2941         }
2942         nlookup_done(&nd);
2943         return (error);
2944 }
2945
2946 /*
2947  * readlinkat_args(int fd, char *path, char *buf, size_t bufsize)
2948  *
2949  * Return target name of a symbolic link.  The path is relative to the
2950  * directory associated with fd.
2951  */
2952 int
2953 sys_readlinkat(struct readlinkat_args *uap)
2954 {
2955         struct nlookupdata nd;
2956         struct file *fp;
2957         int error;
2958
2959         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, UIO_USERSPACE, 0);
2960         if (error == 0) {
2961                 error = kern_readlink(&nd, uap->buf, uap->bufsize,
2962                                         &uap->sysmsg_result);
2963         }
2964         nlookup_done_at(&nd, fp);
2965         return (error);
2966 }
2967
2968 static int
2969 setfflags(struct vnode *vp, int flags)
2970 {
2971         struct thread *td = curthread;
2972         int error;
2973         struct vattr vattr;
2974
2975         /*
2976          * Prevent non-root users from setting flags on devices.  When
2977          * a device is reused, users can retain ownership of the device
2978          * if they are allowed to set flags and programs assume that
2979          * chown can't fail when done as root.
2980          */
2981         if ((vp->v_type == VCHR || vp->v_type == VBLK) && 
2982             ((error = priv_check_cred(td->td_ucred, PRIV_VFS_CHFLAGS_DEV, 0)) != 0))
2983                 return (error);
2984
2985         /*
2986          * note: vget is required for any operation that might mod the vnode
2987          * so VINACTIVE is properly cleared.
2988          */
2989         if ((error = vget(vp, LK_EXCLUSIVE)) == 0) {
2990                 VATTR_NULL(&vattr);
2991                 vattr.va_flags = flags;
2992                 error = VOP_SETATTR(vp, &vattr, td->td_ucred);
2993                 vput(vp);
2994         }
2995         return (error);
2996 }
2997
2998 /*
2999  * chflags(char *path, int flags)
3000  *
3001  * Change flags of a file given a path name.
3002  */
3003 int
3004 sys_chflags(struct chflags_args *uap)
3005 {
3006         struct nlookupdata nd;
3007         struct vnode *vp;
3008         int error;
3009
3010         vp = NULL;
3011         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3012         if (error == 0)
3013                 error = nlookup(&nd);
3014         if (error == 0)
3015                 error = ncp_writechk(&nd.nl_nch);
3016         if (error == 0)
3017                 error = cache_vref(&nd.nl_nch, nd.nl_cred, &vp);
3018         nlookup_done(&nd);
3019         if (error == 0) {
3020                 error = setfflags(vp, uap->flags);
3021                 vrele(vp);
3022         }
3023         return (error);
3024 }
3025
3026 /*
3027  * lchflags(char *path, int flags)
3028  *
3029  * Change flags of a file given a path name, but don't follow symlinks.
3030  */
3031 int
3032 sys_lchflags(struct lchflags_args *uap)
3033 {
3034         struct nlookupdata nd;
3035         struct vnode *vp;
3036         int error;
3037
3038         vp = NULL;
3039         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
3040         if (error == 0)
3041                 error = nlookup(&nd);
3042         if (error == 0)
3043                 error = ncp_writechk(&nd.nl_nch);
3044         if (error == 0)
3045                 error = cache_vref(&nd.nl_nch, nd.nl_cred, &vp);
3046         nlookup_done(&nd);
3047         if (error == 0) {
3048                 error = setfflags(vp, uap->flags);
3049                 vrele(vp);
3050         }
3051         return (error);
3052 }
3053
3054 /*
3055  * fchflags_args(int fd, int flags)
3056  *
3057  * Change flags of a file given a file descriptor.
3058  */
3059 int
3060 sys_fchflags(struct fchflags_args *uap)
3061 {
3062         struct thread *td = curthread;
3063         struct proc *p = td->td_proc;
3064         struct file *fp;
3065         int error;
3066
3067         if ((error = holdvnode(p->p_fd, uap->fd, &fp)) != 0)
3068                 return (error);
3069         if (fp->f_nchandle.ncp)
3070                 error = ncp_writechk(&fp->f_nchandle);
3071         if (error == 0)
3072                 error = setfflags((struct vnode *) fp->f_data, uap->flags);
3073         fdrop(fp);
3074         return (error);
3075 }
3076
3077 static int
3078 setfmode(struct vnode *vp, int mode)
3079 {
3080         struct thread *td = curthread;
3081         int error;
3082         struct vattr vattr;
3083
3084         /*
3085          * note: vget is required for any operation that might mod the vnode
3086          * so VINACTIVE is properly cleared.
3087          */
3088         if ((error = vget(vp, LK_EXCLUSIVE)) == 0) {
3089                 VATTR_NULL(&vattr);
3090                 vattr.va_mode = mode & ALLPERMS;
3091                 error = VOP_SETATTR(vp, &vattr, td->td_ucred);
3092                 vput(vp);
3093         }
3094         return error;
3095 }
3096
3097 int
3098 kern_chmod(struct nlookupdata *nd, int mode)
3099 {
3100         struct vnode *vp;
3101         int error;
3102
3103         if ((error = nlookup(nd)) != 0)
3104                 return (error);
3105         if ((error = cache_vref(&nd->nl_nch, nd->nl_cred, &vp)) != 0)
3106                 return (error);
3107         if ((error = ncp_writechk(&nd->nl_nch)) == 0)
3108                 error = setfmode(vp, mode);
3109         vrele(vp);
3110         return (error);
3111 }
3112
3113 /*
3114  * chmod_args(char *path, int mode)
3115  *
3116  * Change mode of a file given path name.
3117  */
3118 int
3119 sys_chmod(struct chmod_args *uap)
3120 {
3121         struct nlookupdata nd;
3122         int error;
3123
3124         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3125         if (error == 0)
3126                 error = kern_chmod(&nd, uap->mode);
3127         nlookup_done(&nd);
3128         return (error);
3129 }
3130
3131 /*
3132  * lchmod_args(char *path, int mode)
3133  *
3134  * Change mode of a file given path name (don't follow links.)
3135  */
3136 int
3137 sys_lchmod(struct lchmod_args *uap)
3138 {
3139         struct nlookupdata nd;
3140         int error;
3141
3142         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
3143         if (error == 0)
3144                 error = kern_chmod(&nd, uap->mode);
3145         nlookup_done(&nd);
3146         return (error);
3147 }
3148
3149 /*
3150  * fchmod_args(int fd, int mode)
3151  *
3152  * Change mode of a file given a file descriptor.
3153  */
3154 int
3155 sys_fchmod(struct fchmod_args *uap)
3156 {
3157         struct thread *td = curthread;
3158         struct proc *p = td->td_proc;
3159         struct file *fp;
3160         int error;
3161
3162         if ((error = holdvnode(p->p_fd, uap->fd, &fp)) != 0)
3163                 return (error);
3164         if (fp->f_nchandle.ncp)
3165                 error = ncp_writechk(&fp->f_nchandle);
3166         if (error == 0)
3167                 error = setfmode((struct vnode *)fp->f_data, uap->mode);
3168         fdrop(fp);
3169         return (error);
3170 }
3171
3172 /*
3173  * fchmodat_args(char *path, int mode)
3174  *
3175  * Change mode of a file pointed to by fd/path.
3176  */
3177 int
3178 sys_fchmodat(struct fchmodat_args *uap)
3179 {
3180         struct nlookupdata nd;
3181         struct file *fp;
3182         int error;
3183         int flags;
3184
3185         if (uap->flags & ~AT_SYMLINK_NOFOLLOW)
3186                 return (EINVAL);
3187         flags = (uap->flags & AT_SYMLINK_NOFOLLOW) ? 0 : NLC_FOLLOW;
3188
3189         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, 
3190                                 UIO_USERSPACE, flags);
3191         if (error == 0)
3192                 error = kern_chmod(&nd, uap->mode);
3193         nlookup_done_at(&nd, fp);
3194         return (error);
3195 }
3196
3197 static int
3198 setfown(struct mount *mp, struct vnode *vp, uid_t uid, gid_t gid)
3199 {
3200         struct thread *td = curthread;
3201         int error;
3202         struct vattr vattr;
3203         uid_t o_uid;
3204         gid_t o_gid;
3205         uint64_t size;
3206
3207         /*
3208          * note: vget is required for any operation that might mod the vnode
3209          * so VINACTIVE is properly cleared.
3210          */
3211         if ((error = vget(vp, LK_EXCLUSIVE)) == 0) {
3212                 if ((error = VOP_GETATTR(vp, &vattr)) != 0)
3213                         return error;
3214                 o_uid = vattr.va_uid;
3215                 o_gid = vattr.va_gid;
3216                 size = vattr.va_size;
3217
3218                 VATTR_NULL(&vattr);
3219                 vattr.va_uid = uid;
3220                 vattr.va_gid = gid;
3221                 error = VOP_SETATTR(vp, &vattr, td->td_ucred);
3222                 vput(vp);
3223         }
3224
3225         if (error == 0) {
3226                 if (uid == -1)
3227                         uid = o_uid;
3228                 if (gid == -1)
3229                         gid = o_gid;
3230                 VFS_ACCOUNT(mp, o_uid, o_gid, -size);
3231                 VFS_ACCOUNT(mp,   uid,   gid,  size);
3232         }
3233
3234         return error;
3235 }
3236
3237 int
3238 kern_chown(struct nlookupdata *nd, int uid, int gid)
3239 {
3240         struct vnode *vp;
3241         int error;
3242
3243         if ((error = nlookup(nd)) != 0)
3244                 return (error);
3245         if ((error = cache_vref(&nd->nl_nch, nd->nl_cred, &vp)) != 0)
3246                 return (error);
3247         if ((error = ncp_writechk(&nd->nl_nch)) == 0)
3248                 error = setfown(nd->nl_nch.mount, vp, uid, gid);
3249         vrele(vp);
3250         return (error);
3251 }
3252
3253 /*
3254  * chown(char *path, int uid, int gid)
3255  *
3256  * Set ownership given a path name.
3257  */
3258 int
3259 sys_chown(struct chown_args *uap)
3260 {
3261         struct nlookupdata nd;
3262         int error;
3263
3264         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3265         if (error == 0)
3266                 error = kern_chown(&nd, uap->uid, uap->gid);
3267         nlookup_done(&nd);
3268         return (error);
3269 }
3270
3271 /*
3272  * lchown_args(char *path, int uid, int gid)
3273  *
3274  * Set ownership given a path name, do not cross symlinks.
3275  */
3276 int
3277 sys_lchown(struct lchown_args *uap)
3278 {
3279         struct nlookupdata nd;
3280         int error;
3281
3282         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
3283         if (error == 0)
3284                 error = kern_chown(&nd, uap->uid, uap->gid);
3285         nlookup_done(&nd);
3286         return (error);
3287 }
3288
3289 /*
3290  * fchown_args(int fd, int uid, int gid)
3291  *
3292  * Set ownership given a file descriptor.
3293  */
3294 int
3295 sys_fchown(struct fchown_args *uap)
3296 {
3297         struct thread *td = curthread;
3298         struct proc *p = td->td_proc;
3299         struct file *fp;
3300         int error;
3301
3302         if ((error = holdvnode(p->p_fd, uap->fd, &fp)) != 0)
3303                 return (error);
3304         if (fp->f_nchandle.ncp)
3305                 error = ncp_writechk(&fp->f_nchandle);
3306         if (error == 0)
3307                 error = setfown(p->p_fd->fd_ncdir.mount,
3308                         (struct vnode *)fp->f_data, uap->uid, uap->gid);
3309         fdrop(fp);
3310         return (error);
3311 }
3312
3313 /*
3314  * fchownat(int fd, char *path, int uid, int gid, int flags)
3315  *
3316  * Set ownership of file pointed to by fd/path.
3317  */
3318 int
3319 sys_fchownat(struct fchownat_args *uap)
3320 {
3321         struct nlookupdata nd;
3322         struct file *fp;
3323         int error;
3324         int flags;
3325
3326         if (uap->flags & ~AT_SYMLINK_NOFOLLOW)
3327                 return (EINVAL);
3328         flags = (uap->flags & AT_SYMLINK_NOFOLLOW) ? 0 : NLC_FOLLOW;
3329
3330         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, 
3331                                 UIO_USERSPACE, flags);
3332         if (error == 0)
3333                 error = kern_chown(&nd, uap->uid, uap->gid);
3334         nlookup_done_at(&nd, fp);
3335         return (error);
3336 }
3337
3338
3339 static int
3340 getutimes(const struct timeval *tvp, struct timespec *tsp)
3341 {
3342         struct timeval tv[2];
3343
3344         if (tvp == NULL) {
3345                 microtime(&tv[0]);
3346                 TIMEVAL_TO_TIMESPEC(&tv[0], &tsp[0]);
3347                 tsp[1] = tsp[0];
3348         } else {
3349                 TIMEVAL_TO_TIMESPEC(&tvp[0], &tsp[0]);
3350                 TIMEVAL_TO_TIMESPEC(&tvp[1], &tsp[1]);
3351         }
3352         return 0;
3353 }
3354
3355 static int
3356 setutimes(struct vnode *vp, struct vattr *vattr,
3357           const struct timespec *ts, int nullflag)
3358 {
3359         struct thread *td = curthread;
3360         int error;
3361
3362         VATTR_NULL(vattr);
3363         vattr->va_atime = ts[0];
3364         vattr->va_mtime = ts[1];
3365         if (nullflag)
3366                 vattr->va_vaflags |= VA_UTIMES_NULL;
3367         error = VOP_SETATTR(vp, vattr, td->td_ucred);
3368
3369         return error;
3370 }
3371
3372 int
3373 kern_utimes(struct nlookupdata *nd, struct timeval *tptr)
3374 {
3375         struct timespec ts[2];
3376         struct vnode *vp;
3377         struct vattr vattr;
3378         int error;
3379
3380         if ((error = getutimes(tptr, ts)) != 0)
3381                 return (error);
3382
3383         /*
3384          * NOTE: utimes() succeeds for the owner even if the file
3385          * is not user-writable.
3386          */
3387         nd->nl_flags |= NLC_OWN | NLC_WRITE;
3388
3389         if ((error = nlookup(nd)) != 0)
3390                 return (error);
3391         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
3392                 return (error);
3393         if ((error = cache_vref(&nd->nl_nch, nd->nl_cred, &vp)) != 0)
3394                 return (error);
3395
3396         /*
3397          * note: vget is required for any operation that might mod the vnode
3398          * so VINACTIVE is properly cleared.
3399          */
3400         if ((error = vn_writechk(vp, &nd->nl_nch)) == 0) {
3401                 error = vget(vp, LK_EXCLUSIVE);
3402                 if (error == 0) {
3403                         error = setutimes(vp, &vattr, ts, (tptr == NULL));
3404                         vput(vp);
3405                 }
3406         }
3407         vrele(vp);
3408         return (error);
3409 }
3410
3411 /*
3412  * utimes_args(char *path, struct timeval *tptr)
3413  *
3414  * Set the access and modification times of a file.
3415  */
3416 int
3417 sys_utimes(struct utimes_args *uap)
3418 {
3419         struct timeval tv[2];
3420         struct nlookupdata nd;
3421         int error;
3422
3423         if (uap->tptr) {
3424                 error = copyin(uap->tptr, tv, sizeof(tv));
3425                 if (error)
3426                         return (error);
3427         }
3428         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3429         if (error == 0)
3430                 error = kern_utimes(&nd, uap->tptr ? tv : NULL);
3431         nlookup_done(&nd);
3432         return (error);
3433 }
3434
3435 /*
3436  * lutimes_args(char *path, struct timeval *tptr)
3437  *
3438  * Set the access and modification times of a file.
3439  */
3440 int
3441 sys_lutimes(struct lutimes_args *uap)
3442 {
3443         struct timeval tv[2];
3444         struct nlookupdata nd;
3445         int error;
3446
3447         if (uap->tptr) {
3448                 error = copyin(uap->tptr, tv, sizeof(tv));
3449                 if (error)
3450                         return (error);
3451         }
3452         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
3453         if (error == 0)
3454                 error = kern_utimes(&nd, uap->tptr ? tv : NULL);
3455         nlookup_done(&nd);
3456         return (error);
3457 }
3458
3459 /*
3460  * Set utimes on a file descriptor.  The creds used to open the
3461  * file are used to determine whether the operation is allowed
3462  * or not.
3463  */
3464 int
3465 kern_futimes(int fd, struct timeval *tptr)
3466 {
3467         struct thread *td = curthread;
3468         struct proc *p = td->td_proc;
3469         struct timespec ts[2];
3470         struct file *fp;
3471         struct vnode *vp;
3472         struct vattr vattr;
3473         int error;
3474
3475         error = getutimes(tptr, ts);
3476         if (error)
3477                 return (error);
3478         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
3479                 return (error);
3480         if (fp->f_nchandle.ncp)
3481                 error = ncp_writechk(&fp->f_nchandle);
3482         if (error == 0) {
3483                 vp = fp->f_data;
3484                 error = vget(vp, LK_EXCLUSIVE);
3485                 if (error == 0) {
3486                         error = VOP_GETATTR(vp, &vattr);
3487                         if (error == 0) {
3488                                 error = naccess_va(&vattr, NLC_OWN | NLC_WRITE,
3489                                                    fp->f_cred);
3490                         }
3491                         if (error == 0) {
3492                                 error = setutimes(vp, &vattr, ts,
3493                                                   (tptr == NULL));
3494                         }
3495                         vput(vp);
3496                 }
3497         }
3498         fdrop(fp);
3499         return (error);
3500 }
3501
3502 /*
3503  * futimes_args(int fd, struct timeval *tptr)
3504  *
3505  * Set the access and modification times of a file.
3506  */
3507 int
3508 sys_futimes(struct futimes_args *uap)
3509 {
3510         struct timeval tv[2];
3511         int error;
3512
3513         if (uap->tptr) {
3514                 error = copyin(uap->tptr, tv, sizeof(tv));
3515                 if (error)
3516                         return (error);
3517         }
3518         error = kern_futimes(uap->fd, uap->tptr ? tv : NULL);
3519
3520         return (error);
3521 }
3522
3523 int
3524 kern_truncate(struct nlookupdata *nd, off_t length)
3525 {
3526         struct vnode *vp;
3527         struct vattr vattr;
3528         int error;
3529         uid_t uid = 0;
3530         gid_t gid = 0;
3531         uint64_t old_size = 0;
3532
3533         if (length < 0)
3534                 return(EINVAL);
3535         nd->nl_flags |= NLC_WRITE | NLC_TRUNCATE;
3536         if ((error = nlookup(nd)) != 0)
3537                 return (error);
3538         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
3539                 return (error);
3540         if ((error = cache_vref(&nd->nl_nch, nd->nl_cred, &vp)) != 0)
3541                 return (error);
3542         if ((error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY)) != 0) {
3543                 vrele(vp);
3544                 return (error);
3545         }
3546         if (vp->v_type == VDIR) {
3547                 error = EISDIR;
3548                 goto done;
3549         }
3550         if (vfs_quota_enabled) {
3551                 error = VOP_GETATTR(vp, &vattr);
3552                 KASSERT(error == 0, ("kern_truncate(): VOP_GETATTR didn't return 0"));
3553                 uid = vattr.va_uid;
3554                 gid = vattr.va_gid;
3555                 old_size = vattr.va_size;
3556         }
3557
3558         if ((error = vn_writechk(vp, &nd->nl_nch)) == 0) {
3559                 VATTR_NULL(&vattr);
3560                 vattr.va_size = length;
3561                 error = VOP_SETATTR(vp, &vattr, nd->nl_cred);
3562                 VFS_ACCOUNT(nd->nl_nch.mount, uid, gid, length - old_size);
3563         }
3564 done:
3565         vput(vp);
3566         return (error);
3567 }
3568
3569 /*
3570  * truncate(char *path, int pad, off_t length)
3571  *
3572  * Truncate a file given its path name.
3573  */
3574 int
3575 sys_truncate(struct truncate_args *uap)
3576 {
3577         struct nlookupdata nd;
3578         int error;
3579
3580         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
3581         if (error == 0)
3582                 error = kern_truncate(&nd, uap->length);
3583         nlookup_done(&nd);
3584         return error;
3585 }
3586
3587 int
3588 kern_ftruncate(int fd, off_t length)
3589 {
3590         struct thread *td = curthread;
3591         struct proc *p = td->td_proc;
3592         struct vattr vattr;
3593         struct vnode *vp;
3594         struct file *fp;
3595         int error;
3596         uid_t uid = 0;
3597         gid_t gid = 0;
3598         uint64_t old_size = 0;
3599         struct mount *mp;
3600
3601         if (length < 0)
3602                 return(EINVAL);
3603         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
3604                 return (error);
3605         if (fp->f_nchandle.ncp) {
3606                 error = ncp_writechk(&fp->f_nchandle);
3607                 if (error)
3608                         goto done;
3609         }
3610         if ((fp->f_flag & FWRITE) == 0) {
3611                 error = EINVAL;
3612                 goto done;
3613         }
3614         if (fp->f_flag & FAPPENDONLY) { /* inode was set s/uapnd */
3615                 error = EINVAL;
3616                 goto done;
3617         }
3618         vp = (struct vnode *)fp->f_data;
3619         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3620         if (vp->v_type == VDIR) {
3621                 error = EISDIR;
3622                 goto done;
3623         }
3624
3625         if (vfs_quota_enabled) {
3626                 error = VOP_GETATTR(vp, &vattr);
3627                 KASSERT(error == 0, ("kern_ftruncate(): VOP_GETATTR didn't return 0"));
3628                 uid = vattr.va_uid;
3629                 gid = vattr.va_gid;
3630                 old_size = vattr.va_size;
3631         }
3632
3633         if ((error = vn_writechk(vp, NULL)) == 0) {
3634                 VATTR_NULL(&vattr);
3635                 vattr.va_size = length;
3636                 error = VOP_SETATTR(vp, &vattr, fp->f_cred);
3637                 mp = vq_vptomp(vp);
3638                 VFS_ACCOUNT(mp, uid, gid, length - old_size);
3639         }
3640         vn_unlock(vp);
3641 done:
3642         fdrop(fp);
3643         return (error);
3644 }
3645
3646 /*
3647  * ftruncate_args(int fd, int pad, off_t length)
3648  *
3649  * Truncate a file given a file descriptor.
3650  */
3651 int
3652 sys_ftruncate(struct ftruncate_args *uap)
3653 {
3654         int error;
3655
3656         error = kern_ftruncate(uap->fd, uap->length);
3657
3658         return (error);
3659 }
3660
3661 /*
3662  * fsync(int fd)
3663  *
3664  * Sync an open file.
3665  */
3666 int
3667 sys_fsync(struct fsync_args *uap)
3668 {
3669         struct thread *td = curthread;
3670         struct proc *p = td->td_proc;
3671         struct vnode *vp;
3672         struct file *fp;
3673         vm_object_t obj;
3674         int error;
3675
3676         if ((error = holdvnode(p->p_fd, uap->fd, &fp)) != 0)
3677                 return (error);
3678         vp = (struct vnode *)fp->f_data;
3679         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3680         if ((obj = vp->v_object) != NULL) {
3681                 if (vp->v_mount == NULL ||
3682                     (vp->v_mount->mnt_kern_flag & MNTK_NOMSYNC) == 0) {
3683                         vm_object_page_clean(obj, 0, 0, 0);
3684                 }
3685         }
3686         error = VOP_FSYNC(vp, MNT_WAIT, VOP_FSYNC_SYSCALL);
3687         if (error == 0 && vp->v_mount)
3688                 error = buf_fsync(vp);
3689         vn_unlock(vp);
3690         fdrop(fp);
3691
3692         return (error);
3693 }
3694
3695 int
3696 kern_rename(struct nlookupdata *fromnd, struct nlookupdata *tond)
3697 {
3698         struct nchandle fnchd;
3699         struct nchandle tnchd;
3700         struct namecache *ncp;
3701         struct vnode *fdvp;
3702         struct vnode *tdvp;
3703         struct mount *mp;
3704         int error;
3705
3706         bwillinode(1);
3707         fromnd->nl_flags |= NLC_REFDVP | NLC_RENAME_SRC;
3708         if ((error = nlookup(fromnd)) != 0)
3709                 return (error);
3710         if ((fnchd.ncp = fromnd->nl_nch.ncp->nc_parent) == NULL)
3711                 return (ENOENT);
3712         fnchd.mount = fromnd->nl_nch.mount;
3713         cache_hold(&fnchd);
3714
3715         /*
3716          * unlock the source nch so we can lookup the target nch without
3717          * deadlocking.  The target may or may not exist so we do not check
3718          * for a target vp like kern_mkdir() and other creation functions do.
3719          *
3720          * The source and target directories are ref'd and rechecked after
3721          * everything is relocked to determine if the source or target file
3722          * has been renamed.
3723          */
3724         KKASSERT(fromnd->nl_flags & NLC_NCPISLOCKED);
3725         fromnd->nl_flags &= ~NLC_NCPISLOCKED;
3726         cache_unlock(&fromnd->nl_nch);
3727
3728         tond->nl_flags |= NLC_RENAME_DST | NLC_REFDVP;
3729         if ((error = nlookup(tond)) != 0) {
3730                 cache_drop(&fnchd);
3731                 return (error);
3732         }
3733         if ((tnchd.ncp = tond->nl_nch.ncp->nc_parent) == NULL) {
3734                 cache_drop(&fnchd);
3735                 return (ENOENT);
3736         }
3737         tnchd.mount = tond->nl_nch.mount;
3738         cache_hold(&tnchd);
3739
3740         /*
3741          * If the source and target are the same there is nothing to do
3742          */
3743         if (fromnd->nl_nch.ncp == tond->nl_nch.ncp) {
3744                 cache_drop(&fnchd);
3745                 cache_drop(&tnchd);
3746                 return (0);
3747         }
3748
3749         /*
3750          * Mount points cannot be renamed or overwritten
3751          */
3752         if ((fromnd->nl_nch.ncp->nc_flag | tond->nl_nch.ncp->nc_flag) &
3753             NCF_ISMOUNTPT
3754         ) {
3755                 cache_drop(&fnchd);
3756                 cache_drop(&tnchd);
3757                 return (EINVAL);
3758         }
3759
3760         /*
3761          * Relock the source ncp.  cache_relock() will deal with any
3762          * deadlocks against the already-locked tond and will also
3763          * make sure both are resolved.
3764          *
3765          * NOTE AFTER RELOCKING: The source or target ncp may have become
3766          * invalid while they were unlocked, nc_vp and nc_mount could
3767          * be NULL.
3768          */
3769         cache_relock(&fromnd->nl_nch, fromnd->nl_cred,
3770                      &tond->nl_nch, tond->nl_cred);
3771         fromnd->nl_flags |= NLC_NCPISLOCKED;
3772
3773         /*
3774          * If either fromnd or tond are marked destroyed a ripout occured
3775          * out from under us and we must retry.
3776          */
3777         if ((fromnd->nl_nch.ncp->nc_flag & (NCF_DESTROYED | NCF_UNRESOLVED)) ||
3778             fromnd->nl_nch.ncp->nc_vp == NULL ||
3779             (tond->nl_nch.ncp->nc_flag & NCF_DESTROYED)) {
3780                 kprintf("kern_rename: retry due to ripout on: "
3781                         "\"%s\" -> \"%s\"\n",
3782                         fromnd->nl_nch.ncp->nc_name,
3783                         tond->nl_nch.ncp->nc_name);
3784                 cache_drop(&fnchd);
3785                 cache_drop(&tnchd);
3786                 return (EAGAIN);
3787         }
3788
3789         /*
3790          * make sure the parent directories linkages are the same
3791          */
3792         if (fnchd.ncp != fromnd->nl_nch.ncp->nc_parent ||
3793             tnchd.ncp != tond->nl_nch.ncp->nc_parent) {
3794                 cache_drop(&fnchd);
3795                 cache_drop(&tnchd);
3796                 return (ENOENT);
3797         }
3798
3799         /*
3800          * Both the source and target must be within the same filesystem and
3801          * in the same filesystem as their parent directories within the
3802          * namecache topology.
3803          *
3804          * NOTE: fromnd's nc_mount or nc_vp could be NULL.
3805          */
3806         mp = fnchd.mount;
3807         if (mp != tnchd.mount || mp != fromnd->nl_nch.mount ||
3808             mp != tond->nl_nch.mount) {
3809                 cache_drop(&fnchd);
3810                 cache_drop(&tnchd);
3811                 return (EXDEV);
3812         }
3813
3814         /*
3815          * Make sure the mount point is writable
3816          */
3817         if ((error = ncp_writechk(&tond->nl_nch)) != 0) {
3818                 cache_drop(&fnchd);
3819                 cache_drop(&tnchd);
3820                 return (error);
3821         }
3822
3823         /*
3824          * If the target exists and either the source or target is a directory,
3825          * then both must be directories.
3826          *
3827          * Due to relocking of the source, fromnd->nl_nch.ncp->nc_vp might h
3828          * have become NULL.
3829          */
3830         if (tond->nl_nch.ncp->nc_vp) {
3831                 if (fromnd->nl_nch.ncp->nc_vp == NULL) {
3832                         error = ENOENT;
3833                 } else if (fromnd->nl_nch.ncp->nc_vp->v_type == VDIR) {
3834                         if (tond->nl_nch.ncp->nc_vp->v_type != VDIR)
3835                                 error = ENOTDIR;
3836                 } else if (tond->nl_nch.ncp->nc_vp->v_type == VDIR) {
3837                         error = EISDIR;
3838                 }
3839         }
3840
3841         /*
3842          * You cannot rename a source into itself or a subdirectory of itself.
3843          * We check this by travsersing the target directory upwards looking
3844          * for a match against the source.
3845          *
3846          * XXX MPSAFE
3847          */
3848         if (error == 0) {
3849                 for (ncp = tnchd.ncp; ncp; ncp = ncp->nc_parent) {
3850                         if (fromnd->nl_nch.ncp == ncp) {
3851                                 error = EINVAL;
3852                                 break;
3853                         }
3854                 }
3855         }
3856
3857         cache_drop(&fnchd);
3858         cache_drop(&tnchd);
3859
3860         /*
3861          * Even though the namespaces are different, they may still represent
3862          * hardlinks to the same file.  The filesystem might have a hard time
3863          * with this so we issue a NREMOVE of the source instead of a NRENAME
3864          * when we detect the situation.
3865          */
3866         if (error == 0) {
3867                 fdvp = fromnd->nl_dvp;
3868                 tdvp = tond->nl_dvp;
3869                 if (fdvp == NULL || tdvp == NULL) {
3870                         error = EPERM;
3871                 } else if (fromnd->nl_nch.ncp->nc_vp == tond->nl_nch.ncp->nc_vp) {
3872                         error = VOP_NREMOVE(&fromnd->nl_nch, fdvp,
3873                                             fromnd->nl_cred);
3874                 } else {
3875                         error = VOP_NRENAME(&fromnd->nl_nch, &tond->nl_nch, 
3876                                             fdvp, tdvp, tond->nl_cred);
3877                 }
3878         }
3879         return (error);
3880 }
3881
3882 /*
3883  * rename_args(char *from, char *to)
3884  *
3885  * Rename files.  Source and destination must either both be directories,
3886  * or both not be directories.  If target is a directory, it must be empty.
3887  */
3888 int
3889 sys_rename(struct rename_args *uap)
3890 {
3891         struct nlookupdata fromnd, tond;
3892         int error;
3893
3894         do {
3895                 error = nlookup_init(&fromnd, uap->from, UIO_USERSPACE, 0);
3896                 if (error == 0) {
3897                         error = nlookup_init(&tond, uap->to, UIO_USERSPACE, 0);
3898                         if (error == 0)
3899                                 error = kern_rename(&fromnd, &tond);
3900                         nlookup_done(&tond);
3901                 }
3902                 nlookup_done(&fromnd);
3903         } while (error == EAGAIN);
3904         return (error);
3905 }
3906
3907 /*
3908  * renameat_args(int oldfd, char *old, int newfd, char *new)
3909  *
3910  * Rename files using paths relative to the directories associated with
3911  * oldfd and newfd.  Source and destination must either both be directories,
3912  * or both not be directories.  If target is a directory, it must be empty.
3913  */
3914 int
3915 sys_renameat(struct renameat_args *uap)
3916 {
3917         struct nlookupdata oldnd, newnd;
3918         struct file *oldfp, *newfp;
3919         int error;
3920
3921         do {
3922                 error = nlookup_init_at(&oldnd, &oldfp,
3923                                         uap->oldfd, uap->old,
3924                                         UIO_USERSPACE, 0);
3925                 if (error == 0) {
3926                         error = nlookup_init_at(&newnd, &newfp,
3927                                                 uap->newfd, uap->new,
3928                                                 UIO_USERSPACE, 0);
3929                         if (error == 0)
3930                                 error = kern_rename(&oldnd, &newnd);
3931                         nlookup_done_at(&newnd, newfp);
3932                 }
3933                 nlookup_done_at(&oldnd, oldfp);
3934         } while (error == EAGAIN);
3935         return (error);
3936 }
3937
3938 int
3939 kern_mkdir(struct nlookupdata *nd, int mode)
3940 {
3941         struct thread *td = curthread;
3942         struct proc *p = td->td_proc;
3943         struct vnode *vp;
3944         struct vattr vattr;
3945         int error;
3946
3947         bwillinode(1);
3948         nd->nl_flags |= NLC_WILLBEDIR | NLC_CREATE | NLC_REFDVP;
3949         if ((error = nlookup(nd)) != 0)
3950                 return (error);
3951
3952         if (nd->nl_nch.ncp->nc_vp)
3953                 return (EEXIST);
3954         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
3955                 return (error);
3956         VATTR_NULL(&vattr);
3957         vattr.va_type = VDIR;
3958         vattr.va_mode = (mode & ACCESSPERMS) &~ p->p_fd->fd_cmask;
3959
3960         vp = NULL;
3961         error = VOP_NMKDIR(&nd->nl_nch, nd->nl_dvp, &vp, td->td_ucred, &vattr);
3962         if (error == 0)
3963                 vput(vp);
3964         return (error);
3965 }
3966
3967 /*
3968  * mkdir_args(char *path, int mode)
3969  *
3970  * Make a directory file.
3971  */
3972 int
3973 sys_mkdir(struct mkdir_args *uap)
3974 {
3975         struct nlookupdata nd;
3976         int error;
3977
3978         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
3979         if (error == 0)
3980                 error = kern_mkdir(&nd, uap->mode);
3981         nlookup_done(&nd);
3982         return (error);
3983 }
3984
3985 /*
3986  * mkdirat_args(int fd, char *path, mode_t mode)
3987  *
3988  * Make a directory file.  The path is relative to the directory associated
3989  * with fd.
3990  */
3991 int
3992 sys_mkdirat(struct mkdirat_args *uap)
3993 {
3994         struct nlookupdata nd;
3995         struct file *fp;
3996         int error;
3997
3998         error = nlookup_init_at(&nd, &fp, uap->fd, uap->path, UIO_USERSPACE, 0);
3999         if (error == 0)
4000                 error = kern_mkdir(&nd, uap->mode);
4001         nlookup_done_at(&nd, fp);
4002         return (error);
4003 }
4004
4005 int
4006 kern_rmdir(struct nlookupdata *nd)
4007 {
4008         int error;
4009
4010         bwillinode(1);
4011         nd->nl_flags |= NLC_DELETE | NLC_REFDVP;
4012         if ((error = nlookup(nd)) != 0)
4013                 return (error);
4014
4015         /*
4016          * Do not allow directories representing mount points to be
4017          * deleted, even if empty.  Check write perms on mount point
4018          * in case the vnode is aliased (aka nullfs).
4019          */
4020         if (nd->nl_nch.ncp->nc_flag & (NCF_ISMOUNTPT))
4021                 return (EBUSY);
4022         if ((error = ncp_writechk(&nd->nl_nch)) != 0)
4023                 return (error);
4024         error = VOP_NRMDIR(&nd->nl_nch, nd->nl_dvp, nd->nl_cred);
4025         return (error);
4026 }
4027
4028 /*
4029  * rmdir_args(char *path)
4030  *
4031  * Remove a directory file.
4032  */
4033 int
4034 sys_rmdir(struct rmdir_args *uap)
4035 {
4036         struct nlookupdata nd;
4037         int error;
4038
4039         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, 0);
4040         if (error == 0)
4041                 error = kern_rmdir(&nd);
4042         nlookup_done(&nd);
4043         return (error);
4044 }
4045
4046 int
4047 kern_getdirentries(int fd, char *buf, u_int count, long *basep, int *res,
4048                    enum uio_seg direction)
4049 {
4050         struct thread *td = curthread;
4051         struct proc *p = td->td_proc;
4052         struct vnode *vp;
4053         struct file *fp;
4054         struct uio auio;
4055         struct iovec aiov;
4056         off_t loff;
4057         int error, eofflag;
4058
4059         if ((error = holdvnode(p->p_fd, fd, &fp)) != 0)
4060                 return (error);
4061         if ((fp->f_flag & FREAD) == 0) {
4062                 error = EBADF;
4063                 goto done;
4064         }
4065         vp = (struct vnode *)fp->f_data;
4066 unionread:
4067         if (vp->v_type != VDIR) {
4068                 error = EINVAL;
4069                 goto done;
4070         }
4071         aiov.iov_base = buf;
4072         aiov.iov_len = count;
4073         auio.uio_iov = &aiov;
4074         auio.uio_iovcnt = 1;
4075         auio.uio_rw = UIO_READ;
4076         auio.uio_segflg = direction;
4077         auio.uio_td = td;
4078         auio.uio_resid = count;
4079         loff = auio.uio_offset = fp->f_offset;
4080         error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, NULL, NULL);
4081         fp->f_offset = auio.uio_offset;
4082         if (error)
4083                 goto done;
4084         if (count == auio.uio_resid) {
4085                 if (union_dircheckp) {
4086                         error = union_dircheckp(td, &vp, fp);
4087                         if (error == -1)
4088                                 goto unionread;
4089                         if (error)
4090                                 goto done;
4091                 }
4092 #if 0
4093                 if ((vp->v_flag & VROOT) &&
4094                     (vp->v_mount->mnt_flag & MNT_UNION)) {
4095                         struct vnode *tvp = vp;
4096                         vp = vp->v_mount->mnt_vnodecovered;
4097                         vref(vp);
4098                         fp->f_data = vp;
4099                         fp->f_offset = 0;
4100                         vrele(tvp);
4101                         goto unionread;
4102                 }
4103 #endif
4104         }
4105
4106         /*
4107          * WARNING!  *basep may not be wide enough to accomodate the
4108          * seek offset.   XXX should we hack this to return the upper 32 bits
4109          * for offsets greater then 4G?
4110          */
4111         if (basep) {
4112                 *basep = (long)loff;
4113         }
4114         *res = count - auio.uio_resid;
4115 done:
4116         fdrop(fp);
4117         return (error);
4118 }
4119
4120 /*
4121  * getdirentries_args(int fd, char *buf, u_int conut, long *basep)
4122  *
4123  * Read a block of directory entries in a file system independent format.
4124  */
4125 int
4126 sys_getdirentries(struct getdirentries_args *uap)
4127 {
4128         long base;
4129         int error;
4130
4131         error = kern_getdirentries(uap->fd, uap->buf, uap->count, &base,
4132                                    &uap->sysmsg_result, UIO_USERSPACE);
4133
4134         if (error == 0 && uap->basep)
4135                 error = copyout(&base, uap->basep, sizeof(*uap->basep));
4136         return (error);
4137 }
4138
4139 /*
4140  * getdents_args(int fd, char *buf, size_t count)
4141  */
4142 int
4143 sys_getdents(struct getdents_args *uap)
4144 {
4145         int error;
4146
4147         error = kern_getdirentries(uap->fd, uap->buf, uap->count, NULL,
4148                                    &uap->sysmsg_result, UIO_USERSPACE);
4149
4150         return (error);
4151 }
4152
4153 /*
4154  * Set the mode mask for creation of filesystem nodes.
4155  *
4156  * umask(int newmask)
4157  */
4158 int
4159 sys_umask(struct umask_args *uap)
4160 {
4161         struct thread *td = curthread;
4162         struct proc *p = td->td_proc;
4163         struct filedesc *fdp;
4164
4165         fdp = p->p_fd;
4166         uap->sysmsg_result = fdp->fd_cmask;
4167         fdp->fd_cmask = uap->newmask & ALLPERMS;
4168         return (0);
4169 }
4170
4171 /*
4172  * revoke(char *path)
4173  *
4174  * Void all references to file by ripping underlying filesystem
4175  * away from vnode.
4176  */
4177 int
4178 sys_revoke(struct revoke_args *uap)
4179 {
4180         struct nlookupdata nd;
4181         struct vattr vattr;
4182         struct vnode *vp;
4183         struct ucred *cred;
4184         int error;
4185
4186         vp = NULL;
4187         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
4188         if (error == 0)
4189                 error = nlookup(&nd);
4190         if (error == 0)
4191                 error = cache_vref(&nd.nl_nch, nd.nl_cred, &vp);
4192         cred = crhold(nd.nl_cred);
4193         nlookup_done(&nd);
4194         if (error == 0) {
4195                 if (error == 0)
4196                         error = VOP_GETATTR(vp, &vattr);
4197                 if (error == 0 && cred->cr_uid != vattr.va_uid)
4198                         error = priv_check_cred(cred, PRIV_VFS_REVOKE, 0);
4199                 if (error == 0 && (vp->v_type == VCHR || vp->v_type == VBLK)) {
4200                         if (vcount(vp) > 0)
4201                                 error = vrevoke(vp, cred);
4202                 } else if (error == 0) {
4203                         error = vrevoke(vp, cred);
4204                 }
4205                 vrele(vp);
4206         }
4207         if (cred)
4208                 crfree(cred);
4209         return (error);
4210 }
4211
4212 /*
4213  * getfh_args(char *fname, fhandle_t *fhp)
4214  *
4215  * Get (NFS) file handle
4216  *
4217  * NOTE: We use the fsid of the covering mount, even if it is a nullfs
4218  * mount.  This allows nullfs mounts to be explicitly exported. 
4219  *
4220  * WARNING: nullfs mounts of HAMMER PFS ROOTs are safe.
4221  *
4222  *          nullfs mounts of subdirectories are not safe.  That is, it will
4223  *          work, but you do not really have protection against access to
4224  *          the related parent directories.
4225  */
4226 int
4227 sys_getfh(struct getfh_args *uap)
4228 {
4229         struct thread *td = curthread;
4230         struct nlookupdata nd;
4231         fhandle_t fh;
4232         struct vnode *vp;
4233         struct mount *mp;
4234         int error;
4235
4236         /*
4237          * Must be super user
4238          */
4239         if ((error = priv_check(td, PRIV_ROOT)) != 0)
4240                 return (error);
4241
4242         vp = NULL;
4243         error = nlookup_init(&nd, uap->fname, UIO_USERSPACE, NLC_FOLLOW);
4244         if (error == 0)
4245                 error = nlookup(&nd);
4246         if (error == 0)
4247                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
4248         mp = nd.nl_nch.mount;
4249         nlookup_done(&nd);
4250         if (error == 0) {
4251                 bzero(&fh, sizeof(fh));
4252                 fh.fh_fsid = mp->mnt_stat.f_fsid;
4253                 error = VFS_VPTOFH(vp, &fh.fh_fid);
4254                 vput(vp);
4255                 if (error == 0)
4256                         error = copyout(&fh, uap->fhp, sizeof(fh));
4257         }
4258         return (error);
4259 }
4260
4261 /*
4262  * fhopen_args(const struct fhandle *u_fhp, int flags)
4263  *
4264  * syscall for the rpc.lockd to use to translate a NFS file handle into
4265  * an open descriptor.
4266  *
4267  * warning: do not remove the priv_check() call or this becomes one giant
4268  * security hole.
4269  */
4270 int
4271 sys_fhopen(struct fhopen_args *uap)
4272 {
4273         struct thread *td = curthread;
4274         struct filedesc *fdp = td->td_proc->p_fd;
4275         struct mount *mp;
4276         struct vnode *vp;
4277         struct fhandle fhp;
4278         struct vattr vat;
4279         struct vattr *vap = &vat;
4280         struct flock lf;
4281         int fmode, mode, error = 0, type;
4282         struct file *nfp; 
4283         struct file *fp;
4284         int indx;
4285
4286         /*
4287          * Must be super user
4288          */
4289         error = priv_check(td, PRIV_ROOT);
4290         if (error)
4291                 return (error);
4292
4293         fmode = FFLAGS(uap->flags);
4294
4295         /*
4296          * Why not allow a non-read/write open for our lockd?
4297          */
4298         if (((fmode & (FREAD | FWRITE)) == 0) || (fmode & O_CREAT))
4299                 return (EINVAL);
4300         error = copyin(uap->u_fhp, &fhp, sizeof(fhp));
4301         if (error)
4302                 return(error);
4303
4304         /*
4305          * Find the mount point
4306          */
4307         mp = vfs_getvfs(&fhp.fh_fsid);
4308         if (mp == NULL) {
4309                 error = ESTALE;
4310                 goto  done;
4311         }
4312         /* now give me my vnode, it gets returned to me locked */
4313         error = VFS_FHTOVP(mp, NULL, &fhp.fh_fid, &vp);
4314         if (error)
4315                 goto done;
4316         /*
4317          * from now on we have to make sure not
4318          * to forget about the vnode
4319          * any error that causes an abort must vput(vp) 
4320          * just set error = err and 'goto bad;'.
4321          */
4322
4323         /* 
4324          * from vn_open 
4325          */
4326         if (vp->v_type == VLNK) {
4327                 error = EMLINK;
4328                 goto bad;
4329         }
4330         if (vp->v_type == VSOCK) {
4331                 error = EOPNOTSUPP;
4332                 goto bad;
4333         }
4334         mode = 0;
4335         if (fmode & (FWRITE | O_TRUNC)) {
4336                 if (vp->v_type == VDIR) {
4337                         error = EISDIR;
4338                         goto bad;
4339                 }
4340                 error = vn_writechk(vp, NULL);
4341                 if (error)
4342                         goto bad;
4343                 mode |= VWRITE;
4344         }
4345         if (fmode & FREAD)
4346                 mode |= VREAD;
4347         if (mode) {
4348                 error = VOP_ACCESS(vp, mode, td->td_ucred);
4349                 if (error)
4350                         goto bad;
4351         }
4352         if (fmode & O_TRUNC) {
4353                 vn_unlock(vp);                          /* XXX */
4354                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);   /* XXX */
4355                 VATTR_NULL(vap);
4356                 vap->va_size = 0;
4357                 error = VOP_SETATTR(vp, vap, td->td_ucred);
4358                 if (error)
4359                         goto bad;
4360         }
4361
4362         /*
4363          * VOP_OPEN needs the file pointer so it can potentially override
4364          * it.
4365          *
4366          * WARNING! no f_nchandle will be associated when fhopen()ing a
4367          * directory.  XXX
4368          */
4369         if ((error = falloc(td->td_lwp, &nfp, &indx)) != 0)
4370                 goto bad;
4371         fp = nfp;
4372
4373         error = VOP_OPEN(vp, fmode, td->td_ucred, fp);
4374         if (error) {
4375                 /*
4376                  * setting f_ops this way prevents VOP_CLOSE from being
4377                  * called or fdrop() releasing the vp from v_data.   Since
4378                  * the VOP_OPEN failed we don't want to VOP_CLOSE.
4379                  */
4380                 fp->f_ops = &badfileops;
4381                 fp->f_data = NULL;
4382                 goto bad_drop;
4383         }
4384
4385         /*
4386          * The fp is given its own reference, we still have our ref and lock.
4387          *
4388          * Assert that all regular files must be created with a VM object.
4389          */
4390         if (vp->v_type == VREG && vp->v_object == NULL) {
4391                 kprintf("fhopen: regular file did not have VM object: %p\n", vp);
4392                 goto bad_drop;
4393         }
4394
4395         /*
4396          * The open was successful.  Handle any locking requirements.
4397          */
4398         if (fmode & (O_EXLOCK | O_SHLOCK)) {
4399                 lf.l_whence = SEEK_SET;
4400                 lf.l_start = 0;
4401                 lf.l_len = 0;
4402                 if (fmode & O_EXLOCK)
4403                         lf.l_type = F_WRLCK;
4404                 else
4405                         lf.l_type = F_RDLCK;
4406                 if (fmode & FNONBLOCK)
4407                         type = 0;
4408                 else
4409                         type = F_WAIT;
4410                 vn_unlock(vp);
4411                 if ((error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, type)) != 0) {
4412                         /*
4413                          * release our private reference.
4414                          */
4415                         fsetfd(fdp, NULL, indx);
4416                         fdrop(fp);
4417                         vrele(vp);
4418                         goto done;
4419                 }
4420                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
4421                 fp->f_flag |= FHASLOCK;
4422         }
4423
4424         /*
4425          * Clean up.  Associate the file pointer with the previously
4426          * reserved descriptor and return it.
4427          */
4428         vput(vp);
4429         fsetfd(fdp, fp, indx);
4430         fdrop(fp);
4431         uap->sysmsg_result = indx;
4432         if (uap->flags & O_CLOEXEC)
4433                 error = fsetfdflags(fdp, indx, UF_EXCLOSE);
4434         return (error);
4435
4436 bad_drop:
4437         fsetfd(fdp, NULL, indx);
4438         fdrop(fp);
4439 bad:
4440         vput(vp);
4441 done:
4442         return (error);
4443 }
4444
4445 /*
4446  * fhstat_args(struct fhandle *u_fhp, struct stat *sb)
4447  */
4448 int
4449 sys_fhstat(struct fhstat_args *uap)
4450 {
4451         struct thread *td = curthread;
4452         struct stat sb;
4453         fhandle_t fh;
4454         struct mount *mp;
4455         struct vnode *vp;
4456         int error;
4457
4458         /*
4459          * Must be super user
4460          */
4461         error = priv_check(td, PRIV_ROOT);
4462         if (error)
4463                 return (error);
4464         
4465         error = copyin(uap->u_fhp, &fh, sizeof(fhandle_t));
4466         if (error)
4467                 return (error);
4468
4469         if ((mp = vfs_getvfs(&fh.fh_fsid)) == NULL)
4470                 error = ESTALE;
4471         if (error == 0) {
4472                 if ((error = VFS_FHTOVP(mp, NULL, &fh.fh_fid, &vp)) == 0) {
4473                         error = vn_stat(vp, &sb, td->td_ucred);
4474                         vput(vp);
4475                 }
4476         }
4477         if (error == 0)
4478                 error = copyout(&sb, uap->sb, sizeof(sb));
4479         return (error);
4480 }
4481
4482 /*
4483  * fhstatfs_args(struct fhandle *u_fhp, struct statfs *buf)
4484  */
4485 int
4486 sys_fhstatfs(struct fhstatfs_args *uap)
4487 {
4488         struct thread *td = curthread;
4489         struct proc *p = td->td_proc;
4490         struct statfs *sp;
4491         struct mount *mp;
4492         struct vnode *vp;
4493         struct statfs sb;
4494         char *fullpath, *freepath;
4495         fhandle_t fh;
4496         int error;
4497
4498         /*
4499          * Must be super user
4500          */
4501         if ((error = priv_check(td, PRIV_ROOT)))
4502                 return (error);
4503
4504         if ((error = copyin(uap->u_fhp, &fh, sizeof(fhandle_t))) != 0)
4505                 return (error);
4506
4507         if ((mp = vfs_getvfs(&fh.fh_fsid)) == NULL) {
4508                 error = ESTALE;
4509                 goto done;
4510         }
4511         if (p != NULL && !chroot_visible_mnt(mp, p)) {
4512                 error = ESTALE;
4513                 goto done;
4514         }
4515
4516         if ((error = VFS_FHTOVP(mp, NULL, &fh.fh_fid, &vp)) != 0)
4517                 goto done;
4518         mp = vp->v_mount;
4519         sp = &mp->mnt_stat;
4520         vput(vp);
4521         if ((error = VFS_STATFS(mp, sp, td->td_ucred)) != 0)
4522                 goto done;
4523
4524         error = mount_path(p, mp, &fullpath, &freepath);
4525         if (error)
4526                 goto done;
4527         bzero(sp->f_mntonname, sizeof(sp->f_mntonname));
4528         strlcpy(sp->f_mntonname, fullpath, sizeof(sp->f_mntonname));
4529         kfree(freepath, M_TEMP);
4530
4531         sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
4532         if (priv_check(td, PRIV_ROOT)) {
4533                 bcopy(sp, &sb, sizeof(sb));
4534                 sb.f_fsid.val[0] = sb.f_fsid.val[1] = 0;
4535                 sp = &sb;
4536         }
4537         error = copyout(sp, uap->buf, sizeof(*sp));
4538 done:
4539         return (error);
4540 }
4541
4542 /*
4543  * fhstatvfs_args(struct fhandle *u_fhp, struct statvfs *buf)
4544  */
4545 int
4546 sys_fhstatvfs(struct fhstatvfs_args *uap)
4547 {
4548         struct thread *td = curthread;
4549         struct proc *p = td->td_proc;
4550         struct statvfs *sp;
4551         struct mount *mp;
4552         struct vnode *vp;
4553         fhandle_t fh;
4554         int error;
4555
4556         /*
4557          * Must be super user
4558          */
4559         if ((error = priv_check(td, PRIV_ROOT)))
4560                 return (error);
4561
4562         if ((error = copyin(uap->u_fhp, &fh, sizeof(fhandle_t))) != 0)
4563                 return (error);
4564
4565         if ((mp = vfs_getvfs(&fh.fh_fsid)) == NULL) {
4566                 error = ESTALE;
4567                 goto done;
4568         }
4569         if (p != NULL && !chroot_visible_mnt(mp, p)) {
4570                 error = ESTALE;
4571                 goto done;
4572         }
4573
4574         if ((error = VFS_FHTOVP(mp, NULL, &fh.fh_fid, &vp)))
4575                 goto done;
4576         mp = vp->v_mount;
4577         sp = &mp->mnt_vstat;
4578         vput(vp);
4579         if ((error = VFS_STATVFS(mp, sp, td->td_ucred)) != 0)
4580                 goto done;
4581
4582         sp->f_flag = 0;
4583         if (mp->mnt_flag & MNT_RDONLY)
4584                 sp->f_flag |= ST_RDONLY;
4585         if (mp->mnt_flag & MNT_NOSUID)
4586                 sp->f_flag |= ST_NOSUID;
4587         error = copyout(sp, uap->buf, sizeof(*sp));
4588 done:
4589         return (error);
4590 }
4591
4592
4593 /*
4594  * Syscall to push extended attribute configuration information into the
4595  * VFS.  Accepts a path, which it converts to a mountpoint, as well as
4596  * a command (int cmd), and attribute name and misc data.  For now, the
4597  * attribute name is left in userspace for consumption by the VFS_op.
4598  * It will probably be changed to be copied into sysspace by the
4599  * syscall in the future, once issues with various consumers of the
4600  * attribute code have raised their hands.
4601  *
4602  * Currently this is used only by UFS Extended Attributes.
4603  */
4604 int
4605 sys_extattrctl(struct extattrctl_args *uap)
4606 {
4607         struct nlookupdata nd;
4608         struct vnode *vp;
4609         char attrname[EXTATTR_MAXNAMELEN];
4610         int error;
4611         size_t size;
4612
4613         attrname[0] = 0;
4614         vp = NULL;
4615         error = 0;
4616
4617         if (error == 0 && uap->filename) {
4618                 error = nlookup_init(&nd, uap->filename, UIO_USERSPACE,
4619                                      NLC_FOLLOW);
4620                 if (error == 0)
4621                         error = nlookup(&nd);
4622                 if (error == 0)
4623                         error = cache_vref(&nd.nl_nch, nd.nl_cred, &vp);
4624                 nlookup_done(&nd);
4625         }
4626
4627         if (error == 0 && uap->attrname) {
4628                 error = copyinstr(uap->attrname, attrname, EXTATTR_MAXNAMELEN,
4629                                   &size);
4630         }
4631
4632         if (error == 0) {
4633                 error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
4634                 if (error == 0)
4635                         error = nlookup(&nd);
4636                 if (error == 0)
4637                         error = ncp_writechk(&nd.nl_nch);
4638                 if (error == 0) {
4639                         error = VFS_EXTATTRCTL(nd.nl_nch.mount, uap->cmd, vp,
4640                                                uap->attrnamespace,
4641                                                uap->attrname, nd.nl_cred);
4642                 }
4643                 nlookup_done(&nd);
4644         }
4645
4646         return (error);
4647 }
4648
4649 /*
4650  * Syscall to get a named extended attribute on a file or directory.
4651  */
4652 int
4653 sys_extattr_set_file(struct extattr_set_file_args *uap)
4654 {
4655         char attrname[EXTATTR_MAXNAMELEN];
4656         struct nlookupdata nd;
4657         struct vnode *vp;
4658         struct uio auio;
4659         struct iovec aiov;
4660         int error;
4661
4662         error = copyin(uap->attrname, attrname, EXTATTR_MAXNAMELEN);
4663         if (error)
4664                 return (error);
4665
4666         vp = NULL;
4667
4668         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
4669         if (error == 0)
4670                 error = nlookup(&nd);
4671         if (error == 0)
4672                 error = ncp_writechk(&nd.nl_nch);
4673         if (error == 0)
4674                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
4675         if (error) {
4676                 nlookup_done(&nd);
4677                 return (error);
4678         }
4679
4680         bzero(&auio, sizeof(auio));
4681         aiov.iov_base = uap->data;
4682         aiov.iov_len = uap->nbytes;
4683         auio.uio_iov = &aiov;
4684         auio.uio_iovcnt = 1;
4685         auio.uio_offset = 0;
4686         auio.uio_resid = uap->nbytes;
4687         auio.uio_rw = UIO_WRITE;
4688         auio.uio_td = curthread;
4689
4690         error = VOP_SETEXTATTR(vp, uap->attrnamespace, attrname,
4691                                &auio, nd.nl_cred);
4692
4693         vput(vp);
4694         nlookup_done(&nd);
4695         return (error);
4696 }
4697
4698 /*
4699  * Syscall to get a named extended attribute on a file or directory.
4700  */
4701 int
4702 sys_extattr_get_file(struct extattr_get_file_args *uap)
4703 {
4704         char attrname[EXTATTR_MAXNAMELEN];
4705         struct nlookupdata nd;
4706         struct uio auio;
4707         struct iovec aiov;
4708         struct vnode *vp;
4709         int error;
4710
4711         error = copyin(uap->attrname, attrname, EXTATTR_MAXNAMELEN);
4712         if (error)
4713                 return (error);
4714
4715         vp = NULL;
4716
4717         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
4718         if (error == 0)
4719                 error = nlookup(&nd);
4720         if (error == 0)
4721                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_SHARED, &vp);
4722         if (error) {
4723                 nlookup_done(&nd);
4724                 return (error);
4725         }
4726
4727         bzero(&auio, sizeof(auio));
4728         aiov.iov_base = uap->data;
4729         aiov.iov_len = uap->nbytes;
4730         auio.uio_iov = &aiov;
4731         auio.uio_iovcnt = 1;
4732         auio.uio_offset = 0;
4733         auio.uio_resid = uap->nbytes;
4734         auio.uio_rw = UIO_READ;
4735         auio.uio_td = curthread;
4736
4737         error = VOP_GETEXTATTR(vp, uap->attrnamespace, attrname,
4738                                 &auio, nd.nl_cred);
4739         uap->sysmsg_result = uap->nbytes - auio.uio_resid;
4740
4741         vput(vp);
4742         nlookup_done(&nd);
4743         return(error);
4744 }
4745
4746 /*
4747  * Syscall to delete a named extended attribute from a file or directory.
4748  * Accepts attribute name.  The real work happens in VOP_SETEXTATTR().
4749  */
4750 int
4751 sys_extattr_delete_file(struct extattr_delete_file_args *uap)
4752 {
4753         char attrname[EXTATTR_MAXNAMELEN];
4754         struct nlookupdata nd;
4755         struct vnode *vp;
4756         int error;
4757
4758         error = copyin(uap->attrname, attrname, EXTATTR_MAXNAMELEN);
4759         if (error)
4760                 return(error);
4761
4762         error = nlookup_init(&nd, uap->path, UIO_USERSPACE, NLC_FOLLOW);
4763         if (error == 0)
4764                 error = nlookup(&nd);
4765         if (error == 0)
4766                 error = ncp_writechk(&nd.nl_nch);
4767         if (error == 0) {
4768                 error = cache_vget(&nd.nl_nch, nd.nl_cred, LK_EXCLUSIVE, &vp);
4769                 if (error == 0) {
4770                         error = VOP_SETEXTATTR(vp, uap->attrnamespace,
4771                                                attrname, NULL, nd.nl_cred);
4772                         vput(vp);
4773                 }
4774         }
4775         nlookup_done(&nd);
4776         return(error);
4777 }
4778
4779 /*
4780  * Determine if the mount is visible to the process.
4781  */
4782 static int
4783 chroot_visible_mnt(struct mount *mp, struct proc *p)
4784 {
4785         struct nchandle nch;
4786
4787         /*
4788          * Traverse from the mount point upwards.  If we hit the process
4789          * root then the mount point is visible to the process.
4790          */
4791         nch = mp->mnt_ncmountpt;
4792         while (nch.ncp) {
4793                 if (nch.mount == p->p_fd->fd_nrdir.mount &&
4794                     nch.ncp == p->p_fd->fd_nrdir.ncp) {
4795                         return(1);
4796                 }
4797                 if (nch.ncp == nch.mount->mnt_ncmountpt.ncp) {
4798                         nch = nch.mount->mnt_ncmounton;
4799                 } else {
4800                         nch.ncp = nch.ncp->nc_parent;
4801                 }
4802         }
4803
4804         /*
4805          * If the mount point is not visible to the process, but the
4806          * process root is in a subdirectory of the mount, return
4807          * TRUE anyway.
4808          */
4809         if (p->p_fd->fd_nrdir.mount == mp)
4810                 return(1);
4811
4812         return(0);
4813 }
4814