The target driver prevents the users from changing the database root directory if a target module like ib_srpt has already been loaded during boot. Let the users set their preferred root directory by passing it as a module parameter. This, combined with the modprobe.d's "options" command, will mitigate the issue because the parameter will be automatically passed every time the target_core_mod module is inserted into the kernel; whether directly (using modprobe) or because another module being loaded depends on it. If the directory cannot be opened, the target driver will print an error and fall back to its default (/etc/target) Signed-off-by: Maurizio Lombardi <mlombard@xxxxxxxxxx> --- drivers/target/target_core_configfs.c | 29 ++++++++++++++++++--------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/drivers/target/target_core_configfs.c b/drivers/target/target_core_configfs.c index 274ffb6b83a1..c0fc6312aa20 100644 --- a/drivers/target/target_core_configfs.c +++ b/drivers/target/target_core_configfs.c @@ -100,7 +100,10 @@ static ssize_t target_core_item_version_show(struct config_item *item, CONFIGFS_ATTR_RO(target_core_item_, version); char db_root[DB_ROOT_LEN] = DB_ROOT_DEFAULT; -static char db_root_stage[DB_ROOT_LEN]; +static char db_root_stage[DB_ROOT_LEN] = {0}; + +module_param_string(dbroot, db_root_stage, DB_ROOT_LEN, 0); +MODULE_PARM_DESC(dbroot, "Target database root directory (def=/etc/target)"); static ssize_t target_core_item_dbroot_show(struct config_item *item, char *page) @@ -3507,25 +3510,25 @@ void target_setup_backend_cits(struct target_backend *tb) target_core_setup_dev_stat_cit(tb); } -static void target_init_dbroot(void) +static int target_init_dbroot(char *path) { struct file *fp; - snprintf(db_root_stage, DB_ROOT_LEN, DB_ROOT_PREFERRED); - fp = filp_open(db_root_stage, O_RDONLY, 0); + fp = filp_open(path, O_RDONLY, 0); if (IS_ERR(fp)) { - pr_err("db_root: cannot open: %s\n", db_root_stage); - return; + pr_err("db_root: cannot open: %s\n", path); + return -EINVAL; } if (!S_ISDIR(file_inode(fp)->i_mode)) { filp_close(fp, NULL); - pr_err("db_root: not a valid directory: %s\n", db_root_stage); - return; + pr_err("db_root: not a valid directory: %s\n", path); + return -EINVAL; } filp_close(fp, NULL); - strncpy(db_root, db_root_stage, DB_ROOT_LEN); + strlcpy(db_root, path, DB_ROOT_LEN); pr_debug("Target_Core_ConfigFS: db_root set to %s\n", db_root); + return 0; } static int __init target_core_init_configfs(void) @@ -3608,7 +3611,13 @@ static int __init target_core_init_configfs(void) if (ret < 0) goto out; - target_init_dbroot(); + if (db_root_stage[0]) { + ret = target_init_dbroot(db_root_stage); + if (ret < 0) + target_init_dbroot(DB_ROOT_PREFERRED); + } else { + target_init_dbroot(DB_ROOT_PREFERRED); + } return 0; -- 2.27.0