Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/connect.c |
| 3 | * |
Steve French | 1080ef7 | 2011-02-24 18:07:19 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2011 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU Lesser General Public License as published |
| 9 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 15 | * the GNU Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public License |
| 18 | * along with this library; if not, write to the Free Software |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/net.h> |
| 23 | #include <linux/string.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 24 | #include <linux/sched/signal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/list.h> |
| 26 | #include <linux/wait.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/pagemap.h> |
| 29 | #include <linux/ctype.h> |
| 30 | #include <linux/utsname.h> |
| 31 | #include <linux/mempool.h> |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 32 | #include <linux/delay.h> |
Steve French | f191401 | 2005-08-18 09:37:34 -0700 | [diff] [blame] | 33 | #include <linux/completion.h> |
Igor Mammedov | aaf737a | 2007-04-03 19:16:43 +0000 | [diff] [blame] | 34 | #include <linux/kthread.h> |
Steve French | 0ae0efa | 2005-10-10 10:57:19 -0700 | [diff] [blame] | 35 | #include <linux/pagevec.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 36 | #include <linux/freezer.h> |
Igor Mammedov | 5c2503a | 2009-04-21 19:31:05 +0400 | [diff] [blame] | 37 | #include <linux/namei.h> |
Andrew Lunn | c6e970a | 2017-03-28 23:45:06 +0200 | [diff] [blame] | 38 | #include <linux/uuid.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 39 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <asm/processor.h> |
Jeff Layton | 50b64e3 | 2009-06-02 06:55:20 -0400 | [diff] [blame] | 41 | #include <linux/inet.h> |
Paul Gortmaker | 143cb49 | 2011-07-01 14:23:34 -0400 | [diff] [blame] | 42 | #include <linux/module.h> |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 43 | #include <keys/user-type.h> |
Steve French | 0e2beda | 2009-01-30 21:24:41 +0000 | [diff] [blame] | 44 | #include <net/ipv6.h> |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 45 | #include <linux/parser.h> |
Christoph Hellwig | 2f8b544 | 2016-11-01 07:40:13 -0600 | [diff] [blame] | 46 | #include <linux/bvec.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include "cifspdu.h" |
| 48 | #include "cifsglob.h" |
| 49 | #include "cifsproto.h" |
| 50 | #include "cifs_unicode.h" |
| 51 | #include "cifs_debug.h" |
| 52 | #include "cifs_fs_sb.h" |
| 53 | #include "ntlmssp.h" |
| 54 | #include "nterr.h" |
| 55 | #include "rfc1002pdu.h" |
Suresh Jayaraman | 488f1d2d | 2010-07-05 18:12:15 +0530 | [diff] [blame] | 56 | #include "fscache.h" |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 57 | #include "smb2proto.h" |
Long Li | 2f89464 | 2017-11-22 17:38:34 -0700 | [diff] [blame] | 58 | #include "smbdirect.h" |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 59 | #include "dns_resolve.h" |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 60 | #include "cifsfs.h" |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 61 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 62 | #include "dfs_cache.h" |
| 63 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | extern mempool_t *cifs_req_poolp; |
Steve French | f92a720 | 2018-05-24 04:11:07 -0500 | [diff] [blame] | 66 | extern bool disable_legacy_dialects; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 68 | /* FIXME: should these be tunable? */ |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 69 | #define TLINK_ERROR_EXPIRE (1 * HZ) |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 70 | #define TLINK_IDLE_EXPIRE (600 * HZ) |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 71 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 72 | enum { |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 73 | /* Mount options that take no arguments */ |
| 74 | Opt_user_xattr, Opt_nouser_xattr, |
| 75 | Opt_forceuid, Opt_noforceuid, |
Jeff Layton | 72bd481 | 2012-10-03 16:02:36 -0400 | [diff] [blame] | 76 | Opt_forcegid, Opt_noforcegid, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 77 | Opt_noblocksend, Opt_noautotune, |
| 78 | Opt_hard, Opt_soft, Opt_perm, Opt_noperm, |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 79 | Opt_mapposix, Opt_nomapposix, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 80 | Opt_mapchars, Opt_nomapchars, Opt_sfu, |
| 81 | Opt_nosfu, Opt_nodfs, Opt_posixpaths, |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 82 | Opt_noposixpaths, Opt_nounix, Opt_unix, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 83 | Opt_nocase, |
| 84 | Opt_brl, Opt_nobrl, |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 85 | Opt_handlecache, Opt_nohandlecache, |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 86 | Opt_forcemandatorylock, Opt_setuidfromacl, Opt_setuids, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 87 | Opt_nosetuids, Opt_dynperm, Opt_nodynperm, |
| 88 | Opt_nohard, Opt_nosoft, |
| 89 | Opt_nointr, Opt_intr, |
| 90 | Opt_nostrictsync, Opt_strictsync, |
| 91 | Opt_serverino, Opt_noserverino, |
| 92 | Opt_rwpidforward, Opt_cifsacl, Opt_nocifsacl, |
| 93 | Opt_acl, Opt_noacl, Opt_locallease, |
Jeff Layton | 1b35920 | 2012-09-19 15:20:27 -0700 | [diff] [blame] | 94 | Opt_sign, Opt_seal, Opt_noac, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 95 | Opt_fsc, Opt_mfsymlinks, |
Jeff Layton | a0b3df5 | 2013-05-24 07:40:59 -0400 | [diff] [blame] | 96 | Opt_multiuser, Opt_sloppy, Opt_nosharesock, |
Steve French | b2a3077 | 2015-09-29 21:49:28 -0500 | [diff] [blame] | 97 | Opt_persistent, Opt_nopersistent, |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 98 | Opt_resilient, Opt_noresilient, |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 99 | Opt_domainauto, Opt_rdma, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 100 | |
| 101 | /* Mount options which take numeric value */ |
| 102 | Opt_backupuid, Opt_backupgid, Opt_uid, |
| 103 | Opt_cruid, Opt_gid, Opt_file_mode, |
| 104 | Opt_dirmode, Opt_port, |
| 105 | Opt_rsize, Opt_wsize, Opt_actimeo, |
Steve French | 141891f | 2016-09-23 00:44:16 -0500 | [diff] [blame] | 106 | Opt_echo_interval, Opt_max_credits, |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 107 | Opt_snapshot, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 108 | |
| 109 | /* Mount options which take string value */ |
| 110 | Opt_user, Opt_pass, Opt_ip, |
Jeff Layton | 73a999f | 2013-03-22 08:42:57 -0400 | [diff] [blame] | 111 | Opt_domain, Opt_srcaddr, Opt_iocharset, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 112 | Opt_netbiosname, Opt_servern, |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 113 | Opt_ver, Opt_vers, Opt_sec, Opt_cache, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 114 | |
| 115 | /* Mount options to be ignored */ |
| 116 | Opt_ignore, |
| 117 | |
| 118 | /* Options which could be blank */ |
| 119 | Opt_blank_pass, |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 120 | Opt_blank_user, |
| 121 | Opt_blank_ip, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 122 | |
| 123 | Opt_err |
| 124 | }; |
| 125 | |
| 126 | static const match_table_t cifs_mount_option_tokens = { |
| 127 | |
| 128 | { Opt_user_xattr, "user_xattr" }, |
| 129 | { Opt_nouser_xattr, "nouser_xattr" }, |
| 130 | { Opt_forceuid, "forceuid" }, |
| 131 | { Opt_noforceuid, "noforceuid" }, |
Jeff Layton | 72bd481 | 2012-10-03 16:02:36 -0400 | [diff] [blame] | 132 | { Opt_forcegid, "forcegid" }, |
| 133 | { Opt_noforcegid, "noforcegid" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 134 | { Opt_noblocksend, "noblocksend" }, |
| 135 | { Opt_noautotune, "noautotune" }, |
| 136 | { Opt_hard, "hard" }, |
| 137 | { Opt_soft, "soft" }, |
| 138 | { Opt_perm, "perm" }, |
| 139 | { Opt_noperm, "noperm" }, |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 140 | { Opt_mapchars, "mapchars" }, /* SFU style */ |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 141 | { Opt_nomapchars, "nomapchars" }, |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 142 | { Opt_mapposix, "mapposix" }, /* SFM style */ |
| 143 | { Opt_nomapposix, "nomapposix" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 144 | { Opt_sfu, "sfu" }, |
| 145 | { Opt_nosfu, "nosfu" }, |
| 146 | { Opt_nodfs, "nodfs" }, |
| 147 | { Opt_posixpaths, "posixpaths" }, |
| 148 | { Opt_noposixpaths, "noposixpaths" }, |
| 149 | { Opt_nounix, "nounix" }, |
| 150 | { Opt_nounix, "nolinux" }, |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 151 | { Opt_nounix, "noposix" }, |
| 152 | { Opt_unix, "unix" }, |
| 153 | { Opt_unix, "linux" }, |
| 154 | { Opt_unix, "posix" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 155 | { Opt_nocase, "nocase" }, |
| 156 | { Opt_nocase, "ignorecase" }, |
| 157 | { Opt_brl, "brl" }, |
| 158 | { Opt_nobrl, "nobrl" }, |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 159 | { Opt_handlecache, "handlecache" }, |
| 160 | { Opt_nohandlecache, "nohandlecache" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 161 | { Opt_nobrl, "nolock" }, |
| 162 | { Opt_forcemandatorylock, "forcemandatorylock" }, |
Pavel Shilovsky | 5cfdddc | 2012-03-27 20:51:15 +0400 | [diff] [blame] | 163 | { Opt_forcemandatorylock, "forcemand" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 164 | { Opt_setuids, "setuids" }, |
| 165 | { Opt_nosetuids, "nosetuids" }, |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 166 | { Opt_setuidfromacl, "idsfromsid" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 167 | { Opt_dynperm, "dynperm" }, |
| 168 | { Opt_nodynperm, "nodynperm" }, |
| 169 | { Opt_nohard, "nohard" }, |
| 170 | { Opt_nosoft, "nosoft" }, |
| 171 | { Opt_nointr, "nointr" }, |
| 172 | { Opt_intr, "intr" }, |
| 173 | { Opt_nostrictsync, "nostrictsync" }, |
| 174 | { Opt_strictsync, "strictsync" }, |
| 175 | { Opt_serverino, "serverino" }, |
| 176 | { Opt_noserverino, "noserverino" }, |
| 177 | { Opt_rwpidforward, "rwpidforward" }, |
| 178 | { Opt_cifsacl, "cifsacl" }, |
| 179 | { Opt_nocifsacl, "nocifsacl" }, |
| 180 | { Opt_acl, "acl" }, |
| 181 | { Opt_noacl, "noacl" }, |
| 182 | { Opt_locallease, "locallease" }, |
| 183 | { Opt_sign, "sign" }, |
| 184 | { Opt_seal, "seal" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 185 | { Opt_noac, "noac" }, |
| 186 | { Opt_fsc, "fsc" }, |
| 187 | { Opt_mfsymlinks, "mfsymlinks" }, |
| 188 | { Opt_multiuser, "multiuser" }, |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 189 | { Opt_sloppy, "sloppy" }, |
Jeff Layton | a0b3df5 | 2013-05-24 07:40:59 -0400 | [diff] [blame] | 190 | { Opt_nosharesock, "nosharesock" }, |
Steve French | b2a3077 | 2015-09-29 21:49:28 -0500 | [diff] [blame] | 191 | { Opt_persistent, "persistenthandles"}, |
| 192 | { Opt_nopersistent, "nopersistenthandles"}, |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 193 | { Opt_resilient, "resilienthandles"}, |
| 194 | { Opt_noresilient, "noresilienthandles"}, |
Germano Percossi | 3956644 | 2016-12-15 12:31:18 +0530 | [diff] [blame] | 195 | { Opt_domainauto, "domainauto"}, |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 196 | { Opt_rdma, "rdma"}, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 197 | |
| 198 | { Opt_backupuid, "backupuid=%s" }, |
| 199 | { Opt_backupgid, "backupgid=%s" }, |
| 200 | { Opt_uid, "uid=%s" }, |
| 201 | { Opt_cruid, "cruid=%s" }, |
| 202 | { Opt_gid, "gid=%s" }, |
| 203 | { Opt_file_mode, "file_mode=%s" }, |
| 204 | { Opt_dirmode, "dirmode=%s" }, |
| 205 | { Opt_dirmode, "dir_mode=%s" }, |
| 206 | { Opt_port, "port=%s" }, |
| 207 | { Opt_rsize, "rsize=%s" }, |
| 208 | { Opt_wsize, "wsize=%s" }, |
| 209 | { Opt_actimeo, "actimeo=%s" }, |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 210 | { Opt_echo_interval, "echo_interval=%s" }, |
Steve French | 141891f | 2016-09-23 00:44:16 -0500 | [diff] [blame] | 211 | { Opt_max_credits, "max_credits=%s" }, |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 212 | { Opt_snapshot, "snapshot=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 213 | |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 214 | { Opt_blank_user, "user=" }, |
| 215 | { Opt_blank_user, "username=" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 216 | { Opt_user, "user=%s" }, |
| 217 | { Opt_user, "username=%s" }, |
| 218 | { Opt_blank_pass, "pass=" }, |
Jesper Nilsson | 3c15b4c | 2012-11-29 17:31:16 +0100 | [diff] [blame] | 219 | { Opt_blank_pass, "password=" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 220 | { Opt_pass, "pass=%s" }, |
| 221 | { Opt_pass, "password=%s" }, |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 222 | { Opt_blank_ip, "ip=" }, |
| 223 | { Opt_blank_ip, "addr=" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 224 | { Opt_ip, "ip=%s" }, |
| 225 | { Opt_ip, "addr=%s" }, |
Jeff Layton | 73a999f | 2013-03-22 08:42:57 -0400 | [diff] [blame] | 226 | { Opt_ignore, "unc=%s" }, |
| 227 | { Opt_ignore, "target=%s" }, |
| 228 | { Opt_ignore, "path=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 229 | { Opt_domain, "dom=%s" }, |
| 230 | { Opt_domain, "domain=%s" }, |
| 231 | { Opt_domain, "workgroup=%s" }, |
| 232 | { Opt_srcaddr, "srcaddr=%s" }, |
Jeff Layton | 73a999f | 2013-03-22 08:42:57 -0400 | [diff] [blame] | 233 | { Opt_ignore, "prefixpath=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 234 | { Opt_iocharset, "iocharset=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 235 | { Opt_netbiosname, "netbiosname=%s" }, |
| 236 | { Opt_servern, "servern=%s" }, |
| 237 | { Opt_ver, "ver=%s" }, |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 238 | { Opt_vers, "vers=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 239 | { Opt_sec, "sec=%s" }, |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 240 | { Opt_cache, "cache=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 241 | |
| 242 | { Opt_ignore, "cred" }, |
| 243 | { Opt_ignore, "credentials" }, |
Jeff Layton | a557b97 | 2012-05-02 14:02:40 -0400 | [diff] [blame] | 244 | { Opt_ignore, "cred=%s" }, |
| 245 | { Opt_ignore, "credentials=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 246 | { Opt_ignore, "guest" }, |
| 247 | { Opt_ignore, "rw" }, |
| 248 | { Opt_ignore, "ro" }, |
| 249 | { Opt_ignore, "suid" }, |
| 250 | { Opt_ignore, "nosuid" }, |
| 251 | { Opt_ignore, "exec" }, |
| 252 | { Opt_ignore, "noexec" }, |
| 253 | { Opt_ignore, "nodev" }, |
| 254 | { Opt_ignore, "noauto" }, |
| 255 | { Opt_ignore, "dev" }, |
| 256 | { Opt_ignore, "mand" }, |
| 257 | { Opt_ignore, "nomand" }, |
Steve French | 9b9c5be | 2018-09-22 12:07:06 -0500 | [diff] [blame] | 258 | { Opt_ignore, "relatime" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 259 | { Opt_ignore, "_netdev" }, |
| 260 | |
| 261 | { Opt_err, NULL } |
| 262 | }; |
| 263 | |
| 264 | enum { |
| 265 | Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p, |
| 266 | Opt_sec_ntlmsspi, Opt_sec_ntlmssp, |
Jeff Layton | 7659624 | 2012-07-23 20:34:17 -0400 | [diff] [blame] | 267 | Opt_ntlm, Opt_sec_ntlmi, Opt_sec_ntlmv2, |
| 268 | Opt_sec_ntlmv2i, Opt_sec_lanman, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 269 | Opt_sec_none, |
| 270 | |
| 271 | Opt_sec_err |
| 272 | }; |
| 273 | |
| 274 | static const match_table_t cifs_secflavor_tokens = { |
| 275 | { Opt_sec_krb5, "krb5" }, |
| 276 | { Opt_sec_krb5i, "krb5i" }, |
| 277 | { Opt_sec_krb5p, "krb5p" }, |
| 278 | { Opt_sec_ntlmsspi, "ntlmsspi" }, |
| 279 | { Opt_sec_ntlmssp, "ntlmssp" }, |
| 280 | { Opt_ntlm, "ntlm" }, |
| 281 | { Opt_sec_ntlmi, "ntlmi" }, |
Jeff Layton | 7659624 | 2012-07-23 20:34:17 -0400 | [diff] [blame] | 282 | { Opt_sec_ntlmv2, "nontlm" }, |
| 283 | { Opt_sec_ntlmv2, "ntlmv2" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 284 | { Opt_sec_ntlmv2i, "ntlmv2i" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 285 | { Opt_sec_lanman, "lanman" }, |
| 286 | { Opt_sec_none, "none" }, |
| 287 | |
| 288 | { Opt_sec_err, NULL } |
| 289 | }; |
| 290 | |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 291 | /* cache flavors */ |
| 292 | enum { |
| 293 | Opt_cache_loose, |
| 294 | Opt_cache_strict, |
| 295 | Opt_cache_none, |
| 296 | Opt_cache_err |
| 297 | }; |
| 298 | |
| 299 | static const match_table_t cifs_cacheflavor_tokens = { |
| 300 | { Opt_cache_loose, "loose" }, |
| 301 | { Opt_cache_strict, "strict" }, |
| 302 | { Opt_cache_none, "none" }, |
| 303 | { Opt_cache_err, NULL } |
| 304 | }; |
| 305 | |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 306 | static const match_table_t cifs_smb_version_tokens = { |
| 307 | { Smb_1, SMB1_VERSION_STRING }, |
Steve French | dd446b1 | 2012-11-28 23:21:06 -0600 | [diff] [blame] | 308 | { Smb_20, SMB20_VERSION_STRING}, |
Steve French | 1080ef7 | 2011-02-24 18:07:19 +0000 | [diff] [blame] | 309 | { Smb_21, SMB21_VERSION_STRING }, |
Steve French | e4aa25e | 2012-10-01 12:26:22 -0500 | [diff] [blame] | 310 | { Smb_30, SMB30_VERSION_STRING }, |
Steve French | 20b6d8b | 2013-06-12 22:48:41 -0500 | [diff] [blame] | 311 | { Smb_302, SMB302_VERSION_STRING }, |
Kenneth D'souza | 4a3b38a | 2018-11-17 10:33:30 +0530 | [diff] [blame] | 312 | { Smb_302, ALT_SMB302_VERSION_STRING }, |
Steve French | 5f7fbf7 | 2014-12-17 22:52:58 -0600 | [diff] [blame] | 313 | { Smb_311, SMB311_VERSION_STRING }, |
Steve French | aab1893 | 2015-06-23 23:37:11 -0500 | [diff] [blame] | 314 | { Smb_311, ALT_SMB311_VERSION_STRING }, |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 315 | { Smb_3any, SMB3ANY_VERSION_STRING }, |
| 316 | { Smb_default, SMBDEFAULT_VERSION_STRING }, |
Steve French | 5f7fbf7 | 2014-12-17 22:52:58 -0600 | [diff] [blame] | 317 | { Smb_version_err, NULL } |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 318 | }; |
| 319 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 320 | static int ip_connect(struct TCP_Server_Info *server); |
| 321 | static int generic_ip_connect(struct TCP_Server_Info *server); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 322 | static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink); |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 323 | static void cifs_prune_tlinks(struct work_struct *work); |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 324 | static int cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data, |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 325 | const char *devname, bool is_smb3); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 326 | static char *extract_hostname(const char *unc); |
| 327 | |
Paulo Alcantara | 28eb24f | 2018-11-20 15:16:36 -0200 | [diff] [blame] | 328 | /* |
| 329 | * Resolve hostname and set ip addr in tcp ses. Useful for hostnames that may |
| 330 | * get their ip addresses changed at some point. |
| 331 | * |
| 332 | * This should be called with server->srv_mutex held. |
| 333 | */ |
| 334 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 335 | static int reconn_set_ipaddr(struct TCP_Server_Info *server) |
| 336 | { |
| 337 | int rc; |
| 338 | int len; |
| 339 | char *unc, *ipaddr = NULL; |
| 340 | |
| 341 | if (!server->hostname) |
| 342 | return -EINVAL; |
| 343 | |
| 344 | len = strlen(server->hostname) + 3; |
| 345 | |
| 346 | unc = kmalloc(len, GFP_KERNEL); |
| 347 | if (!unc) { |
| 348 | cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__); |
| 349 | return -ENOMEM; |
| 350 | } |
| 351 | snprintf(unc, len, "\\\\%s", server->hostname); |
| 352 | |
| 353 | rc = dns_resolve_server_name_to_ip(unc, &ipaddr); |
| 354 | kfree(unc); |
| 355 | |
| 356 | if (rc < 0) { |
| 357 | cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n", |
| 358 | __func__, server->hostname, rc); |
| 359 | return rc; |
| 360 | } |
| 361 | |
| 362 | rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr, |
| 363 | strlen(ipaddr)); |
| 364 | kfree(ipaddr); |
| 365 | |
| 366 | return !rc ? -1 : 0; |
| 367 | } |
| 368 | #else |
| 369 | static inline int reconn_set_ipaddr(struct TCP_Server_Info *server) |
| 370 | { |
| 371 | return 0; |
| 372 | } |
| 373 | #endif |
| 374 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 375 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 376 | struct super_cb_data { |
| 377 | struct TCP_Server_Info *server; |
| 378 | struct cifs_sb_info *cifs_sb; |
| 379 | }; |
| 380 | |
| 381 | /* These functions must be called with server->srv_mutex held */ |
| 382 | |
| 383 | static void super_cb(struct super_block *sb, void *arg) |
| 384 | { |
| 385 | struct super_cb_data *d = arg; |
| 386 | struct cifs_sb_info *cifs_sb; |
| 387 | struct cifs_tcon *tcon; |
| 388 | |
| 389 | if (d->cifs_sb) |
| 390 | return; |
| 391 | |
| 392 | cifs_sb = CIFS_SB(sb); |
| 393 | tcon = cifs_sb_master_tcon(cifs_sb); |
| 394 | if (tcon->ses->server == d->server) |
| 395 | d->cifs_sb = cifs_sb; |
| 396 | } |
| 397 | |
| 398 | static inline struct cifs_sb_info * |
| 399 | find_super_by_tcp(struct TCP_Server_Info *server) |
| 400 | { |
| 401 | struct super_cb_data d = { |
| 402 | .server = server, |
| 403 | .cifs_sb = NULL, |
| 404 | }; |
| 405 | |
| 406 | iterate_supers_type(&cifs_fs_type, super_cb, &d); |
| 407 | return d.cifs_sb ? d.cifs_sb : ERR_PTR(-ENOENT); |
| 408 | } |
| 409 | |
| 410 | static void reconn_inval_dfs_target(struct TCP_Server_Info *server, |
| 411 | struct cifs_sb_info *cifs_sb, |
| 412 | struct dfs_cache_tgt_list *tgt_list, |
| 413 | struct dfs_cache_tgt_iterator **tgt_it) |
| 414 | { |
| 415 | const char *name; |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 416 | |
| 417 | if (!cifs_sb || !cifs_sb->origin_fullpath || !tgt_list || |
| 418 | !server->nr_targets) |
| 419 | return; |
| 420 | |
| 421 | if (!*tgt_it) { |
| 422 | *tgt_it = dfs_cache_get_tgt_iterator(tgt_list); |
| 423 | } else { |
| 424 | *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it); |
| 425 | if (!*tgt_it) |
| 426 | *tgt_it = dfs_cache_get_tgt_iterator(tgt_list); |
| 427 | } |
| 428 | |
| 429 | cifs_dbg(FYI, "%s: UNC: %s\n", __func__, cifs_sb->origin_fullpath); |
| 430 | |
| 431 | name = dfs_cache_get_tgt_name(*tgt_it); |
| 432 | |
| 433 | kfree(server->hostname); |
| 434 | |
| 435 | server->hostname = extract_hostname(name); |
Dan Carpenter | 8428817 | 2019-01-05 15:25:29 +0300 | [diff] [blame^] | 436 | if (IS_ERR(server->hostname)) { |
| 437 | cifs_dbg(FYI, |
| 438 | "%s: failed to extract hostname from target: %ld\n", |
| 439 | __func__, PTR_ERR(server->hostname)); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 440 | } |
| 441 | } |
| 442 | |
| 443 | static inline int reconn_setup_dfs_targets(struct cifs_sb_info *cifs_sb, |
| 444 | struct dfs_cache_tgt_list *tl, |
| 445 | struct dfs_cache_tgt_iterator **it) |
| 446 | { |
| 447 | if (!cifs_sb->origin_fullpath) |
| 448 | return -EOPNOTSUPP; |
| 449 | return dfs_cache_noreq_find(cifs_sb->origin_fullpath + 1, NULL, tl); |
| 450 | } |
| 451 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame] | 453 | /* |
| 454 | * cifs tcp session reconnection |
| 455 | * |
| 456 | * mark tcp session as reconnecting so temporarily locked |
| 457 | * mark all smb sessions as reconnecting for tcp session |
| 458 | * reconnect tcp session |
| 459 | * wake up waiters on reconnection? - (not needed currently) |
| 460 | */ |
Pavel Shilovsky | 28ea529 | 2012-05-23 16:18:00 +0400 | [diff] [blame] | 461 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | cifs_reconnect(struct TCP_Server_Info *server) |
| 463 | { |
| 464 | int rc = 0; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 465 | struct list_head *tmp, *tmp2; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 466 | struct cifs_ses *ses; |
| 467 | struct cifs_tcon *tcon; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 468 | struct mid_q_entry *mid_entry; |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 469 | struct list_head retry_list; |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 470 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Paulo Alcantara | 2332440 | 2018-11-20 14:37:18 -0200 | [diff] [blame] | 471 | struct cifs_sb_info *cifs_sb = NULL; |
| 472 | struct dfs_cache_tgt_list tgt_list = {0}; |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 473 | struct dfs_cache_tgt_iterator *tgt_it = NULL; |
| 474 | #endif |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | spin_lock(&GlobalMid_Lock); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 477 | server->nr_targets = 1; |
| 478 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 479 | cifs_sb = find_super_by_tcp(server); |
| 480 | if (IS_ERR(cifs_sb)) { |
| 481 | rc = PTR_ERR(cifs_sb); |
| 482 | cifs_dbg(FYI, "%s: will not do DFS failover: rc = %d\n", |
| 483 | __func__, rc); |
| 484 | cifs_sb = NULL; |
| 485 | } else { |
| 486 | rc = reconn_setup_dfs_targets(cifs_sb, &tgt_list, &tgt_it); |
Steve French | 55a7f00 | 2019-01-01 17:19:45 -0600 | [diff] [blame] | 487 | if (rc && (rc != -EOPNOTSUPP)) { |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 488 | cifs_dbg(VFS, "%s: no target servers for DFS failover\n", |
| 489 | __func__); |
| 490 | } else { |
| 491 | server->nr_targets = dfs_cache_get_nr_tgts(&tgt_list); |
| 492 | } |
| 493 | } |
| 494 | cifs_dbg(FYI, "%s: will retry %d target(s)\n", __func__, |
| 495 | server->nr_targets); |
| 496 | #endif |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 497 | if (server->tcpStatus == CifsExiting) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 498 | /* the demux thread will exit normally |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | next time through the loop */ |
| 500 | spin_unlock(&GlobalMid_Lock); |
| 501 | return rc; |
| 502 | } else |
| 503 | server->tcpStatus = CifsNeedReconnect; |
| 504 | spin_unlock(&GlobalMid_Lock); |
| 505 | server->maxBuf = 0; |
Pavel Shilovsky | aa24d1e | 2011-12-27 16:23:34 +0400 | [diff] [blame] | 506 | server->max_read = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | |
Steve French | 6e4d3bb | 2018-09-22 11:25:04 -0500 | [diff] [blame] | 508 | cifs_dbg(FYI, "Mark tcp session as need reconnect\n"); |
Steve French | bf1fdeb | 2018-07-30 19:23:09 -0500 | [diff] [blame] | 509 | trace_smb3_reconnect(server->CurrentMid, server->hostname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
| 511 | /* before reconnecting the tcp session, mark the smb session (uid) |
| 512 | and the tid bad so they are not used until reconnected */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 513 | cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n", |
| 514 | __func__); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 515 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 516 | list_for_each(tmp, &server->smb_ses_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 517 | ses = list_entry(tmp, struct cifs_ses, smb_ses_list); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 518 | ses->need_reconnect = true; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 519 | list_for_each(tmp2, &ses->tcon_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 520 | tcon = list_entry(tmp2, struct cifs_tcon, tcon_list); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 521 | tcon->need_reconnect = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | } |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 523 | if (ses->tcon_ipc) |
| 524 | ses->tcon_ipc->need_reconnect = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 526 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | /* do not want to be sending data on a socket we are freeing */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 529 | cifs_dbg(FYI, "%s: tearing down socket\n", __func__); |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 530 | mutex_lock(&server->srv_mutex); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 531 | if (server->ssocket) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 532 | cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n", |
| 533 | server->ssocket->state, server->ssocket->flags); |
Trond Myklebust | 91cf45f | 2007-11-12 18:10:39 -0800 | [diff] [blame] | 534 | kernel_sock_shutdown(server->ssocket, SHUT_WR); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 535 | cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n", |
| 536 | server->ssocket->state, server->ssocket->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | sock_release(server->ssocket); |
| 538 | server->ssocket = NULL; |
| 539 | } |
Shirish Pargaonkar | 5d0d288 | 2010-10-13 18:15:00 -0500 | [diff] [blame] | 540 | server->sequence_number = 0; |
| 541 | server->session_estab = false; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 542 | kfree(server->session_key.response); |
| 543 | server->session_key.response = NULL; |
| 544 | server->session_key.len = 0; |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 545 | server->lstrp = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 547 | /* mark submitted MIDs for retry and issue callback */ |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 548 | INIT_LIST_HEAD(&retry_list); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 549 | cifs_dbg(FYI, "%s: moving mids to private list\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 551 | list_for_each_safe(tmp, tmp2, &server->pending_mid_q) { |
| 552 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 553 | if (mid_entry->mid_state == MID_REQUEST_SUBMITTED) |
| 554 | mid_entry->mid_state = MID_RETRY_NEEDED; |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 555 | list_move(&mid_entry->qhead, &retry_list); |
| 556 | } |
| 557 | spin_unlock(&GlobalMid_Lock); |
Rabin Vincent | 820962d | 2015-12-23 07:32:41 +0100 | [diff] [blame] | 558 | mutex_unlock(&server->srv_mutex); |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 559 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 560 | cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__); |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 561 | list_for_each_safe(tmp, tmp2, &retry_list) { |
| 562 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 563 | list_del_init(&mid_entry->qhead); |
| 564 | mid_entry->callback(mid_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Jeff Layton | 7fdbaa1 | 2011-06-10 16:14:57 -0400 | [diff] [blame] | 567 | do { |
Steve French | 6c3d890 | 2006-07-31 22:46:20 +0000 | [diff] [blame] | 568 | try_to_freeze(); |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 569 | |
Jeff Layton | 73e216a | 2013-09-05 08:38:10 -0400 | [diff] [blame] | 570 | mutex_lock(&server->srv_mutex); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 571 | /* |
| 572 | * Set up next DFS target server (if any) for reconnect. If DFS |
| 573 | * feature is disabled, then we will retry last server we |
| 574 | * connected to before. |
| 575 | */ |
Long Li | 781a805 | 2017-11-22 17:38:36 -0700 | [diff] [blame] | 576 | if (cifs_rdma_enabled(server)) |
| 577 | rc = smbd_reconnect(server); |
| 578 | else |
| 579 | rc = generic_ip_connect(server); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 580 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 581 | cifs_dbg(FYI, "reconnect error %d\n", rc); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 582 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 583 | reconn_inval_dfs_target(server, cifs_sb, &tgt_list, |
| 584 | &tgt_it); |
| 585 | #endif |
Paulo Alcantara | 28eb24f | 2018-11-20 15:16:36 -0200 | [diff] [blame] | 586 | rc = reconn_set_ipaddr(server); |
| 587 | if (rc) { |
| 588 | cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n", |
| 589 | __func__, rc); |
| 590 | } |
Federico Sauter | 4afe260 | 2015-03-17 17:45:28 +0100 | [diff] [blame] | 591 | mutex_unlock(&server->srv_mutex); |
Steve French | 0cb766a | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 592 | msleep(3000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | } else { |
| 594 | atomic_inc(&tcpSesReconnectCount); |
| 595 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 596 | if (server->tcpStatus != CifsExiting) |
Steve French | fd88ce9 | 2011-04-12 01:01:14 +0000 | [diff] [blame] | 597 | server->tcpStatus = CifsNeedNegotiate; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 598 | spin_unlock(&GlobalMid_Lock); |
Federico Sauter | 4afe260 | 2015-03-17 17:45:28 +0100 | [diff] [blame] | 599 | mutex_unlock(&server->srv_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } |
Jeff Layton | 7fdbaa1 | 2011-06-10 16:14:57 -0400 | [diff] [blame] | 601 | } while (server->tcpStatus == CifsNeedReconnect); |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 602 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 603 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 604 | if (tgt_it) { |
| 605 | rc = dfs_cache_noreq_update_tgthint(cifs_sb->origin_fullpath + 1, |
| 606 | tgt_it); |
| 607 | if (rc) { |
| 608 | cifs_dbg(VFS, "%s: failed to update DFS target hint: rc = %d\n", |
| 609 | __func__, rc); |
| 610 | } |
| 611 | rc = dfs_cache_update_vol(cifs_sb->origin_fullpath, server); |
| 612 | if (rc) { |
| 613 | cifs_dbg(VFS, "%s: failed to update vol info in DFS cache: rc = %d\n", |
| 614 | __func__, rc); |
| 615 | } |
Paulo Alcantara | 2332440 | 2018-11-20 14:37:18 -0200 | [diff] [blame] | 616 | dfs_cache_free_tgts(&tgt_list); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 617 | } |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 618 | #endif |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 619 | if (server->tcpStatus == CifsNeedNegotiate) |
| 620 | mod_delayed_work(cifsiod_wq, &server->echo, 0); |
| 621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | return rc; |
| 623 | } |
| 624 | |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 625 | static void |
| 626 | cifs_echo_request(struct work_struct *work) |
| 627 | { |
| 628 | int rc; |
| 629 | struct TCP_Server_Info *server = container_of(work, |
| 630 | struct TCP_Server_Info, echo.work); |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 631 | unsigned long echo_interval; |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 632 | |
Jeff Layton | 247ec9b | 2011-02-04 17:09:50 -0500 | [diff] [blame] | 633 | /* |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 634 | * If we need to renegotiate, set echo interval to zero to |
| 635 | * immediately call echo service where we can renegotiate. |
| 636 | */ |
| 637 | if (server->tcpStatus == CifsNeedNegotiate) |
| 638 | echo_interval = 0; |
| 639 | else |
| 640 | echo_interval = server->echo_interval; |
| 641 | |
| 642 | /* |
| 643 | * We cannot send an echo if it is disabled. |
| 644 | * Also, no need to ping if we got a response recently. |
Jeff Layton | 247ec9b | 2011-02-04 17:09:50 -0500 | [diff] [blame] | 645 | */ |
Steve French | 4fcd181 | 2016-06-22 20:12:05 -0500 | [diff] [blame] | 646 | |
| 647 | if (server->tcpStatus == CifsNeedReconnect || |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 648 | server->tcpStatus == CifsExiting || |
| 649 | server->tcpStatus == CifsNew || |
Pavel Shilovsky | f6d7617 | 2012-05-25 14:47:16 +0400 | [diff] [blame] | 650 | (server->ops->can_echo && !server->ops->can_echo(server)) || |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 651 | time_before(jiffies, server->lstrp + echo_interval - HZ)) |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 652 | goto requeue_echo; |
| 653 | |
Pavel Shilovsky | f6d7617 | 2012-05-25 14:47:16 +0400 | [diff] [blame] | 654 | rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS; |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 655 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 656 | cifs_dbg(FYI, "Unable to send echo request to server: %s\n", |
| 657 | server->hostname); |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 658 | |
| 659 | requeue_echo: |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 660 | queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval); |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 661 | } |
| 662 | |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 663 | static bool |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 664 | allocate_buffers(struct TCP_Server_Info *server) |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 665 | { |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 666 | if (!server->bigbuf) { |
| 667 | server->bigbuf = (char *)cifs_buf_get(); |
| 668 | if (!server->bigbuf) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 669 | cifs_dbg(VFS, "No memory for large SMB response\n"); |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 670 | msleep(3000); |
| 671 | /* retry will check if exiting */ |
| 672 | return false; |
| 673 | } |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 674 | } else if (server->large_buf) { |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 675 | /* we are reusing a dirty large buf, clear its start */ |
Pavel Shilovsky | 1887f60 | 2012-05-17 12:45:31 +0400 | [diff] [blame] | 676 | memset(server->bigbuf, 0, HEADER_SIZE(server)); |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 677 | } |
| 678 | |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 679 | if (!server->smallbuf) { |
| 680 | server->smallbuf = (char *)cifs_small_buf_get(); |
| 681 | if (!server->smallbuf) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 682 | cifs_dbg(VFS, "No memory for SMB response\n"); |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 683 | msleep(1000); |
| 684 | /* retry will check if exiting */ |
| 685 | return false; |
| 686 | } |
| 687 | /* beginning of smb buffer is cleared in our buf_get */ |
| 688 | } else { |
| 689 | /* if existing small buf clear beginning */ |
Pavel Shilovsky | 1887f60 | 2012-05-17 12:45:31 +0400 | [diff] [blame] | 690 | memset(server->smallbuf, 0, HEADER_SIZE(server)); |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 691 | } |
| 692 | |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 693 | return true; |
| 694 | } |
| 695 | |
Jeff Layton | ba749e6 | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 696 | static bool |
| 697 | server_unresponsive(struct TCP_Server_Info *server) |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 698 | { |
Pavel Shilovsky | 6dae51a | 2012-02-21 16:50:23 +0300 | [diff] [blame] | 699 | /* |
| 700 | * We need to wait 2 echo intervals to make sure we handle such |
| 701 | * situations right: |
| 702 | * 1s client sends a normal SMB request |
| 703 | * 2s client gets a response |
| 704 | * 30s echo workqueue job pops, and decides we got a response recently |
| 705 | * and don't need to send another |
| 706 | * ... |
| 707 | * 65s kernel_recvmsg times out, and we see that we haven't gotten |
| 708 | * a response in >60s. |
| 709 | */ |
Samuel Cabrero | 76e7527 | 2017-07-11 12:44:39 +0200 | [diff] [blame] | 710 | if ((server->tcpStatus == CifsGood || |
| 711 | server->tcpStatus == CifsNeedNegotiate) && |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 712 | time_after(jiffies, server->lstrp + 2 * server->echo_interval)) { |
| 713 | cifs_dbg(VFS, "Server %s has not responded in %lu seconds. Reconnecting...\n", |
| 714 | server->hostname, (2 * server->echo_interval) / HZ); |
Jeff Layton | ba749e6 | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 715 | cifs_reconnect(server); |
| 716 | wake_up(&server->response_q); |
| 717 | return true; |
| 718 | } |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 719 | |
Jeff Layton | ba749e6 | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 720 | return false; |
| 721 | } |
| 722 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 723 | static int |
| 724 | cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg) |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 725 | { |
Jeff Layton | a52c1eb | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 726 | int length = 0; |
| 727 | int total_read; |
Jeff Layton | 42c4dfc | 2011-10-19 15:28:17 -0400 | [diff] [blame] | 728 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 729 | smb_msg->msg_control = NULL; |
| 730 | smb_msg->msg_controllen = 0; |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 731 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 732 | for (total_read = 0; msg_data_left(smb_msg); total_read += length) { |
Jeff Layton | 95edcff | 2011-12-01 20:22:41 -0500 | [diff] [blame] | 733 | try_to_freeze(); |
| 734 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 735 | if (server_unresponsive(server)) |
| 736 | return -ECONNABORTED; |
Long Li | 2fef137 | 2017-11-22 17:38:41 -0700 | [diff] [blame] | 737 | if (cifs_rdma_enabled(server) && server->smbd_conn) |
| 738 | length = smbd_recv(server->smbd_conn, smb_msg); |
| 739 | else |
| 740 | length = sock_recvmsg(server->ssocket, smb_msg, 0); |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 741 | |
| 742 | if (server->tcpStatus == CifsExiting) |
| 743 | return -ESHUTDOWN; |
| 744 | |
| 745 | if (server->tcpStatus == CifsNeedReconnect) { |
| 746 | cifs_reconnect(server); |
| 747 | return -ECONNABORTED; |
Jeff Layton | ba749e6 | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 748 | } |
| 749 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 750 | if (length == -ERESTARTSYS || |
| 751 | length == -EAGAIN || |
| 752 | length == -EINTR) { |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 753 | /* |
| 754 | * Minimum sleep to prevent looping, allowing socket |
| 755 | * to clear and app threads to set tcpStatus |
| 756 | * CifsNeedReconnect if server hung. |
| 757 | */ |
| 758 | usleep_range(1000, 2000); |
| 759 | length = 0; |
Jeff Layton | a52c1eb | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 760 | continue; |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | if (length <= 0) { |
Al Viro | 09aab88 | 2015-11-13 03:00:17 -0500 | [diff] [blame] | 764 | cifs_dbg(FYI, "Received no data or error: %d\n", length); |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 765 | cifs_reconnect(server); |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 766 | return -ECONNABORTED; |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 767 | } |
| 768 | } |
Jeff Layton | a52c1eb | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 769 | return total_read; |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 770 | } |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 771 | |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 772 | int |
| 773 | cifs_read_from_socket(struct TCP_Server_Info *server, char *buf, |
| 774 | unsigned int to_read) |
Jeff Layton | 42c4dfc | 2011-10-19 15:28:17 -0400 | [diff] [blame] | 775 | { |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 776 | struct msghdr smb_msg; |
| 777 | struct kvec iov = {.iov_base = buf, .iov_len = to_read}; |
David Howells | aa563d7 | 2018-10-20 00:57:56 +0100 | [diff] [blame] | 778 | iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read); |
Jeff Layton | 42c4dfc | 2011-10-19 15:28:17 -0400 | [diff] [blame] | 779 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 780 | return cifs_readv_from_socket(server, &smb_msg); |
| 781 | } |
Jeff Layton | 42c4dfc | 2011-10-19 15:28:17 -0400 | [diff] [blame] | 782 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 783 | int |
| 784 | cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page, |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 785 | unsigned int page_offset, unsigned int to_read) |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 786 | { |
| 787 | struct msghdr smb_msg; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 788 | struct bio_vec bv = { |
| 789 | .bv_page = page, .bv_len = to_read, .bv_offset = page_offset}; |
David Howells | aa563d7 | 2018-10-20 00:57:56 +0100 | [diff] [blame] | 790 | iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read); |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 791 | return cifs_readv_from_socket(server, &smb_msg); |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 792 | } |
| 793 | |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 794 | static bool |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 795 | is_smb_response(struct TCP_Server_Info *server, unsigned char type) |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 796 | { |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 797 | /* |
| 798 | * The first byte big endian of the length field, |
| 799 | * is actually not part of the length but the type |
| 800 | * with the most common, zero, as regular data. |
| 801 | */ |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 802 | switch (type) { |
| 803 | case RFC1002_SESSION_MESSAGE: |
| 804 | /* Regular SMB response */ |
| 805 | return true; |
| 806 | case RFC1002_SESSION_KEEP_ALIVE: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 807 | cifs_dbg(FYI, "RFC 1002 session keep alive\n"); |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 808 | break; |
| 809 | case RFC1002_POSITIVE_SESSION_RESPONSE: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 810 | cifs_dbg(FYI, "RFC 1002 positive session response\n"); |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 811 | break; |
| 812 | case RFC1002_NEGATIVE_SESSION_RESPONSE: |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 813 | /* |
| 814 | * We get this from Windows 98 instead of an error on |
| 815 | * SMB negprot response. |
| 816 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 817 | cifs_dbg(FYI, "RFC 1002 negative session response\n"); |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 818 | /* give server a second to clean up */ |
| 819 | msleep(1000); |
| 820 | /* |
| 821 | * Always try 445 first on reconnect since we get NACK |
| 822 | * on some if we ever connected to port 139 (the NACK |
| 823 | * is since we do not begin with RFC1001 session |
| 824 | * initialize frame). |
| 825 | */ |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 826 | cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT); |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 827 | cifs_reconnect(server); |
| 828 | wake_up(&server->response_q); |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 829 | break; |
| 830 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 831 | cifs_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type); |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 832 | cifs_reconnect(server); |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 833 | } |
| 834 | |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 835 | return false; |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 836 | } |
| 837 | |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 838 | void |
| 839 | dequeue_mid(struct mid_q_entry *mid, bool malformed) |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 840 | { |
| 841 | #ifdef CONFIG_CIFS_STATS2 |
| 842 | mid->when_received = jiffies; |
| 843 | #endif |
| 844 | spin_lock(&GlobalMid_Lock); |
| 845 | if (!malformed) |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 846 | mid->mid_state = MID_RESPONSE_RECEIVED; |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 847 | else |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 848 | mid->mid_state = MID_RESPONSE_MALFORMED; |
Ronnie Sahlberg | ddf83af | 2018-08-30 10:12:59 +1000 | [diff] [blame] | 849 | /* |
| 850 | * Trying to handle/dequeue a mid after the send_recv() |
| 851 | * function has finished processing it is a bug. |
| 852 | */ |
| 853 | if (mid->mid_flags & MID_DELETED) |
| 854 | printk_once(KERN_WARNING |
| 855 | "trying to dequeue a deleted mid\n"); |
| 856 | else |
| 857 | list_del_init(&mid->qhead); |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 858 | spin_unlock(&GlobalMid_Lock); |
| 859 | } |
| 860 | |
Jeff Layton | c8054eb | 2011-10-19 15:29:31 -0400 | [diff] [blame] | 861 | static void |
| 862 | handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server, |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 863 | char *buf, int malformed) |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 864 | { |
Pavel Shilovsky | 316cf94 | 2012-05-23 14:31:03 +0400 | [diff] [blame] | 865 | if (server->ops->check_trans2 && |
| 866 | server->ops->check_trans2(mid, server, buf, malformed)) |
Jeff Layton | c8054eb | 2011-10-19 15:29:31 -0400 | [diff] [blame] | 867 | return; |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 868 | mid->resp_buf = buf; |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 869 | mid->large_buf = server->large_buf; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 870 | /* Was previous buf put in mpx struct for multi-rsp? */ |
| 871 | if (!mid->multiRsp) { |
| 872 | /* smb buffer will be freed by user thread */ |
| 873 | if (server->large_buf) |
| 874 | server->bigbuf = NULL; |
| 875 | else |
| 876 | server->smallbuf = NULL; |
| 877 | } |
Jeff Layton | ffc00e2 | 2011-10-19 15:29:13 -0400 | [diff] [blame] | 878 | dequeue_mid(mid, malformed); |
Pavel Shilovsky | ad69bae | 2011-08-01 13:19:43 +0400 | [diff] [blame] | 879 | } |
| 880 | |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 881 | static void clean_demultiplex_info(struct TCP_Server_Info *server) |
| 882 | { |
| 883 | int length; |
| 884 | |
| 885 | /* take it off the list, if it's not already */ |
| 886 | spin_lock(&cifs_tcp_ses_lock); |
| 887 | list_del_init(&server->tcp_ses_list); |
| 888 | spin_unlock(&cifs_tcp_ses_lock); |
| 889 | |
| 890 | spin_lock(&GlobalMid_Lock); |
| 891 | server->tcpStatus = CifsExiting; |
| 892 | spin_unlock(&GlobalMid_Lock); |
| 893 | wake_up_all(&server->response_q); |
| 894 | |
Pavel Shilovsky | 2d86dbc | 2012-02-06 15:59:18 +0400 | [diff] [blame] | 895 | /* check if we have blocked requests that need to free */ |
Pavel Shilovsky | fc40f9c | 2012-02-17 17:09:12 +0300 | [diff] [blame] | 896 | spin_lock(&server->req_lock); |
Pavel Shilovsky | 2d86dbc | 2012-02-06 15:59:18 +0400 | [diff] [blame] | 897 | if (server->credits <= 0) |
| 898 | server->credits = 1; |
Pavel Shilovsky | fc40f9c | 2012-02-17 17:09:12 +0300 | [diff] [blame] | 899 | spin_unlock(&server->req_lock); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 900 | /* |
| 901 | * Although there should not be any requests blocked on this queue it |
| 902 | * can not hurt to be paranoid and try to wake up requests that may |
| 903 | * haven been blocked when more than 50 at time were on the wire to the |
| 904 | * same server - they now will see the session is in exit state and get |
| 905 | * out of SendReceive. |
| 906 | */ |
| 907 | wake_up_all(&server->request_q); |
| 908 | /* give those requests time to exit */ |
| 909 | msleep(125); |
Long Li | bce9ce7 | 2017-11-22 17:38:38 -0700 | [diff] [blame] | 910 | if (cifs_rdma_enabled(server) && server->smbd_conn) { |
| 911 | smbd_destroy(server->smbd_conn); |
| 912 | server->smbd_conn = NULL; |
| 913 | } |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 914 | if (server->ssocket) { |
| 915 | sock_release(server->ssocket); |
| 916 | server->ssocket = NULL; |
| 917 | } |
| 918 | |
| 919 | if (!list_empty(&server->pending_mid_q)) { |
| 920 | struct list_head dispose_list; |
| 921 | struct mid_q_entry *mid_entry; |
| 922 | struct list_head *tmp, *tmp2; |
| 923 | |
| 924 | INIT_LIST_HEAD(&dispose_list); |
| 925 | spin_lock(&GlobalMid_Lock); |
| 926 | list_for_each_safe(tmp, tmp2, &server->pending_mid_q) { |
| 927 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 928 | cifs_dbg(FYI, "Clearing mid 0x%llx\n", mid_entry->mid); |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 929 | mid_entry->mid_state = MID_SHUTDOWN; |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 930 | list_move(&mid_entry->qhead, &dispose_list); |
| 931 | } |
| 932 | spin_unlock(&GlobalMid_Lock); |
| 933 | |
| 934 | /* now walk dispose list and issue callbacks */ |
| 935 | list_for_each_safe(tmp, tmp2, &dispose_list) { |
| 936 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 937 | cifs_dbg(FYI, "Callback mid 0x%llx\n", mid_entry->mid); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 938 | list_del_init(&mid_entry->qhead); |
| 939 | mid_entry->callback(mid_entry); |
| 940 | } |
| 941 | /* 1/8th of sec is more than enough time for them to exit */ |
| 942 | msleep(125); |
| 943 | } |
| 944 | |
| 945 | if (!list_empty(&server->pending_mid_q)) { |
| 946 | /* |
| 947 | * mpx threads have not exited yet give them at least the smb |
| 948 | * send timeout time for long ops. |
| 949 | * |
| 950 | * Due to delays on oplock break requests, we need to wait at |
| 951 | * least 45 seconds before giving up on a request getting a |
| 952 | * response and going ahead and killing cifsd. |
| 953 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 954 | cifs_dbg(FYI, "Wait for exit from demultiplex thread\n"); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 955 | msleep(46000); |
| 956 | /* |
| 957 | * If threads still have not exited they are probably never |
| 958 | * coming home not much else we can do but free the memory. |
| 959 | */ |
| 960 | } |
| 961 | |
| 962 | kfree(server->hostname); |
| 963 | kfree(server); |
| 964 | |
| 965 | length = atomic_dec_return(&tcpSesAllocCount); |
| 966 | if (length > 0) |
David Rientjes | 11d8336 | 2015-04-14 15:48:21 -0700 | [diff] [blame] | 967 | mempool_resize(cifs_req_poolp, length + cifs_min_rcv); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 968 | } |
| 969 | |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 970 | static int |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 971 | standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid) |
| 972 | { |
| 973 | int length; |
| 974 | char *buf = server->smallbuf; |
Ronnie Sahlberg | 2e96467 | 2018-04-09 18:06:26 +1000 | [diff] [blame] | 975 | unsigned int pdu_length = server->pdu_size; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 976 | |
| 977 | /* make sure this will fit in a large buffer */ |
Ronnie Sahlberg | 93012bf | 2018-03-31 11:45:31 +1100 | [diff] [blame] | 978 | if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) - |
| 979 | server->vals->header_preamble_size) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 980 | cifs_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length); |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 981 | cifs_reconnect(server); |
| 982 | wake_up(&server->response_q); |
Pavel Shilovsky | 3fabaa2 | 2014-07-10 09:55:52 +0400 | [diff] [blame] | 983 | return -ECONNABORTED; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | /* switch to large buffer if too big for a small one */ |
| 987 | if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) { |
| 988 | server->large_buf = true; |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 989 | memcpy(server->bigbuf, buf, server->total_read); |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 990 | buf = server->bigbuf; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 991 | } |
| 992 | |
| 993 | /* now read the rest */ |
Pavel Shilovsky | 1887f60 | 2012-05-17 12:45:31 +0400 | [diff] [blame] | 994 | length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1, |
Ronnie Sahlberg | 93012bf | 2018-03-31 11:45:31 +1100 | [diff] [blame] | 995 | pdu_length - HEADER_SIZE(server) + 1 |
| 996 | + server->vals->header_preamble_size); |
| 997 | |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 998 | if (length < 0) |
| 999 | return length; |
| 1000 | server->total_read += length; |
| 1001 | |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 1002 | dump_smb(buf, server->total_read); |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1003 | |
Pavel Shilovsky | 4326ed2 | 2016-11-17 15:24:46 -0800 | [diff] [blame] | 1004 | return cifs_handle_standard(server, mid); |
| 1005 | } |
| 1006 | |
| 1007 | int |
| 1008 | cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid) |
| 1009 | { |
| 1010 | char *buf = server->large_buf ? server->bigbuf : server->smallbuf; |
| 1011 | int length; |
| 1012 | |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1013 | /* |
| 1014 | * We know that we received enough to get to the MID as we |
| 1015 | * checked the pdu_length earlier. Now check to see |
| 1016 | * if the rest of the header is OK. We borrow the length |
| 1017 | * var for the rest of the loop to avoid a new stack var. |
| 1018 | * |
| 1019 | * 48 bytes is enough to display the header and a little bit |
| 1020 | * into the payload for debugging purposes. |
| 1021 | */ |
Steve French | 373512e | 2015-12-18 13:05:30 -0600 | [diff] [blame] | 1022 | length = server->ops->check_message(buf, server->total_read, server); |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1023 | if (length != 0) |
| 1024 | cifs_dump_mem("Bad SMB: ", buf, |
| 1025 | min_t(unsigned int, server->total_read, 48)); |
| 1026 | |
Pavel Shilovsky | 511c54a | 2017-07-08 14:32:00 -0700 | [diff] [blame] | 1027 | if (server->ops->is_session_expired && |
| 1028 | server->ops->is_session_expired(buf)) { |
| 1029 | cifs_reconnect(server); |
| 1030 | wake_up(&server->response_q); |
| 1031 | return -1; |
| 1032 | } |
| 1033 | |
Pavel Shilovsky | 2e44b28 | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 1034 | if (server->ops->is_status_pending && |
| 1035 | server->ops->is_status_pending(buf, server, length)) |
| 1036 | return -1; |
| 1037 | |
Jeff Layton | ff4fa4a | 2012-02-07 06:31:05 -0500 | [diff] [blame] | 1038 | if (!mid) |
| 1039 | return length; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1040 | |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 1041 | handle_mid(mid, server, buf, length); |
Jeff Layton | ff4fa4a | 2012-02-07 06:31:05 -0500 | [diff] [blame] | 1042 | return 0; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1043 | } |
| 1044 | |
| 1045 | static int |
Al Viro | 7c97c20 | 2011-06-21 08:51:28 -0400 | [diff] [blame] | 1046 | cifs_demultiplex_thread(void *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | { |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1048 | int i, num_mids, length; |
Al Viro | 7c97c20 | 2011-06-21 08:51:28 -0400 | [diff] [blame] | 1049 | struct TCP_Server_Info *server = p; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1050 | unsigned int pdu_length; |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1051 | unsigned int next_offset; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1052 | char *buf = NULL; |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 1053 | struct task_struct *task_to_wake = NULL; |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1054 | struct mid_q_entry *mids[MAX_COMPOUND]; |
| 1055 | char *bufs[MAX_COMPOUND]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | current->flags |= PF_MEMALLOC; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1058 | cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current)); |
Jeff Layton | 93d0ec8 | 2008-08-02 08:00:48 -0400 | [diff] [blame] | 1059 | |
| 1060 | length = atomic_inc_return(&tcpSesAllocCount); |
| 1061 | if (length > 1) |
David Rientjes | 11d8336 | 2015-04-14 15:48:21 -0700 | [diff] [blame] | 1062 | mempool_resize(cifs_req_poolp, length + cifs_min_rcv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 1064 | set_freezable(); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 1065 | while (server->tcpStatus != CifsExiting) { |
Steve French | ede1327 | 2005-08-30 20:10:14 -0700 | [diff] [blame] | 1066 | if (try_to_freeze()) |
| 1067 | continue; |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 1068 | |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1069 | if (!allocate_buffers(server)) |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 1070 | continue; |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 1071 | |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1072 | server->large_buf = false; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1073 | buf = server->smallbuf; |
Steve French | f01d5e1 | 2007-08-30 21:13:31 +0000 | [diff] [blame] | 1074 | pdu_length = 4; /* enough to get RFC1001 header */ |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 1075 | |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 1076 | length = cifs_read_from_socket(server, buf, pdu_length); |
Jeff Layton | a52c1eb | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 1077 | if (length < 0) |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 1078 | continue; |
Ronnie Sahlberg | 977b617 | 2018-06-01 10:53:02 +1000 | [diff] [blame] | 1079 | |
| 1080 | if (server->vals->header_preamble_size == 0) |
| 1081 | server->total_read = 0; |
| 1082 | else |
| 1083 | server->total_read = length; |
Steve French | 67010fb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1084 | |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 1085 | /* |
| 1086 | * The right amount was read from socket - 4 bytes, |
| 1087 | * so we can now interpret the length field. |
| 1088 | */ |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 1089 | pdu_length = get_rfc1002_length(buf); |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1090 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1091 | cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length); |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 1092 | if (!is_smb_response(server, buf[0])) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1093 | continue; |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1094 | next_pdu: |
| 1095 | server->pdu_size = pdu_length; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1096 | |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1097 | /* make sure we have enough to get to the MID */ |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1098 | if (server->pdu_size < HEADER_SIZE(server) - 1 - |
Ronnie Sahlberg | 93012bf | 2018-03-31 11:45:31 +1100 | [diff] [blame] | 1099 | server->vals->header_preamble_size) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1100 | cifs_dbg(VFS, "SMB response too short (%u bytes)\n", |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1101 | server->pdu_size); |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1102 | cifs_reconnect(server); |
| 1103 | wake_up(&server->response_q); |
| 1104 | continue; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1105 | } |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 1106 | |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1107 | /* read down to the MID */ |
Ronnie Sahlberg | 93012bf | 2018-03-31 11:45:31 +1100 | [diff] [blame] | 1108 | length = cifs_read_from_socket(server, |
| 1109 | buf + server->vals->header_preamble_size, |
| 1110 | HEADER_SIZE(server) - 1 |
| 1111 | - server->vals->header_preamble_size); |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1112 | if (length < 0) |
| 1113 | continue; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1114 | server->total_read += length; |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1115 | |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1116 | if (server->ops->next_header) { |
| 1117 | next_offset = server->ops->next_header(buf); |
| 1118 | if (next_offset) |
| 1119 | server->pdu_size = next_offset; |
| 1120 | } |
| 1121 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1122 | memset(mids, 0, sizeof(mids)); |
| 1123 | memset(bufs, 0, sizeof(bufs)); |
| 1124 | num_mids = 0; |
| 1125 | |
Pavel Shilovsky | 9bb17e0 | 2016-11-17 15:24:34 -0800 | [diff] [blame] | 1126 | if (server->ops->is_transform_hdr && |
| 1127 | server->ops->receive_transform && |
| 1128 | server->ops->is_transform_hdr(buf)) { |
| 1129 | length = server->ops->receive_transform(server, |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1130 | mids, |
| 1131 | bufs, |
| 1132 | &num_mids); |
Pavel Shilovsky | 9bb17e0 | 2016-11-17 15:24:34 -0800 | [diff] [blame] | 1133 | } else { |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1134 | mids[0] = server->ops->find_mid(server, buf); |
| 1135 | bufs[0] = buf; |
Steve French | 7af929d | 2018-10-02 18:54:09 -0500 | [diff] [blame] | 1136 | num_mids = 1; |
Jeff Layton | c8054eb | 2011-10-19 15:29:31 -0400 | [diff] [blame] | 1137 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1138 | if (!mids[0] || !mids[0]->receive) |
| 1139 | length = standard_receive3(server, mids[0]); |
Pavel Shilovsky | 9bb17e0 | 2016-11-17 15:24:34 -0800 | [diff] [blame] | 1140 | else |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1141 | length = mids[0]->receive(server, mids[0]); |
Pavel Shilovsky | 9bb17e0 | 2016-11-17 15:24:34 -0800 | [diff] [blame] | 1142 | } |
Jeff Layton | 44d22d8 | 2011-10-19 15:29:49 -0400 | [diff] [blame] | 1143 | |
Lars Persson | 696e420 | 2018-06-25 14:05:25 +0200 | [diff] [blame] | 1144 | if (length < 0) { |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1145 | for (i = 0; i < num_mids; i++) |
| 1146 | if (mids[i]) |
| 1147 | cifs_mid_q_entry_release(mids[i]); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1148 | continue; |
Lars Persson | 696e420 | 2018-06-25 14:05:25 +0200 | [diff] [blame] | 1149 | } |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1150 | |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 1151 | if (server->large_buf) |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1152 | buf = server->bigbuf; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1153 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1154 | |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 1155 | server->lstrp = jiffies; |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1156 | |
| 1157 | for (i = 0; i < num_mids; i++) { |
| 1158 | if (mids[i] != NULL) { |
| 1159 | mids[i]->resp_buf_size = server->pdu_size; |
| 1160 | if ((mids[i]->mid_flags & MID_WAIT_CANCELLED) && |
| 1161 | mids[i]->mid_state == MID_RESPONSE_RECEIVED && |
| 1162 | server->ops->handle_cancelled_mid) |
| 1163 | server->ops->handle_cancelled_mid( |
| 1164 | mids[i]->resp_buf, |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 1165 | server); |
| 1166 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1167 | if (!mids[i]->multiRsp || mids[i]->multiEnd) |
| 1168 | mids[i]->callback(mids[i]); |
Lars Persson | 696e420 | 2018-06-25 14:05:25 +0200 | [diff] [blame] | 1169 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1170 | cifs_mid_q_entry_release(mids[i]); |
| 1171 | } else if (server->ops->is_oplock_break && |
| 1172 | server->ops->is_oplock_break(bufs[i], |
| 1173 | server)) { |
| 1174 | cifs_dbg(FYI, "Received oplock break\n"); |
| 1175 | } else { |
| 1176 | cifs_dbg(VFS, "No task to wake, unknown frame " |
| 1177 | "received! NumMids %d\n", |
| 1178 | atomic_read(&midCount)); |
| 1179 | cifs_dump_mem("Received Data is: ", bufs[i], |
| 1180 | HEADER_SIZE(server)); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1181 | #ifdef CONFIG_CIFS_DEBUG2 |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1182 | if (server->ops->dump_detail) |
| 1183 | server->ops->dump_detail(bufs[i], |
| 1184 | server); |
| 1185 | cifs_dump_mids(server); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1186 | #endif /* CIFS_DEBUG2 */ |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1187 | } |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1188 | } |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1189 | |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1190 | if (pdu_length > server->pdu_size) { |
| 1191 | if (!allocate_buffers(server)) |
| 1192 | continue; |
| 1193 | pdu_length -= server->pdu_size; |
| 1194 | server->total_read = 0; |
| 1195 | server->large_buf = false; |
| 1196 | buf = server->smallbuf; |
| 1197 | goto next_pdu; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1198 | } |
| 1199 | } /* end while !EXITING */ |
| 1200 | |
Justin P. Mattock | fd62cb7 | 2011-02-24 22:15:02 -0800 | [diff] [blame] | 1201 | /* buffer usually freed in free_mid - need to free it here on exit */ |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1202 | cifs_buf_release(server->bigbuf); |
| 1203 | if (server->smallbuf) /* no sense logging a debug message if NULL */ |
| 1204 | cifs_small_buf_release(server->smallbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 1206 | task_to_wake = xchg(&server->tsk, NULL); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 1207 | clean_demultiplex_info(server); |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 1208 | |
| 1209 | /* if server->tsk was NULL then wait for a signal before exiting */ |
| 1210 | if (!task_to_wake) { |
| 1211 | set_current_state(TASK_INTERRUPTIBLE); |
| 1212 | while (!signal_pending(current)) { |
| 1213 | schedule(); |
| 1214 | set_current_state(TASK_INTERRUPTIBLE); |
| 1215 | } |
| 1216 | set_current_state(TASK_RUNNING); |
| 1217 | } |
| 1218 | |
Jeff Layton | 0468a2c | 2008-12-01 07:09:35 -0500 | [diff] [blame] | 1219 | module_put_and_exit(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | } |
| 1221 | |
Jeff Layton | c359cf3 | 2007-11-16 22:22:06 +0000 | [diff] [blame] | 1222 | /* extract the host portion of the UNC string */ |
| 1223 | static char * |
| 1224 | extract_hostname(const char *unc) |
| 1225 | { |
| 1226 | const char *src; |
| 1227 | char *dst, *delim; |
| 1228 | unsigned int len; |
| 1229 | |
| 1230 | /* skip double chars at beginning of string */ |
| 1231 | /* BB: check validity of these bytes? */ |
Paulo Alcantara | c34fea5 | 2018-11-14 14:03:40 -0200 | [diff] [blame] | 1232 | if (strlen(unc) < 3) |
| 1233 | return ERR_PTR(-EINVAL); |
| 1234 | for (src = unc; *src && *src == '\\'; src++) |
| 1235 | ; |
| 1236 | if (!*src) |
| 1237 | return ERR_PTR(-EINVAL); |
Jeff Layton | c359cf3 | 2007-11-16 22:22:06 +0000 | [diff] [blame] | 1238 | |
| 1239 | /* delimiter between hostname and sharename is always '\\' now */ |
| 1240 | delim = strchr(src, '\\'); |
| 1241 | if (!delim) |
| 1242 | return ERR_PTR(-EINVAL); |
| 1243 | |
| 1244 | len = delim - src; |
| 1245 | dst = kmalloc((len + 1), GFP_KERNEL); |
| 1246 | if (dst == NULL) |
| 1247 | return ERR_PTR(-ENOMEM); |
| 1248 | |
| 1249 | memcpy(dst, src, len); |
| 1250 | dst[len] = '\0'; |
| 1251 | |
| 1252 | return dst; |
| 1253 | } |
| 1254 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1255 | static int get_option_ul(substring_t args[], unsigned long *option) |
| 1256 | { |
| 1257 | int rc; |
| 1258 | char *string; |
| 1259 | |
| 1260 | string = match_strdup(args); |
| 1261 | if (string == NULL) |
| 1262 | return -ENOMEM; |
Sachin Prabhu | bfa890a | 2012-04-13 14:04:32 +0100 | [diff] [blame] | 1263 | rc = kstrtoul(string, 0, option); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1264 | kfree(string); |
| 1265 | |
| 1266 | return rc; |
| 1267 | } |
| 1268 | |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1269 | static int get_option_uid(substring_t args[], kuid_t *result) |
| 1270 | { |
| 1271 | unsigned long value; |
| 1272 | kuid_t uid; |
| 1273 | int rc; |
| 1274 | |
| 1275 | rc = get_option_ul(args, &value); |
| 1276 | if (rc) |
| 1277 | return rc; |
| 1278 | |
| 1279 | uid = make_kuid(current_user_ns(), value); |
| 1280 | if (!uid_valid(uid)) |
| 1281 | return -EINVAL; |
| 1282 | |
| 1283 | *result = uid; |
| 1284 | return 0; |
| 1285 | } |
| 1286 | |
| 1287 | static int get_option_gid(substring_t args[], kgid_t *result) |
| 1288 | { |
| 1289 | unsigned long value; |
| 1290 | kgid_t gid; |
| 1291 | int rc; |
| 1292 | |
| 1293 | rc = get_option_ul(args, &value); |
| 1294 | if (rc) |
| 1295 | return rc; |
| 1296 | |
| 1297 | gid = make_kgid(current_user_ns(), value); |
| 1298 | if (!gid_valid(gid)) |
| 1299 | return -EINVAL; |
| 1300 | |
| 1301 | *result = gid; |
| 1302 | return 0; |
| 1303 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1304 | |
| 1305 | static int cifs_parse_security_flavors(char *value, |
| 1306 | struct smb_vol *vol) |
| 1307 | { |
| 1308 | |
| 1309 | substring_t args[MAX_OPT_ARGS]; |
| 1310 | |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1311 | /* |
| 1312 | * With mount options, the last one should win. Reset any existing |
| 1313 | * settings back to default. |
| 1314 | */ |
| 1315 | vol->sectype = Unspecified; |
| 1316 | vol->sign = false; |
| 1317 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1318 | switch (match_token(value, cifs_secflavor_tokens, args)) { |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 1319 | case Opt_sec_krb5p: |
| 1320 | cifs_dbg(VFS, "sec=krb5p is not supported!\n"); |
| 1321 | return 1; |
| 1322 | case Opt_sec_krb5i: |
| 1323 | vol->sign = true; |
| 1324 | /* Fallthrough */ |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1325 | case Opt_sec_krb5: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1326 | vol->sectype = Kerberos; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1327 | break; |
| 1328 | case Opt_sec_ntlmsspi: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1329 | vol->sign = true; |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 1330 | /* Fallthrough */ |
| 1331 | case Opt_sec_ntlmssp: |
| 1332 | vol->sectype = RawNTLMSSP; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1333 | break; |
| 1334 | case Opt_sec_ntlmi: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1335 | vol->sign = true; |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 1336 | /* Fallthrough */ |
| 1337 | case Opt_ntlm: |
| 1338 | vol->sectype = NTLM; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1339 | break; |
| 1340 | case Opt_sec_ntlmv2i: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1341 | vol->sign = true; |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 1342 | /* Fallthrough */ |
| 1343 | case Opt_sec_ntlmv2: |
| 1344 | vol->sectype = NTLMv2; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1345 | break; |
| 1346 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
| 1347 | case Opt_sec_lanman: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1348 | vol->sectype = LANMAN; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1349 | break; |
| 1350 | #endif |
| 1351 | case Opt_sec_none: |
| 1352 | vol->nullauth = 1; |
| 1353 | break; |
| 1354 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1355 | cifs_dbg(VFS, "bad security option: %s\n", value); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1356 | return 1; |
| 1357 | } |
| 1358 | |
| 1359 | return 0; |
| 1360 | } |
| 1361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | static int |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 1363 | cifs_parse_cache_flavor(char *value, struct smb_vol *vol) |
| 1364 | { |
| 1365 | substring_t args[MAX_OPT_ARGS]; |
| 1366 | |
| 1367 | switch (match_token(value, cifs_cacheflavor_tokens, args)) { |
| 1368 | case Opt_cache_loose: |
| 1369 | vol->direct_io = false; |
| 1370 | vol->strict_io = false; |
| 1371 | break; |
| 1372 | case Opt_cache_strict: |
| 1373 | vol->direct_io = false; |
| 1374 | vol->strict_io = true; |
| 1375 | break; |
| 1376 | case Opt_cache_none: |
| 1377 | vol->direct_io = true; |
| 1378 | vol->strict_io = false; |
| 1379 | break; |
| 1380 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1381 | cifs_dbg(VFS, "bad cache= option: %s\n", value); |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 1382 | return 1; |
| 1383 | } |
| 1384 | return 0; |
| 1385 | } |
| 1386 | |
| 1387 | static int |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 1388 | cifs_parse_smb_version(char *value, struct smb_vol *vol, bool is_smb3) |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1389 | { |
| 1390 | substring_t args[MAX_OPT_ARGS]; |
| 1391 | |
| 1392 | switch (match_token(value, cifs_smb_version_tokens, args)) { |
Steve French | 7420451 | 2018-06-19 14:34:08 -0500 | [diff] [blame] | 1393 | #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1394 | case Smb_1: |
Steve French | f92a720 | 2018-05-24 04:11:07 -0500 | [diff] [blame] | 1395 | if (disable_legacy_dialects) { |
| 1396 | cifs_dbg(VFS, "mount with legacy dialect disabled\n"); |
| 1397 | return 1; |
| 1398 | } |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 1399 | if (is_smb3) { |
| 1400 | cifs_dbg(VFS, "vers=1.0 (cifs) not permitted when mounting with smb3\n"); |
| 1401 | return 1; |
| 1402 | } |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1403 | vol->ops = &smb1_operations; |
| 1404 | vol->vals = &smb1_values; |
| 1405 | break; |
Steve French | dd446b1 | 2012-11-28 23:21:06 -0600 | [diff] [blame] | 1406 | case Smb_20: |
Steve French | f92a720 | 2018-05-24 04:11:07 -0500 | [diff] [blame] | 1407 | if (disable_legacy_dialects) { |
| 1408 | cifs_dbg(VFS, "mount with legacy dialect disabled\n"); |
| 1409 | return 1; |
| 1410 | } |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 1411 | if (is_smb3) { |
| 1412 | cifs_dbg(VFS, "vers=2.0 not permitted when mounting with smb3\n"); |
| 1413 | return 1; |
| 1414 | } |
Pavel Shilovsky | 53ef101 | 2013-09-05 16:11:28 +0400 | [diff] [blame] | 1415 | vol->ops = &smb20_operations; |
Steve French | dd446b1 | 2012-11-28 23:21:06 -0600 | [diff] [blame] | 1416 | vol->vals = &smb20_values; |
| 1417 | break; |
Steve French | 7420451 | 2018-06-19 14:34:08 -0500 | [diff] [blame] | 1418 | #else |
| 1419 | case Smb_1: |
| 1420 | cifs_dbg(VFS, "vers=1.0 (cifs) mount not permitted when legacy dialects disabled\n"); |
| 1421 | return 1; |
| 1422 | case Smb_20: |
| 1423 | cifs_dbg(VFS, "vers=2.0 mount not permitted when legacy dialects disabled\n"); |
| 1424 | return 1; |
| 1425 | #endif /* CIFS_ALLOW_INSECURE_LEGACY */ |
Steve French | 1080ef7 | 2011-02-24 18:07:19 +0000 | [diff] [blame] | 1426 | case Smb_21: |
| 1427 | vol->ops = &smb21_operations; |
| 1428 | vol->vals = &smb21_values; |
| 1429 | break; |
Steve French | e4aa25e | 2012-10-01 12:26:22 -0500 | [diff] [blame] | 1430 | case Smb_30: |
Steve French | 38107d4 | 2012-12-08 22:08:06 -0600 | [diff] [blame] | 1431 | vol->ops = &smb30_operations; |
Steve French | e4aa25e | 2012-10-01 12:26:22 -0500 | [diff] [blame] | 1432 | vol->vals = &smb30_values; |
| 1433 | break; |
Steve French | 20b6d8b | 2013-06-12 22:48:41 -0500 | [diff] [blame] | 1434 | case Smb_302: |
| 1435 | vol->ops = &smb30_operations; /* currently identical with 3.0 */ |
| 1436 | vol->vals = &smb302_values; |
| 1437 | break; |
Steve French | 5f7fbf7 | 2014-12-17 22:52:58 -0600 | [diff] [blame] | 1438 | case Smb_311: |
Steve French | aab1893 | 2015-06-23 23:37:11 -0500 | [diff] [blame] | 1439 | vol->ops = &smb311_operations; |
Steve French | 5f7fbf7 | 2014-12-17 22:52:58 -0600 | [diff] [blame] | 1440 | vol->vals = &smb311_values; |
| 1441 | break; |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 1442 | case Smb_3any: |
| 1443 | vol->ops = &smb30_operations; /* currently identical with 3.0 */ |
| 1444 | vol->vals = &smb3any_values; |
| 1445 | break; |
| 1446 | case Smb_default: |
| 1447 | vol->ops = &smb30_operations; /* currently identical with 3.0 */ |
| 1448 | vol->vals = &smbdefault_values; |
| 1449 | break; |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1450 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1451 | cifs_dbg(VFS, "Unknown vers= option specified: %s\n", value); |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1452 | return 1; |
| 1453 | } |
| 1454 | return 0; |
| 1455 | } |
| 1456 | |
Jeff Layton | d387a5c | 2012-12-10 06:10:46 -0500 | [diff] [blame] | 1457 | /* |
| 1458 | * Parse a devname into substrings and populate the vol->UNC and vol->prepath |
| 1459 | * fields with the result. Returns 0 on success and an error otherwise. |
| 1460 | */ |
| 1461 | static int |
| 1462 | cifs_parse_devname(const char *devname, struct smb_vol *vol) |
| 1463 | { |
| 1464 | char *pos; |
| 1465 | const char *delims = "/\\"; |
| 1466 | size_t len; |
| 1467 | |
| 1468 | /* make sure we have a valid UNC double delimiter prefix */ |
| 1469 | len = strspn(devname, delims); |
| 1470 | if (len != 2) |
| 1471 | return -EINVAL; |
| 1472 | |
| 1473 | /* find delimiter between host and sharename */ |
| 1474 | pos = strpbrk(devname + 2, delims); |
| 1475 | if (!pos) |
| 1476 | return -EINVAL; |
| 1477 | |
| 1478 | /* skip past delimiter */ |
| 1479 | ++pos; |
| 1480 | |
| 1481 | /* now go until next delimiter or end of string */ |
| 1482 | len = strcspn(pos, delims); |
| 1483 | |
| 1484 | /* move "pos" up to delimiter or NULL */ |
| 1485 | pos += len; |
| 1486 | vol->UNC = kstrndup(devname, pos - devname, GFP_KERNEL); |
| 1487 | if (!vol->UNC) |
| 1488 | return -ENOMEM; |
| 1489 | |
| 1490 | convert_delimiter(vol->UNC, '\\'); |
| 1491 | |
Sachin Prabhu | 11e3164 | 2016-02-08 13:44:01 +0530 | [diff] [blame] | 1492 | /* skip any delimiter */ |
| 1493 | if (*pos == '/' || *pos == '\\') |
| 1494 | pos++; |
| 1495 | |
| 1496 | /* If pos is NULL then no prepath */ |
| 1497 | if (!*pos) |
Jeff Layton | d387a5c | 2012-12-10 06:10:46 -0500 | [diff] [blame] | 1498 | return 0; |
| 1499 | |
| 1500 | vol->prepath = kstrdup(pos, GFP_KERNEL); |
| 1501 | if (!vol->prepath) |
| 1502 | return -ENOMEM; |
| 1503 | |
| 1504 | return 0; |
| 1505 | } |
| 1506 | |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1507 | static int |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 1508 | cifs_parse_mount_options(const char *mountdata, const char *devname, |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 1509 | struct smb_vol *vol, bool is_smb3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | { |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1511 | char *data, *end; |
Vasily Averin | 957df45 | 2011-06-06 11:33:12 +0400 | [diff] [blame] | 1512 | char *mountdata_copy = NULL, *options; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | unsigned int temp_len, i, j; |
| 1514 | char separator[2]; |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 1515 | short int override_uid = -1; |
| 1516 | short int override_gid = -1; |
| 1517 | bool uid_specified = false; |
| 1518 | bool gid_specified = false; |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1519 | bool sloppy = false; |
| 1520 | char *invalid = NULL; |
Jeff Layton | 8846399 | 2010-11-22 15:31:03 -0500 | [diff] [blame] | 1521 | char *nodename = utsname()->nodename; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1522 | char *string = NULL; |
| 1523 | char *tmp_end, *value; |
| 1524 | char delim; |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 1525 | bool got_ip = false; |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 1526 | bool got_version = false; |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 1527 | unsigned short port = 0; |
| 1528 | struct sockaddr *dstaddr = (struct sockaddr *)&vol->dstaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | |
| 1530 | separator[0] = ','; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1531 | separator[1] = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1532 | delim = separator[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | |
Jeff Layton | 6ee9542 | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 1534 | /* ensure we always start with zeroed-out smb_vol */ |
| 1535 | memset(vol, 0, sizeof(*vol)); |
| 1536 | |
Jeff Layton | 8846399 | 2010-11-22 15:31:03 -0500 | [diff] [blame] | 1537 | /* |
| 1538 | * does not have to be perfect mapping since field is |
| 1539 | * informational, only used for servers that do not support |
| 1540 | * port 445 and it can be overridden at mount time |
| 1541 | */ |
Jeff Layton | 1397f2e | 2011-01-07 11:30:28 -0500 | [diff] [blame] | 1542 | memset(vol->source_rfc1001_name, 0x20, RFC1001_NAME_LEN); |
| 1543 | for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++) |
Jeff Layton | 8846399 | 2010-11-22 15:31:03 -0500 | [diff] [blame] | 1544 | vol->source_rfc1001_name[i] = toupper(nodename[i]); |
| 1545 | |
Jeff Layton | 1397f2e | 2011-01-07 11:30:28 -0500 | [diff] [blame] | 1546 | vol->source_rfc1001_name[RFC1001_NAME_LEN] = 0; |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1547 | /* null target name indicates to use *SMBSERVR default called name |
| 1548 | if we end up sending RFC1001 session initialize */ |
| 1549 | vol->target_rfc1001_name[0] = 0; |
Jeff Layton | 3e4b3e1 | 2010-07-19 18:00:17 -0400 | [diff] [blame] | 1550 | vol->cred_uid = current_uid(); |
| 1551 | vol->linux_uid = current_uid(); |
David Howells | a001e5b | 2008-11-14 10:38:47 +1100 | [diff] [blame] | 1552 | vol->linux_gid = current_gid(); |
Jeff Layton | f55ed1a | 2009-05-26 16:28:11 -0400 | [diff] [blame] | 1553 | |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 1554 | /* |
| 1555 | * default to SFM style remapping of seven reserved characters |
| 1556 | * unless user overrides it or we negotiate CIFS POSIX where |
| 1557 | * it is unnecessary. Can not simultaneously use more than one mapping |
| 1558 | * since then readdir could list files that open could not open |
| 1559 | */ |
| 1560 | vol->remap = true; |
| 1561 | |
Jeff Layton | f55ed1a | 2009-05-26 16:28:11 -0400 | [diff] [blame] | 1562 | /* default to only allowing write access to owner of the mount */ |
| 1563 | vol->dir_mode = vol->file_mode = S_IRUGO | S_IXUGO | S_IWUSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | |
| 1565 | /* vol->retry default is 0 (i.e. "soft" limited retry not hard retry) */ |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 1566 | /* default is always to request posix paths. */ |
| 1567 | vol->posix_paths = 1; |
Jeff Layton | a0c9217 | 2009-05-27 15:40:47 -0400 | [diff] [blame] | 1568 | /* default to using server inode numbers where available */ |
| 1569 | vol->server_ino = 1; |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 1570 | |
Jeff Layton | 1b35920 | 2012-09-19 15:20:27 -0700 | [diff] [blame] | 1571 | /* default is to use strict cifs caching semantics */ |
| 1572 | vol->strict_io = true; |
| 1573 | |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 1574 | vol->actimeo = CIFS_DEF_ACTIMEO; |
| 1575 | |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 1576 | /* offer SMB2.1 and later (SMB3 etc). Secure and widely accepted */ |
| 1577 | vol->ops = &smb30_operations; |
| 1578 | vol->vals = &smbdefault_values; |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1579 | |
Rabin Vincent | b782fcc | 2016-07-19 09:25:45 +0200 | [diff] [blame] | 1580 | vol->echo_interval = SMB_ECHO_INTERVAL_DEFAULT; |
| 1581 | |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 1582 | if (!mountdata) |
| 1583 | goto cifs_parse_mount_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 1585 | mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL); |
| 1586 | if (!mountdata_copy) |
| 1587 | goto cifs_parse_mount_err; |
| 1588 | |
| 1589 | options = mountdata_copy; |
Pavel Shilovsky | 4906e50 | 2011-04-14 22:00:56 +0400 | [diff] [blame] | 1590 | end = options + strlen(options); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1591 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1592 | if (strncmp(options, "sep=", 4) == 0) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1593 | if (options[4] != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1594 | separator[0] = options[4]; |
| 1595 | options += 5; |
| 1596 | } else { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1597 | cifs_dbg(FYI, "Null separator not allowed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | } |
| 1599 | } |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 1600 | vol->backupuid_specified = false; /* no backup intent for a user */ |
| 1601 | vol->backupgid_specified = false; /* no backup intent for a group */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1602 | |
Jeff Layton | 37d4f99 | 2013-05-24 07:40:05 -0400 | [diff] [blame] | 1603 | switch (cifs_parse_devname(devname, vol)) { |
| 1604 | case 0: |
| 1605 | break; |
| 1606 | case -ENOMEM: |
| 1607 | cifs_dbg(VFS, "Unable to allocate memory for devname.\n"); |
| 1608 | goto cifs_parse_mount_err; |
| 1609 | case -EINVAL: |
| 1610 | cifs_dbg(VFS, "Malformed UNC in devname.\n"); |
| 1611 | goto cifs_parse_mount_err; |
| 1612 | default: |
| 1613 | cifs_dbg(VFS, "Unknown error parsing devname.\n"); |
| 1614 | goto cifs_parse_mount_err; |
Jeff Layton | d387a5c | 2012-12-10 06:10:46 -0500 | [diff] [blame] | 1615 | } |
| 1616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | while ((data = strsep(&options, separator)) != NULL) { |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1618 | substring_t args[MAX_OPT_ARGS]; |
| 1619 | unsigned long option; |
| 1620 | int token; |
| 1621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | if (!*data) |
| 1623 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1625 | token = match_token(data, cifs_mount_option_tokens, args); |
| 1626 | |
| 1627 | switch (token) { |
| 1628 | |
| 1629 | /* Ingnore the following */ |
| 1630 | case Opt_ignore: |
| 1631 | break; |
| 1632 | |
| 1633 | /* Boolean values */ |
| 1634 | case Opt_user_xattr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | vol->no_xattr = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1636 | break; |
| 1637 | case Opt_nouser_xattr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | vol->no_xattr = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1639 | break; |
| 1640 | case Opt_forceuid: |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 1641 | override_uid = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1642 | break; |
| 1643 | case Opt_noforceuid: |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 1644 | override_uid = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1645 | break; |
Jeff Layton | 72bd481 | 2012-10-03 16:02:36 -0400 | [diff] [blame] | 1646 | case Opt_forcegid: |
| 1647 | override_gid = 1; |
| 1648 | break; |
| 1649 | case Opt_noforcegid: |
| 1650 | override_gid = 0; |
| 1651 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1652 | case Opt_noblocksend: |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 1653 | vol->noblocksnd = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1654 | break; |
| 1655 | case Opt_noautotune: |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 1656 | vol->noautotune = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1657 | break; |
| 1658 | case Opt_hard: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | vol->retry = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1660 | break; |
| 1661 | case Opt_soft: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | vol->retry = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1663 | break; |
| 1664 | case Opt_perm: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | vol->noperm = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1666 | break; |
| 1667 | case Opt_noperm: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | vol->noperm = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1669 | break; |
| 1670 | case Opt_mapchars: |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 1671 | vol->sfu_remap = true; |
| 1672 | vol->remap = false; /* disable SFM mapping */ |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1673 | break; |
| 1674 | case Opt_nomapchars: |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 1675 | vol->sfu_remap = false; |
| 1676 | break; |
| 1677 | case Opt_mapposix: |
| 1678 | vol->remap = true; |
| 1679 | vol->sfu_remap = false; /* disable SFU mapping */ |
| 1680 | break; |
| 1681 | case Opt_nomapposix: |
| 1682 | vol->remap = false; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1683 | break; |
| 1684 | case Opt_sfu: |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1685 | vol->sfu_emul = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1686 | break; |
| 1687 | case Opt_nosfu: |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1688 | vol->sfu_emul = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1689 | break; |
| 1690 | case Opt_nodfs: |
Steve French | 2c1b861 | 2008-10-16 18:35:21 +0000 | [diff] [blame] | 1691 | vol->nodfs = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1692 | break; |
| 1693 | case Opt_posixpaths: |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 1694 | vol->posix_paths = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1695 | break; |
| 1696 | case Opt_noposixpaths: |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 1697 | vol->posix_paths = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1698 | break; |
| 1699 | case Opt_nounix: |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 1700 | if (vol->linux_ext) |
| 1701 | cifs_dbg(VFS, |
| 1702 | "conflicting unix mount options\n"); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1703 | vol->no_linux_ext = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1704 | break; |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 1705 | case Opt_unix: |
| 1706 | if (vol->no_linux_ext) |
| 1707 | cifs_dbg(VFS, |
| 1708 | "conflicting unix mount options\n"); |
| 1709 | vol->linux_ext = 1; |
| 1710 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1711 | case Opt_nocase: |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1712 | vol->nocase = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1713 | break; |
| 1714 | case Opt_brl: |
Steve French | c46fa8a | 2005-08-18 20:49:57 -0700 | [diff] [blame] | 1715 | vol->nobrl = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1716 | break; |
| 1717 | case Opt_nobrl: |
Steve French | c46fa8a | 2005-08-18 20:49:57 -0700 | [diff] [blame] | 1718 | vol->nobrl = 1; |
Pavel Shilovsky | 5cfdddc | 2012-03-27 20:51:15 +0400 | [diff] [blame] | 1719 | /* |
| 1720 | * turn off mandatory locking in mode |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1721 | * if remote locking is turned off since the |
Pavel Shilovsky | 5cfdddc | 2012-03-27 20:51:15 +0400 | [diff] [blame] | 1722 | * local vfs will do advisory |
| 1723 | */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1724 | if (vol->file_mode == |
| 1725 | (S_IALLUGO & ~(S_ISUID | S_IXGRP))) |
Steve French | d3485d3 | 2005-08-19 11:04:29 -0700 | [diff] [blame] | 1726 | vol->file_mode = S_IALLUGO; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1727 | break; |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 1728 | case Opt_nohandlecache: |
| 1729 | vol->nohandlecache = 1; |
| 1730 | break; |
| 1731 | case Opt_handlecache: |
| 1732 | vol->nohandlecache = 0; |
| 1733 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1734 | case Opt_forcemandatorylock: |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 1735 | vol->mand_lock = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1736 | break; |
| 1737 | case Opt_setuids: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | vol->setuids = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1739 | break; |
| 1740 | case Opt_nosetuids: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | vol->setuids = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1742 | break; |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 1743 | case Opt_setuidfromacl: |
| 1744 | vol->setuidfromacl = 1; |
| 1745 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1746 | case Opt_dynperm: |
Jeff Layton | d0a9c07 | 2008-05-12 22:23:49 +0000 | [diff] [blame] | 1747 | vol->dynperm = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1748 | break; |
| 1749 | case Opt_nodynperm: |
Jeff Layton | d0a9c07 | 2008-05-12 22:23:49 +0000 | [diff] [blame] | 1750 | vol->dynperm = false; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1751 | break; |
| 1752 | case Opt_nohard: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | vol->retry = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1754 | break; |
| 1755 | case Opt_nosoft: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | vol->retry = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1757 | break; |
| 1758 | case Opt_nointr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | vol->intr = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1760 | break; |
| 1761 | case Opt_intr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | vol->intr = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1763 | break; |
| 1764 | case Opt_nostrictsync: |
Steve French | be65244 | 2009-02-23 15:21:59 +0000 | [diff] [blame] | 1765 | vol->nostrictsync = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1766 | break; |
| 1767 | case Opt_strictsync: |
Steve French | be65244 | 2009-02-23 15:21:59 +0000 | [diff] [blame] | 1768 | vol->nostrictsync = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1769 | break; |
| 1770 | case Opt_serverino: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1771 | vol->server_ino = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1772 | break; |
| 1773 | case Opt_noserverino: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | vol->server_ino = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1775 | break; |
| 1776 | case Opt_rwpidforward: |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 1777 | vol->rwpidforward = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1778 | break; |
| 1779 | case Opt_cifsacl: |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 1780 | vol->cifs_acl = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1781 | break; |
| 1782 | case Opt_nocifsacl: |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 1783 | vol->cifs_acl = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1784 | break; |
| 1785 | case Opt_acl: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | vol->no_psx_acl = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1787 | break; |
| 1788 | case Opt_noacl: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | vol->no_psx_acl = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1790 | break; |
| 1791 | case Opt_locallease: |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1792 | vol->local_lease = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1793 | break; |
| 1794 | case Opt_sign: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1795 | vol->sign = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1796 | break; |
| 1797 | case Opt_seal: |
Steve French | 95b1cb9 | 2008-05-15 16:44:38 +0000 | [diff] [blame] | 1798 | /* we do not do the following in secFlags because seal |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1799 | * is a per tree connection (mount) not a per socket |
| 1800 | * or per-smb connection option in the protocol |
| 1801 | * vol->secFlg |= CIFSSEC_MUST_SEAL; |
| 1802 | */ |
Steve French | 95b1cb9 | 2008-05-15 16:44:38 +0000 | [diff] [blame] | 1803 | vol->seal = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1804 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1805 | case Opt_noac: |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 1806 | pr_warn("CIFS: Mount option noac not supported. Instead set /proc/fs/cifs/LookupCacheEnabled to 0\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1807 | break; |
| 1808 | case Opt_fsc: |
Suresh Jayaraman | 607a569 | 2010-11-24 17:49:05 +0530 | [diff] [blame] | 1809 | #ifndef CONFIG_CIFS_FSCACHE |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1810 | cifs_dbg(VFS, "FS-Cache support needs CONFIG_CIFS_FSCACHE kernel config option set\n"); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 1811 | goto cifs_parse_mount_err; |
Suresh Jayaraman | 607a569 | 2010-11-24 17:49:05 +0530 | [diff] [blame] | 1812 | #endif |
Suresh Jayaraman | fa1df75 | 2010-07-05 18:13:36 +0530 | [diff] [blame] | 1813 | vol->fsc = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1814 | break; |
| 1815 | case Opt_mfsymlinks: |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 1816 | vol->mfsymlinks = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1817 | break; |
| 1818 | case Opt_multiuser: |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 1819 | vol->multiuser = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1820 | break; |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1821 | case Opt_sloppy: |
| 1822 | sloppy = true; |
| 1823 | break; |
Jeff Layton | a0b3df5 | 2013-05-24 07:40:59 -0400 | [diff] [blame] | 1824 | case Opt_nosharesock: |
| 1825 | vol->nosharesock = true; |
| 1826 | break; |
Steve French | b2a3077 | 2015-09-29 21:49:28 -0500 | [diff] [blame] | 1827 | case Opt_nopersistent: |
| 1828 | vol->nopersistent = true; |
| 1829 | if (vol->persistent) { |
| 1830 | cifs_dbg(VFS, |
| 1831 | "persistenthandles mount options conflict\n"); |
| 1832 | goto cifs_parse_mount_err; |
| 1833 | } |
| 1834 | break; |
| 1835 | case Opt_persistent: |
| 1836 | vol->persistent = true; |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 1837 | if ((vol->nopersistent) || (vol->resilient)) { |
Steve French | b2a3077 | 2015-09-29 21:49:28 -0500 | [diff] [blame] | 1838 | cifs_dbg(VFS, |
| 1839 | "persistenthandles mount options conflict\n"); |
| 1840 | goto cifs_parse_mount_err; |
| 1841 | } |
| 1842 | break; |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 1843 | case Opt_resilient: |
| 1844 | vol->resilient = true; |
| 1845 | if (vol->persistent) { |
| 1846 | cifs_dbg(VFS, |
| 1847 | "persistenthandles mount options conflict\n"); |
| 1848 | goto cifs_parse_mount_err; |
| 1849 | } |
| 1850 | break; |
| 1851 | case Opt_noresilient: |
| 1852 | vol->resilient = false; /* already the default */ |
| 1853 | break; |
Germano Percossi | 3956644 | 2016-12-15 12:31:18 +0530 | [diff] [blame] | 1854 | case Opt_domainauto: |
| 1855 | vol->domainauto = true; |
| 1856 | break; |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 1857 | case Opt_rdma: |
| 1858 | vol->rdma = true; |
| 1859 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1860 | |
| 1861 | /* Numeric Values */ |
| 1862 | case Opt_backupuid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1863 | if (get_option_uid(args, &vol->backupuid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1864 | cifs_dbg(VFS, "%s: Invalid backupuid value\n", |
| 1865 | __func__); |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 1866 | goto cifs_parse_mount_err; |
| 1867 | } |
| 1868 | vol->backupuid_specified = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1869 | break; |
| 1870 | case Opt_backupgid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1871 | if (get_option_gid(args, &vol->backupgid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1872 | cifs_dbg(VFS, "%s: Invalid backupgid value\n", |
| 1873 | __func__); |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 1874 | goto cifs_parse_mount_err; |
| 1875 | } |
| 1876 | vol->backupgid_specified = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1877 | break; |
| 1878 | case Opt_uid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1879 | if (get_option_uid(args, &vol->linux_uid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1880 | cifs_dbg(VFS, "%s: Invalid uid value\n", |
| 1881 | __func__); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 1882 | goto cifs_parse_mount_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1884 | uid_specified = true; |
| 1885 | break; |
| 1886 | case Opt_cruid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1887 | if (get_option_uid(args, &vol->cred_uid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1888 | cifs_dbg(VFS, "%s: Invalid cruid value\n", |
| 1889 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1890 | goto cifs_parse_mount_err; |
| 1891 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1892 | break; |
| 1893 | case Opt_gid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1894 | if (get_option_gid(args, &vol->linux_gid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1895 | cifs_dbg(VFS, "%s: Invalid gid value\n", |
| 1896 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1897 | goto cifs_parse_mount_err; |
| 1898 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1899 | gid_specified = true; |
| 1900 | break; |
| 1901 | case Opt_file_mode: |
| 1902 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1903 | cifs_dbg(VFS, "%s: Invalid file_mode value\n", |
| 1904 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1905 | goto cifs_parse_mount_err; |
| 1906 | } |
| 1907 | vol->file_mode = option; |
| 1908 | break; |
| 1909 | case Opt_dirmode: |
| 1910 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1911 | cifs_dbg(VFS, "%s: Invalid dir_mode value\n", |
| 1912 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1913 | goto cifs_parse_mount_err; |
| 1914 | } |
| 1915 | vol->dir_mode = option; |
| 1916 | break; |
| 1917 | case Opt_port: |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 1918 | if (get_option_ul(args, &option) || |
| 1919 | option > USHRT_MAX) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1920 | cifs_dbg(VFS, "%s: Invalid port value\n", |
| 1921 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1922 | goto cifs_parse_mount_err; |
| 1923 | } |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 1924 | port = (unsigned short)option; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1925 | break; |
| 1926 | case Opt_rsize: |
| 1927 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1928 | cifs_dbg(VFS, "%s: Invalid rsize value\n", |
| 1929 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1930 | goto cifs_parse_mount_err; |
| 1931 | } |
| 1932 | vol->rsize = option; |
| 1933 | break; |
| 1934 | case Opt_wsize: |
| 1935 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1936 | cifs_dbg(VFS, "%s: Invalid wsize value\n", |
| 1937 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1938 | goto cifs_parse_mount_err; |
| 1939 | } |
| 1940 | vol->wsize = option; |
| 1941 | break; |
| 1942 | case Opt_actimeo: |
| 1943 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1944 | cifs_dbg(VFS, "%s: Invalid actimeo value\n", |
| 1945 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1946 | goto cifs_parse_mount_err; |
| 1947 | } |
| 1948 | vol->actimeo = HZ * option; |
| 1949 | if (vol->actimeo > CIFS_MAX_ACTIMEO) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1950 | cifs_dbg(VFS, "attribute cache timeout too large\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1951 | goto cifs_parse_mount_err; |
| 1952 | } |
| 1953 | break; |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 1954 | case Opt_echo_interval: |
| 1955 | if (get_option_ul(args, &option)) { |
| 1956 | cifs_dbg(VFS, "%s: Invalid echo interval value\n", |
| 1957 | __func__); |
| 1958 | goto cifs_parse_mount_err; |
| 1959 | } |
| 1960 | vol->echo_interval = option; |
| 1961 | break; |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 1962 | case Opt_snapshot: |
| 1963 | if (get_option_ul(args, &option)) { |
| 1964 | cifs_dbg(VFS, "%s: Invalid snapshot time\n", |
| 1965 | __func__); |
| 1966 | goto cifs_parse_mount_err; |
| 1967 | } |
| 1968 | vol->snapshot_time = option; |
| 1969 | break; |
Steve French | 141891f | 2016-09-23 00:44:16 -0500 | [diff] [blame] | 1970 | case Opt_max_credits: |
| 1971 | if (get_option_ul(args, &option) || (option < 20) || |
| 1972 | (option > 60000)) { |
| 1973 | cifs_dbg(VFS, "%s: Invalid max_credits value\n", |
| 1974 | __func__); |
| 1975 | goto cifs_parse_mount_err; |
| 1976 | } |
| 1977 | vol->max_credits = option; |
| 1978 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1979 | |
| 1980 | /* String Arguments */ |
| 1981 | |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 1982 | case Opt_blank_user: |
| 1983 | /* null user, ie. anonymous authentication */ |
| 1984 | vol->nullauth = 1; |
| 1985 | vol->username = NULL; |
| 1986 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1987 | case Opt_user: |
| 1988 | string = match_strdup(args); |
| 1989 | if (string == NULL) |
| 1990 | goto out_nomem; |
| 1991 | |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 1992 | if (strnlen(string, CIFS_MAX_USERNAME_LEN) > |
| 1993 | CIFS_MAX_USERNAME_LEN) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 1994 | pr_warn("CIFS: username too long\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1995 | goto cifs_parse_mount_err; |
| 1996 | } |
Taesoo Kim | 2bd50fb | 2015-03-21 19:08:30 -0400 | [diff] [blame] | 1997 | |
| 1998 | kfree(vol->username); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1999 | vol->username = kstrdup(string, GFP_KERNEL); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2000 | if (!vol->username) |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2001 | goto cifs_parse_mount_err; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2002 | break; |
| 2003 | case Opt_blank_pass: |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2004 | /* passwords have to be handled differently |
| 2005 | * to allow the character used for deliminator |
| 2006 | * to be passed within them |
| 2007 | */ |
| 2008 | |
Sachin Prabhu | c369c9a | 2013-04-09 18:17:41 +0100 | [diff] [blame] | 2009 | /* |
| 2010 | * Check if this is a case where the password |
| 2011 | * starts with a delimiter |
| 2012 | */ |
| 2013 | tmp_end = strchr(data, '='); |
| 2014 | tmp_end++; |
| 2015 | if (!(tmp_end < end && tmp_end[1] == delim)) { |
| 2016 | /* No it is not. Set the password to NULL */ |
Aurelien Aptel | 97f4b72 | 2018-01-25 15:59:39 +0100 | [diff] [blame] | 2017 | kzfree(vol->password); |
Sachin Prabhu | c369c9a | 2013-04-09 18:17:41 +0100 | [diff] [blame] | 2018 | vol->password = NULL; |
| 2019 | break; |
| 2020 | } |
Gustavo A. R. Silva | 07fa601 | 2018-11-27 10:01:51 +1100 | [diff] [blame] | 2021 | /* Fallthrough - to Opt_pass below.*/ |
Sachin Prabhu | c369c9a | 2013-04-09 18:17:41 +0100 | [diff] [blame] | 2022 | case Opt_pass: |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2023 | /* Obtain the value string */ |
| 2024 | value = strchr(data, '='); |
Sachin Prabhu | 1023807 | 2012-03-28 18:07:08 +0100 | [diff] [blame] | 2025 | value++; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2026 | |
| 2027 | /* Set tmp_end to end of the string */ |
| 2028 | tmp_end = (char *) value + strlen(value); |
| 2029 | |
| 2030 | /* Check if following character is the deliminator |
| 2031 | * If yes, we have encountered a double deliminator |
| 2032 | * reset the NULL character to the deliminator |
| 2033 | */ |
Suresh Jayaraman | e73f843 | 2012-06-12 07:15:50 +0530 | [diff] [blame] | 2034 | if (tmp_end < end && tmp_end[1] == delim) { |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2035 | tmp_end[0] = delim; |
| 2036 | |
Suresh Jayaraman | e73f843 | 2012-06-12 07:15:50 +0530 | [diff] [blame] | 2037 | /* Keep iterating until we get to a single |
| 2038 | * deliminator OR the end |
| 2039 | */ |
| 2040 | while ((tmp_end = strchr(tmp_end, delim)) |
| 2041 | != NULL && (tmp_end[1] == delim)) { |
| 2042 | tmp_end = (char *) &tmp_end[2]; |
| 2043 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2044 | |
Suresh Jayaraman | e73f843 | 2012-06-12 07:15:50 +0530 | [diff] [blame] | 2045 | /* Reset var options to point to next element */ |
| 2046 | if (tmp_end) { |
| 2047 | tmp_end[0] = '\0'; |
| 2048 | options = (char *) &tmp_end[1]; |
| 2049 | } else |
| 2050 | /* Reached the end of the mount option |
| 2051 | * string */ |
| 2052 | options = end; |
| 2053 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2054 | |
Aurelien Aptel | 97f4b72 | 2018-01-25 15:59:39 +0100 | [diff] [blame] | 2055 | kzfree(vol->password); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2056 | /* Now build new password string */ |
| 2057 | temp_len = strlen(value); |
| 2058 | vol->password = kzalloc(temp_len+1, GFP_KERNEL); |
| 2059 | if (vol->password == NULL) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2060 | pr_warn("CIFS: no memory for password\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2061 | goto cifs_parse_mount_err; |
| 2062 | } |
| 2063 | |
| 2064 | for (i = 0, j = 0; i < temp_len; i++, j++) { |
| 2065 | vol->password[j] = value[i]; |
| 2066 | if ((value[i] == delim) && |
| 2067 | value[i+1] == delim) |
| 2068 | /* skip the second deliminator */ |
| 2069 | i++; |
| 2070 | } |
| 2071 | vol->password[j] = '\0'; |
| 2072 | break; |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2073 | case Opt_blank_ip: |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2074 | /* FIXME: should this be an error instead? */ |
| 2075 | got_ip = false; |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2076 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2077 | case Opt_ip: |
| 2078 | string = match_strdup(args); |
| 2079 | if (string == NULL) |
| 2080 | goto out_nomem; |
| 2081 | |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2082 | if (!cifs_convert_address(dstaddr, string, |
| 2083 | strlen(string))) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2084 | pr_err("CIFS: bad ip= option (%s).\n", string); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2085 | goto cifs_parse_mount_err; |
| 2086 | } |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2087 | got_ip = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2088 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2089 | case Opt_domain: |
| 2090 | string = match_strdup(args); |
| 2091 | if (string == NULL) |
| 2092 | goto out_nomem; |
| 2093 | |
Chen Gang | 057d633 | 2013-07-19 09:01:36 +0800 | [diff] [blame] | 2094 | if (strnlen(string, CIFS_MAX_DOMAINNAME_LEN) |
| 2095 | == CIFS_MAX_DOMAINNAME_LEN) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2096 | pr_warn("CIFS: domain name too long\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2097 | goto cifs_parse_mount_err; |
| 2098 | } |
| 2099 | |
Taesoo Kim | 2bd50fb | 2015-03-21 19:08:30 -0400 | [diff] [blame] | 2100 | kfree(vol->domainname); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2101 | vol->domainname = kstrdup(string, GFP_KERNEL); |
| 2102 | if (!vol->domainname) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2103 | pr_warn("CIFS: no memory for domainname\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2104 | goto cifs_parse_mount_err; |
| 2105 | } |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2106 | cifs_dbg(FYI, "Domain name set\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2107 | break; |
| 2108 | case Opt_srcaddr: |
| 2109 | string = match_strdup(args); |
| 2110 | if (string == NULL) |
| 2111 | goto out_nomem; |
| 2112 | |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2113 | if (!cifs_convert_address( |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2114 | (struct sockaddr *)&vol->srcaddr, |
| 2115 | string, strlen(string))) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2116 | pr_warn("CIFS: Could not parse srcaddr: %s\n", |
| 2117 | string); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2118 | goto cifs_parse_mount_err; |
| 2119 | } |
| 2120 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2121 | case Opt_iocharset: |
| 2122 | string = match_strdup(args); |
| 2123 | if (string == NULL) |
| 2124 | goto out_nomem; |
| 2125 | |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2126 | if (strnlen(string, 1024) >= 65) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2127 | pr_warn("CIFS: iocharset name too long.\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2128 | goto cifs_parse_mount_err; |
| 2129 | } |
| 2130 | |
Rasmus Villemoes | 87e747c | 2014-10-13 15:54:35 -0700 | [diff] [blame] | 2131 | if (strncasecmp(string, "default", 7) != 0) { |
Taesoo Kim | 2bd50fb | 2015-03-21 19:08:30 -0400 | [diff] [blame] | 2132 | kfree(vol->iocharset); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2133 | vol->iocharset = kstrdup(string, |
| 2134 | GFP_KERNEL); |
| 2135 | if (!vol->iocharset) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2136 | pr_warn("CIFS: no memory for charset\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2137 | goto cifs_parse_mount_err; |
| 2138 | } |
| 2139 | } |
| 2140 | /* if iocharset not set then load_nls_default |
| 2141 | * is used by caller |
| 2142 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2143 | cifs_dbg(FYI, "iocharset set to %s\n", string); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2144 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2145 | case Opt_netbiosname: |
| 2146 | string = match_strdup(args); |
| 2147 | if (string == NULL) |
| 2148 | goto out_nomem; |
| 2149 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2150 | memset(vol->source_rfc1001_name, 0x20, |
| 2151 | RFC1001_NAME_LEN); |
| 2152 | /* |
| 2153 | * FIXME: are there cases in which a comma can |
| 2154 | * be valid in workstation netbios name (and |
| 2155 | * need special handling)? |
| 2156 | */ |
| 2157 | for (i = 0; i < RFC1001_NAME_LEN; i++) { |
| 2158 | /* don't ucase netbiosname for user */ |
| 2159 | if (string[i] == 0) |
| 2160 | break; |
| 2161 | vol->source_rfc1001_name[i] = string[i]; |
| 2162 | } |
| 2163 | /* The string has 16th byte zero still from |
| 2164 | * set at top of the function |
| 2165 | */ |
| 2166 | if (i == RFC1001_NAME_LEN && string[i] != 0) |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2167 | pr_warn("CIFS: netbiosname longer than 15 truncated.\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2168 | break; |
| 2169 | case Opt_servern: |
| 2170 | /* servernetbiosname specified override *SMBSERVER */ |
| 2171 | string = match_strdup(args); |
| 2172 | if (string == NULL) |
| 2173 | goto out_nomem; |
| 2174 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2175 | /* last byte, type, is 0x20 for servr type */ |
| 2176 | memset(vol->target_rfc1001_name, 0x20, |
| 2177 | RFC1001_NAME_LEN_WITH_NULL); |
| 2178 | |
| 2179 | /* BB are there cases in which a comma can be |
| 2180 | valid in this workstation netbios name |
| 2181 | (and need special handling)? */ |
| 2182 | |
| 2183 | /* user or mount helper must uppercase the |
| 2184 | netbios name */ |
| 2185 | for (i = 0; i < 15; i++) { |
| 2186 | if (string[i] == 0) |
| 2187 | break; |
| 2188 | vol->target_rfc1001_name[i] = string[i]; |
| 2189 | } |
| 2190 | /* The string has 16th byte zero still from |
| 2191 | set at top of the function */ |
| 2192 | if (i == RFC1001_NAME_LEN && string[i] != 0) |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2193 | pr_warn("CIFS: server netbiosname longer than 15 truncated.\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2194 | break; |
| 2195 | case Opt_ver: |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2196 | /* version of mount userspace tools, not dialect */ |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2197 | string = match_strdup(args); |
| 2198 | if (string == NULL) |
| 2199 | goto out_nomem; |
| 2200 | |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2201 | /* If interface changes in mount.cifs bump to new ver */ |
Rasmus Villemoes | 87e747c | 2014-10-13 15:54:35 -0700 | [diff] [blame] | 2202 | if (strncasecmp(string, "1", 1) == 0) { |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2203 | if (strlen(string) > 1) { |
| 2204 | pr_warn("Bad mount helper ver=%s. Did " |
| 2205 | "you want SMB1 (CIFS) dialect " |
| 2206 | "and mean to type vers=1.0 " |
| 2207 | "instead?\n", string); |
| 2208 | goto cifs_parse_mount_err; |
| 2209 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2210 | /* This is the default */ |
| 2211 | break; |
| 2212 | } |
| 2213 | /* For all other value, error */ |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2214 | pr_warn("CIFS: Invalid mount helper version specified\n"); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2215 | goto cifs_parse_mount_err; |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2216 | case Opt_vers: |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2217 | /* protocol version (dialect) */ |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2218 | string = match_strdup(args); |
| 2219 | if (string == NULL) |
| 2220 | goto out_nomem; |
| 2221 | |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 2222 | if (cifs_parse_smb_version(string, vol, is_smb3) != 0) |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2223 | goto cifs_parse_mount_err; |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2224 | got_version = true; |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2225 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2226 | case Opt_sec: |
| 2227 | string = match_strdup(args); |
| 2228 | if (string == NULL) |
| 2229 | goto out_nomem; |
| 2230 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2231 | if (cifs_parse_security_flavors(string, vol) != 0) |
| 2232 | goto cifs_parse_mount_err; |
| 2233 | break; |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 2234 | case Opt_cache: |
| 2235 | string = match_strdup(args); |
| 2236 | if (string == NULL) |
| 2237 | goto out_nomem; |
| 2238 | |
| 2239 | if (cifs_parse_cache_flavor(string, vol) != 0) |
| 2240 | goto cifs_parse_mount_err; |
| 2241 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2242 | default: |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2243 | /* |
| 2244 | * An option we don't recognize. Save it off for later |
| 2245 | * if we haven't already found one |
| 2246 | */ |
| 2247 | if (!invalid) |
| 2248 | invalid = data; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2249 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2251 | /* Free up any allocated string */ |
| 2252 | kfree(string); |
| 2253 | string = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | } |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 2255 | |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2256 | if (!sloppy && invalid) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2257 | pr_err("CIFS: Unknown mount option \"%s\"\n", invalid); |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2258 | goto cifs_parse_mount_err; |
| 2259 | } |
| 2260 | |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 2261 | if (vol->rdma && vol->vals->protocol_id < SMB30_PROT_ID) { |
| 2262 | cifs_dbg(VFS, "SMB Direct requires Version >=3.0\n"); |
| 2263 | goto cifs_parse_mount_err; |
| 2264 | } |
| 2265 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2266 | #ifndef CONFIG_KEYS |
| 2267 | /* Muliuser mounts require CONFIG_KEYS support */ |
| 2268 | if (vol->multiuser) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2269 | cifs_dbg(VFS, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n"); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2270 | goto cifs_parse_mount_err; |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 2271 | } |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2272 | #endif |
Jeff Layton | e5e69ab | 2012-11-25 08:00:42 -0500 | [diff] [blame] | 2273 | if (!vol->UNC) { |
Jeff Layton | 37d4f99 | 2013-05-24 07:40:05 -0400 | [diff] [blame] | 2274 | cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n"); |
Jeff Layton | e5e69ab | 2012-11-25 08:00:42 -0500 | [diff] [blame] | 2275 | goto cifs_parse_mount_err; |
| 2276 | } |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 2277 | |
Jeff Layton | 62a1a43 | 2012-12-10 06:10:45 -0500 | [diff] [blame] | 2278 | /* make sure UNC has a share name */ |
| 2279 | if (!strchr(vol->UNC + 3, '\\')) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2280 | cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n"); |
Jeff Layton | 62a1a43 | 2012-12-10 06:10:45 -0500 | [diff] [blame] | 2281 | goto cifs_parse_mount_err; |
| 2282 | } |
| 2283 | |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2284 | if (!got_ip) { |
Daniel N Pettersson | 29bb315 | 2017-04-27 11:32:36 +0200 | [diff] [blame] | 2285 | int len; |
| 2286 | const char *slash; |
| 2287 | |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2288 | /* No ip= option specified? Try to get it from UNC */ |
Daniel N Pettersson | 29bb315 | 2017-04-27 11:32:36 +0200 | [diff] [blame] | 2289 | /* Use the address part of the UNC. */ |
| 2290 | slash = strchr(&vol->UNC[2], '\\'); |
| 2291 | len = slash - &vol->UNC[2]; |
| 2292 | if (!cifs_convert_address(dstaddr, &vol->UNC[2], len)) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2293 | pr_err("Unable to determine destination address.\n"); |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2294 | goto cifs_parse_mount_err; |
| 2295 | } |
| 2296 | } |
| 2297 | |
| 2298 | /* set the port that we got earlier */ |
| 2299 | cifs_set_port(dstaddr, port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2300 | |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 2301 | if (uid_specified) |
| 2302 | vol->override_uid = override_uid; |
| 2303 | else if (override_uid == 1) |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2304 | pr_notice("CIFS: ignoring forceuid mount option specified with no uid= option.\n"); |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 2305 | |
| 2306 | if (gid_specified) |
| 2307 | vol->override_gid = override_gid; |
| 2308 | else if (override_gid == 1) |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2309 | pr_notice("CIFS: ignoring forcegid mount option specified with no gid= option.\n"); |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 2310 | |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2311 | if (got_version == false) |
| 2312 | pr_warn("No dialect specified on mount. Default has changed to " |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 2313 | "a more secure dialect, SMB2.1 or later (e.g. SMB3), from CIFS " |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2314 | "(SMB1). To use the less secure SMB1 dialect to access " |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 2315 | "old servers which do not support SMB3 (or SMB2.1) specify vers=1.0" |
| 2316 | " on mount.\n"); |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2317 | |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2318 | kfree(mountdata_copy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | return 0; |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2320 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2321 | out_nomem: |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2322 | pr_warn("Could not allocate temporary buffer\n"); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2323 | cifs_parse_mount_err: |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2324 | kfree(string); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2325 | kfree(mountdata_copy); |
| 2326 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | } |
| 2328 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2329 | /** Returns true if srcaddr isn't specified and rhs isn't |
| 2330 | * specified, or if srcaddr is specified and |
| 2331 | * matches the IP address of the rhs argument. |
| 2332 | */ |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2333 | static bool |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2334 | srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs) |
| 2335 | { |
| 2336 | switch (srcaddr->sa_family) { |
| 2337 | case AF_UNSPEC: |
| 2338 | return (rhs->sa_family == AF_UNSPEC); |
| 2339 | case AF_INET: { |
| 2340 | struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr; |
| 2341 | struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs; |
| 2342 | return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr); |
| 2343 | } |
| 2344 | case AF_INET6: { |
| 2345 | struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr; |
Nickolai Zeldovich | e3e2775 | 2013-01-16 21:36:17 -0500 | [diff] [blame] | 2346 | struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs; |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2347 | return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr); |
| 2348 | } |
| 2349 | default: |
| 2350 | WARN_ON(1); |
| 2351 | return false; /* don't expect to be here */ |
| 2352 | } |
| 2353 | } |
| 2354 | |
Pavel Shilovsky | 4b88613 | 2010-12-13 22:18:07 +0300 | [diff] [blame] | 2355 | /* |
| 2356 | * If no port is specified in addr structure, we try to match with 445 port |
| 2357 | * and if it fails - with 139 ports. It should be called only if address |
| 2358 | * families of server and addr are equal. |
| 2359 | */ |
| 2360 | static bool |
| 2361 | match_port(struct TCP_Server_Info *server, struct sockaddr *addr) |
| 2362 | { |
Steve French | 6da9791 | 2011-03-13 18:55:55 +0000 | [diff] [blame] | 2363 | __be16 port, *sport; |
Pavel Shilovsky | 4b88613 | 2010-12-13 22:18:07 +0300 | [diff] [blame] | 2364 | |
| 2365 | switch (addr->sa_family) { |
| 2366 | case AF_INET: |
| 2367 | sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port; |
| 2368 | port = ((struct sockaddr_in *) addr)->sin_port; |
| 2369 | break; |
| 2370 | case AF_INET6: |
| 2371 | sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port; |
| 2372 | port = ((struct sockaddr_in6 *) addr)->sin6_port; |
| 2373 | break; |
| 2374 | default: |
| 2375 | WARN_ON(1); |
| 2376 | return false; |
| 2377 | } |
| 2378 | |
| 2379 | if (!port) { |
| 2380 | port = htons(CIFS_PORT); |
| 2381 | if (port == *sport) |
| 2382 | return true; |
| 2383 | |
| 2384 | port = htons(RFC1001_PORT); |
| 2385 | } |
| 2386 | |
| 2387 | return port == *sport; |
| 2388 | } |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2389 | |
| 2390 | static bool |
| 2391 | match_address(struct TCP_Server_Info *server, struct sockaddr *addr, |
| 2392 | struct sockaddr *srcaddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | { |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2394 | switch (addr->sa_family) { |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2395 | case AF_INET: { |
| 2396 | struct sockaddr_in *addr4 = (struct sockaddr_in *)addr; |
| 2397 | struct sockaddr_in *srv_addr4 = |
| 2398 | (struct sockaddr_in *)&server->dstaddr; |
| 2399 | |
| 2400 | if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr) |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2401 | return false; |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2402 | break; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2403 | } |
| 2404 | case AF_INET6: { |
| 2405 | struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr; |
| 2406 | struct sockaddr_in6 *srv_addr6 = |
| 2407 | (struct sockaddr_in6 *)&server->dstaddr; |
| 2408 | |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2409 | if (!ipv6_addr_equal(&addr6->sin6_addr, |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2410 | &srv_addr6->sin6_addr)) |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2411 | return false; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2412 | if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id) |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2413 | return false; |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2414 | break; |
| 2415 | } |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2416 | default: |
| 2417 | WARN_ON(1); |
| 2418 | return false; /* don't expect to be here */ |
| 2419 | } |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2420 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2421 | if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr)) |
| 2422 | return false; |
| 2423 | |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2424 | return true; |
| 2425 | } |
| 2426 | |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2427 | static bool |
| 2428 | match_security(struct TCP_Server_Info *server, struct smb_vol *vol) |
| 2429 | { |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 2430 | /* |
| 2431 | * The select_sectype function should either return the vol->sectype |
| 2432 | * that was specified, or "Unspecified" if that sectype was not |
| 2433 | * compatible with the given NEGOTIATE request. |
| 2434 | */ |
Sachin Prabhu | ef65aae | 2017-01-18 15:35:57 +0530 | [diff] [blame] | 2435 | if (server->ops->select_sectype(server, vol->sectype) |
| 2436 | == Unspecified) |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2437 | return false; |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2438 | |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 2439 | /* |
| 2440 | * Now check if signing mode is acceptable. No need to check |
| 2441 | * global_secflags at this point since if MUST_SIGN is set then |
| 2442 | * the server->sign had better be too. |
| 2443 | */ |
Jeff Layton | 38d77c5 | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 2444 | if (vol->sign && !server->sign) |
| 2445 | return false; |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2446 | |
| 2447 | return true; |
| 2448 | } |
| 2449 | |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2450 | static int match_server(struct TCP_Server_Info *server, struct smb_vol *vol) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2451 | { |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2452 | struct sockaddr *addr = (struct sockaddr *)&vol->dstaddr; |
| 2453 | |
Jeff Layton | a0b3df5 | 2013-05-24 07:40:59 -0400 | [diff] [blame] | 2454 | if (vol->nosharesock) |
| 2455 | return 0; |
| 2456 | |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 2457 | /* BB update this for smb3any and default case */ |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2458 | if ((server->vals != vol->vals) || (server->ops != vol->ops)) |
| 2459 | return 0; |
| 2460 | |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2461 | if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns)) |
| 2462 | return 0; |
| 2463 | |
| 2464 | if (!match_address(server, addr, |
| 2465 | (struct sockaddr *)&vol->srcaddr)) |
| 2466 | return 0; |
| 2467 | |
| 2468 | if (!match_port(server, addr)) |
| 2469 | return 0; |
| 2470 | |
| 2471 | if (!match_security(server, vol)) |
| 2472 | return 0; |
| 2473 | |
Rabin Vincent | b782fcc | 2016-07-19 09:25:45 +0200 | [diff] [blame] | 2474 | if (server->echo_interval != vol->echo_interval * HZ) |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 2475 | return 0; |
| 2476 | |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 2477 | if (server->rdma != vol->rdma) |
| 2478 | return 0; |
| 2479 | |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2480 | return 1; |
| 2481 | } |
| 2482 | |
Paulo Alcantara | 54be1f6 | 2018-11-14 16:01:21 -0200 | [diff] [blame] | 2483 | struct TCP_Server_Info * |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2484 | cifs_find_tcp_session(struct smb_vol *vol) |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2485 | { |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2486 | struct TCP_Server_Info *server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2487 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2488 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2489 | list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2490 | if (!match_server(server, vol)) |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2491 | continue; |
| 2492 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2493 | ++server->srv_count; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2494 | spin_unlock(&cifs_tcp_ses_lock); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2495 | cifs_dbg(FYI, "Existing tcp session with server found\n"); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2496 | return server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2497 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2498 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2499 | return NULL; |
| 2500 | } |
| 2501 | |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2502 | void |
| 2503 | cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2504 | { |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 2505 | struct task_struct *task; |
| 2506 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2507 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2508 | if (--server->srv_count > 0) { |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2509 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2510 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | } |
Steve French | dea570e0 | 2008-05-06 22:05:51 +0000 | [diff] [blame] | 2512 | |
Rob Landley | f1d0c99 | 2011-01-22 15:44:05 -0600 | [diff] [blame] | 2513 | put_net(cifs_net_ns(server)); |
| 2514 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2515 | list_del_init(&server->tcp_ses_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2516 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2517 | |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 2518 | cancel_delayed_work_sync(&server->echo); |
| 2519 | |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2520 | if (from_reconnect) |
| 2521 | /* |
| 2522 | * Avoid deadlock here: reconnect work calls |
| 2523 | * cifs_put_tcp_session() at its end. Need to be sure |
| 2524 | * that reconnect work does nothing with server pointer after |
| 2525 | * that step. |
| 2526 | */ |
| 2527 | cancel_delayed_work(&server->reconnect); |
| 2528 | else |
| 2529 | cancel_delayed_work_sync(&server->reconnect); |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2530 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2531 | spin_lock(&GlobalMid_Lock); |
| 2532 | server->tcpStatus = CifsExiting; |
| 2533 | spin_unlock(&GlobalMid_Lock); |
| 2534 | |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 2535 | cifs_crypto_secmech_release(server); |
Suresh Jayaraman | 488f1d2d | 2010-07-05 18:12:15 +0530 | [diff] [blame] | 2536 | cifs_fscache_release_client_cookie(server); |
| 2537 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 2538 | kfree(server->session_key.response); |
| 2539 | server->session_key.response = NULL; |
| 2540 | server->session_key.len = 0; |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 2541 | |
| 2542 | task = xchg(&server->tsk, NULL); |
| 2543 | if (task) |
| 2544 | force_sig(SIGKILL, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2545 | } |
| 2546 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2547 | static struct TCP_Server_Info * |
| 2548 | cifs_get_tcp_session(struct smb_vol *volume_info) |
| 2549 | { |
| 2550 | struct TCP_Server_Info *tcp_ses = NULL; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2551 | int rc; |
| 2552 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2553 | cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2554 | |
| 2555 | /* see if we already have a matching tcp_ses */ |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2556 | tcp_ses = cifs_find_tcp_session(volume_info); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2557 | if (tcp_ses) |
| 2558 | return tcp_ses; |
| 2559 | |
| 2560 | tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL); |
| 2561 | if (!tcp_ses) { |
| 2562 | rc = -ENOMEM; |
| 2563 | goto out_err; |
| 2564 | } |
| 2565 | |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2566 | tcp_ses->ops = volume_info->ops; |
| 2567 | tcp_ses->vals = volume_info->vals; |
Rob Landley | f1d0c99 | 2011-01-22 15:44:05 -0600 | [diff] [blame] | 2568 | cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns)); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2569 | tcp_ses->hostname = extract_hostname(volume_info->UNC); |
| 2570 | if (IS_ERR(tcp_ses->hostname)) { |
| 2571 | rc = PTR_ERR(tcp_ses->hostname); |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 2572 | goto out_err_crypto_release; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2573 | } |
| 2574 | |
| 2575 | tcp_ses->noblocksnd = volume_info->noblocksnd; |
| 2576 | tcp_ses->noautotune = volume_info->noautotune; |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 2577 | tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay; |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 2578 | tcp_ses->rdma = volume_info->rdma; |
Pavel Shilovsky | fc40f9c | 2012-02-17 17:09:12 +0300 | [diff] [blame] | 2579 | tcp_ses->in_flight = 0; |
Pavel Shilovsky | 2d86dbc | 2012-02-06 15:59:18 +0400 | [diff] [blame] | 2580 | tcp_ses->credits = 1; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2581 | init_waitqueue_head(&tcp_ses->response_q); |
| 2582 | init_waitqueue_head(&tcp_ses->request_q); |
| 2583 | INIT_LIST_HEAD(&tcp_ses->pending_mid_q); |
| 2584 | mutex_init(&tcp_ses->srv_mutex); |
| 2585 | memcpy(tcp_ses->workstation_RFC1001_name, |
| 2586 | volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL); |
| 2587 | memcpy(tcp_ses->server_RFC1001_name, |
| 2588 | volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL); |
Shirish Pargaonkar | 5d0d288 | 2010-10-13 18:15:00 -0500 | [diff] [blame] | 2589 | tcp_ses->session_estab = false; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2590 | tcp_ses->sequence_number = 0; |
Steve French | 9e1a37d | 2018-09-19 02:38:17 -0500 | [diff] [blame] | 2591 | tcp_ses->reconnect_instance = 0; |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 2592 | tcp_ses->lstrp = jiffies; |
Jeff Layton | 58fa015 | 2012-05-01 17:41:16 -0400 | [diff] [blame] | 2593 | spin_lock_init(&tcp_ses->req_lock); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2594 | INIT_LIST_HEAD(&tcp_ses->tcp_ses_list); |
| 2595 | INIT_LIST_HEAD(&tcp_ses->smb_ses_list); |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 2596 | INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request); |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2597 | INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server); |
| 2598 | mutex_init(&tcp_ses->reconnect_mutex); |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2599 | memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr, |
| 2600 | sizeof(tcp_ses->srcaddr)); |
| 2601 | memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr, |
| 2602 | sizeof(tcp_ses->dstaddr)); |
Steve French | fa70b87 | 2016-09-22 00:39:34 -0500 | [diff] [blame] | 2603 | generate_random_uuid(tcp_ses->client_guid); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2604 | /* |
| 2605 | * at this point we are the only ones with the pointer |
| 2606 | * to the struct since the kernel thread not created yet |
| 2607 | * no need to spinlock this init of tcpStatus or srv_count |
| 2608 | */ |
| 2609 | tcp_ses->tcpStatus = CifsNew; |
| 2610 | ++tcp_ses->srv_count; |
| 2611 | |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 2612 | if (volume_info->echo_interval >= SMB_ECHO_INTERVAL_MIN && |
| 2613 | volume_info->echo_interval <= SMB_ECHO_INTERVAL_MAX) |
| 2614 | tcp_ses->echo_interval = volume_info->echo_interval * HZ; |
| 2615 | else |
| 2616 | tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ; |
Long Li | 2f89464 | 2017-11-22 17:38:34 -0700 | [diff] [blame] | 2617 | if (tcp_ses->rdma) { |
| 2618 | #ifndef CONFIG_CIFS_SMB_DIRECT |
| 2619 | cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n"); |
| 2620 | rc = -ENOENT; |
| 2621 | goto out_err_crypto_release; |
| 2622 | #endif |
| 2623 | tcp_ses->smbd_conn = smbd_get_connection( |
| 2624 | tcp_ses, (struct sockaddr *)&volume_info->dstaddr); |
| 2625 | if (tcp_ses->smbd_conn) { |
| 2626 | cifs_dbg(VFS, "RDMA transport established\n"); |
| 2627 | rc = 0; |
| 2628 | goto smbd_connected; |
| 2629 | } else { |
| 2630 | rc = -ENOENT; |
| 2631 | goto out_err_crypto_release; |
| 2632 | } |
| 2633 | } |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2634 | rc = ip_connect(tcp_ses); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2635 | if (rc < 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2636 | cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n"); |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 2637 | goto out_err_crypto_release; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2638 | } |
Long Li | 2f89464 | 2017-11-22 17:38:34 -0700 | [diff] [blame] | 2639 | smbd_connected: |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2640 | /* |
| 2641 | * since we're in a cifs function already, we know that |
| 2642 | * this will succeed. No need for try_module_get(). |
| 2643 | */ |
| 2644 | __module_get(THIS_MODULE); |
Al Viro | 7c97c20 | 2011-06-21 08:51:28 -0400 | [diff] [blame] | 2645 | tcp_ses->tsk = kthread_run(cifs_demultiplex_thread, |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2646 | tcp_ses, "cifsd"); |
| 2647 | if (IS_ERR(tcp_ses->tsk)) { |
| 2648 | rc = PTR_ERR(tcp_ses->tsk); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2649 | cifs_dbg(VFS, "error %d create cifsd thread\n", rc); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2650 | module_put(THIS_MODULE); |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 2651 | goto out_err_crypto_release; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2652 | } |
Steve French | fd88ce9 | 2011-04-12 01:01:14 +0000 | [diff] [blame] | 2653 | tcp_ses->tcpStatus = CifsNeedNegotiate; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2654 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 2655 | tcp_ses->nr_targets = 1; |
| 2656 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2657 | /* thread spawned, put it on the list */ |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2658 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2659 | list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2660 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2661 | |
Suresh Jayaraman | 488f1d2d | 2010-07-05 18:12:15 +0530 | [diff] [blame] | 2662 | cifs_fscache_get_client_cookie(tcp_ses); |
| 2663 | |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 2664 | /* queue echo request delayed work */ |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 2665 | queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval); |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 2666 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2667 | return tcp_ses; |
| 2668 | |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 2669 | out_err_crypto_release: |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 2670 | cifs_crypto_secmech_release(tcp_ses); |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 2671 | |
Rob Landley | f1d0c99 | 2011-01-22 15:44:05 -0600 | [diff] [blame] | 2672 | put_net(cifs_net_ns(tcp_ses)); |
| 2673 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2674 | out_err: |
| 2675 | if (tcp_ses) { |
Steve French | 8347a5c | 2009-10-06 18:31:29 +0000 | [diff] [blame] | 2676 | if (!IS_ERR(tcp_ses->hostname)) |
| 2677 | kfree(tcp_ses->hostname); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2678 | if (tcp_ses->ssocket) |
| 2679 | sock_release(tcp_ses->ssocket); |
| 2680 | kfree(tcp_ses); |
| 2681 | } |
| 2682 | return ERR_PTR(rc); |
| 2683 | } |
| 2684 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2685 | static int match_session(struct cifs_ses *ses, struct smb_vol *vol) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2686 | { |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 2687 | if (vol->sectype != Unspecified && |
| 2688 | vol->sectype != ses->sectype) |
| 2689 | return 0; |
| 2690 | |
| 2691 | switch (ses->sectype) { |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2692 | case Kerberos: |
Eric W. Biederman | 64ed39d | 2013-02-06 02:30:39 -0800 | [diff] [blame] | 2693 | if (!uid_eq(vol->cred_uid, ses->cred_uid)) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2694 | return 0; |
| 2695 | break; |
| 2696 | default: |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2697 | /* NULL username means anonymous session */ |
| 2698 | if (ses->user_name == NULL) { |
| 2699 | if (!vol->nullauth) |
| 2700 | return 0; |
| 2701 | break; |
| 2702 | } |
| 2703 | |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2704 | /* anything else takes username/password */ |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2705 | if (strncmp(ses->user_name, |
| 2706 | vol->username ? vol->username : "", |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 2707 | CIFS_MAX_USERNAME_LEN)) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2708 | return 0; |
Jeff Layton | 08b37d5 | 2014-05-23 06:53:10 -0400 | [diff] [blame] | 2709 | if ((vol->username && strlen(vol->username) != 0) && |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2710 | ses->password != NULL && |
| 2711 | strncmp(ses->password, |
| 2712 | vol->password ? vol->password : "", |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 2713 | CIFS_MAX_PASSWORD_LEN)) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2714 | return 0; |
| 2715 | } |
| 2716 | return 1; |
| 2717 | } |
| 2718 | |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2719 | /** |
| 2720 | * cifs_setup_ipc - helper to setup the IPC tcon for the session |
| 2721 | * |
| 2722 | * A new IPC connection is made and stored in the session |
| 2723 | * tcon_ipc. The IPC tcon has the same lifetime as the session. |
| 2724 | */ |
| 2725 | static int |
| 2726 | cifs_setup_ipc(struct cifs_ses *ses, struct smb_vol *volume_info) |
| 2727 | { |
| 2728 | int rc = 0, xid; |
| 2729 | struct cifs_tcon *tcon; |
| 2730 | struct nls_table *nls_codepage; |
| 2731 | char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0}; |
| 2732 | bool seal = false; |
| 2733 | |
| 2734 | /* |
| 2735 | * If the mount request that resulted in the creation of the |
| 2736 | * session requires encryption, force IPC to be encrypted too. |
| 2737 | */ |
| 2738 | if (volume_info->seal) { |
| 2739 | if (ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION) |
| 2740 | seal = true; |
| 2741 | else { |
| 2742 | cifs_dbg(VFS, |
| 2743 | "IPC: server doesn't support encryption\n"); |
| 2744 | return -EOPNOTSUPP; |
| 2745 | } |
| 2746 | } |
| 2747 | |
| 2748 | tcon = tconInfoAlloc(); |
| 2749 | if (tcon == NULL) |
| 2750 | return -ENOMEM; |
| 2751 | |
Thomas Werschlein | 395a207 | 2018-08-30 18:29:20 +0200 | [diff] [blame] | 2752 | snprintf(unc, sizeof(unc), "\\\\%s\\IPC$", ses->server->hostname); |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2753 | |
| 2754 | /* cannot fail */ |
| 2755 | nls_codepage = load_nls_default(); |
| 2756 | |
| 2757 | xid = get_xid(); |
| 2758 | tcon->ses = ses; |
| 2759 | tcon->ipc = true; |
| 2760 | tcon->seal = seal; |
| 2761 | rc = ses->server->ops->tree_connect(xid, ses, unc, tcon, nls_codepage); |
| 2762 | free_xid(xid); |
| 2763 | |
| 2764 | if (rc) { |
| 2765 | cifs_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc); |
| 2766 | tconInfoFree(tcon); |
| 2767 | goto out; |
| 2768 | } |
| 2769 | |
| 2770 | cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid); |
| 2771 | |
| 2772 | ses->tcon_ipc = tcon; |
| 2773 | out: |
| 2774 | unload_nls(nls_codepage); |
| 2775 | return rc; |
| 2776 | } |
| 2777 | |
| 2778 | /** |
| 2779 | * cifs_free_ipc - helper to release the session IPC tcon |
| 2780 | * |
| 2781 | * Needs to be called everytime a session is destroyed |
| 2782 | */ |
| 2783 | static int |
| 2784 | cifs_free_ipc(struct cifs_ses *ses) |
| 2785 | { |
| 2786 | int rc = 0, xid; |
| 2787 | struct cifs_tcon *tcon = ses->tcon_ipc; |
| 2788 | |
| 2789 | if (tcon == NULL) |
| 2790 | return 0; |
| 2791 | |
| 2792 | if (ses->server->ops->tree_disconnect) { |
| 2793 | xid = get_xid(); |
| 2794 | rc = ses->server->ops->tree_disconnect(xid, tcon); |
| 2795 | free_xid(xid); |
| 2796 | } |
| 2797 | |
| 2798 | if (rc) |
| 2799 | cifs_dbg(FYI, "failed to disconnect IPC tcon (rc=%d)\n", rc); |
| 2800 | |
| 2801 | tconInfoFree(tcon); |
| 2802 | ses->tcon_ipc = NULL; |
| 2803 | return rc; |
| 2804 | } |
| 2805 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2806 | static struct cifs_ses * |
Jeff Layton | 4ff67b7 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2807 | cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb_vol *vol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2809 | struct cifs_ses *ses; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2811 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 4ff67b7 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2812 | list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 2813 | if (ses->status == CifsExiting) |
| 2814 | continue; |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2815 | if (!match_session(ses, vol)) |
| 2816 | continue; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2817 | ++ses->ses_count; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2818 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2819 | return ses; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2820 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2821 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | return NULL; |
| 2823 | } |
| 2824 | |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2825 | static void |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2826 | cifs_put_smb_ses(struct cifs_ses *ses) |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2827 | { |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 2828 | unsigned int rc, xid; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2829 | struct TCP_Server_Info *server = ses->server; |
| 2830 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2831 | cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count); |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 2832 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2833 | spin_lock(&cifs_tcp_ses_lock); |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 2834 | if (ses->status == CifsExiting) { |
| 2835 | spin_unlock(&cifs_tcp_ses_lock); |
| 2836 | return; |
| 2837 | } |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2838 | if (--ses->ses_count > 0) { |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2839 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2840 | return; |
| 2841 | } |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 2842 | if (ses->status == CifsGood) |
| 2843 | ses->status = CifsExiting; |
| 2844 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2845 | |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2846 | cifs_free_ipc(ses); |
| 2847 | |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 2848 | if (ses->status == CifsExiting && server->ops->logoff) { |
| 2849 | xid = get_xid(); |
| 2850 | rc = server->ops->logoff(xid, ses); |
| 2851 | if (rc) |
| 2852 | cifs_dbg(VFS, "%s: Session Logoff failure rc=%d\n", |
| 2853 | __func__, rc); |
| 2854 | _free_xid(xid); |
| 2855 | } |
| 2856 | |
| 2857 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2858 | list_del_init(&ses->smb_ses_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2859 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2860 | |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2861 | sesInfoFree(ses); |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2862 | cifs_put_tcp_session(server, 0); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2863 | } |
| 2864 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2865 | #ifdef CONFIG_KEYS |
| 2866 | |
Chen Gang | 057d633 | 2013-07-19 09:01:36 +0800 | [diff] [blame] | 2867 | /* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */ |
| 2868 | #define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1) |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2869 | |
| 2870 | /* Populate username and pw fields from keyring if possible */ |
| 2871 | static int |
| 2872 | cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses) |
| 2873 | { |
| 2874 | int rc = 0; |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 2875 | const char *delim, *payload; |
| 2876 | char *desc; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2877 | ssize_t len; |
| 2878 | struct key *key; |
| 2879 | struct TCP_Server_Info *server = ses->server; |
| 2880 | struct sockaddr_in *sa; |
| 2881 | struct sockaddr_in6 *sa6; |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 2882 | const struct user_key_payload *upayload; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2883 | |
| 2884 | desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL); |
| 2885 | if (!desc) |
| 2886 | return -ENOMEM; |
| 2887 | |
| 2888 | /* try to find an address key first */ |
| 2889 | switch (server->dstaddr.ss_family) { |
| 2890 | case AF_INET: |
| 2891 | sa = (struct sockaddr_in *)&server->dstaddr; |
| 2892 | sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr); |
| 2893 | break; |
| 2894 | case AF_INET6: |
| 2895 | sa6 = (struct sockaddr_in6 *)&server->dstaddr; |
| 2896 | sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr); |
| 2897 | break; |
| 2898 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2899 | cifs_dbg(FYI, "Bad ss_family (%hu)\n", |
| 2900 | server->dstaddr.ss_family); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2901 | rc = -EINVAL; |
| 2902 | goto out_err; |
| 2903 | } |
| 2904 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2905 | cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2906 | key = request_key(&key_type_logon, desc, ""); |
| 2907 | if (IS_ERR(key)) { |
| 2908 | if (!ses->domainName) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2909 | cifs_dbg(FYI, "domainName is NULL\n"); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2910 | rc = PTR_ERR(key); |
| 2911 | goto out_err; |
| 2912 | } |
| 2913 | |
| 2914 | /* didn't work, try to find a domain key */ |
| 2915 | sprintf(desc, "cifs:d:%s", ses->domainName); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2916 | cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2917 | key = request_key(&key_type_logon, desc, ""); |
| 2918 | if (IS_ERR(key)) { |
| 2919 | rc = PTR_ERR(key); |
| 2920 | goto out_err; |
| 2921 | } |
| 2922 | } |
| 2923 | |
| 2924 | down_read(&key->sem); |
David Howells | 0837e49 | 2017-03-01 15:11:23 +0000 | [diff] [blame] | 2925 | upayload = user_key_payload_locked(key); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2926 | if (IS_ERR_OR_NULL(upayload)) { |
Jeff Layton | 4edc53c | 2012-02-07 06:30:51 -0500 | [diff] [blame] | 2927 | rc = upayload ? PTR_ERR(upayload) : -EINVAL; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2928 | goto out_key_put; |
| 2929 | } |
| 2930 | |
| 2931 | /* find first : in payload */ |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 2932 | payload = upayload->data; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2933 | delim = strnchr(payload, upayload->datalen, ':'); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2934 | cifs_dbg(FYI, "payload=%s\n", payload); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2935 | if (!delim) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2936 | cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n", |
| 2937 | upayload->datalen); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2938 | rc = -EINVAL; |
| 2939 | goto out_key_put; |
| 2940 | } |
| 2941 | |
| 2942 | len = delim - payload; |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 2943 | if (len > CIFS_MAX_USERNAME_LEN || len <= 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2944 | cifs_dbg(FYI, "Bad value from username search (len=%zd)\n", |
| 2945 | len); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2946 | rc = -EINVAL; |
| 2947 | goto out_key_put; |
| 2948 | } |
| 2949 | |
| 2950 | vol->username = kstrndup(payload, len, GFP_KERNEL); |
| 2951 | if (!vol->username) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2952 | cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n", |
| 2953 | len); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2954 | rc = -ENOMEM; |
| 2955 | goto out_key_put; |
| 2956 | } |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2957 | cifs_dbg(FYI, "%s: username=%s\n", __func__, vol->username); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2958 | |
| 2959 | len = key->datalen - (len + 1); |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 2960 | if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2961 | cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2962 | rc = -EINVAL; |
| 2963 | kfree(vol->username); |
| 2964 | vol->username = NULL; |
| 2965 | goto out_key_put; |
| 2966 | } |
| 2967 | |
| 2968 | ++delim; |
| 2969 | vol->password = kstrndup(delim, len, GFP_KERNEL); |
| 2970 | if (!vol->password) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2971 | cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n", |
| 2972 | len); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2973 | rc = -ENOMEM; |
| 2974 | kfree(vol->username); |
| 2975 | vol->username = NULL; |
| 2976 | goto out_key_put; |
| 2977 | } |
| 2978 | |
| 2979 | out_key_put: |
| 2980 | up_read(&key->sem); |
| 2981 | key_put(key); |
| 2982 | out_err: |
| 2983 | kfree(desc); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2984 | cifs_dbg(FYI, "%s: returning %d\n", __func__, rc); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2985 | return rc; |
| 2986 | } |
| 2987 | #else /* ! CONFIG_KEYS */ |
| 2988 | static inline int |
| 2989 | cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)), |
| 2990 | struct cifs_ses *ses __attribute__((unused))) |
| 2991 | { |
| 2992 | return -ENOSYS; |
| 2993 | } |
| 2994 | #endif /* CONFIG_KEYS */ |
| 2995 | |
Aurelien Aptel | 4a1360d | 2018-01-25 18:47:52 +0100 | [diff] [blame] | 2996 | /** |
| 2997 | * cifs_get_smb_ses - get a session matching @volume_info data from @server |
| 2998 | * |
| 2999 | * This function assumes it is being called from cifs_mount() where we |
| 3000 | * already got a server reference (server refcount +1). See |
| 3001 | * cifs_get_tcon() for refcount explanations. |
| 3002 | */ |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3003 | static struct cifs_ses * |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3004 | cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info) |
| 3005 | { |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 3006 | int rc = -ENOMEM; |
| 3007 | unsigned int xid; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3008 | struct cifs_ses *ses; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3009 | struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr; |
| 3010 | struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr; |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3011 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3012 | xid = get_xid(); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3013 | |
Jeff Layton | 4ff67b7 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 3014 | ses = cifs_find_smb_ses(server, volume_info); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3015 | if (ses) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3016 | cifs_dbg(FYI, "Existing smb sess found (status=%d)\n", |
| 3017 | ses->status); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3018 | |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3019 | mutex_lock(&ses->session_mutex); |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 3020 | rc = cifs_negotiate_protocol(xid, ses); |
| 3021 | if (rc) { |
| 3022 | mutex_unlock(&ses->session_mutex); |
| 3023 | /* problem -- put our ses reference */ |
| 3024 | cifs_put_smb_ses(ses); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3025 | free_xid(xid); |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 3026 | return ERR_PTR(rc); |
| 3027 | } |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3028 | if (ses->need_reconnect) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3029 | cifs_dbg(FYI, "Session needs reconnect\n"); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3030 | rc = cifs_setup_session(xid, ses, |
| 3031 | volume_info->local_nls); |
| 3032 | if (rc) { |
| 3033 | mutex_unlock(&ses->session_mutex); |
| 3034 | /* problem -- put our reference */ |
| 3035 | cifs_put_smb_ses(ses); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3036 | free_xid(xid); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3037 | return ERR_PTR(rc); |
| 3038 | } |
| 3039 | } |
| 3040 | mutex_unlock(&ses->session_mutex); |
Jeff Layton | 460cf34 | 2010-09-14 11:38:24 -0400 | [diff] [blame] | 3041 | |
| 3042 | /* existing SMB ses has a server reference already */ |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 3043 | cifs_put_tcp_session(server, 0); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3044 | free_xid(xid); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3045 | return ses; |
| 3046 | } |
| 3047 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3048 | cifs_dbg(FYI, "Existing smb sess not found\n"); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3049 | ses = sesInfoAlloc(); |
| 3050 | if (ses == NULL) |
| 3051 | goto get_ses_fail; |
| 3052 | |
| 3053 | /* new SMB session uses our server ref */ |
| 3054 | ses->server = server; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3055 | if (server->dstaddr.ss_family == AF_INET6) |
| 3056 | sprintf(ses->serverName, "%pI6", &addr6->sin6_addr); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3057 | else |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3058 | sprintf(ses->serverName, "%pI4", &addr->sin_addr); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3059 | |
Steve French | 8727c8a | 2011-02-25 01:11:56 -0600 | [diff] [blame] | 3060 | if (volume_info->username) { |
| 3061 | ses->user_name = kstrdup(volume_info->username, GFP_KERNEL); |
| 3062 | if (!ses->user_name) |
| 3063 | goto get_ses_fail; |
| 3064 | } |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3065 | |
| 3066 | /* volume_info->password freed at unmount */ |
| 3067 | if (volume_info->password) { |
| 3068 | ses->password = kstrdup(volume_info->password, GFP_KERNEL); |
| 3069 | if (!ses->password) |
| 3070 | goto get_ses_fail; |
| 3071 | } |
| 3072 | if (volume_info->domainname) { |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 3073 | ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL); |
| 3074 | if (!ses->domainName) |
| 3075 | goto get_ses_fail; |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3076 | } |
Germano Percossi | 3956644 | 2016-12-15 12:31:18 +0530 | [diff] [blame] | 3077 | if (volume_info->domainauto) |
| 3078 | ses->domainAuto = volume_info->domainauto; |
Jeff Layton | 3e4b3e1 | 2010-07-19 18:00:17 -0400 | [diff] [blame] | 3079 | ses->cred_uid = volume_info->cred_uid; |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3080 | ses->linux_uid = volume_info->linux_uid; |
Steve French | d9b9420 | 2011-04-12 01:24:57 +0000 | [diff] [blame] | 3081 | |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 3082 | ses->sectype = volume_info->sectype; |
| 3083 | ses->sign = volume_info->sign; |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3084 | |
| 3085 | mutex_lock(&ses->session_mutex); |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 3086 | rc = cifs_negotiate_protocol(xid, ses); |
| 3087 | if (!rc) |
| 3088 | rc = cifs_setup_session(xid, ses, volume_info->local_nls); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3089 | mutex_unlock(&ses->session_mutex); |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 3090 | if (rc) |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3091 | goto get_ses_fail; |
| 3092 | |
| 3093 | /* success, put it on the list */ |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3094 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3095 | list_add(&ses->smb_ses_list, &server->smb_ses_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3096 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3097 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3098 | free_xid(xid); |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 3099 | |
| 3100 | cifs_setup_ipc(ses, volume_info); |
| 3101 | |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3102 | return ses; |
| 3103 | |
| 3104 | get_ses_fail: |
| 3105 | sesInfoFree(ses); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3106 | free_xid(xid); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3107 | return ERR_PTR(rc); |
| 3108 | } |
| 3109 | |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3110 | static int match_tcon(struct cifs_tcon *tcon, struct smb_vol *volume_info) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 3111 | { |
| 3112 | if (tcon->tidStatus == CifsExiting) |
| 3113 | return 0; |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3114 | if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE)) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 3115 | return 0; |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3116 | if (tcon->seal != volume_info->seal) |
| 3117 | return 0; |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3118 | if (tcon->snapshot_time != volume_info->snapshot_time) |
| 3119 | return 0; |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 3120 | return 1; |
| 3121 | } |
| 3122 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3123 | static struct cifs_tcon * |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3124 | cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3125 | { |
| 3126 | struct list_head *tmp; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3127 | struct cifs_tcon *tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3128 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3129 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3130 | list_for_each(tmp, &ses->tcon_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3131 | tcon = list_entry(tmp, struct cifs_tcon, tcon_list); |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3132 | if (!match_tcon(tcon, volume_info)) |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3133 | continue; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3134 | ++tcon->tc_count; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3135 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | return tcon; |
| 3137 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3138 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3139 | return NULL; |
| 3140 | } |
| 3141 | |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 3142 | void |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3143 | cifs_put_tcon(struct cifs_tcon *tcon) |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3144 | { |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3145 | unsigned int xid; |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 3146 | struct cifs_ses *ses; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3147 | |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 3148 | /* |
| 3149 | * IPC tcon share the lifetime of their session and are |
| 3150 | * destroyed in the session put function |
| 3151 | */ |
| 3152 | if (tcon == NULL || tcon->ipc) |
| 3153 | return; |
| 3154 | |
| 3155 | ses = tcon->ses; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3156 | cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3157 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3158 | if (--tcon->tc_count > 0) { |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3159 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3160 | return; |
| 3161 | } |
| 3162 | |
| 3163 | list_del_init(&tcon->tcon_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3164 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3165 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3166 | xid = get_xid(); |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3167 | if (ses->server->ops->tree_disconnect) |
| 3168 | ses->server->ops->tree_disconnect(xid, tcon); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3169 | _free_xid(xid); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3170 | |
Suresh Jayaraman | d03382c | 2010-07-05 18:12:27 +0530 | [diff] [blame] | 3171 | cifs_fscache_release_super_cookie(tcon); |
Steve French | 9f84159 | 2010-07-23 20:37:53 +0000 | [diff] [blame] | 3172 | tconInfoFree(tcon); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3173 | cifs_put_smb_ses(ses); |
| 3174 | } |
| 3175 | |
Aurelien Aptel | 4a1360d | 2018-01-25 18:47:52 +0100 | [diff] [blame] | 3176 | /** |
| 3177 | * cifs_get_tcon - get a tcon matching @volume_info data from @ses |
| 3178 | * |
| 3179 | * - tcon refcount is the number of mount points using the tcon. |
| 3180 | * - ses refcount is the number of tcon using the session. |
| 3181 | * |
| 3182 | * 1. This function assumes it is being called from cifs_mount() where |
| 3183 | * we already got a session reference (ses refcount +1). |
| 3184 | * |
| 3185 | * 2. Since we're in the context of adding a mount point, the end |
| 3186 | * result should be either: |
| 3187 | * |
| 3188 | * a) a new tcon already allocated with refcount=1 (1 mount point) and |
| 3189 | * its session refcount incremented (1 new tcon). This +1 was |
| 3190 | * already done in (1). |
| 3191 | * |
| 3192 | * b) an existing tcon with refcount+1 (add a mount point to it) and |
| 3193 | * identical ses refcount (no new tcon). Because of (1) we need to |
| 3194 | * decrement the ses refcount. |
| 3195 | */ |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3196 | static struct cifs_tcon * |
| 3197 | cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info) |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3198 | { |
| 3199 | int rc, xid; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3200 | struct cifs_tcon *tcon; |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3201 | |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3202 | tcon = cifs_find_tcon(ses, volume_info); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3203 | if (tcon) { |
Aurelien Aptel | 4a1360d | 2018-01-25 18:47:52 +0100 | [diff] [blame] | 3204 | /* |
| 3205 | * tcon has refcount already incremented but we need to |
| 3206 | * decrement extra ses reference gotten by caller (case b) |
| 3207 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3208 | cifs_dbg(FYI, "Found match on UNC path\n"); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3209 | cifs_put_smb_ses(ses); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3210 | return tcon; |
| 3211 | } |
| 3212 | |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3213 | if (!ses->server->ops->tree_connect) { |
| 3214 | rc = -ENOSYS; |
| 3215 | goto out_fail; |
| 3216 | } |
| 3217 | |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3218 | tcon = tconInfoAlloc(); |
| 3219 | if (tcon == NULL) { |
| 3220 | rc = -ENOMEM; |
| 3221 | goto out_fail; |
| 3222 | } |
| 3223 | |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3224 | if (volume_info->snapshot_time) { |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3225 | if (ses->server->vals->protocol_id == 0) { |
| 3226 | cifs_dbg(VFS, |
| 3227 | "Use SMB2 or later for snapshot mount option\n"); |
| 3228 | rc = -EOPNOTSUPP; |
| 3229 | goto out_fail; |
| 3230 | } else |
| 3231 | tcon->snapshot_time = volume_info->snapshot_time; |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3232 | } |
| 3233 | |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3234 | tcon->ses = ses; |
| 3235 | if (volume_info->password) { |
| 3236 | tcon->password = kstrdup(volume_info->password, GFP_KERNEL); |
| 3237 | if (!tcon->password) { |
| 3238 | rc = -ENOMEM; |
| 3239 | goto out_fail; |
| 3240 | } |
| 3241 | } |
| 3242 | |
Steve French | 23657ad | 2018-04-22 15:14:58 -0500 | [diff] [blame] | 3243 | if (volume_info->seal) { |
| 3244 | if (ses->server->vals->protocol_id == 0) { |
| 3245 | cifs_dbg(VFS, |
| 3246 | "SMB3 or later required for encryption\n"); |
| 3247 | rc = -EOPNOTSUPP; |
| 3248 | goto out_fail; |
| 3249 | } else if (tcon->ses->server->capabilities & |
| 3250 | SMB2_GLOBAL_CAP_ENCRYPTION) |
| 3251 | tcon->seal = true; |
| 3252 | else { |
| 3253 | cifs_dbg(VFS, "Encryption is not supported on share\n"); |
| 3254 | rc = -EOPNOTSUPP; |
| 3255 | goto out_fail; |
| 3256 | } |
| 3257 | } |
| 3258 | |
Steve French | 8505c8b | 2018-06-18 14:01:59 -0500 | [diff] [blame] | 3259 | if (volume_info->linux_ext) { |
| 3260 | if (ses->server->posix_ext_supported) { |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 3261 | tcon->posix_extensions = true; |
Steve French | 2fbb564 | 2018-06-12 12:11:31 -0500 | [diff] [blame] | 3262 | printk_once(KERN_WARNING |
| 3263 | "SMB3.11 POSIX Extensions are experimental\n"); |
Steve French | 8505c8b | 2018-06-18 14:01:59 -0500 | [diff] [blame] | 3264 | } else { |
| 3265 | cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions.\n"); |
| 3266 | rc = -EOPNOTSUPP; |
| 3267 | goto out_fail; |
Steve French | 2fbb564 | 2018-06-12 12:11:31 -0500 | [diff] [blame] | 3268 | } |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 3269 | } |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 3270 | |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3271 | /* |
| 3272 | * BB Do we need to wrap session_mutex around this TCon call and Unix |
| 3273 | * SetFS as we do on SessSetup and reconnect? |
| 3274 | */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3275 | xid = get_xid(); |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3276 | rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon, |
| 3277 | volume_info->local_nls); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3278 | free_xid(xid); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3279 | cifs_dbg(FYI, "Tcon rc = %d\n", rc); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3280 | if (rc) |
| 3281 | goto out_fail; |
| 3282 | |
Steve French | b618f00 | 2015-11-03 09:15:03 -0600 | [diff] [blame] | 3283 | tcon->use_persistent = false; |
| 3284 | /* check if SMB2 or later, CIFS does not support persistent handles */ |
| 3285 | if (volume_info->persistent) { |
| 3286 | if (ses->server->vals->protocol_id == 0) { |
| 3287 | cifs_dbg(VFS, |
| 3288 | "SMB3 or later required for persistent handles\n"); |
| 3289 | rc = -EOPNOTSUPP; |
| 3290 | goto out_fail; |
| 3291 | } else if (ses->server->capabilities & |
| 3292 | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES) |
| 3293 | tcon->use_persistent = true; |
| 3294 | else /* persistent handles requested but not supported */ { |
| 3295 | cifs_dbg(VFS, |
| 3296 | "Persistent handles not supported on share\n"); |
| 3297 | rc = -EOPNOTSUPP; |
| 3298 | goto out_fail; |
| 3299 | } |
| 3300 | } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY) |
| 3301 | && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES) |
| 3302 | && (volume_info->nopersistent == false)) { |
| 3303 | cifs_dbg(FYI, "enabling persistent handles\n"); |
| 3304 | tcon->use_persistent = true; |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 3305 | } else if (volume_info->resilient) { |
| 3306 | if (ses->server->vals->protocol_id == 0) { |
| 3307 | cifs_dbg(VFS, |
| 3308 | "SMB2.1 or later required for resilient handles\n"); |
| 3309 | rc = -EOPNOTSUPP; |
| 3310 | goto out_fail; |
| 3311 | } |
| 3312 | tcon->use_resilient = true; |
Steve French | b618f00 | 2015-11-03 09:15:03 -0600 | [diff] [blame] | 3313 | } |
| 3314 | |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3315 | /* |
| 3316 | * We can have only one retry value for a connection to a share so for |
| 3317 | * resources mounted more than once to the same server share the last |
| 3318 | * value passed in for the retry flag is used. |
| 3319 | */ |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3320 | tcon->retry = volume_info->retry; |
| 3321 | tcon->nocase = volume_info->nocase; |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 3322 | tcon->nohandlecache = volume_info->nohandlecache; |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3323 | tcon->local_lease = volume_info->local_lease; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 3324 | INIT_LIST_HEAD(&tcon->pending_opens); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3325 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3326 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3327 | list_add(&tcon->tcon_list, &ses->tcon_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3328 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3329 | |
Suresh Jayaraman | d03382c | 2010-07-05 18:12:27 +0530 | [diff] [blame] | 3330 | cifs_fscache_get_super_cookie(tcon); |
| 3331 | |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3332 | return tcon; |
| 3333 | |
| 3334 | out_fail: |
| 3335 | tconInfoFree(tcon); |
| 3336 | return ERR_PTR(rc); |
| 3337 | } |
| 3338 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 3339 | void |
| 3340 | cifs_put_tlink(struct tcon_link *tlink) |
| 3341 | { |
| 3342 | if (!tlink || IS_ERR(tlink)) |
| 3343 | return; |
| 3344 | |
| 3345 | if (!atomic_dec_and_test(&tlink->tl_count) || |
| 3346 | test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) { |
| 3347 | tlink->tl_time = jiffies; |
| 3348 | return; |
| 3349 | } |
| 3350 | |
| 3351 | if (!IS_ERR(tlink_tcon(tlink))) |
| 3352 | cifs_put_tcon(tlink_tcon(tlink)); |
| 3353 | kfree(tlink); |
| 3354 | return; |
| 3355 | } |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3356 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3357 | static int |
| 3358 | compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data) |
| 3359 | { |
| 3360 | struct cifs_sb_info *old = CIFS_SB(sb); |
| 3361 | struct cifs_sb_info *new = mnt_data->cifs_sb; |
| 3362 | |
| 3363 | if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK)) |
| 3364 | return 0; |
| 3365 | |
| 3366 | if ((old->mnt_cifs_flags & CIFS_MOUNT_MASK) != |
| 3367 | (new->mnt_cifs_flags & CIFS_MOUNT_MASK)) |
| 3368 | return 0; |
| 3369 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3370 | /* |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 3371 | * We want to share sb only if we don't specify an r/wsize or |
| 3372 | * specified r/wsize is greater than or equal to existing one. |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3373 | */ |
| 3374 | if (new->wsize && new->wsize < old->wsize) |
| 3375 | return 0; |
| 3376 | |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 3377 | if (new->rsize && new->rsize < old->rsize) |
| 3378 | return 0; |
| 3379 | |
Eric W. Biederman | 1f68233 | 2013-02-06 01:20:20 -0800 | [diff] [blame] | 3380 | if (!uid_eq(old->mnt_uid, new->mnt_uid) || !gid_eq(old->mnt_gid, new->mnt_gid)) |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3381 | return 0; |
| 3382 | |
| 3383 | if (old->mnt_file_mode != new->mnt_file_mode || |
| 3384 | old->mnt_dir_mode != new->mnt_dir_mode) |
| 3385 | return 0; |
| 3386 | |
| 3387 | if (strcmp(old->local_nls->charset, new->local_nls->charset)) |
| 3388 | return 0; |
| 3389 | |
| 3390 | if (old->actimeo != new->actimeo) |
| 3391 | return 0; |
| 3392 | |
| 3393 | return 1; |
| 3394 | } |
| 3395 | |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3396 | static int |
| 3397 | match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data) |
| 3398 | { |
| 3399 | struct cifs_sb_info *old = CIFS_SB(sb); |
| 3400 | struct cifs_sb_info *new = mnt_data->cifs_sb; |
Sachin Prabhu | cd8c429 | 2017-04-26 14:05:46 +0100 | [diff] [blame] | 3401 | bool old_set = old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH; |
| 3402 | bool new_set = new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH; |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3403 | |
Sachin Prabhu | cd8c429 | 2017-04-26 14:05:46 +0100 | [diff] [blame] | 3404 | if (old_set && new_set && !strcmp(new->prepath, old->prepath)) |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3405 | return 1; |
Sachin Prabhu | cd8c429 | 2017-04-26 14:05:46 +0100 | [diff] [blame] | 3406 | else if (!old_set && !new_set) |
| 3407 | return 1; |
| 3408 | |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3409 | return 0; |
| 3410 | } |
| 3411 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3412 | int |
| 3413 | cifs_match_super(struct super_block *sb, void *data) |
| 3414 | { |
| 3415 | struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data; |
| 3416 | struct smb_vol *volume_info; |
| 3417 | struct cifs_sb_info *cifs_sb; |
| 3418 | struct TCP_Server_Info *tcp_srv; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3419 | struct cifs_ses *ses; |
| 3420 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3421 | struct tcon_link *tlink; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3422 | int rc = 0; |
| 3423 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3424 | spin_lock(&cifs_tcp_ses_lock); |
| 3425 | cifs_sb = CIFS_SB(sb); |
| 3426 | tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb)); |
| 3427 | if (IS_ERR(tlink)) { |
| 3428 | spin_unlock(&cifs_tcp_ses_lock); |
| 3429 | return rc; |
| 3430 | } |
| 3431 | tcon = tlink_tcon(tlink); |
| 3432 | ses = tcon->ses; |
| 3433 | tcp_srv = ses->server; |
| 3434 | |
| 3435 | volume_info = mnt_data->vol; |
| 3436 | |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 3437 | if (!match_server(tcp_srv, volume_info) || |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3438 | !match_session(ses, volume_info) || |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3439 | !match_tcon(tcon, volume_info) || |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3440 | !match_prepath(sb, mnt_data)) { |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3441 | rc = 0; |
| 3442 | goto out; |
| 3443 | } |
| 3444 | |
| 3445 | rc = compare_mount_options(sb, mnt_data); |
| 3446 | out: |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3447 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | f484b5d0 | 2011-07-11 10:16:34 -0400 | [diff] [blame] | 3448 | cifs_put_tlink(tlink); |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3449 | return rc; |
| 3450 | } |
| 3451 | |
Jeff Layton | 09e50d5 | 2008-07-23 10:11:19 -0400 | [diff] [blame] | 3452 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 3453 | static struct lock_class_key cifs_key[2]; |
| 3454 | static struct lock_class_key cifs_slock_key[2]; |
| 3455 | |
| 3456 | static inline void |
| 3457 | cifs_reclassify_socket4(struct socket *sock) |
| 3458 | { |
| 3459 | struct sock *sk = sock->sk; |
Hannes Frederic Sowa | fafc4e1 | 2016-04-08 15:11:27 +0200 | [diff] [blame] | 3460 | BUG_ON(!sock_allow_reclassification(sk)); |
Jeff Layton | 09e50d5 | 2008-07-23 10:11:19 -0400 | [diff] [blame] | 3461 | sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS", |
| 3462 | &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]); |
| 3463 | } |
| 3464 | |
| 3465 | static inline void |
| 3466 | cifs_reclassify_socket6(struct socket *sock) |
| 3467 | { |
| 3468 | struct sock *sk = sock->sk; |
Hannes Frederic Sowa | fafc4e1 | 2016-04-08 15:11:27 +0200 | [diff] [blame] | 3469 | BUG_ON(!sock_allow_reclassification(sk)); |
Jeff Layton | 09e50d5 | 2008-07-23 10:11:19 -0400 | [diff] [blame] | 3470 | sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS", |
| 3471 | &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]); |
| 3472 | } |
| 3473 | #else |
| 3474 | static inline void |
| 3475 | cifs_reclassify_socket4(struct socket *sock) |
| 3476 | { |
| 3477 | } |
| 3478 | |
| 3479 | static inline void |
| 3480 | cifs_reclassify_socket6(struct socket *sock) |
| 3481 | { |
| 3482 | } |
| 3483 | #endif |
| 3484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3485 | /* See RFC1001 section 14 on representation of Netbios names */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3486 | static void rfc1002mangle(char *target, char *source, unsigned int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3487 | { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3488 | unsigned int i, j; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3490 | for (i = 0, j = 0; i < (length); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3491 | /* mask a nibble at a time and encode */ |
| 3492 | target[j] = 'A' + (0x0F & (source[i] >> 4)); |
| 3493 | target[j+1] = 'A' + (0x0F & source[i]); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3494 | j += 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3495 | } |
| 3496 | |
| 3497 | } |
| 3498 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 3499 | static int |
| 3500 | bind_socket(struct TCP_Server_Info *server) |
| 3501 | { |
| 3502 | int rc = 0; |
| 3503 | if (server->srcaddr.ss_family != AF_UNSPEC) { |
| 3504 | /* Bind to the specified local IP address */ |
| 3505 | struct socket *socket = server->ssocket; |
| 3506 | rc = socket->ops->bind(socket, |
| 3507 | (struct sockaddr *) &server->srcaddr, |
| 3508 | sizeof(server->srcaddr)); |
| 3509 | if (rc < 0) { |
| 3510 | struct sockaddr_in *saddr4; |
| 3511 | struct sockaddr_in6 *saddr6; |
| 3512 | saddr4 = (struct sockaddr_in *)&server->srcaddr; |
| 3513 | saddr6 = (struct sockaddr_in6 *)&server->srcaddr; |
| 3514 | if (saddr6->sin6_family == AF_INET6) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3515 | cifs_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n", |
| 3516 | &saddr6->sin6_addr, rc); |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 3517 | else |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3518 | cifs_dbg(VFS, "Failed to bind to: %pI4, error: %d\n", |
| 3519 | &saddr4->sin_addr.s_addr, rc); |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 3520 | } |
| 3521 | } |
| 3522 | return rc; |
| 3523 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3524 | |
| 3525 | static int |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3526 | ip_rfc1001_connect(struct TCP_Server_Info *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3527 | { |
| 3528 | int rc = 0; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3529 | /* |
| 3530 | * some servers require RFC1001 sessinit before sending |
| 3531 | * negprot - BB check reconnection in case where second |
| 3532 | * sessinit is sent but no second negprot |
| 3533 | */ |
| 3534 | struct rfc1002_session_packet *ses_init_buf; |
| 3535 | struct smb_hdr *smb_buf; |
| 3536 | ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet), |
| 3537 | GFP_KERNEL); |
| 3538 | if (ses_init_buf) { |
| 3539 | ses_init_buf->trailer.session_req.called_len = 32; |
| 3540 | |
Colin Ian King | 997152f | 2016-01-25 16:25:54 +0000 | [diff] [blame] | 3541 | if (server->server_RFC1001_name[0] != 0) |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3542 | rfc1002mangle(ses_init_buf->trailer. |
| 3543 | session_req.called_name, |
| 3544 | server->server_RFC1001_name, |
| 3545 | RFC1001_NAME_LEN_WITH_NULL); |
| 3546 | else |
| 3547 | rfc1002mangle(ses_init_buf->trailer. |
| 3548 | session_req.called_name, |
| 3549 | DEFAULT_CIFS_CALLED_NAME, |
| 3550 | RFC1001_NAME_LEN_WITH_NULL); |
| 3551 | |
| 3552 | ses_init_buf->trailer.session_req.calling_len = 32; |
| 3553 | |
| 3554 | /* |
| 3555 | * calling name ends in null (byte 16) from old smb |
| 3556 | * convention. |
| 3557 | */ |
Steve French | c85c35f | 2015-03-27 01:15:02 -0500 | [diff] [blame] | 3558 | if (server->workstation_RFC1001_name[0] != 0) |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3559 | rfc1002mangle(ses_init_buf->trailer. |
| 3560 | session_req.calling_name, |
| 3561 | server->workstation_RFC1001_name, |
| 3562 | RFC1001_NAME_LEN_WITH_NULL); |
| 3563 | else |
| 3564 | rfc1002mangle(ses_init_buf->trailer. |
| 3565 | session_req.calling_name, |
| 3566 | "LINUX_CIFS_CLNT", |
| 3567 | RFC1001_NAME_LEN_WITH_NULL); |
| 3568 | |
| 3569 | ses_init_buf->trailer.session_req.scope1 = 0; |
| 3570 | ses_init_buf->trailer.session_req.scope2 = 0; |
| 3571 | smb_buf = (struct smb_hdr *)ses_init_buf; |
| 3572 | |
| 3573 | /* sizeof RFC1002_SESSION_REQUEST with no scope */ |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 3574 | smb_buf->smb_buf_length = cpu_to_be32(0x81000044); |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3575 | rc = smb_send(server, smb_buf, 0x44); |
| 3576 | kfree(ses_init_buf); |
| 3577 | /* |
| 3578 | * RFC1001 layer in at least one server |
| 3579 | * requires very short break before negprot |
| 3580 | * presumably because not expecting negprot |
| 3581 | * to follow so fast. This is a simple |
| 3582 | * solution that works without |
| 3583 | * complicating the code and causes no |
| 3584 | * significant slowing down on mount |
| 3585 | * for everyone else |
| 3586 | */ |
| 3587 | usleep_range(1000, 2000); |
| 3588 | } |
| 3589 | /* |
| 3590 | * else the negprot may still work without this |
| 3591 | * even though malloc failed |
| 3592 | */ |
| 3593 | |
| 3594 | return rc; |
| 3595 | } |
| 3596 | |
| 3597 | static int |
| 3598 | generic_ip_connect(struct TCP_Server_Info *server) |
| 3599 | { |
| 3600 | int rc = 0; |
Steve French | 6da9791 | 2011-03-13 18:55:55 +0000 | [diff] [blame] | 3601 | __be16 sport; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3602 | int slen, sfamily; |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 3603 | struct socket *socket = server->ssocket; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3604 | struct sockaddr *saddr; |
| 3605 | |
| 3606 | saddr = (struct sockaddr *) &server->dstaddr; |
| 3607 | |
| 3608 | if (server->dstaddr.ss_family == AF_INET6) { |
| 3609 | sport = ((struct sockaddr_in6 *) saddr)->sin6_port; |
| 3610 | slen = sizeof(struct sockaddr_in6); |
| 3611 | sfamily = AF_INET6; |
| 3612 | } else { |
| 3613 | sport = ((struct sockaddr_in *) saddr)->sin_port; |
| 3614 | slen = sizeof(struct sockaddr_in); |
| 3615 | sfamily = AF_INET; |
| 3616 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3617 | |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 3618 | if (socket == NULL) { |
Rob Landley | f1d0c99 | 2011-01-22 15:44:05 -0600 | [diff] [blame] | 3619 | rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM, |
| 3620 | IPPROTO_TCP, &socket, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3621 | if (rc < 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3622 | cifs_dbg(VFS, "Error %d creating socket\n", rc); |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3623 | server->ssocket = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3624 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3625 | } |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 3626 | |
| 3627 | /* BB other socket options to set KEEPALIVE, NODELAY? */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3628 | cifs_dbg(FYI, "Socket created\n"); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 3629 | server->ssocket = socket; |
| 3630 | socket->sk->sk_allocation = GFP_NOFS; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3631 | if (sfamily == AF_INET6) |
| 3632 | cifs_reclassify_socket6(socket); |
| 3633 | else |
| 3634 | cifs_reclassify_socket4(socket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3635 | } |
| 3636 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 3637 | rc = bind_socket(server); |
| 3638 | if (rc < 0) |
| 3639 | return rc; |
| 3640 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame] | 3641 | /* |
| 3642 | * Eventually check for other socket options to change from |
| 3643 | * the default. sock_setsockopt not used because it expects |
| 3644 | * user space buffer |
| 3645 | */ |
| 3646 | socket->sk->sk_rcvtimeo = 7 * HZ; |
Steve French | da505c3 | 2009-01-19 03:49:35 +0000 | [diff] [blame] | 3647 | socket->sk->sk_sndtimeo = 5 * HZ; |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 3648 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3649 | /* make the bufsizes depend on wsize/rsize and max requests */ |
| 3650 | if (server->noautotune) { |
| 3651 | if (socket->sk->sk_sndbuf < (200 * 1024)) |
| 3652 | socket->sk->sk_sndbuf = 200 * 1024; |
| 3653 | if (socket->sk->sk_rcvbuf < (140 * 1024)) |
| 3654 | socket->sk->sk_rcvbuf = 140 * 1024; |
| 3655 | } |
| 3656 | |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 3657 | if (server->tcp_nodelay) { |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3658 | int val = 1; |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 3659 | rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY, |
| 3660 | (char *)&val, sizeof(val)); |
| 3661 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3662 | cifs_dbg(FYI, "set TCP_NODELAY socket option error %d\n", |
| 3663 | rc); |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 3664 | } |
| 3665 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3666 | cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n", |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3667 | socket->sk->sk_sndbuf, |
| 3668 | socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo); |
| 3669 | |
Jeff Layton | ee1b3ea | 2011-06-21 07:18:26 -0400 | [diff] [blame] | 3670 | rc = socket->ops->connect(socket, saddr, slen, 0); |
| 3671 | if (rc < 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3672 | cifs_dbg(FYI, "Error %d connecting to server\n", rc); |
Jeff Layton | ee1b3ea | 2011-06-21 07:18:26 -0400 | [diff] [blame] | 3673 | sock_release(socket); |
| 3674 | server->ssocket = NULL; |
| 3675 | return rc; |
| 3676 | } |
| 3677 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3678 | if (sport == htons(RFC1001_PORT)) |
| 3679 | rc = ip_rfc1001_connect(server); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3681 | return rc; |
| 3682 | } |
| 3683 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3684 | static int |
| 3685 | ip_connect(struct TCP_Server_Info *server) |
| 3686 | { |
Steve French | 6da9791 | 2011-03-13 18:55:55 +0000 | [diff] [blame] | 3687 | __be16 *sport; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3688 | struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr; |
| 3689 | struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr; |
| 3690 | |
| 3691 | if (server->dstaddr.ss_family == AF_INET6) |
| 3692 | sport = &addr6->sin6_port; |
| 3693 | else |
| 3694 | sport = &addr->sin_port; |
| 3695 | |
| 3696 | if (*sport == 0) { |
| 3697 | int rc; |
| 3698 | |
| 3699 | /* try with 445 port at first */ |
| 3700 | *sport = htons(CIFS_PORT); |
| 3701 | |
| 3702 | rc = generic_ip_connect(server); |
| 3703 | if (rc >= 0) |
| 3704 | return rc; |
| 3705 | |
| 3706 | /* if it failed, try with 139 port */ |
| 3707 | *sport = htons(RFC1001_PORT); |
| 3708 | } |
| 3709 | |
| 3710 | return generic_ip_connect(server); |
| 3711 | } |
| 3712 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3713 | void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon, |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 3714 | struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3715 | { |
| 3716 | /* if we are reconnecting then should we check to see if |
| 3717 | * any requested capabilities changed locally e.g. via |
| 3718 | * remount but we can not do much about it here |
| 3719 | * if they have (even if we could detect it by the following) |
| 3720 | * Perhaps we could add a backpointer to array of sb from tcon |
| 3721 | * or if we change to make all sb to same share the same |
| 3722 | * sb as NFS - then we only have one backpointer to sb. |
| 3723 | * What if we wanted to mount the server share twice once with |
| 3724 | * and once without posixacls or posix paths? */ |
| 3725 | __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3726 | |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 3727 | if (vol_info && vol_info->no_linux_ext) { |
| 3728 | tcon->fsUnixInfo.Capability = 0; |
| 3729 | tcon->unix_ext = 0; /* Unix Extensions disabled */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3730 | cifs_dbg(FYI, "Linux protocol extensions disabled\n"); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 3731 | return; |
| 3732 | } else if (vol_info) |
| 3733 | tcon->unix_ext = 1; /* Unix Extensions supported */ |
| 3734 | |
| 3735 | if (tcon->unix_ext == 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3736 | cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n"); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 3737 | return; |
| 3738 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3739 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3740 | if (!CIFSSMBQFSUnixInfo(xid, tcon)) { |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3741 | __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3742 | cifs_dbg(FYI, "unix caps which server supports %lld\n", cap); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3743 | /* check for reconnect case in which we do not |
| 3744 | want to change the mount behavior if we can avoid it */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3745 | if (vol_info == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3746 | /* turn off POSIX ACL and PATHNAMES if not set |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3747 | originally at mount time */ |
| 3748 | if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0) |
| 3749 | cap &= ~CIFS_UNIX_POSIX_ACL_CAP; |
Igor Mammedov | 11b6d64 | 2008-02-15 19:06:04 +0000 | [diff] [blame] | 3750 | if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) { |
| 3751 | if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3752 | cifs_dbg(VFS, "POSIXPATH support change\n"); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3753 | cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP; |
Igor Mammedov | 11b6d64 | 2008-02-15 19:06:04 +0000 | [diff] [blame] | 3754 | } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3755 | cifs_dbg(VFS, "possible reconnect error\n"); |
| 3756 | cifs_dbg(VFS, "server disabled POSIX path support\n"); |
Igor Mammedov | 11b6d64 | 2008-02-15 19:06:04 +0000 | [diff] [blame] | 3757 | } |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3758 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3759 | |
Steve French | 6848b73 | 2011-05-26 18:38:54 +0000 | [diff] [blame] | 3760 | if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3761 | cifs_dbg(VFS, "per-share encryption not supported yet\n"); |
Steve French | 6848b73 | 2011-05-26 18:38:54 +0000 | [diff] [blame] | 3762 | |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3763 | cap &= CIFS_UNIX_CAP_MASK; |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3764 | if (vol_info && vol_info->no_psx_acl) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3765 | cap &= ~CIFS_UNIX_POSIX_ACL_CAP; |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3766 | else if (CIFS_UNIX_POSIX_ACL_CAP & cap) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3767 | cifs_dbg(FYI, "negotiated posix acl support\n"); |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 3768 | if (cifs_sb) |
| 3769 | cifs_sb->mnt_cifs_flags |= |
| 3770 | CIFS_MOUNT_POSIXACL; |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3771 | } |
| 3772 | |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3773 | if (vol_info && vol_info->posix_paths == 0) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3774 | cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP; |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3775 | else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3776 | cifs_dbg(FYI, "negotiate posix pathnames\n"); |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 3777 | if (cifs_sb) |
| 3778 | cifs_sb->mnt_cifs_flags |= |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3779 | CIFS_MOUNT_POSIX_PATHS; |
| 3780 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3781 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3782 | cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3783 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3784 | if (cap & CIFS_UNIX_FCNTL_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3785 | cifs_dbg(FYI, "FCNTL cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3786 | if (cap & CIFS_UNIX_EXTATTR_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3787 | cifs_dbg(FYI, "EXTATTR cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3788 | if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3789 | cifs_dbg(FYI, "POSIX path cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3790 | if (cap & CIFS_UNIX_XATTR_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3791 | cifs_dbg(FYI, "XATTR cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3792 | if (cap & CIFS_UNIX_POSIX_ACL_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3793 | cifs_dbg(FYI, "POSIX ACL cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3794 | if (cap & CIFS_UNIX_LARGE_READ_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3795 | cifs_dbg(FYI, "very large read cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 3796 | if (cap & CIFS_UNIX_LARGE_WRITE_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3797 | cifs_dbg(FYI, "very large write cap\n"); |
Steve French | 6848b73 | 2011-05-26 18:38:54 +0000 | [diff] [blame] | 3798 | if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3799 | cifs_dbg(FYI, "transport encryption cap\n"); |
Steve French | 6848b73 | 2011-05-26 18:38:54 +0000 | [diff] [blame] | 3800 | if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3801 | cifs_dbg(FYI, "mandatory transport encryption cap\n"); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3802 | #endif /* CIFS_DEBUG2 */ |
| 3803 | if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) { |
Steve French | 442aa31 | 2007-09-24 20:25:46 +0000 | [diff] [blame] | 3804 | if (vol_info == NULL) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3805 | cifs_dbg(FYI, "resetting capabilities failed\n"); |
Steve French | 442aa31 | 2007-09-24 20:25:46 +0000 | [diff] [blame] | 3806 | } else |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3807 | cifs_dbg(VFS, "Negotiating Unix capabilities with the server failed. Consider mounting with the Unix Extensions disabled if problems are found by specifying the nounix mount option.\n"); |
Steve French | 5a44b31 | 2007-09-20 15:16:24 +0000 | [diff] [blame] | 3808 | |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3809 | } |
| 3810 | } |
| 3811 | } |
| 3812 | |
Sachin Prabhu | 4214ebf | 2016-07-29 22:38:19 +0100 | [diff] [blame] | 3813 | int cifs_setup_cifs_sb(struct smb_vol *pvolume_info, |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 3814 | struct cifs_sb_info *cifs_sb) |
Jeff Layton | b1c8d2b | 2008-10-22 13:57:07 -0400 | [diff] [blame] | 3815 | { |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 3816 | INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks); |
| 3817 | |
Al Viro | 2ced6f6 | 2011-06-17 09:20:04 -0400 | [diff] [blame] | 3818 | spin_lock_init(&cifs_sb->tlink_tree_lock); |
| 3819 | cifs_sb->tlink_tree = RB_ROOT; |
| 3820 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3821 | /* |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 3822 | * Temporarily set r/wsize for matching superblock. If we end up using |
| 3823 | * new sb then client will later negotiate it downward if needed. |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3824 | */ |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 3825 | cifs_sb->rsize = pvolume_info->rsize; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3826 | cifs_sb->wsize = pvolume_info->wsize; |
| 3827 | |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3828 | cifs_sb->mnt_uid = pvolume_info->linux_uid; |
| 3829 | cifs_sb->mnt_gid = pvolume_info->linux_gid; |
| 3830 | cifs_sb->mnt_file_mode = pvolume_info->file_mode; |
| 3831 | cifs_sb->mnt_dir_mode = pvolume_info->dir_mode; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3832 | cifs_dbg(FYI, "file mode: 0x%hx dir mode: 0x%hx\n", |
| 3833 | cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode); |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3834 | |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 3835 | cifs_sb->actimeo = pvolume_info->actimeo; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 3836 | cifs_sb->local_nls = pvolume_info->local_nls; |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 3837 | |
Aurelien Aptel | 8393072 | 2018-09-20 18:10:25 -0700 | [diff] [blame] | 3838 | if (pvolume_info->nodfs) |
| 3839 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_DFS; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3840 | if (pvolume_info->noperm) |
| 3841 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM; |
| 3842 | if (pvolume_info->setuids) |
| 3843 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID; |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 3844 | if (pvolume_info->setuidfromacl) |
| 3845 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3846 | if (pvolume_info->server_ino) |
| 3847 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM; |
| 3848 | if (pvolume_info->remap) |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 3849 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR; |
| 3850 | if (pvolume_info->sfu_remap) |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3851 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR; |
| 3852 | if (pvolume_info->no_xattr) |
| 3853 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR; |
| 3854 | if (pvolume_info->sfu_emul) |
| 3855 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL; |
| 3856 | if (pvolume_info->nobrl) |
| 3857 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL; |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 3858 | if (pvolume_info->nohandlecache) |
| 3859 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_HANDLE_CACHE; |
Steve French | be65244 | 2009-02-23 15:21:59 +0000 | [diff] [blame] | 3860 | if (pvolume_info->nostrictsync) |
Steve French | 4717bed | 2009-02-24 14:44:19 +0000 | [diff] [blame] | 3861 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC; |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 3862 | if (pvolume_info->mand_lock) |
| 3863 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 3864 | if (pvolume_info->rwpidforward) |
| 3865 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3866 | if (pvolume_info->cifs_acl) |
| 3867 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL; |
Sachin Prabhu | 3c7c87f | 2012-04-24 15:28:14 +0100 | [diff] [blame] | 3868 | if (pvolume_info->backupuid_specified) { |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 3869 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID; |
Sachin Prabhu | 3c7c87f | 2012-04-24 15:28:14 +0100 | [diff] [blame] | 3870 | cifs_sb->mnt_backupuid = pvolume_info->backupuid; |
| 3871 | } |
| 3872 | if (pvolume_info->backupgid_specified) { |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 3873 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID; |
Sachin Prabhu | 3c7c87f | 2012-04-24 15:28:14 +0100 | [diff] [blame] | 3874 | cifs_sb->mnt_backupgid = pvolume_info->backupgid; |
| 3875 | } |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3876 | if (pvolume_info->override_uid) |
| 3877 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID; |
| 3878 | if (pvolume_info->override_gid) |
| 3879 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID; |
| 3880 | if (pvolume_info->dynperm) |
| 3881 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM; |
Suresh Jayaraman | fa1df75 | 2010-07-05 18:13:36 +0530 | [diff] [blame] | 3882 | if (pvolume_info->fsc) |
| 3883 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE; |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 3884 | if (pvolume_info->multiuser) |
| 3885 | cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER | |
| 3886 | CIFS_MOUNT_NO_PERM); |
Pavel Shilovsky | d39454f | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 3887 | if (pvolume_info->strict_io) |
| 3888 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3889 | if (pvolume_info->direct_io) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3890 | cifs_dbg(FYI, "mounting share using direct i/o\n"); |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3891 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO; |
| 3892 | } |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 3893 | if (pvolume_info->mfsymlinks) { |
| 3894 | if (pvolume_info->sfu_emul) { |
Steve French | db8b631 | 2014-09-22 05:13:55 -0500 | [diff] [blame] | 3895 | /* |
| 3896 | * Our SFU ("Services for Unix" emulation does not allow |
| 3897 | * creating symlinks but does allow reading existing SFU |
| 3898 | * symlinks (it does allow both creating and reading SFU |
| 3899 | * style mknod and FIFOs though). When "mfsymlinks" and |
| 3900 | * "sfu" are both enabled at the same time, it allows |
| 3901 | * reading both types of symlinks, but will only create |
| 3902 | * them with mfsymlinks format. This allows better |
| 3903 | * Apple compatibility (probably better for Samba too) |
| 3904 | * while still recognizing old Windows style symlinks. |
| 3905 | */ |
| 3906 | cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n"); |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 3907 | } |
Steve French | db8b631 | 2014-09-22 05:13:55 -0500 | [diff] [blame] | 3908 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS; |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 3909 | } |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3910 | |
| 3911 | if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm)) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3912 | cifs_dbg(VFS, "mount option dynperm ignored if cifsacl mount option supported\n"); |
Sachin Prabhu | 4214ebf | 2016-07-29 22:38:19 +0100 | [diff] [blame] | 3913 | |
| 3914 | if (pvolume_info->prepath) { |
| 3915 | cifs_sb->prepath = kstrdup(pvolume_info->prepath, GFP_KERNEL); |
| 3916 | if (cifs_sb->prepath == NULL) |
| 3917 | return -ENOMEM; |
| 3918 | } |
| 3919 | |
| 3920 | return 0; |
Jeff Layton | b1c8d2b | 2008-10-22 13:57:07 -0400 | [diff] [blame] | 3921 | } |
| 3922 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 3923 | void |
| 3924 | cifs_cleanup_volume_info_contents(struct smb_vol *volume_info) |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 3925 | { |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 3926 | kfree(volume_info->username); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 3927 | kzfree(volume_info->password); |
Jesper Juhl | 95c7545 | 2011-08-27 18:58:34 +0200 | [diff] [blame] | 3928 | kfree(volume_info->UNC); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 3929 | kfree(volume_info->domainname); |
| 3930 | kfree(volume_info->iocharset); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 3931 | kfree(volume_info->prepath); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 3932 | } |
| 3933 | |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 3934 | void |
| 3935 | cifs_cleanup_volume_info(struct smb_vol *volume_info) |
| 3936 | { |
| 3937 | if (!volume_info) |
| 3938 | return; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 3939 | cifs_cleanup_volume_info_contents(volume_info); |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 3940 | kfree(volume_info); |
| 3941 | } |
| 3942 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 3943 | /* Release all succeed connections */ |
| 3944 | static inline void mount_put_conns(struct cifs_sb_info *cifs_sb, |
| 3945 | unsigned int xid, |
| 3946 | struct TCP_Server_Info *server, |
| 3947 | struct cifs_ses *ses, struct cifs_tcon *tcon) |
| 3948 | { |
| 3949 | int rc = 0; |
| 3950 | |
| 3951 | if (tcon) |
| 3952 | cifs_put_tcon(tcon); |
| 3953 | else if (ses) |
| 3954 | cifs_put_smb_ses(ses); |
| 3955 | else if (server) |
| 3956 | cifs_put_tcp_session(server, 0); |
| 3957 | cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS; |
| 3958 | free_xid(xid); |
| 3959 | } |
| 3960 | |
| 3961 | /* Get connections for tcp, ses and tcon */ |
| 3962 | static int mount_get_conns(struct smb_vol *vol, struct cifs_sb_info *cifs_sb, |
| 3963 | unsigned int *xid, |
| 3964 | struct TCP_Server_Info **nserver, |
| 3965 | struct cifs_ses **nses, struct cifs_tcon **ntcon) |
| 3966 | { |
| 3967 | int rc = 0; |
| 3968 | struct TCP_Server_Info *server; |
| 3969 | struct cifs_ses *ses; |
| 3970 | struct cifs_tcon *tcon; |
| 3971 | |
| 3972 | *nserver = NULL; |
| 3973 | *nses = NULL; |
| 3974 | *ntcon = NULL; |
| 3975 | |
| 3976 | *xid = get_xid(); |
| 3977 | |
| 3978 | /* get a reference to a tcp session */ |
| 3979 | server = cifs_get_tcp_session(vol); |
| 3980 | if (IS_ERR(server)) { |
| 3981 | rc = PTR_ERR(server); |
| 3982 | return rc; |
| 3983 | } |
| 3984 | |
| 3985 | *nserver = server; |
| 3986 | |
| 3987 | if ((vol->max_credits < 20) || (vol->max_credits > 60000)) |
| 3988 | server->max_credits = SMB2_MAX_CREDITS_AVAILABLE; |
| 3989 | else |
| 3990 | server->max_credits = vol->max_credits; |
| 3991 | |
| 3992 | /* get a reference to a SMB session */ |
| 3993 | ses = cifs_get_smb_ses(server, vol); |
| 3994 | if (IS_ERR(ses)) { |
| 3995 | rc = PTR_ERR(ses); |
| 3996 | return rc; |
| 3997 | } |
| 3998 | |
| 3999 | *nses = ses; |
| 4000 | |
| 4001 | if ((vol->persistent == true) && (!(ses->server->capabilities & |
| 4002 | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) { |
| 4003 | cifs_dbg(VFS, "persistent handles not supported by server\n"); |
| 4004 | return -EOPNOTSUPP; |
| 4005 | } |
| 4006 | |
| 4007 | /* search for existing tcon to this server share */ |
| 4008 | tcon = cifs_get_tcon(ses, vol); |
| 4009 | if (IS_ERR(tcon)) { |
| 4010 | rc = PTR_ERR(tcon); |
| 4011 | return rc; |
| 4012 | } |
| 4013 | |
| 4014 | *ntcon = tcon; |
| 4015 | |
| 4016 | /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */ |
| 4017 | if (tcon->posix_extensions) |
| 4018 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS; |
| 4019 | |
| 4020 | /* tell server which Unix caps we support */ |
| 4021 | if (cap_unix(tcon->ses)) { |
| 4022 | /* |
| 4023 | * reset of caps checks mount to see if unix extensions disabled |
| 4024 | * for just this mount. |
| 4025 | */ |
| 4026 | reset_cifs_unix_caps(*xid, tcon, cifs_sb, vol); |
| 4027 | if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) && |
| 4028 | (le64_to_cpu(tcon->fsUnixInfo.Capability) & |
| 4029 | CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) |
| 4030 | return -EACCES; |
| 4031 | } else |
| 4032 | tcon->unix_ext = 0; /* server does not support them */ |
| 4033 | |
| 4034 | /* do not care if a following call succeed - informational */ |
| 4035 | if (!tcon->pipe && server->ops->qfs_tcon) |
| 4036 | server->ops->qfs_tcon(*xid, tcon); |
| 4037 | |
| 4038 | cifs_sb->wsize = server->ops->negotiate_wsize(tcon, vol); |
| 4039 | cifs_sb->rsize = server->ops->negotiate_rsize(tcon, vol); |
| 4040 | |
| 4041 | return 0; |
| 4042 | } |
| 4043 | |
| 4044 | static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses, |
| 4045 | struct cifs_tcon *tcon) |
| 4046 | { |
| 4047 | struct tcon_link *tlink; |
| 4048 | |
| 4049 | /* hang the tcon off of the superblock */ |
| 4050 | tlink = kzalloc(sizeof(*tlink), GFP_KERNEL); |
| 4051 | if (tlink == NULL) |
| 4052 | return -ENOMEM; |
| 4053 | |
| 4054 | tlink->tl_uid = ses->linux_uid; |
| 4055 | tlink->tl_tcon = tcon; |
| 4056 | tlink->tl_time = jiffies; |
| 4057 | set_bit(TCON_LINK_MASTER, &tlink->tl_flags); |
| 4058 | set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags); |
| 4059 | |
| 4060 | cifs_sb->master_tlink = tlink; |
| 4061 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 4062 | tlink_rb_insert(&cifs_sb->tlink_tree, tlink); |
| 4063 | spin_unlock(&cifs_sb->tlink_tree_lock); |
| 4064 | |
| 4065 | queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks, |
| 4066 | TLINK_IDLE_EXPIRE); |
| 4067 | return 0; |
| 4068 | } |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4069 | |
Steve French | 2d6d589 | 2009-04-09 00:36:44 +0000 | [diff] [blame] | 4070 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Steve French | 6d3ea7e | 2012-11-28 22:34:41 -0600 | [diff] [blame] | 4071 | /* |
| 4072 | * cifs_build_path_to_root returns full path to root when we do not have an |
| 4073 | * exiting connection (tcon) |
| 4074 | */ |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4075 | static char * |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4076 | build_unc_path_to_root(const struct smb_vol *vol, |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4077 | const struct cifs_sb_info *cifs_sb, bool useppath) |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4078 | { |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4079 | char *full_path, *pos; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4080 | unsigned int pplen = useppath && vol->prepath ? |
| 4081 | strlen(vol->prepath) + 1 : 0; |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4082 | unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4083 | |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4084 | full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4085 | if (full_path == NULL) |
| 4086 | return ERR_PTR(-ENOMEM); |
| 4087 | |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4088 | strncpy(full_path, vol->UNC, unc_len); |
| 4089 | pos = full_path + unc_len; |
| 4090 | |
| 4091 | if (pplen) { |
Jeff Layton | 1fc29ba | 2013-05-31 10:00:18 -0400 | [diff] [blame] | 4092 | *pos = CIFS_DIR_SEP(cifs_sb); |
| 4093 | strncpy(pos + 1, vol->prepath, pplen); |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4094 | pos += pplen; |
| 4095 | } |
| 4096 | |
| 4097 | *pos = '\0'; /* add trailing null */ |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 4098 | convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb)); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4099 | cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4100 | return full_path; |
| 4101 | } |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4102 | |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4103 | /** |
| 4104 | * expand_dfs_referral - Perform a dfs referral query and update the cifs_sb |
| 4105 | * |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4106 | * |
Sean Finney | 046462a | 2011-04-11 13:19:33 +0000 | [diff] [blame] | 4107 | * If a referral is found, cifs_sb->mountdata will be (re-)allocated |
| 4108 | * to a string containing updated options for the submount. Otherwise it |
| 4109 | * will be left untouched. |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4110 | * |
| 4111 | * Returns the rc from get_dfs_path to the caller, which can be used to |
| 4112 | * determine whether there were referrals. |
| 4113 | */ |
| 4114 | static int |
Pavel Shilovsky | b669f33 | 2012-05-27 20:21:53 +0400 | [diff] [blame] | 4115 | expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses, |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4116 | struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb, |
Sean Finney | 046462a | 2011-04-11 13:19:33 +0000 | [diff] [blame] | 4117 | int check_prefix) |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4118 | { |
| 4119 | int rc; |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4120 | struct dfs_info3_param referral = {0}; |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4121 | char *full_path = NULL, *ref_path = NULL, *mdata = NULL; |
| 4122 | |
Aurelien Aptel | 8393072 | 2018-09-20 18:10:25 -0700 | [diff] [blame] | 4123 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) |
| 4124 | return -EREMOTE; |
| 4125 | |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4126 | full_path = build_unc_path_to_root(volume_info, cifs_sb, true); |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4127 | if (IS_ERR(full_path)) |
| 4128 | return PTR_ERR(full_path); |
| 4129 | |
| 4130 | /* For DFS paths, skip the first '\' of the UNC */ |
| 4131 | ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1; |
| 4132 | |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4133 | rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb), |
| 4134 | ref_path, &referral, NULL); |
| 4135 | if (!rc) { |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4136 | char *fake_devname = NULL; |
| 4137 | |
| 4138 | mdata = cifs_compose_mount_options(cifs_sb->mountdata, |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4139 | full_path + 1, &referral, |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4140 | &fake_devname); |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4141 | free_dfs_info_param(&referral); |
Sean Finney | 046462a | 2011-04-11 13:19:33 +0000 | [diff] [blame] | 4142 | |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4143 | if (IS_ERR(mdata)) { |
| 4144 | rc = PTR_ERR(mdata); |
| 4145 | mdata = NULL; |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4146 | } else { |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4147 | cifs_cleanup_volume_info_contents(volume_info); |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4148 | rc = cifs_setup_volume_info(volume_info, mdata, |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4149 | fake_devname, false); |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4150 | } |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4151 | kfree(fake_devname); |
| 4152 | kfree(cifs_sb->mountdata); |
Sean Finney | 046462a | 2011-04-11 13:19:33 +0000 | [diff] [blame] | 4153 | cifs_sb->mountdata = mdata; |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4154 | } |
| 4155 | kfree(full_path); |
| 4156 | return rc; |
| 4157 | } |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4158 | |
| 4159 | static inline int get_next_dfs_tgt(const char *path, |
| 4160 | struct dfs_cache_tgt_list *tgt_list, |
| 4161 | struct dfs_cache_tgt_iterator **tgt_it) |
| 4162 | { |
| 4163 | if (!*tgt_it) |
| 4164 | *tgt_it = dfs_cache_get_tgt_iterator(tgt_list); |
| 4165 | else |
| 4166 | *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it); |
| 4167 | return !*tgt_it ? -EHOSTDOWN : 0; |
| 4168 | } |
| 4169 | |
| 4170 | static int update_vol_info(const struct dfs_cache_tgt_iterator *tgt_it, |
| 4171 | struct smb_vol *fake_vol, struct smb_vol *vol) |
| 4172 | { |
| 4173 | const char *tgt = dfs_cache_get_tgt_name(tgt_it); |
| 4174 | int len = strlen(tgt) + 2; |
| 4175 | char *new_unc; |
| 4176 | |
| 4177 | new_unc = kmalloc(len, GFP_KERNEL); |
| 4178 | if (!new_unc) |
| 4179 | return -ENOMEM; |
| 4180 | snprintf(new_unc, len, "\\%s", tgt); |
| 4181 | |
| 4182 | kfree(vol->UNC); |
| 4183 | vol->UNC = new_unc; |
| 4184 | |
| 4185 | if (fake_vol->prepath) { |
| 4186 | kfree(vol->prepath); |
| 4187 | vol->prepath = fake_vol->prepath; |
| 4188 | fake_vol->prepath = NULL; |
| 4189 | } |
| 4190 | memcpy(&vol->dstaddr, &fake_vol->dstaddr, sizeof(vol->dstaddr)); |
| 4191 | |
| 4192 | return 0; |
| 4193 | } |
| 4194 | |
| 4195 | static int setup_dfs_tgt_conn(const char *path, |
| 4196 | const struct dfs_cache_tgt_iterator *tgt_it, |
| 4197 | struct cifs_sb_info *cifs_sb, |
| 4198 | struct smb_vol *vol, |
| 4199 | unsigned int *xid, |
| 4200 | struct TCP_Server_Info **server, |
| 4201 | struct cifs_ses **ses, |
| 4202 | struct cifs_tcon **tcon) |
| 4203 | { |
| 4204 | int rc; |
| 4205 | struct dfs_info3_param ref = {0}; |
| 4206 | char *mdata = NULL, *fake_devname = NULL; |
| 4207 | struct smb_vol fake_vol = {0}; |
| 4208 | |
| 4209 | cifs_dbg(FYI, "%s: dfs path: %s\n", __func__, path); |
| 4210 | |
| 4211 | rc = dfs_cache_get_tgt_referral(path, tgt_it, &ref); |
| 4212 | if (rc) |
| 4213 | return rc; |
| 4214 | |
| 4215 | mdata = cifs_compose_mount_options(cifs_sb->mountdata, path, &ref, |
| 4216 | &fake_devname); |
| 4217 | free_dfs_info_param(&ref); |
| 4218 | |
| 4219 | if (IS_ERR(mdata)) { |
| 4220 | rc = PTR_ERR(mdata); |
| 4221 | mdata = NULL; |
| 4222 | } else { |
| 4223 | cifs_dbg(FYI, "%s: fake_devname: %s\n", __func__, fake_devname); |
| 4224 | rc = cifs_setup_volume_info(&fake_vol, mdata, fake_devname, |
| 4225 | false); |
| 4226 | } |
| 4227 | kfree(mdata); |
| 4228 | kfree(fake_devname); |
| 4229 | |
| 4230 | if (!rc) { |
| 4231 | /* |
| 4232 | * We use a 'fake_vol' here because we need pass it down to the |
| 4233 | * mount_{get,put} functions to test connection against new DFS |
| 4234 | * targets. |
| 4235 | */ |
| 4236 | mount_put_conns(cifs_sb, *xid, *server, *ses, *tcon); |
| 4237 | rc = mount_get_conns(&fake_vol, cifs_sb, xid, server, ses, |
| 4238 | tcon); |
| 4239 | if (!rc) { |
| 4240 | /* |
| 4241 | * We were able to connect to new target server. |
| 4242 | * Update current volume info with new target server. |
| 4243 | */ |
| 4244 | rc = update_vol_info(tgt_it, &fake_vol, vol); |
| 4245 | } |
| 4246 | } |
| 4247 | cifs_cleanup_volume_info_contents(&fake_vol); |
| 4248 | return rc; |
| 4249 | } |
| 4250 | |
| 4251 | static int mount_do_dfs_failover(const char *path, |
| 4252 | struct cifs_sb_info *cifs_sb, |
| 4253 | struct smb_vol *vol, |
| 4254 | struct cifs_ses *root_ses, |
| 4255 | unsigned int *xid, |
| 4256 | struct TCP_Server_Info **server, |
| 4257 | struct cifs_ses **ses, |
| 4258 | struct cifs_tcon **tcon) |
| 4259 | { |
| 4260 | int rc; |
| 4261 | struct dfs_cache_tgt_list tgt_list; |
| 4262 | struct dfs_cache_tgt_iterator *tgt_it = NULL; |
| 4263 | |
| 4264 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) |
| 4265 | return -EOPNOTSUPP; |
| 4266 | |
| 4267 | rc = dfs_cache_noreq_find(path, NULL, &tgt_list); |
| 4268 | if (rc) |
| 4269 | return rc; |
| 4270 | |
| 4271 | for (;;) { |
| 4272 | /* Get next DFS target server - if any */ |
| 4273 | rc = get_next_dfs_tgt(path, &tgt_list, &tgt_it); |
| 4274 | if (rc) |
| 4275 | break; |
| 4276 | /* Connect to next DFS target */ |
| 4277 | rc = setup_dfs_tgt_conn(path, tgt_it, cifs_sb, vol, xid, server, |
| 4278 | ses, tcon); |
| 4279 | if (!rc || rc == -EACCES || rc == -EOPNOTSUPP) |
| 4280 | break; |
| 4281 | } |
| 4282 | if (!rc) { |
| 4283 | /* |
| 4284 | * Update DFS target hint in DFS referral cache with the target |
| 4285 | * server we successfully reconnected to. |
| 4286 | */ |
| 4287 | rc = dfs_cache_update_tgthint(*xid, root_ses ? root_ses : *ses, |
| 4288 | cifs_sb->local_nls, |
| 4289 | cifs_remap(cifs_sb), path, |
| 4290 | tgt_it); |
| 4291 | } |
| 4292 | dfs_cache_free_tgts(&tgt_list); |
| 4293 | return rc; |
| 4294 | } |
Steve French | 2d6d589 | 2009-04-09 00:36:44 +0000 | [diff] [blame] | 4295 | #endif |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4296 | |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4297 | static int |
| 4298 | cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data, |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 4299 | const char *devname, bool is_smb3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4300 | { |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4301 | int rc = 0; |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4302 | |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 4303 | if (cifs_parse_mount_options(mount_data, devname, volume_info, is_smb3)) |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4304 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4305 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 4306 | if (volume_info->nullauth) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4307 | cifs_dbg(FYI, "Anonymous login\n"); |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 4308 | kfree(volume_info->username); |
| 4309 | volume_info->username = NULL; |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 4310 | } else if (volume_info->username) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4311 | /* BB fixme parse for domain name here */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4312 | cifs_dbg(FYI, "Username: %s\n", volume_info->username); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | } else { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4314 | cifs_dbg(VFS, "No username specified\n"); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4315 | /* In userspace mount helper we can get user name from alternate |
| 4316 | locations such as env variables and files on disk */ |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4317 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4318 | } |
| 4319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4320 | /* this is needed for ASCII cp to Unicode converts */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 4321 | if (volume_info->iocharset == NULL) { |
Jeff Layton | a5fc4ce | 2010-04-24 07:57:42 -0400 | [diff] [blame] | 4322 | /* load_nls_default cannot return null */ |
| 4323 | volume_info->local_nls = load_nls_default(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4324 | } else { |
Jeff Layton | a5fc4ce | 2010-04-24 07:57:42 -0400 | [diff] [blame] | 4325 | volume_info->local_nls = load_nls(volume_info->iocharset); |
| 4326 | if (volume_info->local_nls == NULL) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4327 | cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 4328 | volume_info->iocharset); |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4329 | return -ELIBACC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4330 | } |
| 4331 | } |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4332 | |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4333 | return rc; |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4334 | } |
| 4335 | |
| 4336 | struct smb_vol * |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 4337 | cifs_get_volume_info(char *mount_data, const char *devname, bool is_smb3) |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4338 | { |
| 4339 | int rc; |
| 4340 | struct smb_vol *volume_info; |
| 4341 | |
Jeff Layton | 6ee9542 | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 4342 | volume_info = kmalloc(sizeof(struct smb_vol), GFP_KERNEL); |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4343 | if (!volume_info) |
| 4344 | return ERR_PTR(-ENOMEM); |
| 4345 | |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 4346 | rc = cifs_setup_volume_info(volume_info, mount_data, devname, is_smb3); |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4347 | if (rc) { |
| 4348 | cifs_cleanup_volume_info(volume_info); |
| 4349 | volume_info = ERR_PTR(rc); |
| 4350 | } |
| 4351 | |
| 4352 | return volume_info; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4353 | } |
| 4354 | |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 4355 | static int |
| 4356 | cifs_are_all_path_components_accessible(struct TCP_Server_Info *server, |
| 4357 | unsigned int xid, |
| 4358 | struct cifs_tcon *tcon, |
| 4359 | struct cifs_sb_info *cifs_sb, |
| 4360 | char *full_path) |
| 4361 | { |
| 4362 | int rc; |
| 4363 | char *s; |
| 4364 | char sep, tmp; |
| 4365 | |
| 4366 | sep = CIFS_DIR_SEP(cifs_sb); |
| 4367 | s = full_path; |
| 4368 | |
| 4369 | rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, ""); |
| 4370 | while (rc == 0) { |
| 4371 | /* skip separators */ |
| 4372 | while (*s == sep) |
| 4373 | s++; |
| 4374 | if (!*s) |
| 4375 | break; |
| 4376 | /* next separator */ |
| 4377 | while (*s && *s != sep) |
| 4378 | s++; |
| 4379 | |
| 4380 | /* |
| 4381 | * temporarily null-terminate the path at the end of |
| 4382 | * the current component |
| 4383 | */ |
| 4384 | tmp = *s; |
| 4385 | *s = 0; |
| 4386 | rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, |
| 4387 | full_path); |
| 4388 | *s = tmp; |
| 4389 | } |
| 4390 | return rc; |
| 4391 | } |
| 4392 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4393 | /* |
| 4394 | * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is, |
| 4395 | * otherwise 0. |
| 4396 | */ |
| 4397 | static int is_path_remote(struct cifs_sb_info *cifs_sb, struct smb_vol *vol, |
| 4398 | const unsigned int xid, |
| 4399 | struct TCP_Server_Info *server, |
| 4400 | struct cifs_tcon *tcon) |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4401 | { |
Jeff Layton | 1daaae8 | 2012-03-21 06:30:40 -0400 | [diff] [blame] | 4402 | int rc; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4403 | char *full_path; |
| 4404 | |
| 4405 | if (!server->ops->is_path_accessible) |
| 4406 | return -EOPNOTSUPP; |
| 4407 | |
| 4408 | /* |
| 4409 | * cifs_build_path_to_root works only when we have a valid tcon |
| 4410 | */ |
| 4411 | full_path = cifs_build_path_to_root(vol, cifs_sb, tcon, |
| 4412 | tcon->Flags & SMB_SHARE_IS_IN_DFS); |
| 4413 | if (full_path == NULL) |
| 4414 | return -ENOMEM; |
| 4415 | |
| 4416 | cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path); |
| 4417 | |
| 4418 | rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, |
| 4419 | full_path); |
| 4420 | if (rc != 0 && rc != -EREMOTE) { |
| 4421 | kfree(full_path); |
| 4422 | return rc; |
| 4423 | } |
| 4424 | |
| 4425 | if (rc != -EREMOTE) { |
| 4426 | rc = cifs_are_all_path_components_accessible(server, xid, tcon, |
| 4427 | cifs_sb, |
| 4428 | full_path); |
| 4429 | if (rc != 0) { |
| 4430 | cifs_dbg(VFS, "cannot query dirs between root and final path, " |
| 4431 | "enabling CIFS_MOUNT_USE_PREFIX_PATH\n"); |
| 4432 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH; |
| 4433 | rc = 0; |
| 4434 | } |
| 4435 | } |
| 4436 | |
| 4437 | kfree(full_path); |
| 4438 | return rc; |
| 4439 | } |
| 4440 | |
| 4441 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 4442 | int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol) |
| 4443 | { |
| 4444 | int rc = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 4445 | unsigned int xid; |
Pavel Shilovsky | af4281d | 2012-05-27 20:48:35 +0400 | [diff] [blame] | 4446 | struct cifs_ses *ses; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4447 | struct cifs_tcon *root_tcon = NULL; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4448 | struct cifs_tcon *tcon = NULL; |
Pavel Shilovsky | af4281d | 2012-05-27 20:48:35 +0400 | [diff] [blame] | 4449 | struct TCP_Server_Info *server; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4450 | char *root_path = NULL, *full_path = NULL; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4451 | char *old_mountdata; |
| 4452 | int count; |
Al Viro | dd85446 | 2011-06-17 08:24:42 -0400 | [diff] [blame] | 4453 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4454 | rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon); |
| 4455 | if (!rc && tcon) { |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4456 | /* If not a standalone DFS root, then check if path is remote */ |
| 4457 | rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, |
| 4458 | cifs_remap(cifs_sb), vol->UNC + 1, NULL, |
| 4459 | NULL); |
| 4460 | if (rc) { |
| 4461 | rc = is_path_remote(cifs_sb, vol, xid, server, tcon); |
| 4462 | if (!rc) |
| 4463 | goto out; |
| 4464 | if (rc != -EREMOTE) |
| 4465 | goto error; |
| 4466 | } |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4467 | } |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4468 | /* |
| 4469 | * If first DFS target server went offline and we failed to connect it, |
| 4470 | * server and ses pointers are NULL at this point, though we still have |
| 4471 | * chance to get a cached DFS referral in expand_dfs_referral() and |
| 4472 | * retry next target available in it. |
| 4473 | * |
| 4474 | * If a NULL ses ptr is passed to dfs_cache_find(), a lookup will be |
| 4475 | * performed against DFS path and *no* requests will be sent to server |
| 4476 | * for any new DFS referrals. Hence it's safe to skip checking whether |
| 4477 | * server or ses ptr is NULL. |
| 4478 | */ |
| 4479 | if (rc == -EACCES || rc == -EOPNOTSUPP) |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4480 | goto error; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4481 | |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4482 | root_path = build_unc_path_to_root(vol, cifs_sb, false); |
| 4483 | if (IS_ERR(root_path)) { |
| 4484 | rc = PTR_ERR(root_path); |
| 4485 | root_path = NULL; |
| 4486 | goto error; |
| 4487 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4488 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 4489 | full_path = build_unc_path_to_root(vol, cifs_sb, true); |
| 4490 | if (IS_ERR(full_path)) { |
| 4491 | rc = PTR_ERR(full_path); |
| 4492 | full_path = NULL; |
| 4493 | goto error; |
| 4494 | } |
Sean Finney | c1508ca | 2011-04-11 13:19:31 +0000 | [diff] [blame] | 4495 | /* |
| 4496 | * Perform an unconditional check for whether there are DFS |
| 4497 | * referrals for this path without prefix, to provide support |
| 4498 | * for DFS referrals from w2k8 servers which don't seem to respond |
| 4499 | * with PATH_NOT_COVERED to requests that include the prefix. |
| 4500 | * Chase the referral if found, otherwise continue normally. |
| 4501 | */ |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4502 | old_mountdata = cifs_sb->mountdata; |
| 4503 | (void)expand_dfs_referral(xid, ses, vol, cifs_sb, false); |
Sean Finney | c1508ca | 2011-04-11 13:19:31 +0000 | [diff] [blame] | 4504 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4505 | if (cifs_sb->mountdata == NULL) { |
| 4506 | rc = -ENOENT; |
| 4507 | goto error; |
| 4508 | } |
| 4509 | |
| 4510 | if (cifs_sb->mountdata != old_mountdata) { |
| 4511 | /* If we were redirected, reconnect to new target server */ |
| 4512 | mount_put_conns(cifs_sb, xid, server, ses, tcon); |
| 4513 | rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon); |
| 4514 | } |
| 4515 | if (rc) { |
| 4516 | if (rc == -EACCES || rc == -EOPNOTSUPP) |
| 4517 | goto error; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4518 | /* Perform DFS failover to any other DFS targets */ |
| 4519 | rc = mount_do_dfs_failover(root_path + 1, cifs_sb, vol, NULL, |
| 4520 | &xid, &server, &ses, &tcon); |
| 4521 | if (rc) |
| 4522 | goto error; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4523 | } |
| 4524 | |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4525 | kfree(root_path); |
| 4526 | root_path = build_unc_path_to_root(vol, cifs_sb, false); |
| 4527 | if (IS_ERR(root_path)) { |
| 4528 | rc = PTR_ERR(root_path); |
| 4529 | root_path = NULL; |
| 4530 | goto error; |
| 4531 | } |
| 4532 | /* Cache out resolved root server */ |
| 4533 | (void)dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb), |
| 4534 | root_path + 1, NULL, NULL); |
| 4535 | /* |
| 4536 | * Save root tcon for additional DFS requests to update or create a new |
| 4537 | * DFS cache entry, or even perform DFS failover. |
| 4538 | */ |
| 4539 | spin_lock(&cifs_tcp_ses_lock); |
| 4540 | tcon->tc_count++; |
| 4541 | tcon->dfs_path = root_path; |
| 4542 | root_path = NULL; |
| 4543 | tcon->remap = cifs_remap(cifs_sb); |
| 4544 | spin_unlock(&cifs_tcp_ses_lock); |
| 4545 | |
| 4546 | root_tcon = tcon; |
| 4547 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4548 | for (count = 1; ;) { |
| 4549 | if (!rc && tcon) { |
| 4550 | rc = is_path_remote(cifs_sb, vol, xid, server, tcon); |
| 4551 | if (!rc || rc != -EREMOTE) |
| 4552 | break; |
Pavel Shilovsky | 68889f2 | 2012-05-25 14:40:22 +0400 | [diff] [blame] | 4553 | } |
Steve French | 6d3ea7e | 2012-11-28 22:34:41 -0600 | [diff] [blame] | 4554 | /* |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4555 | * BB: when we implement proper loop detection, |
| 4556 | * we will remove this check. But now we need it |
| 4557 | * to prevent an indefinite loop if 'DFS tree' is |
| 4558 | * misconfigured (i.e. has loops). |
Steve French | 6d3ea7e | 2012-11-28 22:34:41 -0600 | [diff] [blame] | 4559 | */ |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4560 | if (count++ > MAX_NESTED_LINKS) { |
Igor Mammedov | 5c2503a | 2009-04-21 19:31:05 +0400 | [diff] [blame] | 4561 | rc = -ELOOP; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4562 | break; |
Igor Mammedov | 5c2503a | 2009-04-21 19:31:05 +0400 | [diff] [blame] | 4563 | } |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4564 | |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4565 | kfree(full_path); |
| 4566 | full_path = build_unc_path_to_root(vol, cifs_sb, true); |
| 4567 | if (IS_ERR(full_path)) { |
| 4568 | rc = PTR_ERR(full_path); |
| 4569 | full_path = NULL; |
| 4570 | break; |
| 4571 | } |
| 4572 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4573 | old_mountdata = cifs_sb->mountdata; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4574 | rc = expand_dfs_referral(xid, root_tcon->ses, vol, cifs_sb, |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4575 | true); |
| 4576 | if (rc) |
| 4577 | break; |
Jeff Layton | 7b91e26 | 2009-07-23 15:22:30 -0400 | [diff] [blame] | 4578 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4579 | if (cifs_sb->mountdata != old_mountdata) { |
| 4580 | mount_put_conns(cifs_sb, xid, server, ses, tcon); |
| 4581 | rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, |
| 4582 | &tcon); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4583 | } |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4584 | if (rc) { |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4585 | if (rc == -EACCES || rc == -EOPNOTSUPP) |
| 4586 | break; |
| 4587 | /* Perform DFS failover to any other DFS targets */ |
| 4588 | rc = mount_do_dfs_failover(full_path + 1, cifs_sb, vol, |
| 4589 | root_tcon->ses, &xid, |
| 4590 | &server, &ses, &tcon); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4591 | if (rc == -EACCES || rc == -EOPNOTSUPP || !server || |
| 4592 | !ses) |
| 4593 | goto error; |
| 4594 | } |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4595 | } |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4596 | cifs_put_tcon(root_tcon); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4597 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4598 | if (rc) |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4599 | goto error; |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4600 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 4601 | spin_lock(&cifs_tcp_ses_lock); |
| 4602 | if (!tcon->dfs_path) { |
| 4603 | /* Save full path in new tcon to do failover when reconnecting tcons */ |
| 4604 | tcon->dfs_path = full_path; |
| 4605 | full_path = NULL; |
| 4606 | tcon->remap = cifs_remap(cifs_sb); |
| 4607 | } |
| 4608 | cifs_sb->origin_fullpath = kstrndup(tcon->dfs_path, |
YueHaibing | 2f0a617 | 2018-12-18 01:34:39 +0000 | [diff] [blame] | 4609 | strlen(tcon->dfs_path), |
| 4610 | GFP_ATOMIC); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 4611 | if (!cifs_sb->origin_fullpath) { |
| 4612 | spin_unlock(&cifs_tcp_ses_lock); |
| 4613 | rc = -ENOMEM; |
| 4614 | goto error; |
| 4615 | } |
| 4616 | spin_unlock(&cifs_tcp_ses_lock); |
| 4617 | |
Paulo Alcantara | e511d31 | 2018-11-14 17:16:44 -0200 | [diff] [blame] | 4618 | rc = dfs_cache_add_vol(vol, cifs_sb->origin_fullpath); |
| 4619 | if (rc) { |
| 4620 | kfree(cifs_sb->origin_fullpath); |
| 4621 | goto error; |
| 4622 | } |
Aurelien Aptel | 5fc7fcd | 2018-11-16 16:13:25 +0100 | [diff] [blame] | 4623 | /* |
| 4624 | * After reconnecting to a different server, unique ids won't |
| 4625 | * match anymore, so we disable serverino. This prevents |
| 4626 | * dentry revalidation to think the dentry are stale (ESTALE). |
| 4627 | */ |
| 4628 | cifs_autodisable_serverino(cifs_sb); |
Jeff Layton | 70fe7dc | 2007-11-16 22:21:07 +0000 | [diff] [blame] | 4629 | out: |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 4630 | free_xid(xid); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4631 | return mount_setup_tlink(cifs_sb, ses, tcon); |
| 4632 | |
| 4633 | error: |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4634 | kfree(full_path); |
| 4635 | kfree(root_path); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4636 | mount_put_conns(cifs_sb, xid, server, ses, tcon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4637 | return rc; |
| 4638 | } |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4639 | #else |
| 4640 | int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol) |
| 4641 | { |
| 4642 | int rc = 0; |
| 4643 | unsigned int xid; |
| 4644 | struct cifs_ses *ses; |
| 4645 | struct cifs_tcon *tcon; |
| 4646 | struct TCP_Server_Info *server; |
| 4647 | |
| 4648 | rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon); |
| 4649 | if (rc) |
| 4650 | goto error; |
| 4651 | |
| 4652 | if (tcon) { |
| 4653 | rc = is_path_remote(cifs_sb, vol, xid, server, tcon); |
| 4654 | if (rc == -EREMOTE) |
| 4655 | rc = -EOPNOTSUPP; |
| 4656 | if (rc) |
| 4657 | goto error; |
| 4658 | } |
| 4659 | |
| 4660 | free_xid(xid); |
| 4661 | |
| 4662 | return mount_setup_tlink(cifs_sb, ses, tcon); |
| 4663 | |
| 4664 | error: |
| 4665 | mount_put_conns(cifs_sb, xid, server, ses, tcon); |
| 4666 | return rc; |
| 4667 | } |
| 4668 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4669 | |
Jeff Layton | 8d1bca3 | 2011-06-11 21:17:10 -0400 | [diff] [blame] | 4670 | /* |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 4671 | * Issue a TREE_CONNECT request. |
Jeff Layton | 8d1bca3 | 2011-06-11 21:17:10 -0400 | [diff] [blame] | 4672 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4673 | int |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 4674 | CIFSTCon(const unsigned int xid, struct cifs_ses *ses, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 4675 | const char *tree, struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4676 | const struct nls_table *nls_codepage) |
| 4677 | { |
| 4678 | struct smb_hdr *smb_buffer; |
| 4679 | struct smb_hdr *smb_buffer_response; |
| 4680 | TCONX_REQ *pSMB; |
| 4681 | TCONX_RSP *pSMBr; |
| 4682 | unsigned char *bcc_ptr; |
| 4683 | int rc = 0; |
Jeff Layton | 690c522 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 4684 | int length; |
| 4685 | __u16 bytes_left, count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4686 | |
| 4687 | if (ses == NULL) |
| 4688 | return -EIO; |
| 4689 | |
| 4690 | smb_buffer = cifs_buf_get(); |
Steve French | ca43e3b | 2009-09-01 17:20:50 +0000 | [diff] [blame] | 4691 | if (smb_buffer == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4692 | return -ENOMEM; |
Steve French | ca43e3b | 2009-09-01 17:20:50 +0000 | [diff] [blame] | 4693 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4694 | smb_buffer_response = smb_buffer; |
| 4695 | |
| 4696 | header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX, |
| 4697 | NULL /*no tid */ , 4 /*wct */ ); |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 4698 | |
Pavel Shilovsky | 8825736 | 2012-05-23 14:01:59 +0400 | [diff] [blame] | 4699 | smb_buffer->Mid = get_next_mid(ses->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4700 | smb_buffer->Uid = ses->Suid; |
| 4701 | pSMB = (TCONX_REQ *) smb_buffer; |
| 4702 | pSMBr = (TCONX_RSP *) smb_buffer_response; |
| 4703 | |
| 4704 | pSMB->AndXCommand = 0xFF; |
| 4705 | pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4706 | bcc_ptr = &pSMB->Password[0]; |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 4707 | if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) { |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4708 | pSMB->PasswordLength = cpu_to_le16(1); /* minimum */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 4709 | *bcc_ptr = 0; /* password is null byte */ |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4710 | bcc_ptr++; /* skip password */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 4711 | /* already aligned so no need to do it below */ |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4712 | } else { |
Shirish Pargaonkar | 540b2e3 | 2011-01-18 22:33:54 -0600 | [diff] [blame] | 4713 | pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE); |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4714 | /* BB FIXME add code to fail this if NTLMv2 or Kerberos |
| 4715 | specified as required (when that support is added to |
| 4716 | the vfs in the future) as only NTLM or the much |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 4717 | weaker LANMAN (which we do not send by default) is accepted |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4718 | by Samba (not sure whether other servers allow |
| 4719 | NTLMv2 password here) */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 4720 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 4721 | if ((global_secflags & CIFSSEC_MAY_LANMAN) && |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 4722 | (ses->sectype == LANMAN)) |
Shirish Pargaonkar | d3ba50b | 2010-10-27 15:20:36 -0500 | [diff] [blame] | 4723 | calc_lanman_hash(tcon->password, ses->server->cryptkey, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 4724 | ses->server->sec_mode & |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 4725 | SECMODE_PW_ENCRYPT ? true : false, |
| 4726 | bcc_ptr); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 4727 | else |
| 4728 | #endif /* CIFS_WEAK_PW_HASH */ |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 4729 | rc = SMBNTencrypt(tcon->password, ses->server->cryptkey, |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 4730 | bcc_ptr, nls_codepage); |
Steve French | f3a31a2 | 2015-03-26 19:23:20 -0500 | [diff] [blame] | 4731 | if (rc) { |
| 4732 | cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n", |
| 4733 | __func__, rc); |
| 4734 | cifs_buf_release(smb_buffer); |
| 4735 | return rc; |
| 4736 | } |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4737 | |
Shirish Pargaonkar | 540b2e3 | 2011-01-18 22:33:54 -0600 | [diff] [blame] | 4738 | bcc_ptr += CIFS_AUTH_RESP_SIZE; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4739 | if (ses->capabilities & CAP_UNICODE) { |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 4740 | /* must align unicode strings */ |
| 4741 | *bcc_ptr = 0; /* null byte password */ |
| 4742 | bcc_ptr++; |
| 4743 | } |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4744 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4745 | |
Jeff Layton | 38d77c5 | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 4746 | if (ses->server->sign) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 4748 | |
| 4749 | if (ses->capabilities & CAP_STATUS32) { |
| 4750 | smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS; |
| 4751 | } |
| 4752 | if (ses->capabilities & CAP_DFS) { |
| 4753 | smb_buffer->Flags2 |= SMBFLG2_DFS; |
| 4754 | } |
| 4755 | if (ses->capabilities & CAP_UNICODE) { |
| 4756 | smb_buffer->Flags2 |= SMBFLG2_UNICODE; |
| 4757 | length = |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 4758 | cifs_strtoUTF16((__le16 *) bcc_ptr, tree, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4759 | 6 /* max utf8 char length in bytes */ * |
Steve French | a878fb2 | 2006-05-30 18:04:19 +0000 | [diff] [blame] | 4760 | (/* server len*/ + 256 /* share len */), nls_codepage); |
| 4761 | bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4762 | bcc_ptr += 2; /* skip trailing null */ |
| 4763 | } else { /* ASCII */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4764 | strcpy(bcc_ptr, tree); |
| 4765 | bcc_ptr += strlen(tree) + 1; |
| 4766 | } |
| 4767 | strcpy(bcc_ptr, "?????"); |
| 4768 | bcc_ptr += strlen("?????"); |
| 4769 | bcc_ptr += 1; |
| 4770 | count = bcc_ptr - &pSMB->Password[0]; |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 4771 | pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu( |
| 4772 | pSMB->hdr.smb_buf_length) + count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4773 | pSMB->ByteCount = cpu_to_le16(count); |
| 4774 | |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 4775 | rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length, |
Jeff Layton | 7749981 | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 4776 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4778 | /* above now done in SendReceive */ |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 4779 | if (rc == 0) { |
Steve French | 0e0d2cf | 2009-05-01 05:27:32 +0000 | [diff] [blame] | 4780 | bool is_unicode; |
| 4781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4782 | tcon->tidStatus = CifsGood; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4783 | tcon->need_reconnect = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4784 | tcon->tid = smb_buffer_response->Tid; |
| 4785 | bcc_ptr = pByteArea(smb_buffer_response); |
Jeff Layton | 690c522 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 4786 | bytes_left = get_bcc(smb_buffer_response); |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 4787 | length = strnlen(bcc_ptr, bytes_left - 2); |
Steve French | 0e0d2cf | 2009-05-01 05:27:32 +0000 | [diff] [blame] | 4788 | if (smb_buffer->Flags2 & SMBFLG2_UNICODE) |
| 4789 | is_unicode = true; |
| 4790 | else |
| 4791 | is_unicode = false; |
| 4792 | |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 4793 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4794 | /* skip service field (NB: this field is always ASCII) */ |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 4795 | if (length == 3) { |
| 4796 | if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && |
| 4797 | (bcc_ptr[2] == 'C')) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4798 | cifs_dbg(FYI, "IPC connection\n"); |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 4799 | tcon->ipc = true; |
| 4800 | tcon->pipe = true; |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 4801 | } |
| 4802 | } else if (length == 2) { |
| 4803 | if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { |
| 4804 | /* the most common case */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4805 | cifs_dbg(FYI, "disk share connection\n"); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 4806 | } |
| 4807 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4808 | bcc_ptr += length + 1; |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 4809 | bytes_left -= (length + 1); |
Zhao Hongjiang | 46b51d0 | 2013-06-24 01:57:47 -0500 | [diff] [blame] | 4810 | strlcpy(tcon->treeName, tree, sizeof(tcon->treeName)); |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 4811 | |
| 4812 | /* mostly informational -- no need to fail on error here */ |
Jeff Layton | 90a98b2 | 2009-07-20 13:40:52 -0400 | [diff] [blame] | 4813 | kfree(tcon->nativeFileSystem); |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 4814 | tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, |
Steve French | 0e0d2cf | 2009-05-01 05:27:32 +0000 | [diff] [blame] | 4815 | bytes_left, is_unicode, |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 4816 | nls_codepage); |
| 4817 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4818 | cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem); |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 4819 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 4820 | if ((smb_buffer_response->WordCount == 3) || |
Steve French | 1a4e15a | 2006-10-12 21:33:51 +0000 | [diff] [blame] | 4821 | (smb_buffer_response->WordCount == 7)) |
| 4822 | /* field is in same location */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 4823 | tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport); |
| 4824 | else |
| 4825 | tcon->Flags = 0; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4826 | cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4827 | } |
| 4828 | |
Mariusz Kozlowski | a8a11d3 | 2007-10-03 16:41:24 +0000 | [diff] [blame] | 4829 | cifs_buf_release(smb_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4830 | return rc; |
| 4831 | } |
| 4832 | |
Al Viro | 2e32cf5 | 2013-10-03 12:53:37 -0400 | [diff] [blame] | 4833 | static void delayed_free(struct rcu_head *p) |
| 4834 | { |
| 4835 | struct cifs_sb_info *sbi = container_of(p, struct cifs_sb_info, rcu); |
| 4836 | unload_nls(sbi->local_nls); |
| 4837 | kfree(sbi); |
| 4838 | } |
| 4839 | |
Al Viro | 2a9b995 | 2011-06-17 09:27:16 -0400 | [diff] [blame] | 4840 | void |
| 4841 | cifs_umount(struct cifs_sb_info *cifs_sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4842 | { |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 4843 | struct rb_root *root = &cifs_sb->tlink_tree; |
| 4844 | struct rb_node *node; |
| 4845 | struct tcon_link *tlink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4846 | |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 4847 | cancel_delayed_work_sync(&cifs_sb->prune_tlinks); |
| 4848 | |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 4849 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 4850 | while ((node = rb_first(root))) { |
| 4851 | tlink = rb_entry(node, struct tcon_link, tl_rbnode); |
| 4852 | cifs_get_tlink(tlink); |
| 4853 | clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags); |
| 4854 | rb_erase(node, root); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4855 | |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 4856 | spin_unlock(&cifs_sb->tlink_tree_lock); |
| 4857 | cifs_put_tlink(tlink); |
| 4858 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 4859 | } |
| 4860 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4861 | |
Al Viro | d757d71 | 2011-06-17 09:42:43 -0400 | [diff] [blame] | 4862 | kfree(cifs_sb->mountdata); |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 4863 | kfree(cifs_sb->prepath); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 4864 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Paulo Alcantara | e511d31 | 2018-11-14 17:16:44 -0200 | [diff] [blame] | 4865 | dfs_cache_del_vol(cifs_sb->origin_fullpath); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 4866 | kfree(cifs_sb->origin_fullpath); |
| 4867 | #endif |
Al Viro | 2e32cf5 | 2013-10-03 12:53:37 -0400 | [diff] [blame] | 4868 | call_rcu(&cifs_sb->rcu, delayed_free); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4869 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4870 | |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 4871 | int |
| 4872 | cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4873 | { |
| 4874 | int rc = 0; |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4875 | struct TCP_Server_Info *server = ses->server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4876 | |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 4877 | if (!server->ops->need_neg || !server->ops->negotiate) |
| 4878 | return -ENOSYS; |
| 4879 | |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4880 | /* only send once per connect */ |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 4881 | if (!server->ops->need_neg(server)) |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4882 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4883 | |
Pavel Shilovsky | 4527578 | 2012-05-17 17:53:29 +0400 | [diff] [blame] | 4884 | set_credits(server, 1); |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 4885 | |
| 4886 | rc = server->ops->negotiate(xid, ses); |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4887 | if (rc == 0) { |
| 4888 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | 7fdbaa1 | 2011-06-10 16:14:57 -0400 | [diff] [blame] | 4889 | if (server->tcpStatus == CifsNeedNegotiate) |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4890 | server->tcpStatus = CifsGood; |
| 4891 | else |
| 4892 | rc = -EHOSTDOWN; |
| 4893 | spin_unlock(&GlobalMid_Lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4894 | } |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 4895 | |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4896 | return rc; |
| 4897 | } |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 4898 | |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 4899 | int |
| 4900 | cifs_setup_session(const unsigned int xid, struct cifs_ses *ses, |
| 4901 | struct nls_table *nls_info) |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4902 | { |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 4903 | int rc = -ENOSYS; |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4904 | struct TCP_Server_Info *server = ses->server; |
| 4905 | |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 4906 | ses->capabilities = server->capabilities; |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 4907 | if (linuxExtEnabled == 0) |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 4908 | ses->capabilities &= (~server->vals->cap_unix); |
Steve French | 20418ac | 2009-04-30 16:13:32 +0000 | [diff] [blame] | 4909 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4910 | cifs_dbg(FYI, "Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d\n", |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 4911 | server->sec_mode, server->capabilities, server->timeAdj); |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 4912 | |
Shu Wang | f5c4ba8 | 2017-09-08 18:48:33 +0800 | [diff] [blame] | 4913 | if (ses->auth_key.response) { |
Steve French | 2a18287 | 2018-03-29 12:16:34 -0500 | [diff] [blame] | 4914 | cifs_dbg(FYI, "Free previous auth_key.response = %p\n", |
Shu Wang | f5c4ba8 | 2017-09-08 18:48:33 +0800 | [diff] [blame] | 4915 | ses->auth_key.response); |
| 4916 | kfree(ses->auth_key.response); |
| 4917 | ses->auth_key.response = NULL; |
| 4918 | ses->auth_key.len = 0; |
| 4919 | } |
| 4920 | |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 4921 | if (server->ops->sess_setup) |
| 4922 | rc = server->ops->sess_setup(xid, ses, nls_info); |
| 4923 | |
Shirish Pargaonkar | d4e63bd | 2013-08-29 08:35:09 -0500 | [diff] [blame] | 4924 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4925 | cifs_dbg(VFS, "Send error in SessSetup = %d\n", rc); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 4926 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4927 | return rc; |
| 4928 | } |
| 4929 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 4930 | static int |
| 4931 | cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses) |
| 4932 | { |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 4933 | vol->sectype = ses->sectype; |
| 4934 | |
| 4935 | /* krb5 is special, since we don't need username or pw */ |
| 4936 | if (vol->sectype == Kerberos) |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 4937 | return 0; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 4938 | |
| 4939 | return cifs_set_cifscreds(vol, ses); |
| 4940 | } |
| 4941 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 4942 | static struct cifs_tcon * |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 4943 | cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid) |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4944 | { |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 4945 | int rc; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 4946 | struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb); |
| 4947 | struct cifs_ses *ses; |
| 4948 | struct cifs_tcon *tcon = NULL; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4949 | struct smb_vol *vol_info; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4950 | |
| 4951 | vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL); |
Dan Carpenter | 803ab97 | 2012-01-24 11:39:22 +0300 | [diff] [blame] | 4952 | if (vol_info == NULL) |
| 4953 | return ERR_PTR(-ENOMEM); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4954 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4955 | vol_info->local_nls = cifs_sb->local_nls; |
| 4956 | vol_info->linux_uid = fsuid; |
| 4957 | vol_info->cred_uid = fsuid; |
| 4958 | vol_info->UNC = master_tcon->treeName; |
| 4959 | vol_info->retry = master_tcon->retry; |
| 4960 | vol_info->nocase = master_tcon->nocase; |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 4961 | vol_info->nohandlecache = master_tcon->nohandlecache; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4962 | vol_info->local_lease = master_tcon->local_lease; |
| 4963 | vol_info->no_linux_ext = !master_tcon->unix_ext; |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 4964 | vol_info->sectype = master_tcon->ses->sectype; |
| 4965 | vol_info->sign = master_tcon->ses->sign; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4966 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 4967 | rc = cifs_set_vol_auth(vol_info, master_tcon->ses); |
| 4968 | if (rc) { |
| 4969 | tcon = ERR_PTR(rc); |
| 4970 | goto out; |
| 4971 | } |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4972 | |
| 4973 | /* get a reference for the same TCP session */ |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 4974 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4975 | ++master_tcon->ses->server->srv_count; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 4976 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4977 | |
| 4978 | ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info); |
| 4979 | if (IS_ERR(ses)) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 4980 | tcon = (struct cifs_tcon *)ses; |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 4981 | cifs_put_tcp_session(master_tcon->ses->server, 0); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4982 | goto out; |
| 4983 | } |
| 4984 | |
| 4985 | tcon = cifs_get_tcon(ses, vol_info); |
| 4986 | if (IS_ERR(tcon)) { |
| 4987 | cifs_put_smb_ses(ses); |
| 4988 | goto out; |
| 4989 | } |
| 4990 | |
Steve French | ce558b0 | 2018-05-31 19:16:54 -0500 | [diff] [blame] | 4991 | /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */ |
| 4992 | if (tcon->posix_extensions) |
| 4993 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS; |
Steve French | 0fdfef9 | 2018-06-28 19:30:23 -0500 | [diff] [blame] | 4994 | |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 4995 | if (cap_unix(ses)) |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4996 | reset_cifs_unix_caps(0, tcon, NULL, vol_info); |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 4997 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4998 | out: |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 4999 | kfree(vol_info->username); |
Aurelien Aptel | 97f4b72 | 2018-01-25 15:59:39 +0100 | [diff] [blame] | 5000 | kzfree(vol_info->password); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5001 | kfree(vol_info); |
| 5002 | |
| 5003 | return tcon; |
| 5004 | } |
| 5005 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 5006 | struct cifs_tcon * |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5007 | cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb) |
| 5008 | { |
| 5009 | return tlink_tcon(cifs_sb_master_tlink(cifs_sb)); |
| 5010 | } |
| 5011 | |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5012 | /* find and return a tlink with given uid */ |
| 5013 | static struct tcon_link * |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5014 | tlink_rb_search(struct rb_root *root, kuid_t uid) |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5015 | { |
| 5016 | struct rb_node *node = root->rb_node; |
| 5017 | struct tcon_link *tlink; |
| 5018 | |
| 5019 | while (node) { |
| 5020 | tlink = rb_entry(node, struct tcon_link, tl_rbnode); |
| 5021 | |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5022 | if (uid_gt(tlink->tl_uid, uid)) |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5023 | node = node->rb_left; |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5024 | else if (uid_lt(tlink->tl_uid, uid)) |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5025 | node = node->rb_right; |
| 5026 | else |
| 5027 | return tlink; |
| 5028 | } |
| 5029 | return NULL; |
| 5030 | } |
| 5031 | |
| 5032 | /* insert a tcon_link into the tree */ |
| 5033 | static void |
| 5034 | tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink) |
| 5035 | { |
| 5036 | struct rb_node **new = &(root->rb_node), *parent = NULL; |
| 5037 | struct tcon_link *tlink; |
| 5038 | |
| 5039 | while (*new) { |
| 5040 | tlink = rb_entry(*new, struct tcon_link, tl_rbnode); |
| 5041 | parent = *new; |
| 5042 | |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5043 | if (uid_gt(tlink->tl_uid, new_tlink->tl_uid)) |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5044 | new = &((*new)->rb_left); |
| 5045 | else |
| 5046 | new = &((*new)->rb_right); |
| 5047 | } |
| 5048 | |
| 5049 | rb_link_node(&new_tlink->tl_rbnode, parent, new); |
| 5050 | rb_insert_color(&new_tlink->tl_rbnode, root); |
| 5051 | } |
| 5052 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5053 | /* |
| 5054 | * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the |
| 5055 | * current task. |
| 5056 | * |
| 5057 | * If the superblock doesn't refer to a multiuser mount, then just return |
| 5058 | * the master tcon for the mount. |
| 5059 | * |
Suresh Jayaraman | 6ef933a | 2010-11-03 10:53:49 +0530 | [diff] [blame] | 5060 | * First, search the rbtree for an existing tcon for this fsuid. If one |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5061 | * exists, then check to see if it's pending construction. If it is then wait |
| 5062 | * for construction to complete. Once it's no longer pending, check to see if |
| 5063 | * it failed and either return an error or retry construction, depending on |
| 5064 | * the timeout. |
| 5065 | * |
| 5066 | * If one doesn't exist then insert a new tcon_link struct into the tree and |
| 5067 | * try to construct a new one. |
| 5068 | */ |
| 5069 | struct tcon_link * |
| 5070 | cifs_sb_tlink(struct cifs_sb_info *cifs_sb) |
| 5071 | { |
| 5072 | int ret; |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5073 | kuid_t fsuid = current_fsuid(); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5074 | struct tcon_link *tlink, *newtlink; |
| 5075 | |
| 5076 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) |
| 5077 | return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb)); |
| 5078 | |
| 5079 | spin_lock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5080 | tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5081 | if (tlink) |
| 5082 | cifs_get_tlink(tlink); |
| 5083 | spin_unlock(&cifs_sb->tlink_tree_lock); |
| 5084 | |
| 5085 | if (tlink == NULL) { |
| 5086 | newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL); |
| 5087 | if (newtlink == NULL) |
| 5088 | return ERR_PTR(-ENOMEM); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5089 | newtlink->tl_uid = fsuid; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5090 | newtlink->tl_tcon = ERR_PTR(-EACCES); |
| 5091 | set_bit(TCON_LINK_PENDING, &newtlink->tl_flags); |
| 5092 | set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags); |
| 5093 | cifs_get_tlink(newtlink); |
| 5094 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5095 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 5096 | /* was one inserted after previous search? */ |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5097 | tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5098 | if (tlink) { |
| 5099 | cifs_get_tlink(tlink); |
| 5100 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5101 | kfree(newtlink); |
| 5102 | goto wait_for_construction; |
| 5103 | } |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5104 | tlink = newtlink; |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5105 | tlink_rb_insert(&cifs_sb->tlink_tree, tlink); |
| 5106 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5107 | } else { |
| 5108 | wait_for_construction: |
| 5109 | ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING, |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5110 | TASK_INTERRUPTIBLE); |
| 5111 | if (ret) { |
| 5112 | cifs_put_tlink(tlink); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 5113 | return ERR_PTR(-ERESTARTSYS); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5114 | } |
| 5115 | |
| 5116 | /* if it's good, return it */ |
| 5117 | if (!IS_ERR(tlink->tl_tcon)) |
| 5118 | return tlink; |
| 5119 | |
| 5120 | /* return error if we tried this already recently */ |
| 5121 | if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) { |
| 5122 | cifs_put_tlink(tlink); |
| 5123 | return ERR_PTR(-EACCES); |
| 5124 | } |
| 5125 | |
| 5126 | if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags)) |
| 5127 | goto wait_for_construction; |
| 5128 | } |
| 5129 | |
| 5130 | tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid); |
| 5131 | clear_bit(TCON_LINK_PENDING, &tlink->tl_flags); |
| 5132 | wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING); |
| 5133 | |
| 5134 | if (IS_ERR(tlink->tl_tcon)) { |
| 5135 | cifs_put_tlink(tlink); |
| 5136 | return ERR_PTR(-EACCES); |
| 5137 | } |
| 5138 | |
| 5139 | return tlink; |
| 5140 | } |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5141 | |
| 5142 | /* |
| 5143 | * periodic workqueue job that scans tcon_tree for a superblock and closes |
| 5144 | * out tcons. |
| 5145 | */ |
| 5146 | static void |
| 5147 | cifs_prune_tlinks(struct work_struct *work) |
| 5148 | { |
| 5149 | struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info, |
| 5150 | prune_tlinks.work); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5151 | struct rb_root *root = &cifs_sb->tlink_tree; |
Colin Ian King | 37e12f5 | 2018-01-17 09:52:39 +0000 | [diff] [blame] | 5152 | struct rb_node *node; |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5153 | struct rb_node *tmp; |
| 5154 | struct tcon_link *tlink; |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5155 | |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5156 | /* |
| 5157 | * Because we drop the spinlock in the loop in order to put the tlink |
| 5158 | * it's not guarded against removal of links from the tree. The only |
| 5159 | * places that remove entries from the tree are this function and |
| 5160 | * umounts. Because this function is non-reentrant and is canceled |
| 5161 | * before umount can proceed, this is safe. |
| 5162 | */ |
| 5163 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 5164 | node = rb_first(root); |
| 5165 | while (node != NULL) { |
| 5166 | tmp = node; |
| 5167 | node = rb_next(tmp); |
| 5168 | tlink = rb_entry(tmp, struct tcon_link, tl_rbnode); |
| 5169 | |
| 5170 | if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) || |
| 5171 | atomic_read(&tlink->tl_count) != 0 || |
| 5172 | time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies)) |
| 5173 | continue; |
| 5174 | |
| 5175 | cifs_get_tlink(tlink); |
| 5176 | clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags); |
| 5177 | rb_erase(tmp, root); |
| 5178 | |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5179 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5180 | cifs_put_tlink(tlink); |
| 5181 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 5182 | } |
| 5183 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5184 | |
Jeff Layton | da472fc | 2012-03-23 14:40:53 -0400 | [diff] [blame] | 5185 | queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks, |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5186 | TLINK_IDLE_EXPIRE); |
| 5187 | } |