RDMA/rtrs: Do not allow sessname to contain special symbols / and .
authorMd Haris Iqbal <haris.iqbal@ionos.com>
Wed, 22 Sep 2021 12:53:32 +0000 (14:53 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:23:54 +0000 (14:23 +0200)
[ Upstream commit dea7bb3ad3e08f96815330f88a62c24d7a9dacae ]

Allowing these characters in sessname can lead to unexpected results,
particularly because / is used as a separator between files in a path, and
. points to the current directory.

Link: https://lore.kernel.org/r/20210922125333.351454-7-haris.iqbal@ionos.com
Signed-off-by: Md Haris Iqbal <haris.iqbal@ionos.com>
Reviewed-by: Gioh Kim <gi-oh.kim@ionos.com>
Reviewed-by: Aleksei Marov <aleksei.marov@ionos.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/infiniband/ulp/rtrs/rtrs-clt.c
drivers/infiniband/ulp/rtrs/rtrs-srv.c

index a23438b..be96701 100644 (file)
@@ -2790,6 +2790,12 @@ struct rtrs_clt *rtrs_clt_open(struct rtrs_clt_ops *ops,
        struct rtrs_clt *clt;
        int err, i;
 
+       if (strchr(sessname, '/') || strchr(sessname, '.')) {
+               pr_err("sessname cannot contain / and .\n");
+               err = -EINVAL;
+               goto out;
+       }
+
        clt = alloc_clt(sessname, paths_num, port, pdu_sz, ops->priv,
                        ops->link_ev,
                        reconnect_delay_sec,
index 078a1cb..7df71f8 100644 (file)
@@ -803,6 +803,11 @@ static int process_info_req(struct rtrs_srv_con *con,
                return err;
        }
 
+       if (strchr(msg->sessname, '/') || strchr(msg->sessname, '.')) {
+               rtrs_err(s, "sessname cannot contain / and .\n");
+               return -EINVAL;
+       }
+
        if (exist_sessname(sess->srv->ctx,
                           msg->sessname, &sess->srv->paths_uuid)) {
                rtrs_err(s, "sessname is duplicated: %s\n", msg->sessname);