Fix null pointer dereferences in PAM
Coverity caught these. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Richard Yao <richard.yao@alumni.stonybrook.edu> Closes #13889
This commit is contained in:
parent
39a39b8ab9
commit
12b859c970
|
@ -496,7 +496,6 @@ zfs_key_config_get_dataset(zfs_key_config_t *config)
|
||||||
if (zhp == NULL) {
|
if (zhp == NULL) {
|
||||||
pam_syslog(NULL, LOG_ERR, "dataset %s not found",
|
pam_syslog(NULL, LOG_ERR, "dataset %s not found",
|
||||||
config->homes_prefix);
|
config->homes_prefix);
|
||||||
zfs_close(zhp);
|
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -508,6 +507,10 @@ zfs_key_config_get_dataset(zfs_key_config_t *config)
|
||||||
return (dsname);
|
return (dsname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (config->homes_prefix == NULL) {
|
||||||
|
return (NULL);
|
||||||
|
}
|
||||||
|
|
||||||
size_t len = ZFS_MAX_DATASET_NAME_LEN;
|
size_t len = ZFS_MAX_DATASET_NAME_LEN;
|
||||||
size_t total_len = strlen(config->homes_prefix) + 1
|
size_t total_len = strlen(config->homes_prefix) + 1
|
||||||
+ strlen(config->username);
|
+ strlen(config->username);
|
||||||
|
|
Loading…
Reference in New Issue