xref: /illumos-gate/usr/src/uts/common/fs/zfs/zfs_replay.c (revision 975c32a05c38c6fa808592dd35fa6dba183ca077)
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 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #include <sys/types.h>
27 #include <sys/param.h>
28 #include <sys/systm.h>
29 #include <sys/sysmacros.h>
30 #include <sys/cmn_err.h>
31 #include <sys/kmem.h>
32 #include <sys/thread.h>
33 #include <sys/file.h>
34 #include <sys/fcntl.h>
35 #include <sys/vfs.h>
36 #include <sys/fs/zfs.h>
37 #include <sys/zfs_znode.h>
38 #include <sys/zfs_dir.h>
39 #include <sys/zfs_acl.h>
40 #include <sys/zfs_fuid.h>
41 #include <sys/spa.h>
42 #include <sys/zil.h>
43 #include <sys/byteorder.h>
44 #include <sys/stat.h>
45 #include <sys/mode.h>
46 #include <sys/acl.h>
47 #include <sys/atomic.h>
48 #include <sys/cred.h>
49 
50 /*
51  * Functions to replay ZFS intent log (ZIL) records
52  * The functions are called through a function vector (zfs_replay_vector)
53  * which is indexed by the transaction type.
54  */
55 
56 static void
57 zfs_init_vattr(vattr_t *vap, uint64_t mask, uint64_t mode,
58 	uint64_t uid, uint64_t gid, uint64_t rdev, uint64_t nodeid)
59 {
60 	bzero(vap, sizeof (*vap));
61 	vap->va_mask = (uint_t)mask;
62 	vap->va_type = IFTOVT(mode);
63 	vap->va_mode = mode & MODEMASK;
64 	vap->va_uid = (uid_t)(IS_EPHEMERAL(uid)) ? -1 : uid;
65 	vap->va_gid = (gid_t)(IS_EPHEMERAL(gid)) ? -1 : gid;
66 	vap->va_rdev = zfs_cmpldev(rdev);
67 	vap->va_nodeid = nodeid;
68 }
69 
70 /* ARGSUSED */
71 static int
72 zfs_replay_error(zfsvfs_t *zfsvfs, lr_t *lr, boolean_t byteswap)
73 {
74 	return (ENOTSUP);
75 }
76 
77 static void
78 zfs_replay_xvattr(lr_attr_t *lrattr, xvattr_t *xvap)
79 {
80 	xoptattr_t *xoap = NULL;
81 	uint64_t *attrs;
82 	uint64_t *crtime;
83 	uint32_t *bitmap;
84 	void *scanstamp;
85 	int i;
86 
87 	xvap->xva_vattr.va_mask |= AT_XVATTR;
88 	if ((xoap = xva_getxoptattr(xvap)) == NULL) {
89 		xvap->xva_vattr.va_mask &= ~AT_XVATTR; /* shouldn't happen */
90 		return;
91 	}
92 
93 	ASSERT(lrattr->lr_attr_masksize == xvap->xva_mapsize);
94 
95 	bitmap = &lrattr->lr_attr_bitmap;
96 	for (i = 0; i != lrattr->lr_attr_masksize; i++, bitmap++)
97 		xvap->xva_reqattrmap[i] = *bitmap;
98 
99 	attrs = (uint64_t *)(lrattr + lrattr->lr_attr_masksize - 1);
100 	crtime = attrs + 1;
101 	scanstamp = (caddr_t)(crtime + 2);
102 
103 	if (XVA_ISSET_REQ(xvap, XAT_HIDDEN))
104 		xoap->xoa_hidden = ((*attrs & XAT0_HIDDEN) != 0);
105 	if (XVA_ISSET_REQ(xvap, XAT_SYSTEM))
106 		xoap->xoa_system = ((*attrs & XAT0_SYSTEM) != 0);
107 	if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE))
108 		xoap->xoa_archive = ((*attrs & XAT0_ARCHIVE) != 0);
109 	if (XVA_ISSET_REQ(xvap, XAT_READONLY))
110 		xoap->xoa_readonly = ((*attrs & XAT0_READONLY) != 0);
111 	if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE))
112 		xoap->xoa_immutable = ((*attrs & XAT0_IMMUTABLE) != 0);
113 	if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK))
114 		xoap->xoa_nounlink = ((*attrs & XAT0_NOUNLINK) != 0);
115 	if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY))
116 		xoap->xoa_appendonly = ((*attrs & XAT0_APPENDONLY) != 0);
117 	if (XVA_ISSET_REQ(xvap, XAT_NODUMP))
118 		xoap->xoa_nodump = ((*attrs & XAT0_NODUMP) != 0);
119 	if (XVA_ISSET_REQ(xvap, XAT_OPAQUE))
120 		xoap->xoa_opaque = ((*attrs & XAT0_OPAQUE) != 0);
121 	if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED))
122 		xoap->xoa_av_modified = ((*attrs & XAT0_AV_MODIFIED) != 0);
123 	if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED))
124 		xoap->xoa_av_quarantined =
125 		    ((*attrs & XAT0_AV_QUARANTINED) != 0);
126 	if (XVA_ISSET_REQ(xvap, XAT_CREATETIME))
127 		ZFS_TIME_DECODE(&xoap->xoa_createtime, crtime);
128 	if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP))
129 		bcopy(scanstamp, xoap->xoa_av_scanstamp, AV_SCANSTAMP_SZ);
130 	if (XVA_ISSET_REQ(xvap, XAT_REPARSE))
131 		xoap->xoa_reparse = ((*attrs & XAT0_REPARSE) != 0);
132 }
133 
134 static int
135 zfs_replay_domain_cnt(uint64_t uid, uint64_t gid)
136 {
137 	uint64_t uid_idx;
138 	uint64_t gid_idx;
139 	int domcnt = 0;
140 
141 	uid_idx = FUID_INDEX(uid);
142 	gid_idx = FUID_INDEX(gid);
143 	if (uid_idx)
144 		domcnt++;
145 	if (gid_idx > 0 && gid_idx != uid_idx)
146 		domcnt++;
147 
148 	return (domcnt);
149 }
150 
151 static void *
152 zfs_replay_fuid_domain_common(zfs_fuid_info_t *fuid_infop, void *start,
153     int domcnt)
154 {
155 	int i;
156 
157 	for (i = 0; i != domcnt; i++) {
158 		fuid_infop->z_domain_table[i] = start;
159 		start = (caddr_t)start + strlen(start) + 1;
160 	}
161 
162 	return (start);
163 }
164 
165 /*
166  * Set the uid/gid in the fuid_info structure.
167  */
168 static void
169 zfs_replay_fuid_ugid(zfs_fuid_info_t *fuid_infop, uint64_t uid, uint64_t gid)
170 {
171 	/*
172 	 * If owner or group are log specific FUIDs then slurp up
173 	 * domain information and build zfs_fuid_info_t
174 	 */
175 	if (IS_EPHEMERAL(uid))
176 		fuid_infop->z_fuid_owner = uid;
177 
178 	if (IS_EPHEMERAL(gid))
179 		fuid_infop->z_fuid_group = gid;
180 }
181 
182 /*
183  * Load fuid domains into fuid_info_t
184  */
185 static zfs_fuid_info_t *
186 zfs_replay_fuid_domain(void *buf, void **end, uint64_t uid, uint64_t gid)
187 {
188 	int domcnt;
189 
190 	zfs_fuid_info_t *fuid_infop;
191 
192 	fuid_infop = zfs_fuid_info_alloc();
193 
194 	domcnt = zfs_replay_domain_cnt(uid, gid);
195 
196 	if (domcnt == 0)
197 		return (fuid_infop);
198 
199 	fuid_infop->z_domain_table =
200 	    kmem_zalloc(domcnt * sizeof (char **), KM_SLEEP);
201 
202 	zfs_replay_fuid_ugid(fuid_infop, uid, gid);
203 
204 	fuid_infop->z_domain_cnt = domcnt;
205 	*end = zfs_replay_fuid_domain_common(fuid_infop, buf, domcnt);
206 	return (fuid_infop);
207 }
208 
209 /*
210  * load zfs_fuid_t's and fuid_domains into fuid_info_t
211  */
212 static zfs_fuid_info_t *
213 zfs_replay_fuids(void *start, void **end, int idcnt, int domcnt, uint64_t uid,
214     uint64_t gid)
215 {
216 	uint64_t *log_fuid = (uint64_t *)start;
217 	zfs_fuid_info_t *fuid_infop;
218 	int i;
219 
220 	fuid_infop = zfs_fuid_info_alloc();
221 	fuid_infop->z_domain_cnt = domcnt;
222 
223 	fuid_infop->z_domain_table =
224 	    kmem_zalloc(domcnt * sizeof (char **), KM_SLEEP);
225 
226 	for (i = 0; i != idcnt; i++) {
227 		zfs_fuid_t *zfuid;
228 
229 		zfuid = kmem_alloc(sizeof (zfs_fuid_t), KM_SLEEP);
230 		zfuid->z_logfuid = *log_fuid;
231 		zfuid->z_id = -1;
232 		zfuid->z_domidx = 0;
233 		list_insert_tail(&fuid_infop->z_fuids, zfuid);
234 		log_fuid++;
235 	}
236 
237 	zfs_replay_fuid_ugid(fuid_infop, uid, gid);
238 
239 	*end = zfs_replay_fuid_domain_common(fuid_infop, log_fuid, domcnt);
240 	return (fuid_infop);
241 }
242 
243 static void
244 zfs_replay_swap_attrs(lr_attr_t *lrattr)
245 {
246 	/* swap the lr_attr structure */
247 	byteswap_uint32_array(lrattr, sizeof (*lrattr));
248 	/* swap the bitmap */
249 	byteswap_uint32_array(lrattr + 1, (lrattr->lr_attr_masksize - 1) *
250 	    sizeof (uint32_t));
251 	/* swap the attributes, create time + 64 bit word for attributes */
252 	byteswap_uint64_array((caddr_t)(lrattr + 1) + (sizeof (uint32_t) *
253 	    (lrattr->lr_attr_masksize - 1)), 3 * sizeof (uint64_t));
254 }
255 
256 /*
257  * Replay file create with optional ACL, xvattr information as well
258  * as option FUID information.
259  */
260 static int
261 zfs_replay_create_acl(zfsvfs_t *zfsvfs,
262     lr_acl_create_t *lracl, boolean_t byteswap)
263 {
264 	char *name = NULL;		/* location determined later */
265 	lr_create_t *lr = (lr_create_t *)lracl;
266 	znode_t *dzp;
267 	vnode_t *vp = NULL;
268 	xvattr_t xva;
269 	int vflg = 0;
270 	vsecattr_t vsec = { 0 };
271 	lr_attr_t *lrattr;
272 	void *aclstart;
273 	void *fuidstart;
274 	size_t xvatlen = 0;
275 	uint64_t txtype;
276 	int error;
277 
278 	if (byteswap) {
279 		byteswap_uint64_array(lracl, sizeof (*lracl));
280 		txtype = (int)lr->lr_common.lrc_txtype;
281 		if (txtype == TX_CREATE_ACL_ATTR ||
282 		    txtype == TX_MKDIR_ACL_ATTR) {
283 			lrattr = (lr_attr_t *)(caddr_t)(lracl + 1);
284 			zfs_replay_swap_attrs(lrattr);
285 			xvatlen = ZIL_XVAT_SIZE(lrattr->lr_attr_masksize);
286 		}
287 
288 		aclstart = (caddr_t)(lracl + 1) + xvatlen;
289 		zfs_ace_byteswap(aclstart, lracl->lr_acl_bytes, B_FALSE);
290 		/* swap fuids */
291 		if (lracl->lr_fuidcnt) {
292 			byteswap_uint64_array((caddr_t)aclstart +
293 			    ZIL_ACE_LENGTH(lracl->lr_acl_bytes),
294 			    lracl->lr_fuidcnt * sizeof (uint64_t));
295 		}
296 	}
297 
298 	if ((error = zfs_zget(zfsvfs, lr->lr_doid, &dzp)) != 0)
299 		return (error);
300 
301 	xva_init(&xva);
302 	zfs_init_vattr(&xva.xva_vattr, AT_TYPE | AT_MODE | AT_UID | AT_GID,
303 	    lr->lr_mode, lr->lr_uid, lr->lr_gid, lr->lr_rdev, lr->lr_foid);
304 
305 	/*
306 	 * All forms of zfs create (create, mkdir, mkxattrdir, symlink)
307 	 * eventually end up in zfs_mknode(), which assigns the object's
308 	 * creation time and generation number.  The generic VOP_CREATE()
309 	 * doesn't have either concept, so we smuggle the values inside
310 	 * the vattr's otherwise unused va_ctime and va_nblocks fields.
311 	 */
312 	ZFS_TIME_DECODE(&xva.xva_vattr.va_ctime, lr->lr_crtime);
313 	xva.xva_vattr.va_nblocks = lr->lr_gen;
314 
315 	error = dmu_object_info(zfsvfs->z_os, lr->lr_foid, NULL);
316 	if (error != ENOENT)
317 		goto bail;
318 
319 	if (lr->lr_common.lrc_txtype & TX_CI)
320 		vflg |= FIGNORECASE;
321 	switch ((int)lr->lr_common.lrc_txtype) {
322 	case TX_CREATE_ACL:
323 		aclstart = (caddr_t)(lracl + 1);
324 		fuidstart = (caddr_t)aclstart +
325 		    ZIL_ACE_LENGTH(lracl->lr_acl_bytes);
326 		zfsvfs->z_fuid_replay = zfs_replay_fuids(fuidstart,
327 		    (void *)&name, lracl->lr_fuidcnt, lracl->lr_domcnt,
328 		    lr->lr_uid, lr->lr_gid);
329 		/*FALLTHROUGH*/
330 	case TX_CREATE_ACL_ATTR:
331 		if (name == NULL) {
332 			lrattr = (lr_attr_t *)(caddr_t)(lracl + 1);
333 			xvatlen = ZIL_XVAT_SIZE(lrattr->lr_attr_masksize);
334 			xva.xva_vattr.va_mask |= AT_XVATTR;
335 			zfs_replay_xvattr(lrattr, &xva);
336 		}
337 		vsec.vsa_mask = VSA_ACE | VSA_ACE_ACLFLAGS;
338 		vsec.vsa_aclentp = (caddr_t)(lracl + 1) + xvatlen;
339 		vsec.vsa_aclcnt = lracl->lr_aclcnt;
340 		vsec.vsa_aclentsz = lracl->lr_acl_bytes;
341 		vsec.vsa_aclflags = lracl->lr_acl_flags;
342 		if (zfsvfs->z_fuid_replay == NULL) {
343 			fuidstart = (caddr_t)(lracl + 1) + xvatlen +
344 			    ZIL_ACE_LENGTH(lracl->lr_acl_bytes);
345 			zfsvfs->z_fuid_replay =
346 			    zfs_replay_fuids(fuidstart,
347 			    (void *)&name, lracl->lr_fuidcnt, lracl->lr_domcnt,
348 			    lr->lr_uid, lr->lr_gid);
349 		}
350 
351 		error = VOP_CREATE(ZTOV(dzp), name, &xva.xva_vattr,
352 		    0, 0, &vp, kcred, vflg, NULL, &vsec);
353 		break;
354 	case TX_MKDIR_ACL:
355 		aclstart = (caddr_t)(lracl + 1);
356 		fuidstart = (caddr_t)aclstart +
357 		    ZIL_ACE_LENGTH(lracl->lr_acl_bytes);
358 		zfsvfs->z_fuid_replay = zfs_replay_fuids(fuidstart,
359 		    (void *)&name, lracl->lr_fuidcnt, lracl->lr_domcnt,
360 		    lr->lr_uid, lr->lr_gid);
361 		/*FALLTHROUGH*/
362 	case TX_MKDIR_ACL_ATTR:
363 		if (name == NULL) {
364 			lrattr = (lr_attr_t *)(caddr_t)(lracl + 1);
365 			xvatlen = ZIL_XVAT_SIZE(lrattr->lr_attr_masksize);
366 			zfs_replay_xvattr(lrattr, &xva);
367 		}
368 		vsec.vsa_mask = VSA_ACE | VSA_ACE_ACLFLAGS;
369 		vsec.vsa_aclentp = (caddr_t)(lracl + 1) + xvatlen;
370 		vsec.vsa_aclcnt = lracl->lr_aclcnt;
371 		vsec.vsa_aclentsz = lracl->lr_acl_bytes;
372 		vsec.vsa_aclflags = lracl->lr_acl_flags;
373 		if (zfsvfs->z_fuid_replay == NULL) {
374 			fuidstart = (caddr_t)(lracl + 1) + xvatlen +
375 			    ZIL_ACE_LENGTH(lracl->lr_acl_bytes);
376 			zfsvfs->z_fuid_replay =
377 			    zfs_replay_fuids(fuidstart,
378 			    (void *)&name, lracl->lr_fuidcnt, lracl->lr_domcnt,
379 			    lr->lr_uid, lr->lr_gid);
380 		}
381 		error = VOP_MKDIR(ZTOV(dzp), name, &xva.xva_vattr,
382 		    &vp, kcred, NULL, vflg, &vsec);
383 		break;
384 	default:
385 		error = ENOTSUP;
386 	}
387 
388 bail:
389 	if (error == 0 && vp != NULL)
390 		VN_RELE(vp);
391 
392 	VN_RELE(ZTOV(dzp));
393 
394 	zfs_fuid_info_free(zfsvfs->z_fuid_replay);
395 	zfsvfs->z_fuid_replay = NULL;
396 
397 	return (error);
398 }
399 
400 static int
401 zfs_replay_create(zfsvfs_t *zfsvfs, lr_create_t *lr, boolean_t byteswap)
402 {
403 	char *name = NULL;		/* location determined later */
404 	char *link;			/* symlink content follows name */
405 	znode_t *dzp;
406 	vnode_t *vp = NULL;
407 	xvattr_t xva;
408 	int vflg = 0;
409 	size_t lrsize = sizeof (lr_create_t);
410 	lr_attr_t *lrattr;
411 	void *start;
412 	size_t xvatlen;
413 	uint64_t txtype;
414 	int error;
415 
416 	if (byteswap) {
417 		byteswap_uint64_array(lr, sizeof (*lr));
418 		txtype = (int)lr->lr_common.lrc_txtype;
419 		if (txtype == TX_CREATE_ATTR || txtype == TX_MKDIR_ATTR)
420 			zfs_replay_swap_attrs((lr_attr_t *)(lr + 1));
421 	}
422 
423 
424 	if ((error = zfs_zget(zfsvfs, lr->lr_doid, &dzp)) != 0)
425 		return (error);
426 
427 	xva_init(&xva);
428 	zfs_init_vattr(&xva.xva_vattr, AT_TYPE | AT_MODE | AT_UID | AT_GID,
429 	    lr->lr_mode, lr->lr_uid, lr->lr_gid, lr->lr_rdev, lr->lr_foid);
430 
431 	/*
432 	 * All forms of zfs create (create, mkdir, mkxattrdir, symlink)
433 	 * eventually end up in zfs_mknode(), which assigns the object's
434 	 * creation time and generation number.  The generic VOP_CREATE()
435 	 * doesn't have either concept, so we smuggle the values inside
436 	 * the vattr's otherwise unused va_ctime and va_nblocks fields.
437 	 */
438 	ZFS_TIME_DECODE(&xva.xva_vattr.va_ctime, lr->lr_crtime);
439 	xva.xva_vattr.va_nblocks = lr->lr_gen;
440 
441 	error = dmu_object_info(zfsvfs->z_os, lr->lr_foid, NULL);
442 	if (error != ENOENT)
443 		goto out;
444 
445 	if (lr->lr_common.lrc_txtype & TX_CI)
446 		vflg |= FIGNORECASE;
447 
448 	/*
449 	 * Symlinks don't have fuid info, and CIFS never creates
450 	 * symlinks.
451 	 *
452 	 * The _ATTR versions will grab the fuid info in their subcases.
453 	 */
454 	if ((int)lr->lr_common.lrc_txtype != TX_SYMLINK &&
455 	    (int)lr->lr_common.lrc_txtype != TX_MKDIR_ATTR &&
456 	    (int)lr->lr_common.lrc_txtype != TX_CREATE_ATTR) {
457 		start = (lr + 1);
458 		zfsvfs->z_fuid_replay =
459 		    zfs_replay_fuid_domain(start, &start,
460 		    lr->lr_uid, lr->lr_gid);
461 	}
462 
463 	switch ((int)lr->lr_common.lrc_txtype) {
464 	case TX_CREATE_ATTR:
465 		lrattr = (lr_attr_t *)(caddr_t)(lr + 1);
466 		xvatlen = ZIL_XVAT_SIZE(lrattr->lr_attr_masksize);
467 		zfs_replay_xvattr((lr_attr_t *)((caddr_t)lr + lrsize), &xva);
468 		start = (caddr_t)(lr + 1) + xvatlen;
469 		zfsvfs->z_fuid_replay =
470 		    zfs_replay_fuid_domain(start, &start,
471 		    lr->lr_uid, lr->lr_gid);
472 		name = (char *)start;
473 
474 		/*FALLTHROUGH*/
475 	case TX_CREATE:
476 		if (name == NULL)
477 			name = (char *)start;
478 
479 		error = VOP_CREATE(ZTOV(dzp), name, &xva.xva_vattr,
480 		    0, 0, &vp, kcred, vflg, NULL, NULL);
481 		break;
482 	case TX_MKDIR_ATTR:
483 		lrattr = (lr_attr_t *)(caddr_t)(lr + 1);
484 		xvatlen = ZIL_XVAT_SIZE(lrattr->lr_attr_masksize);
485 		zfs_replay_xvattr((lr_attr_t *)((caddr_t)lr + lrsize), &xva);
486 		start = (caddr_t)(lr + 1) + xvatlen;
487 		zfsvfs->z_fuid_replay =
488 		    zfs_replay_fuid_domain(start, &start,
489 		    lr->lr_uid, lr->lr_gid);
490 		name = (char *)start;
491 
492 		/*FALLTHROUGH*/
493 	case TX_MKDIR:
494 		if (name == NULL)
495 			name = (char *)(lr + 1);
496 
497 		error = VOP_MKDIR(ZTOV(dzp), name, &xva.xva_vattr,
498 		    &vp, kcred, NULL, vflg, NULL);
499 		break;
500 	case TX_MKXATTR:
501 		name = (char *)(lr + 1);
502 		error = zfs_make_xattrdir(dzp, &xva.xva_vattr, &vp, kcred);
503 		break;
504 	case TX_SYMLINK:
505 		name = (char *)(lr + 1);
506 		link = name + strlen(name) + 1;
507 		error = VOP_SYMLINK(ZTOV(dzp), name, &xva.xva_vattr,
508 		    link, kcred, NULL, vflg);
509 		break;
510 	default:
511 		error = ENOTSUP;
512 	}
513 
514 out:
515 	if (error == 0 && vp != NULL)
516 		VN_RELE(vp);
517 
518 	VN_RELE(ZTOV(dzp));
519 
520 	if (zfsvfs->z_fuid_replay)
521 		zfs_fuid_info_free(zfsvfs->z_fuid_replay);
522 	zfsvfs->z_fuid_replay = NULL;
523 	return (error);
524 }
525 
526 static int
527 zfs_replay_remove(zfsvfs_t *zfsvfs, lr_remove_t *lr, boolean_t byteswap)
528 {
529 	char *name = (char *)(lr + 1);	/* name follows lr_remove_t */
530 	znode_t *dzp;
531 	int error;
532 	int vflg = 0;
533 
534 	if (byteswap)
535 		byteswap_uint64_array(lr, sizeof (*lr));
536 
537 	if ((error = zfs_zget(zfsvfs, lr->lr_doid, &dzp)) != 0)
538 		return (error);
539 
540 	if (lr->lr_common.lrc_txtype & TX_CI)
541 		vflg |= FIGNORECASE;
542 
543 	switch ((int)lr->lr_common.lrc_txtype) {
544 	case TX_REMOVE:
545 		error = VOP_REMOVE(ZTOV(dzp), name, kcred, NULL, vflg);
546 		break;
547 	case TX_RMDIR:
548 		error = VOP_RMDIR(ZTOV(dzp), name, NULL, kcred, NULL, vflg);
549 		break;
550 	default:
551 		error = ENOTSUP;
552 	}
553 
554 	VN_RELE(ZTOV(dzp));
555 
556 	return (error);
557 }
558 
559 static int
560 zfs_replay_link(zfsvfs_t *zfsvfs, lr_link_t *lr, boolean_t byteswap)
561 {
562 	char *name = (char *)(lr + 1);	/* name follows lr_link_t */
563 	znode_t *dzp, *zp;
564 	int error;
565 	int vflg = 0;
566 
567 	if (byteswap)
568 		byteswap_uint64_array(lr, sizeof (*lr));
569 
570 	if ((error = zfs_zget(zfsvfs, lr->lr_doid, &dzp)) != 0)
571 		return (error);
572 
573 	if ((error = zfs_zget(zfsvfs, lr->lr_link_obj, &zp)) != 0) {
574 		VN_RELE(ZTOV(dzp));
575 		return (error);
576 	}
577 
578 	if (lr->lr_common.lrc_txtype & TX_CI)
579 		vflg |= FIGNORECASE;
580 
581 	error = VOP_LINK(ZTOV(dzp), ZTOV(zp), name, kcred, NULL, vflg);
582 
583 	VN_RELE(ZTOV(zp));
584 	VN_RELE(ZTOV(dzp));
585 
586 	return (error);
587 }
588 
589 static int
590 zfs_replay_rename(zfsvfs_t *zfsvfs, lr_rename_t *lr, boolean_t byteswap)
591 {
592 	char *sname = (char *)(lr + 1);	/* sname and tname follow lr_rename_t */
593 	char *tname = sname + strlen(sname) + 1;
594 	znode_t *sdzp, *tdzp;
595 	int error;
596 	int vflg = 0;
597 
598 	if (byteswap)
599 		byteswap_uint64_array(lr, sizeof (*lr));
600 
601 	if ((error = zfs_zget(zfsvfs, lr->lr_sdoid, &sdzp)) != 0)
602 		return (error);
603 
604 	if ((error = zfs_zget(zfsvfs, lr->lr_tdoid, &tdzp)) != 0) {
605 		VN_RELE(ZTOV(sdzp));
606 		return (error);
607 	}
608 
609 	if (lr->lr_common.lrc_txtype & TX_CI)
610 		vflg |= FIGNORECASE;
611 
612 	error = VOP_RENAME(ZTOV(sdzp), sname, ZTOV(tdzp), tname, kcred,
613 	    NULL, vflg);
614 
615 	VN_RELE(ZTOV(tdzp));
616 	VN_RELE(ZTOV(sdzp));
617 
618 	return (error);
619 }
620 
621 static int
622 zfs_replay_write(zfsvfs_t *zfsvfs, lr_write_t *lr, boolean_t byteswap)
623 {
624 	char *data = (char *)(lr + 1);	/* data follows lr_write_t */
625 	znode_t	*zp;
626 	int error;
627 	ssize_t resid;
628 	uint64_t orig_eof, eod;
629 
630 	if (byteswap)
631 		byteswap_uint64_array(lr, sizeof (*lr));
632 
633 	if ((error = zfs_zget(zfsvfs, lr->lr_foid, &zp)) != 0) {
634 		/*
635 		 * As we can log writes out of order, it's possible the
636 		 * file has been removed. In this case just drop the write
637 		 * and return success.
638 		 */
639 		if (error == ENOENT)
640 			error = 0;
641 		return (error);
642 	}
643 	orig_eof = zp->z_phys->zp_size;
644 	eod = lr->lr_offset + lr->lr_length; /* end of data for this write */
645 
646 	/* If it's a dmu_sync() block get the data and write the whole block */
647 	if (lr->lr_common.lrc_reclen == sizeof (lr_write_t))
648 		zil_get_replay_data(zfsvfs->z_log, lr);
649 
650 	error = vn_rdwr(UIO_WRITE, ZTOV(zp), data, lr->lr_length,
651 	    lr->lr_offset, UIO_SYSSPACE, 0, RLIM64_INFINITY, kcred, &resid);
652 
653 	/*
654 	 * This may be a write from a dmu_sync() for a whole block,
655 	 * and may extend beyond the current end of the file.
656 	 * We can't just replay what was written for this TX_WRITE as
657 	 * a future TX_WRITE2 may extend the eof and the data for that
658 	 * write needs to be there. So we write the whole block and
659 	 * reduce the eof.
660 	 */
661 	if (orig_eof < zp->z_phys->zp_size) /* file length grew ? */
662 		zp->z_phys->zp_size = eod;
663 
664 	VN_RELE(ZTOV(zp));
665 
666 	return (error);
667 }
668 
669 /*
670  * TX_WRITE2 are only generated when dmu_sync() returns EALREADY
671  * meaning the pool block is already being synced. So now that we always write
672  * out full blocks, all we have to do is expand the eof if
673  * the file is grown.
674  */
675 static int
676 zfs_replay_write2(zfsvfs_t *zfsvfs, lr_write_t *lr, boolean_t byteswap)
677 {
678 	znode_t	*zp;
679 	int error;
680 	uint64_t end;
681 
682 	if (byteswap)
683 		byteswap_uint64_array(lr, sizeof (*lr));
684 
685 	if ((error = zfs_zget(zfsvfs, lr->lr_foid, &zp)) != 0) {
686 		/*
687 		 * As we can log writes out of order, it's possible the
688 		 * file has been removed. In this case just drop the write
689 		 * and return success.
690 		 */
691 		if (error == ENOENT)
692 			error = 0;
693 		return (error);
694 	}
695 
696 	end = lr->lr_offset + lr->lr_length;
697 	if (end > zp->z_phys->zp_size) {
698 		ASSERT3U(end - zp->z_phys->zp_size, <, zp->z_blksz);
699 		zp->z_phys->zp_size = end;
700 	}
701 
702 	VN_RELE(ZTOV(zp));
703 
704 	return (error);
705 }
706 
707 static int
708 zfs_replay_truncate(zfsvfs_t *zfsvfs, lr_truncate_t *lr, boolean_t byteswap)
709 {
710 	znode_t *zp;
711 	flock64_t fl;
712 	int error;
713 
714 	if (byteswap)
715 		byteswap_uint64_array(lr, sizeof (*lr));
716 
717 	if ((error = zfs_zget(zfsvfs, lr->lr_foid, &zp)) != 0) {
718 		/*
719 		 * As we can log truncates out of order, it's possible the
720 		 * file has been removed. In this case just drop the truncate
721 		 * and return success.
722 		 */
723 		if (error == ENOENT)
724 			error = 0;
725 		return (error);
726 	}
727 
728 	bzero(&fl, sizeof (fl));
729 	fl.l_type = F_WRLCK;
730 	fl.l_whence = 0;
731 	fl.l_start = lr->lr_offset;
732 	fl.l_len = lr->lr_length;
733 
734 	error = VOP_SPACE(ZTOV(zp), F_FREESP, &fl, FWRITE | FOFFMAX,
735 	    lr->lr_offset, kcred, NULL);
736 
737 	VN_RELE(ZTOV(zp));
738 
739 	return (error);
740 }
741 
742 static int
743 zfs_replay_setattr(zfsvfs_t *zfsvfs, lr_setattr_t *lr, boolean_t byteswap)
744 {
745 	znode_t *zp;
746 	xvattr_t xva;
747 	vattr_t *vap = &xva.xva_vattr;
748 	int error;
749 	void *start;
750 
751 	xva_init(&xva);
752 	if (byteswap) {
753 		byteswap_uint64_array(lr, sizeof (*lr));
754 
755 		if ((lr->lr_mask & AT_XVATTR) &&
756 		    zfsvfs->z_version >= ZPL_VERSION_INITIAL)
757 			zfs_replay_swap_attrs((lr_attr_t *)(lr + 1));
758 	}
759 
760 	if ((error = zfs_zget(zfsvfs, lr->lr_foid, &zp)) != 0) {
761 		/*
762 		 * As we can log setattrs out of order, it's possible the
763 		 * file has been removed. In this case just drop the setattr
764 		 * and return success.
765 		 */
766 		if (error == ENOENT)
767 			error = 0;
768 		return (error);
769 	}
770 
771 	zfs_init_vattr(vap, lr->lr_mask, lr->lr_mode,
772 	    lr->lr_uid, lr->lr_gid, 0, lr->lr_foid);
773 
774 	vap->va_size = lr->lr_size;
775 	ZFS_TIME_DECODE(&vap->va_atime, lr->lr_atime);
776 	ZFS_TIME_DECODE(&vap->va_mtime, lr->lr_mtime);
777 
778 	/*
779 	 * Fill in xvattr_t portions if necessary.
780 	 */
781 
782 	start = (lr_setattr_t *)(lr + 1);
783 	if (vap->va_mask & AT_XVATTR) {
784 		zfs_replay_xvattr((lr_attr_t *)start, &xva);
785 		start = (caddr_t)start +
786 		    ZIL_XVAT_SIZE(((lr_attr_t *)start)->lr_attr_masksize);
787 	} else
788 		xva.xva_vattr.va_mask &= ~AT_XVATTR;
789 
790 	zfsvfs->z_fuid_replay = zfs_replay_fuid_domain(start, &start,
791 	    lr->lr_uid, lr->lr_gid);
792 
793 	error = VOP_SETATTR(ZTOV(zp), vap, 0, kcred, NULL);
794 
795 	zfs_fuid_info_free(zfsvfs->z_fuid_replay);
796 	zfsvfs->z_fuid_replay = NULL;
797 	VN_RELE(ZTOV(zp));
798 
799 	return (error);
800 }
801 
802 static int
803 zfs_replay_acl_v0(zfsvfs_t *zfsvfs, lr_acl_v0_t *lr, boolean_t byteswap)
804 {
805 	ace_t *ace = (ace_t *)(lr + 1);	/* ace array follows lr_acl_t */
806 	vsecattr_t vsa;
807 	znode_t *zp;
808 	int error;
809 
810 	if (byteswap) {
811 		byteswap_uint64_array(lr, sizeof (*lr));
812 		zfs_oldace_byteswap(ace, lr->lr_aclcnt);
813 	}
814 
815 	if ((error = zfs_zget(zfsvfs, lr->lr_foid, &zp)) != 0) {
816 		/*
817 		 * As we can log acls out of order, it's possible the
818 		 * file has been removed. In this case just drop the acl
819 		 * and return success.
820 		 */
821 		if (error == ENOENT)
822 			error = 0;
823 		return (error);
824 	}
825 
826 	bzero(&vsa, sizeof (vsa));
827 	vsa.vsa_mask = VSA_ACE | VSA_ACECNT;
828 	vsa.vsa_aclcnt = lr->lr_aclcnt;
829 	vsa.vsa_aclentsz = sizeof (ace_t) * vsa.vsa_aclcnt;
830 	vsa.vsa_aclflags = 0;
831 	vsa.vsa_aclentp = ace;
832 
833 	error = VOP_SETSECATTR(ZTOV(zp), &vsa, 0, kcred, NULL);
834 
835 	VN_RELE(ZTOV(zp));
836 
837 	return (error);
838 }
839 
840 /*
841  * Replaying ACLs is complicated by FUID support.
842  * The log record may contain some optional data
843  * to be used for replaying FUID's.  These pieces
844  * are the actual FUIDs that were created initially.
845  * The FUID table index may no longer be valid and
846  * during zfs_create() a new index may be assigned.
847  * Because of this the log will contain the original
848  * doman+rid in order to create a new FUID.
849  *
850  * The individual ACEs may contain an ephemeral uid/gid which is no
851  * longer valid and will need to be replaced with an actual FUID.
852  *
853  */
854 static int
855 zfs_replay_acl(zfsvfs_t *zfsvfs, lr_acl_t *lr, boolean_t byteswap)
856 {
857 	ace_t *ace = (ace_t *)(lr + 1);
858 	vsecattr_t vsa;
859 	znode_t *zp;
860 	int error;
861 
862 	if (byteswap) {
863 		byteswap_uint64_array(lr, sizeof (*lr));
864 		zfs_ace_byteswap(ace, lr->lr_acl_bytes, B_FALSE);
865 		if (lr->lr_fuidcnt) {
866 			byteswap_uint64_array((caddr_t)ace +
867 			    ZIL_ACE_LENGTH(lr->lr_acl_bytes),
868 			    lr->lr_fuidcnt * sizeof (uint64_t));
869 		}
870 	}
871 
872 	if ((error = zfs_zget(zfsvfs, lr->lr_foid, &zp)) != 0) {
873 		/*
874 		 * As we can log acls out of order, it's possible the
875 		 * file has been removed. In this case just drop the acl
876 		 * and return success.
877 		 */
878 		if (error == ENOENT)
879 			error = 0;
880 		return (error);
881 	}
882 
883 	bzero(&vsa, sizeof (vsa));
884 	vsa.vsa_mask = VSA_ACE | VSA_ACECNT | VSA_ACE_ACLFLAGS;
885 	vsa.vsa_aclcnt = lr->lr_aclcnt;
886 	vsa.vsa_aclentp = ace;
887 	vsa.vsa_aclentsz = lr->lr_acl_bytes;
888 	vsa.vsa_aclflags = lr->lr_acl_flags;
889 
890 	if (lr->lr_fuidcnt) {
891 		void *fuidstart = (caddr_t)ace +
892 		    ZIL_ACE_LENGTH(lr->lr_acl_bytes);
893 
894 		zfsvfs->z_fuid_replay =
895 		    zfs_replay_fuids(fuidstart, &fuidstart,
896 		    lr->lr_fuidcnt, lr->lr_domcnt, 0, 0);
897 	}
898 
899 	error = VOP_SETSECATTR(ZTOV(zp), &vsa, 0, kcred, NULL);
900 
901 	if (zfsvfs->z_fuid_replay)
902 		zfs_fuid_info_free(zfsvfs->z_fuid_replay);
903 
904 	zfsvfs->z_fuid_replay = NULL;
905 	VN_RELE(ZTOV(zp));
906 
907 	return (error);
908 }
909 
910 /*
911  * Callback vectors for replaying records
912  */
913 zil_replay_func_t *zfs_replay_vector[TX_MAX_TYPE] = {
914 	zfs_replay_error,	/* 0 no such transaction type */
915 	zfs_replay_create,	/* TX_CREATE */
916 	zfs_replay_create,	/* TX_MKDIR */
917 	zfs_replay_create,	/* TX_MKXATTR */
918 	zfs_replay_create,	/* TX_SYMLINK */
919 	zfs_replay_remove,	/* TX_REMOVE */
920 	zfs_replay_remove,	/* TX_RMDIR */
921 	zfs_replay_link,	/* TX_LINK */
922 	zfs_replay_rename,	/* TX_RENAME */
923 	zfs_replay_write,	/* TX_WRITE */
924 	zfs_replay_truncate,	/* TX_TRUNCATE */
925 	zfs_replay_setattr,	/* TX_SETATTR */
926 	zfs_replay_acl_v0,	/* TX_ACL_V0 */
927 	zfs_replay_acl,		/* TX_ACL */
928 	zfs_replay_create_acl,	/* TX_CREATE_ACL */
929 	zfs_replay_create,	/* TX_CREATE_ATTR */
930 	zfs_replay_create_acl,	/* TX_CREATE_ACL_ATTR */
931 	zfs_replay_create_acl,	/* TX_MKDIR_ACL */
932 	zfs_replay_create,	/* TX_MKDIR_ATTR */
933 	zfs_replay_create_acl,	/* TX_MKDIR_ACL_ATTR */
934 	zfs_replay_write2,	/* TX_WRITE2 */
935 };
936