]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / zfs_vnops.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2013 by Delphix. All rights reserved.
24  */
25
26 /* Portions Copyright 2007 Jeremy Teo */
27 /* Portions Copyright 2010 Robert Milkowski */
28
29 #include <sys/types.h>
30 #include <sys/param.h>
31 #include <sys/time.h>
32 #include <sys/systm.h>
33 #include <sys/sysmacros.h>
34 #include <sys/resource.h>
35 #include <sys/vfs.h>
36 #include <sys/vnode.h>
37 #include <sys/file.h>
38 #include <sys/stat.h>
39 #include <sys/kmem.h>
40 #include <sys/taskq.h>
41 #include <sys/uio.h>
42 #include <sys/atomic.h>
43 #include <sys/namei.h>
44 #include <sys/mman.h>
45 #include <sys/cmn_err.h>
46 #include <sys/errno.h>
47 #include <sys/unistd.h>
48 #include <sys/zfs_dir.h>
49 #include <sys/zfs_ioctl.h>
50 #include <sys/fs/zfs.h>
51 #include <sys/dmu.h>
52 #include <sys/dmu_objset.h>
53 #include <sys/spa.h>
54 #include <sys/txg.h>
55 #include <sys/dbuf.h>
56 #include <sys/zap.h>
57 #include <sys/sa.h>
58 #include <sys/dirent.h>
59 #include <sys/policy.h>
60 #include <sys/sunddi.h>
61 #include <sys/filio.h>
62 #include <sys/sid.h>
63 #include <sys/zfs_ctldir.h>
64 #include <sys/zfs_fuid.h>
65 #include <sys/zfs_sa.h>
66 #include <sys/dnlc.h>
67 #include <sys/zfs_rlock.h>
68 #include <sys/extdirent.h>
69 #include <sys/kidmap.h>
70 #include <sys/bio.h>
71 #include <sys/buf.h>
72 #include <sys/sf_buf.h>
73 #include <sys/sched.h>
74 #include <sys/acl.h>
75 #include <vm/vm_pageout.h>
76
77 /*
78  * Programming rules.
79  *
80  * Each vnode op performs some logical unit of work.  To do this, the ZPL must
81  * properly lock its in-core state, create a DMU transaction, do the work,
82  * record this work in the intent log (ZIL), commit the DMU transaction,
83  * and wait for the intent log to commit if it is a synchronous operation.
84  * Moreover, the vnode ops must work in both normal and log replay context.
85  * The ordering of events is important to avoid deadlocks and references
86  * to freed memory.  The example below illustrates the following Big Rules:
87  *
88  *  (1) A check must be made in each zfs thread for a mounted file system.
89  *      This is done avoiding races using ZFS_ENTER(zfsvfs).
90  *      A ZFS_EXIT(zfsvfs) is needed before all returns.  Any znodes
91  *      must be checked with ZFS_VERIFY_ZP(zp).  Both of these macros
92  *      can return EIO from the calling function.
93  *
94  *  (2) VN_RELE() should always be the last thing except for zil_commit()
95  *      (if necessary) and ZFS_EXIT(). This is for 3 reasons:
96  *      First, if it's the last reference, the vnode/znode
97  *      can be freed, so the zp may point to freed memory.  Second, the last
98  *      reference will call zfs_zinactive(), which may induce a lot of work --
99  *      pushing cached pages (which acquires range locks) and syncing out
100  *      cached atime changes.  Third, zfs_zinactive() may require a new tx,
101  *      which could deadlock the system if you were already holding one.
102  *      If you must call VN_RELE() within a tx then use VN_RELE_ASYNC().
103  *
104  *  (3) All range locks must be grabbed before calling dmu_tx_assign(),
105  *      as they can span dmu_tx_assign() calls.
106  *
107  *  (4) Always pass TXG_NOWAIT as the second argument to dmu_tx_assign().
108  *      This is critical because we don't want to block while holding locks.
109  *      Note, in particular, that if a lock is sometimes acquired before
110  *      the tx assigns, and sometimes after (e.g. z_lock), then failing to
111  *      use a non-blocking assign can deadlock the system.  The scenario:
112  *
113  *      Thread A has grabbed a lock before calling dmu_tx_assign().
114  *      Thread B is in an already-assigned tx, and blocks for this lock.
115  *      Thread A calls dmu_tx_assign(TXG_WAIT) and blocks in txg_wait_open()
116  *      forever, because the previous txg can't quiesce until B's tx commits.
117  *
118  *      If dmu_tx_assign() returns ERESTART and zfsvfs->z_assign is TXG_NOWAIT,
119  *      then drop all locks, call dmu_tx_wait(), and try again.
120  *
121  *  (5) If the operation succeeded, generate the intent log entry for it
122  *      before dropping locks.  This ensures that the ordering of events
123  *      in the intent log matches the order in which they actually occurred.
124  *      During ZIL replay the zfs_log_* functions will update the sequence
125  *      number to indicate the zil transaction has replayed.
126  *
127  *  (6) At the end of each vnode op, the DMU tx must always commit,
128  *      regardless of whether there were any errors.
129  *
130  *  (7) After dropping all locks, invoke zil_commit(zilog, foid)
131  *      to ensure that synchronous semantics are provided when necessary.
132  *
133  * In general, this is how things should be ordered in each vnode op:
134  *
135  *      ZFS_ENTER(zfsvfs);              // exit if unmounted
136  * top:
137  *      zfs_dirent_lock(&dl, ...)       // lock directory entry (may VN_HOLD())
138  *      rw_enter(...);                  // grab any other locks you need
139  *      tx = dmu_tx_create(...);        // get DMU tx
140  *      dmu_tx_hold_*();                // hold each object you might modify
141  *      error = dmu_tx_assign(tx, TXG_NOWAIT);  // try to assign
142  *      if (error) {
143  *              rw_exit(...);           // drop locks
144  *              zfs_dirent_unlock(dl);  // unlock directory entry
145  *              VN_RELE(...);           // release held vnodes
146  *              if (error == ERESTART) {
147  *                      dmu_tx_wait(tx);
148  *                      dmu_tx_abort(tx);
149  *                      goto top;
150  *              }
151  *              dmu_tx_abort(tx);       // abort DMU tx
152  *              ZFS_EXIT(zfsvfs);       // finished in zfs
153  *              return (error);         // really out of space
154  *      }
155  *      error = do_real_work();         // do whatever this VOP does
156  *      if (error == 0)
157  *              zfs_log_*(...);         // on success, make ZIL entry
158  *      dmu_tx_commit(tx);              // commit DMU tx -- error or not
159  *      rw_exit(...);                   // drop locks
160  *      zfs_dirent_unlock(dl);          // unlock directory entry
161  *      VN_RELE(...);                   // release held vnodes
162  *      zil_commit(zilog, foid);        // synchronous when necessary
163  *      ZFS_EXIT(zfsvfs);               // finished in zfs
164  *      return (error);                 // done, report error
165  */
166
167 /* ARGSUSED */
168 static int
169 zfs_open(vnode_t **vpp, int flag, cred_t *cr, caller_context_t *ct)
170 {
171         znode_t *zp = VTOZ(*vpp);
172         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
173
174         ZFS_ENTER(zfsvfs);
175         ZFS_VERIFY_ZP(zp);
176
177         if ((flag & FWRITE) && (zp->z_pflags & ZFS_APPENDONLY) &&
178             ((flag & FAPPEND) == 0)) {
179                 ZFS_EXIT(zfsvfs);
180                 return (SET_ERROR(EPERM));
181         }
182
183         if (!zfs_has_ctldir(zp) && zp->z_zfsvfs->z_vscan &&
184             ZTOV(zp)->v_type == VREG &&
185             !(zp->z_pflags & ZFS_AV_QUARANTINED) && zp->z_size > 0) {
186                 if (fs_vscan(*vpp, cr, 0) != 0) {
187                         ZFS_EXIT(zfsvfs);
188                         return (SET_ERROR(EACCES));
189                 }
190         }
191
192         /* Keep a count of the synchronous opens in the znode */
193         if (flag & (FSYNC | FDSYNC))
194                 atomic_inc_32(&zp->z_sync_cnt);
195
196         ZFS_EXIT(zfsvfs);
197         return (0);
198 }
199
200 /* ARGSUSED */
201 static int
202 zfs_close(vnode_t *vp, int flag, int count, offset_t offset, cred_t *cr,
203     caller_context_t *ct)
204 {
205         znode_t *zp = VTOZ(vp);
206         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
207
208         /*
209          * Clean up any locks held by this process on the vp.
210          */
211         cleanlocks(vp, ddi_get_pid(), 0);
212         cleanshares(vp, ddi_get_pid());
213
214         ZFS_ENTER(zfsvfs);
215         ZFS_VERIFY_ZP(zp);
216
217         /* Decrement the synchronous opens in the znode */
218         if ((flag & (FSYNC | FDSYNC)) && (count == 1))
219                 atomic_dec_32(&zp->z_sync_cnt);
220
221         if (!zfs_has_ctldir(zp) && zp->z_zfsvfs->z_vscan &&
222             ZTOV(zp)->v_type == VREG &&
223             !(zp->z_pflags & ZFS_AV_QUARANTINED) && zp->z_size > 0)
224                 VERIFY(fs_vscan(vp, cr, 1) == 0);
225
226         ZFS_EXIT(zfsvfs);
227         return (0);
228 }
229
230 /*
231  * Lseek support for finding holes (cmd == _FIO_SEEK_HOLE) and
232  * data (cmd == _FIO_SEEK_DATA). "off" is an in/out parameter.
233  */
234 static int
235 zfs_holey(vnode_t *vp, u_long cmd, offset_t *off)
236 {
237         znode_t *zp = VTOZ(vp);
238         uint64_t noff = (uint64_t)*off; /* new offset */
239         uint64_t file_sz;
240         int error;
241         boolean_t hole;
242
243         file_sz = zp->z_size;
244         if (noff >= file_sz)  {
245                 return (SET_ERROR(ENXIO));
246         }
247
248         if (cmd == _FIO_SEEK_HOLE)
249                 hole = B_TRUE;
250         else
251                 hole = B_FALSE;
252
253         error = dmu_offset_next(zp->z_zfsvfs->z_os, zp->z_id, hole, &noff);
254
255         /* end of file? */
256         if ((error == ESRCH) || (noff > file_sz)) {
257                 /*
258                  * Handle the virtual hole at the end of file.
259                  */
260                 if (hole) {
261                         *off = file_sz;
262                         return (0);
263                 }
264                 return (SET_ERROR(ENXIO));
265         }
266
267         if (noff < *off)
268                 return (error);
269         *off = noff;
270         return (error);
271 }
272
273 /* ARGSUSED */
274 static int
275 zfs_ioctl(vnode_t *vp, u_long com, intptr_t data, int flag, cred_t *cred,
276     int *rvalp, caller_context_t *ct)
277 {
278         offset_t off;
279         int error;
280         zfsvfs_t *zfsvfs;
281         znode_t *zp;
282
283         switch (com) {
284         case _FIOFFS:
285                 return (0);
286
287                 /*
288                  * The following two ioctls are used by bfu.  Faking out,
289                  * necessary to avoid bfu errors.
290                  */
291         case _FIOGDIO:
292         case _FIOSDIO:
293                 return (0);
294
295         case _FIO_SEEK_DATA:
296         case _FIO_SEEK_HOLE:
297 #ifdef sun
298                 if (ddi_copyin((void *)data, &off, sizeof (off), flag))
299                         return (SET_ERROR(EFAULT));
300 #else
301                 off = *(offset_t *)data;
302 #endif
303                 zp = VTOZ(vp);
304                 zfsvfs = zp->z_zfsvfs;
305                 ZFS_ENTER(zfsvfs);
306                 ZFS_VERIFY_ZP(zp);
307
308                 /* offset parameter is in/out */
309                 error = zfs_holey(vp, com, &off);
310                 ZFS_EXIT(zfsvfs);
311                 if (error)
312                         return (error);
313 #ifdef sun
314                 if (ddi_copyout(&off, (void *)data, sizeof (off), flag))
315                         return (SET_ERROR(EFAULT));
316 #else
317                 *(offset_t *)data = off;
318 #endif
319                 return (0);
320         }
321         return (SET_ERROR(ENOTTY));
322 }
323
324 static vm_page_t
325 page_busy(vnode_t *vp, int64_t start, int64_t off, int64_t nbytes)
326 {
327         vm_object_t obj;
328         vm_page_t pp;
329
330         obj = vp->v_object;
331         VM_OBJECT_LOCK_ASSERT(obj, MA_OWNED);
332
333         for (;;) {
334                 if ((pp = vm_page_lookup(obj, OFF_TO_IDX(start))) != NULL &&
335                     pp->valid) {
336                         if ((pp->oflags & VPO_BUSY) != 0) {
337                                 /*
338                                  * Reference the page before unlocking and
339                                  * sleeping so that the page daemon is less
340                                  * likely to reclaim it.
341                                  */
342                                 vm_page_reference(pp);
343                                 vm_page_sleep(pp, "zfsmwb");
344                                 continue;
345                         }
346                 } else if (pp == NULL) {
347                         pp = vm_page_alloc(obj, OFF_TO_IDX(start),
348                             VM_ALLOC_SYSTEM | VM_ALLOC_IFCACHED |
349                             VM_ALLOC_NOBUSY);
350                 } else {
351                         ASSERT(pp != NULL && !pp->valid);
352                         pp = NULL;
353                 }
354
355                 if (pp != NULL) {
356                         ASSERT3U(pp->valid, ==, VM_PAGE_BITS_ALL);
357                         vm_object_pip_add(obj, 1);
358                         vm_page_io_start(pp);
359                         pmap_remove_write(pp);
360                         vm_page_clear_dirty(pp, off, nbytes);
361                 }
362                 break;
363         }
364         return (pp);
365 }
366
367 static void
368 page_unbusy(vm_page_t pp)
369 {
370
371         vm_page_io_finish(pp);
372         vm_object_pip_subtract(pp->object, 1);
373 }
374
375 static vm_page_t
376 page_hold(vnode_t *vp, int64_t start)
377 {
378         vm_object_t obj;
379         vm_page_t pp;
380
381         obj = vp->v_object;
382         VM_OBJECT_LOCK_ASSERT(obj, MA_OWNED);
383
384         for (;;) {
385                 if ((pp = vm_page_lookup(obj, OFF_TO_IDX(start))) != NULL &&
386                     pp->valid) {
387                         if ((pp->oflags & VPO_BUSY) != 0) {
388                                 /*
389                                  * Reference the page before unlocking and
390                                  * sleeping so that the page daemon is less
391                                  * likely to reclaim it.
392                                  */
393                                 vm_page_reference(pp);
394                                 vm_page_sleep(pp, "zfsmwb");
395                                 continue;
396                         }
397
398                         ASSERT3U(pp->valid, ==, VM_PAGE_BITS_ALL);
399                         vm_page_lock(pp);
400                         vm_page_hold(pp);
401                         vm_page_unlock(pp);
402
403                 } else
404                         pp = NULL;
405                 break;
406         }
407         return (pp);
408 }
409
410 static void
411 page_unhold(vm_page_t pp)
412 {
413
414         vm_page_lock(pp);
415         vm_page_unhold(pp);
416         vm_page_unlock(pp);
417 }
418
419 static caddr_t
420 zfs_map_page(vm_page_t pp, struct sf_buf **sfp)
421 {
422
423         *sfp = sf_buf_alloc(pp, 0);
424         return ((caddr_t)sf_buf_kva(*sfp));
425 }
426
427 static void
428 zfs_unmap_page(struct sf_buf *sf)
429 {
430
431         sf_buf_free(sf);
432 }
433
434 /*
435  * When a file is memory mapped, we must keep the IO data synchronized
436  * between the DMU cache and the memory mapped pages.  What this means:
437  *
438  * On Write:    If we find a memory mapped page, we write to *both*
439  *              the page and the dmu buffer.
440  */
441 static void
442 update_pages(vnode_t *vp, int64_t start, int len, objset_t *os, uint64_t oid,
443     int segflg, dmu_tx_t *tx)
444 {
445         vm_object_t obj;
446         struct sf_buf *sf;
447         caddr_t va;
448         int off;
449
450         ASSERT(vp->v_mount != NULL);
451         obj = vp->v_object;
452         ASSERT(obj != NULL);
453
454         off = start & PAGEOFFSET;
455         VM_OBJECT_LOCK(obj);
456         for (start &= PAGEMASK; len > 0; start += PAGESIZE) {
457                 vm_page_t pp;
458                 int nbytes = imin(PAGESIZE - off, len);
459
460                 if (segflg == UIO_NOCOPY) {
461                         pp = vm_page_lookup(obj, OFF_TO_IDX(start));
462                         KASSERT(pp != NULL,
463                             ("zfs update_pages: NULL page in putpages case"));
464                         KASSERT(off == 0,
465                             ("zfs update_pages: unaligned data in putpages case"));
466                         KASSERT(pp->valid == VM_PAGE_BITS_ALL,
467                             ("zfs update_pages: invalid page in putpages case"));
468                         KASSERT(pp->busy > 0,
469                             ("zfs update_pages: unbusy page in putpages case"));
470                         KASSERT(!pmap_page_is_write_mapped(pp),
471                             ("zfs update_pages: writable page in putpages case"));
472                         VM_OBJECT_UNLOCK(obj);
473
474                         va = zfs_map_page(pp, &sf);
475                         (void) dmu_write(os, oid, start, nbytes, va, tx);
476                         zfs_unmap_page(sf);
477
478                         VM_OBJECT_LOCK(obj);
479                         vm_page_undirty(pp);
480                 } else if ((pp = page_busy(vp, start, off, nbytes)) != NULL) {
481                         VM_OBJECT_UNLOCK(obj);
482
483                         va = zfs_map_page(pp, &sf);
484                         (void) dmu_read(os, oid, start+off, nbytes,
485                             va+off, DMU_READ_PREFETCH);;
486                         zfs_unmap_page(sf);
487
488                         VM_OBJECT_LOCK(obj);
489                         page_unbusy(pp);
490                 }
491                 len -= nbytes;
492                 off = 0;
493         }
494         if (segflg != UIO_NOCOPY)
495                 vm_object_pip_wakeupn(obj, 0);
496         VM_OBJECT_UNLOCK(obj);
497 }
498
499 /*
500  * Read with UIO_NOCOPY flag means that sendfile(2) requests
501  * ZFS to populate a range of page cache pages with data.
502  *
503  * NOTE: this function could be optimized to pre-allocate
504  * all pages in advance, drain VPO_BUSY on all of them,
505  * map them into contiguous KVA region and populate them
506  * in one single dmu_read() call.
507  */
508 static int
509 mappedread_sf(vnode_t *vp, int nbytes, uio_t *uio)
510 {
511         znode_t *zp = VTOZ(vp);
512         objset_t *os = zp->z_zfsvfs->z_os;
513         struct sf_buf *sf;
514         vm_object_t obj;
515         vm_page_t pp;
516         int64_t start;
517         caddr_t va;
518         int len = nbytes;
519         int off;
520         int error = 0;
521
522         ASSERT(uio->uio_segflg == UIO_NOCOPY);
523         ASSERT(vp->v_mount != NULL);
524         obj = vp->v_object;
525         ASSERT(obj != NULL);
526         ASSERT((uio->uio_loffset & PAGEOFFSET) == 0);
527
528         VM_OBJECT_LOCK(obj);
529         for (start = uio->uio_loffset; len > 0; start += PAGESIZE) {
530                 int bytes = MIN(PAGESIZE, len);
531
532                 pp = vm_page_grab(obj, OFF_TO_IDX(start), VM_ALLOC_NOBUSY |
533                     VM_ALLOC_NORMAL | VM_ALLOC_RETRY | VM_ALLOC_IGN_SBUSY);
534                 if (pp->valid == 0) {
535                         vm_page_io_start(pp);
536                         VM_OBJECT_UNLOCK(obj);
537                         va = zfs_map_page(pp, &sf);
538                         error = dmu_read(os, zp->z_id, start, bytes, va,
539                             DMU_READ_PREFETCH);
540                         if (bytes != PAGESIZE && error == 0)
541                                 bzero(va + bytes, PAGESIZE - bytes);
542                         zfs_unmap_page(sf);
543                         VM_OBJECT_LOCK(obj);
544                         vm_page_io_finish(pp);
545                         vm_page_lock(pp);
546                         if (error) {
547                                 vm_page_free(pp);
548                         } else {
549                                 pp->valid = VM_PAGE_BITS_ALL;
550                                 vm_page_activate(pp);
551                         }
552                         vm_page_unlock(pp);
553                 }
554                 if (error)
555                         break;
556                 uio->uio_resid -= bytes;
557                 uio->uio_offset += bytes;
558                 len -= bytes;
559         }
560         VM_OBJECT_UNLOCK(obj);
561         return (error);
562 }
563
564 /*
565  * When a file is memory mapped, we must keep the IO data synchronized
566  * between the DMU cache and the memory mapped pages.  What this means:
567  *
568  * On Read:     We "read" preferentially from memory mapped pages,
569  *              else we default from the dmu buffer.
570  *
571  * NOTE: We will always "break up" the IO into PAGESIZE uiomoves when
572  *       the file is memory mapped.
573  */
574 static int
575 mappedread(vnode_t *vp, int nbytes, uio_t *uio)
576 {
577         znode_t *zp = VTOZ(vp);
578         objset_t *os = zp->z_zfsvfs->z_os;
579         vm_object_t obj;
580         int64_t start;
581         caddr_t va;
582         int len = nbytes;
583         int off;
584         int error = 0;
585
586         ASSERT(vp->v_mount != NULL);
587         obj = vp->v_object;
588         ASSERT(obj != NULL);
589
590         start = uio->uio_loffset;
591         off = start & PAGEOFFSET;
592         VM_OBJECT_LOCK(obj);
593         for (start &= PAGEMASK; len > 0; start += PAGESIZE) {
594                 vm_page_t pp;
595                 uint64_t bytes = MIN(PAGESIZE - off, len);
596
597                 if (pp = page_hold(vp, start)) {
598                         struct sf_buf *sf;
599                         caddr_t va;
600
601                         VM_OBJECT_UNLOCK(obj);
602                         va = zfs_map_page(pp, &sf);
603                         error = uiomove(va + off, bytes, UIO_READ, uio);
604                         zfs_unmap_page(sf);
605                         VM_OBJECT_LOCK(obj);
606                         page_unhold(pp);
607                 } else {
608                         VM_OBJECT_UNLOCK(obj);
609                         error = dmu_read_uio(os, zp->z_id, uio, bytes);
610                         VM_OBJECT_LOCK(obj);
611                 }
612                 len -= bytes;
613                 off = 0;
614                 if (error)
615                         break;
616         }
617         VM_OBJECT_UNLOCK(obj);
618         return (error);
619 }
620
621 offset_t zfs_read_chunk_size = 1024 * 1024; /* Tunable */
622
623 /*
624  * Read bytes from specified file into supplied buffer.
625  *
626  *      IN:     vp      - vnode of file to be read from.
627  *              uio     - structure supplying read location, range info,
628  *                        and return buffer.
629  *              ioflag  - SYNC flags; used to provide FRSYNC semantics.
630  *              cr      - credentials of caller.
631  *              ct      - caller context
632  *
633  *      OUT:    uio     - updated offset and range, buffer filled.
634  *
635  *      RETURN: 0 on success, error code on failure.
636  *
637  * Side Effects:
638  *      vp - atime updated if byte count > 0
639  */
640 /* ARGSUSED */
641 static int
642 zfs_read(vnode_t *vp, uio_t *uio, int ioflag, cred_t *cr, caller_context_t *ct)
643 {
644         znode_t         *zp = VTOZ(vp);
645         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
646         objset_t        *os;
647         ssize_t         n, nbytes;
648         int             error = 0;
649         rl_t            *rl;
650         xuio_t          *xuio = NULL;
651
652         ZFS_ENTER(zfsvfs);
653         ZFS_VERIFY_ZP(zp);
654         os = zfsvfs->z_os;
655
656         if (zp->z_pflags & ZFS_AV_QUARANTINED) {
657                 ZFS_EXIT(zfsvfs);
658                 return (SET_ERROR(EACCES));
659         }
660
661         /*
662          * Validate file offset
663          */
664         if (uio->uio_loffset < (offset_t)0) {
665                 ZFS_EXIT(zfsvfs);
666                 return (SET_ERROR(EINVAL));
667         }
668
669         /*
670          * Fasttrack empty reads
671          */
672         if (uio->uio_resid == 0) {
673                 ZFS_EXIT(zfsvfs);
674                 return (0);
675         }
676
677         /*
678          * Check for mandatory locks
679          */
680         if (MANDMODE(zp->z_mode)) {
681                 if (error = chklock(vp, FREAD,
682                     uio->uio_loffset, uio->uio_resid, uio->uio_fmode, ct)) {
683                         ZFS_EXIT(zfsvfs);
684                         return (error);
685                 }
686         }
687
688         /*
689          * If we're in FRSYNC mode, sync out this znode before reading it.
690          */
691         if (zfsvfs->z_log &&
692             (ioflag & FRSYNC || zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS))
693                 zil_commit(zfsvfs->z_log, zp->z_id);
694
695         /*
696          * Lock the range against changes.
697          */
698         rl = zfs_range_lock(zp, uio->uio_loffset, uio->uio_resid, RL_READER);
699
700         /*
701          * If we are reading past end-of-file we can skip
702          * to the end; but we might still need to set atime.
703          */
704         if (uio->uio_loffset >= zp->z_size) {
705                 error = 0;
706                 goto out;
707         }
708
709         ASSERT(uio->uio_loffset < zp->z_size);
710         n = MIN(uio->uio_resid, zp->z_size - uio->uio_loffset);
711
712 #ifdef sun
713         if ((uio->uio_extflg == UIO_XUIO) &&
714             (((xuio_t *)uio)->xu_type == UIOTYPE_ZEROCOPY)) {
715                 int nblk;
716                 int blksz = zp->z_blksz;
717                 uint64_t offset = uio->uio_loffset;
718
719                 xuio = (xuio_t *)uio;
720                 if ((ISP2(blksz))) {
721                         nblk = (P2ROUNDUP(offset + n, blksz) - P2ALIGN(offset,
722                             blksz)) / blksz;
723                 } else {
724                         ASSERT(offset + n <= blksz);
725                         nblk = 1;
726                 }
727                 (void) dmu_xuio_init(xuio, nblk);
728
729                 if (vn_has_cached_data(vp)) {
730                         /*
731                          * For simplicity, we always allocate a full buffer
732                          * even if we only expect to read a portion of a block.
733                          */
734                         while (--nblk >= 0) {
735                                 (void) dmu_xuio_add(xuio,
736                                     dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
737                                     blksz), 0, blksz);
738                         }
739                 }
740         }
741 #endif  /* sun */
742
743         while (n > 0) {
744                 nbytes = MIN(n, zfs_read_chunk_size -
745                     P2PHASE(uio->uio_loffset, zfs_read_chunk_size));
746
747 #ifdef __FreeBSD__
748                 if (uio->uio_segflg == UIO_NOCOPY)
749                         error = mappedread_sf(vp, nbytes, uio);
750                 else
751 #endif /* __FreeBSD__ */
752                 if (vn_has_cached_data(vp))
753                         error = mappedread(vp, nbytes, uio);
754                 else
755                         error = dmu_read_uio(os, zp->z_id, uio, nbytes);
756                 if (error) {
757                         /* convert checksum errors into IO errors */
758                         if (error == ECKSUM)
759                                 error = SET_ERROR(EIO);
760                         break;
761                 }
762
763                 n -= nbytes;
764         }
765 out:
766         zfs_range_unlock(rl);
767
768         ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
769         ZFS_EXIT(zfsvfs);
770         return (error);
771 }
772
773 /*
774  * Write the bytes to a file.
775  *
776  *      IN:     vp      - vnode of file to be written to.
777  *              uio     - structure supplying write location, range info,
778  *                        and data buffer.
779  *              ioflag  - FAPPEND, FSYNC, and/or FDSYNC.  FAPPEND is
780  *                        set if in append mode.
781  *              cr      - credentials of caller.
782  *              ct      - caller context (NFS/CIFS fem monitor only)
783  *
784  *      OUT:    uio     - updated offset and range.
785  *
786  *      RETURN: 0 on success, error code on failure.
787  *
788  * Timestamps:
789  *      vp - ctime|mtime updated if byte count > 0
790  */
791
792 /* ARGSUSED */
793 static int
794 zfs_write(vnode_t *vp, uio_t *uio, int ioflag, cred_t *cr, caller_context_t *ct)
795 {
796         znode_t         *zp = VTOZ(vp);
797         rlim64_t        limit = MAXOFFSET_T;
798         ssize_t         start_resid = uio->uio_resid;
799         ssize_t         tx_bytes;
800         uint64_t        end_size;
801         dmu_tx_t        *tx;
802         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
803         zilog_t         *zilog;
804         offset_t        woff;
805         ssize_t         n, nbytes;
806         rl_t            *rl;
807         int             max_blksz = zfsvfs->z_max_blksz;
808         int             error = 0;
809         arc_buf_t       *abuf;
810         iovec_t         *aiov = NULL;
811         xuio_t          *xuio = NULL;
812         int             i_iov = 0;
813         int             iovcnt = uio->uio_iovcnt;
814         iovec_t         *iovp = uio->uio_iov;
815         int             write_eof;
816         int             count = 0;
817         sa_bulk_attr_t  bulk[4];
818         uint64_t        mtime[2], ctime[2];
819
820         /*
821          * Fasttrack empty write
822          */
823         n = start_resid;
824         if (n == 0)
825                 return (0);
826
827         if (limit == RLIM64_INFINITY || limit > MAXOFFSET_T)
828                 limit = MAXOFFSET_T;
829
830         ZFS_ENTER(zfsvfs);
831         ZFS_VERIFY_ZP(zp);
832
833         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
834         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL, &ctime, 16);
835         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zfsvfs), NULL,
836             &zp->z_size, 8);
837         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
838             &zp->z_pflags, 8);
839
840         /*
841          * If immutable or not appending then return EPERM
842          */
843         if ((zp->z_pflags & (ZFS_IMMUTABLE | ZFS_READONLY)) ||
844             ((zp->z_pflags & ZFS_APPENDONLY) && !(ioflag & FAPPEND) &&
845             (uio->uio_loffset < zp->z_size))) {
846                 ZFS_EXIT(zfsvfs);
847                 return (SET_ERROR(EPERM));
848         }
849
850         zilog = zfsvfs->z_log;
851
852         /*
853          * Validate file offset
854          */
855         woff = ioflag & FAPPEND ? zp->z_size : uio->uio_loffset;
856         if (woff < 0) {
857                 ZFS_EXIT(zfsvfs);
858                 return (SET_ERROR(EINVAL));
859         }
860
861         /*
862          * Check for mandatory locks before calling zfs_range_lock()
863          * in order to prevent a deadlock with locks set via fcntl().
864          */
865         if (MANDMODE((mode_t)zp->z_mode) &&
866             (error = chklock(vp, FWRITE, woff, n, uio->uio_fmode, ct)) != 0) {
867                 ZFS_EXIT(zfsvfs);
868                 return (error);
869         }
870
871 #ifdef sun
872         /*
873          * Pre-fault the pages to ensure slow (eg NFS) pages
874          * don't hold up txg.
875          * Skip this if uio contains loaned arc_buf.
876          */
877         if ((uio->uio_extflg == UIO_XUIO) &&
878             (((xuio_t *)uio)->xu_type == UIOTYPE_ZEROCOPY))
879                 xuio = (xuio_t *)uio;
880         else
881                 uio_prefaultpages(MIN(n, max_blksz), uio);
882 #endif  /* sun */
883
884         /*
885          * If in append mode, set the io offset pointer to eof.
886          */
887         if (ioflag & FAPPEND) {
888                 /*
889                  * Obtain an appending range lock to guarantee file append
890                  * semantics.  We reset the write offset once we have the lock.
891                  */
892                 rl = zfs_range_lock(zp, 0, n, RL_APPEND);
893                 woff = rl->r_off;
894                 if (rl->r_len == UINT64_MAX) {
895                         /*
896                          * We overlocked the file because this write will cause
897                          * the file block size to increase.
898                          * Note that zp_size cannot change with this lock held.
899                          */
900                         woff = zp->z_size;
901                 }
902                 uio->uio_loffset = woff;
903         } else {
904                 /*
905                  * Note that if the file block size will change as a result of
906                  * this write, then this range lock will lock the entire file
907                  * so that we can re-write the block safely.
908                  */
909                 rl = zfs_range_lock(zp, woff, n, RL_WRITER);
910         }
911
912         if (vn_rlimit_fsize(vp, uio, uio->uio_td)) {
913                 zfs_range_unlock(rl);
914                 ZFS_EXIT(zfsvfs);
915                 return (EFBIG);
916         }
917
918         if (woff >= limit) {
919                 zfs_range_unlock(rl);
920                 ZFS_EXIT(zfsvfs);
921                 return (SET_ERROR(EFBIG));
922         }
923
924         if ((woff + n) > limit || woff > (limit - n))
925                 n = limit - woff;
926
927         /* Will this write extend the file length? */
928         write_eof = (woff + n > zp->z_size);
929
930         end_size = MAX(zp->z_size, woff + n);
931
932         /*
933          * Write the file in reasonable size chunks.  Each chunk is written
934          * in a separate transaction; this keeps the intent log records small
935          * and allows us to do more fine-grained space accounting.
936          */
937         while (n > 0) {
938                 abuf = NULL;
939                 woff = uio->uio_loffset;
940 again:
941                 if (zfs_owner_overquota(zfsvfs, zp, B_FALSE) ||
942                     zfs_owner_overquota(zfsvfs, zp, B_TRUE)) {
943                         if (abuf != NULL)
944                                 dmu_return_arcbuf(abuf);
945                         error = SET_ERROR(EDQUOT);
946                         break;
947                 }
948
949                 if (xuio && abuf == NULL) {
950                         ASSERT(i_iov < iovcnt);
951                         aiov = &iovp[i_iov];
952                         abuf = dmu_xuio_arcbuf(xuio, i_iov);
953                         dmu_xuio_clear(xuio, i_iov);
954                         DTRACE_PROBE3(zfs_cp_write, int, i_iov,
955                             iovec_t *, aiov, arc_buf_t *, abuf);
956                         ASSERT((aiov->iov_base == abuf->b_data) ||
957                             ((char *)aiov->iov_base - (char *)abuf->b_data +
958                             aiov->iov_len == arc_buf_size(abuf)));
959                         i_iov++;
960                 } else if (abuf == NULL && n >= max_blksz &&
961                     woff >= zp->z_size &&
962                     P2PHASE(woff, max_blksz) == 0 &&
963                     zp->z_blksz == max_blksz) {
964                         /*
965                          * This write covers a full block.  "Borrow" a buffer
966                          * from the dmu so that we can fill it before we enter
967                          * a transaction.  This avoids the possibility of
968                          * holding up the transaction if the data copy hangs
969                          * up on a pagefault (e.g., from an NFS server mapping).
970                          */
971                         size_t cbytes;
972
973                         abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
974                             max_blksz);
975                         ASSERT(abuf != NULL);
976                         ASSERT(arc_buf_size(abuf) == max_blksz);
977                         if (error = uiocopy(abuf->b_data, max_blksz,
978                             UIO_WRITE, uio, &cbytes)) {
979                                 dmu_return_arcbuf(abuf);
980                                 break;
981                         }
982                         ASSERT(cbytes == max_blksz);
983                 }
984
985                 /*
986                  * Start a transaction.
987                  */
988                 tx = dmu_tx_create(zfsvfs->z_os);
989                 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
990                 dmu_tx_hold_write(tx, zp->z_id, woff, MIN(n, max_blksz));
991                 zfs_sa_upgrade_txholds(tx, zp);
992                 error = dmu_tx_assign(tx, TXG_NOWAIT);
993                 if (error) {
994                         if (error == ERESTART) {
995                                 dmu_tx_wait(tx);
996                                 dmu_tx_abort(tx);
997                                 goto again;
998                         }
999                         dmu_tx_abort(tx);
1000                         if (abuf != NULL)
1001                                 dmu_return_arcbuf(abuf);
1002                         break;
1003                 }
1004
1005                 /*
1006                  * If zfs_range_lock() over-locked we grow the blocksize
1007                  * and then reduce the lock range.  This will only happen
1008                  * on the first iteration since zfs_range_reduce() will
1009                  * shrink down r_len to the appropriate size.
1010                  */
1011                 if (rl->r_len == UINT64_MAX) {
1012                         uint64_t new_blksz;
1013
1014                         if (zp->z_blksz > max_blksz) {
1015                                 ASSERT(!ISP2(zp->z_blksz));
1016                                 new_blksz = MIN(end_size, SPA_MAXBLOCKSIZE);
1017                         } else {
1018                                 new_blksz = MIN(end_size, max_blksz);
1019                         }
1020                         zfs_grow_blocksize(zp, new_blksz, tx);
1021                         zfs_range_reduce(rl, woff, n);
1022                 }
1023
1024                 /*
1025                  * XXX - should we really limit each write to z_max_blksz?
1026                  * Perhaps we should use SPA_MAXBLOCKSIZE chunks?
1027                  */
1028                 nbytes = MIN(n, max_blksz - P2PHASE(woff, max_blksz));
1029
1030                 if (woff + nbytes > zp->z_size)
1031                         vnode_pager_setsize(vp, woff + nbytes);
1032
1033                 if (abuf == NULL) {
1034                         tx_bytes = uio->uio_resid;
1035                         error = dmu_write_uio_dbuf(sa_get_db(zp->z_sa_hdl),
1036                             uio, nbytes, tx);
1037                         tx_bytes -= uio->uio_resid;
1038                 } else {
1039                         tx_bytes = nbytes;
1040                         ASSERT(xuio == NULL || tx_bytes == aiov->iov_len);
1041                         /*
1042                          * If this is not a full block write, but we are
1043                          * extending the file past EOF and this data starts
1044                          * block-aligned, use assign_arcbuf().  Otherwise,
1045                          * write via dmu_write().
1046                          */
1047                         if (tx_bytes < max_blksz && (!write_eof ||
1048                             aiov->iov_base != abuf->b_data)) {
1049                                 ASSERT(xuio);
1050                                 dmu_write(zfsvfs->z_os, zp->z_id, woff,
1051                                     aiov->iov_len, aiov->iov_base, tx);
1052                                 dmu_return_arcbuf(abuf);
1053                                 xuio_stat_wbuf_copied();
1054                         } else {
1055                                 ASSERT(xuio || tx_bytes == max_blksz);
1056                                 dmu_assign_arcbuf(sa_get_db(zp->z_sa_hdl),
1057                                     woff, abuf, tx);
1058                         }
1059                         ASSERT(tx_bytes <= uio->uio_resid);
1060                         uioskip(uio, tx_bytes);
1061                 }
1062                 if (tx_bytes && vn_has_cached_data(vp)) {
1063                         update_pages(vp, woff, tx_bytes, zfsvfs->z_os,
1064                             zp->z_id, uio->uio_segflg, tx);
1065                 }
1066
1067                 /*
1068                  * If we made no progress, we're done.  If we made even
1069                  * partial progress, update the znode and ZIL accordingly.
1070                  */
1071                 if (tx_bytes == 0) {
1072                         (void) sa_update(zp->z_sa_hdl, SA_ZPL_SIZE(zfsvfs),
1073                             (void *)&zp->z_size, sizeof (uint64_t), tx);
1074                         dmu_tx_commit(tx);
1075                         ASSERT(error != 0);
1076                         break;
1077                 }
1078
1079                 /*
1080                  * Clear Set-UID/Set-GID bits on successful write if not
1081                  * privileged and at least one of the excute bits is set.
1082                  *
1083                  * It would be nice to to this after all writes have
1084                  * been done, but that would still expose the ISUID/ISGID
1085                  * to another app after the partial write is committed.
1086                  *
1087                  * Note: we don't call zfs_fuid_map_id() here because
1088                  * user 0 is not an ephemeral uid.
1089                  */
1090                 mutex_enter(&zp->z_acl_lock);
1091                 if ((zp->z_mode & (S_IXUSR | (S_IXUSR >> 3) |
1092                     (S_IXUSR >> 6))) != 0 &&
1093                     (zp->z_mode & (S_ISUID | S_ISGID)) != 0 &&
1094                     secpolicy_vnode_setid_retain(vp, cr,
1095                     (zp->z_mode & S_ISUID) != 0 && zp->z_uid == 0) != 0) {
1096                         uint64_t newmode;
1097                         zp->z_mode &= ~(S_ISUID | S_ISGID);
1098                         newmode = zp->z_mode;
1099                         (void) sa_update(zp->z_sa_hdl, SA_ZPL_MODE(zfsvfs),
1100                             (void *)&newmode, sizeof (uint64_t), tx);
1101                 }
1102                 mutex_exit(&zp->z_acl_lock);
1103
1104                 zfs_tstamp_update_setup(zp, CONTENT_MODIFIED, mtime, ctime,
1105                     B_TRUE);
1106
1107                 /*
1108                  * Update the file size (zp_size) if it has changed;
1109                  * account for possible concurrent updates.
1110                  */
1111                 while ((end_size = zp->z_size) < uio->uio_loffset) {
1112                         (void) atomic_cas_64(&zp->z_size, end_size,
1113                             uio->uio_loffset);
1114                         ASSERT(error == 0);
1115                 }
1116                 /*
1117                  * If we are replaying and eof is non zero then force
1118                  * the file size to the specified eof. Note, there's no
1119                  * concurrency during replay.
1120                  */
1121                 if (zfsvfs->z_replay && zfsvfs->z_replay_eof != 0)
1122                         zp->z_size = zfsvfs->z_replay_eof;
1123
1124                 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
1125
1126                 zfs_log_write(zilog, tx, TX_WRITE, zp, woff, tx_bytes, ioflag);
1127                 dmu_tx_commit(tx);
1128
1129                 if (error != 0)
1130                         break;
1131                 ASSERT(tx_bytes == nbytes);
1132                 n -= nbytes;
1133
1134 #ifdef sun
1135                 if (!xuio && n > 0)
1136                         uio_prefaultpages(MIN(n, max_blksz), uio);
1137 #endif  /* sun */
1138         }
1139
1140         zfs_range_unlock(rl);
1141
1142         /*
1143          * If we're in replay mode, or we made no progress, return error.
1144          * Otherwise, it's at least a partial write, so it's successful.
1145          */
1146         if (zfsvfs->z_replay || uio->uio_resid == start_resid) {
1147                 ZFS_EXIT(zfsvfs);
1148                 return (error);
1149         }
1150
1151         if (ioflag & (FSYNC | FDSYNC) ||
1152             zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
1153                 zil_commit(zilog, zp->z_id);
1154
1155         ZFS_EXIT(zfsvfs);
1156         return (0);
1157 }
1158
1159 void
1160 zfs_get_done(zgd_t *zgd, int error)
1161 {
1162         znode_t *zp = zgd->zgd_private;
1163         objset_t *os = zp->z_zfsvfs->z_os;
1164         int vfslocked;
1165
1166         if (zgd->zgd_db)
1167                 dmu_buf_rele(zgd->zgd_db, zgd);
1168
1169         zfs_range_unlock(zgd->zgd_rl);
1170
1171         vfslocked = VFS_LOCK_GIANT(zp->z_zfsvfs->z_vfs);
1172         /*
1173          * Release the vnode asynchronously as we currently have the
1174          * txg stopped from syncing.
1175          */
1176         VN_RELE_ASYNC(ZTOV(zp), dsl_pool_vnrele_taskq(dmu_objset_pool(os)));
1177
1178         if (error == 0 && zgd->zgd_bp)
1179                 zil_add_block(zgd->zgd_zilog, zgd->zgd_bp);
1180
1181         kmem_free(zgd, sizeof (zgd_t));
1182         VFS_UNLOCK_GIANT(vfslocked);
1183 }
1184
1185 #ifdef DEBUG
1186 static int zil_fault_io = 0;
1187 #endif
1188
1189 /*
1190  * Get data to generate a TX_WRITE intent log record.
1191  */
1192 int
1193 zfs_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
1194 {
1195         zfsvfs_t *zfsvfs = arg;
1196         objset_t *os = zfsvfs->z_os;
1197         znode_t *zp;
1198         uint64_t object = lr->lr_foid;
1199         uint64_t offset = lr->lr_offset;
1200         uint64_t size = lr->lr_length;
1201         blkptr_t *bp = &lr->lr_blkptr;
1202         dmu_buf_t *db;
1203         zgd_t *zgd;
1204         int error = 0;
1205
1206         ASSERT(zio != NULL);
1207         ASSERT(size != 0);
1208
1209         /*
1210          * Nothing to do if the file has been removed
1211          */
1212         if (zfs_zget(zfsvfs, object, &zp) != 0)
1213                 return (SET_ERROR(ENOENT));
1214         if (zp->z_unlinked) {
1215                 /*
1216                  * Release the vnode asynchronously as we currently have the
1217                  * txg stopped from syncing.
1218                  */
1219                 VN_RELE_ASYNC(ZTOV(zp),
1220                     dsl_pool_vnrele_taskq(dmu_objset_pool(os)));
1221                 return (SET_ERROR(ENOENT));
1222         }
1223
1224         zgd = (zgd_t *)kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
1225         zgd->zgd_zilog = zfsvfs->z_log;
1226         zgd->zgd_private = zp;
1227
1228         /*
1229          * Write records come in two flavors: immediate and indirect.
1230          * For small writes it's cheaper to store the data with the
1231          * log record (immediate); for large writes it's cheaper to
1232          * sync the data and get a pointer to it (indirect) so that
1233          * we don't have to write the data twice.
1234          */
1235         if (buf != NULL) { /* immediate write */
1236                 zgd->zgd_rl = zfs_range_lock(zp, offset, size, RL_READER);
1237                 /* test for truncation needs to be done while range locked */
1238                 if (offset >= zp->z_size) {
1239                         error = SET_ERROR(ENOENT);
1240                 } else {
1241                         error = dmu_read(os, object, offset, size, buf,
1242                             DMU_READ_NO_PREFETCH);
1243                 }
1244                 ASSERT(error == 0 || error == ENOENT);
1245         } else { /* indirect write */
1246                 /*
1247                  * Have to lock the whole block to ensure when it's
1248                  * written out and it's checksum is being calculated
1249                  * that no one can change the data. We need to re-check
1250                  * blocksize after we get the lock in case it's changed!
1251                  */
1252                 for (;;) {
1253                         uint64_t blkoff;
1254                         size = zp->z_blksz;
1255                         blkoff = ISP2(size) ? P2PHASE(offset, size) : offset;
1256                         offset -= blkoff;
1257                         zgd->zgd_rl = zfs_range_lock(zp, offset, size,
1258                             RL_READER);
1259                         if (zp->z_blksz == size)
1260                                 break;
1261                         offset += blkoff;
1262                         zfs_range_unlock(zgd->zgd_rl);
1263                 }
1264                 /* test for truncation needs to be done while range locked */
1265                 if (lr->lr_offset >= zp->z_size)
1266                         error = SET_ERROR(ENOENT);
1267 #ifdef DEBUG
1268                 if (zil_fault_io) {
1269                         error = SET_ERROR(EIO);
1270                         zil_fault_io = 0;
1271                 }
1272 #endif
1273                 if (error == 0)
1274                         error = dmu_buf_hold(os, object, offset, zgd, &db,
1275                             DMU_READ_NO_PREFETCH);
1276
1277                 if (error == 0) {
1278                         blkptr_t *obp = dmu_buf_get_blkptr(db);
1279                         if (obp) {
1280                                 ASSERT(BP_IS_HOLE(bp));
1281                                 *bp = *obp;
1282                         }
1283
1284                         zgd->zgd_db = db;
1285                         zgd->zgd_bp = bp;
1286
1287                         ASSERT(db->db_offset == offset);
1288                         ASSERT(db->db_size == size);
1289
1290                         error = dmu_sync(zio, lr->lr_common.lrc_txg,
1291                             zfs_get_done, zgd);
1292                         ASSERT(error || lr->lr_length <= zp->z_blksz);
1293
1294                         /*
1295                          * On success, we need to wait for the write I/O
1296                          * initiated by dmu_sync() to complete before we can
1297                          * release this dbuf.  We will finish everything up
1298                          * in the zfs_get_done() callback.
1299                          */
1300                         if (error == 0)
1301                                 return (0);
1302
1303                         if (error == EALREADY) {
1304                                 lr->lr_common.lrc_txtype = TX_WRITE2;
1305                                 error = 0;
1306                         }
1307                 }
1308         }
1309
1310         zfs_get_done(zgd, error);
1311
1312         return (error);
1313 }
1314
1315 /*ARGSUSED*/
1316 static int
1317 zfs_access(vnode_t *vp, int mode, int flag, cred_t *cr,
1318     caller_context_t *ct)
1319 {
1320         znode_t *zp = VTOZ(vp);
1321         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
1322         int error;
1323
1324         ZFS_ENTER(zfsvfs);
1325         ZFS_VERIFY_ZP(zp);
1326
1327         if (flag & V_ACE_MASK)
1328                 error = zfs_zaccess(zp, mode, flag, B_FALSE, cr);
1329         else
1330                 error = zfs_zaccess_rwx(zp, mode, flag, cr);
1331
1332         ZFS_EXIT(zfsvfs);
1333         return (error);
1334 }
1335
1336 /*
1337  * If vnode is for a device return a specfs vnode instead.
1338  */
1339 static int
1340 specvp_check(vnode_t **vpp, cred_t *cr)
1341 {
1342         int error = 0;
1343
1344         if (IS_DEVVP(*vpp)) {
1345                 struct vnode *svp;
1346
1347                 svp = specvp(*vpp, (*vpp)->v_rdev, (*vpp)->v_type, cr);
1348                 VN_RELE(*vpp);
1349                 if (svp == NULL)
1350                         error = SET_ERROR(ENOSYS);
1351                 *vpp = svp;
1352         }
1353         return (error);
1354 }
1355
1356
1357 /*
1358  * Lookup an entry in a directory, or an extended attribute directory.
1359  * If it exists, return a held vnode reference for it.
1360  *
1361  *      IN:     dvp     - vnode of directory to search.
1362  *              nm      - name of entry to lookup.
1363  *              pnp     - full pathname to lookup [UNUSED].
1364  *              flags   - LOOKUP_XATTR set if looking for an attribute.
1365  *              rdir    - root directory vnode [UNUSED].
1366  *              cr      - credentials of caller.
1367  *              ct      - caller context
1368  *              direntflags - directory lookup flags
1369  *              realpnp - returned pathname.
1370  *
1371  *      OUT:    vpp     - vnode of located entry, NULL if not found.
1372  *
1373  *      RETURN: 0 on success, error code on failure.
1374  *
1375  * Timestamps:
1376  *      NA
1377  */
1378 /* ARGSUSED */
1379 static int
1380 zfs_lookup(vnode_t *dvp, char *nm, vnode_t **vpp, struct componentname *cnp,
1381     int nameiop, cred_t *cr, kthread_t *td, int flags)
1382 {
1383         znode_t *zdp = VTOZ(dvp);
1384         zfsvfs_t *zfsvfs = zdp->z_zfsvfs;
1385         int     error = 0;
1386         int *direntflags = NULL;
1387         void *realpnp = NULL;
1388
1389         /* fast path */
1390         if (!(flags & (LOOKUP_XATTR | FIGNORECASE))) {
1391
1392                 if (dvp->v_type != VDIR) {
1393                         return (SET_ERROR(ENOTDIR));
1394                 } else if (zdp->z_sa_hdl == NULL) {
1395                         return (SET_ERROR(EIO));
1396                 }
1397
1398                 if (nm[0] == 0 || (nm[0] == '.' && nm[1] == '\0')) {
1399                         error = zfs_fastaccesschk_execute(zdp, cr);
1400                         if (!error) {
1401                                 *vpp = dvp;
1402                                 VN_HOLD(*vpp);
1403                                 return (0);
1404                         }
1405                         return (error);
1406                 } else {
1407                         vnode_t *tvp = dnlc_lookup(dvp, nm);
1408
1409                         if (tvp) {
1410                                 error = zfs_fastaccesschk_execute(zdp, cr);
1411                                 if (error) {
1412                                         VN_RELE(tvp);
1413                                         return (error);
1414                                 }
1415                                 if (tvp == DNLC_NO_VNODE) {
1416                                         VN_RELE(tvp);
1417                                         return (SET_ERROR(ENOENT));
1418                                 } else {
1419                                         *vpp = tvp;
1420                                         return (specvp_check(vpp, cr));
1421                                 }
1422                         }
1423                 }
1424         }
1425
1426         DTRACE_PROBE2(zfs__fastpath__lookup__miss, vnode_t *, dvp, char *, nm);
1427
1428         ZFS_ENTER(zfsvfs);
1429         ZFS_VERIFY_ZP(zdp);
1430
1431         *vpp = NULL;
1432
1433         if (flags & LOOKUP_XATTR) {
1434 #ifdef TODO
1435                 /*
1436                  * If the xattr property is off, refuse the lookup request.
1437                  */
1438                 if (!(zfsvfs->z_vfs->vfs_flag & VFS_XATTR)) {
1439                         ZFS_EXIT(zfsvfs);
1440                         return (SET_ERROR(EINVAL));
1441                 }
1442 #endif
1443
1444                 /*
1445                  * We don't allow recursive attributes..
1446                  * Maybe someday we will.
1447                  */
1448                 if (zdp->z_pflags & ZFS_XATTR) {
1449                         ZFS_EXIT(zfsvfs);
1450                         return (SET_ERROR(EINVAL));
1451                 }
1452
1453                 if (error = zfs_get_xattrdir(VTOZ(dvp), vpp, cr, flags)) {
1454                         ZFS_EXIT(zfsvfs);
1455                         return (error);
1456                 }
1457
1458                 /*
1459                  * Do we have permission to get into attribute directory?
1460                  */
1461
1462                 if (error = zfs_zaccess(VTOZ(*vpp), ACE_EXECUTE, 0,
1463                     B_FALSE, cr)) {
1464                         VN_RELE(*vpp);
1465                         *vpp = NULL;
1466                 }
1467
1468                 ZFS_EXIT(zfsvfs);
1469                 return (error);
1470         }
1471
1472         if (dvp->v_type != VDIR) {
1473                 ZFS_EXIT(zfsvfs);
1474                 return (SET_ERROR(ENOTDIR));
1475         }
1476
1477         /*
1478          * Check accessibility of directory.
1479          */
1480
1481         if (error = zfs_zaccess(zdp, ACE_EXECUTE, 0, B_FALSE, cr)) {
1482                 ZFS_EXIT(zfsvfs);
1483                 return (error);
1484         }
1485
1486         if (zfsvfs->z_utf8 && u8_validate(nm, strlen(nm),
1487             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
1488                 ZFS_EXIT(zfsvfs);
1489                 return (SET_ERROR(EILSEQ));
1490         }
1491
1492         error = zfs_dirlook(zdp, nm, vpp, flags, direntflags, realpnp);
1493         if (error == 0)
1494                 error = specvp_check(vpp, cr);
1495
1496         /* Translate errors and add SAVENAME when needed. */
1497         if (cnp->cn_flags & ISLASTCN) {
1498                 switch (nameiop) {
1499                 case CREATE:
1500                 case RENAME:
1501                         if (error == ENOENT) {
1502                                 error = EJUSTRETURN;
1503                                 cnp->cn_flags |= SAVENAME;
1504                                 break;
1505                         }
1506                         /* FALLTHROUGH */
1507                 case DELETE:
1508                         if (error == 0)
1509                                 cnp->cn_flags |= SAVENAME;
1510                         break;
1511                 }
1512         }
1513         if (error == 0 && (nm[0] != '.' || nm[1] != '\0')) {
1514                 int ltype = 0;
1515
1516                 if (cnp->cn_flags & ISDOTDOT) {
1517                         ltype = VOP_ISLOCKED(dvp);
1518                         VOP_UNLOCK(dvp, 0);
1519                 }
1520                 ZFS_EXIT(zfsvfs);
1521                 error = zfs_vnode_lock(*vpp, cnp->cn_lkflags);
1522                 if (cnp->cn_flags & ISDOTDOT)
1523                         vn_lock(dvp, ltype | LK_RETRY);
1524                 if (error != 0) {
1525                         VN_RELE(*vpp);
1526                         *vpp = NULL;
1527                         return (error);
1528                 }
1529         } else {
1530                 ZFS_EXIT(zfsvfs);
1531         }
1532
1533 #ifdef FREEBSD_NAMECACHE
1534         /*
1535          * Insert name into cache (as non-existent) if appropriate.
1536          */
1537         if (error == ENOENT && (cnp->cn_flags & MAKEENTRY) && nameiop != CREATE)
1538                 cache_enter(dvp, *vpp, cnp);
1539         /*
1540          * Insert name into cache if appropriate.
1541          */
1542         if (error == 0 && (cnp->cn_flags & MAKEENTRY)) {
1543                 if (!(cnp->cn_flags & ISLASTCN) ||
1544                     (nameiop != DELETE && nameiop != RENAME)) {
1545                         cache_enter(dvp, *vpp, cnp);
1546                 }
1547         }
1548 #endif
1549
1550         return (error);
1551 }
1552
1553 /*
1554  * Attempt to create a new entry in a directory.  If the entry
1555  * already exists, truncate the file if permissible, else return
1556  * an error.  Return the vp of the created or trunc'd file.
1557  *
1558  *      IN:     dvp     - vnode of directory to put new file entry in.
1559  *              name    - name of new file entry.
1560  *              vap     - attributes of new file.
1561  *              excl    - flag indicating exclusive or non-exclusive mode.
1562  *              mode    - mode to open file with.
1563  *              cr      - credentials of caller.
1564  *              flag    - large file flag [UNUSED].
1565  *              ct      - caller context
1566  *              vsecp   - ACL to be set
1567  *
1568  *      OUT:    vpp     - vnode of created or trunc'd entry.
1569  *
1570  *      RETURN: 0 on success, error code on failure.
1571  *
1572  * Timestamps:
1573  *      dvp - ctime|mtime updated if new entry created
1574  *       vp - ctime|mtime always, atime if new
1575  */
1576
1577 /* ARGSUSED */
1578 static int
1579 zfs_create(vnode_t *dvp, char *name, vattr_t *vap, int excl, int mode,
1580     vnode_t **vpp, cred_t *cr, kthread_t *td)
1581 {
1582         znode_t         *zp, *dzp = VTOZ(dvp);
1583         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
1584         zilog_t         *zilog;
1585         objset_t        *os;
1586         zfs_dirlock_t   *dl;
1587         dmu_tx_t        *tx;
1588         int             error;
1589         ksid_t          *ksid;
1590         uid_t           uid;
1591         gid_t           gid = crgetgid(cr);
1592         zfs_acl_ids_t   acl_ids;
1593         boolean_t       fuid_dirtied;
1594         boolean_t       have_acl = B_FALSE;
1595         void            *vsecp = NULL;
1596         int             flag = 0;
1597
1598         /*
1599          * If we have an ephemeral id, ACL, or XVATTR then
1600          * make sure file system is at proper version
1601          */
1602
1603         ksid = crgetsid(cr, KSID_OWNER);
1604         if (ksid)
1605                 uid = ksid_getid(ksid);
1606         else
1607                 uid = crgetuid(cr);
1608
1609         if (zfsvfs->z_use_fuids == B_FALSE &&
1610             (vsecp || (vap->va_mask & AT_XVATTR) ||
1611             IS_EPHEMERAL(uid) || IS_EPHEMERAL(gid)))
1612                 return (SET_ERROR(EINVAL));
1613
1614         ZFS_ENTER(zfsvfs);
1615         ZFS_VERIFY_ZP(dzp);
1616         os = zfsvfs->z_os;
1617         zilog = zfsvfs->z_log;
1618
1619         if (zfsvfs->z_utf8 && u8_validate(name, strlen(name),
1620             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
1621                 ZFS_EXIT(zfsvfs);
1622                 return (SET_ERROR(EILSEQ));
1623         }
1624
1625         if (vap->va_mask & AT_XVATTR) {
1626                 if ((error = secpolicy_xvattr(dvp, (xvattr_t *)vap,
1627                     crgetuid(cr), cr, vap->va_type)) != 0) {
1628                         ZFS_EXIT(zfsvfs);
1629                         return (error);
1630                 }
1631         }
1632 top:
1633         *vpp = NULL;
1634
1635         if ((vap->va_mode & S_ISVTX) && secpolicy_vnode_stky_modify(cr))
1636                 vap->va_mode &= ~S_ISVTX;
1637
1638         if (*name == '\0') {
1639                 /*
1640                  * Null component name refers to the directory itself.
1641                  */
1642                 VN_HOLD(dvp);
1643                 zp = dzp;
1644                 dl = NULL;
1645                 error = 0;
1646         } else {
1647                 /* possible VN_HOLD(zp) */
1648                 int zflg = 0;
1649
1650                 if (flag & FIGNORECASE)
1651                         zflg |= ZCILOOK;
1652
1653                 error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
1654                     NULL, NULL);
1655                 if (error) {
1656                         if (have_acl)
1657                                 zfs_acl_ids_free(&acl_ids);
1658                         if (strcmp(name, "..") == 0)
1659                                 error = SET_ERROR(EISDIR);
1660                         ZFS_EXIT(zfsvfs);
1661                         return (error);
1662                 }
1663         }
1664
1665         if (zp == NULL) {
1666                 uint64_t txtype;
1667
1668                 /*
1669                  * Create a new file object and update the directory
1670                  * to reference it.
1671                  */
1672                 if (error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr)) {
1673                         if (have_acl)
1674                                 zfs_acl_ids_free(&acl_ids);
1675                         goto out;
1676                 }
1677
1678                 /*
1679                  * We only support the creation of regular files in
1680                  * extended attribute directories.
1681                  */
1682
1683                 if ((dzp->z_pflags & ZFS_XATTR) &&
1684                     (vap->va_type != VREG)) {
1685                         if (have_acl)
1686                                 zfs_acl_ids_free(&acl_ids);
1687                         error = SET_ERROR(EINVAL);
1688                         goto out;
1689                 }
1690
1691                 if (!have_acl && (error = zfs_acl_ids_create(dzp, 0, vap,
1692                     cr, vsecp, &acl_ids)) != 0)
1693                         goto out;
1694                 have_acl = B_TRUE;
1695
1696                 if (zfs_acl_ids_overquota(zfsvfs, &acl_ids)) {
1697                         zfs_acl_ids_free(&acl_ids);
1698                         error = SET_ERROR(EDQUOT);
1699                         goto out;
1700                 }
1701
1702                 tx = dmu_tx_create(os);
1703
1704                 dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
1705                     ZFS_SA_BASE_ATTR_SIZE);
1706
1707                 fuid_dirtied = zfsvfs->z_fuid_dirty;
1708                 if (fuid_dirtied)
1709                         zfs_fuid_txhold(zfsvfs, tx);
1710                 dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
1711                 dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE);
1712                 if (!zfsvfs->z_use_sa &&
1713                     acl_ids.z_aclp->z_acl_bytes > ZFS_ACE_SPACE) {
1714                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
1715                             0, acl_ids.z_aclp->z_acl_bytes);
1716                 }
1717                 error = dmu_tx_assign(tx, TXG_NOWAIT);
1718                 if (error) {
1719                         zfs_dirent_unlock(dl);
1720                         if (error == ERESTART) {
1721                                 dmu_tx_wait(tx);
1722                                 dmu_tx_abort(tx);
1723                                 goto top;
1724                         }
1725                         zfs_acl_ids_free(&acl_ids);
1726                         dmu_tx_abort(tx);
1727                         ZFS_EXIT(zfsvfs);
1728                         return (error);
1729                 }
1730                 zfs_mknode(dzp, vap, tx, cr, 0, &zp, &acl_ids);
1731
1732                 if (fuid_dirtied)
1733                         zfs_fuid_sync(zfsvfs, tx);
1734
1735                 (void) zfs_link_create(dl, zp, tx, ZNEW);
1736                 txtype = zfs_log_create_txtype(Z_FILE, vsecp, vap);
1737                 if (flag & FIGNORECASE)
1738                         txtype |= TX_CI;
1739                 zfs_log_create(zilog, tx, txtype, dzp, zp, name,
1740                     vsecp, acl_ids.z_fuidp, vap);
1741                 zfs_acl_ids_free(&acl_ids);
1742                 dmu_tx_commit(tx);
1743         } else {
1744                 int aflags = (flag & FAPPEND) ? V_APPEND : 0;
1745
1746                 if (have_acl)
1747                         zfs_acl_ids_free(&acl_ids);
1748                 have_acl = B_FALSE;
1749
1750                 /*
1751                  * A directory entry already exists for this name.
1752                  */
1753                 /*
1754                  * Can't truncate an existing file if in exclusive mode.
1755                  */
1756                 if (excl == EXCL) {
1757                         error = SET_ERROR(EEXIST);
1758                         goto out;
1759                 }
1760                 /*
1761                  * Can't open a directory for writing.
1762                  */
1763                 if ((ZTOV(zp)->v_type == VDIR) && (mode & S_IWRITE)) {
1764                         error = SET_ERROR(EISDIR);
1765                         goto out;
1766                 }
1767                 /*
1768                  * Verify requested access to file.
1769                  */
1770                 if (mode && (error = zfs_zaccess_rwx(zp, mode, aflags, cr))) {
1771                         goto out;
1772                 }
1773
1774                 mutex_enter(&dzp->z_lock);
1775                 dzp->z_seq++;
1776                 mutex_exit(&dzp->z_lock);
1777
1778                 /*
1779                  * Truncate regular files if requested.
1780                  */
1781                 if ((ZTOV(zp)->v_type == VREG) &&
1782                     (vap->va_mask & AT_SIZE) && (vap->va_size == 0)) {
1783                         /* we can't hold any locks when calling zfs_freesp() */
1784                         zfs_dirent_unlock(dl);
1785                         dl = NULL;
1786                         error = zfs_freesp(zp, 0, 0, mode, TRUE);
1787                         if (error == 0) {
1788                                 vnevent_create(ZTOV(zp), ct);
1789                         }
1790                 }
1791         }
1792 out:
1793         if (dl)
1794                 zfs_dirent_unlock(dl);
1795
1796         if (error) {
1797                 if (zp)
1798                         VN_RELE(ZTOV(zp));
1799         } else {
1800                 *vpp = ZTOV(zp);
1801                 error = specvp_check(vpp, cr);
1802         }
1803
1804         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
1805                 zil_commit(zilog, 0);
1806
1807         ZFS_EXIT(zfsvfs);
1808         return (error);
1809 }
1810
1811 /*
1812  * Remove an entry from a directory.
1813  *
1814  *      IN:     dvp     - vnode of directory to remove entry from.
1815  *              name    - name of entry to remove.
1816  *              cr      - credentials of caller.
1817  *              ct      - caller context
1818  *              flags   - case flags
1819  *
1820  *      RETURN: 0 on success, error code on failure.
1821  *
1822  * Timestamps:
1823  *      dvp - ctime|mtime
1824  *       vp - ctime (if nlink > 0)
1825  */
1826
1827 uint64_t null_xattr = 0;
1828
1829 /*ARGSUSED*/
1830 static int
1831 zfs_remove(vnode_t *dvp, char *name, cred_t *cr, caller_context_t *ct,
1832     int flags)
1833 {
1834         znode_t         *zp, *dzp = VTOZ(dvp);
1835         znode_t         *xzp;
1836         vnode_t         *vp;
1837         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
1838         zilog_t         *zilog;
1839         uint64_t        acl_obj, xattr_obj;
1840         uint64_t        xattr_obj_unlinked = 0;
1841         uint64_t        obj = 0;
1842         zfs_dirlock_t   *dl;
1843         dmu_tx_t        *tx;
1844         boolean_t       may_delete_now, delete_now = FALSE;
1845         boolean_t       unlinked, toobig = FALSE;
1846         uint64_t        txtype;
1847         pathname_t      *realnmp = NULL;
1848         pathname_t      realnm;
1849         int             error;
1850         int             zflg = ZEXISTS;
1851
1852         ZFS_ENTER(zfsvfs);
1853         ZFS_VERIFY_ZP(dzp);
1854         zilog = zfsvfs->z_log;
1855
1856         if (flags & FIGNORECASE) {
1857                 zflg |= ZCILOOK;
1858                 pn_alloc(&realnm);
1859                 realnmp = &realnm;
1860         }
1861
1862 top:
1863         xattr_obj = 0;
1864         xzp = NULL;
1865         /*
1866          * Attempt to lock directory; fail if entry doesn't exist.
1867          */
1868         if (error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
1869             NULL, realnmp)) {
1870                 if (realnmp)
1871                         pn_free(realnmp);
1872                 ZFS_EXIT(zfsvfs);
1873                 return (error);
1874         }
1875
1876         vp = ZTOV(zp);
1877
1878         if (error = zfs_zaccess_delete(dzp, zp, cr)) {
1879                 goto out;
1880         }
1881
1882         /*
1883          * Need to use rmdir for removing directories.
1884          */
1885         if (vp->v_type == VDIR) {
1886                 error = SET_ERROR(EPERM);
1887                 goto out;
1888         }
1889
1890         vnevent_remove(vp, dvp, name, ct);
1891
1892         if (realnmp)
1893                 dnlc_remove(dvp, realnmp->pn_buf);
1894         else
1895                 dnlc_remove(dvp, name);
1896
1897         VI_LOCK(vp);
1898         may_delete_now = vp->v_count == 1 && !vn_has_cached_data(vp);
1899         VI_UNLOCK(vp);
1900
1901         /*
1902          * We may delete the znode now, or we may put it in the unlinked set;
1903          * it depends on whether we're the last link, and on whether there are
1904          * other holds on the vnode.  So we dmu_tx_hold() the right things to
1905          * allow for either case.
1906          */
1907         obj = zp->z_id;
1908         tx = dmu_tx_create(zfsvfs->z_os);
1909         dmu_tx_hold_zap(tx, dzp->z_id, FALSE, name);
1910         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
1911         zfs_sa_upgrade_txholds(tx, zp);
1912         zfs_sa_upgrade_txholds(tx, dzp);
1913         if (may_delete_now) {
1914                 toobig =
1915                     zp->z_size > zp->z_blksz * DMU_MAX_DELETEBLKCNT;
1916                 /* if the file is too big, only hold_free a token amount */
1917                 dmu_tx_hold_free(tx, zp->z_id, 0,
1918                     (toobig ? DMU_MAX_ACCESS : DMU_OBJECT_END));
1919         }
1920
1921         /* are there any extended attributes? */
1922         error = sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs),
1923             &xattr_obj, sizeof (xattr_obj));
1924         if (error == 0 && xattr_obj) {
1925                 error = zfs_zget(zfsvfs, xattr_obj, &xzp);
1926                 ASSERT0(error);
1927                 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
1928                 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
1929         }
1930
1931         mutex_enter(&zp->z_lock);
1932         if ((acl_obj = zfs_external_acl(zp)) != 0 && may_delete_now)
1933                 dmu_tx_hold_free(tx, acl_obj, 0, DMU_OBJECT_END);
1934         mutex_exit(&zp->z_lock);
1935
1936         /* charge as an update -- would be nice not to charge at all */
1937         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
1938
1939         error = dmu_tx_assign(tx, TXG_NOWAIT);
1940         if (error) {
1941                 zfs_dirent_unlock(dl);
1942                 VN_RELE(vp);
1943                 if (xzp)
1944                         VN_RELE(ZTOV(xzp));
1945                 if (error == ERESTART) {
1946                         dmu_tx_wait(tx);
1947                         dmu_tx_abort(tx);
1948                         goto top;
1949                 }
1950                 if (realnmp)
1951                         pn_free(realnmp);
1952                 dmu_tx_abort(tx);
1953                 ZFS_EXIT(zfsvfs);
1954                 return (error);
1955         }
1956
1957         /*
1958          * Remove the directory entry.
1959          */
1960         error = zfs_link_destroy(dl, zp, tx, zflg, &unlinked);
1961
1962         if (error) {
1963                 dmu_tx_commit(tx);
1964                 goto out;
1965         }
1966
1967         if (unlinked) {
1968
1969                 /*
1970                  * Hold z_lock so that we can make sure that the ACL obj
1971                  * hasn't changed.  Could have been deleted due to
1972                  * zfs_sa_upgrade().
1973                  */
1974                 mutex_enter(&zp->z_lock);
1975                 VI_LOCK(vp);
1976                 (void) sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs),
1977                     &xattr_obj_unlinked, sizeof (xattr_obj_unlinked));
1978                 delete_now = may_delete_now && !toobig &&
1979                     vp->v_count == 1 && !vn_has_cached_data(vp) &&
1980                     xattr_obj == xattr_obj_unlinked && zfs_external_acl(zp) ==
1981                     acl_obj;
1982                 VI_UNLOCK(vp);
1983         }
1984
1985         if (delete_now) {
1986 #ifdef __FreeBSD__
1987                 panic("zfs_remove: delete_now branch taken");
1988 #endif
1989                 if (xattr_obj_unlinked) {
1990                         ASSERT3U(xzp->z_links, ==, 2);
1991                         mutex_enter(&xzp->z_lock);
1992                         xzp->z_unlinked = 1;
1993                         xzp->z_links = 0;
1994                         error = sa_update(xzp->z_sa_hdl, SA_ZPL_LINKS(zfsvfs),
1995                             &xzp->z_links, sizeof (xzp->z_links), tx);
1996                         ASSERT3U(error,  ==,  0);
1997                         mutex_exit(&xzp->z_lock);
1998                         zfs_unlinked_add(xzp, tx);
1999
2000                         if (zp->z_is_sa)
2001                                 error = sa_remove(zp->z_sa_hdl,
2002                                     SA_ZPL_XATTR(zfsvfs), tx);
2003                         else
2004                                 error = sa_update(zp->z_sa_hdl,
2005                                     SA_ZPL_XATTR(zfsvfs), &null_xattr,
2006                                     sizeof (uint64_t), tx);
2007                         ASSERT0(error);
2008                 }
2009                 VI_LOCK(vp);
2010                 vp->v_count--;
2011                 ASSERT0(vp->v_count);
2012                 VI_UNLOCK(vp);
2013                 mutex_exit(&zp->z_lock);
2014                 zfs_znode_delete(zp, tx);
2015         } else if (unlinked) {
2016                 mutex_exit(&zp->z_lock);
2017                 zfs_unlinked_add(zp, tx);
2018 #ifdef __FreeBSD__
2019                 vp->v_vflag |= VV_NOSYNC;
2020 #endif
2021         }
2022
2023         txtype = TX_REMOVE;
2024         if (flags & FIGNORECASE)
2025                 txtype |= TX_CI;
2026         zfs_log_remove(zilog, tx, txtype, dzp, name, obj);
2027
2028         dmu_tx_commit(tx);
2029 out:
2030         if (realnmp)
2031                 pn_free(realnmp);
2032
2033         zfs_dirent_unlock(dl);
2034
2035         if (!delete_now)
2036                 VN_RELE(vp);
2037         if (xzp)
2038                 VN_RELE(ZTOV(xzp));
2039
2040         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
2041                 zil_commit(zilog, 0);
2042
2043         ZFS_EXIT(zfsvfs);
2044         return (error);
2045 }
2046
2047 /*
2048  * Create a new directory and insert it into dvp using the name
2049  * provided.  Return a pointer to the inserted directory.
2050  *
2051  *      IN:     dvp     - vnode of directory to add subdir to.
2052  *              dirname - name of new directory.
2053  *              vap     - attributes of new directory.
2054  *              cr      - credentials of caller.
2055  *              ct      - caller context
2056  *              flags   - case flags
2057  *              vsecp   - ACL to be set
2058  *
2059  *      OUT:    vpp     - vnode of created directory.
2060  *
2061  *      RETURN: 0 on success, error code on failure.
2062  *
2063  * Timestamps:
2064  *      dvp - ctime|mtime updated
2065  *       vp - ctime|mtime|atime updated
2066  */
2067 /*ARGSUSED*/
2068 static int
2069 zfs_mkdir(vnode_t *dvp, char *dirname, vattr_t *vap, vnode_t **vpp, cred_t *cr,
2070     caller_context_t *ct, int flags, vsecattr_t *vsecp)
2071 {
2072         znode_t         *zp, *dzp = VTOZ(dvp);
2073         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
2074         zilog_t         *zilog;
2075         zfs_dirlock_t   *dl;
2076         uint64_t        txtype;
2077         dmu_tx_t        *tx;
2078         int             error;
2079         int             zf = ZNEW;
2080         ksid_t          *ksid;
2081         uid_t           uid;
2082         gid_t           gid = crgetgid(cr);
2083         zfs_acl_ids_t   acl_ids;
2084         boolean_t       fuid_dirtied;
2085
2086         ASSERT(vap->va_type == VDIR);
2087
2088         /*
2089          * If we have an ephemeral id, ACL, or XVATTR then
2090          * make sure file system is at proper version
2091          */
2092
2093         ksid = crgetsid(cr, KSID_OWNER);
2094         if (ksid)
2095                 uid = ksid_getid(ksid);
2096         else
2097                 uid = crgetuid(cr);
2098         if (zfsvfs->z_use_fuids == B_FALSE &&
2099             (vsecp || (vap->va_mask & AT_XVATTR) ||
2100             IS_EPHEMERAL(uid) || IS_EPHEMERAL(gid)))
2101                 return (SET_ERROR(EINVAL));
2102
2103         ZFS_ENTER(zfsvfs);
2104         ZFS_VERIFY_ZP(dzp);
2105         zilog = zfsvfs->z_log;
2106
2107         if (dzp->z_pflags & ZFS_XATTR) {
2108                 ZFS_EXIT(zfsvfs);
2109                 return (SET_ERROR(EINVAL));
2110         }
2111
2112         if (zfsvfs->z_utf8 && u8_validate(dirname,
2113             strlen(dirname), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
2114                 ZFS_EXIT(zfsvfs);
2115                 return (SET_ERROR(EILSEQ));
2116         }
2117         if (flags & FIGNORECASE)
2118                 zf |= ZCILOOK;
2119
2120         if (vap->va_mask & AT_XVATTR) {
2121                 if ((error = secpolicy_xvattr(dvp, (xvattr_t *)vap,
2122                     crgetuid(cr), cr, vap->va_type)) != 0) {
2123                         ZFS_EXIT(zfsvfs);
2124                         return (error);
2125                 }
2126         }
2127
2128         if ((error = zfs_acl_ids_create(dzp, 0, vap, cr,
2129             vsecp, &acl_ids)) != 0) {
2130                 ZFS_EXIT(zfsvfs);
2131                 return (error);
2132         }
2133         /*
2134          * First make sure the new directory doesn't exist.
2135          *
2136          * Existence is checked first to make sure we don't return
2137          * EACCES instead of EEXIST which can cause some applications
2138          * to fail.
2139          */
2140 top:
2141         *vpp = NULL;
2142
2143         if (error = zfs_dirent_lock(&dl, dzp, dirname, &zp, zf,
2144             NULL, NULL)) {
2145                 zfs_acl_ids_free(&acl_ids);
2146                 ZFS_EXIT(zfsvfs);
2147                 return (error);
2148         }
2149
2150         if (error = zfs_zaccess(dzp, ACE_ADD_SUBDIRECTORY, 0, B_FALSE, cr)) {
2151                 zfs_acl_ids_free(&acl_ids);
2152                 zfs_dirent_unlock(dl);
2153                 ZFS_EXIT(zfsvfs);
2154                 return (error);
2155         }
2156
2157         if (zfs_acl_ids_overquota(zfsvfs, &acl_ids)) {
2158                 zfs_acl_ids_free(&acl_ids);
2159                 zfs_dirent_unlock(dl);
2160                 ZFS_EXIT(zfsvfs);
2161                 return (SET_ERROR(EDQUOT));
2162         }
2163
2164         /*
2165          * Add a new entry to the directory.
2166          */
2167         tx = dmu_tx_create(zfsvfs->z_os);
2168         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, dirname);
2169         dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
2170         fuid_dirtied = zfsvfs->z_fuid_dirty;
2171         if (fuid_dirtied)
2172                 zfs_fuid_txhold(zfsvfs, tx);
2173         if (!zfsvfs->z_use_sa && acl_ids.z_aclp->z_acl_bytes > ZFS_ACE_SPACE) {
2174                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
2175                     acl_ids.z_aclp->z_acl_bytes);
2176         }
2177
2178         dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
2179             ZFS_SA_BASE_ATTR_SIZE);
2180
2181         error = dmu_tx_assign(tx, TXG_NOWAIT);
2182         if (error) {
2183                 zfs_dirent_unlock(dl);
2184                 if (error == ERESTART) {
2185                         dmu_tx_wait(tx);
2186                         dmu_tx_abort(tx);
2187                         goto top;
2188                 }
2189                 zfs_acl_ids_free(&acl_ids);
2190                 dmu_tx_abort(tx);
2191                 ZFS_EXIT(zfsvfs);
2192                 return (error);
2193         }
2194
2195         /*
2196          * Create new node.
2197          */
2198         zfs_mknode(dzp, vap, tx, cr, 0, &zp, &acl_ids);
2199
2200         if (fuid_dirtied)
2201                 zfs_fuid_sync(zfsvfs, tx);
2202
2203         /*
2204          * Now put new name in parent dir.
2205          */
2206         (void) zfs_link_create(dl, zp, tx, ZNEW);
2207
2208         *vpp = ZTOV(zp);
2209
2210         txtype = zfs_log_create_txtype(Z_DIR, vsecp, vap);
2211         if (flags & FIGNORECASE)
2212                 txtype |= TX_CI;
2213         zfs_log_create(zilog, tx, txtype, dzp, zp, dirname, vsecp,
2214             acl_ids.z_fuidp, vap);
2215
2216         zfs_acl_ids_free(&acl_ids);
2217
2218         dmu_tx_commit(tx);
2219
2220         zfs_dirent_unlock(dl);
2221
2222         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
2223                 zil_commit(zilog, 0);
2224
2225         ZFS_EXIT(zfsvfs);
2226         return (0);
2227 }
2228
2229 /*
2230  * Remove a directory subdir entry.  If the current working
2231  * directory is the same as the subdir to be removed, the
2232  * remove will fail.
2233  *
2234  *      IN:     dvp     - vnode of directory to remove from.
2235  *              name    - name of directory to be removed.
2236  *              cwd     - vnode of current working directory.
2237  *              cr      - credentials of caller.
2238  *              ct      - caller context
2239  *              flags   - case flags
2240  *
2241  *      RETURN: 0 on success, error code on failure.
2242  *
2243  * Timestamps:
2244  *      dvp - ctime|mtime updated
2245  */
2246 /*ARGSUSED*/
2247 static int
2248 zfs_rmdir(vnode_t *dvp, char *name, vnode_t *cwd, cred_t *cr,
2249     caller_context_t *ct, int flags)
2250 {
2251         znode_t         *dzp = VTOZ(dvp);
2252         znode_t         *zp;
2253         vnode_t         *vp;
2254         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
2255         zilog_t         *zilog;
2256         zfs_dirlock_t   *dl;
2257         dmu_tx_t        *tx;
2258         int             error;
2259         int             zflg = ZEXISTS;
2260
2261         ZFS_ENTER(zfsvfs);
2262         ZFS_VERIFY_ZP(dzp);
2263         zilog = zfsvfs->z_log;
2264
2265         if (flags & FIGNORECASE)
2266                 zflg |= ZCILOOK;
2267 top:
2268         zp = NULL;
2269
2270         /*
2271          * Attempt to lock directory; fail if entry doesn't exist.
2272          */
2273         if (error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
2274             NULL, NULL)) {
2275                 ZFS_EXIT(zfsvfs);
2276                 return (error);
2277         }
2278
2279         vp = ZTOV(zp);
2280
2281         if (error = zfs_zaccess_delete(dzp, zp, cr)) {
2282                 goto out;
2283         }
2284
2285         if (vp->v_type != VDIR) {
2286                 error = SET_ERROR(ENOTDIR);
2287                 goto out;
2288         }
2289
2290         if (vp == cwd) {
2291                 error = SET_ERROR(EINVAL);
2292                 goto out;
2293         }
2294
2295         vnevent_rmdir(vp, dvp, name, ct);
2296
2297         /*
2298          * Grab a lock on the directory to make sure that noone is
2299          * trying to add (or lookup) entries while we are removing it.
2300          */
2301         rw_enter(&zp->z_name_lock, RW_WRITER);
2302
2303         /*
2304          * Grab a lock on the parent pointer to make sure we play well
2305          * with the treewalk and directory rename code.
2306          */
2307         rw_enter(&zp->z_parent_lock, RW_WRITER);
2308
2309         tx = dmu_tx_create(zfsvfs->z_os);
2310         dmu_tx_hold_zap(tx, dzp->z_id, FALSE, name);
2311         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
2312         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
2313         zfs_sa_upgrade_txholds(tx, zp);
2314         zfs_sa_upgrade_txholds(tx, dzp);
2315         error = dmu_tx_assign(tx, TXG_NOWAIT);
2316         if (error) {
2317                 rw_exit(&zp->z_parent_lock);
2318                 rw_exit(&zp->z_name_lock);
2319                 zfs_dirent_unlock(dl);
2320                 VN_RELE(vp);
2321                 if (error == ERESTART) {
2322                         dmu_tx_wait(tx);
2323                         dmu_tx_abort(tx);
2324                         goto top;
2325                 }
2326                 dmu_tx_abort(tx);
2327                 ZFS_EXIT(zfsvfs);
2328                 return (error);
2329         }
2330
2331 #ifdef FREEBSD_NAMECACHE
2332         cache_purge(dvp);
2333 #endif
2334
2335         error = zfs_link_destroy(dl, zp, tx, zflg, NULL);
2336
2337         if (error == 0) {
2338                 uint64_t txtype = TX_RMDIR;
2339                 if (flags & FIGNORECASE)
2340                         txtype |= TX_CI;
2341                 zfs_log_remove(zilog, tx, txtype, dzp, name, ZFS_NO_OBJECT);
2342         }
2343
2344         dmu_tx_commit(tx);
2345
2346         rw_exit(&zp->z_parent_lock);
2347         rw_exit(&zp->z_name_lock);
2348 #ifdef FREEBSD_NAMECACHE
2349         cache_purge(vp);
2350 #endif
2351 out:
2352         zfs_dirent_unlock(dl);
2353
2354         VN_RELE(vp);
2355
2356         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
2357                 zil_commit(zilog, 0);
2358
2359         ZFS_EXIT(zfsvfs);
2360         return (error);
2361 }
2362
2363 /*
2364  * Read as many directory entries as will fit into the provided
2365  * buffer from the given directory cursor position (specified in
2366  * the uio structure).
2367  *
2368  *      IN:     vp      - vnode of directory to read.
2369  *              uio     - structure supplying read location, range info,
2370  *                        and return buffer.
2371  *              cr      - credentials of caller.
2372  *              ct      - caller context
2373  *              flags   - case flags
2374  *
2375  *      OUT:    uio     - updated offset and range, buffer filled.
2376  *              eofp    - set to true if end-of-file detected.
2377  *
2378  *      RETURN: 0 on success, error code on failure.
2379  *
2380  * Timestamps:
2381  *      vp - atime updated
2382  *
2383  * Note that the low 4 bits of the cookie returned by zap is always zero.
2384  * This allows us to use the low range for "special" directory entries:
2385  * We use 0 for '.', and 1 for '..'.  If this is the root of the filesystem,
2386  * we use the offset 2 for the '.zfs' directory.
2387  */
2388 /* ARGSUSED */
2389 static int
2390 zfs_readdir(vnode_t *vp, uio_t *uio, cred_t *cr, int *eofp, int *ncookies, u_long **cookies)
2391 {
2392         znode_t         *zp = VTOZ(vp);
2393         iovec_t         *iovp;
2394         edirent_t       *eodp;
2395         dirent64_t      *odp;
2396         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
2397         objset_t        *os;
2398         caddr_t         outbuf;
2399         size_t          bufsize;
2400         zap_cursor_t    zc;
2401         zap_attribute_t zap;
2402         uint_t          bytes_wanted;
2403         uint64_t        offset; /* must be unsigned; checks for < 1 */
2404         uint64_t        parent;
2405         int             local_eof;
2406         int             outcount;
2407         int             error;
2408         uint8_t         prefetch;
2409         boolean_t       check_sysattrs;
2410         uint8_t         type;
2411         int             ncooks;
2412         u_long          *cooks = NULL;
2413         int             flags = 0;
2414
2415         ZFS_ENTER(zfsvfs);
2416         ZFS_VERIFY_ZP(zp);
2417
2418         if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_PARENT(zfsvfs),
2419             &parent, sizeof (parent))) != 0) {
2420                 ZFS_EXIT(zfsvfs);
2421                 return (error);
2422         }
2423
2424         /*
2425          * If we are not given an eof variable,
2426          * use a local one.
2427          */
2428         if (eofp == NULL)
2429                 eofp = &local_eof;
2430
2431         /*
2432          * Check for valid iov_len.
2433          */
2434         if (uio->uio_iov->iov_len <= 0) {
2435                 ZFS_EXIT(zfsvfs);
2436                 return (SET_ERROR(EINVAL));
2437         }
2438
2439         /*
2440          * Quit if directory has been removed (posix)
2441          */
2442         if ((*eofp = zp->z_unlinked) != 0) {
2443                 ZFS_EXIT(zfsvfs);
2444                 return (0);
2445         }
2446
2447         error = 0;
2448         os = zfsvfs->z_os;
2449         offset = uio->uio_loffset;
2450         prefetch = zp->z_zn_prefetch;
2451
2452         /*
2453          * Initialize the iterator cursor.
2454          */
2455         if (offset <= 3) {
2456                 /*
2457                  * Start iteration from the beginning of the directory.
2458                  */
2459                 zap_cursor_init(&zc, os, zp->z_id);
2460         } else {
2461                 /*
2462                  * The offset is a serialized cursor.
2463                  */
2464                 zap_cursor_init_serialized(&zc, os, zp->z_id, offset);
2465         }
2466
2467         /*
2468          * Get space to change directory entries into fs independent format.
2469          */
2470         iovp = uio->uio_iov;
2471         bytes_wanted = iovp->iov_len;
2472         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1) {
2473                 bufsize = bytes_wanted;
2474                 outbuf = kmem_alloc(bufsize, KM_SLEEP);
2475                 odp = (struct dirent64 *)outbuf;
2476         } else {
2477                 bufsize = bytes_wanted;
2478                 outbuf = NULL;
2479                 odp = (struct dirent64 *)iovp->iov_base;
2480         }
2481         eodp = (struct edirent *)odp;
2482
2483         if (ncookies != NULL) {
2484                 /*
2485                  * Minimum entry size is dirent size and 1 byte for a file name.
2486                  */
2487                 ncooks = uio->uio_resid / (sizeof(struct dirent) - sizeof(((struct dirent *)NULL)->d_name) + 1);
2488                 cooks = malloc(ncooks * sizeof(u_long), M_TEMP, M_WAITOK);
2489                 *cookies = cooks;
2490                 *ncookies = ncooks;
2491         }
2492         /*
2493          * If this VFS supports the system attribute view interface; and
2494          * we're looking at an extended attribute directory; and we care
2495          * about normalization conflicts on this vfs; then we must check
2496          * for normalization conflicts with the sysattr name space.
2497          */
2498 #ifdef TODO
2499         check_sysattrs = vfs_has_feature(vp->v_vfsp, VFSFT_SYSATTR_VIEWS) &&
2500             (vp->v_flag & V_XATTRDIR) && zfsvfs->z_norm &&
2501             (flags & V_RDDIR_ENTFLAGS);
2502 #else
2503         check_sysattrs = 0;
2504 #endif
2505
2506         /*
2507          * Transform to file-system independent format
2508          */
2509         outcount = 0;
2510         while (outcount < bytes_wanted) {
2511                 ino64_t objnum;
2512                 ushort_t reclen;
2513                 off64_t *next = NULL;
2514
2515                 /*
2516                  * Special case `.', `..', and `.zfs'.
2517                  */
2518                 if (offset == 0) {
2519                         (void) strcpy(zap.za_name, ".");
2520                         zap.za_normalization_conflict = 0;
2521                         objnum = zp->z_id;
2522                         type = DT_DIR;
2523                 } else if (offset == 1) {
2524                         (void) strcpy(zap.za_name, "..");
2525                         zap.za_normalization_conflict = 0;
2526                         objnum = parent;
2527                         type = DT_DIR;
2528                 } else if (offset == 2 && zfs_show_ctldir(zp)) {
2529                         (void) strcpy(zap.za_name, ZFS_CTLDIR_NAME);
2530                         zap.za_normalization_conflict = 0;
2531                         objnum = ZFSCTL_INO_ROOT;
2532                         type = DT_DIR;
2533                 } else {
2534                         /*
2535                          * Grab next entry.
2536                          */
2537                         if (error = zap_cursor_retrieve(&zc, &zap)) {
2538                                 if ((*eofp = (error == ENOENT)) != 0)
2539                                         break;
2540                                 else
2541                                         goto update;
2542                         }
2543
2544                         if (zap.za_integer_length != 8 ||
2545                             zap.za_num_integers != 1) {
2546                                 cmn_err(CE_WARN, "zap_readdir: bad directory "
2547                                     "entry, obj = %lld, offset = %lld\n",
2548                                     (u_longlong_t)zp->z_id,
2549                                     (u_longlong_t)offset);
2550                                 error = SET_ERROR(ENXIO);
2551                                 goto update;
2552                         }
2553
2554                         objnum = ZFS_DIRENT_OBJ(zap.za_first_integer);
2555                         /*
2556                          * MacOS X can extract the object type here such as:
2557                          * uint8_t type = ZFS_DIRENT_TYPE(zap.za_first_integer);
2558                          */
2559                         type = ZFS_DIRENT_TYPE(zap.za_first_integer);
2560
2561                         if (check_sysattrs && !zap.za_normalization_conflict) {
2562 #ifdef TODO
2563                                 zap.za_normalization_conflict =
2564                                     xattr_sysattr_casechk(zap.za_name);
2565 #else
2566                                 panic("%s:%u: TODO", __func__, __LINE__);
2567 #endif
2568                         }
2569                 }
2570
2571                 if (flags & V_RDDIR_ACCFILTER) {
2572                         /*
2573                          * If we have no access at all, don't include
2574                          * this entry in the returned information
2575                          */
2576                         znode_t *ezp;
2577                         if (zfs_zget(zp->z_zfsvfs, objnum, &ezp) != 0)
2578                                 goto skip_entry;
2579                         if (!zfs_has_access(ezp, cr)) {
2580                                 VN_RELE(ZTOV(ezp));
2581                                 goto skip_entry;
2582                         }
2583                         VN_RELE(ZTOV(ezp));
2584                 }
2585
2586                 if (flags & V_RDDIR_ENTFLAGS)
2587                         reclen = EDIRENT_RECLEN(strlen(zap.za_name));
2588                 else
2589                         reclen = DIRENT64_RECLEN(strlen(zap.za_name));
2590
2591                 /*
2592                  * Will this entry fit in the buffer?
2593                  */
2594                 if (outcount + reclen > bufsize) {
2595                         /*
2596                          * Did we manage to fit anything in the buffer?
2597                          */
2598                         if (!outcount) {
2599                                 error = SET_ERROR(EINVAL);
2600                                 goto update;
2601                         }
2602                         break;
2603                 }
2604                 if (flags & V_RDDIR_ENTFLAGS) {
2605                         /*
2606                          * Add extended flag entry:
2607                          */
2608                         eodp->ed_ino = objnum;
2609                         eodp->ed_reclen = reclen;
2610                         /* NOTE: ed_off is the offset for the *next* entry */
2611                         next = &(eodp->ed_off);
2612                         eodp->ed_eflags = zap.za_normalization_conflict ?
2613                             ED_CASE_CONFLICT : 0;
2614                         (void) strncpy(eodp->ed_name, zap.za_name,
2615                             EDIRENT_NAMELEN(reclen));
2616                         eodp = (edirent_t *)((intptr_t)eodp + reclen);
2617                 } else {
2618                         /*
2619                          * Add normal entry:
2620                          */
2621                         odp->d_ino = objnum;
2622                         odp->d_reclen = reclen;
2623                         odp->d_namlen = strlen(zap.za_name);
2624                         (void) strlcpy(odp->d_name, zap.za_name, odp->d_namlen + 1);
2625                         odp->d_type = type;
2626                         odp = (dirent64_t *)((intptr_t)odp + reclen);
2627                 }
2628                 outcount += reclen;
2629
2630                 ASSERT(outcount <= bufsize);
2631
2632                 /* Prefetch znode */
2633                 if (prefetch)
2634                         dmu_prefetch(os, objnum, 0, 0);
2635
2636         skip_entry:
2637                 /*
2638                  * Move to the next entry, fill in the previous offset.
2639                  */
2640                 if (offset > 2 || (offset == 2 && !zfs_show_ctldir(zp))) {
2641                         zap_cursor_advance(&zc);
2642                         offset = zap_cursor_serialize(&zc);
2643                 } else {
2644                         offset += 1;
2645                 }
2646
2647                 if (cooks != NULL) {
2648                         *cooks++ = offset;
2649                         ncooks--;
2650                         KASSERT(ncooks >= 0, ("ncookies=%d", ncooks));
2651                 }
2652         }
2653         zp->z_zn_prefetch = B_FALSE; /* a lookup will re-enable pre-fetching */
2654
2655         /* Subtract unused cookies */
2656         if (ncookies != NULL)
2657                 *ncookies -= ncooks;
2658
2659         if (uio->uio_segflg == UIO_SYSSPACE && uio->uio_iovcnt == 1) {
2660                 iovp->iov_base += outcount;
2661                 iovp->iov_len -= outcount;
2662                 uio->uio_resid -= outcount;
2663         } else if (error = uiomove(outbuf, (long)outcount, UIO_READ, uio)) {
2664                 /*
2665                  * Reset the pointer.
2666                  */
2667                 offset = uio->uio_loffset;
2668         }
2669
2670 update:
2671         zap_cursor_fini(&zc);
2672         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
2673                 kmem_free(outbuf, bufsize);
2674
2675         if (error == ENOENT)
2676                 error = 0;
2677
2678         ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
2679
2680         uio->uio_loffset = offset;
2681         ZFS_EXIT(zfsvfs);
2682         if (error != 0 && cookies != NULL) {
2683                 free(*cookies, M_TEMP);
2684                 *cookies = NULL;
2685                 *ncookies = 0;
2686         }
2687         return (error);
2688 }
2689
2690 ulong_t zfs_fsync_sync_cnt = 4;
2691
2692 static int
2693 zfs_fsync(vnode_t *vp, int syncflag, cred_t *cr, caller_context_t *ct)
2694 {
2695         znode_t *zp = VTOZ(vp);
2696         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
2697
2698         (void) tsd_set(zfs_fsyncer_key, (void *)zfs_fsync_sync_cnt);
2699
2700         if (zfsvfs->z_os->os_sync != ZFS_SYNC_DISABLED) {
2701                 ZFS_ENTER(zfsvfs);
2702                 ZFS_VERIFY_ZP(zp);
2703                 zil_commit(zfsvfs->z_log, zp->z_id);
2704                 ZFS_EXIT(zfsvfs);
2705         }
2706         return (0);
2707 }
2708
2709
2710 /*
2711  * Get the requested file attributes and place them in the provided
2712  * vattr structure.
2713  *
2714  *      IN:     vp      - vnode of file.
2715  *              vap     - va_mask identifies requested attributes.
2716  *                        If AT_XVATTR set, then optional attrs are requested
2717  *              flags   - ATTR_NOACLCHECK (CIFS server context)
2718  *              cr      - credentials of caller.
2719  *              ct      - caller context
2720  *
2721  *      OUT:    vap     - attribute values.
2722  *
2723  *      RETURN: 0 (always succeeds).
2724  */
2725 /* ARGSUSED */
2726 static int
2727 zfs_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr,
2728     caller_context_t *ct)
2729 {
2730         znode_t *zp = VTOZ(vp);
2731         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
2732         int     error = 0;
2733         uint32_t blksize;
2734         u_longlong_t nblocks;
2735         uint64_t links;
2736         uint64_t mtime[2], ctime[2], crtime[2], rdev;
2737         xvattr_t *xvap = (xvattr_t *)vap;       /* vap may be an xvattr_t * */
2738         xoptattr_t *xoap = NULL;
2739         boolean_t skipaclchk = (flags & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
2740         sa_bulk_attr_t bulk[4];
2741         int count = 0;
2742
2743         ZFS_ENTER(zfsvfs);
2744         ZFS_VERIFY_ZP(zp);
2745
2746         zfs_fuid_map_ids(zp, cr, &vap->va_uid, &vap->va_gid);
2747
2748         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
2749         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL, &ctime, 16);
2750         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CRTIME(zfsvfs), NULL, &crtime, 16);
2751         if (vp->v_type == VBLK || vp->v_type == VCHR)
2752                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_RDEV(zfsvfs), NULL,
2753                     &rdev, 8);
2754
2755         if ((error = sa_bulk_lookup(zp->z_sa_hdl, bulk, count)) != 0) {
2756                 ZFS_EXIT(zfsvfs);
2757                 return (error);
2758         }
2759
2760         /*
2761          * If ACL is trivial don't bother looking for ACE_READ_ATTRIBUTES.
2762          * Also, if we are the owner don't bother, since owner should
2763          * always be allowed to read basic attributes of file.
2764          */
2765         if (!(zp->z_pflags & ZFS_ACL_TRIVIAL) &&
2766             (vap->va_uid != crgetuid(cr))) {
2767                 if (error = zfs_zaccess(zp, ACE_READ_ATTRIBUTES, 0,
2768                     skipaclchk, cr)) {
2769                         ZFS_EXIT(zfsvfs);
2770                         return (error);
2771                 }
2772         }
2773
2774         /*
2775          * Return all attributes.  It's cheaper to provide the answer
2776          * than to determine whether we were asked the question.
2777          */
2778
2779         mutex_enter(&zp->z_lock);
2780         vap->va_type = IFTOVT(zp->z_mode);
2781         vap->va_mode = zp->z_mode & ~S_IFMT;
2782 #ifdef sun
2783         vap->va_fsid = zp->z_zfsvfs->z_vfs->vfs_dev;
2784 #else
2785         vap->va_fsid = vp->v_mount->mnt_stat.f_fsid.val[0];
2786 #endif
2787         vap->va_nodeid = zp->z_id;
2788         if ((vp->v_flag & VROOT) && zfs_show_ctldir(zp))
2789                 links = zp->z_links + 1;
2790         else
2791                 links = zp->z_links;
2792         vap->va_nlink = MIN(links, LINK_MAX);   /* nlink_t limit! */
2793         vap->va_size = zp->z_size;
2794 #ifdef sun
2795         vap->va_rdev = vp->v_rdev;
2796 #else
2797         if (vp->v_type == VBLK || vp->v_type == VCHR)
2798                 vap->va_rdev = zfs_cmpldev(rdev);
2799 #endif
2800         vap->va_seq = zp->z_seq;
2801         vap->va_flags = 0;      /* FreeBSD: Reset chflags(2) flags. */
2802
2803         /*
2804          * Add in any requested optional attributes and the create time.
2805          * Also set the corresponding bits in the returned attribute bitmap.
2806          */
2807         if ((xoap = xva_getxoptattr(xvap)) != NULL && zfsvfs->z_use_fuids) {
2808                 if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE)) {
2809                         xoap->xoa_archive =
2810                             ((zp->z_pflags & ZFS_ARCHIVE) != 0);
2811                         XVA_SET_RTN(xvap, XAT_ARCHIVE);
2812                 }
2813
2814                 if (XVA_ISSET_REQ(xvap, XAT_READONLY)) {
2815                         xoap->xoa_readonly =
2816                             ((zp->z_pflags & ZFS_READONLY) != 0);
2817                         XVA_SET_RTN(xvap, XAT_READONLY);
2818                 }
2819
2820                 if (XVA_ISSET_REQ(xvap, XAT_SYSTEM)) {
2821                         xoap->xoa_system =
2822                             ((zp->z_pflags & ZFS_SYSTEM) != 0);
2823                         XVA_SET_RTN(xvap, XAT_SYSTEM);
2824                 }
2825
2826                 if (XVA_ISSET_REQ(xvap, XAT_HIDDEN)) {
2827                         xoap->xoa_hidden =
2828                             ((zp->z_pflags & ZFS_HIDDEN) != 0);
2829                         XVA_SET_RTN(xvap, XAT_HIDDEN);
2830                 }
2831
2832                 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
2833                         xoap->xoa_nounlink =
2834                             ((zp->z_pflags & ZFS_NOUNLINK) != 0);
2835                         XVA_SET_RTN(xvap, XAT_NOUNLINK);
2836                 }
2837
2838                 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
2839                         xoap->xoa_immutable =
2840                             ((zp->z_pflags & ZFS_IMMUTABLE) != 0);
2841                         XVA_SET_RTN(xvap, XAT_IMMUTABLE);
2842                 }
2843
2844                 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
2845                         xoap->xoa_appendonly =
2846                             ((zp->z_pflags & ZFS_APPENDONLY) != 0);
2847                         XVA_SET_RTN(xvap, XAT_APPENDONLY);
2848                 }
2849
2850                 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
2851                         xoap->xoa_nodump =
2852                             ((zp->z_pflags & ZFS_NODUMP) != 0);
2853                         XVA_SET_RTN(xvap, XAT_NODUMP);
2854                 }
2855
2856                 if (XVA_ISSET_REQ(xvap, XAT_OPAQUE)) {
2857                         xoap->xoa_opaque =
2858                             ((zp->z_pflags & ZFS_OPAQUE) != 0);
2859                         XVA_SET_RTN(xvap, XAT_OPAQUE);
2860                 }
2861
2862                 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
2863                         xoap->xoa_av_quarantined =
2864                             ((zp->z_pflags & ZFS_AV_QUARANTINED) != 0);
2865                         XVA_SET_RTN(xvap, XAT_AV_QUARANTINED);
2866                 }
2867
2868                 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
2869                         xoap->xoa_av_modified =
2870                             ((zp->z_pflags & ZFS_AV_MODIFIED) != 0);
2871                         XVA_SET_RTN(xvap, XAT_AV_MODIFIED);
2872                 }
2873
2874                 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP) &&
2875                     vp->v_type == VREG) {
2876                         zfs_sa_get_scanstamp(zp, xvap);
2877                 }
2878
2879                 if (XVA_ISSET_REQ(xvap, XAT_CREATETIME)) {
2880                         uint64_t times[2];
2881
2882                         (void) sa_lookup(zp->z_sa_hdl, SA_ZPL_CRTIME(zfsvfs),
2883                             times, sizeof (times));
2884                         ZFS_TIME_DECODE(&xoap->xoa_createtime, times);
2885                         XVA_SET_RTN(xvap, XAT_CREATETIME);
2886                 }
2887
2888                 if (XVA_ISSET_REQ(xvap, XAT_REPARSE)) {
2889                         xoap->xoa_reparse = ((zp->z_pflags & ZFS_REPARSE) != 0);
2890                         XVA_SET_RTN(xvap, XAT_REPARSE);
2891                 }
2892                 if (XVA_ISSET_REQ(xvap, XAT_GEN)) {
2893                         xoap->xoa_generation = zp->z_gen;
2894                         XVA_SET_RTN(xvap, XAT_GEN);
2895                 }
2896
2897                 if (XVA_ISSET_REQ(xvap, XAT_OFFLINE)) {
2898                         xoap->xoa_offline =
2899                             ((zp->z_pflags & ZFS_OFFLINE) != 0);
2900                         XVA_SET_RTN(xvap, XAT_OFFLINE);
2901                 }
2902
2903                 if (XVA_ISSET_REQ(xvap, XAT_SPARSE)) {
2904                         xoap->xoa_sparse =
2905                             ((zp->z_pflags & ZFS_SPARSE) != 0);
2906                         XVA_SET_RTN(xvap, XAT_SPARSE);
2907                 }
2908         }
2909
2910         ZFS_TIME_DECODE(&vap->va_atime, zp->z_atime);
2911         ZFS_TIME_DECODE(&vap->va_mtime, mtime);
2912         ZFS_TIME_DECODE(&vap->va_ctime, ctime);
2913         ZFS_TIME_DECODE(&vap->va_birthtime, crtime);
2914
2915         mutex_exit(&zp->z_lock);
2916
2917         sa_object_size(zp->z_sa_hdl, &blksize, &nblocks);
2918         vap->va_blksize = blksize;
2919         vap->va_bytes = nblocks << 9;   /* nblocks * 512 */
2920
2921         if (zp->z_blksz == 0) {
2922                 /*
2923                  * Block size hasn't been set; suggest maximal I/O transfers.
2924                  */
2925                 vap->va_blksize = zfsvfs->z_max_blksz;
2926         }
2927
2928         ZFS_EXIT(zfsvfs);
2929         return (0);
2930 }
2931
2932 /*
2933  * Set the file attributes to the values contained in the
2934  * vattr structure.
2935  *
2936  *      IN:     vp      - vnode of file to be modified.
2937  *              vap     - new attribute values.
2938  *                        If AT_XVATTR set, then optional attrs are being set
2939  *              flags   - ATTR_UTIME set if non-default time values provided.
2940  *                      - ATTR_NOACLCHECK (CIFS context only).
2941  *              cr      - credentials of caller.
2942  *              ct      - caller context
2943  *
2944  *      RETURN: 0 on success, error code on failure.
2945  *
2946  * Timestamps:
2947  *      vp - ctime updated, mtime updated if size changed.
2948  */
2949 /* ARGSUSED */
2950 static int
2951 zfs_setattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr,
2952     caller_context_t *ct)
2953 {
2954         znode_t         *zp = VTOZ(vp);
2955         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
2956         zilog_t         *zilog;
2957         dmu_tx_t        *tx;
2958         vattr_t         oldva;
2959         xvattr_t        tmpxvattr;
2960         uint_t          mask = vap->va_mask;
2961         uint_t          saved_mask = 0;
2962         uint64_t        saved_mode;
2963         int             trim_mask = 0;
2964         uint64_t        new_mode;
2965         uint64_t        new_uid, new_gid;
2966         uint64_t        xattr_obj;
2967         uint64_t        mtime[2], ctime[2];
2968         znode_t         *attrzp;
2969         int             need_policy = FALSE;
2970         int             err, err2;
2971         zfs_fuid_info_t *fuidp = NULL;
2972         xvattr_t *xvap = (xvattr_t *)vap;       /* vap may be an xvattr_t * */
2973         xoptattr_t      *xoap;
2974         zfs_acl_t       *aclp;
2975         boolean_t skipaclchk = (flags & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
2976         boolean_t       fuid_dirtied = B_FALSE;
2977         sa_bulk_attr_t  bulk[7], xattr_bulk[7];
2978         int             count = 0, xattr_count = 0;
2979
2980         if (mask == 0)
2981                 return (0);
2982
2983         if (mask & AT_NOSET)
2984                 return (SET_ERROR(EINVAL));
2985
2986         ZFS_ENTER(zfsvfs);
2987         ZFS_VERIFY_ZP(zp);
2988
2989         zilog = zfsvfs->z_log;
2990
2991         /*
2992          * Make sure that if we have ephemeral uid/gid or xvattr specified
2993          * that file system is at proper version level
2994          */
2995
2996         if (zfsvfs->z_use_fuids == B_FALSE &&
2997             (((mask & AT_UID) && IS_EPHEMERAL(vap->va_uid)) ||
2998             ((mask & AT_GID) && IS_EPHEMERAL(vap->va_gid)) ||
2999             (mask & AT_XVATTR))) {
3000                 ZFS_EXIT(zfsvfs);
3001                 return (SET_ERROR(EINVAL));
3002         }
3003
3004         if (mask & AT_SIZE && vp->v_type == VDIR) {
3005                 ZFS_EXIT(zfsvfs);
3006                 return (SET_ERROR(EISDIR));
3007         }
3008
3009         if (mask & AT_SIZE && vp->v_type != VREG && vp->v_type != VFIFO) {
3010                 ZFS_EXIT(zfsvfs);
3011                 return (SET_ERROR(EINVAL));
3012         }
3013
3014         /*
3015          * If this is an xvattr_t, then get a pointer to the structure of
3016          * optional attributes.  If this is NULL, then we have a vattr_t.
3017          */
3018         xoap = xva_getxoptattr(xvap);
3019
3020         xva_init(&tmpxvattr);
3021
3022         /*
3023          * Immutable files can only alter immutable bit and atime
3024          */
3025         if ((zp->z_pflags & ZFS_IMMUTABLE) &&
3026             ((mask & (AT_SIZE|AT_UID|AT_GID|AT_MTIME|AT_MODE)) ||
3027             ((mask & AT_XVATTR) && XVA_ISSET_REQ(xvap, XAT_CREATETIME)))) {
3028                 ZFS_EXIT(zfsvfs);
3029                 return (SET_ERROR(EPERM));
3030         }
3031
3032         if ((mask & AT_SIZE) && (zp->z_pflags & ZFS_READONLY)) {
3033                 ZFS_EXIT(zfsvfs);
3034                 return (SET_ERROR(EPERM));
3035         }
3036
3037         /*
3038          * Verify timestamps doesn't overflow 32 bits.
3039          * ZFS can handle large timestamps, but 32bit syscalls can't
3040          * handle times greater than 2039.  This check should be removed
3041          * once large timestamps are fully supported.
3042          */
3043         if (mask & (AT_ATIME | AT_MTIME)) {
3044                 if (((mask & AT_ATIME) && TIMESPEC_OVERFLOW(&vap->va_atime)) ||
3045                     ((mask & AT_MTIME) && TIMESPEC_OVERFLOW(&vap->va_mtime))) {
3046                         ZFS_EXIT(zfsvfs);
3047                         return (SET_ERROR(EOVERFLOW));
3048                 }
3049         }
3050
3051 top:
3052         attrzp = NULL;
3053         aclp = NULL;
3054
3055         /* Can this be moved to before the top label? */
3056         if (zfsvfs->z_vfs->vfs_flag & VFS_RDONLY) {
3057                 ZFS_EXIT(zfsvfs);
3058                 return (SET_ERROR(EROFS));
3059         }
3060
3061         /*
3062          * First validate permissions
3063          */
3064
3065         if (mask & AT_SIZE) {
3066                 /*
3067                  * XXX - Note, we are not providing any open
3068                  * mode flags here (like FNDELAY), so we may
3069                  * block if there are locks present... this
3070                  * should be addressed in openat().
3071                  */
3072                 /* XXX - would it be OK to generate a log record here? */
3073                 err = zfs_freesp(zp, vap->va_size, 0, 0, FALSE);
3074                 if (err) {
3075                         ZFS_EXIT(zfsvfs);
3076                         return (err);
3077                 }
3078         }
3079
3080         if (mask & (AT_ATIME|AT_MTIME) ||
3081             ((mask & AT_XVATTR) && (XVA_ISSET_REQ(xvap, XAT_HIDDEN) ||
3082             XVA_ISSET_REQ(xvap, XAT_READONLY) ||
3083             XVA_ISSET_REQ(xvap, XAT_ARCHIVE) ||
3084             XVA_ISSET_REQ(xvap, XAT_OFFLINE) ||
3085             XVA_ISSET_REQ(xvap, XAT_SPARSE) ||
3086             XVA_ISSET_REQ(xvap, XAT_CREATETIME) ||
3087             XVA_ISSET_REQ(xvap, XAT_SYSTEM)))) {
3088                 need_policy = zfs_zaccess(zp, ACE_WRITE_ATTRIBUTES, 0,
3089                     skipaclchk, cr);
3090         }
3091
3092         if (mask & (AT_UID|AT_GID)) {
3093                 int     idmask = (mask & (AT_UID|AT_GID));
3094                 int     take_owner;
3095                 int     take_group;
3096
3097                 /*
3098                  * NOTE: even if a new mode is being set,
3099                  * we may clear S_ISUID/S_ISGID bits.
3100                  */
3101
3102                 if (!(mask & AT_MODE))
3103                         vap->va_mode = zp->z_mode;
3104
3105                 /*
3106                  * Take ownership or chgrp to group we are a member of
3107                  */
3108
3109                 take_owner = (mask & AT_UID) && (vap->va_uid == crgetuid(cr));
3110                 take_group = (mask & AT_GID) &&
3111                     zfs_groupmember(zfsvfs, vap->va_gid, cr);
3112
3113                 /*
3114                  * If both AT_UID and AT_GID are set then take_owner and
3115                  * take_group must both be set in order to allow taking
3116                  * ownership.
3117                  *
3118                  * Otherwise, send the check through secpolicy_vnode_setattr()
3119                  *
3120                  */
3121
3122                 if (((idmask == (AT_UID|AT_GID)) && take_owner && take_group) ||
3123                     ((idmask == AT_UID) && take_owner) ||
3124                     ((idmask == AT_GID) && take_group)) {
3125                         if (zfs_zaccess(zp, ACE_WRITE_OWNER, 0,
3126                             skipaclchk, cr) == 0) {
3127                                 /*
3128                                  * Remove setuid/setgid for non-privileged users
3129                                  */
3130                                 secpolicy_setid_clear(vap, vp, cr);
3131                                 trim_mask = (mask & (AT_UID|AT_GID));
3132                         } else {
3133                                 need_policy =  TRUE;
3134                         }
3135                 } else {
3136                         need_policy =  TRUE;
3137                 }
3138         }
3139
3140         mutex_enter(&zp->z_lock);
3141         oldva.va_mode = zp->z_mode;
3142         zfs_fuid_map_ids(zp, cr, &oldva.va_uid, &oldva.va_gid);
3143         if (mask & AT_XVATTR) {
3144                 /*
3145                  * Update xvattr mask to include only those attributes
3146                  * that are actually changing.
3147                  *
3148                  * the bits will be restored prior to actually setting
3149                  * the attributes so the caller thinks they were set.
3150                  */
3151                 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
3152                         if (xoap->xoa_appendonly !=
3153                             ((zp->z_pflags & ZFS_APPENDONLY) != 0)) {
3154                                 need_policy = TRUE;
3155                         } else {
3156                                 XVA_CLR_REQ(xvap, XAT_APPENDONLY);
3157                                 XVA_SET_REQ(&tmpxvattr, XAT_APPENDONLY);
3158                         }
3159                 }
3160
3161                 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
3162                         if (xoap->xoa_nounlink !=
3163                             ((zp->z_pflags & ZFS_NOUNLINK) != 0)) {
3164                                 need_policy = TRUE;
3165                         } else {
3166                                 XVA_CLR_REQ(xvap, XAT_NOUNLINK);
3167                                 XVA_SET_REQ(&tmpxvattr, XAT_NOUNLINK);
3168                         }
3169                 }
3170
3171                 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
3172                         if (xoap->xoa_immutable !=
3173                             ((zp->z_pflags & ZFS_IMMUTABLE) != 0)) {
3174                                 need_policy = TRUE;
3175                         } else {
3176                                 XVA_CLR_REQ(xvap, XAT_IMMUTABLE);
3177                                 XVA_SET_REQ(&tmpxvattr, XAT_IMMUTABLE);
3178                         }
3179                 }
3180
3181                 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
3182                         if (xoap->xoa_nodump !=
3183                             ((zp->z_pflags & ZFS_NODUMP) != 0)) {
3184                                 need_policy = TRUE;
3185                         } else {
3186                                 XVA_CLR_REQ(xvap, XAT_NODUMP);
3187                                 XVA_SET_REQ(&tmpxvattr, XAT_NODUMP);
3188                         }
3189                 }
3190
3191                 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
3192                         if (xoap->xoa_av_modified !=
3193                             ((zp->z_pflags & ZFS_AV_MODIFIED) != 0)) {
3194                                 need_policy = TRUE;
3195                         } else {
3196                                 XVA_CLR_REQ(xvap, XAT_AV_MODIFIED);
3197                                 XVA_SET_REQ(&tmpxvattr, XAT_AV_MODIFIED);
3198                         }
3199                 }
3200
3201                 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
3202                         if ((vp->v_type != VREG &&
3203                             xoap->xoa_av_quarantined) ||
3204                             xoap->xoa_av_quarantined !=
3205                             ((zp->z_pflags & ZFS_AV_QUARANTINED) != 0)) {
3206                                 need_policy = TRUE;
3207                         } else {
3208                                 XVA_CLR_REQ(xvap, XAT_AV_QUARANTINED);
3209                                 XVA_SET_REQ(&tmpxvattr, XAT_AV_QUARANTINED);
3210                         }
3211                 }
3212
3213                 if (XVA_ISSET_REQ(xvap, XAT_REPARSE)) {
3214                         mutex_exit(&zp->z_lock);
3215                         ZFS_EXIT(zfsvfs);
3216                         return (SET_ERROR(EPERM));
3217                 }
3218
3219                 if (need_policy == FALSE &&
3220                     (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP) ||
3221                     XVA_ISSET_REQ(xvap, XAT_OPAQUE))) {
3222                         need_policy = TRUE;
3223                 }
3224         }
3225
3226         mutex_exit(&zp->z_lock);
3227
3228         if (mask & AT_MODE) {
3229                 if (zfs_zaccess(zp, ACE_WRITE_ACL, 0, skipaclchk, cr) == 0) {
3230                         err = secpolicy_setid_setsticky_clear(vp, vap,
3231                             &oldva, cr);
3232                         if (err) {
3233                                 ZFS_EXIT(zfsvfs);
3234                                 return (err);
3235                         }
3236                         trim_mask |= AT_MODE;
3237                 } else {
3238                         need_policy = TRUE;
3239                 }
3240         }
3241
3242         if (need_policy) {
3243                 /*
3244                  * If trim_mask is set then take ownership
3245                  * has been granted or write_acl is present and user
3246                  * has the ability to modify mode.  In that case remove
3247                  * UID|GID and or MODE from mask so that
3248                  * secpolicy_vnode_setattr() doesn't revoke it.
3249                  */
3250
3251                 if (trim_mask) {
3252                         saved_mask = vap->va_mask;
3253                         vap->va_mask &= ~trim_mask;
3254                         if (trim_mask & AT_MODE) {
3255                                 /*
3256                                  * Save the mode, as secpolicy_vnode_setattr()
3257                                  * will overwrite it with ova.va_mode.
3258                                  */
3259                                 saved_mode = vap->va_mode;
3260                         }
3261                 }
3262                 err = secpolicy_vnode_setattr(cr, vp, vap, &oldva, flags,
3263                     (int (*)(void *, int, cred_t *))zfs_zaccess_unix, zp);
3264                 if (err) {
3265                         ZFS_EXIT(zfsvfs);
3266                         return (err);
3267                 }
3268
3269                 if (trim_mask) {
3270                         vap->va_mask |= saved_mask;
3271                         if (trim_mask & AT_MODE) {
3272                                 /*
3273                                  * Recover the mode after
3274                                  * secpolicy_vnode_setattr().
3275                                  */
3276                                 vap->va_mode = saved_mode;
3277                         }
3278                 }
3279         }
3280
3281         /*
3282          * secpolicy_vnode_setattr, or take ownership may have
3283          * changed va_mask
3284          */
3285         mask = vap->va_mask;
3286
3287         if ((mask & (AT_UID | AT_GID))) {
3288                 err = sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs),
3289                     &xattr_obj, sizeof (xattr_obj));
3290
3291                 if (err == 0 && xattr_obj) {
3292                         err = zfs_zget(zp->z_zfsvfs, xattr_obj, &attrzp);
3293                         if (err)
3294                                 goto out2;
3295                 }
3296                 if (mask & AT_UID) {
3297                         new_uid = zfs_fuid_create(zfsvfs,
3298                             (uint64_t)vap->va_uid, cr, ZFS_OWNER, &fuidp);
3299                         if (new_uid != zp->z_uid &&
3300                             zfs_fuid_overquota(zfsvfs, B_FALSE, new_uid)) {
3301                                 if (attrzp)
3302                                         VN_RELE(ZTOV(attrzp));
3303                                 err = SET_ERROR(EDQUOT);
3304                                 goto out2;
3305                         }
3306                 }
3307
3308                 if (mask & AT_GID) {
3309                         new_gid = zfs_fuid_create(zfsvfs, (uint64_t)vap->va_gid,
3310                             cr, ZFS_GROUP, &fuidp);
3311                         if (new_gid != zp->z_gid &&
3312                             zfs_fuid_overquota(zfsvfs, B_TRUE, new_gid)) {
3313                                 if (attrzp)
3314                                         VN_RELE(ZTOV(attrzp));
3315                                 err = SET_ERROR(EDQUOT);
3316                                 goto out2;
3317                         }
3318                 }
3319         }
3320         tx = dmu_tx_create(zfsvfs->z_os);
3321
3322         if (mask & AT_MODE) {
3323                 uint64_t pmode = zp->z_mode;
3324                 uint64_t acl_obj;
3325                 new_mode = (pmode & S_IFMT) | (vap->va_mode & ~S_IFMT);
3326
3327                 if (zp->z_zfsvfs->z_acl_mode == ZFS_ACL_RESTRICTED &&
3328                     !(zp->z_pflags & ZFS_ACL_TRIVIAL)) {
3329                         err = SET_ERROR(EPERM);
3330                         goto out;
3331                 }
3332
3333                 if (err = zfs_acl_chmod_setattr(zp, &aclp, new_mode))
3334                         goto out;
3335
3336                 mutex_enter(&zp->z_lock);
3337                 if (!zp->z_is_sa && ((acl_obj = zfs_external_acl(zp)) != 0)) {
3338                         /*
3339                          * Are we upgrading ACL from old V0 format
3340                          * to V1 format?
3341                          */
3342                         if (zfsvfs->z_version >= ZPL_VERSION_FUID &&
3343                             zfs_znode_acl_version(zp) ==
3344                             ZFS_ACL_VERSION_INITIAL) {
3345                                 dmu_tx_hold_free(tx, acl_obj, 0,
3346                                     DMU_OBJECT_END);
3347                                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
3348                                     0, aclp->z_acl_bytes);
3349                         } else {
3350                                 dmu_tx_hold_write(tx, acl_obj, 0,
3351                                     aclp->z_acl_bytes);
3352                         }
3353                 } else if (!zp->z_is_sa && aclp->z_acl_bytes > ZFS_ACE_SPACE) {
3354                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
3355                             0, aclp->z_acl_bytes);
3356                 }
3357                 mutex_exit(&zp->z_lock);
3358                 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
3359         } else {
3360                 if ((mask & AT_XVATTR) &&
3361                     XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP))
3362                         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
3363                 else
3364                         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
3365         }
3366
3367         if (attrzp) {
3368                 dmu_tx_hold_sa(tx, attrzp->z_sa_hdl, B_FALSE);
3369         }
3370
3371         fuid_dirtied = zfsvfs->z_fuid_dirty;
3372         if (fuid_dirtied)
3373                 zfs_fuid_txhold(zfsvfs, tx);
3374
3375         zfs_sa_upgrade_txholds(tx, zp);
3376
3377         err = dmu_tx_assign(tx, TXG_NOWAIT);
3378         if (err) {
3379                 if (err == ERESTART)
3380                         dmu_tx_wait(tx);
3381                 goto out;
3382         }
3383
3384         count = 0;
3385         /*
3386          * Set each attribute requested.
3387          * We group settings according to the locks they need to acquire.
3388          *
3389          * Note: you cannot set ctime directly, although it will be
3390          * updated as a side-effect of calling this function.
3391          */
3392
3393
3394         if (mask & (AT_UID|AT_GID|AT_MODE))
3395                 mutex_enter(&zp->z_acl_lock);
3396         mutex_enter(&zp->z_lock);
3397
3398         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
3399             &zp->z_pflags, sizeof (zp->z_pflags));
3400
3401         if (attrzp) {
3402                 if (mask & (AT_UID|AT_GID|AT_MODE))
3403                         mutex_enter(&attrzp->z_acl_lock);
3404                 mutex_enter(&attrzp->z_lock);
3405                 SA_ADD_BULK_ATTR(xattr_bulk, xattr_count,
3406                     SA_ZPL_FLAGS(zfsvfs), NULL, &attrzp->z_pflags,
3407                     sizeof (attrzp->z_pflags));
3408         }
3409
3410         if (mask & (AT_UID|AT_GID)) {
3411
3412                 if (mask & AT_UID) {
3413                         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_UID(zfsvfs), NULL,
3414                             &new_uid, sizeof (new_uid));
3415                         zp->z_uid = new_uid;
3416                         if (attrzp) {
3417                                 SA_ADD_BULK_ATTR(xattr_bulk, xattr_count,
3418                                     SA_ZPL_UID(zfsvfs), NULL, &new_uid,
3419                                     sizeof (new_uid));
3420                                 attrzp->z_uid = new_uid;
3421                         }
3422                 }
3423
3424                 if (mask & AT_GID) {
3425                         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GID(zfsvfs),
3426                             NULL, &new_gid, sizeof (new_gid));
3427                         zp->z_gid = new_gid;
3428                         if (attrzp) {
3429                                 SA_ADD_BULK_ATTR(xattr_bulk, xattr_count,
3430                                     SA_ZPL_GID(zfsvfs), NULL, &new_gid,
3431                                     sizeof (new_gid));
3432                                 attrzp->z_gid = new_gid;
3433                         }
3434                 }
3435                 if (!(mask & AT_MODE)) {
3436                         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zfsvfs),
3437                             NULL, &new_mode, sizeof (new_mode));
3438                         new_mode = zp->z_mode;
3439                 }
3440                 err = zfs_acl_chown_setattr(zp);
3441                 ASSERT(err == 0);
3442                 if (attrzp) {
3443                         err = zfs_acl_chown_setattr(attrzp);
3444                         ASSERT(err == 0);
3445                 }
3446         }
3447
3448         if (mask & AT_MODE) {
3449                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zfsvfs), NULL,
3450                     &new_mode, sizeof (new_mode));
3451                 zp->z_mode = new_mode;
3452                 ASSERT3U((uintptr_t)aclp, !=, 0);
3453                 err = zfs_aclset_common(zp, aclp, cr, tx);
3454                 ASSERT0(err);
3455                 if (zp->z_acl_cached)
3456                         zfs_acl_free(zp->z_acl_cached);
3457                 zp->z_acl_cached = aclp;
3458                 aclp = NULL;
3459         }
3460
3461
3462         if (mask & AT_ATIME) {
3463                 ZFS_TIME_ENCODE(&vap->va_atime, zp->z_atime);
3464                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ATIME(zfsvfs), NULL,
3465                     &zp->z_atime, sizeof (zp->z_atime));
3466         }
3467
3468         if (mask & AT_MTIME) {
3469                 ZFS_TIME_ENCODE(&vap->va_mtime, mtime);
3470                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL,
3471                     mtime, sizeof (mtime));
3472         }
3473
3474         /* XXX - shouldn't this be done *before* the ATIME/MTIME checks? */
3475         if (mask & AT_SIZE && !(mask & AT_MTIME)) {
3476                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs),
3477                     NULL, mtime, sizeof (mtime));
3478                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL,
3479                     &ctime, sizeof (ctime));
3480                 zfs_tstamp_update_setup(zp, CONTENT_MODIFIED, mtime, ctime,
3481                     B_TRUE);
3482         } else if (mask != 0) {
3483                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL,
3484                     &ctime, sizeof (ctime));
3485                 zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime, ctime,
3486                     B_TRUE);
3487                 if (attrzp) {
3488                         SA_ADD_BULK_ATTR(xattr_bulk, xattr_count,
3489                             SA_ZPL_CTIME(zfsvfs), NULL,
3490                             &ctime, sizeof (ctime));
3491                         zfs_tstamp_update_setup(attrzp, STATE_CHANGED,
3492                             mtime, ctime, B_TRUE);
3493                 }
3494         }
3495         /*
3496          * Do this after setting timestamps to prevent timestamp
3497          * update from toggling bit
3498          */
3499
3500         if (xoap && (mask & AT_XVATTR)) {
3501
3502                 /*
3503                  * restore trimmed off masks
3504                  * so that return masks can be set for caller.
3505                  */
3506
3507                 if (XVA_ISSET_REQ(&tmpxvattr, XAT_APPENDONLY)) {
3508                         XVA_SET_REQ(xvap, XAT_APPENDONLY);
3509                 }
3510                 if (XVA_ISSET_REQ(&tmpxvattr, XAT_NOUNLINK)) {
3511                         XVA_SET_REQ(xvap, XAT_NOUNLINK);
3512                 }
3513                 if (XVA_ISSET_REQ(&tmpxvattr, XAT_IMMUTABLE)) {
3514                         XVA_SET_REQ(xvap, XAT_IMMUTABLE);
3515                 }
3516                 if (XVA_ISSET_REQ(&tmpxvattr, XAT_NODUMP)) {
3517                         XVA_SET_REQ(xvap, XAT_NODUMP);
3518                 }
3519                 if (XVA_ISSET_REQ(&tmpxvattr, XAT_AV_MODIFIED)) {
3520                         XVA_SET_REQ(xvap, XAT_AV_MODIFIED);
3521                 }
3522                 if (XVA_ISSET_REQ(&tmpxvattr, XAT_AV_QUARANTINED)) {
3523                         XVA_SET_REQ(xvap, XAT_AV_QUARANTINED);
3524                 }
3525
3526                 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP))
3527                         ASSERT(vp->v_type == VREG);
3528
3529                 zfs_xvattr_set(zp, xvap, tx);
3530         }
3531
3532         if (fuid_dirtied)
3533                 zfs_fuid_sync(zfsvfs, tx);
3534
3535         if (mask != 0)
3536                 zfs_log_setattr(zilog, tx, TX_SETATTR, zp, vap, mask, fuidp);
3537
3538         mutex_exit(&zp->z_lock);
3539         if (mask & (AT_UID|AT_GID|AT_MODE))
3540                 mutex_exit(&zp->z_acl_lock);
3541
3542         if (attrzp) {
3543                 if (mask & (AT_UID|AT_GID|AT_MODE))
3544                         mutex_exit(&attrzp->z_acl_lock);
3545                 mutex_exit(&attrzp->z_lock);
3546         }
3547 out:
3548         if (err == 0 && attrzp) {
3549                 err2 = sa_bulk_update(attrzp->z_sa_hdl, xattr_bulk,
3550                     xattr_count, tx);
3551                 ASSERT(err2 == 0);
3552         }
3553
3554         if (attrzp)
3555                 VN_RELE(ZTOV(attrzp));
3556
3557         if (aclp)
3558                 zfs_acl_free(aclp);
3559
3560         if (fuidp) {
3561                 zfs_fuid_info_free(fuidp);
3562                 fuidp = NULL;
3563         }
3564
3565         if (err) {
3566                 dmu_tx_abort(tx);
3567                 if (err == ERESTART)
3568                         goto top;
3569         } else {
3570                 err2 = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
3571                 dmu_tx_commit(tx);
3572         }
3573
3574 out2:
3575         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
3576                 zil_commit(zilog, 0);
3577
3578         ZFS_EXIT(zfsvfs);
3579         return (err);
3580 }
3581
3582 typedef struct zfs_zlock {
3583         krwlock_t       *zl_rwlock;     /* lock we acquired */
3584         znode_t         *zl_znode;      /* znode we held */
3585         struct zfs_zlock *zl_next;      /* next in list */
3586 } zfs_zlock_t;
3587
3588 /*
3589  * Drop locks and release vnodes that were held by zfs_rename_lock().
3590  */
3591 static void
3592 zfs_rename_unlock(zfs_zlock_t **zlpp)
3593 {
3594         zfs_zlock_t *zl;
3595
3596         while ((zl = *zlpp) != NULL) {
3597                 if (zl->zl_znode != NULL)
3598                         VN_RELE(ZTOV(zl->zl_znode));
3599                 rw_exit(zl->zl_rwlock);
3600                 *zlpp = zl->zl_next;
3601                 kmem_free(zl, sizeof (*zl));
3602         }
3603 }
3604
3605 /*
3606  * Search back through the directory tree, using the ".." entries.
3607  * Lock each directory in the chain to prevent concurrent renames.
3608  * Fail any attempt to move a directory into one of its own descendants.
3609  * XXX - z_parent_lock can overlap with map or grow locks
3610  */
3611 static int
3612 zfs_rename_lock(znode_t *szp, znode_t *tdzp, znode_t *sdzp, zfs_zlock_t **zlpp)
3613 {
3614         zfs_zlock_t     *zl;
3615         znode_t         *zp = tdzp;
3616         uint64_t        rootid = zp->z_zfsvfs->z_root;
3617         uint64_t        oidp = zp->z_id;
3618         krwlock_t       *rwlp = &szp->z_parent_lock;
3619         krw_t           rw = RW_WRITER;
3620
3621         /*
3622          * First pass write-locks szp and compares to zp->z_id.
3623          * Later passes read-lock zp and compare to zp->z_parent.
3624          */
3625         do {
3626                 if (!rw_tryenter(rwlp, rw)) {
3627                         /*
3628                          * Another thread is renaming in this path.
3629                          * Note that if we are a WRITER, we don't have any
3630                          * parent_locks held yet.
3631                          */
3632                         if (rw == RW_READER && zp->z_id > szp->z_id) {
3633                                 /*
3634                                  * Drop our locks and restart
3635                                  */
3636                                 zfs_rename_unlock(&zl);
3637                                 *zlpp = NULL;
3638                                 zp = tdzp;
3639                                 oidp = zp->z_id;
3640                                 rwlp = &szp->z_parent_lock;
3641                                 rw = RW_WRITER;
3642                                 continue;
3643                         } else {
3644                                 /*
3645                                  * Wait for other thread to drop its locks
3646                                  */
3647                                 rw_enter(rwlp, rw);
3648                         }
3649                 }
3650
3651                 zl = kmem_alloc(sizeof (*zl), KM_SLEEP);
3652                 zl->zl_rwlock = rwlp;
3653                 zl->zl_znode = NULL;
3654                 zl->zl_next = *zlpp;
3655                 *zlpp = zl;
3656
3657                 if (oidp == szp->z_id)          /* We're a descendant of szp */
3658                         return (SET_ERROR(EINVAL));
3659
3660                 if (oidp == rootid)             /* We've hit the top */
3661                         return (0);
3662
3663                 if (rw == RW_READER) {          /* i.e. not the first pass */
3664                         int error = zfs_zget(zp->z_zfsvfs, oidp, &zp);
3665                         if (error)
3666                                 return (error);
3667                         zl->zl_znode = zp;
3668                 }
3669                 (void) sa_lookup(zp->z_sa_hdl, SA_ZPL_PARENT(zp->z_zfsvfs),
3670                     &oidp, sizeof (oidp));
3671                 rwlp = &zp->z_parent_lock;
3672                 rw = RW_READER;
3673
3674         } while (zp->z_id != sdzp->z_id);
3675
3676         return (0);
3677 }
3678
3679 /*
3680  * Move an entry from the provided source directory to the target
3681  * directory.  Change the entry name as indicated.
3682  *
3683  *      IN:     sdvp    - Source directory containing the "old entry".
3684  *              snm     - Old entry name.
3685  *              tdvp    - Target directory to contain the "new entry".
3686  *              tnm     - New entry name.
3687  *              cr      - credentials of caller.
3688  *              ct      - caller context
3689  *              flags   - case flags
3690  *
3691  *      RETURN: 0 on success, error code on failure.
3692  *
3693  * Timestamps:
3694  *      sdvp,tdvp - ctime|mtime updated
3695  */
3696 /*ARGSUSED*/
3697 static int
3698 zfs_rename(vnode_t *sdvp, char *snm, vnode_t *tdvp, char *tnm, cred_t *cr,
3699     caller_context_t *ct, int flags)
3700 {
3701         znode_t         *tdzp, *szp, *tzp;
3702         znode_t         *sdzp = VTOZ(sdvp);
3703         zfsvfs_t        *zfsvfs = sdzp->z_zfsvfs;
3704         zilog_t         *zilog;
3705         vnode_t         *realvp;
3706         zfs_dirlock_t   *sdl, *tdl;
3707         dmu_tx_t        *tx;
3708         zfs_zlock_t     *zl;
3709         int             cmp, serr, terr;
3710         int             error = 0;
3711         int             zflg = 0;
3712
3713         ZFS_ENTER(zfsvfs);
3714         ZFS_VERIFY_ZP(sdzp);
3715         zilog = zfsvfs->z_log;
3716
3717         /*
3718          * Make sure we have the real vp for the target directory.
3719          */
3720         if (VOP_REALVP(tdvp, &realvp, ct) == 0)
3721                 tdvp = realvp;
3722
3723         if (tdvp->v_vfsp != sdvp->v_vfsp || zfsctl_is_node(tdvp)) {
3724                 ZFS_EXIT(zfsvfs);
3725                 return (SET_ERROR(EXDEV));
3726         }
3727
3728         tdzp = VTOZ(tdvp);
3729         ZFS_VERIFY_ZP(tdzp);
3730         if (zfsvfs->z_utf8 && u8_validate(tnm,
3731             strlen(tnm), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
3732                 ZFS_EXIT(zfsvfs);
3733                 return (SET_ERROR(EILSEQ));
3734         }
3735
3736         if (flags & FIGNORECASE)
3737                 zflg |= ZCILOOK;
3738
3739 top:
3740         szp = NULL;
3741         tzp = NULL;
3742         zl = NULL;
3743
3744         /*
3745          * This is to prevent the creation of links into attribute space
3746          * by renaming a linked file into/outof an attribute directory.
3747          * See the comment in zfs_link() for why this is considered bad.
3748          */
3749         if ((tdzp->z_pflags & ZFS_XATTR) != (sdzp->z_pflags & ZFS_XATTR)) {
3750                 ZFS_EXIT(zfsvfs);
3751                 return (SET_ERROR(EINVAL));
3752         }
3753
3754         /*
3755          * Lock source and target directory entries.  To prevent deadlock,
3756          * a lock ordering must be defined.  We lock the directory with
3757          * the smallest object id first, or if it's a tie, the one with
3758          * the lexically first name.
3759          */
3760         if (sdzp->z_id < tdzp->z_id) {
3761                 cmp = -1;
3762         } else if (sdzp->z_id > tdzp->z_id) {
3763                 cmp = 1;
3764         } else {
3765                 /*
3766                  * First compare the two name arguments without
3767                  * considering any case folding.
3768                  */
3769                 int nofold = (zfsvfs->z_norm & ~U8_TEXTPREP_TOUPPER);
3770
3771                 cmp = u8_strcmp(snm, tnm, 0, nofold, U8_UNICODE_LATEST, &error);
3772                 ASSERT(error == 0 || !zfsvfs->z_utf8);
3773                 if (cmp == 0) {
3774                         /*
3775                          * POSIX: "If the old argument and the new argument
3776                          * both refer to links to the same existing file,
3777                          * the rename() function shall return successfully
3778                          * and perform no other action."
3779                          */
3780                         ZFS_EXIT(zfsvfs);
3781                         return (0);
3782                 }
3783                 /*
3784                  * If the file system is case-folding, then we may
3785                  * have some more checking to do.  A case-folding file
3786                  * system is either supporting mixed case sensitivity
3787                  * access or is completely case-insensitive.  Note
3788                  * that the file system is always case preserving.
3789                  *
3790                  * In mixed sensitivity mode case sensitive behavior
3791                  * is the default.  FIGNORECASE must be used to
3792                  * explicitly request case insensitive behavior.
3793                  *
3794                  * If the source and target names provided differ only
3795                  * by case (e.g., a request to rename 'tim' to 'Tim'),
3796                  * we will treat this as a special case in the
3797                  * case-insensitive mode: as long as the source name
3798                  * is an exact match, we will allow this to proceed as
3799                  * a name-change request.
3800                  */
3801                 if ((zfsvfs->z_case == ZFS_CASE_INSENSITIVE ||
3802                     (zfsvfs->z_case == ZFS_CASE_MIXED &&
3803                     flags & FIGNORECASE)) &&
3804                     u8_strcmp(snm, tnm, 0, zfsvfs->z_norm, U8_UNICODE_LATEST,
3805                     &error) == 0) {
3806                         /*
3807                          * case preserving rename request, require exact
3808                          * name matches
3809                          */
3810                         zflg |= ZCIEXACT;
3811                         zflg &= ~ZCILOOK;
3812                 }
3813         }
3814
3815         /*
3816          * If the source and destination directories are the same, we should
3817          * grab the z_name_lock of that directory only once.
3818          */
3819         if (sdzp == tdzp) {
3820                 zflg |= ZHAVELOCK;
3821                 rw_enter(&sdzp->z_name_lock, RW_READER);
3822         }
3823
3824         if (cmp < 0) {
3825                 serr = zfs_dirent_lock(&sdl, sdzp, snm, &szp,
3826                     ZEXISTS | zflg, NULL, NULL);
3827                 terr = zfs_dirent_lock(&tdl,
3828                     tdzp, tnm, &tzp, ZRENAMING | zflg, NULL, NULL);
3829         } else {
3830                 terr = zfs_dirent_lock(&tdl,
3831                     tdzp, tnm, &tzp, zflg, NULL, NULL);
3832                 serr = zfs_dirent_lock(&sdl,
3833                     sdzp, snm, &szp, ZEXISTS | ZRENAMING | zflg,
3834                     NULL, NULL);
3835         }
3836
3837         if (serr) {
3838                 /*
3839                  * Source entry invalid or not there.
3840                  */
3841                 if (!terr) {
3842                         zfs_dirent_unlock(tdl);
3843                         if (tzp)
3844                                 VN_RELE(ZTOV(tzp));
3845                 }
3846
3847                 if (sdzp == tdzp)
3848                         rw_exit(&sdzp->z_name_lock);
3849
3850                 /*
3851                  * FreeBSD: In OpenSolaris they only check if rename source is
3852                  * ".." here, because "." is handled in their lookup. This is
3853                  * not the case for FreeBSD, so we check for "." explicitly.
3854                  */
3855                 if (strcmp(snm, ".") == 0 || strcmp(snm, "..") == 0)
3856                         serr = SET_ERROR(EINVAL);
3857                 ZFS_EXIT(zfsvfs);
3858                 return (serr);
3859         }
3860         if (terr) {
3861                 zfs_dirent_unlock(sdl);
3862                 VN_RELE(ZTOV(szp));
3863
3864                 if (sdzp == tdzp)
3865                         rw_exit(&sdzp->z_name_lock);
3866
3867                 if (strcmp(tnm, "..") == 0)
3868                         terr = SET_ERROR(EINVAL);
3869                 ZFS_EXIT(zfsvfs);
3870                 return (terr);
3871         }
3872
3873         /*
3874          * Must have write access at the source to remove the old entry
3875          * and write access at the target to create the new entry.
3876          * Note that if target and source are the same, this can be
3877          * done in a single check.
3878          */
3879
3880         if (error = zfs_zaccess_rename(sdzp, szp, tdzp, tzp, cr))
3881                 goto out;
3882
3883         if (ZTOV(szp)->v_type == VDIR) {
3884                 /*
3885                  * Check to make sure rename is valid.
3886                  * Can't do a move like this: /usr/a/b to /usr/a/b/c/d
3887                  */
3888                 if (error = zfs_rename_lock(szp, tdzp, sdzp, &zl))
3889                         goto out;
3890         }
3891
3892         /*
3893          * Does target exist?
3894          */
3895         if (tzp) {
3896                 /*
3897                  * Source and target must be the same type.
3898                  */
3899                 if (ZTOV(szp)->v_type == VDIR) {
3900                         if (ZTOV(tzp)->v_type != VDIR) {
3901                                 error = SET_ERROR(ENOTDIR);
3902                                 goto out;
3903                         }
3904                 } else {
3905                         if (ZTOV(tzp)->v_type == VDIR) {
3906                                 error = SET_ERROR(EISDIR);
3907                                 goto out;
3908                         }
3909                 }
3910                 /*
3911                  * POSIX dictates that when the source and target
3912                  * entries refer to the same file object, rename
3913                  * must do nothing and exit without error.
3914                  */
3915                 if (szp->z_id == tzp->z_id) {
3916                         error = 0;
3917                         goto out;
3918                 }
3919         }
3920
3921         vnevent_rename_src(ZTOV(szp), sdvp, snm, ct);
3922         if (tzp)
3923                 vnevent_rename_dest(ZTOV(tzp), tdvp, tnm, ct);
3924
3925         /*
3926          * notify the target directory if it is not the same
3927          * as source directory.
3928          */
3929         if (tdvp != sdvp) {
3930                 vnevent_rename_dest_dir(tdvp, ct);
3931         }
3932
3933         tx = dmu_tx_create(zfsvfs->z_os);
3934         dmu_tx_hold_sa(tx, szp->z_sa_hdl, B_FALSE);
3935         dmu_tx_hold_sa(tx, sdzp->z_sa_hdl, B_FALSE);
3936         dmu_tx_hold_zap(tx, sdzp->z_id, FALSE, snm);
3937         dmu_tx_hold_zap(tx, tdzp->z_id, TRUE, tnm);
3938         if (sdzp != tdzp) {
3939                 dmu_tx_hold_sa(tx, tdzp->z_sa_hdl, B_FALSE);
3940                 zfs_sa_upgrade_txholds(tx, tdzp);
3941         }
3942         if (tzp) {
3943                 dmu_tx_hold_sa(tx, tzp->z_sa_hdl, B_FALSE);
3944                 zfs_sa_upgrade_txholds(tx, tzp);
3945         }
3946
3947         zfs_sa_upgrade_txholds(tx, szp);
3948         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
3949         error = dmu_tx_assign(tx, TXG_NOWAIT);
3950         if (error) {
3951                 if (zl != NULL)
3952                         zfs_rename_unlock(&zl);
3953                 zfs_dirent_unlock(sdl);
3954                 zfs_dirent_unlock(tdl);
3955
3956                 if (sdzp == tdzp)
3957                         rw_exit(&sdzp->z_name_lock);
3958
3959                 VN_RELE(ZTOV(szp));
3960                 if (tzp)
3961                         VN_RELE(ZTOV(tzp));
3962                 if (error == ERESTART) {
3963                         dmu_tx_wait(tx);
3964                         dmu_tx_abort(tx);
3965                         goto top;
3966                 }
3967                 dmu_tx_abort(tx);
3968                 ZFS_EXIT(zfsvfs);
3969                 return (error);
3970         }
3971
3972         if (tzp)        /* Attempt to remove the existing target */
3973                 error = zfs_link_destroy(tdl, tzp, tx, zflg, NULL);
3974
3975         if (error == 0) {
3976                 error = zfs_link_create(tdl, szp, tx, ZRENAMING);
3977                 if (error == 0) {
3978                         szp->z_pflags |= ZFS_AV_MODIFIED;
3979
3980                         error = sa_update(szp->z_sa_hdl, SA_ZPL_FLAGS(zfsvfs),
3981                             (void *)&szp->z_pflags, sizeof (uint64_t), tx);
3982                         ASSERT0(error);
3983
3984                         error = zfs_link_destroy(sdl, szp, tx, ZRENAMING, NULL);
3985                         if (error == 0) {
3986                                 zfs_log_rename(zilog, tx, TX_RENAME |
3987                                     (flags & FIGNORECASE ? TX_CI : 0), sdzp,
3988                                     sdl->dl_name, tdzp, tdl->dl_name, szp);
3989
3990                                 /*
3991                                  * Update path information for the target vnode
3992                                  */
3993                                 vn_renamepath(tdvp, ZTOV(szp), tnm,
3994                                     strlen(tnm));
3995                         } else {
3996                                 /*
3997                                  * At this point, we have successfully created
3998                                  * the target name, but have failed to remove
3999                                  * the source name.  Since the create was done
4000                                  * with the ZRENAMING flag, there are
4001                                  * complications; for one, the link count is
4002                                  * wrong.  The easiest way to deal with this
4003                                  * is to remove the newly created target, and
4004                                  * return the original error.  This must
4005                                  * succeed; fortunately, it is very unlikely to
4006                                  * fail, since we just created it.
4007                                  */
4008                                 VERIFY3U(zfs_link_destroy(tdl, szp, tx,
4009                                     ZRENAMING, NULL), ==, 0);
4010                         }
4011                 }
4012 #ifdef FREEBSD_NAMECACHE
4013                 if (error == 0) {
4014                         cache_purge(sdvp);
4015                         cache_purge(tdvp);
4016                 }
4017 #endif
4018         }
4019
4020         dmu_tx_commit(tx);
4021 out:
4022         if (zl != NULL)
4023                 zfs_rename_unlock(&zl);
4024
4025         zfs_dirent_unlock(sdl);
4026         zfs_dirent_unlock(tdl);
4027
4028         if (sdzp == tdzp)
4029                 rw_exit(&sdzp->z_name_lock);
4030
4031
4032         VN_RELE(ZTOV(szp));
4033         if (tzp)
4034                 VN_RELE(ZTOV(tzp));
4035
4036         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
4037                 zil_commit(zilog, 0);
4038
4039         ZFS_EXIT(zfsvfs);
4040
4041         return (error);
4042 }
4043
4044 /*
4045  * Insert the indicated symbolic reference entry into the directory.
4046  *
4047  *      IN:     dvp     - Directory to contain new symbolic link.
4048  *              link    - Name for new symlink entry.
4049  *              vap     - Attributes of new entry.
4050  *              cr      - credentials of caller.
4051  *              ct      - caller context
4052  *              flags   - case flags
4053  *
4054  *      RETURN: 0 on success, error code on failure.
4055  *
4056  * Timestamps:
4057  *      dvp - ctime|mtime updated
4058  */
4059 /*ARGSUSED*/
4060 static int
4061 zfs_symlink(vnode_t *dvp, vnode_t **vpp, char *name, vattr_t *vap, char *link,
4062     cred_t *cr, kthread_t *td)
4063 {
4064         znode_t         *zp, *dzp = VTOZ(dvp);
4065         zfs_dirlock_t   *dl;
4066         dmu_tx_t        *tx;
4067         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
4068         zilog_t         *zilog;
4069         uint64_t        len = strlen(link);
4070         int             error;
4071         int             zflg = ZNEW;
4072         zfs_acl_ids_t   acl_ids;
4073         boolean_t       fuid_dirtied;
4074         uint64_t        txtype = TX_SYMLINK;
4075         int             flags = 0;
4076
4077         ASSERT(vap->va_type == VLNK);
4078
4079         ZFS_ENTER(zfsvfs);
4080         ZFS_VERIFY_ZP(dzp);
4081         zilog = zfsvfs->z_log;
4082
4083         if (zfsvfs->z_utf8 && u8_validate(name, strlen(name),
4084             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
4085                 ZFS_EXIT(zfsvfs);
4086                 return (SET_ERROR(EILSEQ));
4087         }
4088         if (flags & FIGNORECASE)
4089                 zflg |= ZCILOOK;
4090
4091         if (len > MAXPATHLEN) {
4092                 ZFS_EXIT(zfsvfs);
4093                 return (SET_ERROR(ENAMETOOLONG));
4094         }
4095
4096         if ((error = zfs_acl_ids_create(dzp, 0,
4097             vap, cr, NULL, &acl_ids)) != 0) {
4098                 ZFS_EXIT(zfsvfs);
4099                 return (error);
4100         }
4101 top:
4102         /*
4103          * Attempt to lock directory; fail if entry already exists.
4104          */
4105         error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg, NULL, NULL);
4106         if (error) {
4107                 zfs_acl_ids_free(&acl_ids);
4108                 ZFS_EXIT(zfsvfs);
4109                 return (error);
4110         }
4111
4112         if (error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr)) {
4113                 zfs_acl_ids_free(&acl_ids);
4114                 zfs_dirent_unlock(dl);
4115                 ZFS_EXIT(zfsvfs);
4116                 return (error);
4117         }
4118
4119         if (zfs_acl_ids_overquota(zfsvfs, &acl_ids)) {
4120                 zfs_acl_ids_free(&acl_ids);
4121                 zfs_dirent_unlock(dl);
4122                 ZFS_EXIT(zfsvfs);
4123                 return (SET_ERROR(EDQUOT));
4124         }
4125         tx = dmu_tx_create(zfsvfs->z_os);
4126         fuid_dirtied = zfsvfs->z_fuid_dirty;
4127         dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, MAX(1, len));
4128         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
4129         dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
4130             ZFS_SA_BASE_ATTR_SIZE + len);
4131         dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE);
4132         if (!zfsvfs->z_use_sa && acl_ids.z_aclp->z_acl_bytes > ZFS_ACE_SPACE) {
4133                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
4134                     acl_ids.z_aclp->z_acl_bytes);
4135         }
4136         if (fuid_dirtied)
4137                 zfs_fuid_txhold(zfsvfs, tx);
4138         error = dmu_tx_assign(tx, TXG_NOWAIT);
4139         if (error) {
4140                 zfs_dirent_unlock(dl);
4141                 if (error == ERESTART) {
4142                         dmu_tx_wait(tx);
4143                         dmu_tx_abort(tx);
4144                         goto top;
4145                 }
4146                 zfs_acl_ids_free(&acl_ids);
4147                 dmu_tx_abort(tx);
4148                 ZFS_EXIT(zfsvfs);
4149                 return (error);
4150         }
4151
4152         /*
4153          * Create a new object for the symlink.
4154          * for version 4 ZPL datsets the symlink will be an SA attribute
4155          */
4156         zfs_mknode(dzp, vap, tx, cr, 0, &zp, &acl_ids);
4157
4158         if (fuid_dirtied)
4159                 zfs_fuid_sync(zfsvfs, tx);
4160
4161         mutex_enter(&zp->z_lock);
4162         if (zp->z_is_sa)
4163                 error = sa_update(zp->z_sa_hdl, SA_ZPL_SYMLINK(zfsvfs),
4164                     link, len, tx);
4165         else
4166                 zfs_sa_symlink(zp, link, len, tx);
4167         mutex_exit(&zp->z_lock);
4168
4169         zp->z_size = len;
4170         (void) sa_update(zp->z_sa_hdl, SA_ZPL_SIZE(zfsvfs),
4171             &zp->z_size, sizeof (zp->z_size), tx);
4172         /*
4173          * Insert the new object into the directory.
4174          */
4175         (void) zfs_link_create(dl, zp, tx, ZNEW);
4176
4177         if (flags & FIGNORECASE)
4178                 txtype |= TX_CI;
4179         zfs_log_symlink(zilog, tx, txtype, dzp, zp, name, link);
4180         *vpp = ZTOV(zp);
4181
4182         zfs_acl_ids_free(&acl_ids);
4183
4184         dmu_tx_commit(tx);
4185
4186         zfs_dirent_unlock(dl);
4187
4188         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
4189                 zil_commit(zilog, 0);
4190
4191         ZFS_EXIT(zfsvfs);
4192         return (error);
4193 }
4194
4195 /*
4196  * Return, in the buffer contained in the provided uio structure,
4197  * the symbolic path referred to by vp.
4198  *
4199  *      IN:     vp      - vnode of symbolic link.
4200  *              uio     - structure to contain the link path.
4201  *              cr      - credentials of caller.
4202  *              ct      - caller context
4203  *
4204  *      OUT:    uio     - structure containing the link path.
4205  *
4206  *      RETURN: 0 on success, error code on failure.
4207  *
4208  * Timestamps:
4209  *      vp - atime updated
4210  */
4211 /* ARGSUSED */
4212 static int
4213 zfs_readlink(vnode_t *vp, uio_t *uio, cred_t *cr, caller_context_t *ct)
4214 {
4215         znode_t         *zp = VTOZ(vp);
4216         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
4217         int             error;
4218
4219         ZFS_ENTER(zfsvfs);
4220         ZFS_VERIFY_ZP(zp);
4221
4222         mutex_enter(&zp->z_lock);
4223         if (zp->z_is_sa)
4224                 error = sa_lookup_uio(zp->z_sa_hdl,
4225                     SA_ZPL_SYMLINK(zfsvfs), uio);
4226         else
4227                 error = zfs_sa_readlink(zp, uio);
4228         mutex_exit(&zp->z_lock);
4229
4230         ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
4231
4232         ZFS_EXIT(zfsvfs);
4233         return (error);
4234 }
4235
4236 /*
4237  * Insert a new entry into directory tdvp referencing svp.
4238  *
4239  *      IN:     tdvp    - Directory to contain new entry.
4240  *              svp     - vnode of new entry.
4241  *              name    - name of new entry.
4242  *              cr      - credentials of caller.
4243  *              ct      - caller context
4244  *
4245  *      RETURN: 0 on success, error code on failure.
4246  *
4247  * Timestamps:
4248  *      tdvp - ctime|mtime updated
4249  *       svp - ctime updated
4250  */
4251 /* ARGSUSED */
4252 static int
4253 zfs_link(vnode_t *tdvp, vnode_t *svp, char *name, cred_t *cr,
4254     caller_context_t *ct, int flags)
4255 {
4256         znode_t         *dzp = VTOZ(tdvp);
4257         znode_t         *tzp, *szp;
4258         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
4259         zilog_t         *zilog;
4260         zfs_dirlock_t   *dl;
4261         dmu_tx_t        *tx;
4262         vnode_t         *realvp;
4263         int             error;
4264         int             zf = ZNEW;
4265         uint64_t        parent;
4266         uid_t           owner;
4267
4268         ASSERT(tdvp->v_type == VDIR);
4269
4270         ZFS_ENTER(zfsvfs);
4271         ZFS_VERIFY_ZP(dzp);
4272         zilog = zfsvfs->z_log;
4273
4274         if (VOP_REALVP(svp, &realvp, ct) == 0)
4275                 svp = realvp;
4276
4277         /*
4278          * POSIX dictates that we return EPERM here.
4279          * Better choices include ENOTSUP or EISDIR.
4280          */
4281         if (svp->v_type == VDIR) {
4282                 ZFS_EXIT(zfsvfs);
4283                 return (SET_ERROR(EPERM));
4284         }
4285
4286         if (svp->v_vfsp != tdvp->v_vfsp || zfsctl_is_node(svp)) {
4287                 ZFS_EXIT(zfsvfs);
4288                 return (SET_ERROR(EXDEV));
4289         }
4290
4291         szp = VTOZ(svp);
4292         ZFS_VERIFY_ZP(szp);
4293
4294         /* Prevent links to .zfs/shares files */
4295
4296         if ((error = sa_lookup(szp->z_sa_hdl, SA_ZPL_PARENT(zfsvfs),
4297             &parent, sizeof (uint64_t))) != 0) {
4298                 ZFS_EXIT(zfsvfs);
4299                 return (error);
4300         }
4301         if (parent == zfsvfs->z_shares_dir) {
4302                 ZFS_EXIT(zfsvfs);
4303                 return (SET_ERROR(EPERM));
4304         }
4305
4306         if (zfsvfs->z_utf8 && u8_validate(name,
4307             strlen(name), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
4308                 ZFS_EXIT(zfsvfs);
4309                 return (SET_ERROR(EILSEQ));
4310         }
4311         if (flags & FIGNORECASE)
4312                 zf |= ZCILOOK;
4313
4314         /*
4315          * We do not support links between attributes and non-attributes
4316          * because of the potential security risk of creating links
4317          * into "normal" file space in order to circumvent restrictions
4318          * imposed in attribute space.
4319          */
4320         if ((szp->z_pflags & ZFS_XATTR) != (dzp->z_pflags & ZFS_XATTR)) {
4321                 ZFS_EXIT(zfsvfs);
4322                 return (SET_ERROR(EINVAL));
4323         }
4324
4325
4326         owner = zfs_fuid_map_id(zfsvfs, szp->z_uid, cr, ZFS_OWNER);
4327         if (owner != crgetuid(cr) && secpolicy_basic_link(svp, cr) != 0) {
4328                 ZFS_EXIT(zfsvfs);
4329                 return (SET_ERROR(EPERM));
4330         }
4331
4332         if (error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr)) {
4333                 ZFS_EXIT(zfsvfs);
4334                 return (error);
4335         }
4336
4337 top:
4338         /*
4339          * Attempt to lock directory; fail if entry already exists.
4340          */
4341         error = zfs_dirent_lock(&dl, dzp, name, &tzp, zf, NULL, NULL);
4342         if (error) {
4343                 ZFS_EXIT(zfsvfs);
4344                 return (error);
4345         }
4346
4347         tx = dmu_tx_create(zfsvfs->z_os);
4348         dmu_tx_hold_sa(tx, szp->z_sa_hdl, B_FALSE);
4349         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
4350         zfs_sa_upgrade_txholds(tx, szp);
4351         zfs_sa_upgrade_txholds(tx, dzp);
4352         error = dmu_tx_assign(tx, TXG_NOWAIT);
4353         if (error) {
4354                 zfs_dirent_unlock(dl);
4355                 if (error == ERESTART) {
4356                         dmu_tx_wait(tx);
4357                         dmu_tx_abort(tx);
4358                         goto top;
4359                 }
4360                 dmu_tx_abort(tx);
4361                 ZFS_EXIT(zfsvfs);
4362                 return (error);
4363         }
4364
4365         error = zfs_link_create(dl, szp, tx, 0);
4366
4367         if (error == 0) {
4368                 uint64_t txtype = TX_LINK;
4369                 if (flags & FIGNORECASE)
4370                         txtype |= TX_CI;
4371                 zfs_log_link(zilog, tx, txtype, dzp, szp, name);
4372         }
4373
4374         dmu_tx_commit(tx);
4375
4376         zfs_dirent_unlock(dl);
4377
4378         if (error == 0) {
4379                 vnevent_link(svp, ct);
4380         }
4381
4382         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
4383                 zil_commit(zilog, 0);
4384
4385         ZFS_EXIT(zfsvfs);
4386         return (error);
4387 }
4388
4389 #ifdef sun
4390 /*
4391  * zfs_null_putapage() is used when the file system has been force
4392  * unmounted. It just drops the pages.
4393  */
4394 /* ARGSUSED */
4395 static int
4396 zfs_null_putapage(vnode_t *vp, page_t *pp, u_offset_t *offp,
4397                 size_t *lenp, int flags, cred_t *cr)
4398 {
4399         pvn_write_done(pp, B_INVAL|B_FORCE|B_ERROR);
4400         return (0);
4401 }
4402
4403 /*
4404  * Push a page out to disk, klustering if possible.
4405  *
4406  *      IN:     vp      - file to push page to.
4407  *              pp      - page to push.
4408  *              flags   - additional flags.
4409  *              cr      - credentials of caller.
4410  *
4411  *      OUT:    offp    - start of range pushed.
4412  *              lenp    - len of range pushed.
4413  *
4414  *      RETURN: 0 on success, error code on failure.
4415  *
4416  * NOTE: callers must have locked the page to be pushed.  On
4417  * exit, the page (and all other pages in the kluster) must be
4418  * unlocked.
4419  */
4420 /* ARGSUSED */
4421 static int
4422 zfs_putapage(vnode_t *vp, page_t *pp, u_offset_t *offp,
4423                 size_t *lenp, int flags, cred_t *cr)
4424 {
4425         znode_t         *zp = VTOZ(vp);
4426         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
4427         dmu_tx_t        *tx;
4428         u_offset_t      off, koff;
4429         size_t          len, klen;
4430         int             err;
4431
4432         off = pp->p_offset;
4433         len = PAGESIZE;
4434         /*
4435          * If our blocksize is bigger than the page size, try to kluster
4436          * multiple pages so that we write a full block (thus avoiding
4437          * a read-modify-write).
4438          */
4439         if (off < zp->z_size && zp->z_blksz > PAGESIZE) {
4440                 klen = P2ROUNDUP((ulong_t)zp->z_blksz, PAGESIZE);
4441                 koff = ISP2(klen) ? P2ALIGN(off, (u_offset_t)klen) : 0;
4442                 ASSERT(koff <= zp->z_size);
4443                 if (koff + klen > zp->z_size)
4444                         klen = P2ROUNDUP(zp->z_size - koff, (uint64_t)PAGESIZE);
4445                 pp = pvn_write_kluster(vp, pp, &off, &len, koff, klen, flags);
4446         }
4447         ASSERT3U(btop(len), ==, btopr(len));
4448
4449         /*
4450          * Can't push pages past end-of-file.
4451          */
4452         if (off >= zp->z_size) {
4453                 /* ignore all pages */
4454                 err = 0;
4455                 goto out;
4456         } else if (off + len > zp->z_size) {
4457                 int npages = btopr(zp->z_size - off);
4458                 page_t *trunc;
4459
4460                 page_list_break(&pp, &trunc, npages);
4461                 /* ignore pages past end of file */
4462                 if (trunc)
4463                         pvn_write_done(trunc, flags);
4464                 len = zp->z_size - off;
4465         }
4466
4467         if (zfs_owner_overquota(zfsvfs, zp, B_FALSE) ||
4468             zfs_owner_overquota(zfsvfs, zp, B_TRUE)) {
4469                 err = SET_ERROR(EDQUOT);
4470                 goto out;
4471         }
4472 top:
4473         tx = dmu_tx_create(zfsvfs->z_os);
4474         dmu_tx_hold_write(tx, zp->z_id, off, len);
4475
4476         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
4477         zfs_sa_upgrade_txholds(tx, zp);
4478         err = dmu_tx_assign(tx, TXG_NOWAIT);
4479         if (err != 0) {
4480                 if (err == ERESTART) {
4481                         dmu_tx_wait(tx);
4482                         dmu_tx_abort(tx);
4483                         goto top;
4484                 }
4485                 dmu_tx_abort(tx);
4486                 goto out;
4487         }
4488
4489         if (zp->z_blksz <= PAGESIZE) {
4490                 caddr_t va = zfs_map_page(pp, S_READ);
4491                 ASSERT3U(len, <=, PAGESIZE);
4492                 dmu_write(zfsvfs->z_os, zp->z_id, off, len, va, tx);
4493                 zfs_unmap_page(pp, va);
4494         } else {
4495                 err = dmu_write_pages(zfsvfs->z_os, zp->z_id, off, len, pp, tx);
4496         }
4497
4498         if (err == 0) {
4499                 uint64_t mtime[2], ctime[2];
4500                 sa_bulk_attr_t bulk[3];
4501                 int count = 0;
4502
4503                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL,
4504                     &mtime, 16);
4505                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL,
4506                     &ctime, 16);
4507                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
4508                     &zp->z_pflags, 8);
4509                 zfs_tstamp_update_setup(zp, CONTENT_MODIFIED, mtime, ctime,
4510                     B_TRUE);
4511                 zfs_log_write(zfsvfs->z_log, tx, TX_WRITE, zp, off, len, 0);
4512         }
4513         dmu_tx_commit(tx);
4514
4515 out:
4516         pvn_write_done(pp, (err ? B_ERROR : 0) | flags);
4517         if (offp)
4518                 *offp = off;
4519         if (lenp)
4520                 *lenp = len;
4521
4522         return (err);
4523 }
4524
4525 /*
4526  * Copy the portion of the file indicated from pages into the file.
4527  * The pages are stored in a page list attached to the files vnode.
4528  *
4529  *      IN:     vp      - vnode of file to push page data to.
4530  *              off     - position in file to put data.
4531  *              len     - amount of data to write.
4532  *              flags   - flags to control the operation.
4533  *              cr      - credentials of caller.
4534  *              ct      - caller context.
4535  *
4536  *      RETURN: 0 on success, error code on failure.
4537  *
4538  * Timestamps:
4539  *      vp - ctime|mtime updated
4540  */
4541 /*ARGSUSED*/
4542 static int
4543 zfs_putpage(vnode_t *vp, offset_t off, size_t len, int flags, cred_t *cr,
4544     caller_context_t *ct)
4545 {
4546         znode_t         *zp = VTOZ(vp);
4547         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
4548         page_t          *pp;
4549         size_t          io_len;
4550         u_offset_t      io_off;
4551         uint_t          blksz;
4552         rl_t            *rl;
4553         int             error = 0;
4554
4555         ZFS_ENTER(zfsvfs);
4556         ZFS_VERIFY_ZP(zp);
4557
4558         /*
4559          * Align this request to the file block size in case we kluster.
4560          * XXX - this can result in pretty aggresive locking, which can
4561          * impact simultanious read/write access.  One option might be
4562          * to break up long requests (len == 0) into block-by-block
4563          * operations to get narrower locking.
4564          */
4565         blksz = zp->z_blksz;
4566         if (ISP2(blksz))
4567                 io_off = P2ALIGN_TYPED(off, blksz, u_offset_t);
4568         else
4569                 io_off = 0;
4570         if (len > 0 && ISP2(blksz))
4571                 io_len = P2ROUNDUP_TYPED(len + (off - io_off), blksz, size_t);
4572         else
4573                 io_len = 0;
4574
4575         if (io_len == 0) {
4576                 /*
4577                  * Search the entire vp list for pages >= io_off.
4578                  */
4579                 rl = zfs_range_lock(zp, io_off, UINT64_MAX, RL_WRITER);
4580                 error = pvn_vplist_dirty(vp, io_off, zfs_putapage, flags, cr);
4581                 goto out;
4582         }
4583         rl = zfs_range_lock(zp, io_off, io_len, RL_WRITER);
4584
4585         if (off > zp->z_size) {
4586                 /* past end of file */
4587                 zfs_range_unlock(rl);
4588                 ZFS_EXIT(zfsvfs);
4589                 return (0);
4590         }
4591
4592         len = MIN(io_len, P2ROUNDUP(zp->z_size, PAGESIZE) - io_off);
4593
4594         for (off = io_off; io_off < off + len; io_off += io_len) {
4595                 if ((flags & B_INVAL) || ((flags & B_ASYNC) == 0)) {
4596                         pp = page_lookup(vp, io_off,
4597                             (flags & (B_INVAL | B_FREE)) ? SE_EXCL : SE_SHARED);
4598                 } else {
4599                         pp = page_lookup_nowait(vp, io_off,
4600                             (flags & B_FREE) ? SE_EXCL : SE_SHARED);
4601                 }
4602
4603                 if (pp != NULL && pvn_getdirty(pp, flags)) {
4604                         int err;
4605
4606                         /*
4607                          * Found a dirty page to push
4608                          */
4609                         err = zfs_putapage(vp, pp, &io_off, &io_len, flags, cr);
4610                         if (err)
4611                                 error = err;
4612                 } else {
4613                         io_len = PAGESIZE;
4614                 }
4615         }
4616 out:
4617         zfs_range_unlock(rl);
4618         if ((flags & B_ASYNC) == 0 || zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
4619                 zil_commit(zfsvfs->z_log, zp->z_id);
4620         ZFS_EXIT(zfsvfs);
4621         return (error);
4622 }
4623 #endif  /* sun */
4624
4625 /*ARGSUSED*/
4626 void
4627 zfs_inactive(vnode_t *vp, cred_t *cr, caller_context_t *ct)
4628 {
4629         znode_t *zp = VTOZ(vp);
4630         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
4631         int error;
4632
4633         rw_enter(&zfsvfs->z_teardown_inactive_lock, RW_READER);
4634         if (zp->z_sa_hdl == NULL) {
4635                 /*
4636                  * The fs has been unmounted, or we did a
4637                  * suspend/resume and this file no longer exists.
4638                  */
4639                 rw_exit(&zfsvfs->z_teardown_inactive_lock);
4640                 vrecycle(vp, curthread);
4641                 return;
4642         }
4643
4644         mutex_enter(&zp->z_lock);
4645         if (zp->z_unlinked) {
4646                 /*
4647                  * Fast path to recycle a vnode of a removed file.
4648                  */
4649                 mutex_exit(&zp->z_lock);
4650                 rw_exit(&zfsvfs->z_teardown_inactive_lock);
4651                 vrecycle(vp, curthread);
4652                 return;
4653         }
4654         mutex_exit(&zp->z_lock);
4655
4656         if (zp->z_atime_dirty && zp->z_unlinked == 0) {
4657                 dmu_tx_t *tx = dmu_tx_create(zfsvfs->z_os);
4658
4659                 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
4660                 zfs_sa_upgrade_txholds(tx, zp);
4661                 error = dmu_tx_assign(tx, TXG_WAIT);
4662                 if (error) {
4663                         dmu_tx_abort(tx);
4664                 } else {
4665                         mutex_enter(&zp->z_lock);
4666                         (void) sa_update(zp->z_sa_hdl, SA_ZPL_ATIME(zfsvfs),
4667                             (void *)&zp->z_atime, sizeof (zp->z_atime), tx);
4668                         zp->z_atime_dirty = 0;
4669                         mutex_exit(&zp->z_lock);
4670                         dmu_tx_commit(tx);
4671                 }
4672         }
4673         rw_exit(&zfsvfs->z_teardown_inactive_lock);
4674 }
4675
4676 #ifdef sun
4677 /*
4678  * Bounds-check the seek operation.
4679  *
4680  *      IN:     vp      - vnode seeking within
4681  *              ooff    - old file offset
4682  *              noffp   - pointer to new file offset
4683  *              ct      - caller context
4684  *
4685  *      RETURN: 0 on success, EINVAL if new offset invalid.
4686  */
4687 /* ARGSUSED */
4688 static int
4689 zfs_seek(vnode_t *vp, offset_t ooff, offset_t *noffp,
4690     caller_context_t *ct)
4691 {
4692         if (vp->v_type == VDIR)
4693                 return (0);
4694         return ((*noffp < 0 || *noffp > MAXOFFSET_T) ? EINVAL : 0);
4695 }
4696
4697 /*
4698  * Pre-filter the generic locking function to trap attempts to place
4699  * a mandatory lock on a memory mapped file.
4700  */
4701 static int
4702 zfs_frlock(vnode_t *vp, int cmd, flock64_t *bfp, int flag, offset_t offset,
4703     flk_callback_t *flk_cbp, cred_t *cr, caller_context_t *ct)
4704 {
4705         znode_t *zp = VTOZ(vp);
4706         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
4707
4708         ZFS_ENTER(zfsvfs);
4709         ZFS_VERIFY_ZP(zp);
4710
4711         /*
4712          * We are following the UFS semantics with respect to mapcnt
4713          * here: If we see that the file is mapped already, then we will
4714          * return an error, but we don't worry about races between this
4715          * function and zfs_map().
4716          */
4717         if (zp->z_mapcnt > 0 && MANDMODE(zp->z_mode)) {
4718                 ZFS_EXIT(zfsvfs);
4719                 return (SET_ERROR(EAGAIN));
4720         }
4721         ZFS_EXIT(zfsvfs);
4722         return (fs_frlock(vp, cmd, bfp, flag, offset, flk_cbp, cr, ct));
4723 }
4724
4725 /*
4726  * If we can't find a page in the cache, we will create a new page
4727  * and fill it with file data.  For efficiency, we may try to fill
4728  * multiple pages at once (klustering) to fill up the supplied page
4729  * list.  Note that the pages to be filled are held with an exclusive
4730  * lock to prevent access by other threads while they are being filled.
4731  */
4732 static int
4733 zfs_fillpage(vnode_t *vp, u_offset_t off, struct seg *seg,
4734     caddr_t addr, page_t *pl[], size_t plsz, enum seg_rw rw)
4735 {
4736         znode_t *zp = VTOZ(vp);
4737         page_t *pp, *cur_pp;
4738         objset_t *os = zp->z_zfsvfs->z_os;
4739         u_offset_t io_off, total;
4740         size_t io_len;
4741         int err;
4742
4743         if (plsz == PAGESIZE || zp->z_blksz <= PAGESIZE) {
4744                 /*
4745                  * We only have a single page, don't bother klustering
4746                  */
4747                 io_off = off;
4748                 io_len = PAGESIZE;
4749                 pp = page_create_va(vp, io_off, io_len,
4750                     PG_EXCL | PG_WAIT, seg, addr);
4751         } else {
4752                 /*
4753                  * Try to find enough pages to fill the page list
4754                  */
4755                 pp = pvn_read_kluster(vp, off, seg, addr, &io_off,
4756                     &io_len, off, plsz, 0);
4757         }
4758         if (pp == NULL) {
4759                 /*
4760                  * The page already exists, nothing to do here.
4761                  */
4762                 *pl = NULL;
4763                 return (0);
4764         }
4765
4766         /*
4767          * Fill the pages in the kluster.
4768          */
4769         cur_pp = pp;
4770         for (total = io_off + io_len; io_off < total; io_off += PAGESIZE) {
4771                 caddr_t va;
4772
4773                 ASSERT3U(io_off, ==, cur_pp->p_offset);
4774                 va = zfs_map_page(cur_pp, S_WRITE);
4775                 err = dmu_read(os, zp->z_id, io_off, PAGESIZE, va,
4776                     DMU_READ_PREFETCH);
4777                 zfs_unmap_page(cur_pp, va);
4778                 if (err) {
4779                         /* On error, toss the entire kluster */
4780                         pvn_read_done(pp, B_ERROR);
4781                         /* convert checksum errors into IO errors */
4782                         if (err == ECKSUM)
4783                                 err = SET_ERROR(EIO);
4784                         return (err);
4785                 }
4786                 cur_pp = cur_pp->p_next;
4787         }
4788
4789         /*
4790          * Fill in the page list array from the kluster starting
4791          * from the desired offset `off'.
4792          * NOTE: the page list will always be null terminated.
4793          */
4794         pvn_plist_init(pp, pl, plsz, off, io_len, rw);
4795         ASSERT(pl == NULL || (*pl)->p_offset == off);
4796
4797         return (0);
4798 }
4799
4800 /*
4801  * Return pointers to the pages for the file region [off, off + len]
4802  * in the pl array.  If plsz is greater than len, this function may
4803  * also return page pointers from after the specified region
4804  * (i.e. the region [off, off + plsz]).  These additional pages are
4805  * only returned if they are already in the cache, or were created as
4806  * part of a klustered read.
4807  *
4808  *      IN:     vp      - vnode of file to get data from.
4809  *              off     - position in file to get data from.
4810  *              len     - amount of data to retrieve.
4811  *              plsz    - length of provided page list.
4812  *              seg     - segment to obtain pages for.
4813  *              addr    - virtual address of fault.
4814  *              rw      - mode of created pages.
4815  *              cr      - credentials of caller.
4816  *              ct      - caller context.
4817  *
4818  *      OUT:    protp   - protection mode of created pages.
4819  *              pl      - list of pages created.
4820  *
4821  *      RETURN: 0 on success, error code on failure.
4822  *
4823  * Timestamps:
4824  *      vp - atime updated
4825  */
4826 /* ARGSUSED */
4827 static int
4828 zfs_getpage(vnode_t *vp, offset_t off, size_t len, uint_t *protp,
4829     page_t *pl[], size_t plsz, struct seg *seg, caddr_t addr,
4830     enum seg_rw rw, cred_t *cr, caller_context_t *ct)
4831 {
4832         znode_t         *zp = VTOZ(vp);
4833         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
4834         page_t          **pl0 = pl;
4835         int             err = 0;
4836
4837         /* we do our own caching, faultahead is unnecessary */
4838         if (pl == NULL)
4839                 return (0);
4840         else if (len > plsz)
4841                 len = plsz;
4842         else
4843                 len = P2ROUNDUP(len, PAGESIZE);
4844         ASSERT(plsz >= len);
4845
4846         ZFS_ENTER(zfsvfs);
4847         ZFS_VERIFY_ZP(zp);
4848
4849         if (protp)
4850                 *protp = PROT_ALL;
4851
4852         /*
4853          * Loop through the requested range [off, off + len) looking
4854          * for pages.  If we don't find a page, we will need to create
4855          * a new page and fill it with data from the file.
4856          */
4857         while (len > 0) {
4858                 if (*pl = page_lookup(vp, off, SE_SHARED))
4859                         *(pl+1) = NULL;
4860                 else if (err = zfs_fillpage(vp, off, seg, addr, pl, plsz, rw))
4861                         goto out;
4862                 while (*pl) {
4863                         ASSERT3U((*pl)->p_offset, ==, off);
4864                         off += PAGESIZE;
4865                         addr += PAGESIZE;
4866                         if (len > 0) {
4867                                 ASSERT3U(len, >=, PAGESIZE);
4868                                 len -= PAGESIZE;
4869                         }
4870                         ASSERT3U(plsz, >=, PAGESIZE);
4871                         plsz -= PAGESIZE;
4872                         pl++;
4873                 }
4874         }
4875
4876         /*
4877          * Fill out the page array with any pages already in the cache.
4878          */
4879         while (plsz > 0 &&
4880             (*pl++ = page_lookup_nowait(vp, off, SE_SHARED))) {
4881                         off += PAGESIZE;
4882                         plsz -= PAGESIZE;
4883         }
4884 out:
4885         if (err) {
4886                 /*
4887                  * Release any pages we have previously locked.
4888                  */
4889                 while (pl > pl0)
4890                         page_unlock(*--pl);
4891         } else {
4892                 ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
4893         }
4894
4895         *pl = NULL;
4896
4897         ZFS_EXIT(zfsvfs);
4898         return (err);
4899 }
4900
4901 /*
4902  * Request a memory map for a section of a file.  This code interacts
4903  * with common code and the VM system as follows:
4904  *
4905  * - common code calls mmap(), which ends up in smmap_common()
4906  * - this calls VOP_MAP(), which takes you into (say) zfs
4907  * - zfs_map() calls as_map(), passing segvn_create() as the callback
4908  * - segvn_create() creates the new segment and calls VOP_ADDMAP()
4909  * - zfs_addmap() updates z_mapcnt
4910  */
4911 /*ARGSUSED*/
4912 static int
4913 zfs_map(vnode_t *vp, offset_t off, struct as *as, caddr_t *addrp,
4914     size_t len, uchar_t prot, uchar_t maxprot, uint_t flags, cred_t *cr,
4915     caller_context_t *ct)
4916 {
4917         znode_t *zp = VTOZ(vp);
4918         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
4919         segvn_crargs_t  vn_a;
4920         int             error;
4921
4922         ZFS_ENTER(zfsvfs);
4923         ZFS_VERIFY_ZP(zp);
4924
4925         if ((prot & PROT_WRITE) && (zp->z_pflags &
4926             (ZFS_IMMUTABLE | ZFS_READONLY | ZFS_APPENDONLY))) {
4927                 ZFS_EXIT(zfsvfs);
4928                 return (SET_ERROR(EPERM));
4929         }
4930
4931         if ((prot & (PROT_READ | PROT_EXEC)) &&
4932             (zp->z_pflags & ZFS_AV_QUARANTINED)) {
4933                 ZFS_EXIT(zfsvfs);
4934                 return (SET_ERROR(EACCES));
4935         }
4936
4937         if (vp->v_flag & VNOMAP) {
4938                 ZFS_EXIT(zfsvfs);
4939                 return (SET_ERROR(ENOSYS));
4940         }
4941
4942         if (off < 0 || len > MAXOFFSET_T - off) {
4943                 ZFS_EXIT(zfsvfs);
4944                 return (SET_ERROR(ENXIO));
4945         }
4946
4947         if (vp->v_type != VREG) {
4948                 ZFS_EXIT(zfsvfs);
4949                 return (SET_ERROR(ENODEV));
4950         }
4951
4952         /*
4953          * If file is locked, disallow mapping.
4954          */
4955         if (MANDMODE(zp->z_mode) && vn_has_flocks(vp)) {
4956                 ZFS_EXIT(zfsvfs);
4957                 return (SET_ERROR(EAGAIN));
4958         }
4959
4960         as_rangelock(as);
4961         error = choose_addr(as, addrp, len, off, ADDR_VACALIGN, flags);
4962         if (error != 0) {
4963                 as_rangeunlock(as);
4964                 ZFS_EXIT(zfsvfs);
4965                 return (error);
4966         }
4967
4968         vn_a.vp = vp;
4969         vn_a.offset = (u_offset_t)off;
4970         vn_a.type = flags & MAP_TYPE;
4971         vn_a.prot = prot;
4972         vn_a.maxprot = maxprot;
4973         vn_a.cred = cr;
4974         vn_a.amp = NULL;
4975         vn_a.flags = flags & ~MAP_TYPE;
4976         vn_a.szc = 0;
4977         vn_a.lgrp_mem_policy_flags = 0;
4978
4979         error = as_map(as, *addrp, len, segvn_create, &vn_a);
4980
4981         as_rangeunlock(as);
4982         ZFS_EXIT(zfsvfs);
4983         return (error);
4984 }
4985
4986 /* ARGSUSED */
4987 static int
4988 zfs_addmap(vnode_t *vp, offset_t off, struct as *as, caddr_t addr,
4989     size_t len, uchar_t prot, uchar_t maxprot, uint_t flags, cred_t *cr,
4990     caller_context_t *ct)
4991 {
4992         uint64_t pages = btopr(len);
4993
4994         atomic_add_64(&VTOZ(vp)->z_mapcnt, pages);
4995         return (0);
4996 }
4997
4998 /*
4999  * The reason we push dirty pages as part of zfs_delmap() is so that we get a
5000  * more accurate mtime for the associated file.  Since we don't have a way of
5001  * detecting when the data was actually modified, we have to resort to
5002  * heuristics.  If an explicit msync() is done, then we mark the mtime when the
5003  * last page is pushed.  The problem occurs when the msync() call is omitted,
5004  * which by far the most common case:
5005  *
5006  *      open()
5007  *      mmap()
5008  *      <modify memory>
5009  *      munmap()
5010  *      close()
5011  *      <time lapse>
5012  *      putpage() via fsflush
5013  *
5014  * If we wait until fsflush to come along, we can have a modification time that
5015  * is some arbitrary point in the future.  In order to prevent this in the
5016  * common case, we flush pages whenever a (MAP_SHARED, PROT_WRITE) mapping is
5017  * torn down.
5018  */
5019 /* ARGSUSED */
5020 static int
5021 zfs_delmap(vnode_t *vp, offset_t off, struct as *as, caddr_t addr,
5022     size_t len, uint_t prot, uint_t maxprot, uint_t flags, cred_t *cr,
5023     caller_context_t *ct)
5024 {
5025         uint64_t pages = btopr(len);
5026
5027         ASSERT3U(VTOZ(vp)->z_mapcnt, >=, pages);
5028         atomic_add_64(&VTOZ(vp)->z_mapcnt, -pages);
5029
5030         if ((flags & MAP_SHARED) && (prot & PROT_WRITE) &&
5031             vn_has_cached_data(vp))
5032                 (void) VOP_PUTPAGE(vp, off, len, B_ASYNC, cr, ct);
5033
5034         return (0);
5035 }
5036
5037 /*
5038  * Free or allocate space in a file.  Currently, this function only
5039  * supports the `F_FREESP' command.  However, this command is somewhat
5040  * misnamed, as its functionality includes the ability to allocate as
5041  * well as free space.
5042  *
5043  *      IN:     vp      - vnode of file to free data in.
5044  *              cmd     - action to take (only F_FREESP supported).
5045  *              bfp     - section of file to free/alloc.
5046  *              flag    - current file open mode flags.
5047  *              offset  - current file offset.
5048  *              cr      - credentials of caller [UNUSED].
5049  *              ct      - caller context.
5050  *
5051  *      RETURN: 0 on success, error code on failure.
5052  *
5053  * Timestamps:
5054  *      vp - ctime|mtime updated
5055  */
5056 /* ARGSUSED */
5057 static int
5058 zfs_space(vnode_t *vp, int cmd, flock64_t *bfp, int flag,
5059     offset_t offset, cred_t *cr, caller_context_t *ct)
5060 {
5061         znode_t         *zp = VTOZ(vp);
5062         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
5063         uint64_t        off, len;
5064         int             error;
5065
5066         ZFS_ENTER(zfsvfs);
5067         ZFS_VERIFY_ZP(zp);
5068
5069         if (cmd != F_FREESP) {
5070                 ZFS_EXIT(zfsvfs);
5071                 return (SET_ERROR(EINVAL));
5072         }
5073
5074         if (error = convoff(vp, bfp, 0, offset)) {
5075                 ZFS_EXIT(zfsvfs);
5076                 return (error);
5077         }
5078
5079         if (bfp->l_len < 0) {
5080                 ZFS_EXIT(zfsvfs);
5081                 return (SET_ERROR(EINVAL));
5082         }
5083
5084         off = bfp->l_start;
5085         len = bfp->l_len; /* 0 means from off to end of file */
5086
5087         error = zfs_freesp(zp, off, len, flag, TRUE);
5088
5089         ZFS_EXIT(zfsvfs);
5090         return (error);
5091 }
5092 #endif  /* sun */
5093
5094 CTASSERT(sizeof(struct zfid_short) <= sizeof(struct fid));
5095 CTASSERT(sizeof(struct zfid_long) <= sizeof(struct fid));
5096
5097 /*ARGSUSED*/
5098 static int
5099 zfs_fid(vnode_t *vp, fid_t *fidp, caller_context_t *ct)
5100 {
5101         znode_t         *zp = VTOZ(vp);
5102         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
5103         uint32_t        gen;
5104         uint64_t        gen64;
5105         uint64_t        object = zp->z_id;
5106         zfid_short_t    *zfid;
5107         int             size, i, error;
5108
5109         ZFS_ENTER(zfsvfs);
5110         ZFS_VERIFY_ZP(zp);
5111
5112         if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_GEN(zfsvfs),
5113             &gen64, sizeof (uint64_t))) != 0) {
5114                 ZFS_EXIT(zfsvfs);
5115                 return (error);
5116         }
5117
5118         gen = (uint32_t)gen64;
5119
5120         size = (zfsvfs->z_parent != zfsvfs) ? LONG_FID_LEN : SHORT_FID_LEN;
5121
5122 #ifdef illumos
5123         if (fidp->fid_len < size) {
5124                 fidp->fid_len = size;
5125                 ZFS_EXIT(zfsvfs);
5126                 return (SET_ERROR(ENOSPC));
5127         }
5128 #else
5129         fidp->fid_len = size;
5130 #endif
5131
5132         zfid = (zfid_short_t *)fidp;
5133
5134         zfid->zf_len = size;
5135
5136         for (i = 0; i < sizeof (zfid->zf_object); i++)
5137                 zfid->zf_object[i] = (uint8_t)(object >> (8 * i));
5138
5139         /* Must have a non-zero generation number to distinguish from .zfs */
5140         if (gen == 0)
5141                 gen = 1;
5142         for (i = 0; i < sizeof (zfid->zf_gen); i++)
5143                 zfid->zf_gen[i] = (uint8_t)(gen >> (8 * i));
5144
5145         if (size == LONG_FID_LEN) {
5146                 uint64_t        objsetid = dmu_objset_id(zfsvfs->z_os);
5147                 zfid_long_t     *zlfid;
5148
5149                 zlfid = (zfid_long_t *)fidp;
5150
5151                 for (i = 0; i < sizeof (zlfid->zf_setid); i++)
5152                         zlfid->zf_setid[i] = (uint8_t)(objsetid >> (8 * i));
5153
5154                 /* XXX - this should be the generation number for the objset */
5155                 for (i = 0; i < sizeof (zlfid->zf_setgen); i++)
5156                         zlfid->zf_setgen[i] = 0;
5157         }
5158
5159         ZFS_EXIT(zfsvfs);
5160         return (0);
5161 }
5162
5163 static int
5164 zfs_pathconf(vnode_t *vp, int cmd, ulong_t *valp, cred_t *cr,
5165     caller_context_t *ct)
5166 {
5167         znode_t         *zp, *xzp;
5168         zfsvfs_t        *zfsvfs;
5169         zfs_dirlock_t   *dl;
5170         int             error;
5171
5172         switch (cmd) {
5173         case _PC_LINK_MAX:
5174                 *valp = INT_MAX;
5175                 return (0);
5176
5177         case _PC_FILESIZEBITS:
5178                 *valp = 64;
5179                 return (0);
5180 #ifdef sun
5181         case _PC_XATTR_EXISTS:
5182                 zp = VTOZ(vp);
5183                 zfsvfs = zp->z_zfsvfs;
5184                 ZFS_ENTER(zfsvfs);
5185                 ZFS_VERIFY_ZP(zp);
5186                 *valp = 0;
5187                 error = zfs_dirent_lock(&dl, zp, "", &xzp,
5188                     ZXATTR | ZEXISTS | ZSHARED, NULL, NULL);
5189                 if (error == 0) {
5190                         zfs_dirent_unlock(dl);
5191                         if (!zfs_dirempty(xzp))
5192                                 *valp = 1;
5193                         VN_RELE(ZTOV(xzp));
5194                 } else if (error == ENOENT) {
5195                         /*
5196                          * If there aren't extended attributes, it's the
5197                          * same as having zero of them.
5198                          */
5199                         error = 0;
5200                 }
5201                 ZFS_EXIT(zfsvfs);
5202                 return (error);
5203
5204         case _PC_SATTR_ENABLED:
5205         case _PC_SATTR_EXISTS:
5206                 *valp = vfs_has_feature(vp->v_vfsp, VFSFT_SYSATTR_VIEWS) &&
5207                     (vp->v_type == VREG || vp->v_type == VDIR);
5208                 return (0);
5209
5210         case _PC_ACCESS_FILTERING:
5211                 *valp = vfs_has_feature(vp->v_vfsp, VFSFT_ACCESS_FILTER) &&
5212                     vp->v_type == VDIR;
5213                 return (0);
5214
5215         case _PC_ACL_ENABLED:
5216                 *valp = _ACL_ACE_ENABLED;
5217                 return (0);
5218 #endif  /* sun */
5219         case _PC_MIN_HOLE_SIZE:
5220                 *valp = (int)SPA_MINBLOCKSIZE;
5221                 return (0);
5222 #ifdef sun
5223         case _PC_TIMESTAMP_RESOLUTION:
5224                 /* nanosecond timestamp resolution */
5225                 *valp = 1L;
5226                 return (0);
5227 #endif  /* sun */
5228         case _PC_ACL_EXTENDED:
5229                 *valp = 0;
5230                 return (0);
5231
5232         case _PC_ACL_NFS4:
5233                 *valp = 1;
5234                 return (0);
5235
5236         case _PC_ACL_PATH_MAX:
5237                 *valp = ACL_MAX_ENTRIES;
5238                 return (0);
5239
5240         default:
5241                 return (EOPNOTSUPP);
5242         }
5243 }
5244
5245 /*ARGSUSED*/
5246 static int
5247 zfs_getsecattr(vnode_t *vp, vsecattr_t *vsecp, int flag, cred_t *cr,
5248     caller_context_t *ct)
5249 {
5250         znode_t *zp = VTOZ(vp);
5251         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
5252         int error;
5253         boolean_t skipaclchk = (flag & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
5254
5255         ZFS_ENTER(zfsvfs);
5256         ZFS_VERIFY_ZP(zp);
5257         error = zfs_getacl(zp, vsecp, skipaclchk, cr);
5258         ZFS_EXIT(zfsvfs);
5259
5260         return (error);
5261 }
5262
5263 /*ARGSUSED*/
5264 static int
5265 zfs_setsecattr(vnode_t *vp, vsecattr_t *vsecp, int flag, cred_t *cr,
5266     caller_context_t *ct)
5267 {
5268         znode_t *zp = VTOZ(vp);
5269         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
5270         int error;
5271         boolean_t skipaclchk = (flag & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
5272         zilog_t *zilog = zfsvfs->z_log;
5273
5274         ZFS_ENTER(zfsvfs);
5275         ZFS_VERIFY_ZP(zp);
5276
5277         error = zfs_setacl(zp, vsecp, skipaclchk, cr);
5278
5279         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
5280                 zil_commit(zilog, 0);
5281
5282         ZFS_EXIT(zfsvfs);
5283         return (error);
5284 }
5285
5286 #ifdef sun
5287 /*
5288  * The smallest read we may consider to loan out an arcbuf.
5289  * This must be a power of 2.
5290  */
5291 int zcr_blksz_min = (1 << 10);  /* 1K */
5292 /*
5293  * If set to less than the file block size, allow loaning out of an
5294  * arcbuf for a partial block read.  This must be a power of 2.
5295  */
5296 int zcr_blksz_max = (1 << 17);  /* 128K */
5297
5298 /*ARGSUSED*/
5299 static int
5300 zfs_reqzcbuf(vnode_t *vp, enum uio_rw ioflag, xuio_t *xuio, cred_t *cr,
5301     caller_context_t *ct)
5302 {
5303         znode_t *zp = VTOZ(vp);
5304         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
5305         int max_blksz = zfsvfs->z_max_blksz;
5306         uio_t *uio = &xuio->xu_uio;
5307         ssize_t size = uio->uio_resid;
5308         offset_t offset = uio->uio_loffset;
5309         int blksz;
5310         int fullblk, i;
5311         arc_buf_t *abuf;
5312         ssize_t maxsize;
5313         int preamble, postamble;
5314
5315         if (xuio->xu_type != UIOTYPE_ZEROCOPY)
5316                 return (SET_ERROR(EINVAL));
5317
5318         ZFS_ENTER(zfsvfs);
5319         ZFS_VERIFY_ZP(zp);
5320         switch (ioflag) {
5321         case UIO_WRITE:
5322                 /*
5323                  * Loan out an arc_buf for write if write size is bigger than
5324                  * max_blksz, and the file's block size is also max_blksz.
5325                  */
5326                 blksz = max_blksz;
5327                 if (size < blksz || zp->z_blksz != blksz) {
5328                         ZFS_EXIT(zfsvfs);
5329                         return (SET_ERROR(EINVAL));
5330                 }
5331                 /*
5332                  * Caller requests buffers for write before knowing where the
5333                  * write offset might be (e.g. NFS TCP write).
5334                  */
5335                 if (offset == -1) {
5336                         preamble = 0;
5337                 } else {
5338                         preamble = P2PHASE(offset, blksz);
5339                         if (preamble) {
5340                                 preamble = blksz - preamble;
5341                                 size -= preamble;
5342                         }
5343                 }
5344
5345                 postamble = P2PHASE(size, blksz);
5346                 size -= postamble;
5347
5348                 fullblk = size / blksz;
5349                 (void) dmu_xuio_init(xuio,
5350                     (preamble != 0) + fullblk + (postamble != 0));
5351                 DTRACE_PROBE3(zfs_reqzcbuf_align, int, preamble,
5352                     int, postamble, int,
5353                     (preamble != 0) + fullblk + (postamble != 0));
5354
5355                 /*
5356                  * Have to fix iov base/len for partial buffers.  They
5357                  * currently represent full arc_buf's.
5358                  */
5359                 if (preamble) {
5360                         /* data begins in the middle of the arc_buf */
5361                         abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
5362                             blksz);
5363                         ASSERT(abuf);
5364                         (void) dmu_xuio_add(xuio, abuf,
5365                             blksz - preamble, preamble);
5366                 }
5367
5368                 for (i = 0; i < fullblk; i++) {
5369                         abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
5370                             blksz);
5371                         ASSERT(abuf);
5372                         (void) dmu_xuio_add(xuio, abuf, 0, blksz);
5373                 }
5374
5375                 if (postamble) {
5376                         /* data ends in the middle of the arc_buf */
5377                         abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
5378                             blksz);
5379                         ASSERT(abuf);
5380                         (void) dmu_xuio_add(xuio, abuf, 0, postamble);
5381                 }
5382                 break;
5383         case UIO_READ:
5384                 /*
5385                  * Loan out an arc_buf for read if the read size is larger than
5386                  * the current file block size.  Block alignment is not
5387                  * considered.  Partial arc_buf will be loaned out for read.
5388                  */
5389                 blksz = zp->z_blksz;
5390                 if (blksz < zcr_blksz_min)
5391                         blksz = zcr_blksz_min;
5392                 if (blksz > zcr_blksz_max)
5393                         blksz = zcr_blksz_max;
5394                 /* avoid potential complexity of dealing with it */
5395                 if (blksz > max_blksz) {
5396                         ZFS_EXIT(zfsvfs);
5397                         return (SET_ERROR(EINVAL));
5398                 }
5399
5400                 maxsize = zp->z_size - uio->uio_loffset;
5401                 if (size > maxsize)
5402                         size = maxsize;
5403
5404                 if (size < blksz || vn_has_cached_data(vp)) {
5405                         ZFS_EXIT(zfsvfs);
5406                         return (SET_ERROR(EINVAL));
5407                 }
5408                 break;
5409         default:
5410                 ZFS_EXIT(zfsvfs);
5411                 return (SET_ERROR(EINVAL));
5412         }
5413
5414         uio->uio_extflg = UIO_XUIO;
5415         XUIO_XUZC_RW(xuio) = ioflag;
5416         ZFS_EXIT(zfsvfs);
5417         return (0);
5418 }
5419
5420 /*ARGSUSED*/
5421 static int
5422 zfs_retzcbuf(vnode_t *vp, xuio_t *xuio, cred_t *cr, caller_context_t *ct)
5423 {
5424         int i;
5425         arc_buf_t *abuf;
5426         int ioflag = XUIO_XUZC_RW(xuio);
5427
5428         ASSERT(xuio->xu_type == UIOTYPE_ZEROCOPY);
5429
5430         i = dmu_xuio_cnt(xuio);
5431         while (i-- > 0) {
5432                 abuf = dmu_xuio_arcbuf(xuio, i);
5433                 /*
5434                  * if abuf == NULL, it must be a write buffer
5435                  * that has been returned in zfs_write().
5436                  */
5437                 if (abuf)
5438                         dmu_return_arcbuf(abuf);
5439                 ASSERT(abuf || ioflag == UIO_WRITE);
5440         }
5441
5442         dmu_xuio_fini(xuio);
5443         return (0);
5444 }
5445
5446 /*
5447  * Predeclare these here so that the compiler assumes that
5448  * this is an "old style" function declaration that does
5449  * not include arguments => we won't get type mismatch errors
5450  * in the initializations that follow.
5451  */
5452 static int zfs_inval();
5453 static int zfs_isdir();
5454
5455 static int
5456 zfs_inval()
5457 {
5458         return (SET_ERROR(EINVAL));
5459 }
5460
5461 static int
5462 zfs_isdir()
5463 {
5464         return (SET_ERROR(EISDIR));
5465 }
5466 /*
5467  * Directory vnode operations template
5468  */
5469 vnodeops_t *zfs_dvnodeops;
5470 const fs_operation_def_t zfs_dvnodeops_template[] = {
5471         VOPNAME_OPEN,           { .vop_open = zfs_open },
5472         VOPNAME_CLOSE,          { .vop_close = zfs_close },
5473         VOPNAME_READ,           { .error = zfs_isdir },
5474         VOPNAME_WRITE,          { .error = zfs_isdir },
5475         VOPNAME_IOCTL,          { .vop_ioctl = zfs_ioctl },
5476         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
5477         VOPNAME_SETATTR,        { .vop_setattr = zfs_setattr },
5478         VOPNAME_ACCESS,         { .vop_access = zfs_access },
5479         VOPNAME_LOOKUP,         { .vop_lookup = zfs_lookup },
5480         VOPNAME_CREATE,         { .vop_create = zfs_create },
5481         VOPNAME_REMOVE,         { .vop_remove = zfs_remove },
5482         VOPNAME_LINK,           { .vop_link = zfs_link },
5483         VOPNAME_RENAME,         { .vop_rename = zfs_rename },
5484         VOPNAME_MKDIR,          { .vop_mkdir = zfs_mkdir },
5485         VOPNAME_RMDIR,          { .vop_rmdir = zfs_rmdir },
5486         VOPNAME_READDIR,        { .vop_readdir = zfs_readdir },
5487         VOPNAME_SYMLINK,        { .vop_symlink = zfs_symlink },
5488         VOPNAME_FSYNC,          { .vop_fsync = zfs_fsync },
5489         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
5490         VOPNAME_FID,            { .vop_fid = zfs_fid },
5491         VOPNAME_SEEK,           { .vop_seek = zfs_seek },
5492         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
5493         VOPNAME_GETSECATTR,     { .vop_getsecattr = zfs_getsecattr },
5494         VOPNAME_SETSECATTR,     { .vop_setsecattr = zfs_setsecattr },
5495         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
5496         NULL,                   NULL
5497 };
5498
5499 /*
5500  * Regular file vnode operations template
5501  */
5502 vnodeops_t *zfs_fvnodeops;
5503 const fs_operation_def_t zfs_fvnodeops_template[] = {
5504         VOPNAME_OPEN,           { .vop_open = zfs_open },
5505         VOPNAME_CLOSE,          { .vop_close = zfs_close },
5506         VOPNAME_READ,           { .vop_read = zfs_read },
5507         VOPNAME_WRITE,          { .vop_write = zfs_write },
5508         VOPNAME_IOCTL,          { .vop_ioctl = zfs_ioctl },
5509         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
5510         VOPNAME_SETATTR,        { .vop_setattr = zfs_setattr },
5511         VOPNAME_ACCESS,         { .vop_access = zfs_access },
5512         VOPNAME_LOOKUP,         { .vop_lookup = zfs_lookup },
5513         VOPNAME_RENAME,         { .vop_rename = zfs_rename },
5514         VOPNAME_FSYNC,          { .vop_fsync = zfs_fsync },
5515         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
5516         VOPNAME_FID,            { .vop_fid = zfs_fid },
5517         VOPNAME_SEEK,           { .vop_seek = zfs_seek },
5518         VOPNAME_FRLOCK,         { .vop_frlock = zfs_frlock },
5519         VOPNAME_SPACE,          { .vop_space = zfs_space },
5520         VOPNAME_GETPAGE,        { .vop_getpage = zfs_getpage },
5521         VOPNAME_PUTPAGE,        { .vop_putpage = zfs_putpage },
5522         VOPNAME_MAP,            { .vop_map = zfs_map },
5523         VOPNAME_ADDMAP,         { .vop_addmap = zfs_addmap },
5524         VOPNAME_DELMAP,         { .vop_delmap = zfs_delmap },
5525         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
5526         VOPNAME_GETSECATTR,     { .vop_getsecattr = zfs_getsecattr },
5527         VOPNAME_SETSECATTR,     { .vop_setsecattr = zfs_setsecattr },
5528         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
5529         VOPNAME_REQZCBUF,       { .vop_reqzcbuf = zfs_reqzcbuf },
5530         VOPNAME_RETZCBUF,       { .vop_retzcbuf = zfs_retzcbuf },
5531         NULL,                   NULL
5532 };
5533
5534 /*
5535  * Symbolic link vnode operations template
5536  */
5537 vnodeops_t *zfs_symvnodeops;
5538 const fs_operation_def_t zfs_symvnodeops_template[] = {
5539         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
5540         VOPNAME_SETATTR,        { .vop_setattr = zfs_setattr },
5541         VOPNAME_ACCESS,         { .vop_access = zfs_access },
5542         VOPNAME_RENAME,         { .vop_rename = zfs_rename },
5543         VOPNAME_READLINK,       { .vop_readlink = zfs_readlink },
5544         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
5545         VOPNAME_FID,            { .vop_fid = zfs_fid },
5546         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
5547         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
5548         NULL,                   NULL
5549 };
5550
5551 /*
5552  * special share hidden files vnode operations template
5553  */
5554 vnodeops_t *zfs_sharevnodeops;
5555 const fs_operation_def_t zfs_sharevnodeops_template[] = {
5556         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
5557         VOPNAME_ACCESS,         { .vop_access = zfs_access },
5558         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
5559         VOPNAME_FID,            { .vop_fid = zfs_fid },
5560         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
5561         VOPNAME_GETSECATTR,     { .vop_getsecattr = zfs_getsecattr },
5562         VOPNAME_SETSECATTR,     { .vop_setsecattr = zfs_setsecattr },
5563         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
5564         NULL,                   NULL
5565 };
5566
5567 /*
5568  * Extended attribute directory vnode operations template
5569  *
5570  * This template is identical to the directory vnodes
5571  * operation template except for restricted operations:
5572  *      VOP_MKDIR()
5573  *      VOP_SYMLINK()
5574  *
5575  * Note that there are other restrictions embedded in:
5576  *      zfs_create()    - restrict type to VREG
5577  *      zfs_link()      - no links into/out of attribute space
5578  *      zfs_rename()    - no moves into/out of attribute space
5579  */
5580 vnodeops_t *zfs_xdvnodeops;
5581 const fs_operation_def_t zfs_xdvnodeops_template[] = {
5582         VOPNAME_OPEN,           { .vop_open = zfs_open },
5583         VOPNAME_CLOSE,          { .vop_close = zfs_close },
5584         VOPNAME_IOCTL,          { .vop_ioctl = zfs_ioctl },
5585         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
5586         VOPNAME_SETATTR,        { .vop_setattr = zfs_setattr },
5587         VOPNAME_ACCESS,         { .vop_access = zfs_access },
5588         VOPNAME_LOOKUP,         { .vop_lookup = zfs_lookup },
5589         VOPNAME_CREATE,         { .vop_create = zfs_create },
5590         VOPNAME_REMOVE,         { .vop_remove = zfs_remove },
5591         VOPNAME_LINK,           { .vop_link = zfs_link },
5592         VOPNAME_RENAME,         { .vop_rename = zfs_rename },
5593         VOPNAME_MKDIR,          { .error = zfs_inval },
5594         VOPNAME_RMDIR,          { .vop_rmdir = zfs_rmdir },
5595         VOPNAME_READDIR,        { .vop_readdir = zfs_readdir },
5596         VOPNAME_SYMLINK,        { .error = zfs_inval },
5597         VOPNAME_FSYNC,          { .vop_fsync = zfs_fsync },
5598         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
5599         VOPNAME_FID,            { .vop_fid = zfs_fid },
5600         VOPNAME_SEEK,           { .vop_seek = zfs_seek },
5601         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
5602         VOPNAME_GETSECATTR,     { .vop_getsecattr = zfs_getsecattr },
5603         VOPNAME_SETSECATTR,     { .vop_setsecattr = zfs_setsecattr },
5604         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
5605         NULL,                   NULL
5606 };
5607
5608 /*
5609  * Error vnode operations template
5610  */
5611 vnodeops_t *zfs_evnodeops;
5612 const fs_operation_def_t zfs_evnodeops_template[] = {
5613         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
5614         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
5615         NULL,                   NULL
5616 };
5617 #endif  /* sun */
5618
5619 static int
5620 ioflags(int ioflags)
5621 {
5622         int flags = 0;
5623
5624         if (ioflags & IO_APPEND)
5625                 flags |= FAPPEND;
5626         if (ioflags & IO_NDELAY)
5627                 flags |= FNONBLOCK;
5628         if (ioflags & IO_SYNC)
5629                 flags |= (FSYNC | FDSYNC | FRSYNC);
5630
5631         return (flags);
5632 }
5633
5634 static int
5635 zfs_getpages(struct vnode *vp, vm_page_t *m, int count, int reqpage)
5636 {
5637         znode_t *zp = VTOZ(vp);
5638         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
5639         objset_t *os = zp->z_zfsvfs->z_os;
5640         vm_page_t mfirst, mlast, mreq;
5641         vm_object_t object;
5642         caddr_t va;
5643         struct sf_buf *sf;
5644         off_t startoff, endoff;
5645         int i, error;
5646         vm_pindex_t reqstart, reqend;
5647         int pcount, lsize, reqsize, size;
5648
5649         ZFS_ENTER(zfsvfs);
5650         ZFS_VERIFY_ZP(zp);
5651
5652         pcount = OFF_TO_IDX(round_page(count));
5653         mreq = m[reqpage];
5654         object = mreq->object;
5655         error = 0;
5656
5657         KASSERT(vp->v_object == object, ("mismatching object"));
5658
5659         if (pcount > 1 && zp->z_blksz > PAGESIZE) {
5660                 startoff = rounddown(IDX_TO_OFF(mreq->pindex), zp->z_blksz);
5661                 reqstart = OFF_TO_IDX(round_page(startoff));
5662                 if (reqstart < m[0]->pindex)
5663                         reqstart = 0;
5664                 else
5665                         reqstart = reqstart - m[0]->pindex;
5666                 endoff = roundup(IDX_TO_OFF(mreq->pindex) + PAGE_SIZE,
5667                     zp->z_blksz);
5668                 reqend = OFF_TO_IDX(trunc_page(endoff)) - 1;
5669                 if (reqend > m[pcount - 1]->pindex)
5670                         reqend = m[pcount - 1]->pindex;
5671                 reqsize = reqend - m[reqstart]->pindex + 1;
5672                 KASSERT(reqstart <= reqpage && reqpage < reqstart + reqsize,
5673                     ("reqpage beyond [reqstart, reqstart + reqsize[ bounds"));
5674         } else {
5675                 reqstart = reqpage;
5676                 reqsize = 1;
5677         }
5678         mfirst = m[reqstart];
5679         mlast = m[reqstart + reqsize - 1];
5680
5681         VM_OBJECT_LOCK(object);
5682
5683         for (i = 0; i < reqstart; i++) {
5684                 vm_page_lock(m[i]);
5685                 vm_page_free(m[i]);
5686                 vm_page_unlock(m[i]);
5687         }
5688         for (i = reqstart + reqsize; i < pcount; i++) {
5689                 vm_page_lock(m[i]);
5690                 vm_page_free(m[i]);
5691                 vm_page_unlock(m[i]);
5692         }
5693
5694         if (mreq->valid && reqsize == 1) {
5695                 if (mreq->valid != VM_PAGE_BITS_ALL)
5696                         vm_page_zero_invalid(mreq, TRUE);
5697                 VM_OBJECT_UNLOCK(object);
5698                 ZFS_EXIT(zfsvfs);
5699                 return (VM_PAGER_OK);
5700         }
5701
5702         PCPU_INC(cnt.v_vnodein);
5703         PCPU_ADD(cnt.v_vnodepgsin, reqsize);
5704
5705         if (IDX_TO_OFF(mreq->pindex) >= object->un_pager.vnp.vnp_size) {
5706                 for (i = reqstart; i < reqstart + reqsize; i++) {
5707                         if (i != reqpage) {
5708                                 vm_page_lock(m[i]);
5709                                 vm_page_free(m[i]);
5710                                 vm_page_unlock(m[i]);
5711                         }
5712                 }
5713                 VM_OBJECT_UNLOCK(object);
5714                 ZFS_EXIT(zfsvfs);
5715                 return (VM_PAGER_BAD);
5716         }
5717
5718         lsize = PAGE_SIZE;
5719         if (IDX_TO_OFF(mlast->pindex) + lsize > object->un_pager.vnp.vnp_size)
5720                 lsize = object->un_pager.vnp.vnp_size - IDX_TO_OFF(mlast->pindex);
5721
5722         VM_OBJECT_UNLOCK(object);
5723
5724         for (i = reqstart; i < reqstart + reqsize; i++) {
5725                 size = PAGE_SIZE;
5726                 if (i == (reqstart + reqsize - 1))
5727                         size = lsize;
5728                 va = zfs_map_page(m[i], &sf);
5729                 error = dmu_read(os, zp->z_id, IDX_TO_OFF(m[i]->pindex),
5730                     size, va, DMU_READ_PREFETCH);
5731                 if (size != PAGE_SIZE)
5732                         bzero(va + size, PAGE_SIZE - size);
5733                 zfs_unmap_page(sf);
5734                 if (error != 0)
5735                         break;
5736         }
5737
5738         VM_OBJECT_LOCK(object);
5739
5740         for (i = reqstart; i < reqstart + reqsize; i++) {
5741                 if (!error)
5742                         m[i]->valid = VM_PAGE_BITS_ALL;
5743                 KASSERT(m[i]->dirty == 0, ("zfs_getpages: page %p is dirty", m[i]));
5744                 if (i != reqpage)
5745                         vm_page_readahead_finish(m[i]);
5746         }
5747
5748         VM_OBJECT_UNLOCK(object);
5749
5750         ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
5751         ZFS_EXIT(zfsvfs);
5752         return (error ? VM_PAGER_ERROR : VM_PAGER_OK);
5753 }
5754
5755 static int
5756 zfs_freebsd_getpages(ap)
5757         struct vop_getpages_args /* {
5758                 struct vnode *a_vp;
5759                 vm_page_t *a_m;
5760                 int a_count;
5761                 int a_reqpage;
5762                 vm_ooffset_t a_offset;
5763         } */ *ap;
5764 {
5765
5766         return (zfs_getpages(ap->a_vp, ap->a_m, ap->a_count, ap->a_reqpage));
5767 }
5768
5769 static int
5770 zfs_freebsd_bmap(ap)
5771         struct vop_bmap_args /* {
5772                 struct vnode *a_vp;
5773                 daddr_t  a_bn;
5774                 struct bufobj **a_bop;
5775                 daddr_t *a_bnp;
5776                 int *a_runp;
5777                 int *a_runb;
5778         } */ *ap;
5779 {
5780
5781         if (ap->a_bop != NULL)
5782                 *ap->a_bop = &ap->a_vp->v_bufobj;
5783         if (ap->a_bnp != NULL)
5784                 *ap->a_bnp = ap->a_bn;
5785         if (ap->a_runp != NULL)
5786                 *ap->a_runp = 0;
5787         if (ap->a_runb != NULL)
5788                 *ap->a_runb = 0;
5789
5790         return (0);
5791 }
5792
5793 static int
5794 zfs_freebsd_open(ap)
5795         struct vop_open_args /* {
5796                 struct vnode *a_vp;
5797                 int a_mode;
5798                 struct ucred *a_cred;
5799                 struct thread *a_td;
5800         } */ *ap;
5801 {
5802         vnode_t *vp = ap->a_vp;
5803         znode_t *zp = VTOZ(vp);
5804         int error;
5805
5806         error = zfs_open(&vp, ap->a_mode, ap->a_cred, NULL);
5807         if (error == 0)
5808                 vnode_create_vobject(vp, zp->z_size, ap->a_td);
5809         return (error);
5810 }
5811
5812 static int
5813 zfs_freebsd_close(ap)
5814         struct vop_close_args /* {
5815                 struct vnode *a_vp;
5816                 int  a_fflag;
5817                 struct ucred *a_cred;
5818                 struct thread *a_td;
5819         } */ *ap;
5820 {
5821
5822         return (zfs_close(ap->a_vp, ap->a_fflag, 1, 0, ap->a_cred, NULL));
5823 }
5824
5825 static int
5826 zfs_freebsd_ioctl(ap)
5827         struct vop_ioctl_args /* {
5828                 struct vnode *a_vp;
5829                 u_long a_command;
5830                 caddr_t a_data;
5831                 int a_fflag;
5832                 struct ucred *cred;
5833                 struct thread *td;
5834         } */ *ap;
5835 {
5836
5837         return (zfs_ioctl(ap->a_vp, ap->a_command, (intptr_t)ap->a_data,
5838             ap->a_fflag, ap->a_cred, NULL, NULL));
5839 }
5840
5841 static int
5842 zfs_freebsd_read(ap)
5843         struct vop_read_args /* {
5844                 struct vnode *a_vp;
5845                 struct uio *a_uio;
5846                 int a_ioflag;
5847                 struct ucred *a_cred;
5848         } */ *ap;
5849 {
5850
5851         return (zfs_read(ap->a_vp, ap->a_uio, ioflags(ap->a_ioflag),
5852             ap->a_cred, NULL));
5853 }
5854
5855 static int
5856 zfs_freebsd_write(ap)
5857         struct vop_write_args /* {
5858                 struct vnode *a_vp;
5859                 struct uio *a_uio;
5860                 int a_ioflag;
5861                 struct ucred *a_cred;
5862         } */ *ap;
5863 {
5864
5865         return (zfs_write(ap->a_vp, ap->a_uio, ioflags(ap->a_ioflag),
5866             ap->a_cred, NULL));
5867 }
5868
5869 static int
5870 zfs_freebsd_access(ap)
5871         struct vop_access_args /* {
5872                 struct vnode *a_vp;
5873                 accmode_t a_accmode;
5874                 struct ucred *a_cred;
5875                 struct thread *a_td;
5876         } */ *ap;
5877 {
5878         vnode_t *vp = ap->a_vp;
5879         znode_t *zp = VTOZ(vp);
5880         accmode_t accmode;
5881         int error = 0;
5882
5883         /*
5884          * ZFS itself only knowns about VREAD, VWRITE, VEXEC and VAPPEND,
5885          */
5886         accmode = ap->a_accmode & (VREAD|VWRITE|VEXEC|VAPPEND);
5887         if (accmode != 0)
5888                 error = zfs_access(ap->a_vp, accmode, 0, ap->a_cred, NULL);
5889
5890         /*
5891          * VADMIN has to be handled by vaccess().
5892          */
5893         if (error == 0) {
5894                 accmode = ap->a_accmode & ~(VREAD|VWRITE|VEXEC|VAPPEND);
5895                 if (accmode != 0) {
5896                         error = vaccess(vp->v_type, zp->z_mode, zp->z_uid,
5897                             zp->z_gid, accmode, ap->a_cred, NULL);
5898                 }
5899         }
5900
5901         /*
5902          * For VEXEC, ensure that at least one execute bit is set for
5903          * non-directories.
5904          */
5905         if (error == 0 && (ap->a_accmode & VEXEC) != 0 && vp->v_type != VDIR &&
5906             (zp->z_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0) {
5907                 error = EACCES;
5908         }
5909
5910         return (error);
5911 }
5912
5913 static int
5914 zfs_freebsd_lookup(ap)
5915         struct vop_lookup_args /* {
5916                 struct vnode *a_dvp;
5917                 struct vnode **a_vpp;
5918                 struct componentname *a_cnp;
5919         } */ *ap;
5920 {
5921         struct componentname *cnp = ap->a_cnp;
5922         char nm[NAME_MAX + 1];
5923
5924         ASSERT(cnp->cn_namelen < sizeof(nm));
5925         strlcpy(nm, cnp->cn_nameptr, MIN(cnp->cn_namelen + 1, sizeof(nm)));
5926
5927         return (zfs_lookup(ap->a_dvp, nm, ap->a_vpp, cnp, cnp->cn_nameiop,
5928             cnp->cn_cred, cnp->cn_thread, 0));
5929 }
5930
5931 static int
5932 zfs_freebsd_create(ap)
5933         struct vop_create_args /* {
5934                 struct vnode *a_dvp;
5935                 struct vnode **a_vpp;
5936                 struct componentname *a_cnp;
5937                 struct vattr *a_vap;
5938         } */ *ap;
5939 {
5940         struct componentname *cnp = ap->a_cnp;
5941         vattr_t *vap = ap->a_vap;
5942         int mode;
5943
5944         ASSERT(cnp->cn_flags & SAVENAME);
5945
5946         vattr_init_mask(vap);
5947         mode = vap->va_mode & ALLPERMS;
5948
5949         return (zfs_create(ap->a_dvp, cnp->cn_nameptr, vap, !EXCL, mode,
5950             ap->a_vpp, cnp->cn_cred, cnp->cn_thread));
5951 }
5952
5953 static int
5954 zfs_freebsd_remove(ap)
5955         struct vop_remove_args /* {
5956                 struct vnode *a_dvp;
5957                 struct vnode *a_vp;
5958                 struct componentname *a_cnp;
5959         } */ *ap;
5960 {
5961
5962         ASSERT(ap->a_cnp->cn_flags & SAVENAME);
5963
5964         return (zfs_remove(ap->a_dvp, ap->a_cnp->cn_nameptr,
5965             ap->a_cnp->cn_cred, NULL, 0));
5966 }
5967
5968 static int
5969 zfs_freebsd_mkdir(ap)
5970         struct vop_mkdir_args /* {
5971                 struct vnode *a_dvp;
5972                 struct vnode **a_vpp;
5973                 struct componentname *a_cnp;
5974                 struct vattr *a_vap;
5975         } */ *ap;
5976 {
5977         vattr_t *vap = ap->a_vap;
5978
5979         ASSERT(ap->a_cnp->cn_flags & SAVENAME);
5980
5981         vattr_init_mask(vap);
5982
5983         return (zfs_mkdir(ap->a_dvp, ap->a_cnp->cn_nameptr, vap, ap->a_vpp,
5984             ap->a_cnp->cn_cred, NULL, 0, NULL));
5985 }
5986
5987 static int
5988 zfs_freebsd_rmdir(ap)
5989         struct vop_rmdir_args /* {
5990                 struct vnode *a_dvp;
5991                 struct vnode *a_vp;
5992                 struct componentname *a_cnp;
5993         } */ *ap;
5994 {
5995         struct componentname *cnp = ap->a_cnp;
5996
5997         ASSERT(cnp->cn_flags & SAVENAME);
5998
5999         return (zfs_rmdir(ap->a_dvp, cnp->cn_nameptr, NULL, cnp->cn_cred, NULL, 0));
6000 }
6001
6002 static int
6003 zfs_freebsd_readdir(ap)
6004         struct vop_readdir_args /* {
6005                 struct vnode *a_vp;
6006                 struct uio *a_uio;
6007                 struct ucred *a_cred;
6008                 int *a_eofflag;
6009                 int *a_ncookies;
6010                 u_long **a_cookies;
6011         } */ *ap;
6012 {
6013
6014         return (zfs_readdir(ap->a_vp, ap->a_uio, ap->a_cred, ap->a_eofflag,
6015             ap->a_ncookies, ap->a_cookies));
6016 }
6017
6018 static int
6019 zfs_freebsd_fsync(ap)
6020         struct vop_fsync_args /* {
6021                 struct vnode *a_vp;
6022                 int a_waitfor;
6023                 struct thread *a_td;
6024         } */ *ap;
6025 {
6026
6027         vop_stdfsync(ap);
6028         return (zfs_fsync(ap->a_vp, 0, ap->a_td->td_ucred, NULL));
6029 }
6030
6031 static int
6032 zfs_freebsd_getattr(ap)
6033         struct vop_getattr_args /* {
6034                 struct vnode *a_vp;
6035                 struct vattr *a_vap;
6036                 struct ucred *a_cred;
6037         } */ *ap;
6038 {
6039         vattr_t *vap = ap->a_vap;
6040         xvattr_t xvap;
6041         u_long fflags = 0;
6042         int error;
6043
6044         xva_init(&xvap);
6045         xvap.xva_vattr = *vap;
6046         xvap.xva_vattr.va_mask |= AT_XVATTR;
6047
6048         /* Convert chflags into ZFS-type flags. */
6049         /* XXX: what about SF_SETTABLE?. */
6050         XVA_SET_REQ(&xvap, XAT_IMMUTABLE);
6051         XVA_SET_REQ(&xvap, XAT_APPENDONLY);
6052         XVA_SET_REQ(&xvap, XAT_NOUNLINK);
6053         XVA_SET_REQ(&xvap, XAT_NODUMP);
6054         error = zfs_getattr(ap->a_vp, (vattr_t *)&xvap, 0, ap->a_cred, NULL);
6055         if (error != 0)
6056                 return (error);
6057
6058         /* Convert ZFS xattr into chflags. */
6059 #define FLAG_CHECK(fflag, xflag, xfield)        do {                    \
6060         if (XVA_ISSET_RTN(&xvap, (xflag)) && (xfield) != 0)             \
6061                 fflags |= (fflag);                                      \
6062 } while (0)
6063         FLAG_CHECK(SF_IMMUTABLE, XAT_IMMUTABLE,
6064             xvap.xva_xoptattrs.xoa_immutable);
6065         FLAG_CHECK(SF_APPEND, XAT_APPENDONLY,
6066             xvap.xva_xoptattrs.xoa_appendonly);
6067         FLAG_CHECK(SF_NOUNLINK, XAT_NOUNLINK,
6068             xvap.xva_xoptattrs.xoa_nounlink);
6069         FLAG_CHECK(UF_NODUMP, XAT_NODUMP,
6070             xvap.xva_xoptattrs.xoa_nodump);
6071 #undef  FLAG_CHECK
6072         *vap = xvap.xva_vattr;
6073         vap->va_flags = fflags;
6074         return (0);
6075 }
6076
6077 static int
6078 zfs_freebsd_setattr(ap)
6079         struct vop_setattr_args /* {
6080                 struct vnode *a_vp;
6081                 struct vattr *a_vap;
6082                 struct ucred *a_cred;
6083         } */ *ap;
6084 {
6085         vnode_t *vp = ap->a_vp;
6086         vattr_t *vap = ap->a_vap;
6087         cred_t *cred = ap->a_cred;
6088         xvattr_t xvap;
6089         u_long fflags;
6090         uint64_t zflags;
6091
6092         vattr_init_mask(vap);
6093         vap->va_mask &= ~AT_NOSET;
6094
6095         xva_init(&xvap);
6096         xvap.xva_vattr = *vap;
6097
6098         zflags = VTOZ(vp)->z_pflags;
6099
6100         if (vap->va_flags != VNOVAL) {
6101                 zfsvfs_t *zfsvfs = VTOZ(vp)->z_zfsvfs;
6102                 int error;
6103
6104                 if (zfsvfs->z_use_fuids == B_FALSE)
6105                         return (EOPNOTSUPP);
6106
6107                 fflags = vap->va_flags;
6108                 if ((fflags & ~(SF_IMMUTABLE|SF_APPEND|SF_NOUNLINK|UF_NODUMP)) != 0)
6109                         return (EOPNOTSUPP);
6110                 /*
6111                  * Unprivileged processes are not permitted to unset system
6112                  * flags, or modify flags if any system flags are set.
6113                  * Privileged non-jail processes may not modify system flags
6114                  * if securelevel > 0 and any existing system flags are set.
6115                  * Privileged jail processes behave like privileged non-jail
6116                  * processes if the security.jail.chflags_allowed sysctl is
6117                  * is non-zero; otherwise, they behave like unprivileged
6118                  * processes.
6119                  */
6120                 if (secpolicy_fs_owner(vp->v_mount, cred) == 0 ||
6121                     priv_check_cred(cred, PRIV_VFS_SYSFLAGS, 0) == 0) {
6122                         if (zflags &
6123                             (ZFS_IMMUTABLE | ZFS_APPENDONLY | ZFS_NOUNLINK)) {
6124                                 error = securelevel_gt(cred, 0);
6125                                 if (error != 0)
6126                                         return (error);
6127                         }
6128                 } else {
6129                         /*
6130                          * Callers may only modify the file flags on objects they
6131                          * have VADMIN rights for.
6132                          */
6133                         if ((error = VOP_ACCESS(vp, VADMIN, cred, curthread)) != 0)
6134                                 return (error);
6135                         if (zflags &
6136                             (ZFS_IMMUTABLE | ZFS_APPENDONLY | ZFS_NOUNLINK)) {
6137                                 return (EPERM);
6138                         }
6139                         if (fflags &
6140                             (SF_IMMUTABLE | SF_APPEND | SF_NOUNLINK)) {
6141                                 return (EPERM);
6142                         }
6143                 }
6144
6145 #define FLAG_CHANGE(fflag, zflag, xflag, xfield)        do {            \
6146         if (((fflags & (fflag)) && !(zflags & (zflag))) ||              \
6147             ((zflags & (zflag)) && !(fflags & (fflag)))) {              \
6148                 XVA_SET_REQ(&xvap, (xflag));                            \
6149                 (xfield) = ((fflags & (fflag)) != 0);                   \
6150         }                                                               \
6151 } while (0)
6152                 /* Convert chflags into ZFS-type flags. */
6153                 /* XXX: what about SF_SETTABLE?. */
6154                 FLAG_CHANGE(SF_IMMUTABLE, ZFS_IMMUTABLE, XAT_IMMUTABLE,
6155                     xvap.xva_xoptattrs.xoa_immutable);
6156                 FLAG_CHANGE(SF_APPEND, ZFS_APPENDONLY, XAT_APPENDONLY,
6157                     xvap.xva_xoptattrs.xoa_appendonly);
6158                 FLAG_CHANGE(SF_NOUNLINK, ZFS_NOUNLINK, XAT_NOUNLINK,
6159                     xvap.xva_xoptattrs.xoa_nounlink);
6160                 FLAG_CHANGE(UF_NODUMP, ZFS_NODUMP, XAT_NODUMP,
6161                     xvap.xva_xoptattrs.xoa_nodump);
6162 #undef  FLAG_CHANGE
6163         }
6164         return (zfs_setattr(vp, (vattr_t *)&xvap, 0, cred, NULL));
6165 }
6166
6167 static int
6168 zfs_freebsd_rename(ap)
6169         struct vop_rename_args  /* {
6170                 struct vnode *a_fdvp;
6171                 struct vnode *a_fvp;
6172                 struct componentname *a_fcnp;
6173                 struct vnode *a_tdvp;
6174                 struct vnode *a_tvp;
6175                 struct componentname *a_tcnp;
6176         } */ *ap;
6177 {
6178         vnode_t *fdvp = ap->a_fdvp;
6179         vnode_t *fvp = ap->a_fvp;
6180         vnode_t *tdvp = ap->a_tdvp;
6181         vnode_t *tvp = ap->a_tvp;
6182         int error;
6183
6184         ASSERT(ap->a_fcnp->cn_flags & (SAVENAME|SAVESTART));
6185         ASSERT(ap->a_tcnp->cn_flags & (SAVENAME|SAVESTART));
6186
6187         error = zfs_rename(fdvp, ap->a_fcnp->cn_nameptr, tdvp,
6188             ap->a_tcnp->cn_nameptr, ap->a_fcnp->cn_cred, NULL, 0);
6189
6190         if (tdvp == tvp)
6191                 VN_RELE(tdvp);
6192         else
6193                 VN_URELE(tdvp);
6194         if (tvp)
6195                 VN_URELE(tvp);
6196         VN_RELE(fdvp);
6197         VN_RELE(fvp);
6198
6199         return (error);
6200 }
6201
6202 static int
6203 zfs_freebsd_symlink(ap)
6204         struct vop_symlink_args /* {
6205                 struct vnode *a_dvp;
6206                 struct vnode **a_vpp;
6207                 struct componentname *a_cnp;
6208                 struct vattr *a_vap;
6209                 char *a_target;
6210         } */ *ap;
6211 {
6212         struct componentname *cnp = ap->a_cnp;
6213         vattr_t *vap = ap->a_vap;
6214
6215         ASSERT(cnp->cn_flags & SAVENAME);
6216
6217         vap->va_type = VLNK;    /* FreeBSD: Syscall only sets va_mode. */
6218         vattr_init_mask(vap);
6219
6220         return (zfs_symlink(ap->a_dvp, ap->a_vpp, cnp->cn_nameptr, vap,
6221             ap->a_target, cnp->cn_cred, cnp->cn_thread));
6222 }
6223
6224 static int
6225 zfs_freebsd_readlink(ap)
6226         struct vop_readlink_args /* {
6227                 struct vnode *a_vp;
6228                 struct uio *a_uio;
6229                 struct ucred *a_cred;
6230         } */ *ap;
6231 {
6232
6233         return (zfs_readlink(ap->a_vp, ap->a_uio, ap->a_cred, NULL));
6234 }
6235
6236 static int
6237 zfs_freebsd_link(ap)
6238         struct vop_link_args /* {
6239                 struct vnode *a_tdvp;
6240                 struct vnode *a_vp;
6241                 struct componentname *a_cnp;
6242         } */ *ap;
6243 {
6244         struct componentname *cnp = ap->a_cnp;
6245
6246         ASSERT(cnp->cn_flags & SAVENAME);
6247
6248         return (zfs_link(ap->a_tdvp, ap->a_vp, cnp->cn_nameptr, cnp->cn_cred, NULL, 0));
6249 }
6250
6251 static int
6252 zfs_freebsd_inactive(ap)
6253         struct vop_inactive_args /* {
6254                 struct vnode *a_vp;
6255                 struct thread *a_td;
6256         } */ *ap;
6257 {
6258         vnode_t *vp = ap->a_vp;
6259
6260         zfs_inactive(vp, ap->a_td->td_ucred, NULL);
6261         return (0);
6262 }
6263
6264 static int
6265 zfs_freebsd_reclaim(ap)
6266         struct vop_reclaim_args /* {
6267                 struct vnode *a_vp;
6268                 struct thread *a_td;
6269         } */ *ap;
6270 {
6271         vnode_t *vp = ap->a_vp;
6272         znode_t *zp = VTOZ(vp);
6273         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
6274
6275         ASSERT(zp != NULL);
6276
6277         /* Destroy the vm object and flush associated pages. */
6278         vnode_destroy_vobject(vp);
6279
6280         /*
6281          * z_teardown_inactive_lock protects from a race with
6282          * zfs_znode_dmu_fini in zfsvfs_teardown during
6283          * force unmount.
6284          */
6285         rw_enter(&zfsvfs->z_teardown_inactive_lock, RW_READER);
6286         if (zp->z_sa_hdl == NULL)
6287                 zfs_znode_free(zp);
6288         else
6289                 zfs_zinactive(zp);
6290         rw_exit(&zfsvfs->z_teardown_inactive_lock);
6291
6292         vp->v_data = NULL;
6293         return (0);
6294 }
6295
6296 static int
6297 zfs_freebsd_fid(ap)
6298         struct vop_fid_args /* {
6299                 struct vnode *a_vp;
6300                 struct fid *a_fid;
6301         } */ *ap;
6302 {
6303
6304         return (zfs_fid(ap->a_vp, (void *)ap->a_fid, NULL));
6305 }
6306
6307 static int
6308 zfs_freebsd_pathconf(ap)
6309         struct vop_pathconf_args /* {
6310                 struct vnode *a_vp;
6311                 int a_name;
6312                 register_t *a_retval;
6313         } */ *ap;
6314 {
6315         ulong_t val;
6316         int error;
6317
6318         error = zfs_pathconf(ap->a_vp, ap->a_name, &val, curthread->td_ucred, NULL);
6319         if (error == 0)
6320                 *ap->a_retval = val;
6321         else if (error == EOPNOTSUPP)
6322                 error = vop_stdpathconf(ap);
6323         return (error);
6324 }
6325
6326 static int
6327 zfs_freebsd_fifo_pathconf(ap)
6328         struct vop_pathconf_args /* {
6329                 struct vnode *a_vp;
6330                 int a_name;
6331                 register_t *a_retval;
6332         } */ *ap;
6333 {
6334
6335         switch (ap->a_name) {
6336         case _PC_ACL_EXTENDED:
6337         case _PC_ACL_NFS4:
6338         case _PC_ACL_PATH_MAX:
6339         case _PC_MAC_PRESENT:
6340                 return (zfs_freebsd_pathconf(ap));
6341         default:
6342                 return (fifo_specops.vop_pathconf(ap));
6343         }
6344 }
6345
6346 /*
6347  * FreeBSD's extended attributes namespace defines file name prefix for ZFS'
6348  * extended attribute name:
6349  *
6350  *      NAMESPACE       PREFIX  
6351  *      system          freebsd:system:
6352  *      user            (none, can be used to access ZFS fsattr(5) attributes
6353  *                      created on Solaris)
6354  */
6355 static int
6356 zfs_create_attrname(int attrnamespace, const char *name, char *attrname,
6357     size_t size)
6358 {
6359         const char *namespace, *prefix, *suffix;
6360
6361         /* We don't allow '/' character in attribute name. */
6362         if (strchr(name, '/') != NULL)
6363                 return (EINVAL);
6364         /* We don't allow attribute names that start with "freebsd:" string. */
6365         if (strncmp(name, "freebsd:", 8) == 0)
6366                 return (EINVAL);
6367
6368         bzero(attrname, size);
6369
6370         switch (attrnamespace) {
6371         case EXTATTR_NAMESPACE_USER:
6372 #if 0
6373                 prefix = "freebsd:";
6374                 namespace = EXTATTR_NAMESPACE_USER_STRING;
6375                 suffix = ":";
6376 #else
6377                 /*
6378                  * This is the default namespace by which we can access all
6379                  * attributes created on Solaris.
6380                  */
6381                 prefix = namespace = suffix = "";
6382 #endif
6383                 break;
6384         case EXTATTR_NAMESPACE_SYSTEM:
6385                 prefix = "freebsd:";
6386                 namespace = EXTATTR_NAMESPACE_SYSTEM_STRING;
6387                 suffix = ":";
6388                 break;
6389         case EXTATTR_NAMESPACE_EMPTY:
6390         default:
6391                 return (EINVAL);
6392         }
6393         if (snprintf(attrname, size, "%s%s%s%s", prefix, namespace, suffix,
6394             name) >= size) {
6395                 return (ENAMETOOLONG);
6396         }
6397         return (0);
6398 }
6399
6400 /*
6401  * Vnode operating to retrieve a named extended attribute.
6402  */
6403 static int
6404 zfs_getextattr(struct vop_getextattr_args *ap)
6405 /*
6406 vop_getextattr {
6407         IN struct vnode *a_vp;
6408         IN int a_attrnamespace;
6409         IN const char *a_name;
6410         INOUT struct uio *a_uio;
6411         OUT size_t *a_size;
6412         IN struct ucred *a_cred;
6413         IN struct thread *a_td;
6414 };
6415 */
6416 {
6417         zfsvfs_t *zfsvfs = VTOZ(ap->a_vp)->z_zfsvfs;
6418         struct thread *td = ap->a_td;
6419         struct nameidata nd;
6420         char attrname[255];
6421         struct vattr va;
6422         vnode_t *xvp = NULL, *vp;
6423         int error, flags;
6424
6425         error = extattr_check_cred(ap->a_vp, ap->a_attrnamespace,
6426             ap->a_cred, ap->a_td, VREAD);
6427         if (error != 0)
6428                 return (error);
6429
6430         error = zfs_create_attrname(ap->a_attrnamespace, ap->a_name, attrname,
6431             sizeof(attrname));
6432         if (error != 0)
6433                 return (error);
6434
6435         ZFS_ENTER(zfsvfs);
6436
6437         error = zfs_lookup(ap->a_vp, NULL, &xvp, NULL, 0, ap->a_cred, td,
6438             LOOKUP_XATTR);
6439         if (error != 0) {
6440                 ZFS_EXIT(zfsvfs);
6441                 return (error);
6442         }
6443
6444         flags = FREAD;
6445         NDINIT_ATVP(&nd, LOOKUP, NOFOLLOW | MPSAFE, UIO_SYSSPACE, attrname,
6446             xvp, td);
6447         error = vn_open_cred(&nd, &flags, 0, 0, ap->a_cred, NULL);
6448         vp = nd.ni_vp;
6449         NDFREE(&nd, NDF_ONLY_PNBUF);
6450         if (error != 0) {
6451                 ZFS_EXIT(zfsvfs);
6452                 if (error == ENOENT)
6453                         error = ENOATTR;
6454                 return (error);
6455         }
6456
6457         if (ap->a_size != NULL) {
6458                 error = VOP_GETATTR(vp, &va, ap->a_cred);
6459                 if (error == 0)
6460                         *ap->a_size = (size_t)va.va_size;
6461         } else if (ap->a_uio != NULL)
6462                 error = VOP_READ(vp, ap->a_uio, IO_UNIT, ap->a_cred);
6463
6464         VOP_UNLOCK(vp, 0);
6465         vn_close(vp, flags, ap->a_cred, td);
6466         ZFS_EXIT(zfsvfs);
6467
6468         return (error);
6469 }
6470
6471 /*
6472  * Vnode operation to remove a named attribute.
6473  */
6474 int
6475 zfs_deleteextattr(struct vop_deleteextattr_args *ap)
6476 /*
6477 vop_deleteextattr {
6478         IN struct vnode *a_vp;
6479         IN int a_attrnamespace;
6480         IN const char *a_name;
6481         IN struct ucred *a_cred;
6482         IN struct thread *a_td;
6483 };
6484 */
6485 {
6486         zfsvfs_t *zfsvfs = VTOZ(ap->a_vp)->z_zfsvfs;
6487         struct thread *td = ap->a_td;
6488         struct nameidata nd;
6489         char attrname[255];
6490         struct vattr va;
6491         vnode_t *xvp = NULL, *vp;
6492         int error, flags;
6493
6494         error = extattr_check_cred(ap->a_vp, ap->a_attrnamespace,
6495             ap->a_cred, ap->a_td, VWRITE);
6496         if (error != 0)
6497                 return (error);
6498
6499         error = zfs_create_attrname(ap->a_attrnamespace, ap->a_name, attrname,
6500             sizeof(attrname));
6501         if (error != 0)
6502                 return (error);
6503
6504         ZFS_ENTER(zfsvfs);
6505
6506         error = zfs_lookup(ap->a_vp, NULL, &xvp, NULL, 0, ap->a_cred, td,
6507             LOOKUP_XATTR);
6508         if (error != 0) {
6509                 ZFS_EXIT(zfsvfs);
6510                 return (error);
6511         }
6512
6513         NDINIT_ATVP(&nd, DELETE, NOFOLLOW | LOCKPARENT | LOCKLEAF | MPSAFE,
6514             UIO_SYSSPACE, attrname, xvp, td);
6515         error = namei(&nd);
6516         vp = nd.ni_vp;
6517         NDFREE(&nd, NDF_ONLY_PNBUF);
6518         if (error != 0) {
6519                 ZFS_EXIT(zfsvfs);
6520                 if (error == ENOENT)
6521                         error = ENOATTR;
6522                 return (error);
6523         }
6524         error = VOP_REMOVE(nd.ni_dvp, vp, &nd.ni_cnd);
6525
6526         vput(nd.ni_dvp);
6527         if (vp == nd.ni_dvp)
6528                 vrele(vp);
6529         else
6530                 vput(vp);
6531         ZFS_EXIT(zfsvfs);
6532
6533         return (error);
6534 }
6535
6536 /*
6537  * Vnode operation to set a named attribute.
6538  */
6539 static int
6540 zfs_setextattr(struct vop_setextattr_args *ap)
6541 /*
6542 vop_setextattr {
6543         IN struct vnode *a_vp;
6544         IN int a_attrnamespace;
6545         IN const char *a_name;
6546         INOUT struct uio *a_uio;
6547         IN struct ucred *a_cred;
6548         IN struct thread *a_td;
6549 };
6550 */
6551 {
6552         zfsvfs_t *zfsvfs = VTOZ(ap->a_vp)->z_zfsvfs;
6553         struct thread *td = ap->a_td;
6554         struct nameidata nd;
6555         char attrname[255];
6556         struct vattr va;
6557         vnode_t *xvp = NULL, *vp;
6558         int error, flags;
6559
6560         error = extattr_check_cred(ap->a_vp, ap->a_attrnamespace,
6561             ap->a_cred, ap->a_td, VWRITE);
6562         if (error != 0)
6563                 return (error);
6564
6565         error = zfs_create_attrname(ap->a_attrnamespace, ap->a_name, attrname,
6566             sizeof(attrname));
6567         if (error != 0)
6568                 return (error);
6569
6570         ZFS_ENTER(zfsvfs);
6571
6572         error = zfs_lookup(ap->a_vp, NULL, &xvp, NULL, 0, ap->a_cred, td,
6573             LOOKUP_XATTR | CREATE_XATTR_DIR);
6574         if (error != 0) {
6575                 ZFS_EXIT(zfsvfs);
6576                 return (error);
6577         }
6578
6579         flags = FFLAGS(O_WRONLY | O_CREAT);
6580         NDINIT_ATVP(&nd, LOOKUP, NOFOLLOW | MPSAFE, UIO_SYSSPACE, attrname,
6581             xvp, td);
6582         error = vn_open_cred(&nd, &flags, 0600, 0, ap->a_cred, NULL);
6583         vp = nd.ni_vp;
6584         NDFREE(&nd, NDF_ONLY_PNBUF);
6585         if (error != 0) {
6586                 ZFS_EXIT(zfsvfs);
6587                 return (error);
6588         }
6589
6590         VATTR_NULL(&va);
6591         va.va_size = 0;
6592         error = VOP_SETATTR(vp, &va, ap->a_cred);
6593         if (error == 0)
6594                 VOP_WRITE(vp, ap->a_uio, IO_UNIT | IO_SYNC, ap->a_cred);
6595
6596         VOP_UNLOCK(vp, 0);
6597         vn_close(vp, flags, ap->a_cred, td);
6598         ZFS_EXIT(zfsvfs);
6599
6600         return (error);
6601 }
6602
6603 /*
6604  * Vnode operation to retrieve extended attributes on a vnode.
6605  */
6606 static int
6607 zfs_listextattr(struct vop_listextattr_args *ap)
6608 /*
6609 vop_listextattr {
6610         IN struct vnode *a_vp;
6611         IN int a_attrnamespace;
6612         INOUT struct uio *a_uio;
6613         OUT size_t *a_size;
6614         IN struct ucred *a_cred;
6615         IN struct thread *a_td;
6616 };
6617 */
6618 {
6619         zfsvfs_t *zfsvfs = VTOZ(ap->a_vp)->z_zfsvfs;
6620         struct thread *td = ap->a_td;
6621         struct nameidata nd;
6622         char attrprefix[16];
6623         u_char dirbuf[sizeof(struct dirent)];
6624         struct dirent *dp;
6625         struct iovec aiov;
6626         struct uio auio, *uio = ap->a_uio;
6627         size_t *sizep = ap->a_size;
6628         size_t plen;
6629         vnode_t *xvp = NULL, *vp;
6630         int done, error, eof, pos;
6631
6632         error = extattr_check_cred(ap->a_vp, ap->a_attrnamespace,
6633             ap->a_cred, ap->a_td, VREAD);
6634         if (error != 0)
6635                 return (error);
6636
6637         error = zfs_create_attrname(ap->a_attrnamespace, "", attrprefix,
6638             sizeof(attrprefix));
6639         if (error != 0)
6640                 return (error);
6641         plen = strlen(attrprefix);
6642
6643         ZFS_ENTER(zfsvfs);
6644
6645         if (sizep != NULL)
6646                 *sizep = 0;
6647
6648         error = zfs_lookup(ap->a_vp, NULL, &xvp, NULL, 0, ap->a_cred, td,
6649             LOOKUP_XATTR);
6650         if (error != 0) {
6651                 ZFS_EXIT(zfsvfs);
6652                 /*
6653                  * ENOATTR means that the EA directory does not yet exist,
6654                  * i.e. there are no extended attributes there.
6655                  */
6656                 if (error == ENOATTR)
6657                         error = 0;
6658                 return (error);
6659         }
6660
6661         NDINIT_ATVP(&nd, LOOKUP, NOFOLLOW | LOCKLEAF | LOCKSHARED | MPSAFE,
6662             UIO_SYSSPACE, ".", xvp, td);
6663         error = namei(&nd);
6664         vp = nd.ni_vp;
6665         NDFREE(&nd, NDF_ONLY_PNBUF);
6666         if (error != 0) {
6667                 ZFS_EXIT(zfsvfs);
6668                 return (error);
6669         }
6670
6671         auio.uio_iov = &aiov;
6672         auio.uio_iovcnt = 1;
6673         auio.uio_segflg = UIO_SYSSPACE;
6674         auio.uio_td = td;
6675         auio.uio_rw = UIO_READ;
6676         auio.uio_offset = 0;
6677
6678         do {
6679                 u_char nlen;
6680
6681                 aiov.iov_base = (void *)dirbuf;
6682                 aiov.iov_len = sizeof(dirbuf);
6683                 auio.uio_resid = sizeof(dirbuf);
6684                 error = VOP_READDIR(vp, &auio, ap->a_cred, &eof, NULL, NULL);
6685                 done = sizeof(dirbuf) - auio.uio_resid;
6686                 if (error != 0)
6687                         break;
6688                 for (pos = 0; pos < done;) {
6689                         dp = (struct dirent *)(dirbuf + pos);
6690                         pos += dp->d_reclen;
6691                         /*
6692                          * XXX: Temporarily we also accept DT_UNKNOWN, as this
6693                          * is what we get when attribute was created on Solaris.
6694                          */
6695                         if (dp->d_type != DT_REG && dp->d_type != DT_UNKNOWN)
6696                                 continue;
6697                         if (plen == 0 && strncmp(dp->d_name, "freebsd:", 8) == 0)
6698                                 continue;
6699                         else if (strncmp(dp->d_name, attrprefix, plen) != 0)
6700                                 continue;
6701                         nlen = dp->d_namlen - plen;
6702                         if (sizep != NULL)
6703                                 *sizep += 1 + nlen;
6704                         else if (uio != NULL) {
6705                                 /*
6706                                  * Format of extattr name entry is one byte for
6707                                  * length and the rest for name.
6708                                  */
6709                                 error = uiomove(&nlen, 1, uio->uio_rw, uio);
6710                                 if (error == 0) {
6711                                         error = uiomove(dp->d_name + plen, nlen,
6712                                             uio->uio_rw, uio);
6713                                 }
6714                                 if (error != 0)
6715                                         break;
6716                         }
6717                 }
6718         } while (!eof && error == 0);
6719
6720         vput(vp);
6721         ZFS_EXIT(zfsvfs);
6722
6723         return (error);
6724 }
6725
6726 int
6727 zfs_freebsd_getacl(ap)
6728         struct vop_getacl_args /* {
6729                 struct vnode *vp;
6730                 acl_type_t type;
6731                 struct acl *aclp;
6732                 struct ucred *cred;
6733                 struct thread *td;
6734         } */ *ap;
6735 {
6736         int             error;
6737         vsecattr_t      vsecattr;
6738
6739         if (ap->a_type != ACL_TYPE_NFS4)
6740                 return (EINVAL);
6741
6742         vsecattr.vsa_mask = VSA_ACE | VSA_ACECNT;
6743         if (error = zfs_getsecattr(ap->a_vp, &vsecattr, 0, ap->a_cred, NULL))
6744                 return (error);
6745
6746         error = acl_from_aces(ap->a_aclp, vsecattr.vsa_aclentp, vsecattr.vsa_aclcnt);
6747         if (vsecattr.vsa_aclentp != NULL)
6748                 kmem_free(vsecattr.vsa_aclentp, vsecattr.vsa_aclentsz);
6749
6750         return (error);
6751 }
6752
6753 int
6754 zfs_freebsd_setacl(ap)
6755         struct vop_setacl_args /* {
6756                 struct vnode *vp;
6757                 acl_type_t type;
6758                 struct acl *aclp;
6759                 struct ucred *cred;
6760                 struct thread *td;
6761         } */ *ap;
6762 {
6763         int             error;
6764         vsecattr_t      vsecattr;
6765         int             aclbsize;       /* size of acl list in bytes */
6766         aclent_t        *aaclp;
6767
6768         if (ap->a_type != ACL_TYPE_NFS4)
6769                 return (EINVAL);
6770
6771         if (ap->a_aclp->acl_cnt < 1 || ap->a_aclp->acl_cnt > MAX_ACL_ENTRIES)
6772                 return (EINVAL);
6773
6774         /*
6775          * With NFSv4 ACLs, chmod(2) may need to add additional entries,
6776          * splitting every entry into two and appending "canonical six"
6777          * entries at the end.  Don't allow for setting an ACL that would
6778          * cause chmod(2) to run out of ACL entries.
6779          */
6780         if (ap->a_aclp->acl_cnt * 2 + 6 > ACL_MAX_ENTRIES)
6781                 return (ENOSPC);
6782
6783         error = acl_nfs4_check(ap->a_aclp, ap->a_vp->v_type == VDIR);
6784         if (error != 0)
6785                 return (error);
6786
6787         vsecattr.vsa_mask = VSA_ACE;
6788         aclbsize = ap->a_aclp->acl_cnt * sizeof(ace_t);
6789         vsecattr.vsa_aclentp = kmem_alloc(aclbsize, KM_SLEEP);
6790         aaclp = vsecattr.vsa_aclentp;
6791         vsecattr.vsa_aclentsz = aclbsize;
6792
6793         aces_from_acl(vsecattr.vsa_aclentp, &vsecattr.vsa_aclcnt, ap->a_aclp);
6794         error = zfs_setsecattr(ap->a_vp, &vsecattr, 0, ap->a_cred, NULL);
6795         kmem_free(aaclp, aclbsize);
6796
6797         return (error);
6798 }
6799
6800 int
6801 zfs_freebsd_aclcheck(ap)
6802         struct vop_aclcheck_args /* {
6803                 struct vnode *vp;
6804                 acl_type_t type;
6805                 struct acl *aclp;
6806                 struct ucred *cred;
6807                 struct thread *td;
6808         } */ *ap;
6809 {
6810
6811         return (EOPNOTSUPP);
6812 }
6813
6814 struct vop_vector zfs_vnodeops;
6815 struct vop_vector zfs_fifoops;
6816 struct vop_vector zfs_shareops;
6817
6818 struct vop_vector zfs_vnodeops = {
6819         .vop_default =          &default_vnodeops,
6820         .vop_inactive =         zfs_freebsd_inactive,
6821         .vop_reclaim =          zfs_freebsd_reclaim,
6822         .vop_access =           zfs_freebsd_access,
6823 #ifdef FREEBSD_NAMECACHE
6824         .vop_lookup =           vfs_cache_lookup,
6825         .vop_cachedlookup =     zfs_freebsd_lookup,
6826 #else
6827         .vop_lookup =           zfs_freebsd_lookup,
6828 #endif
6829         .vop_getattr =          zfs_freebsd_getattr,
6830         .vop_setattr =          zfs_freebsd_setattr,
6831         .vop_create =           zfs_freebsd_create,
6832         .vop_mknod =            zfs_freebsd_create,
6833         .vop_mkdir =            zfs_freebsd_mkdir,
6834         .vop_readdir =          zfs_freebsd_readdir,
6835         .vop_fsync =            zfs_freebsd_fsync,
6836         .vop_open =             zfs_freebsd_open,
6837         .vop_close =            zfs_freebsd_close,
6838         .vop_rmdir =            zfs_freebsd_rmdir,
6839         .vop_ioctl =            zfs_freebsd_ioctl,
6840         .vop_link =             zfs_freebsd_link,
6841         .vop_symlink =          zfs_freebsd_symlink,
6842         .vop_readlink =         zfs_freebsd_readlink,
6843         .vop_read =             zfs_freebsd_read,
6844         .vop_write =            zfs_freebsd_write,
6845         .vop_remove =           zfs_freebsd_remove,
6846         .vop_rename =           zfs_freebsd_rename,
6847         .vop_pathconf =         zfs_freebsd_pathconf,
6848         .vop_bmap =             zfs_freebsd_bmap,
6849         .vop_fid =              zfs_freebsd_fid,
6850         .vop_getextattr =       zfs_getextattr,
6851         .vop_deleteextattr =    zfs_deleteextattr,
6852         .vop_setextattr =       zfs_setextattr,
6853         .vop_listextattr =      zfs_listextattr,
6854         .vop_getacl =           zfs_freebsd_getacl,
6855         .vop_setacl =           zfs_freebsd_setacl,
6856         .vop_aclcheck =         zfs_freebsd_aclcheck,
6857         .vop_getpages =         zfs_freebsd_getpages,
6858 };
6859
6860 struct vop_vector zfs_fifoops = {
6861         .vop_default =          &fifo_specops,
6862         .vop_fsync =            zfs_freebsd_fsync,
6863         .vop_access =           zfs_freebsd_access,
6864         .vop_getattr =          zfs_freebsd_getattr,
6865         .vop_inactive =         zfs_freebsd_inactive,
6866         .vop_read =             VOP_PANIC,
6867         .vop_reclaim =          zfs_freebsd_reclaim,
6868         .vop_setattr =          zfs_freebsd_setattr,
6869         .vop_write =            VOP_PANIC,
6870         .vop_pathconf =         zfs_freebsd_fifo_pathconf,
6871         .vop_fid =              zfs_freebsd_fid,
6872         .vop_getacl =           zfs_freebsd_getacl,
6873         .vop_setacl =           zfs_freebsd_setacl,
6874         .vop_aclcheck =         zfs_freebsd_aclcheck,
6875 };
6876
6877 /*
6878  * special share hidden files vnode operations template
6879  */
6880 struct vop_vector zfs_shareops = {
6881         .vop_default =          &default_vnodeops,
6882         .vop_access =           zfs_freebsd_access,
6883         .vop_inactive =         zfs_freebsd_inactive,
6884         .vop_reclaim =          zfs_freebsd_reclaim,
6885         .vop_fid =              zfs_freebsd_fid,
6886         .vop_pathconf =         zfs_freebsd_pathconf,
6887 };