mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 11:19:32 +03:00
Illumos 5909 - ensure that shared snap names don't become too long after promotion
5909 ensure that shared snap names don't become too long after promotion Reviewed by: Matthew Ahrens <mahrens@delphix.com> Reviewed by: George Wilson <george@delphix.com> Approved by: Dan McDonald <danmcd@omniti.com> References: https://www.illumos.org/issues/5909 https://github.com/illumos/illumos-gate/commit/cb5842f Ported-by: Andriy Gapon <avg@FreeBSD.org> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #3550
This commit is contained in:
parent
cf50a2b08f
commit
fec417097b
@ -2131,12 +2131,14 @@ dsl_dataset_promote_check(void *arg, dmu_tx_t *tx)
|
||||
int err;
|
||||
uint64_t unused;
|
||||
uint64_t ss_mv_cnt;
|
||||
size_t max_snap_len;
|
||||
|
||||
err = promote_hold(ddpa, dp, FTAG);
|
||||
if (err != 0)
|
||||
return (err);
|
||||
|
||||
hds = ddpa->ddpa_clone;
|
||||
max_snap_len = MAXNAMELEN - strlen(ddpa->ddpa_clonename) - 1;
|
||||
|
||||
if (dsl_dataset_phys(hds)->ds_flags & DS_FLAG_NOPROMOTE) {
|
||||
promote_rele(ddpa, FTAG);
|
||||
@ -2200,6 +2202,10 @@ dsl_dataset_promote_check(void *arg, dmu_tx_t *tx)
|
||||
|
||||
/* Check that the snapshot name does not conflict */
|
||||
VERIFY0(dsl_dataset_get_snapname(ds));
|
||||
if (strlen(ds->ds_snapname) >= max_snap_len) {
|
||||
err = SET_ERROR(ENAMETOOLONG);
|
||||
goto out;
|
||||
}
|
||||
err = dsl_dataset_snap_lookup(hds, ds->ds_snapname, &val);
|
||||
if (err == 0) {
|
||||
(void) strcpy(ddpa->err_ds, snap->ds->ds_snapname);
|
||||
|
Loading…
Reference in New Issue
Block a user