diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-24 23:23:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-24 23:23:54 -0500 |
commit | c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 (patch) | |
tree | c79b7ddc475fc034d0e944c2a561a3bd5b2d5e9d | |
parent | 842d9b2c6a9189c8954d1d03dadde7403992baed (diff) | |
parent | f1d0c998653f1eeec60ee6420e550135b62dbab4 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6:
Make CIFS mount work in a container.
CIFS: Remove pointless variable assignment in cifs_dfs_do_automount()
-rw-r--r-- | fs/cifs/cifs_dfs_ref.c | 1 | ||||
-rw-r--r-- | fs/cifs/cifsglob.h | 33 | ||||
-rw-r--r-- | fs/cifs/connect.c | 12 |
3 files changed, 43 insertions, 3 deletions
diff --git a/fs/cifs/cifs_dfs_ref.c b/fs/cifs/cifs_dfs_ref.c index 7ed36536e754..f1c68629f277 100644 --- a/fs/cifs/cifs_dfs_ref.c +++ b/fs/cifs/cifs_dfs_ref.c | |||
@@ -297,7 +297,6 @@ static struct vfsmount *cifs_dfs_do_automount(struct dentry *mntpt) | |||
297 | 297 | ||
298 | cifs_sb = CIFS_SB(mntpt->d_inode->i_sb); | 298 | cifs_sb = CIFS_SB(mntpt->d_inode->i_sb); |
299 | tlink = cifs_sb_tlink(cifs_sb); | 299 | tlink = cifs_sb_tlink(cifs_sb); |
300 | mnt = ERR_PTR(-EINVAL); | ||
301 | if (IS_ERR(tlink)) { | 300 | if (IS_ERR(tlink)) { |
302 | mnt = ERR_CAST(tlink); | 301 | mnt = ERR_CAST(tlink); |
303 | goto free_full_path; | 302 | goto free_full_path; |
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 5bfb75346cb0..edd5b29b53c9 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h | |||
@@ -166,6 +166,9 @@ struct TCP_Server_Info { | |||
166 | struct socket *ssocket; | 166 | struct socket *ssocket; |
167 | struct sockaddr_storage dstaddr; | 167 | struct sockaddr_storage dstaddr; |
168 | struct sockaddr_storage srcaddr; /* locally bind to this IP */ | 168 | struct sockaddr_storage srcaddr; /* locally bind to this IP */ |
169 | #ifdef CONFIG_NET_NS | ||
170 | struct net *net; | ||
171 | #endif | ||
169 | wait_queue_head_t response_q; | 172 | wait_queue_head_t response_q; |
170 | wait_queue_head_t request_q; /* if more than maxmpx to srvr must block*/ | 173 | wait_queue_head_t request_q; /* if more than maxmpx to srvr must block*/ |
171 | struct list_head pending_mid_q; | 174 | struct list_head pending_mid_q; |
@@ -217,6 +220,36 @@ struct TCP_Server_Info { | |||
217 | }; | 220 | }; |
218 | 221 | ||
219 | /* | 222 | /* |
223 | * Macros to allow the TCP_Server_Info->net field and related code to drop out | ||
224 | * when CONFIG_NET_NS isn't set. | ||
225 | */ | ||
226 | |||
227 | #ifdef CONFIG_NET_NS | ||
228 | |||
229 | static inline struct net *cifs_net_ns(struct TCP_Server_Info *srv) | ||
230 | { | ||
231 | return srv->net; | ||
232 | } | ||
233 | |||
234 | static inline void cifs_set_net_ns(struct TCP_Server_Info *srv, struct net *net) | ||
235 | { | ||
236 | srv->net = net; | ||
237 | } | ||
238 | |||
239 | #else | ||
240 | |||
241 | static inline struct net *cifs_net_ns(struct TCP_Server_Info *srv) | ||
242 | { | ||
243 | return &init_net; | ||
244 | } | ||
245 | |||
246 | static inline void cifs_set_net_ns(struct TCP_Server_Info *srv, struct net *net) | ||
247 | { | ||
248 | } | ||
249 | |||
250 | #endif | ||
251 | |||
252 | /* | ||
220 | * Session structure. One of these for each uid session with a particular host | 253 | * Session structure. One of these for each uid session with a particular host |
221 | */ | 254 | */ |
222 | struct cifsSesInfo { | 255 | struct cifsSesInfo { |
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 18d3c7724d6e..0cc3b81c2e84 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
@@ -1568,6 +1568,9 @@ cifs_find_tcp_session(struct sockaddr *addr, struct smb_vol *vol) | |||
1568 | 1568 | ||
1569 | spin_lock(&cifs_tcp_ses_lock); | 1569 | spin_lock(&cifs_tcp_ses_lock); |
1570 | list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { | 1570 | list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { |
1571 | if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns)) | ||
1572 | continue; | ||
1573 | |||
1571 | if (!match_address(server, addr, | 1574 | if (!match_address(server, addr, |
1572 | (struct sockaddr *)&vol->srcaddr)) | 1575 | (struct sockaddr *)&vol->srcaddr)) |
1573 | continue; | 1576 | continue; |
@@ -1598,6 +1601,8 @@ cifs_put_tcp_session(struct TCP_Server_Info *server) | |||
1598 | return; | 1601 | return; |
1599 | } | 1602 | } |
1600 | 1603 | ||
1604 | put_net(cifs_net_ns(server)); | ||
1605 | |||
1601 | list_del_init(&server->tcp_ses_list); | 1606 | list_del_init(&server->tcp_ses_list); |
1602 | spin_unlock(&cifs_tcp_ses_lock); | 1607 | spin_unlock(&cifs_tcp_ses_lock); |
1603 | 1608 | ||
@@ -1672,6 +1677,7 @@ cifs_get_tcp_session(struct smb_vol *volume_info) | |||
1672 | goto out_err; | 1677 | goto out_err; |
1673 | } | 1678 | } |
1674 | 1679 | ||
1680 | cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns)); | ||
1675 | tcp_ses->hostname = extract_hostname(volume_info->UNC); | 1681 | tcp_ses->hostname = extract_hostname(volume_info->UNC); |
1676 | if (IS_ERR(tcp_ses->hostname)) { | 1682 | if (IS_ERR(tcp_ses->hostname)) { |
1677 | rc = PTR_ERR(tcp_ses->hostname); | 1683 | rc = PTR_ERR(tcp_ses->hostname); |
@@ -1752,6 +1758,8 @@ cifs_get_tcp_session(struct smb_vol *volume_info) | |||
1752 | out_err_crypto_release: | 1758 | out_err_crypto_release: |
1753 | cifs_crypto_shash_release(tcp_ses); | 1759 | cifs_crypto_shash_release(tcp_ses); |
1754 | 1760 | ||
1761 | put_net(cifs_net_ns(tcp_ses)); | ||
1762 | |||
1755 | out_err: | 1763 | out_err: |
1756 | if (tcp_ses) { | 1764 | if (tcp_ses) { |
1757 | if (!IS_ERR(tcp_ses->hostname)) | 1765 | if (!IS_ERR(tcp_ses->hostname)) |
@@ -2263,8 +2271,8 @@ generic_ip_connect(struct TCP_Server_Info *server) | |||
2263 | } | 2271 | } |
2264 | 2272 | ||
2265 | if (socket == NULL) { | 2273 | if (socket == NULL) { |
2266 | rc = sock_create_kern(sfamily, SOCK_STREAM, | 2274 | rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM, |
2267 | IPPROTO_TCP, &socket); | 2275 | IPPROTO_TCP, &socket, 1); |
2268 | if (rc < 0) { | 2276 | if (rc < 0) { |
2269 | cERROR(1, "Error %d creating socket", rc); | 2277 | cERROR(1, "Error %d creating socket", rc); |
2270 | server->ssocket = NULL; | 2278 | server->ssocket = NULL; |