5946 zfs_ioc_space_snaps must check that firstsnap and lastsnap refer to snapshots
Author: Andriy Gapon <avg@freebsd.org> Reviewed by: Steven Hartland <killing@multiplay.co.uk> Reviewed by: Matthew Ahrens <mahrens@delphix.com> Approved by: Gordon Ross <gordon.ross@nexenta.com> illumos/illumos-gate@24218bebb4
This commit is contained in:
parent
105c70db42
commit
4d4f7782a9
@ -821,6 +821,10 @@ dmu_send_estimate(dsl_dataset_t *ds, dsl_dataset_t *fromds, uint64_t *sizep)
|
||||
if (!ds->ds_is_snapshot)
|
||||
return (SET_ERROR(EINVAL));
|
||||
|
||||
/* fromsnap, if provided, must be a snapshot */
|
||||
if (fromds != NULL && !fromds->ds_is_snapshot)
|
||||
return (SET_ERROR(EINVAL));
|
||||
|
||||
/*
|
||||
* fromsnap must be an earlier snapshot from the same fs as tosnap,
|
||||
* or the origin's fs.
|
||||
|
@ -5258,11 +5258,19 @@ zfs_ioc_space_snaps(const char *lastsnap, nvlist_t *innvl, nvlist_t *outnvl)
|
||||
return (error);
|
||||
|
||||
error = dsl_dataset_hold(dp, lastsnap, FTAG, &new);
|
||||
if (error == 0 && !new->ds_is_snapshot) {
|
||||
dsl_dataset_rele(new, FTAG);
|
||||
error = SET_ERROR(EINVAL);
|
||||
}
|
||||
if (error != 0) {
|
||||
dsl_pool_rele(dp, FTAG);
|
||||
return (error);
|
||||
}
|
||||
error = dsl_dataset_hold(dp, firstsnap, FTAG, &old);
|
||||
if (error == 0 && !old->ds_is_snapshot) {
|
||||
dsl_dataset_rele(old, FTAG);
|
||||
error = SET_ERROR(EINVAL);
|
||||
}
|
||||
if (error != 0) {
|
||||
dsl_dataset_rele(new, FTAG);
|
||||
dsl_pool_rele(dp, FTAG);
|
||||
|
Loading…
Reference in New Issue
Block a user