a373537dd4e03660bb59872fa34fcb988ec77802
[zfs.git] / module / zfs / zfs_dir.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  */
24
25
26 #include <sys/types.h>
27 #include <sys/param.h>
28 #include <sys/time.h>
29 #include <sys/systm.h>
30 #include <sys/sysmacros.h>
31 #include <sys/resource.h>
32 #include <sys/vfs.h>
33 #include <sys/vnode.h>
34 #include <sys/file.h>
35 #include <sys/mode.h>
36 #include <sys/kmem.h>
37 #include <sys/uio.h>
38 #include <sys/pathname.h>
39 #include <sys/cmn_err.h>
40 #include <sys/errno.h>
41 #include <sys/stat.h>
42 #include <sys/unistd.h>
43 #include <sys/sunddi.h>
44 #include <sys/random.h>
45 #include <sys/policy.h>
46 #include <sys/zfs_dir.h>
47 #include <sys/zfs_acl.h>
48 #include <sys/fs/zfs.h>
49 #include "fs/fs_subr.h"
50 #include <sys/zap.h>
51 #include <sys/dmu.h>
52 #include <sys/atomic.h>
53 #include <sys/zfs_ctldir.h>
54 #include <sys/zfs_fuid.h>
55 #include <sys/sa.h>
56 #include <sys/zfs_sa.h>
57 #include <sys/dnlc.h>
58 #include <sys/extdirent.h>
59
60 /*
61  * zfs_match_find() is used by zfs_dirent_lock() to peform zap lookups
62  * of names after deciding which is the appropriate lookup interface.
63  */
64 static int
65 zfs_match_find(zfs_sb_t *zsb, znode_t *dzp, char *name, boolean_t exact,
66     boolean_t update, int *deflags, pathname_t *rpnp, uint64_t *zoid)
67 {
68         boolean_t conflict = B_FALSE;
69         int error;
70
71         if (zsb->z_norm) {
72                 matchtype_t mt = MT_FIRST;
73                 size_t bufsz = 0;
74                 char *buf = NULL;
75
76                 if (rpnp) {
77                         buf = rpnp->pn_buf;
78                         bufsz = rpnp->pn_bufsize;
79                 }
80                 if (exact)
81                         mt = MT_EXACT;
82                 /*
83                  * In the non-mixed case we only expect there would ever
84                  * be one match, but we need to use the normalizing lookup.
85                  */
86                 error = zap_lookup_norm(zsb->z_os, dzp->z_id, name, 8, 1,
87                     zoid, mt, buf, bufsz, &conflict);
88         } else {
89                 error = zap_lookup(zsb->z_os, dzp->z_id, name, 8, 1, zoid);
90         }
91
92         /*
93          * Allow multiple entries provided the first entry is
94          * the object id.  Non-zpl consumers may safely make
95          * use of the additional space.
96          *
97          * XXX: This should be a feature flag for compatibility
98          */
99         if (error == EOVERFLOW)
100                 error = 0;
101
102         if (zsb->z_norm && !error && deflags)
103                 *deflags = conflict ? ED_CASE_CONFLICT : 0;
104
105         *zoid = ZFS_DIRENT_OBJ(*zoid);
106
107 #ifdef HAVE_DNLC
108         if (error == ENOENT && update)
109                 dnlc_update(ZTOI(dzp), name, DNLC_NO_VNODE);
110 #endif /* HAVE_DNLC */
111
112         return (error);
113 }
114
115 /*
116  * Lock a directory entry.  A dirlock on <dzp, name> protects that name
117  * in dzp's directory zap object.  As long as you hold a dirlock, you can
118  * assume two things: (1) dzp cannot be reaped, and (2) no other thread
119  * can change the zap entry for (i.e. link or unlink) this name.
120  *
121  * Input arguments:
122  *      dzp     - znode for directory
123  *      name    - name of entry to lock
124  *      flag    - ZNEW: if the entry already exists, fail with EEXIST.
125  *                ZEXISTS: if the entry does not exist, fail with ENOENT.
126  *                ZSHARED: allow concurrent access with other ZSHARED callers.
127  *                ZXATTR: we want dzp's xattr directory
128  *                ZCILOOK: On a mixed sensitivity file system,
129  *                         this lookup should be case-insensitive.
130  *                ZCIEXACT: On a purely case-insensitive file system,
131  *                          this lookup should be case-sensitive.
132  *                ZRENAMING: we are locking for renaming, force narrow locks
133  *                ZHAVELOCK: Don't grab the z_name_lock for this call. The
134  *                           current thread already holds it.
135  *
136  * Output arguments:
137  *      zpp     - pointer to the znode for the entry (NULL if there isn't one)
138  *      dlpp    - pointer to the dirlock for this entry (NULL on error)
139  *      direntflags - (case-insensitive lookup only)
140  *              flags if multiple case-sensitive matches exist in directory
141  *      realpnp     - (case-insensitive lookup only)
142  *              actual name matched within the directory
143  *
144  * Return value: 0 on success or errno on failure.
145  *
146  * NOTE: Always checks for, and rejects, '.' and '..'.
147  * NOTE: For case-insensitive file systems we take wide locks (see below),
148  *       but return znode pointers to a single match.
149  */
150 int
151 zfs_dirent_lock(zfs_dirlock_t **dlpp, znode_t *dzp, char *name, znode_t **zpp,
152     int flag, int *direntflags, pathname_t *realpnp)
153 {
154         zfs_sb_t        *zsb = ZTOZSB(dzp);
155         zfs_dirlock_t   *dl;
156         boolean_t       update;
157         boolean_t       exact;
158         uint64_t        zoid;
159 #ifdef HAVE_DNLC
160         vnode_t         *vp = NULL;
161 #endif /* HAVE_DNLC */
162         int             error = 0;
163         int             cmpflags;
164
165         *zpp = NULL;
166         *dlpp = NULL;
167
168         /*
169          * Verify that we are not trying to lock '.', '..', or '.zfs'
170          */
171         if ((name[0] == '.' &&
172             (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'))) ||
173             (zfs_has_ctldir(dzp) && strcmp(name, ZFS_CTLDIR_NAME) == 0))
174                 return (EEXIST);
175
176         /*
177          * Case sensitivity and normalization preferences are set when
178          * the file system is created.  These are stored in the
179          * zsb->z_case and zsb->z_norm fields.  These choices
180          * affect what vnodes can be cached in the DNLC, how we
181          * perform zap lookups, and the "width" of our dirlocks.
182          *
183          * A normal dirlock locks a single name.  Note that with
184          * normalization a name can be composed multiple ways, but
185          * when normalized, these names all compare equal.  A wide
186          * dirlock locks multiple names.  We need these when the file
187          * system is supporting mixed-mode access.  It is sometimes
188          * necessary to lock all case permutations of file name at
189          * once so that simultaneous case-insensitive/case-sensitive
190          * behaves as rationally as possible.
191          */
192
193         /*
194          * Decide if exact matches should be requested when performing
195          * a zap lookup on file systems supporting case-insensitive
196          * access.
197          */
198         exact =
199             ((zsb->z_case == ZFS_CASE_INSENSITIVE) && (flag & ZCIEXACT)) ||
200             ((zsb->z_case == ZFS_CASE_MIXED) && !(flag & ZCILOOK));
201
202         /*
203          * Only look in or update the DNLC if we are looking for the
204          * name on a file system that does not require normalization
205          * or case folding.  We can also look there if we happen to be
206          * on a non-normalizing, mixed sensitivity file system IF we
207          * are looking for the exact name.
208          *
209          * Maybe can add TO-UPPERed version of name to dnlc in ci-only
210          * case for performance improvement?
211          */
212         update = !zsb->z_norm ||
213             ((zsb->z_case == ZFS_CASE_MIXED) &&
214             !(zsb->z_norm & ~U8_TEXTPREP_TOUPPER) && !(flag & ZCILOOK));
215
216         /*
217          * ZRENAMING indicates we are in a situation where we should
218          * take narrow locks regardless of the file system's
219          * preferences for normalizing and case folding.  This will
220          * prevent us deadlocking trying to grab the same wide lock
221          * twice if the two names happen to be case-insensitive
222          * matches.
223          */
224         if (flag & ZRENAMING)
225                 cmpflags = 0;
226         else
227                 cmpflags = zsb->z_norm;
228
229         /*
230          * Wait until there are no locks on this name.
231          *
232          * Don't grab the the lock if it is already held. However, cannot
233          * have both ZSHARED and ZHAVELOCK together.
234          */
235         ASSERT(!(flag & ZSHARED) || !(flag & ZHAVELOCK));
236         if (!(flag & ZHAVELOCK))
237                 rw_enter(&dzp->z_name_lock, RW_READER);
238
239         mutex_enter(&dzp->z_lock);
240         for (;;) {
241                 if (dzp->z_unlinked) {
242                         mutex_exit(&dzp->z_lock);
243                         if (!(flag & ZHAVELOCK))
244                                 rw_exit(&dzp->z_name_lock);
245                         return (ENOENT);
246                 }
247                 for (dl = dzp->z_dirlocks; dl != NULL; dl = dl->dl_next) {
248                         if ((u8_strcmp(name, dl->dl_name, 0, cmpflags,
249                             U8_UNICODE_LATEST, &error) == 0) || error != 0)
250                                 break;
251                 }
252                 if (error != 0) {
253                         mutex_exit(&dzp->z_lock);
254                         if (!(flag & ZHAVELOCK))
255                                 rw_exit(&dzp->z_name_lock);
256                         return (ENOENT);
257                 }
258                 if (dl == NULL) {
259                         /*
260                          * Allocate a new dirlock and add it to the list.
261                          */
262                         dl = kmem_alloc(sizeof (zfs_dirlock_t), KM_SLEEP);
263                         cv_init(&dl->dl_cv, NULL, CV_DEFAULT, NULL);
264                         dl->dl_name = name;
265                         dl->dl_sharecnt = 0;
266                         dl->dl_namelock = 0;
267                         dl->dl_namesize = 0;
268                         dl->dl_dzp = dzp;
269                         dl->dl_next = dzp->z_dirlocks;
270                         dzp->z_dirlocks = dl;
271                         break;
272                 }
273                 if ((flag & ZSHARED) && dl->dl_sharecnt != 0)
274                         break;
275                 cv_wait(&dl->dl_cv, &dzp->z_lock);
276         }
277
278         /*
279          * If the z_name_lock was NOT held for this dirlock record it.
280          */
281         if (flag & ZHAVELOCK)
282                 dl->dl_namelock = 1;
283
284         if ((flag & ZSHARED) && ++dl->dl_sharecnt > 1 && dl->dl_namesize == 0) {
285                 /*
286                  * We're the second shared reference to dl.  Make a copy of
287                  * dl_name in case the first thread goes away before we do.
288                  * Note that we initialize the new name before storing its
289                  * pointer into dl_name, because the first thread may load
290                  * dl->dl_name at any time.  He'll either see the old value,
291                  * which is his, or the new shared copy; either is OK.
292                  */
293                 dl->dl_namesize = strlen(dl->dl_name) + 1;
294                 name = kmem_alloc(dl->dl_namesize, KM_SLEEP);
295                 bcopy(dl->dl_name, name, dl->dl_namesize);
296                 dl->dl_name = name;
297         }
298
299         mutex_exit(&dzp->z_lock);
300
301         /*
302          * We have a dirlock on the name.  (Note that it is the dirlock,
303          * not the dzp's z_lock, that protects the name in the zap object.)
304          * See if there's an object by this name; if so, put a hold on it.
305          */
306         if (flag & ZXATTR) {
307                 error = sa_lookup(dzp->z_sa_hdl, SA_ZPL_XATTR(zsb), &zoid,
308                     sizeof (zoid));
309                 if (error == 0)
310                         error = (zoid == 0 ? ENOENT : 0);
311         } else {
312 #ifdef HAVE_DNLC
313                 if (update)
314                         vp = dnlc_lookup(ZTOI(dzp), name);
315                 if (vp == DNLC_NO_VNODE) {
316                         iput(vp);
317                         error = ENOENT;
318                 } else if (vp) {
319                         if (flag & ZNEW) {
320                                 zfs_dirent_unlock(dl);
321                                 iput(vp);
322                                 return (EEXIST);
323                         }
324                         *dlpp = dl;
325                         *zpp = VTOZ(vp);
326                         return (0);
327                 } else {
328                         error = zfs_match_find(zsb, dzp, name, exact,
329                             update, direntflags, realpnp, &zoid);
330                 }
331 #else
332                 error = zfs_match_find(zsb, dzp, name, exact,
333                     update, direntflags, realpnp, &zoid);
334 #endif /* HAVE_DNLC */
335         }
336         if (error) {
337                 if (error != ENOENT || (flag & ZEXISTS)) {
338                         zfs_dirent_unlock(dl);
339                         return (error);
340                 }
341         } else {
342                 if (flag & ZNEW) {
343                         zfs_dirent_unlock(dl);
344                         return (EEXIST);
345                 }
346                 error = zfs_zget(zsb, zoid, zpp);
347                 if (error) {
348                         zfs_dirent_unlock(dl);
349                         return (error);
350                 }
351 #ifdef HAVE_DNLC
352                 if (!(flag & ZXATTR) && update)
353                         dnlc_update(ZTOI(dzp), name, ZTOI(*zpp));
354 #endif /* HAVE_DNLC */
355         }
356
357         *dlpp = dl;
358
359         return (0);
360 }
361
362 /*
363  * Unlock this directory entry and wake anyone who was waiting for it.
364  */
365 void
366 zfs_dirent_unlock(zfs_dirlock_t *dl)
367 {
368         znode_t *dzp = dl->dl_dzp;
369         zfs_dirlock_t **prev_dl, *cur_dl;
370
371         mutex_enter(&dzp->z_lock);
372
373         if (!dl->dl_namelock)
374                 rw_exit(&dzp->z_name_lock);
375
376         if (dl->dl_sharecnt > 1) {
377                 dl->dl_sharecnt--;
378                 mutex_exit(&dzp->z_lock);
379                 return;
380         }
381         prev_dl = &dzp->z_dirlocks;
382         while ((cur_dl = *prev_dl) != dl)
383                 prev_dl = &cur_dl->dl_next;
384         *prev_dl = dl->dl_next;
385         cv_broadcast(&dl->dl_cv);
386         mutex_exit(&dzp->z_lock);
387
388         if (dl->dl_namesize != 0)
389                 kmem_free(dl->dl_name, dl->dl_namesize);
390         cv_destroy(&dl->dl_cv);
391         kmem_free(dl, sizeof (*dl));
392 }
393
394 /*
395  * Look up an entry in a directory.
396  *
397  * NOTE: '.' and '..' are handled as special cases because
398  *      no directory entries are actually stored for them.  If this is
399  *      the root of a filesystem, then '.zfs' is also treated as a
400  *      special pseudo-directory.
401  */
402 int
403 zfs_dirlook(znode_t *dzp, char *name, struct inode **ipp, int flags,
404     int *deflg, pathname_t *rpnp)
405 {
406         zfs_dirlock_t *dl;
407         znode_t *zp;
408         int error = 0;
409         uint64_t parent;
410
411         if (name[0] == 0 || (name[0] == '.' && name[1] == 0)) {
412                 *ipp = ZTOI(dzp);
413                 igrab(*ipp);
414         } else if (name[0] == '.' && name[1] == '.' && name[2] == 0) {
415                 zfs_sb_t *zsb = ZTOZSB(dzp);
416
417                 /*
418                  * If we are a snapshot mounted under .zfs, return
419                  * the inode pointer for the snapshot directory.
420                  */
421                 if ((error = sa_lookup(dzp->z_sa_hdl,
422                     SA_ZPL_PARENT(zsb), &parent, sizeof (parent))) != 0)
423                         return (error);
424
425                 if (parent == dzp->z_id && zsb->z_parent != zsb) {
426                         error = zfsctl_root_lookup(zsb->z_parent->z_ctldir,
427                             "snapshot", ipp, 0, kcred, NULL, NULL);
428                         return (error);
429                 }
430                 rw_enter(&dzp->z_parent_lock, RW_READER);
431                 error = zfs_zget(zsb, parent, &zp);
432                 if (error == 0)
433                         *ipp = ZTOI(zp);
434                 rw_exit(&dzp->z_parent_lock);
435         } else if (zfs_has_ctldir(dzp) && strcmp(name, ZFS_CTLDIR_NAME) == 0) {
436                 *ipp = zfsctl_root(dzp);
437         } else {
438                 int zf;
439
440                 zf = ZEXISTS | ZSHARED;
441                 if (flags & FIGNORECASE)
442                         zf |= ZCILOOK;
443
444                 error = zfs_dirent_lock(&dl, dzp, name, &zp, zf, deflg, rpnp);
445                 if (error == 0) {
446                         *ipp = ZTOI(zp);
447                         zfs_dirent_unlock(dl);
448                         dzp->z_zn_prefetch = B_TRUE; /* enable prefetching */
449                 }
450                 rpnp = NULL;
451         }
452
453         if ((flags & FIGNORECASE) && rpnp && !error)
454                 (void) strlcpy(rpnp->pn_buf, name, rpnp->pn_bufsize);
455
456         return (error);
457 }
458
459 /*
460  * unlinked Set (formerly known as the "delete queue") Error Handling
461  *
462  * When dealing with the unlinked set, we dmu_tx_hold_zap(), but we
463  * don't specify the name of the entry that we will be manipulating.  We
464  * also fib and say that we won't be adding any new entries to the
465  * unlinked set, even though we might (this is to lower the minimum file
466  * size that can be deleted in a full filesystem).  So on the small
467  * chance that the nlink list is using a fat zap (ie. has more than
468  * 2000 entries), we *may* not pre-read a block that's needed.
469  * Therefore it is remotely possible for some of the assertions
470  * regarding the unlinked set below to fail due to i/o error.  On a
471  * nondebug system, this will result in the space being leaked.
472  */
473 void
474 zfs_unlinked_add(znode_t *zp, dmu_tx_t *tx)
475 {
476         zfs_sb_t *zsb = ZTOZSB(zp);
477
478         ASSERT(zp->z_unlinked);
479         ASSERT(zp->z_links == 0);
480
481         VERIFY3U(0, ==,
482             zap_add_int(zsb->z_os, zsb->z_unlinkedobj, zp->z_id, tx));
483 }
484
485 /*
486  * Clean up any znodes that had no links when we either crashed or
487  * (force) umounted the file system.
488  */
489 void
490 zfs_unlinked_drain(zfs_sb_t *zsb)
491 {
492         zap_cursor_t    zc;
493         zap_attribute_t zap;
494         dmu_object_info_t doi;
495         znode_t         *zp;
496         int             error;
497
498         /*
499          * Interate over the contents of the unlinked set.
500          */
501         for (zap_cursor_init(&zc, zsb->z_os, zsb->z_unlinkedobj);
502             zap_cursor_retrieve(&zc, &zap) == 0;
503             zap_cursor_advance(&zc)) {
504
505                 /*
506                  * See what kind of object we have in list
507                  */
508
509                 error = dmu_object_info(zsb->z_os, zap.za_first_integer, &doi);
510                 if (error != 0)
511                         continue;
512
513                 ASSERT((doi.doi_type == DMU_OT_PLAIN_FILE_CONTENTS) ||
514                     (doi.doi_type == DMU_OT_DIRECTORY_CONTENTS));
515                 /*
516                  * We need to re-mark these list entries for deletion,
517                  * so we pull them back into core and set zp->z_unlinked.
518                  */
519                 error = zfs_zget(zsb, zap.za_first_integer, &zp);
520
521                 /*
522                  * We may pick up znodes that are already marked for deletion.
523                  * This could happen during the purge of an extended attribute
524                  * directory.  All we need to do is skip over them, since they
525                  * are already in the system marked z_unlinked.
526                  */
527                 if (error != 0)
528                         continue;
529
530                 zp->z_unlinked = B_TRUE;
531                 iput(ZTOI(zp));
532         }
533         zap_cursor_fini(&zc);
534 }
535
536 /*
537  * Delete the entire contents of a directory.  Return a count
538  * of the number of entries that could not be deleted. If we encounter
539  * an error, return a count of at least one so that the directory stays
540  * in the unlinked set.
541  *
542  * NOTE: this function assumes that the directory is inactive,
543  *      so there is no need to lock its entries before deletion.
544  *      Also, it assumes the directory contents is *only* regular
545  *      files.
546  */
547 static int
548 zfs_purgedir(znode_t *dzp)
549 {
550         zap_cursor_t    zc;
551         zap_attribute_t zap;
552         znode_t         *xzp;
553         dmu_tx_t        *tx;
554         zfs_sb_t        *zsb = ZTOZSB(dzp);
555         zfs_dirlock_t   dl;
556         int skipped = 0;
557         int error;
558
559         for (zap_cursor_init(&zc, zsb->z_os, dzp->z_id);
560             (error = zap_cursor_retrieve(&zc, &zap)) == 0;
561             zap_cursor_advance(&zc)) {
562                 error = zfs_zget(zsb,
563                     ZFS_DIRENT_OBJ(zap.za_first_integer), &xzp);
564                 if (error) {
565                         skipped += 1;
566                         continue;
567                 }
568
569                 ASSERT(S_ISREG(ZTOI(xzp)->i_mode)||S_ISLNK(ZTOI(xzp)->i_mode));
570
571                 tx = dmu_tx_create(zsb->z_os);
572                 dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE);
573                 dmu_tx_hold_zap(tx, dzp->z_id, FALSE, zap.za_name);
574                 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
575                 dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, FALSE, NULL);
576                 /* Is this really needed ? */
577                 zfs_sa_upgrade_txholds(tx, xzp);
578                 error = dmu_tx_assign(tx, TXG_WAIT);
579                 if (error) {
580                         dmu_tx_abort(tx);
581                         iput(ZTOI(xzp));
582                         skipped += 1;
583                         continue;
584                 }
585                 bzero(&dl, sizeof (dl));
586                 dl.dl_dzp = dzp;
587                 dl.dl_name = zap.za_name;
588
589                 error = zfs_link_destroy(&dl, xzp, tx, 0, NULL);
590                 if (error)
591                         skipped += 1;
592                 dmu_tx_commit(tx);
593
594                 iput(ZTOI(xzp));
595         }
596         zap_cursor_fini(&zc);
597         if (error != ENOENT)
598                 skipped += 1;
599         return (skipped);
600 }
601
602 void
603 zfs_rmnode(znode_t *zp)
604 {
605         zfs_sb_t        *zsb = ZTOZSB(zp);
606         objset_t        *os = zsb->z_os;
607         znode_t         *xzp = NULL;
608         dmu_tx_t        *tx;
609         uint64_t        acl_obj;
610         uint64_t        xattr_obj;
611         int             error;
612
613         ASSERT(zp->z_links == 0);
614         ASSERT(atomic_read(&ZTOI(zp)->i_count) == 0);
615
616         /*
617          * If this is an attribute directory, purge its contents.
618          */
619         if (S_ISDIR(ZTOI(zp)->i_mode) && (zp->z_pflags & ZFS_XATTR)) {
620                 if (zfs_purgedir(zp) != 0) {
621                         /*
622                          * Not enough space to delete some xattrs.
623                          * Leave it in the unlinked set.
624                          */
625                         zfs_znode_dmu_fini(zp);
626
627                         return;
628                 }
629         }
630
631         /*
632          * Free up all the data in the file.
633          */
634         error = dmu_free_long_range(os, zp->z_id, 0, DMU_OBJECT_END);
635         if (error) {
636                 /*
637                  * Not enough space.  Leave the file in the unlinked set.
638                  */
639                 zfs_znode_dmu_fini(zp);
640                 return;
641         }
642
643         /*
644          * If the file has extended attributes, we're going to unlink
645          * the xattr dir.
646          */
647         error = sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zsb),
648             &xattr_obj, sizeof (xattr_obj));
649         if (error == 0 && xattr_obj) {
650                 error = zfs_zget(zsb, xattr_obj, &xzp);
651                 ASSERT(error == 0);
652         }
653
654         acl_obj = zfs_external_acl(zp);
655
656         /*
657          * Set up the final transaction.
658          */
659         tx = dmu_tx_create(os);
660         dmu_tx_hold_free(tx, zp->z_id, 0, DMU_OBJECT_END);
661         dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, FALSE, NULL);
662         if (xzp) {
663                 dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, TRUE, NULL);
664                 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
665         }
666         if (acl_obj)
667                 dmu_tx_hold_free(tx, acl_obj, 0, DMU_OBJECT_END);
668
669         zfs_sa_upgrade_txholds(tx, zp);
670         error = dmu_tx_assign(tx, TXG_WAIT);
671         if (error) {
672                 /*
673                  * Not enough space to delete the file.  Leave it in the
674                  * unlinked set, leaking it until the fs is remounted (at
675                  * which point we'll call zfs_unlinked_drain() to process it).
676                  */
677                 dmu_tx_abort(tx);
678                 zfs_znode_dmu_fini(zp);
679                 goto out;
680         }
681
682         if (xzp) {
683                 ASSERT(error == 0);
684                 mutex_enter(&xzp->z_lock);
685                 xzp->z_unlinked = B_TRUE;       /* mark xzp for deletion */
686                 xzp->z_links = 0;       /* no more links to it */
687                 VERIFY(0 == sa_update(xzp->z_sa_hdl, SA_ZPL_LINKS(zsb),
688                     &xzp->z_links, sizeof (xzp->z_links), tx));
689                 mutex_exit(&xzp->z_lock);
690                 zfs_unlinked_add(xzp, tx);
691         }
692
693         /* Remove this znode from the unlinked set */
694         VERIFY3U(0, ==,
695             zap_remove_int(zsb->z_os, zsb->z_unlinkedobj, zp->z_id, tx));
696
697         zfs_znode_delete(zp, tx);
698
699         dmu_tx_commit(tx);
700 out:
701         if (xzp)
702                 iput(ZTOI(xzp));
703 }
704
705 static uint64_t
706 zfs_dirent(znode_t *zp, uint64_t mode)
707 {
708         uint64_t de = zp->z_id;
709
710         if (ZTOZSB(zp)->z_version >= ZPL_VERSION_DIRENT_TYPE)
711                 de |= IFTODT(mode) << 60;
712         return (de);
713 }
714
715 /*
716  * Link zp into dl.  Can only fail if zp has been unlinked.
717  */
718 int
719 zfs_link_create(zfs_dirlock_t *dl, znode_t *zp, dmu_tx_t *tx, int flag)
720 {
721         znode_t *dzp = dl->dl_dzp;
722         zfs_sb_t *zsb = ZTOZSB(zp);
723         uint64_t value;
724         int zp_is_dir = S_ISDIR(ZTOI(zp)->i_mode);
725         sa_bulk_attr_t bulk[5];
726         uint64_t mtime[2], ctime[2];
727         int count = 0;
728         int error;
729
730         mutex_enter(&zp->z_lock);
731
732         if (!(flag & ZRENAMING)) {
733                 if (zp->z_unlinked) {   /* no new links to unlinked zp */
734                         ASSERT(!(flag & (ZNEW | ZEXISTS)));
735                         mutex_exit(&zp->z_lock);
736                         return (ENOENT);
737                 }
738                 zp->z_links++;
739                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb), NULL,
740                     &zp->z_links, sizeof (zp->z_links));
741
742         }
743         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_PARENT(zsb), NULL,
744             &dzp->z_id, sizeof (dzp->z_id));
745         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb), NULL,
746             &zp->z_pflags, sizeof (zp->z_pflags));
747
748         if (!(flag & ZNEW)) {
749                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb), NULL,
750                     ctime, sizeof (ctime));
751                 zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime,
752                     ctime, B_TRUE);
753         }
754         error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
755         ASSERT(error == 0);
756
757         mutex_exit(&zp->z_lock);
758
759         mutex_enter(&dzp->z_lock);
760         dzp->z_size++;
761         dzp->z_links += zp_is_dir;
762         count = 0;
763         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb), NULL,
764             &dzp->z_size, sizeof (dzp->z_size));
765         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb), NULL,
766             &dzp->z_links, sizeof (dzp->z_links));
767         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zsb), NULL,
768             mtime, sizeof (mtime));
769         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb), NULL,
770             ctime, sizeof (ctime));
771         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb), NULL,
772             &dzp->z_pflags, sizeof (dzp->z_pflags));
773         zfs_tstamp_update_setup(dzp, CONTENT_MODIFIED, mtime, ctime, B_TRUE);
774         error = sa_bulk_update(dzp->z_sa_hdl, bulk, count, tx);
775         ASSERT(error == 0);
776         mutex_exit(&dzp->z_lock);
777
778         value = zfs_dirent(zp, zp->z_mode);
779         error = zap_add(ZTOZSB(zp)->z_os, dzp->z_id, dl->dl_name,
780             8, 1, &value, tx);
781         ASSERT(error == 0);
782
783         return (0);
784 }
785
786 static int
787 zfs_dropname(zfs_dirlock_t *dl, znode_t *zp, znode_t *dzp, dmu_tx_t *tx,
788     int flag)
789 {
790         int error;
791
792         if (ZTOZSB(zp)->z_norm) {
793                 if (((ZTOZSB(zp)->z_case == ZFS_CASE_INSENSITIVE) &&
794                     (flag & ZCIEXACT)) ||
795                     ((ZTOZSB(zp)->z_case == ZFS_CASE_MIXED) &&
796                     !(flag & ZCILOOK)))
797                         error = zap_remove_norm(ZTOZSB(zp)->z_os,
798                             dzp->z_id, dl->dl_name, MT_EXACT, tx);
799                 else
800                         error = zap_remove_norm(ZTOZSB(zp)->z_os,
801                             dzp->z_id, dl->dl_name, MT_FIRST, tx);
802         } else {
803                 error = zap_remove(ZTOZSB(zp)->z_os,
804                     dzp->z_id, dl->dl_name, tx);
805         }
806
807         return (error);
808 }
809
810 /*
811  * Unlink zp from dl, and mark zp for deletion if this was the last link. Can
812  * fail if zp is a mount point (EBUSY) or a non-empty directory (ENOTEMPTY).
813  * If 'unlinkedp' is NULL, we put unlinked znodes on the unlinked list.
814  * If it's non-NULL, we use it to indicate whether the znode needs deletion,
815  * and it's the caller's job to do it.
816  */
817 int
818 zfs_link_destroy(zfs_dirlock_t *dl, znode_t *zp, dmu_tx_t *tx, int flag,
819         boolean_t *unlinkedp)
820 {
821         znode_t *dzp = dl->dl_dzp;
822         zfs_sb_t *zsb = ZTOZSB(dzp);
823         int zp_is_dir = S_ISDIR(ZTOI(zp)->i_mode);
824         boolean_t unlinked = B_FALSE;
825         sa_bulk_attr_t bulk[5];
826         uint64_t mtime[2], ctime[2];
827         int count = 0;
828         int error;
829
830 #ifdef HAVE_DNLC
831         dnlc_remove(ZTOI(dzp), dl->dl_name);
832 #endif /* HAVE_DNLC */
833
834         if (!(flag & ZRENAMING)) {
835                 mutex_enter(&zp->z_lock);
836
837                 if (zp_is_dir && !zfs_dirempty(zp)) {
838                         mutex_exit(&zp->z_lock);
839                         return (ENOTEMPTY);
840                 }
841
842                 /*
843                  * If we get here, we are going to try to remove the object.
844                  * First try removing the name from the directory; if that
845                  * fails, return the error.
846                  */
847                 error = zfs_dropname(dl, zp, dzp, tx, flag);
848                 if (error != 0) {
849                         mutex_exit(&zp->z_lock);
850                         return (error);
851                 }
852
853                 if (zp->z_links <= zp_is_dir) {
854                         zfs_panic_recover("zfs: link count on %lu is %u, "
855                             "should be at least %u", zp->z_id,
856                             (int)zp->z_links, zp_is_dir + 1);
857                         zp->z_links = zp_is_dir + 1;
858                 }
859                 if (--zp->z_links == zp_is_dir) {
860                         zp->z_unlinked = B_TRUE;
861                         zp->z_links = 0;
862                         unlinked = B_TRUE;
863                 } else {
864                         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb),
865                             NULL, &ctime, sizeof (ctime));
866                         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb),
867                             NULL, &zp->z_pflags, sizeof (zp->z_pflags));
868                         zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime, ctime,
869                             B_TRUE);
870                 }
871                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb),
872                     NULL, &zp->z_links, sizeof (zp->z_links));
873                 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
874                 count = 0;
875                 ASSERT(error == 0);
876                 mutex_exit(&zp->z_lock);
877         } else {
878                 error = zfs_dropname(dl, zp, dzp, tx, flag);
879                 if (error != 0)
880                         return (error);
881         }
882
883         mutex_enter(&dzp->z_lock);
884         dzp->z_size--;          /* one dirent removed */
885         dzp->z_links -= zp_is_dir;      /* ".." link from zp */
886         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb),
887             NULL, &dzp->z_links, sizeof (dzp->z_links));
888         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb),
889             NULL, &dzp->z_size, sizeof (dzp->z_size));
890         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb),
891             NULL, ctime, sizeof (ctime));
892         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zsb),
893             NULL, mtime, sizeof (mtime));
894         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb),
895             NULL, &dzp->z_pflags, sizeof (dzp->z_pflags));
896         zfs_tstamp_update_setup(dzp, CONTENT_MODIFIED, mtime, ctime, B_TRUE);
897         error = sa_bulk_update(dzp->z_sa_hdl, bulk, count, tx);
898         ASSERT(error == 0);
899         mutex_exit(&dzp->z_lock);
900
901         if (unlinkedp != NULL)
902                 *unlinkedp = unlinked;
903         else if (unlinked)
904                 zfs_unlinked_add(zp, tx);
905
906         return (0);
907 }
908
909 /*
910  * Indicate whether the directory is empty.  Works with or without z_lock
911  * held, but can only be consider a hint in the latter case.  Returns true
912  * if only "." and ".." remain and there's no work in progress.
913  */
914 boolean_t
915 zfs_dirempty(znode_t *dzp)
916 {
917         return (dzp->z_size == 2 && dzp->z_dirlocks == 0);
918 }
919
920 int
921 zfs_make_xattrdir(znode_t *zp, vattr_t *vap, struct inode **xipp, cred_t *cr)
922 {
923         zfs_sb_t *zsb = ZTOZSB(zp);
924         znode_t *xzp;
925         dmu_tx_t *tx;
926         int error;
927         zfs_acl_ids_t acl_ids;
928         boolean_t fuid_dirtied;
929 #ifdef DEBUG
930         uint64_t parent;
931 #endif
932
933         *xipp = NULL;
934
935         if ((error = zfs_zaccess(zp, ACE_WRITE_NAMED_ATTRS, 0, B_FALSE, cr)))
936                 return (error);
937
938         if ((error = zfs_acl_ids_create(zp, IS_XATTR, vap, cr, NULL,
939             &acl_ids)) != 0)
940                 return (error);
941         if (zfs_acl_ids_overquota(zsb, &acl_ids)) {
942                 zfs_acl_ids_free(&acl_ids);
943                 return (EDQUOT);
944         }
945
946 top:
947         tx = dmu_tx_create(zsb->z_os);
948         dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
949             ZFS_SA_BASE_ATTR_SIZE);
950         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
951         dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
952         fuid_dirtied = zsb->z_fuid_dirty;
953         if (fuid_dirtied)
954                 zfs_fuid_txhold(zsb, tx);
955         error = dmu_tx_assign(tx, TXG_NOWAIT);
956         if (error) {
957                 if (error == ERESTART) {
958                         dmu_tx_wait(tx);
959                         dmu_tx_abort(tx);
960                         goto top;
961                 }
962                 zfs_acl_ids_free(&acl_ids);
963                 dmu_tx_abort(tx);
964                 return (error);
965         }
966         zfs_mknode(zp, vap, tx, cr, IS_XATTR, &xzp, &acl_ids);
967
968         if (fuid_dirtied)
969                 zfs_fuid_sync(zsb, tx);
970
971 #ifdef DEBUG
972         error = sa_lookup(xzp->z_sa_hdl, SA_ZPL_PARENT(zsb),
973             &parent, sizeof (parent));
974         ASSERT(error == 0 && parent == zp->z_id);
975 #endif
976
977         VERIFY(0 == sa_update(zp->z_sa_hdl, SA_ZPL_XATTR(zsb), &xzp->z_id,
978             sizeof (xzp->z_id), tx));
979
980         (void) zfs_log_create(zsb->z_log, tx, TX_MKXATTR, zp,
981             xzp, "", NULL, acl_ids.z_fuidp, vap);
982
983         zfs_acl_ids_free(&acl_ids);
984         dmu_tx_commit(tx);
985
986         *xipp = ZTOI(xzp);
987
988         return (0);
989 }
990
991 /*
992  * Return a znode for the extended attribute directory for zp.
993  * ** If the directory does not already exist, it is created **
994  *
995  *      IN:     zp      - znode to obtain attribute directory from
996  *              cr      - credentials of caller
997  *              flags   - flags from the VOP_LOOKUP call
998  *
999  *      OUT:    xipp    - pointer to extended attribute znode
1000  *
1001  *      RETURN: 0 on success
1002  *              error number on failure
1003  */
1004 int
1005 zfs_get_xattrdir(znode_t *zp, struct inode **xipp, cred_t *cr, int flags)
1006 {
1007         zfs_sb_t        *zsb = ZTOZSB(zp);
1008         znode_t         *xzp;
1009         zfs_dirlock_t   *dl;
1010         vattr_t         va;
1011         int             error;
1012 top:
1013         error = zfs_dirent_lock(&dl, zp, "", &xzp, ZXATTR, NULL, NULL);
1014         if (error)
1015                 return (error);
1016
1017         if (xzp != NULL) {
1018                 *xipp = ZTOI(xzp);
1019                 zfs_dirent_unlock(dl);
1020                 return (0);
1021         }
1022
1023         if (!(flags & CREATE_XATTR_DIR)) {
1024                 zfs_dirent_unlock(dl);
1025                 return (ENOENT);
1026         }
1027
1028         if (zfs_is_readonly(zsb)) {
1029                 zfs_dirent_unlock(dl);
1030                 return (EROFS);
1031         }
1032
1033         /*
1034          * The ability to 'create' files in an attribute
1035          * directory comes from the write_xattr permission on the base file.
1036          *
1037          * The ability to 'search' an attribute directory requires
1038          * read_xattr permission on the base file.
1039          *
1040          * Once in a directory the ability to read/write attributes
1041          * is controlled by the permissions on the attribute file.
1042          */
1043         va.va_mask = ATTR_MODE | ATTR_UID | ATTR_GID;
1044         va.va_mode = S_IFDIR | S_ISVTX | 0777;
1045         zfs_fuid_map_ids(zp, cr, &va.va_uid, &va.va_gid);
1046
1047         va.va_dentry = NULL;
1048         error = zfs_make_xattrdir(zp, &va, xipp, cr);
1049         zfs_dirent_unlock(dl);
1050
1051         if (error == ERESTART) {
1052                 /* NB: we already did dmu_tx_wait() if necessary */
1053                 goto top;
1054         }
1055
1056         return (error);
1057 }
1058
1059 /*
1060  * Decide whether it is okay to remove within a sticky directory.
1061  *
1062  * In sticky directories, write access is not sufficient;
1063  * you can remove entries from a directory only if:
1064  *
1065  *      you own the directory,
1066  *      you own the entry,
1067  *      the entry is a plain file and you have write access,
1068  *      or you are privileged (checked in secpolicy...).
1069  *
1070  * The function returns 0 if remove access is granted.
1071  */
1072 int
1073 zfs_sticky_remove_access(znode_t *zdp, znode_t *zp, cred_t *cr)
1074 {
1075         uid_t           uid;
1076         uid_t           downer;
1077         uid_t           fowner;
1078         zfs_sb_t        *zsb = ZTOZSB(zdp);
1079
1080         if (zsb->z_replay)
1081                 return (0);
1082
1083         if ((zdp->z_mode & S_ISVTX) == 0)
1084                 return (0);
1085
1086         downer = zfs_fuid_map_id(zsb, zdp->z_uid, cr, ZFS_OWNER);
1087         fowner = zfs_fuid_map_id(zsb, zp->z_uid, cr, ZFS_OWNER);
1088
1089         if ((uid = crgetuid(cr)) == downer || uid == fowner ||
1090             (S_ISDIR(ZTOI(zp)->i_mode) &&
1091             zfs_zaccess(zp, ACE_WRITE_DATA, 0, B_FALSE, cr) == 0))
1092                 return (0);
1093         else
1094                 return (secpolicy_vnode_remove(cr));
1095 }