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