未验证 提交 743cd0c6 编写于 作者: O openeuler-ci-bot 提交者: Gitee

!1467 Fix null-ptr-deref while calling getpeername

Merge Pull Request from: @ci-robot 
 
PR sync from: Zhong Jinghua <zhongjinghua@huawei.com>
https://mailweb.openeuler.org/hyperkitty/list/kernel@openeuler.org/message/LJ33GFFSQF355SJLQXOUOLZRUVMBCUJ5/ 
Fix null-ptr-deref while calling getpeername

Mike Christie (1):
  scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername()

Zhong Jinghua (1):
  scsi: iscsi_tcp: Check that sock is valid before iscsi_set_param()


-- 
2.31.1
 
https://gitee.com/openeuler/kernel/issues/I7L8DZ?from=project-issue
https://gitee.com/openeuler/kernel/issues/I6I8YD 
 
Link:https://gitee.com/openeuler/kernel/pulls/1467 

Reviewed-by: Yu Kuai <yukuai3@huawei.com> 
Reviewed-by: Jialin Zhang <zhangjialin11@huawei.com> 
Signed-off-by: Jialin Zhang <zhangjialin11@huawei.com> 
...@@ -566,6 +566,8 @@ iscsi_sw_tcp_conn_create(struct iscsi_cls_session *cls_session, ...@@ -566,6 +566,8 @@ iscsi_sw_tcp_conn_create(struct iscsi_cls_session *cls_session,
tcp_conn = conn->dd_data; tcp_conn = conn->dd_data;
tcp_sw_conn = tcp_conn->dd_data; tcp_sw_conn = tcp_conn->dd_data;
mutex_init(&tcp_sw_conn->sock_lock);
tfm = crypto_alloc_ahash("crc32c", 0, CRYPTO_ALG_ASYNC); tfm = crypto_alloc_ahash("crc32c", 0, CRYPTO_ALG_ASYNC);
if (IS_ERR(tfm)) if (IS_ERR(tfm))
goto free_conn; goto free_conn;
...@@ -600,11 +602,15 @@ iscsi_sw_tcp_conn_create(struct iscsi_cls_session *cls_session, ...@@ -600,11 +602,15 @@ iscsi_sw_tcp_conn_create(struct iscsi_cls_session *cls_session,
static void iscsi_sw_tcp_release_conn(struct iscsi_conn *conn) static void iscsi_sw_tcp_release_conn(struct iscsi_conn *conn)
{ {
struct iscsi_session *session = conn->session;
struct iscsi_tcp_conn *tcp_conn = conn->dd_data; struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
struct socket *sock = tcp_sw_conn->sock; struct socket *sock = tcp_sw_conn->sock;
/*
* The iscsi transport class will make sure we are not called in
* parallel with start, stop, bind and destroys. However, this can be
* called twice if userspace does a stop then a destroy.
*/
if (!sock) if (!sock)
return; return;
...@@ -612,9 +618,9 @@ static void iscsi_sw_tcp_release_conn(struct iscsi_conn *conn) ...@@ -612,9 +618,9 @@ static void iscsi_sw_tcp_release_conn(struct iscsi_conn *conn)
iscsi_sw_tcp_conn_restore_callbacks(conn); iscsi_sw_tcp_conn_restore_callbacks(conn);
sock_put(sock->sk); sock_put(sock->sk);
spin_lock_bh(&session->frwd_lock); mutex_lock(&tcp_sw_conn->sock_lock);
tcp_sw_conn->sock = NULL; tcp_sw_conn->sock = NULL;
spin_unlock_bh(&session->frwd_lock); mutex_unlock(&tcp_sw_conn->sock_lock);
sockfd_put(sock); sockfd_put(sock);
} }
...@@ -666,7 +672,6 @@ iscsi_sw_tcp_conn_bind(struct iscsi_cls_session *cls_session, ...@@ -666,7 +672,6 @@ iscsi_sw_tcp_conn_bind(struct iscsi_cls_session *cls_session,
struct iscsi_cls_conn *cls_conn, uint64_t transport_eph, struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
int is_leading) int is_leading)
{ {
struct iscsi_session *session = cls_session->dd_data;
struct iscsi_conn *conn = cls_conn->dd_data; struct iscsi_conn *conn = cls_conn->dd_data;
struct iscsi_tcp_conn *tcp_conn = conn->dd_data; struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
...@@ -686,10 +691,10 @@ iscsi_sw_tcp_conn_bind(struct iscsi_cls_session *cls_session, ...@@ -686,10 +691,10 @@ iscsi_sw_tcp_conn_bind(struct iscsi_cls_session *cls_session,
if (err) if (err)
goto free_socket; goto free_socket;
spin_lock_bh(&session->frwd_lock); mutex_lock(&tcp_sw_conn->sock_lock);
/* bind iSCSI connection and socket */ /* bind iSCSI connection and socket */
tcp_sw_conn->sock = sock; tcp_sw_conn->sock = sock;
spin_unlock_bh(&session->frwd_lock); mutex_unlock(&tcp_sw_conn->sock_lock);
/* setup Socket parameters */ /* setup Socket parameters */
sk = sock->sk; sk = sock->sk;
...@@ -724,9 +729,15 @@ static int iscsi_sw_tcp_conn_set_param(struct iscsi_cls_conn *cls_conn, ...@@ -724,9 +729,15 @@ static int iscsi_sw_tcp_conn_set_param(struct iscsi_cls_conn *cls_conn,
iscsi_set_param(cls_conn, param, buf, buflen); iscsi_set_param(cls_conn, param, buf, buflen);
break; break;
case ISCSI_PARAM_DATADGST_EN: case ISCSI_PARAM_DATADGST_EN:
mutex_lock(&tcp_sw_conn->sock_lock);
if (!tcp_sw_conn->sock) {
mutex_unlock(&tcp_sw_conn->sock_lock);
return -ENOTCONN;
}
iscsi_set_param(cls_conn, param, buf, buflen); iscsi_set_param(cls_conn, param, buf, buflen);
tcp_sw_conn->sendpage = conn->datadgst_en ? tcp_sw_conn->sendpage = conn->datadgst_en ?
sock_no_sendpage : tcp_sw_conn->sock->ops->sendpage; sock_no_sendpage : tcp_sw_conn->sock->ops->sendpage;
mutex_unlock(&tcp_sw_conn->sock_lock);
break; break;
case ISCSI_PARAM_MAX_R2T: case ISCSI_PARAM_MAX_R2T:
return iscsi_tcp_set_max_r2t(conn, buf); return iscsi_tcp_set_max_r2t(conn, buf);
...@@ -741,8 +752,8 @@ static int iscsi_sw_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn, ...@@ -741,8 +752,8 @@ static int iscsi_sw_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
enum iscsi_param param, char *buf) enum iscsi_param param, char *buf)
{ {
struct iscsi_conn *conn = cls_conn->dd_data; struct iscsi_conn *conn = cls_conn->dd_data;
struct iscsi_tcp_conn *tcp_conn = conn->dd_data; struct iscsi_sw_tcp_conn *tcp_sw_conn;
struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data; struct iscsi_tcp_conn *tcp_conn;
struct sockaddr_in6 addr; struct sockaddr_in6 addr;
struct socket *sock; struct socket *sock;
int rc; int rc;
...@@ -752,21 +763,36 @@ static int iscsi_sw_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn, ...@@ -752,21 +763,36 @@ static int iscsi_sw_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
case ISCSI_PARAM_CONN_ADDRESS: case ISCSI_PARAM_CONN_ADDRESS:
case ISCSI_PARAM_LOCAL_PORT: case ISCSI_PARAM_LOCAL_PORT:
spin_lock_bh(&conn->session->frwd_lock); spin_lock_bh(&conn->session->frwd_lock);
if (!tcp_sw_conn || !tcp_sw_conn->sock) { if (!conn->session->leadconn) {
spin_unlock_bh(&conn->session->frwd_lock); spin_unlock_bh(&conn->session->frwd_lock);
return -ENOTCONN; return -ENOTCONN;
} }
sock = tcp_sw_conn->sock; /*
sock_hold(sock->sk); * The conn has been setup and bound, so just grab a ref
* incase a destroy runs while we are in the net layer.
*/
iscsi_get_conn(conn->cls_conn);
spin_unlock_bh(&conn->session->frwd_lock); spin_unlock_bh(&conn->session->frwd_lock);
tcp_conn = conn->dd_data;
tcp_sw_conn = tcp_conn->dd_data;
mutex_lock(&tcp_sw_conn->sock_lock);
sock = tcp_sw_conn->sock;
if (!sock) {
rc = -ENOTCONN;
goto sock_unlock;
}
if (param == ISCSI_PARAM_LOCAL_PORT) if (param == ISCSI_PARAM_LOCAL_PORT)
rc = kernel_getsockname(sock, rc = kernel_getsockname(sock,
(struct sockaddr *)&addr); (struct sockaddr *)&addr);
else else
rc = kernel_getpeername(sock, rc = kernel_getpeername(sock,
(struct sockaddr *)&addr); (struct sockaddr *)&addr);
sock_put(sock->sk); sock_unlock:
mutex_unlock(&tcp_sw_conn->sock_lock);
iscsi_put_conn(conn->cls_conn);
if (rc < 0) if (rc < 0)
return rc; return rc;
...@@ -805,17 +831,21 @@ static int iscsi_sw_tcp_host_get_param(struct Scsi_Host *shost, ...@@ -805,17 +831,21 @@ static int iscsi_sw_tcp_host_get_param(struct Scsi_Host *shost,
} }
tcp_conn = conn->dd_data; tcp_conn = conn->dd_data;
tcp_sw_conn = tcp_conn->dd_data; tcp_sw_conn = tcp_conn->dd_data;
sock = tcp_sw_conn->sock; /*
if (!sock) { * The conn has been setup and bound, so just grab a ref
spin_unlock_bh(&session->frwd_lock); * incase a destroy runs while we are in the net layer.
return -ENOTCONN; */
} iscsi_get_conn(conn->cls_conn);
sock_hold(sock->sk);
spin_unlock_bh(&session->frwd_lock); spin_unlock_bh(&session->frwd_lock);
rc = kernel_getsockname(sock, mutex_lock(&tcp_sw_conn->sock_lock);
(struct sockaddr *)&addr); sock = tcp_sw_conn->sock;
sock_put(sock->sk); if (!sock)
rc = -ENOTCONN;
else
rc = kernel_getsockname(sock, (struct sockaddr *)&addr);
mutex_unlock(&tcp_sw_conn->sock_lock);
iscsi_put_conn(conn->cls_conn);
if (rc < 0) if (rc < 0)
return rc; return rc;
......
...@@ -28,6 +28,8 @@ struct iscsi_sw_tcp_send { ...@@ -28,6 +28,8 @@ struct iscsi_sw_tcp_send {
struct iscsi_sw_tcp_conn { struct iscsi_sw_tcp_conn {
struct socket *sock; struct socket *sock;
/* Taken when accessing the sock from the netlink/sysfs interface */
struct mutex sock_lock;
struct iscsi_sw_tcp_send out; struct iscsi_sw_tcp_send out;
/* old values for socket callbacks */ /* old values for socket callbacks */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册