mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 07:00:48 +00:00
cifs: make ipv6_connect take a TCP_Server_Info arg
Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
parent
bcf4b1063d
commit
d5c5605c27
@ -102,19 +102,16 @@ struct smb_vol {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static int ipv4_connect(struct TCP_Server_Info *server);
|
static int ipv4_connect(struct TCP_Server_Info *server);
|
||||||
static int ipv6_connect(struct sockaddr_in6 *psin_server,
|
static int ipv6_connect(struct TCP_Server_Info *server);
|
||||||
struct socket **csocket, bool noblocksnd);
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* cifs tcp session reconnection
|
|
||||||
*
|
|
||||||
* mark tcp session as reconnecting so temporarily locked
|
|
||||||
* mark all smb sessions as reconnecting for tcp session
|
|
||||||
* reconnect tcp session
|
|
||||||
* wake up waiters on reconnection? - (not needed currently)
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* cifs tcp session reconnection
|
||||||
|
*
|
||||||
|
* mark tcp session as reconnecting so temporarily locked
|
||||||
|
* mark all smb sessions as reconnecting for tcp session
|
||||||
|
* reconnect tcp session
|
||||||
|
* wake up waiters on reconnection? - (not needed currently)
|
||||||
|
*/
|
||||||
static int
|
static int
|
||||||
cifs_reconnect(struct TCP_Server_Info *server)
|
cifs_reconnect(struct TCP_Server_Info *server)
|
||||||
{
|
{
|
||||||
@ -183,8 +180,7 @@ cifs_reconnect(struct TCP_Server_Info *server)
|
|||||||
(server->tcpStatus != CifsGood)) {
|
(server->tcpStatus != CifsGood)) {
|
||||||
try_to_freeze();
|
try_to_freeze();
|
||||||
if (server->addr.sockAddr6.sin6_family == AF_INET6)
|
if (server->addr.sockAddr6.sin6_family == AF_INET6)
|
||||||
rc = ipv6_connect(&server->addr.sockAddr6,
|
rc = ipv6_connect(server);
|
||||||
&server->ssocket, server->noautotune);
|
|
||||||
else
|
else
|
||||||
rc = ipv4_connect(server);
|
rc = ipv4_connect(server);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
@ -1501,8 +1497,7 @@ cifs_get_tcp_session(struct smb_vol *volume_info)
|
|||||||
memcpy(&tcp_ses->addr.sockAddr6, sin_server6,
|
memcpy(&tcp_ses->addr.sockAddr6, sin_server6,
|
||||||
sizeof(struct sockaddr_in6));
|
sizeof(struct sockaddr_in6));
|
||||||
sin_server6->sin6_port = htons(volume_info->port);
|
sin_server6->sin6_port = htons(volume_info->port);
|
||||||
rc = ipv6_connect(sin_server6, &tcp_ses->ssocket,
|
rc = ipv6_connect(tcp_ses);
|
||||||
volume_info->noblocksnd);
|
|
||||||
} else {
|
} else {
|
||||||
memcpy(&tcp_ses->addr.sockAddr, sin_server,
|
memcpy(&tcp_ses->addr.sockAddr, sin_server,
|
||||||
sizeof(struct sockaddr_in));
|
sizeof(struct sockaddr_in));
|
||||||
@ -1875,79 +1870,81 @@ ipv4_connect(struct TCP_Server_Info *server)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
ipv6_connect(struct sockaddr_in6 *psin_server, struct socket **csocket,
|
ipv6_connect(struct TCP_Server_Info *server)
|
||||||
bool noblocksnd)
|
|
||||||
{
|
{
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
int connected = 0;
|
bool connected = false;
|
||||||
__be16 orig_port = 0;
|
__be16 orig_port = 0;
|
||||||
|
struct socket *socket = server->ssocket;
|
||||||
|
|
||||||
if (*csocket == NULL) {
|
if (socket == NULL) {
|
||||||
rc = sock_create_kern(PF_INET6, SOCK_STREAM,
|
rc = sock_create_kern(PF_INET6, SOCK_STREAM,
|
||||||
IPPROTO_TCP, csocket);
|
IPPROTO_TCP, &socket);
|
||||||
if (rc < 0) {
|
if (rc < 0) {
|
||||||
cERROR(1, ("Error %d creating ipv6 socket", rc));
|
cERROR(1, ("Error %d creating ipv6 socket", rc));
|
||||||
*csocket = NULL;
|
socket = NULL;
|
||||||
return rc;
|
return rc;
|
||||||
} else {
|
|
||||||
/* BB other socket options to set KEEPALIVE, NODELAY? */
|
|
||||||
cFYI(1, ("ipv6 Socket created"));
|
|
||||||
(*csocket)->sk->sk_allocation = GFP_NOFS;
|
|
||||||
cifs_reclassify_socket6(*csocket);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* BB other socket options to set KEEPALIVE, NODELAY? */
|
||||||
|
cFYI(1, ("ipv6 Socket created"));
|
||||||
|
server->ssocket = socket;
|
||||||
|
socket->sk->sk_allocation = GFP_NOFS;
|
||||||
|
cifs_reclassify_socket6(socket);
|
||||||
}
|
}
|
||||||
|
|
||||||
psin_server->sin6_family = AF_INET6;
|
/* user overrode default port */
|
||||||
|
if (server->addr.sockAddr6.sin6_port) {
|
||||||
if (psin_server->sin6_port) { /* user overrode default port */
|
rc = socket->ops->connect(socket,
|
||||||
rc = (*csocket)->ops->connect(*csocket,
|
(struct sockaddr *) &server->addr.sockAddr6,
|
||||||
(struct sockaddr *) psin_server,
|
|
||||||
sizeof(struct sockaddr_in6), 0);
|
sizeof(struct sockaddr_in6), 0);
|
||||||
if (rc >= 0)
|
if (rc >= 0)
|
||||||
connected = 1;
|
connected = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!connected) {
|
if (!connected) {
|
||||||
/* save original port so we can retry user specified port
|
/* save original port so we can retry user specified port
|
||||||
later if fall back ports fail this time */
|
later if fall back ports fail this time */
|
||||||
|
|
||||||
orig_port = psin_server->sin6_port;
|
orig_port = server->addr.sockAddr6.sin6_port;
|
||||||
/* do not retry on the same port we just failed on */
|
/* do not retry on the same port we just failed on */
|
||||||
if (psin_server->sin6_port != htons(CIFS_PORT)) {
|
if (server->addr.sockAddr6.sin6_port != htons(CIFS_PORT)) {
|
||||||
psin_server->sin6_port = htons(CIFS_PORT);
|
server->addr.sockAddr6.sin6_port = htons(CIFS_PORT);
|
||||||
|
rc = socket->ops->connect(socket, (struct sockaddr *)
|
||||||
rc = (*csocket)->ops->connect(*csocket,
|
&server->addr.sockAddr6,
|
||||||
(struct sockaddr *) psin_server,
|
|
||||||
sizeof(struct sockaddr_in6), 0);
|
sizeof(struct sockaddr_in6), 0);
|
||||||
if (rc >= 0)
|
if (rc >= 0)
|
||||||
connected = 1;
|
connected = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!connected) {
|
if (!connected) {
|
||||||
psin_server->sin6_port = htons(RFC1001_PORT);
|
server->addr.sockAddr6.sin6_port = htons(RFC1001_PORT);
|
||||||
rc = (*csocket)->ops->connect(*csocket, (struct sockaddr *)
|
rc = socket->ops->connect(socket, (struct sockaddr *)
|
||||||
psin_server, sizeof(struct sockaddr_in6), 0);
|
&server->addr.sockAddr6,
|
||||||
|
sizeof(struct sockaddr_in6), 0);
|
||||||
if (rc >= 0)
|
if (rc >= 0)
|
||||||
connected = 1;
|
connected = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* give up here - unless we want to retry on different
|
/* give up here - unless we want to retry on different
|
||||||
protocol families some day */
|
protocol families some day */
|
||||||
if (!connected) {
|
if (!connected) {
|
||||||
if (orig_port)
|
if (orig_port)
|
||||||
psin_server->sin6_port = orig_port;
|
server->addr.sockAddr6.sin6_port = orig_port;
|
||||||
cFYI(1, ("Error %d connecting to server via ipv6", rc));
|
cFYI(1, ("Error %d connecting to server via ipv6", rc));
|
||||||
sock_release(*csocket);
|
sock_release(socket);
|
||||||
*csocket = NULL;
|
server->ssocket = NULL;
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
/* Eventually check for other socket options to change from
|
|
||||||
the default. sock_setsockopt not used because it expects
|
|
||||||
user space buffer */
|
|
||||||
(*csocket)->sk->sk_rcvtimeo = 7 * HZ;
|
|
||||||
if (!noblocksnd)
|
|
||||||
(*csocket)->sk->sk_sndtimeo = 3 * HZ;
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Eventually check for other socket options to change from
|
||||||
|
* the default. sock_setsockopt not used because it expects
|
||||||
|
* user space buffer
|
||||||
|
*/
|
||||||
|
socket->sk->sk_rcvtimeo = 7 * HZ;
|
||||||
|
socket->sk->sk_sndtimeo = 3 * HZ;
|
||||||
|
server->ssocket = socket;
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user