From: Nicholas Bellinger Date: Thu, 23 Aug 2012 01:45:11 +0000 (-0700) Subject: target/iblock: Use match_strlcpy for Opt_udev_path string assignment X-Git-Tag: next-20120824~67^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2e0bf0109c786b4734dc1508c8791ad48945e88c;p=karo-tx-linux.git target/iblock: Use match_strlcpy for Opt_udev_path string assignment Following commit dbc6e0222 from Al Viro for fileio, go ahead and make Opt_udev_path within iblock_set_configfs_dev_params use match_strlcpy instead of the match_strdup -> snprintf -> kfree equivalent. Reported-by: Al Viro Cc: Al Viro Signed-off-by: Nicholas Bellinger --- diff --git a/drivers/target/target_core_iblock.c b/drivers/target/target_core_iblock.c index 76db75e836ed..0cd1a1ca1a5d 100644 --- a/drivers/target/target_core_iblock.c +++ b/drivers/target/target_core_iblock.c @@ -441,14 +441,11 @@ static ssize_t iblock_set_configfs_dev_params(struct se_hba *hba, ret = -EEXIST; goto out; } - arg_p = match_strdup(&args[0]); - if (!arg_p) { - ret = -ENOMEM; + if (match_strlcpy(ib_dev->ibd_udev_path, &args[0], + SE_UDEV_PATH_LEN) == 0) { + ret = -EINVAL; break; } - snprintf(ib_dev->ibd_udev_path, SE_UDEV_PATH_LEN, - "%s", arg_p); - kfree(arg_p); pr_debug("IBLOCK: Referencing UDEV path: %s\n", ib_dev->ibd_udev_path); ib_dev->ibd_flags |= IBDF_HAS_UDEV_PATH;