cifs: protect updating server->dstaddr with a spinlock
authorRonnie Sahlberg <lsahlber@redhat.com>
Tue, 21 Apr 2020 02:37:39 +0000 (12:37 +1000)
committerSteve French <stfrench@microsoft.com>
Tue, 21 Apr 2020 14:57:56 +0000 (09:57 -0500)
We use a spinlock while we are reading and accessing the destination address for a server.
We need to also use this spinlock to protect when we are modifying this address from
reconn_set_ipaddr().

Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/cifs/connect.c

index 95b3ab0..63830f2 100644 (file)
@@ -375,8 +375,10 @@ static int reconn_set_ipaddr(struct TCP_Server_Info *server)
                return rc;
        }
 
+       spin_lock(&cifs_tcp_ses_lock);
        rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr,
                                  strlen(ipaddr));
+       spin_unlock(&cifs_tcp_ses_lock);
        kfree(ipaddr);
 
        return !rc ? -1 : 0;