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, |
Steve French | 3e7a02d | 2019-09-11 21:46:20 -0500 | [diff] [blame] | 77 | Opt_noblocksend, Opt_noautotune, Opt_nolease, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 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, |
Steve French | 4f5c10f | 2019-09-03 21:18:49 -0500 | [diff] [blame] | 94 | Opt_sign, Opt_ignore_signature, 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, |
Paulo Alcantara (SUSE) | 8eecd1c | 2019-07-16 19:04:50 -0300 | [diff] [blame] | 99 | Opt_domainauto, Opt_rdma, Opt_modesid, Opt_rootfs, |
Steve French | 9fe5ff1 | 2019-06-24 20:39:04 -0500 | [diff] [blame] | 100 | Opt_compress, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 101 | |
| 102 | /* Mount options which take numeric value */ |
| 103 | Opt_backupuid, Opt_backupgid, Opt_uid, |
| 104 | Opt_cruid, Opt_gid, Opt_file_mode, |
| 105 | Opt_dirmode, Opt_port, |
Steve French | 563317e | 2019-09-08 23:22:02 -0500 | [diff] [blame] | 106 | Opt_min_enc_offload, |
Steve French | e8506d2 | 2019-02-28 21:32:15 -0600 | [diff] [blame] | 107 | Opt_blocksize, Opt_rsize, Opt_wsize, Opt_actimeo, |
Steve French | ca567eb | 2019-03-29 16:31:07 -0500 | [diff] [blame] | 108 | Opt_echo_interval, Opt_max_credits, Opt_handletimeout, |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 109 | Opt_snapshot, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 110 | |
| 111 | /* Mount options which take string value */ |
| 112 | Opt_user, Opt_pass, Opt_ip, |
Jeff Layton | 73a999f | 2013-03-22 08:42:57 -0400 | [diff] [blame] | 113 | Opt_domain, Opt_srcaddr, Opt_iocharset, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 114 | Opt_netbiosname, Opt_servern, |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 115 | Opt_ver, Opt_vers, Opt_sec, Opt_cache, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 116 | |
| 117 | /* Mount options to be ignored */ |
| 118 | Opt_ignore, |
| 119 | |
| 120 | /* Options which could be blank */ |
| 121 | Opt_blank_pass, |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 122 | Opt_blank_user, |
| 123 | Opt_blank_ip, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 124 | |
| 125 | Opt_err |
| 126 | }; |
| 127 | |
| 128 | static const match_table_t cifs_mount_option_tokens = { |
| 129 | |
| 130 | { Opt_user_xattr, "user_xattr" }, |
| 131 | { Opt_nouser_xattr, "nouser_xattr" }, |
| 132 | { Opt_forceuid, "forceuid" }, |
| 133 | { Opt_noforceuid, "noforceuid" }, |
Jeff Layton | 72bd481 | 2012-10-03 16:02:36 -0400 | [diff] [blame] | 134 | { Opt_forcegid, "forcegid" }, |
| 135 | { Opt_noforcegid, "noforcegid" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 136 | { Opt_noblocksend, "noblocksend" }, |
| 137 | { Opt_noautotune, "noautotune" }, |
Steve French | 3e7a02d | 2019-09-11 21:46:20 -0500 | [diff] [blame] | 138 | { Opt_nolease, "nolease" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 139 | { Opt_hard, "hard" }, |
| 140 | { Opt_soft, "soft" }, |
| 141 | { Opt_perm, "perm" }, |
| 142 | { Opt_noperm, "noperm" }, |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 143 | { Opt_mapchars, "mapchars" }, /* SFU style */ |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 144 | { Opt_nomapchars, "nomapchars" }, |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 145 | { Opt_mapposix, "mapposix" }, /* SFM style */ |
| 146 | { Opt_nomapposix, "nomapposix" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 147 | { Opt_sfu, "sfu" }, |
| 148 | { Opt_nosfu, "nosfu" }, |
| 149 | { Opt_nodfs, "nodfs" }, |
| 150 | { Opt_posixpaths, "posixpaths" }, |
| 151 | { Opt_noposixpaths, "noposixpaths" }, |
| 152 | { Opt_nounix, "nounix" }, |
| 153 | { Opt_nounix, "nolinux" }, |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 154 | { Opt_nounix, "noposix" }, |
| 155 | { Opt_unix, "unix" }, |
| 156 | { Opt_unix, "linux" }, |
| 157 | { Opt_unix, "posix" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 158 | { Opt_nocase, "nocase" }, |
| 159 | { Opt_nocase, "ignorecase" }, |
| 160 | { Opt_brl, "brl" }, |
| 161 | { Opt_nobrl, "nobrl" }, |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 162 | { Opt_handlecache, "handlecache" }, |
| 163 | { Opt_nohandlecache, "nohandlecache" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 164 | { Opt_nobrl, "nolock" }, |
| 165 | { Opt_forcemandatorylock, "forcemandatorylock" }, |
Pavel Shilovsky | 5cfdddc | 2012-03-27 20:51:15 +0400 | [diff] [blame] | 166 | { Opt_forcemandatorylock, "forcemand" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 167 | { Opt_setuids, "setuids" }, |
| 168 | { Opt_nosetuids, "nosetuids" }, |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 169 | { Opt_setuidfromacl, "idsfromsid" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 170 | { Opt_dynperm, "dynperm" }, |
| 171 | { Opt_nodynperm, "nodynperm" }, |
| 172 | { Opt_nohard, "nohard" }, |
| 173 | { Opt_nosoft, "nosoft" }, |
| 174 | { Opt_nointr, "nointr" }, |
| 175 | { Opt_intr, "intr" }, |
| 176 | { Opt_nostrictsync, "nostrictsync" }, |
| 177 | { Opt_strictsync, "strictsync" }, |
| 178 | { Opt_serverino, "serverino" }, |
| 179 | { Opt_noserverino, "noserverino" }, |
| 180 | { Opt_rwpidforward, "rwpidforward" }, |
Steve French | 412094a | 2019-06-24 02:01:42 -0500 | [diff] [blame] | 181 | { Opt_modesid, "modefromsid" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 182 | { Opt_cifsacl, "cifsacl" }, |
| 183 | { Opt_nocifsacl, "nocifsacl" }, |
| 184 | { Opt_acl, "acl" }, |
| 185 | { Opt_noacl, "noacl" }, |
| 186 | { Opt_locallease, "locallease" }, |
| 187 | { Opt_sign, "sign" }, |
Steve French | 4f5c10f | 2019-09-03 21:18:49 -0500 | [diff] [blame] | 188 | { Opt_ignore_signature, "signloosely" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 189 | { Opt_seal, "seal" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 190 | { Opt_noac, "noac" }, |
| 191 | { Opt_fsc, "fsc" }, |
| 192 | { Opt_mfsymlinks, "mfsymlinks" }, |
| 193 | { Opt_multiuser, "multiuser" }, |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 194 | { Opt_sloppy, "sloppy" }, |
Jeff Layton | a0b3df5 | 2013-05-24 07:40:59 -0400 | [diff] [blame] | 195 | { Opt_nosharesock, "nosharesock" }, |
Steve French | b2a3077 | 2015-09-29 21:49:28 -0500 | [diff] [blame] | 196 | { Opt_persistent, "persistenthandles"}, |
| 197 | { Opt_nopersistent, "nopersistenthandles"}, |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 198 | { Opt_resilient, "resilienthandles"}, |
| 199 | { Opt_noresilient, "noresilienthandles"}, |
Germano Percossi | 3956644 | 2016-12-15 12:31:18 +0530 | [diff] [blame] | 200 | { Opt_domainauto, "domainauto"}, |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 201 | { Opt_rdma, "rdma"}, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 202 | |
| 203 | { Opt_backupuid, "backupuid=%s" }, |
| 204 | { Opt_backupgid, "backupgid=%s" }, |
| 205 | { Opt_uid, "uid=%s" }, |
| 206 | { Opt_cruid, "cruid=%s" }, |
| 207 | { Opt_gid, "gid=%s" }, |
| 208 | { Opt_file_mode, "file_mode=%s" }, |
| 209 | { Opt_dirmode, "dirmode=%s" }, |
| 210 | { Opt_dirmode, "dir_mode=%s" }, |
| 211 | { Opt_port, "port=%s" }, |
Steve French | 563317e | 2019-09-08 23:22:02 -0500 | [diff] [blame] | 212 | { Opt_min_enc_offload, "esize=%s" }, |
Steve French | e8506d2 | 2019-02-28 21:32:15 -0600 | [diff] [blame] | 213 | { Opt_blocksize, "bsize=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 214 | { Opt_rsize, "rsize=%s" }, |
| 215 | { Opt_wsize, "wsize=%s" }, |
| 216 | { Opt_actimeo, "actimeo=%s" }, |
Steve French | ca567eb | 2019-03-29 16:31:07 -0500 | [diff] [blame] | 217 | { Opt_handletimeout, "handletimeout=%s" }, |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 218 | { Opt_echo_interval, "echo_interval=%s" }, |
Steve French | 141891f | 2016-09-23 00:44:16 -0500 | [diff] [blame] | 219 | { Opt_max_credits, "max_credits=%s" }, |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 220 | { Opt_snapshot, "snapshot=%s" }, |
Steve French | 9fe5ff1 | 2019-06-24 20:39:04 -0500 | [diff] [blame] | 221 | { Opt_compress, "compress=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 222 | |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 223 | { Opt_blank_user, "user=" }, |
| 224 | { Opt_blank_user, "username=" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 225 | { Opt_user, "user=%s" }, |
| 226 | { Opt_user, "username=%s" }, |
| 227 | { Opt_blank_pass, "pass=" }, |
Jesper Nilsson | 3c15b4c | 2012-11-29 17:31:16 +0100 | [diff] [blame] | 228 | { Opt_blank_pass, "password=" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 229 | { Opt_pass, "pass=%s" }, |
| 230 | { Opt_pass, "password=%s" }, |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 231 | { Opt_blank_ip, "ip=" }, |
| 232 | { Opt_blank_ip, "addr=" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 233 | { Opt_ip, "ip=%s" }, |
| 234 | { Opt_ip, "addr=%s" }, |
Jeff Layton | 73a999f | 2013-03-22 08:42:57 -0400 | [diff] [blame] | 235 | { Opt_ignore, "unc=%s" }, |
| 236 | { Opt_ignore, "target=%s" }, |
| 237 | { Opt_ignore, "path=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 238 | { Opt_domain, "dom=%s" }, |
| 239 | { Opt_domain, "domain=%s" }, |
| 240 | { Opt_domain, "workgroup=%s" }, |
| 241 | { Opt_srcaddr, "srcaddr=%s" }, |
Jeff Layton | 73a999f | 2013-03-22 08:42:57 -0400 | [diff] [blame] | 242 | { Opt_ignore, "prefixpath=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 243 | { Opt_iocharset, "iocharset=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 244 | { Opt_netbiosname, "netbiosname=%s" }, |
| 245 | { Opt_servern, "servern=%s" }, |
| 246 | { Opt_ver, "ver=%s" }, |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 247 | { Opt_vers, "vers=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 248 | { Opt_sec, "sec=%s" }, |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 249 | { Opt_cache, "cache=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 250 | |
| 251 | { Opt_ignore, "cred" }, |
| 252 | { Opt_ignore, "credentials" }, |
Jeff Layton | a557b97 | 2012-05-02 14:02:40 -0400 | [diff] [blame] | 253 | { Opt_ignore, "cred=%s" }, |
| 254 | { Opt_ignore, "credentials=%s" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 255 | { Opt_ignore, "guest" }, |
| 256 | { Opt_ignore, "rw" }, |
| 257 | { Opt_ignore, "ro" }, |
| 258 | { Opt_ignore, "suid" }, |
| 259 | { Opt_ignore, "nosuid" }, |
| 260 | { Opt_ignore, "exec" }, |
| 261 | { Opt_ignore, "noexec" }, |
| 262 | { Opt_ignore, "nodev" }, |
| 263 | { Opt_ignore, "noauto" }, |
| 264 | { Opt_ignore, "dev" }, |
| 265 | { Opt_ignore, "mand" }, |
| 266 | { Opt_ignore, "nomand" }, |
Steve French | 9b9c5be | 2018-09-22 12:07:06 -0500 | [diff] [blame] | 267 | { Opt_ignore, "relatime" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 268 | { Opt_ignore, "_netdev" }, |
Paulo Alcantara (SUSE) | 8eecd1c | 2019-07-16 19:04:50 -0300 | [diff] [blame] | 269 | { Opt_rootfs, "rootfs" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 270 | |
| 271 | { Opt_err, NULL } |
| 272 | }; |
| 273 | |
| 274 | enum { |
| 275 | Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p, |
| 276 | Opt_sec_ntlmsspi, Opt_sec_ntlmssp, |
Jeff Layton | 7659624 | 2012-07-23 20:34:17 -0400 | [diff] [blame] | 277 | Opt_ntlm, Opt_sec_ntlmi, Opt_sec_ntlmv2, |
| 278 | Opt_sec_ntlmv2i, Opt_sec_lanman, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 279 | Opt_sec_none, |
| 280 | |
| 281 | Opt_sec_err |
| 282 | }; |
| 283 | |
| 284 | static const match_table_t cifs_secflavor_tokens = { |
| 285 | { Opt_sec_krb5, "krb5" }, |
| 286 | { Opt_sec_krb5i, "krb5i" }, |
| 287 | { Opt_sec_krb5p, "krb5p" }, |
| 288 | { Opt_sec_ntlmsspi, "ntlmsspi" }, |
| 289 | { Opt_sec_ntlmssp, "ntlmssp" }, |
| 290 | { Opt_ntlm, "ntlm" }, |
| 291 | { Opt_sec_ntlmi, "ntlmi" }, |
Jeff Layton | 7659624 | 2012-07-23 20:34:17 -0400 | [diff] [blame] | 292 | { Opt_sec_ntlmv2, "nontlm" }, |
| 293 | { Opt_sec_ntlmv2, "ntlmv2" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 294 | { Opt_sec_ntlmv2i, "ntlmv2i" }, |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 295 | { Opt_sec_lanman, "lanman" }, |
| 296 | { Opt_sec_none, "none" }, |
| 297 | |
| 298 | { Opt_sec_err, NULL } |
| 299 | }; |
| 300 | |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 301 | /* cache flavors */ |
| 302 | enum { |
| 303 | Opt_cache_loose, |
| 304 | Opt_cache_strict, |
| 305 | Opt_cache_none, |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 306 | Opt_cache_ro, |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 307 | Opt_cache_rw, |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 308 | Opt_cache_err |
| 309 | }; |
| 310 | |
| 311 | static const match_table_t cifs_cacheflavor_tokens = { |
| 312 | { Opt_cache_loose, "loose" }, |
| 313 | { Opt_cache_strict, "strict" }, |
| 314 | { Opt_cache_none, "none" }, |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 315 | { Opt_cache_ro, "ro" }, |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 316 | { Opt_cache_rw, "singleclient" }, |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 317 | { Opt_cache_err, NULL } |
| 318 | }; |
| 319 | |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 320 | static const match_table_t cifs_smb_version_tokens = { |
| 321 | { Smb_1, SMB1_VERSION_STRING }, |
Steve French | dd446b1 | 2012-11-28 23:21:06 -0600 | [diff] [blame] | 322 | { Smb_20, SMB20_VERSION_STRING}, |
Steve French | 1080ef7 | 2011-02-24 18:07:19 +0000 | [diff] [blame] | 323 | { Smb_21, SMB21_VERSION_STRING }, |
Steve French | e4aa25e | 2012-10-01 12:26:22 -0500 | [diff] [blame] | 324 | { Smb_30, SMB30_VERSION_STRING }, |
Steve French | 20b6d8b | 2013-06-12 22:48:41 -0500 | [diff] [blame] | 325 | { Smb_302, SMB302_VERSION_STRING }, |
Kenneth D'souza | 4a3b38a | 2018-11-17 10:33:30 +0530 | [diff] [blame] | 326 | { Smb_302, ALT_SMB302_VERSION_STRING }, |
Steve French | 5f7fbf7 | 2014-12-17 22:52:58 -0600 | [diff] [blame] | 327 | { Smb_311, SMB311_VERSION_STRING }, |
Steve French | aab1893 | 2015-06-23 23:37:11 -0500 | [diff] [blame] | 328 | { Smb_311, ALT_SMB311_VERSION_STRING }, |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 329 | { Smb_3any, SMB3ANY_VERSION_STRING }, |
| 330 | { Smb_default, SMBDEFAULT_VERSION_STRING }, |
Steve French | 5f7fbf7 | 2014-12-17 22:52:58 -0600 | [diff] [blame] | 331 | { Smb_version_err, NULL } |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 332 | }; |
| 333 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 334 | static int ip_connect(struct TCP_Server_Info *server); |
| 335 | static int generic_ip_connect(struct TCP_Server_Info *server); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 336 | 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] | 337 | static void cifs_prune_tlinks(struct work_struct *work); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 338 | static char *extract_hostname(const char *unc); |
| 339 | |
Paulo Alcantara | 28eb24f | 2018-11-20 15:16:36 -0200 | [diff] [blame] | 340 | /* |
| 341 | * Resolve hostname and set ip addr in tcp ses. Useful for hostnames that may |
| 342 | * get their ip addresses changed at some point. |
| 343 | * |
| 344 | * This should be called with server->srv_mutex held. |
| 345 | */ |
| 346 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 347 | static int reconn_set_ipaddr(struct TCP_Server_Info *server) |
| 348 | { |
| 349 | int rc; |
| 350 | int len; |
| 351 | char *unc, *ipaddr = NULL; |
| 352 | |
| 353 | if (!server->hostname) |
| 354 | return -EINVAL; |
| 355 | |
| 356 | len = strlen(server->hostname) + 3; |
| 357 | |
| 358 | unc = kmalloc(len, GFP_KERNEL); |
| 359 | if (!unc) { |
| 360 | cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__); |
| 361 | return -ENOMEM; |
| 362 | } |
Ronnie Sahlberg | 74ea5f9 | 2019-02-09 09:51:11 +1000 | [diff] [blame] | 363 | scnprintf(unc, len, "\\\\%s", server->hostname); |
Paulo Alcantara | 28eb24f | 2018-11-20 15:16:36 -0200 | [diff] [blame] | 364 | |
| 365 | rc = dns_resolve_server_name_to_ip(unc, &ipaddr); |
| 366 | kfree(unc); |
| 367 | |
| 368 | if (rc < 0) { |
| 369 | cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n", |
| 370 | __func__, server->hostname, rc); |
| 371 | return rc; |
| 372 | } |
| 373 | |
| 374 | rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr, |
| 375 | strlen(ipaddr)); |
| 376 | kfree(ipaddr); |
| 377 | |
| 378 | return !rc ? -1 : 0; |
| 379 | } |
| 380 | #else |
| 381 | static inline int reconn_set_ipaddr(struct TCP_Server_Info *server) |
| 382 | { |
| 383 | return 0; |
| 384 | } |
| 385 | #endif |
| 386 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 387 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 388 | struct super_cb_data { |
| 389 | struct TCP_Server_Info *server; |
| 390 | struct cifs_sb_info *cifs_sb; |
| 391 | }; |
| 392 | |
| 393 | /* These functions must be called with server->srv_mutex held */ |
| 394 | |
| 395 | static void super_cb(struct super_block *sb, void *arg) |
| 396 | { |
| 397 | struct super_cb_data *d = arg; |
| 398 | struct cifs_sb_info *cifs_sb; |
| 399 | struct cifs_tcon *tcon; |
| 400 | |
| 401 | if (d->cifs_sb) |
| 402 | return; |
| 403 | |
| 404 | cifs_sb = CIFS_SB(sb); |
| 405 | tcon = cifs_sb_master_tcon(cifs_sb); |
| 406 | if (tcon->ses->server == d->server) |
| 407 | d->cifs_sb = cifs_sb; |
| 408 | } |
| 409 | |
| 410 | static inline struct cifs_sb_info * |
| 411 | find_super_by_tcp(struct TCP_Server_Info *server) |
| 412 | { |
| 413 | struct super_cb_data d = { |
| 414 | .server = server, |
| 415 | .cifs_sb = NULL, |
| 416 | }; |
| 417 | |
| 418 | iterate_supers_type(&cifs_fs_type, super_cb, &d); |
| 419 | return d.cifs_sb ? d.cifs_sb : ERR_PTR(-ENOENT); |
| 420 | } |
| 421 | |
| 422 | static void reconn_inval_dfs_target(struct TCP_Server_Info *server, |
| 423 | struct cifs_sb_info *cifs_sb, |
| 424 | struct dfs_cache_tgt_list *tgt_list, |
| 425 | struct dfs_cache_tgt_iterator **tgt_it) |
| 426 | { |
| 427 | const char *name; |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 428 | |
| 429 | if (!cifs_sb || !cifs_sb->origin_fullpath || !tgt_list || |
| 430 | !server->nr_targets) |
| 431 | return; |
| 432 | |
| 433 | if (!*tgt_it) { |
| 434 | *tgt_it = dfs_cache_get_tgt_iterator(tgt_list); |
| 435 | } else { |
| 436 | *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it); |
| 437 | if (!*tgt_it) |
| 438 | *tgt_it = dfs_cache_get_tgt_iterator(tgt_list); |
| 439 | } |
| 440 | |
| 441 | cifs_dbg(FYI, "%s: UNC: %s\n", __func__, cifs_sb->origin_fullpath); |
| 442 | |
| 443 | name = dfs_cache_get_tgt_name(*tgt_it); |
| 444 | |
| 445 | kfree(server->hostname); |
| 446 | |
| 447 | server->hostname = extract_hostname(name); |
Dan Carpenter | 8428817 | 2019-01-05 15:25:29 +0300 | [diff] [blame] | 448 | if (IS_ERR(server->hostname)) { |
| 449 | cifs_dbg(FYI, |
| 450 | "%s: failed to extract hostname from target: %ld\n", |
| 451 | __func__, PTR_ERR(server->hostname)); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 452 | } |
| 453 | } |
| 454 | |
| 455 | static inline int reconn_setup_dfs_targets(struct cifs_sb_info *cifs_sb, |
| 456 | struct dfs_cache_tgt_list *tl, |
| 457 | struct dfs_cache_tgt_iterator **it) |
| 458 | { |
| 459 | if (!cifs_sb->origin_fullpath) |
| 460 | return -EOPNOTSUPP; |
| 461 | return dfs_cache_noreq_find(cifs_sb->origin_fullpath + 1, NULL, tl); |
| 462 | } |
| 463 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame] | 465 | /* |
| 466 | * cifs tcp session reconnection |
| 467 | * |
| 468 | * mark tcp session as reconnecting so temporarily locked |
| 469 | * mark all smb sessions as reconnecting for tcp session |
| 470 | * reconnect tcp session |
| 471 | * wake up waiters on reconnection? - (not needed currently) |
| 472 | */ |
Pavel Shilovsky | 28ea529 | 2012-05-23 16:18:00 +0400 | [diff] [blame] | 473 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | cifs_reconnect(struct TCP_Server_Info *server) |
| 475 | { |
| 476 | int rc = 0; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 477 | struct list_head *tmp, *tmp2; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 478 | struct cifs_ses *ses; |
| 479 | struct cifs_tcon *tcon; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 480 | struct mid_q_entry *mid_entry; |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 481 | struct list_head retry_list; |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 482 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Paulo Alcantara | 2332440 | 2018-11-20 14:37:18 -0200 | [diff] [blame] | 483 | struct cifs_sb_info *cifs_sb = NULL; |
| 484 | struct dfs_cache_tgt_list tgt_list = {0}; |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 485 | struct dfs_cache_tgt_iterator *tgt_it = NULL; |
| 486 | #endif |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | spin_lock(&GlobalMid_Lock); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 489 | server->nr_targets = 1; |
| 490 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Ronnie Sahlberg | 61cabc7 | 2019-06-14 13:02:29 +1000 | [diff] [blame] | 491 | spin_unlock(&GlobalMid_Lock); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 492 | cifs_sb = find_super_by_tcp(server); |
| 493 | if (IS_ERR(cifs_sb)) { |
| 494 | rc = PTR_ERR(cifs_sb); |
| 495 | cifs_dbg(FYI, "%s: will not do DFS failover: rc = %d\n", |
| 496 | __func__, rc); |
| 497 | cifs_sb = NULL; |
| 498 | } else { |
| 499 | rc = reconn_setup_dfs_targets(cifs_sb, &tgt_list, &tgt_it); |
Steve French | 55a7f00 | 2019-01-01 17:19:45 -0600 | [diff] [blame] | 500 | if (rc && (rc != -EOPNOTSUPP)) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 501 | cifs_server_dbg(VFS, "%s: no target servers for DFS failover\n", |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 502 | __func__); |
| 503 | } else { |
| 504 | server->nr_targets = dfs_cache_get_nr_tgts(&tgt_list); |
| 505 | } |
| 506 | } |
| 507 | cifs_dbg(FYI, "%s: will retry %d target(s)\n", __func__, |
| 508 | server->nr_targets); |
Ronnie Sahlberg | 61cabc7 | 2019-06-14 13:02:29 +1000 | [diff] [blame] | 509 | spin_lock(&GlobalMid_Lock); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 510 | #endif |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 511 | if (server->tcpStatus == CifsExiting) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 512 | /* the demux thread will exit normally |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | next time through the loop */ |
| 514 | spin_unlock(&GlobalMid_Lock); |
| 515 | return rc; |
| 516 | } else |
| 517 | server->tcpStatus = CifsNeedReconnect; |
| 518 | spin_unlock(&GlobalMid_Lock); |
| 519 | server->maxBuf = 0; |
Pavel Shilovsky | aa24d1e | 2011-12-27 16:23:34 +0400 | [diff] [blame] | 520 | server->max_read = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | |
Steve French | 6e4d3bb | 2018-09-22 11:25:04 -0500 | [diff] [blame] | 522 | cifs_dbg(FYI, "Mark tcp session as need reconnect\n"); |
Steve French | bf1fdeb | 2018-07-30 19:23:09 -0500 | [diff] [blame] | 523 | trace_smb3_reconnect(server->CurrentMid, server->hostname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | /* before reconnecting the tcp session, mark the smb session (uid) |
| 526 | and the tid bad so they are not used until reconnected */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 527 | cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n", |
| 528 | __func__); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 529 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 530 | list_for_each(tmp, &server->smb_ses_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 531 | ses = list_entry(tmp, struct cifs_ses, smb_ses_list); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 532 | ses->need_reconnect = true; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 533 | list_for_each(tmp2, &ses->tcon_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 534 | tcon = list_entry(tmp2, struct cifs_tcon, tcon_list); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 535 | tcon->need_reconnect = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 537 | if (ses->tcon_ipc) |
| 538 | ses->tcon_ipc->need_reconnect = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 540 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | /* 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] | 543 | cifs_dbg(FYI, "%s: tearing down socket\n", __func__); |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 544 | mutex_lock(&server->srv_mutex); |
Long Li | 1d2a4f5 | 2019-05-13 21:01:28 -0700 | [diff] [blame] | 545 | if (server->ssocket) { |
| 546 | cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n", |
| 547 | server->ssocket->state, server->ssocket->flags); |
| 548 | kernel_sock_shutdown(server->ssocket, SHUT_WR); |
| 549 | cifs_dbg(FYI, "Post shutdown state: 0x%x Flags: 0x%lx\n", |
| 550 | server->ssocket->state, server->ssocket->flags); |
| 551 | sock_release(server->ssocket); |
| 552 | server->ssocket = NULL; |
| 553 | } |
| 554 | server->sequence_number = 0; |
| 555 | server->session_estab = false; |
| 556 | kfree(server->session_key.response); |
| 557 | server->session_key.response = NULL; |
| 558 | server->session_key.len = 0; |
| 559 | server->lstrp = jiffies; |
Long Li | 214bab4 | 2019-04-05 21:36:35 +0000 | [diff] [blame] | 560 | |
| 561 | /* mark submitted MIDs for retry and issue callback */ |
| 562 | INIT_LIST_HEAD(&retry_list); |
| 563 | cifs_dbg(FYI, "%s: moving mids to private list\n", __func__); |
| 564 | spin_lock(&GlobalMid_Lock); |
| 565 | list_for_each_safe(tmp, tmp2, &server->pending_mid_q) { |
| 566 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
Pavel Shilovsky | abe5707 | 2019-10-22 08:41:42 -0700 | [diff] [blame] | 567 | kref_get(&mid_entry->refcount); |
Long Li | 214bab4 | 2019-04-05 21:36:35 +0000 | [diff] [blame] | 568 | if (mid_entry->mid_state == MID_REQUEST_SUBMITTED) |
| 569 | mid_entry->mid_state = MID_RETRY_NEEDED; |
| 570 | list_move(&mid_entry->qhead, &retry_list); |
Pavel Shilovsky | abe5707 | 2019-10-22 08:41:42 -0700 | [diff] [blame] | 571 | mid_entry->mid_flags |= MID_DELETED; |
Long Li | 214bab4 | 2019-04-05 21:36:35 +0000 | [diff] [blame] | 572 | } |
| 573 | spin_unlock(&GlobalMid_Lock); |
Long Li | 1d2a4f5 | 2019-05-13 21:01:28 -0700 | [diff] [blame] | 574 | mutex_unlock(&server->srv_mutex); |
Long Li | 214bab4 | 2019-04-05 21:36:35 +0000 | [diff] [blame] | 575 | |
| 576 | cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__); |
| 577 | list_for_each_safe(tmp, tmp2, &retry_list) { |
| 578 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
| 579 | list_del_init(&mid_entry->qhead); |
| 580 | mid_entry->callback(mid_entry); |
Pavel Shilovsky | abe5707 | 2019-10-22 08:41:42 -0700 | [diff] [blame] | 581 | cifs_mid_q_entry_release(mid_entry); |
Long Li | 214bab4 | 2019-04-05 21:36:35 +0000 | [diff] [blame] | 582 | } |
| 583 | |
Long Li | 1d2a4f5 | 2019-05-13 21:01:28 -0700 | [diff] [blame] | 584 | if (cifs_rdma_enabled(server)) { |
| 585 | mutex_lock(&server->srv_mutex); |
Long Li | 050b8c3 | 2019-04-04 11:35:42 -0500 | [diff] [blame] | 586 | smbd_destroy(server); |
Long Li | 1d2a4f5 | 2019-05-13 21:01:28 -0700 | [diff] [blame] | 587 | mutex_unlock(&server->srv_mutex); |
| 588 | } |
Jeff Layton | 3c1105d | 2011-05-22 07:09:13 -0400 | [diff] [blame] | 589 | |
Jeff Layton | 7fdbaa1 | 2011-06-10 16:14:57 -0400 | [diff] [blame] | 590 | do { |
Steve French | 6c3d890 | 2006-07-31 22:46:20 +0000 | [diff] [blame] | 591 | try_to_freeze(); |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 592 | |
Jeff Layton | 73e216a | 2013-09-05 08:38:10 -0400 | [diff] [blame] | 593 | mutex_lock(&server->srv_mutex); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 594 | /* |
| 595 | * Set up next DFS target server (if any) for reconnect. If DFS |
| 596 | * feature is disabled, then we will retry last server we |
| 597 | * connected to before. |
| 598 | */ |
Long Li | 781a805 | 2017-11-22 17:38:36 -0700 | [diff] [blame] | 599 | if (cifs_rdma_enabled(server)) |
| 600 | rc = smbd_reconnect(server); |
| 601 | else |
| 602 | rc = generic_ip_connect(server); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 603 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 604 | cifs_dbg(FYI, "reconnect error %d\n", rc); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 605 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 606 | reconn_inval_dfs_target(server, cifs_sb, &tgt_list, |
| 607 | &tgt_it); |
| 608 | #endif |
Paulo Alcantara | 28eb24f | 2018-11-20 15:16:36 -0200 | [diff] [blame] | 609 | rc = reconn_set_ipaddr(server); |
| 610 | if (rc) { |
| 611 | cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n", |
| 612 | __func__, rc); |
| 613 | } |
Federico Sauter | 4afe260 | 2015-03-17 17:45:28 +0100 | [diff] [blame] | 614 | mutex_unlock(&server->srv_mutex); |
Steve French | 0cb766a | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 615 | msleep(3000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | } else { |
| 617 | atomic_inc(&tcpSesReconnectCount); |
Pavel Shilovsky | 335b7b6 | 2019-01-16 11:12:41 -0800 | [diff] [blame] | 618 | set_credits(server, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 620 | if (server->tcpStatus != CifsExiting) |
Steve French | fd88ce9 | 2011-04-12 01:01:14 +0000 | [diff] [blame] | 621 | server->tcpStatus = CifsNeedNegotiate; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 622 | spin_unlock(&GlobalMid_Lock); |
Federico Sauter | 4afe260 | 2015-03-17 17:45:28 +0100 | [diff] [blame] | 623 | mutex_unlock(&server->srv_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | } |
Jeff Layton | 7fdbaa1 | 2011-06-10 16:14:57 -0400 | [diff] [blame] | 625 | } while (server->tcpStatus == CifsNeedReconnect); |
Jeff Layton | 2b84a36c | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 626 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 627 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 628 | if (tgt_it) { |
| 629 | rc = dfs_cache_noreq_update_tgthint(cifs_sb->origin_fullpath + 1, |
| 630 | tgt_it); |
| 631 | if (rc) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 632 | cifs_server_dbg(VFS, "%s: failed to update DFS target hint: rc = %d\n", |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 633 | __func__, rc); |
| 634 | } |
| 635 | rc = dfs_cache_update_vol(cifs_sb->origin_fullpath, server); |
| 636 | if (rc) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 637 | cifs_server_dbg(VFS, "%s: failed to update vol info in DFS cache: rc = %d\n", |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 638 | __func__, rc); |
| 639 | } |
Paulo Alcantara | 2332440 | 2018-11-20 14:37:18 -0200 | [diff] [blame] | 640 | dfs_cache_free_tgts(&tgt_list); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 641 | } |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 642 | #endif |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 643 | if (server->tcpStatus == CifsNeedNegotiate) |
| 644 | mod_delayed_work(cifsiod_wq, &server->echo, 0); |
| 645 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | return rc; |
| 647 | } |
| 648 | |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 649 | static void |
| 650 | cifs_echo_request(struct work_struct *work) |
| 651 | { |
| 652 | int rc; |
| 653 | struct TCP_Server_Info *server = container_of(work, |
| 654 | struct TCP_Server_Info, echo.work); |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 655 | unsigned long echo_interval; |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 656 | |
Jeff Layton | 247ec9b | 2011-02-04 17:09:50 -0500 | [diff] [blame] | 657 | /* |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 658 | * If we need to renegotiate, set echo interval to zero to |
| 659 | * immediately call echo service where we can renegotiate. |
| 660 | */ |
| 661 | if (server->tcpStatus == CifsNeedNegotiate) |
| 662 | echo_interval = 0; |
| 663 | else |
| 664 | echo_interval = server->echo_interval; |
| 665 | |
| 666 | /* |
| 667 | * We cannot send an echo if it is disabled. |
| 668 | * Also, no need to ping if we got a response recently. |
Jeff Layton | 247ec9b | 2011-02-04 17:09:50 -0500 | [diff] [blame] | 669 | */ |
Steve French | 4fcd181 | 2016-06-22 20:12:05 -0500 | [diff] [blame] | 670 | |
| 671 | if (server->tcpStatus == CifsNeedReconnect || |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 672 | server->tcpStatus == CifsExiting || |
| 673 | server->tcpStatus == CifsNew || |
Pavel Shilovsky | f6d7617 | 2012-05-25 14:47:16 +0400 | [diff] [blame] | 674 | (server->ops->can_echo && !server->ops->can_echo(server)) || |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 675 | time_before(jiffies, server->lstrp + echo_interval - HZ)) |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 676 | goto requeue_echo; |
| 677 | |
Pavel Shilovsky | f6d7617 | 2012-05-25 14:47:16 +0400 | [diff] [blame] | 678 | rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS; |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 679 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 680 | cifs_dbg(FYI, "Unable to send echo request to server: %s\n", |
| 681 | server->hostname); |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 682 | |
| 683 | requeue_echo: |
Sachin Prabhu | b8c6001 | 2016-10-20 19:52:24 -0400 | [diff] [blame] | 684 | queue_delayed_work(cifsiod_wq, &server->echo, server->echo_interval); |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 685 | } |
| 686 | |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 687 | static bool |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 688 | allocate_buffers(struct TCP_Server_Info *server) |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 689 | { |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 690 | if (!server->bigbuf) { |
| 691 | server->bigbuf = (char *)cifs_buf_get(); |
| 692 | if (!server->bigbuf) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 693 | cifs_server_dbg(VFS, "No memory for large SMB response\n"); |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 694 | msleep(3000); |
| 695 | /* retry will check if exiting */ |
| 696 | return false; |
| 697 | } |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 698 | } else if (server->large_buf) { |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 699 | /* we are reusing a dirty large buf, clear its start */ |
Pavel Shilovsky | 1887f60 | 2012-05-17 12:45:31 +0400 | [diff] [blame] | 700 | memset(server->bigbuf, 0, HEADER_SIZE(server)); |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 701 | } |
| 702 | |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 703 | if (!server->smallbuf) { |
| 704 | server->smallbuf = (char *)cifs_small_buf_get(); |
| 705 | if (!server->smallbuf) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 706 | cifs_server_dbg(VFS, "No memory for SMB response\n"); |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 707 | msleep(1000); |
| 708 | /* retry will check if exiting */ |
| 709 | return false; |
| 710 | } |
| 711 | /* beginning of smb buffer is cleared in our buf_get */ |
| 712 | } else { |
| 713 | /* if existing small buf clear beginning */ |
Pavel Shilovsky | 1887f60 | 2012-05-17 12:45:31 +0400 | [diff] [blame] | 714 | memset(server->smallbuf, 0, HEADER_SIZE(server)); |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 715 | } |
| 716 | |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 717 | return true; |
| 718 | } |
| 719 | |
Jeff Layton | ba749e6 | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 720 | static bool |
| 721 | server_unresponsive(struct TCP_Server_Info *server) |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 722 | { |
Pavel Shilovsky | 6dae51a | 2012-02-21 16:50:23 +0300 | [diff] [blame] | 723 | /* |
Ronnie Sahlberg | f2caf90 | 2019-07-06 06:52:46 +1000 | [diff] [blame] | 724 | * We need to wait 3 echo intervals to make sure we handle such |
Pavel Shilovsky | 6dae51a | 2012-02-21 16:50:23 +0300 | [diff] [blame] | 725 | * situations right: |
| 726 | * 1s client sends a normal SMB request |
Ronnie Sahlberg | becc2ba | 2019-07-24 11:43:49 +1000 | [diff] [blame] | 727 | * 2s client gets a response |
Pavel Shilovsky | 6dae51a | 2012-02-21 16:50:23 +0300 | [diff] [blame] | 728 | * 30s echo workqueue job pops, and decides we got a response recently |
| 729 | * and don't need to send another |
| 730 | * ... |
| 731 | * 65s kernel_recvmsg times out, and we see that we haven't gotten |
| 732 | * a response in >60s. |
| 733 | */ |
Samuel Cabrero | 76e7527 | 2017-07-11 12:44:39 +0200 | [diff] [blame] | 734 | if ((server->tcpStatus == CifsGood || |
| 735 | server->tcpStatus == CifsNeedNegotiate) && |
Ronnie Sahlberg | f2caf90 | 2019-07-06 06:52:46 +1000 | [diff] [blame] | 736 | time_after(jiffies, server->lstrp + 3 * server->echo_interval)) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 737 | cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n", |
| 738 | (3 * server->echo_interval) / HZ); |
Jeff Layton | ba749e6 | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 739 | cifs_reconnect(server); |
| 740 | wake_up(&server->response_q); |
| 741 | return true; |
| 742 | } |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 743 | |
Jeff Layton | ba749e6 | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 744 | return false; |
| 745 | } |
| 746 | |
Pavel Shilovsky | ef68e83 | 2019-01-18 17:25:36 -0800 | [diff] [blame] | 747 | static inline bool |
| 748 | zero_credits(struct TCP_Server_Info *server) |
| 749 | { |
| 750 | int val; |
| 751 | |
| 752 | spin_lock(&server->req_lock); |
| 753 | val = server->credits + server->echo_credits + server->oplock_credits; |
| 754 | if (server->in_flight == 0 && val == 0) { |
| 755 | spin_unlock(&server->req_lock); |
| 756 | return true; |
| 757 | } |
| 758 | spin_unlock(&server->req_lock); |
| 759 | return false; |
| 760 | } |
| 761 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 762 | static int |
| 763 | 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] | 764 | { |
Jeff Layton | a52c1eb | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 765 | int length = 0; |
| 766 | int total_read; |
Jeff Layton | 42c4dfc | 2011-10-19 15:28:17 -0400 | [diff] [blame] | 767 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 768 | smb_msg->msg_control = NULL; |
| 769 | smb_msg->msg_controllen = 0; |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 770 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 771 | for (total_read = 0; msg_data_left(smb_msg); total_read += length) { |
Jeff Layton | 95edcff | 2011-12-01 20:22:41 -0500 | [diff] [blame] | 772 | try_to_freeze(); |
| 773 | |
Pavel Shilovsky | ef68e83 | 2019-01-18 17:25:36 -0800 | [diff] [blame] | 774 | /* reconnect if no credits and no requests in flight */ |
| 775 | if (zero_credits(server)) { |
| 776 | cifs_reconnect(server); |
| 777 | return -ECONNABORTED; |
| 778 | } |
| 779 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 780 | if (server_unresponsive(server)) |
| 781 | return -ECONNABORTED; |
Long Li | 2fef137 | 2017-11-22 17:38:41 -0700 | [diff] [blame] | 782 | if (cifs_rdma_enabled(server) && server->smbd_conn) |
| 783 | length = smbd_recv(server->smbd_conn, smb_msg); |
| 784 | else |
| 785 | length = sock_recvmsg(server->ssocket, smb_msg, 0); |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 786 | |
| 787 | if (server->tcpStatus == CifsExiting) |
| 788 | return -ESHUTDOWN; |
| 789 | |
| 790 | if (server->tcpStatus == CifsNeedReconnect) { |
| 791 | cifs_reconnect(server); |
| 792 | return -ECONNABORTED; |
Jeff Layton | ba749e6 | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 793 | } |
| 794 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 795 | if (length == -ERESTARTSYS || |
| 796 | length == -EAGAIN || |
| 797 | length == -EINTR) { |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 798 | /* |
| 799 | * Minimum sleep to prevent looping, allowing socket |
| 800 | * to clear and app threads to set tcpStatus |
| 801 | * CifsNeedReconnect if server hung. |
| 802 | */ |
| 803 | usleep_range(1000, 2000); |
| 804 | length = 0; |
Jeff Layton | a52c1eb | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 805 | continue; |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 806 | } |
| 807 | |
| 808 | if (length <= 0) { |
Al Viro | 09aab88 | 2015-11-13 03:00:17 -0500 | [diff] [blame] | 809 | cifs_dbg(FYI, "Received no data or error: %d\n", length); |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 810 | cifs_reconnect(server); |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 811 | return -ECONNABORTED; |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 812 | } |
| 813 | } |
Jeff Layton | a52c1eb | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 814 | return total_read; |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 815 | } |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 816 | |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 817 | int |
| 818 | cifs_read_from_socket(struct TCP_Server_Info *server, char *buf, |
| 819 | unsigned int to_read) |
Jeff Layton | 42c4dfc | 2011-10-19 15:28:17 -0400 | [diff] [blame] | 820 | { |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 821 | struct msghdr smb_msg; |
| 822 | struct kvec iov = {.iov_base = buf, .iov_len = to_read}; |
David Howells | aa563d7 | 2018-10-20 00:57:56 +0100 | [diff] [blame] | 823 | iov_iter_kvec(&smb_msg.msg_iter, READ, &iov, 1, to_read); |
Jeff Layton | 42c4dfc | 2011-10-19 15:28:17 -0400 | [diff] [blame] | 824 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 825 | return cifs_readv_from_socket(server, &smb_msg); |
| 826 | } |
Jeff Layton | 42c4dfc | 2011-10-19 15:28:17 -0400 | [diff] [blame] | 827 | |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 828 | int |
| 829 | 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] | 830 | unsigned int page_offset, unsigned int to_read) |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 831 | { |
| 832 | struct msghdr smb_msg; |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 833 | struct bio_vec bv = { |
| 834 | .bv_page = page, .bv_len = to_read, .bv_offset = page_offset}; |
David Howells | aa563d7 | 2018-10-20 00:57:56 +0100 | [diff] [blame] | 835 | iov_iter_bvec(&smb_msg.msg_iter, READ, &bv, 1, to_read); |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 836 | return cifs_readv_from_socket(server, &smb_msg); |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 837 | } |
| 838 | |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 839 | static bool |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 840 | is_smb_response(struct TCP_Server_Info *server, unsigned char type) |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 841 | { |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 842 | /* |
| 843 | * The first byte big endian of the length field, |
| 844 | * is actually not part of the length but the type |
| 845 | * with the most common, zero, as regular data. |
| 846 | */ |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 847 | switch (type) { |
| 848 | case RFC1002_SESSION_MESSAGE: |
| 849 | /* Regular SMB response */ |
| 850 | return true; |
| 851 | case RFC1002_SESSION_KEEP_ALIVE: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 852 | cifs_dbg(FYI, "RFC 1002 session keep alive\n"); |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 853 | break; |
| 854 | case RFC1002_POSITIVE_SESSION_RESPONSE: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 855 | cifs_dbg(FYI, "RFC 1002 positive session response\n"); |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 856 | break; |
| 857 | case RFC1002_NEGATIVE_SESSION_RESPONSE: |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 858 | /* |
| 859 | * We get this from Windows 98 instead of an error on |
| 860 | * SMB negprot response. |
| 861 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 862 | cifs_dbg(FYI, "RFC 1002 negative session response\n"); |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 863 | /* give server a second to clean up */ |
| 864 | msleep(1000); |
| 865 | /* |
| 866 | * Always try 445 first on reconnect since we get NACK |
| 867 | * on some if we ever connected to port 139 (the NACK |
| 868 | * is since we do not begin with RFC1001 session |
| 869 | * initialize frame). |
| 870 | */ |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 871 | cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT); |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 872 | cifs_reconnect(server); |
| 873 | wake_up(&server->response_q); |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 874 | break; |
| 875 | default: |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 876 | cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type); |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 877 | cifs_reconnect(server); |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 878 | } |
| 879 | |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 880 | return false; |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 881 | } |
| 882 | |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 883 | void |
| 884 | dequeue_mid(struct mid_q_entry *mid, bool malformed) |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 885 | { |
| 886 | #ifdef CONFIG_CIFS_STATS2 |
| 887 | mid->when_received = jiffies; |
| 888 | #endif |
| 889 | spin_lock(&GlobalMid_Lock); |
| 890 | if (!malformed) |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 891 | mid->mid_state = MID_RESPONSE_RECEIVED; |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 892 | else |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 893 | mid->mid_state = MID_RESPONSE_MALFORMED; |
Ronnie Sahlberg | ddf83af | 2018-08-30 10:12:59 +1000 | [diff] [blame] | 894 | /* |
| 895 | * Trying to handle/dequeue a mid after the send_recv() |
| 896 | * function has finished processing it is a bug. |
| 897 | */ |
| 898 | if (mid->mid_flags & MID_DELETED) |
| 899 | printk_once(KERN_WARNING |
| 900 | "trying to dequeue a deleted mid\n"); |
Pavel Shilovsky | abe5707 | 2019-10-22 08:41:42 -0700 | [diff] [blame] | 901 | else { |
Ronnie Sahlberg | ddf83af | 2018-08-30 10:12:59 +1000 | [diff] [blame] | 902 | list_del_init(&mid->qhead); |
Pavel Shilovsky | abe5707 | 2019-10-22 08:41:42 -0700 | [diff] [blame] | 903 | mid->mid_flags |= MID_DELETED; |
| 904 | } |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 905 | spin_unlock(&GlobalMid_Lock); |
| 906 | } |
| 907 | |
Pavel Shilovsky | 86a7964 | 2019-11-21 11:35:13 -0800 | [diff] [blame^] | 908 | static unsigned int |
| 909 | smb2_get_credits_from_hdr(char *buffer, struct TCP_Server_Info *server) |
| 910 | { |
| 911 | struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer; |
| 912 | |
| 913 | /* |
| 914 | * SMB1 does not use credits. |
| 915 | */ |
| 916 | if (server->vals->header_preamble_size) |
| 917 | return 0; |
| 918 | |
| 919 | return le16_to_cpu(shdr->CreditRequest); |
| 920 | } |
| 921 | |
Jeff Layton | c8054eb | 2011-10-19 15:29:31 -0400 | [diff] [blame] | 922 | static void |
| 923 | handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server, |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 924 | char *buf, int malformed) |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 925 | { |
Pavel Shilovsky | 316cf94 | 2012-05-23 14:31:03 +0400 | [diff] [blame] | 926 | if (server->ops->check_trans2 && |
| 927 | server->ops->check_trans2(mid, server, buf, malformed)) |
Jeff Layton | c8054eb | 2011-10-19 15:29:31 -0400 | [diff] [blame] | 928 | return; |
Pavel Shilovsky | 86a7964 | 2019-11-21 11:35:13 -0800 | [diff] [blame^] | 929 | mid->credits_received = smb2_get_credits_from_hdr(buf, server); |
Jeff Layton | ea1f450 | 2011-10-19 15:29:05 -0400 | [diff] [blame] | 930 | mid->resp_buf = buf; |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 931 | mid->large_buf = server->large_buf; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 932 | /* Was previous buf put in mpx struct for multi-rsp? */ |
| 933 | if (!mid->multiRsp) { |
| 934 | /* smb buffer will be freed by user thread */ |
| 935 | if (server->large_buf) |
| 936 | server->bigbuf = NULL; |
| 937 | else |
| 938 | server->smallbuf = NULL; |
| 939 | } |
Jeff Layton | ffc00e2 | 2011-10-19 15:29:13 -0400 | [diff] [blame] | 940 | dequeue_mid(mid, malformed); |
Pavel Shilovsky | ad69bae | 2011-08-01 13:19:43 +0400 | [diff] [blame] | 941 | } |
| 942 | |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 943 | static void clean_demultiplex_info(struct TCP_Server_Info *server) |
| 944 | { |
| 945 | int length; |
| 946 | |
| 947 | /* take it off the list, if it's not already */ |
| 948 | spin_lock(&cifs_tcp_ses_lock); |
| 949 | list_del_init(&server->tcp_ses_list); |
| 950 | spin_unlock(&cifs_tcp_ses_lock); |
| 951 | |
| 952 | spin_lock(&GlobalMid_Lock); |
| 953 | server->tcpStatus = CifsExiting; |
| 954 | spin_unlock(&GlobalMid_Lock); |
| 955 | wake_up_all(&server->response_q); |
| 956 | |
Pavel Shilovsky | 2d86dbc | 2012-02-06 15:59:18 +0400 | [diff] [blame] | 957 | /* check if we have blocked requests that need to free */ |
Pavel Shilovsky | fc40f9c | 2012-02-17 17:09:12 +0300 | [diff] [blame] | 958 | spin_lock(&server->req_lock); |
Pavel Shilovsky | 2d86dbc | 2012-02-06 15:59:18 +0400 | [diff] [blame] | 959 | if (server->credits <= 0) |
| 960 | server->credits = 1; |
Pavel Shilovsky | fc40f9c | 2012-02-17 17:09:12 +0300 | [diff] [blame] | 961 | spin_unlock(&server->req_lock); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 962 | /* |
| 963 | * Although there should not be any requests blocked on this queue it |
| 964 | * can not hurt to be paranoid and try to wake up requests that may |
| 965 | * haven been blocked when more than 50 at time were on the wire to the |
| 966 | * same server - they now will see the session is in exit state and get |
| 967 | * out of SendReceive. |
| 968 | */ |
| 969 | wake_up_all(&server->request_q); |
| 970 | /* give those requests time to exit */ |
| 971 | msleep(125); |
Long Li | 050b8c3 | 2019-04-04 11:35:42 -0500 | [diff] [blame] | 972 | if (cifs_rdma_enabled(server)) |
| 973 | smbd_destroy(server); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 974 | if (server->ssocket) { |
| 975 | sock_release(server->ssocket); |
| 976 | server->ssocket = NULL; |
| 977 | } |
| 978 | |
| 979 | if (!list_empty(&server->pending_mid_q)) { |
| 980 | struct list_head dispose_list; |
| 981 | struct mid_q_entry *mid_entry; |
| 982 | struct list_head *tmp, *tmp2; |
| 983 | |
| 984 | INIT_LIST_HEAD(&dispose_list); |
| 985 | spin_lock(&GlobalMid_Lock); |
| 986 | list_for_each_safe(tmp, tmp2, &server->pending_mid_q) { |
| 987 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 988 | cifs_dbg(FYI, "Clearing mid 0x%llx\n", mid_entry->mid); |
Pavel Shilovsky | abe5707 | 2019-10-22 08:41:42 -0700 | [diff] [blame] | 989 | kref_get(&mid_entry->refcount); |
Pavel Shilovsky | 7c9421e | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 990 | mid_entry->mid_state = MID_SHUTDOWN; |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 991 | list_move(&mid_entry->qhead, &dispose_list); |
Pavel Shilovsky | abe5707 | 2019-10-22 08:41:42 -0700 | [diff] [blame] | 992 | mid_entry->mid_flags |= MID_DELETED; |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 993 | } |
| 994 | spin_unlock(&GlobalMid_Lock); |
| 995 | |
| 996 | /* now walk dispose list and issue callbacks */ |
| 997 | list_for_each_safe(tmp, tmp2, &dispose_list) { |
| 998 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 999 | cifs_dbg(FYI, "Callback mid 0x%llx\n", mid_entry->mid); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 1000 | list_del_init(&mid_entry->qhead); |
| 1001 | mid_entry->callback(mid_entry); |
Pavel Shilovsky | abe5707 | 2019-10-22 08:41:42 -0700 | [diff] [blame] | 1002 | cifs_mid_q_entry_release(mid_entry); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 1003 | } |
| 1004 | /* 1/8th of sec is more than enough time for them to exit */ |
| 1005 | msleep(125); |
| 1006 | } |
| 1007 | |
| 1008 | if (!list_empty(&server->pending_mid_q)) { |
| 1009 | /* |
| 1010 | * mpx threads have not exited yet give them at least the smb |
| 1011 | * send timeout time for long ops. |
| 1012 | * |
| 1013 | * Due to delays on oplock break requests, we need to wait at |
| 1014 | * least 45 seconds before giving up on a request getting a |
| 1015 | * response and going ahead and killing cifsd. |
| 1016 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1017 | cifs_dbg(FYI, "Wait for exit from demultiplex thread\n"); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 1018 | msleep(46000); |
| 1019 | /* |
| 1020 | * If threads still have not exited they are probably never |
| 1021 | * coming home not much else we can do but free the memory. |
| 1022 | */ |
| 1023 | } |
| 1024 | |
| 1025 | kfree(server->hostname); |
| 1026 | kfree(server); |
| 1027 | |
| 1028 | length = atomic_dec_return(&tcpSesAllocCount); |
| 1029 | if (length > 0) |
David Rientjes | 11d8336 | 2015-04-14 15:48:21 -0700 | [diff] [blame] | 1030 | mempool_resize(cifs_req_poolp, length + cifs_min_rcv); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 1031 | } |
| 1032 | |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 1033 | static int |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1034 | standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid) |
| 1035 | { |
| 1036 | int length; |
| 1037 | char *buf = server->smallbuf; |
Ronnie Sahlberg | 2e96467 | 2018-04-09 18:06:26 +1000 | [diff] [blame] | 1038 | unsigned int pdu_length = server->pdu_size; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1039 | |
| 1040 | /* make sure this will fit in a large buffer */ |
Ronnie Sahlberg | 93012bf | 2018-03-31 11:45:31 +1100 | [diff] [blame] | 1041 | if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) - |
| 1042 | server->vals->header_preamble_size) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 1043 | cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length); |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1044 | cifs_reconnect(server); |
| 1045 | wake_up(&server->response_q); |
Pavel Shilovsky | 3fabaa2 | 2014-07-10 09:55:52 +0400 | [diff] [blame] | 1046 | return -ECONNABORTED; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | /* switch to large buffer if too big for a small one */ |
| 1050 | if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) { |
| 1051 | server->large_buf = true; |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 1052 | memcpy(server->bigbuf, buf, server->total_read); |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1053 | buf = server->bigbuf; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1054 | } |
| 1055 | |
| 1056 | /* now read the rest */ |
Pavel Shilovsky | 1887f60 | 2012-05-17 12:45:31 +0400 | [diff] [blame] | 1057 | length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1, |
Ronnie Sahlberg | 93012bf | 2018-03-31 11:45:31 +1100 | [diff] [blame] | 1058 | pdu_length - HEADER_SIZE(server) + 1 |
| 1059 | + server->vals->header_preamble_size); |
| 1060 | |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1061 | if (length < 0) |
| 1062 | return length; |
| 1063 | server->total_read += length; |
| 1064 | |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 1065 | dump_smb(buf, server->total_read); |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1066 | |
Pavel Shilovsky | 4326ed2 | 2016-11-17 15:24:46 -0800 | [diff] [blame] | 1067 | return cifs_handle_standard(server, mid); |
| 1068 | } |
| 1069 | |
| 1070 | int |
| 1071 | cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid) |
| 1072 | { |
| 1073 | char *buf = server->large_buf ? server->bigbuf : server->smallbuf; |
| 1074 | int length; |
| 1075 | |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1076 | /* |
| 1077 | * We know that we received enough to get to the MID as we |
| 1078 | * checked the pdu_length earlier. Now check to see |
| 1079 | * if the rest of the header is OK. We borrow the length |
| 1080 | * var for the rest of the loop to avoid a new stack var. |
| 1081 | * |
| 1082 | * 48 bytes is enough to display the header and a little bit |
| 1083 | * into the payload for debugging purposes. |
| 1084 | */ |
Steve French | 373512e | 2015-12-18 13:05:30 -0600 | [diff] [blame] | 1085 | length = server->ops->check_message(buf, server->total_read, server); |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1086 | if (length != 0) |
| 1087 | cifs_dump_mem("Bad SMB: ", buf, |
| 1088 | min_t(unsigned int, server->total_read, 48)); |
| 1089 | |
Pavel Shilovsky | 511c54a | 2017-07-08 14:32:00 -0700 | [diff] [blame] | 1090 | if (server->ops->is_session_expired && |
| 1091 | server->ops->is_session_expired(buf)) { |
| 1092 | cifs_reconnect(server); |
| 1093 | wake_up(&server->response_q); |
| 1094 | return -1; |
| 1095 | } |
| 1096 | |
Pavel Shilovsky | 2e44b28 | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 1097 | if (server->ops->is_status_pending && |
Pavel Shilovsky | 66265f1 | 2019-01-23 17:11:16 -0800 | [diff] [blame] | 1098 | server->ops->is_status_pending(buf, server)) |
Pavel Shilovsky | 2e44b28 | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 1099 | return -1; |
| 1100 | |
Jeff Layton | ff4fa4a | 2012-02-07 06:31:05 -0500 | [diff] [blame] | 1101 | if (!mid) |
| 1102 | return length; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1103 | |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 1104 | handle_mid(mid, server, buf, length); |
Jeff Layton | ff4fa4a | 2012-02-07 06:31:05 -0500 | [diff] [blame] | 1105 | return 0; |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1106 | } |
| 1107 | |
Ronnie Sahlberg | eca0045 | 2019-02-05 12:56:44 +1000 | [diff] [blame] | 1108 | static void |
| 1109 | smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server) |
| 1110 | { |
| 1111 | struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer; |
| 1112 | |
| 1113 | /* |
| 1114 | * SMB1 does not use credits. |
| 1115 | */ |
| 1116 | if (server->vals->header_preamble_size) |
| 1117 | return; |
| 1118 | |
| 1119 | if (shdr->CreditRequest) { |
| 1120 | spin_lock(&server->req_lock); |
| 1121 | server->credits += le16_to_cpu(shdr->CreditRequest); |
| 1122 | spin_unlock(&server->req_lock); |
| 1123 | wake_up(&server->request_q); |
| 1124 | } |
| 1125 | } |
| 1126 | |
| 1127 | |
Jeff Layton | e9097ab | 2011-10-19 15:29:40 -0400 | [diff] [blame] | 1128 | static int |
Al Viro | 7c97c20 | 2011-06-21 08:51:28 -0400 | [diff] [blame] | 1129 | cifs_demultiplex_thread(void *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | { |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1131 | int i, num_mids, length; |
Al Viro | 7c97c20 | 2011-06-21 08:51:28 -0400 | [diff] [blame] | 1132 | struct TCP_Server_Info *server = p; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1133 | unsigned int pdu_length; |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1134 | unsigned int next_offset; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1135 | char *buf = NULL; |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 1136 | struct task_struct *task_to_wake = NULL; |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1137 | struct mid_q_entry *mids[MAX_COMPOUND]; |
| 1138 | char *bufs[MAX_COMPOUND]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | current->flags |= PF_MEMALLOC; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1141 | cifs_dbg(FYI, "Demultiplex PID: %d\n", task_pid_nr(current)); |
Jeff Layton | 93d0ec8 | 2008-08-02 08:00:48 -0400 | [diff] [blame] | 1142 | |
| 1143 | length = atomic_inc_return(&tcpSesAllocCount); |
| 1144 | if (length > 1) |
David Rientjes | 11d8336 | 2015-04-14 15:48:21 -0700 | [diff] [blame] | 1145 | mempool_resize(cifs_req_poolp, length + cifs_min_rcv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 1147 | set_freezable(); |
Eric W. Biederman | 33da8e7 | 2019-08-16 12:33:54 -0500 | [diff] [blame] | 1148 | allow_kernel_signal(SIGKILL); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 1149 | while (server->tcpStatus != CifsExiting) { |
Steve French | ede1327 | 2005-08-30 20:10:14 -0700 | [diff] [blame] | 1150 | if (try_to_freeze()) |
| 1151 | continue; |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 1152 | |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1153 | if (!allocate_buffers(server)) |
Pavel Shilovsky | 3d9c247 | 2011-08-01 13:19:40 +0400 | [diff] [blame] | 1154 | continue; |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 1155 | |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1156 | server->large_buf = false; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1157 | buf = server->smallbuf; |
Steve French | f01d5e1 | 2007-08-30 21:13:31 +0000 | [diff] [blame] | 1158 | pdu_length = 4; /* enough to get RFC1001 header */ |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 1159 | |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 1160 | length = cifs_read_from_socket(server, buf, pdu_length); |
Jeff Layton | a52c1eb | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 1161 | if (length < 0) |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 1162 | continue; |
Ronnie Sahlberg | 977b617 | 2018-06-01 10:53:02 +1000 | [diff] [blame] | 1163 | |
| 1164 | if (server->vals->header_preamble_size == 0) |
| 1165 | server->total_read = 0; |
| 1166 | else |
| 1167 | server->total_read = length; |
Steve French | 67010fb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1168 | |
Pavel Shilovsky | 98bac62 | 2011-08-01 13:19:42 +0400 | [diff] [blame] | 1169 | /* |
| 1170 | * The right amount was read from socket - 4 bytes, |
| 1171 | * so we can now interpret the length field. |
| 1172 | */ |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 1173 | pdu_length = get_rfc1002_length(buf); |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1174 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1175 | cifs_dbg(FYI, "RFC1002 header 0x%x\n", pdu_length); |
Jeff Layton | fe11e4c | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 1176 | if (!is_smb_response(server, buf[0])) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1177 | continue; |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1178 | next_pdu: |
| 1179 | server->pdu_size = pdu_length; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1180 | |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1181 | /* make sure we have enough to get to the MID */ |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1182 | if (server->pdu_size < HEADER_SIZE(server) - 1 - |
Ronnie Sahlberg | 93012bf | 2018-03-31 11:45:31 +1100 | [diff] [blame] | 1183 | server->vals->header_preamble_size) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 1184 | cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n", |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1185 | server->pdu_size); |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1186 | cifs_reconnect(server); |
| 1187 | wake_up(&server->response_q); |
| 1188 | continue; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1189 | } |
Pavel Shilovsky | e7015fb | 2011-08-01 13:19:41 +0400 | [diff] [blame] | 1190 | |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1191 | /* read down to the MID */ |
Ronnie Sahlberg | 93012bf | 2018-03-31 11:45:31 +1100 | [diff] [blame] | 1192 | length = cifs_read_from_socket(server, |
| 1193 | buf + server->vals->header_preamble_size, |
| 1194 | HEADER_SIZE(server) - 1 |
| 1195 | - server->vals->header_preamble_size); |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1196 | if (length < 0) |
| 1197 | continue; |
Jeff Layton | 2a37ef9 | 2011-10-19 15:29:23 -0400 | [diff] [blame] | 1198 | server->total_read += length; |
Jeff Layton | 89482a5 | 2011-10-19 15:28:57 -0400 | [diff] [blame] | 1199 | |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1200 | if (server->ops->next_header) { |
| 1201 | next_offset = server->ops->next_header(buf); |
| 1202 | if (next_offset) |
| 1203 | server->pdu_size = next_offset; |
| 1204 | } |
| 1205 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1206 | memset(mids, 0, sizeof(mids)); |
| 1207 | memset(bufs, 0, sizeof(bufs)); |
| 1208 | num_mids = 0; |
| 1209 | |
Pavel Shilovsky | 9bb17e0 | 2016-11-17 15:24:34 -0800 | [diff] [blame] | 1210 | if (server->ops->is_transform_hdr && |
| 1211 | server->ops->receive_transform && |
| 1212 | server->ops->is_transform_hdr(buf)) { |
| 1213 | length = server->ops->receive_transform(server, |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1214 | mids, |
| 1215 | bufs, |
| 1216 | &num_mids); |
Pavel Shilovsky | 9bb17e0 | 2016-11-17 15:24:34 -0800 | [diff] [blame] | 1217 | } else { |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1218 | mids[0] = server->ops->find_mid(server, buf); |
| 1219 | bufs[0] = buf; |
Steve French | 7af929d | 2018-10-02 18:54:09 -0500 | [diff] [blame] | 1220 | num_mids = 1; |
Jeff Layton | c8054eb | 2011-10-19 15:29:31 -0400 | [diff] [blame] | 1221 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1222 | if (!mids[0] || !mids[0]->receive) |
| 1223 | length = standard_receive3(server, mids[0]); |
Pavel Shilovsky | 9bb17e0 | 2016-11-17 15:24:34 -0800 | [diff] [blame] | 1224 | else |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1225 | length = mids[0]->receive(server, mids[0]); |
Pavel Shilovsky | 9bb17e0 | 2016-11-17 15:24:34 -0800 | [diff] [blame] | 1226 | } |
Jeff Layton | 44d22d8 | 2011-10-19 15:29:49 -0400 | [diff] [blame] | 1227 | |
Lars Persson | 696e420 | 2018-06-25 14:05:25 +0200 | [diff] [blame] | 1228 | if (length < 0) { |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1229 | for (i = 0; i < num_mids; i++) |
| 1230 | if (mids[i]) |
| 1231 | cifs_mid_q_entry_release(mids[i]); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1232 | continue; |
Lars Persson | 696e420 | 2018-06-25 14:05:25 +0200 | [diff] [blame] | 1233 | } |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1234 | |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 1235 | server->lstrp = jiffies; |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1236 | |
| 1237 | for (i = 0; i < num_mids; i++) { |
| 1238 | if (mids[i] != NULL) { |
| 1239 | mids[i]->resp_buf_size = server->pdu_size; |
| 1240 | if ((mids[i]->mid_flags & MID_WAIT_CANCELLED) && |
| 1241 | mids[i]->mid_state == MID_RESPONSE_RECEIVED && |
| 1242 | server->ops->handle_cancelled_mid) |
| 1243 | server->ops->handle_cancelled_mid( |
| 1244 | mids[i]->resp_buf, |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 1245 | server); |
| 1246 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1247 | if (!mids[i]->multiRsp || mids[i]->multiEnd) |
| 1248 | mids[i]->callback(mids[i]); |
Lars Persson | 696e420 | 2018-06-25 14:05:25 +0200 | [diff] [blame] | 1249 | |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1250 | cifs_mid_q_entry_release(mids[i]); |
| 1251 | } else if (server->ops->is_oplock_break && |
| 1252 | server->ops->is_oplock_break(bufs[i], |
| 1253 | server)) { |
Ronnie Sahlberg | eca0045 | 2019-02-05 12:56:44 +1000 | [diff] [blame] | 1254 | smb2_add_credits_from_hdr(bufs[i], server); |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1255 | cifs_dbg(FYI, "Received oplock break\n"); |
| 1256 | } else { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 1257 | cifs_server_dbg(VFS, "No task to wake, unknown frame " |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1258 | "received! NumMids %d\n", |
| 1259 | atomic_read(&midCount)); |
| 1260 | cifs_dump_mem("Received Data is: ", bufs[i], |
| 1261 | HEADER_SIZE(server)); |
Ronnie Sahlberg | 3e27257 | 2019-07-06 06:43:08 +1000 | [diff] [blame] | 1262 | smb2_add_credits_from_hdr(bufs[i], server); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1263 | #ifdef CONFIG_CIFS_DEBUG2 |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1264 | if (server->ops->dump_detail) |
| 1265 | server->ops->dump_detail(bufs[i], |
| 1266 | server); |
| 1267 | cifs_dump_mids(server); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1268 | #endif /* CIFS_DEBUG2 */ |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1269 | } |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1270 | } |
Ronnie Sahlberg | b24df3e | 2018-08-08 15:07:45 +1000 | [diff] [blame] | 1271 | |
Ronnie Sahlberg | 8ce79ec | 2018-06-01 10:53:08 +1000 | [diff] [blame] | 1272 | if (pdu_length > server->pdu_size) { |
| 1273 | if (!allocate_buffers(server)) |
| 1274 | continue; |
| 1275 | pdu_length -= server->pdu_size; |
| 1276 | server->total_read = 0; |
| 1277 | server->large_buf = false; |
| 1278 | buf = server->smallbuf; |
| 1279 | goto next_pdu; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 1280 | } |
| 1281 | } /* end while !EXITING */ |
| 1282 | |
Justin P. Mattock | fd62cb7 | 2011-02-24 22:15:02 -0800 | [diff] [blame] | 1283 | /* 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] | 1284 | cifs_buf_release(server->bigbuf); |
| 1285 | if (server->smallbuf) /* no sense logging a debug message if NULL */ |
| 1286 | cifs_small_buf_release(server->smallbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 1288 | task_to_wake = xchg(&server->tsk, NULL); |
Pavel Shilovsky | 762dfd1 | 2011-08-01 13:19:44 +0400 | [diff] [blame] | 1289 | clean_demultiplex_info(server); |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 1290 | |
| 1291 | /* if server->tsk was NULL then wait for a signal before exiting */ |
| 1292 | if (!task_to_wake) { |
| 1293 | set_current_state(TASK_INTERRUPTIBLE); |
| 1294 | while (!signal_pending(current)) { |
| 1295 | schedule(); |
| 1296 | set_current_state(TASK_INTERRUPTIBLE); |
| 1297 | } |
| 1298 | set_current_state(TASK_RUNNING); |
| 1299 | } |
| 1300 | |
Jeff Layton | 0468a2c | 2008-12-01 07:09:35 -0500 | [diff] [blame] | 1301 | module_put_and_exit(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | } |
| 1303 | |
Jeff Layton | c359cf3 | 2007-11-16 22:22:06 +0000 | [diff] [blame] | 1304 | /* extract the host portion of the UNC string */ |
| 1305 | static char * |
| 1306 | extract_hostname(const char *unc) |
| 1307 | { |
| 1308 | const char *src; |
| 1309 | char *dst, *delim; |
| 1310 | unsigned int len; |
| 1311 | |
| 1312 | /* skip double chars at beginning of string */ |
| 1313 | /* BB: check validity of these bytes? */ |
Paulo Alcantara | c34fea5 | 2018-11-14 14:03:40 -0200 | [diff] [blame] | 1314 | if (strlen(unc) < 3) |
| 1315 | return ERR_PTR(-EINVAL); |
| 1316 | for (src = unc; *src && *src == '\\'; src++) |
| 1317 | ; |
| 1318 | if (!*src) |
| 1319 | return ERR_PTR(-EINVAL); |
Jeff Layton | c359cf3 | 2007-11-16 22:22:06 +0000 | [diff] [blame] | 1320 | |
| 1321 | /* delimiter between hostname and sharename is always '\\' now */ |
| 1322 | delim = strchr(src, '\\'); |
| 1323 | if (!delim) |
| 1324 | return ERR_PTR(-EINVAL); |
| 1325 | |
| 1326 | len = delim - src; |
| 1327 | dst = kmalloc((len + 1), GFP_KERNEL); |
| 1328 | if (dst == NULL) |
| 1329 | return ERR_PTR(-ENOMEM); |
| 1330 | |
| 1331 | memcpy(dst, src, len); |
| 1332 | dst[len] = '\0'; |
| 1333 | |
| 1334 | return dst; |
| 1335 | } |
| 1336 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1337 | static int get_option_ul(substring_t args[], unsigned long *option) |
| 1338 | { |
| 1339 | int rc; |
| 1340 | char *string; |
| 1341 | |
| 1342 | string = match_strdup(args); |
| 1343 | if (string == NULL) |
| 1344 | return -ENOMEM; |
Sachin Prabhu | bfa890a | 2012-04-13 14:04:32 +0100 | [diff] [blame] | 1345 | rc = kstrtoul(string, 0, option); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1346 | kfree(string); |
| 1347 | |
| 1348 | return rc; |
| 1349 | } |
| 1350 | |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1351 | static int get_option_uid(substring_t args[], kuid_t *result) |
| 1352 | { |
| 1353 | unsigned long value; |
| 1354 | kuid_t uid; |
| 1355 | int rc; |
| 1356 | |
| 1357 | rc = get_option_ul(args, &value); |
| 1358 | if (rc) |
| 1359 | return rc; |
| 1360 | |
| 1361 | uid = make_kuid(current_user_ns(), value); |
| 1362 | if (!uid_valid(uid)) |
| 1363 | return -EINVAL; |
| 1364 | |
| 1365 | *result = uid; |
| 1366 | return 0; |
| 1367 | } |
| 1368 | |
| 1369 | static int get_option_gid(substring_t args[], kgid_t *result) |
| 1370 | { |
| 1371 | unsigned long value; |
| 1372 | kgid_t gid; |
| 1373 | int rc; |
| 1374 | |
| 1375 | rc = get_option_ul(args, &value); |
| 1376 | if (rc) |
| 1377 | return rc; |
| 1378 | |
| 1379 | gid = make_kgid(current_user_ns(), value); |
| 1380 | if (!gid_valid(gid)) |
| 1381 | return -EINVAL; |
| 1382 | |
| 1383 | *result = gid; |
| 1384 | return 0; |
| 1385 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1386 | |
| 1387 | static int cifs_parse_security_flavors(char *value, |
| 1388 | struct smb_vol *vol) |
| 1389 | { |
| 1390 | |
| 1391 | substring_t args[MAX_OPT_ARGS]; |
| 1392 | |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1393 | /* |
| 1394 | * With mount options, the last one should win. Reset any existing |
| 1395 | * settings back to default. |
| 1396 | */ |
| 1397 | vol->sectype = Unspecified; |
| 1398 | vol->sign = false; |
| 1399 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1400 | switch (match_token(value, cifs_secflavor_tokens, args)) { |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 1401 | case Opt_sec_krb5p: |
| 1402 | cifs_dbg(VFS, "sec=krb5p is not supported!\n"); |
| 1403 | return 1; |
| 1404 | case Opt_sec_krb5i: |
| 1405 | vol->sign = true; |
| 1406 | /* Fallthrough */ |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1407 | case Opt_sec_krb5: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1408 | vol->sectype = Kerberos; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1409 | break; |
| 1410 | case Opt_sec_ntlmsspi: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1411 | vol->sign = true; |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 1412 | /* Fallthrough */ |
| 1413 | case Opt_sec_ntlmssp: |
| 1414 | vol->sectype = RawNTLMSSP; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1415 | break; |
| 1416 | case Opt_sec_ntlmi: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1417 | vol->sign = true; |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 1418 | /* Fallthrough */ |
| 1419 | case Opt_ntlm: |
| 1420 | vol->sectype = NTLM; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1421 | break; |
| 1422 | case Opt_sec_ntlmv2i: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1423 | vol->sign = true; |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 1424 | /* Fallthrough */ |
| 1425 | case Opt_sec_ntlmv2: |
| 1426 | vol->sectype = NTLMv2; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1427 | break; |
| 1428 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
| 1429 | case Opt_sec_lanman: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1430 | vol->sectype = LANMAN; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1431 | break; |
| 1432 | #endif |
| 1433 | case Opt_sec_none: |
| 1434 | vol->nullauth = 1; |
| 1435 | break; |
| 1436 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1437 | cifs_dbg(VFS, "bad security option: %s\n", value); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1438 | return 1; |
| 1439 | } |
| 1440 | |
| 1441 | return 0; |
| 1442 | } |
| 1443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | static int |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 1445 | cifs_parse_cache_flavor(char *value, struct smb_vol *vol) |
| 1446 | { |
| 1447 | substring_t args[MAX_OPT_ARGS]; |
| 1448 | |
| 1449 | switch (match_token(value, cifs_cacheflavor_tokens, args)) { |
| 1450 | case Opt_cache_loose: |
| 1451 | vol->direct_io = false; |
| 1452 | vol->strict_io = false; |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 1453 | vol->cache_ro = false; |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 1454 | vol->cache_rw = false; |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 1455 | break; |
| 1456 | case Opt_cache_strict: |
| 1457 | vol->direct_io = false; |
| 1458 | vol->strict_io = true; |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 1459 | vol->cache_ro = false; |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 1460 | vol->cache_rw = false; |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 1461 | break; |
| 1462 | case Opt_cache_none: |
| 1463 | vol->direct_io = true; |
| 1464 | vol->strict_io = false; |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 1465 | vol->cache_ro = false; |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 1466 | vol->cache_rw = false; |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 1467 | break; |
| 1468 | case Opt_cache_ro: |
| 1469 | vol->direct_io = false; |
| 1470 | vol->strict_io = false; |
| 1471 | vol->cache_ro = true; |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 1472 | vol->cache_rw = false; |
| 1473 | break; |
| 1474 | case Opt_cache_rw: |
| 1475 | vol->direct_io = false; |
| 1476 | vol->strict_io = false; |
| 1477 | vol->cache_ro = false; |
| 1478 | vol->cache_rw = true; |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 1479 | break; |
| 1480 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1481 | cifs_dbg(VFS, "bad cache= option: %s\n", value); |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 1482 | return 1; |
| 1483 | } |
| 1484 | return 0; |
| 1485 | } |
| 1486 | |
| 1487 | static int |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 1488 | 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] | 1489 | { |
| 1490 | substring_t args[MAX_OPT_ARGS]; |
| 1491 | |
| 1492 | switch (match_token(value, cifs_smb_version_tokens, args)) { |
Steve French | 7420451 | 2018-06-19 14:34:08 -0500 | [diff] [blame] | 1493 | #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1494 | case Smb_1: |
Steve French | f92a720 | 2018-05-24 04:11:07 -0500 | [diff] [blame] | 1495 | if (disable_legacy_dialects) { |
| 1496 | cifs_dbg(VFS, "mount with legacy dialect disabled\n"); |
| 1497 | return 1; |
| 1498 | } |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 1499 | if (is_smb3) { |
| 1500 | cifs_dbg(VFS, "vers=1.0 (cifs) not permitted when mounting with smb3\n"); |
| 1501 | return 1; |
| 1502 | } |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1503 | vol->ops = &smb1_operations; |
| 1504 | vol->vals = &smb1_values; |
| 1505 | break; |
Steve French | dd446b1 | 2012-11-28 23:21:06 -0600 | [diff] [blame] | 1506 | case Smb_20: |
Steve French | f92a720 | 2018-05-24 04:11:07 -0500 | [diff] [blame] | 1507 | if (disable_legacy_dialects) { |
| 1508 | cifs_dbg(VFS, "mount with legacy dialect disabled\n"); |
| 1509 | return 1; |
| 1510 | } |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 1511 | if (is_smb3) { |
| 1512 | cifs_dbg(VFS, "vers=2.0 not permitted when mounting with smb3\n"); |
| 1513 | return 1; |
| 1514 | } |
Pavel Shilovsky | 53ef101 | 2013-09-05 16:11:28 +0400 | [diff] [blame] | 1515 | vol->ops = &smb20_operations; |
Steve French | dd446b1 | 2012-11-28 23:21:06 -0600 | [diff] [blame] | 1516 | vol->vals = &smb20_values; |
| 1517 | break; |
Steve French | 7420451 | 2018-06-19 14:34:08 -0500 | [diff] [blame] | 1518 | #else |
| 1519 | case Smb_1: |
| 1520 | cifs_dbg(VFS, "vers=1.0 (cifs) mount not permitted when legacy dialects disabled\n"); |
| 1521 | return 1; |
| 1522 | case Smb_20: |
| 1523 | cifs_dbg(VFS, "vers=2.0 mount not permitted when legacy dialects disabled\n"); |
| 1524 | return 1; |
| 1525 | #endif /* CIFS_ALLOW_INSECURE_LEGACY */ |
Steve French | 1080ef7 | 2011-02-24 18:07:19 +0000 | [diff] [blame] | 1526 | case Smb_21: |
| 1527 | vol->ops = &smb21_operations; |
| 1528 | vol->vals = &smb21_values; |
| 1529 | break; |
Steve French | e4aa25e | 2012-10-01 12:26:22 -0500 | [diff] [blame] | 1530 | case Smb_30: |
Steve French | 38107d4 | 2012-12-08 22:08:06 -0600 | [diff] [blame] | 1531 | vol->ops = &smb30_operations; |
Steve French | e4aa25e | 2012-10-01 12:26:22 -0500 | [diff] [blame] | 1532 | vol->vals = &smb30_values; |
| 1533 | break; |
Steve French | 20b6d8b | 2013-06-12 22:48:41 -0500 | [diff] [blame] | 1534 | case Smb_302: |
| 1535 | vol->ops = &smb30_operations; /* currently identical with 3.0 */ |
| 1536 | vol->vals = &smb302_values; |
| 1537 | break; |
Steve French | 5f7fbf7 | 2014-12-17 22:52:58 -0600 | [diff] [blame] | 1538 | case Smb_311: |
Steve French | aab1893 | 2015-06-23 23:37:11 -0500 | [diff] [blame] | 1539 | vol->ops = &smb311_operations; |
Steve French | 5f7fbf7 | 2014-12-17 22:52:58 -0600 | [diff] [blame] | 1540 | vol->vals = &smb311_values; |
| 1541 | break; |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 1542 | case Smb_3any: |
| 1543 | vol->ops = &smb30_operations; /* currently identical with 3.0 */ |
| 1544 | vol->vals = &smb3any_values; |
| 1545 | break; |
| 1546 | case Smb_default: |
| 1547 | vol->ops = &smb30_operations; /* currently identical with 3.0 */ |
| 1548 | vol->vals = &smbdefault_values; |
| 1549 | break; |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1550 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1551 | cifs_dbg(VFS, "Unknown vers= option specified: %s\n", value); |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1552 | return 1; |
| 1553 | } |
| 1554 | return 0; |
| 1555 | } |
| 1556 | |
Jeff Layton | d387a5c | 2012-12-10 06:10:46 -0500 | [diff] [blame] | 1557 | /* |
| 1558 | * Parse a devname into substrings and populate the vol->UNC and vol->prepath |
| 1559 | * fields with the result. Returns 0 on success and an error otherwise. |
| 1560 | */ |
| 1561 | static int |
| 1562 | cifs_parse_devname(const char *devname, struct smb_vol *vol) |
| 1563 | { |
| 1564 | char *pos; |
| 1565 | const char *delims = "/\\"; |
| 1566 | size_t len; |
| 1567 | |
Yao Liu | 68e2672 | 2019-01-28 19:47:28 +0800 | [diff] [blame] | 1568 | if (unlikely(!devname || !*devname)) { |
| 1569 | cifs_dbg(VFS, "Device name not specified.\n"); |
| 1570 | return -EINVAL; |
| 1571 | } |
| 1572 | |
Jeff Layton | d387a5c | 2012-12-10 06:10:46 -0500 | [diff] [blame] | 1573 | /* make sure we have a valid UNC double delimiter prefix */ |
| 1574 | len = strspn(devname, delims); |
| 1575 | if (len != 2) |
| 1576 | return -EINVAL; |
| 1577 | |
| 1578 | /* find delimiter between host and sharename */ |
| 1579 | pos = strpbrk(devname + 2, delims); |
| 1580 | if (!pos) |
| 1581 | return -EINVAL; |
| 1582 | |
| 1583 | /* skip past delimiter */ |
| 1584 | ++pos; |
| 1585 | |
| 1586 | /* now go until next delimiter or end of string */ |
| 1587 | len = strcspn(pos, delims); |
| 1588 | |
| 1589 | /* move "pos" up to delimiter or NULL */ |
| 1590 | pos += len; |
| 1591 | vol->UNC = kstrndup(devname, pos - devname, GFP_KERNEL); |
| 1592 | if (!vol->UNC) |
| 1593 | return -ENOMEM; |
| 1594 | |
| 1595 | convert_delimiter(vol->UNC, '\\'); |
| 1596 | |
Sachin Prabhu | 11e3164 | 2016-02-08 13:44:01 +0530 | [diff] [blame] | 1597 | /* skip any delimiter */ |
| 1598 | if (*pos == '/' || *pos == '\\') |
| 1599 | pos++; |
| 1600 | |
| 1601 | /* If pos is NULL then no prepath */ |
| 1602 | if (!*pos) |
Jeff Layton | d387a5c | 2012-12-10 06:10:46 -0500 | [diff] [blame] | 1603 | return 0; |
| 1604 | |
| 1605 | vol->prepath = kstrdup(pos, GFP_KERNEL); |
| 1606 | if (!vol->prepath) |
| 1607 | return -ENOMEM; |
| 1608 | |
| 1609 | return 0; |
| 1610 | } |
| 1611 | |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1612 | static int |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 1613 | cifs_parse_mount_options(const char *mountdata, const char *devname, |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 1614 | struct smb_vol *vol, bool is_smb3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | { |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1616 | char *data, *end; |
Vasily Averin | 957df45 | 2011-06-06 11:33:12 +0400 | [diff] [blame] | 1617 | char *mountdata_copy = NULL, *options; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | unsigned int temp_len, i, j; |
| 1619 | char separator[2]; |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 1620 | short int override_uid = -1; |
| 1621 | short int override_gid = -1; |
| 1622 | bool uid_specified = false; |
| 1623 | bool gid_specified = false; |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1624 | bool sloppy = false; |
| 1625 | char *invalid = NULL; |
Jeff Layton | 8846399 | 2010-11-22 15:31:03 -0500 | [diff] [blame] | 1626 | char *nodename = utsname()->nodename; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1627 | char *string = NULL; |
| 1628 | char *tmp_end, *value; |
| 1629 | char delim; |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 1630 | bool got_ip = false; |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 1631 | bool got_version = false; |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 1632 | unsigned short port = 0; |
| 1633 | struct sockaddr *dstaddr = (struct sockaddr *)&vol->dstaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | |
| 1635 | separator[0] = ','; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1636 | separator[1] = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1637 | delim = separator[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | |
Jeff Layton | 6ee9542 | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 1639 | /* ensure we always start with zeroed-out smb_vol */ |
| 1640 | memset(vol, 0, sizeof(*vol)); |
| 1641 | |
Jeff Layton | 8846399 | 2010-11-22 15:31:03 -0500 | [diff] [blame] | 1642 | /* |
| 1643 | * does not have to be perfect mapping since field is |
| 1644 | * informational, only used for servers that do not support |
| 1645 | * port 445 and it can be overridden at mount time |
| 1646 | */ |
Jeff Layton | 1397f2e | 2011-01-07 11:30:28 -0500 | [diff] [blame] | 1647 | memset(vol->source_rfc1001_name, 0x20, RFC1001_NAME_LEN); |
| 1648 | for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++) |
Jeff Layton | 8846399 | 2010-11-22 15:31:03 -0500 | [diff] [blame] | 1649 | vol->source_rfc1001_name[i] = toupper(nodename[i]); |
| 1650 | |
Jeff Layton | 1397f2e | 2011-01-07 11:30:28 -0500 | [diff] [blame] | 1651 | vol->source_rfc1001_name[RFC1001_NAME_LEN] = 0; |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1652 | /* null target name indicates to use *SMBSERVR default called name |
| 1653 | if we end up sending RFC1001 session initialize */ |
| 1654 | vol->target_rfc1001_name[0] = 0; |
Jeff Layton | 3e4b3e1 | 2010-07-19 18:00:17 -0400 | [diff] [blame] | 1655 | vol->cred_uid = current_uid(); |
| 1656 | vol->linux_uid = current_uid(); |
David Howells | a001e5b | 2008-11-14 10:38:47 +1100 | [diff] [blame] | 1657 | vol->linux_gid = current_gid(); |
Steve French | e8506d2 | 2019-02-28 21:32:15 -0600 | [diff] [blame] | 1658 | vol->bsize = 1024 * 1024; /* can improve cp performance significantly */ |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 1659 | /* |
| 1660 | * default to SFM style remapping of seven reserved characters |
| 1661 | * unless user overrides it or we negotiate CIFS POSIX where |
| 1662 | * it is unnecessary. Can not simultaneously use more than one mapping |
| 1663 | * since then readdir could list files that open could not open |
| 1664 | */ |
| 1665 | vol->remap = true; |
| 1666 | |
Jeff Layton | f55ed1a | 2009-05-26 16:28:11 -0400 | [diff] [blame] | 1667 | /* default to only allowing write access to owner of the mount */ |
| 1668 | vol->dir_mode = vol->file_mode = S_IRUGO | S_IXUGO | S_IWUSR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | |
| 1670 | /* 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] | 1671 | /* default is always to request posix paths. */ |
| 1672 | vol->posix_paths = 1; |
Jeff Layton | a0c9217 | 2009-05-27 15:40:47 -0400 | [diff] [blame] | 1673 | /* default to using server inode numbers where available */ |
| 1674 | vol->server_ino = 1; |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 1675 | |
Jeff Layton | 1b35920 | 2012-09-19 15:20:27 -0700 | [diff] [blame] | 1676 | /* default is to use strict cifs caching semantics */ |
| 1677 | vol->strict_io = true; |
| 1678 | |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 1679 | vol->actimeo = CIFS_DEF_ACTIMEO; |
| 1680 | |
Steve French | ca567eb | 2019-03-29 16:31:07 -0500 | [diff] [blame] | 1681 | /* Most clients set timeout to 0, allows server to use its default */ |
| 1682 | vol->handle_timeout = 0; /* See MS-SMB2 spec section 2.2.14.2.12 */ |
| 1683 | |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 1684 | /* offer SMB2.1 and later (SMB3 etc). Secure and widely accepted */ |
| 1685 | vol->ops = &smb30_operations; |
| 1686 | vol->vals = &smbdefault_values; |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 1687 | |
Rabin Vincent | b782fcc | 2016-07-19 09:25:45 +0200 | [diff] [blame] | 1688 | vol->echo_interval = SMB_ECHO_INTERVAL_DEFAULT; |
| 1689 | |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 1690 | if (!mountdata) |
| 1691 | goto cifs_parse_mount_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 1693 | mountdata_copy = kstrndup(mountdata, PAGE_SIZE, GFP_KERNEL); |
| 1694 | if (!mountdata_copy) |
| 1695 | goto cifs_parse_mount_err; |
| 1696 | |
| 1697 | options = mountdata_copy; |
Pavel Shilovsky | 4906e50 | 2011-04-14 22:00:56 +0400 | [diff] [blame] | 1698 | end = options + strlen(options); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1699 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1700 | if (strncmp(options, "sep=", 4) == 0) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1701 | if (options[4] != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | separator[0] = options[4]; |
| 1703 | options += 5; |
| 1704 | } else { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1705 | cifs_dbg(FYI, "Null separator not allowed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | } |
| 1707 | } |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 1708 | vol->backupuid_specified = false; /* no backup intent for a user */ |
| 1709 | vol->backupgid_specified = false; /* no backup intent for a group */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1710 | |
Jeff Layton | 37d4f99 | 2013-05-24 07:40:05 -0400 | [diff] [blame] | 1711 | switch (cifs_parse_devname(devname, vol)) { |
| 1712 | case 0: |
| 1713 | break; |
| 1714 | case -ENOMEM: |
| 1715 | cifs_dbg(VFS, "Unable to allocate memory for devname.\n"); |
| 1716 | goto cifs_parse_mount_err; |
| 1717 | case -EINVAL: |
| 1718 | cifs_dbg(VFS, "Malformed UNC in devname.\n"); |
| 1719 | goto cifs_parse_mount_err; |
| 1720 | default: |
| 1721 | cifs_dbg(VFS, "Unknown error parsing devname.\n"); |
| 1722 | goto cifs_parse_mount_err; |
Jeff Layton | d387a5c | 2012-12-10 06:10:46 -0500 | [diff] [blame] | 1723 | } |
| 1724 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | while ((data = strsep(&options, separator)) != NULL) { |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1726 | substring_t args[MAX_OPT_ARGS]; |
| 1727 | unsigned long option; |
| 1728 | int token; |
| 1729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 | if (!*data) |
| 1731 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1733 | token = match_token(data, cifs_mount_option_tokens, args); |
| 1734 | |
| 1735 | switch (token) { |
| 1736 | |
| 1737 | /* Ingnore the following */ |
| 1738 | case Opt_ignore: |
| 1739 | break; |
| 1740 | |
| 1741 | /* Boolean values */ |
| 1742 | case Opt_user_xattr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | vol->no_xattr = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1744 | break; |
| 1745 | case Opt_nouser_xattr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | vol->no_xattr = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1747 | break; |
| 1748 | case Opt_forceuid: |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 1749 | override_uid = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1750 | break; |
| 1751 | case Opt_noforceuid: |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 1752 | override_uid = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1753 | break; |
Jeff Layton | 72bd481 | 2012-10-03 16:02:36 -0400 | [diff] [blame] | 1754 | case Opt_forcegid: |
| 1755 | override_gid = 1; |
| 1756 | break; |
| 1757 | case Opt_noforcegid: |
| 1758 | override_gid = 0; |
| 1759 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1760 | case Opt_noblocksend: |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 1761 | vol->noblocksnd = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1762 | break; |
| 1763 | case Opt_noautotune: |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 1764 | vol->noautotune = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1765 | break; |
Steve French | 3e7a02d | 2019-09-11 21:46:20 -0500 | [diff] [blame] | 1766 | case Opt_nolease: |
| 1767 | vol->no_lease = 1; |
| 1768 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1769 | case Opt_hard: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 | vol->retry = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1771 | break; |
| 1772 | case Opt_soft: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | vol->retry = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1774 | break; |
| 1775 | case Opt_perm: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | vol->noperm = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1777 | break; |
| 1778 | case Opt_noperm: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | vol->noperm = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1780 | break; |
| 1781 | case Opt_mapchars: |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 1782 | vol->sfu_remap = true; |
| 1783 | vol->remap = false; /* disable SFM mapping */ |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1784 | break; |
| 1785 | case Opt_nomapchars: |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 1786 | vol->sfu_remap = false; |
| 1787 | break; |
| 1788 | case Opt_mapposix: |
| 1789 | vol->remap = true; |
| 1790 | vol->sfu_remap = false; /* disable SFU mapping */ |
| 1791 | break; |
| 1792 | case Opt_nomapposix: |
| 1793 | vol->remap = false; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1794 | break; |
| 1795 | case Opt_sfu: |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1796 | vol->sfu_emul = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1797 | break; |
| 1798 | case Opt_nosfu: |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1799 | vol->sfu_emul = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1800 | break; |
| 1801 | case Opt_nodfs: |
Steve French | 2c1b861 | 2008-10-16 18:35:21 +0000 | [diff] [blame] | 1802 | vol->nodfs = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1803 | break; |
Paulo Alcantara (SUSE) | 8eecd1c | 2019-07-16 19:04:50 -0300 | [diff] [blame] | 1804 | case Opt_rootfs: |
| 1805 | #ifdef CONFIG_CIFS_ROOT |
| 1806 | vol->rootfs = true; |
| 1807 | #endif |
| 1808 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1809 | case Opt_posixpaths: |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 1810 | vol->posix_paths = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1811 | break; |
| 1812 | case Opt_noposixpaths: |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 1813 | vol->posix_paths = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1814 | break; |
| 1815 | case Opt_nounix: |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 1816 | if (vol->linux_ext) |
| 1817 | cifs_dbg(VFS, |
| 1818 | "conflicting unix mount options\n"); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1819 | vol->no_linux_ext = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1820 | break; |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 1821 | case Opt_unix: |
| 1822 | if (vol->no_linux_ext) |
| 1823 | cifs_dbg(VFS, |
| 1824 | "conflicting unix mount options\n"); |
| 1825 | vol->linux_ext = 1; |
| 1826 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1827 | case Opt_nocase: |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1828 | vol->nocase = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1829 | break; |
| 1830 | case Opt_brl: |
Steve French | c46fa8a | 2005-08-18 20:49:57 -0700 | [diff] [blame] | 1831 | vol->nobrl = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1832 | break; |
| 1833 | case Opt_nobrl: |
Steve French | c46fa8a | 2005-08-18 20:49:57 -0700 | [diff] [blame] | 1834 | vol->nobrl = 1; |
Pavel Shilovsky | 5cfdddc | 2012-03-27 20:51:15 +0400 | [diff] [blame] | 1835 | /* |
| 1836 | * turn off mandatory locking in mode |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1837 | * if remote locking is turned off since the |
Pavel Shilovsky | 5cfdddc | 2012-03-27 20:51:15 +0400 | [diff] [blame] | 1838 | * local vfs will do advisory |
| 1839 | */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1840 | if (vol->file_mode == |
| 1841 | (S_IALLUGO & ~(S_ISUID | S_IXGRP))) |
Steve French | d3485d3 | 2005-08-19 11:04:29 -0700 | [diff] [blame] | 1842 | vol->file_mode = S_IALLUGO; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1843 | break; |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 1844 | case Opt_nohandlecache: |
| 1845 | vol->nohandlecache = 1; |
| 1846 | break; |
| 1847 | case Opt_handlecache: |
| 1848 | vol->nohandlecache = 0; |
| 1849 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1850 | case Opt_forcemandatorylock: |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 1851 | vol->mand_lock = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1852 | break; |
| 1853 | case Opt_setuids: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | vol->setuids = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1855 | break; |
| 1856 | case Opt_nosetuids: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | vol->setuids = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1858 | break; |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 1859 | case Opt_setuidfromacl: |
| 1860 | vol->setuidfromacl = 1; |
| 1861 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1862 | case Opt_dynperm: |
Jeff Layton | d0a9c07 | 2008-05-12 22:23:49 +0000 | [diff] [blame] | 1863 | vol->dynperm = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1864 | break; |
| 1865 | case Opt_nodynperm: |
Jeff Layton | d0a9c07 | 2008-05-12 22:23:49 +0000 | [diff] [blame] | 1866 | vol->dynperm = false; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1867 | break; |
| 1868 | case Opt_nohard: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | vol->retry = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1870 | break; |
| 1871 | case Opt_nosoft: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | vol->retry = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1873 | break; |
| 1874 | case Opt_nointr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | vol->intr = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1876 | break; |
| 1877 | case Opt_intr: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | vol->intr = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1879 | break; |
| 1880 | case Opt_nostrictsync: |
Steve French | be65244 | 2009-02-23 15:21:59 +0000 | [diff] [blame] | 1881 | vol->nostrictsync = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1882 | break; |
| 1883 | case Opt_strictsync: |
Steve French | be65244 | 2009-02-23 15:21:59 +0000 | [diff] [blame] | 1884 | vol->nostrictsync = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1885 | break; |
| 1886 | case Opt_serverino: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | vol->server_ino = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1888 | break; |
| 1889 | case Opt_noserverino: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | vol->server_ino = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1891 | break; |
| 1892 | case Opt_rwpidforward: |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 1893 | vol->rwpidforward = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1894 | break; |
Steve French | 412094a | 2019-06-24 02:01:42 -0500 | [diff] [blame] | 1895 | case Opt_modesid: |
| 1896 | vol->mode_ace = 1; |
| 1897 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1898 | case Opt_cifsacl: |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 1899 | vol->cifs_acl = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1900 | break; |
| 1901 | case Opt_nocifsacl: |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 1902 | vol->cifs_acl = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1903 | break; |
| 1904 | case Opt_acl: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | vol->no_psx_acl = 0; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1906 | break; |
| 1907 | case Opt_noacl: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | vol->no_psx_acl = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1909 | break; |
| 1910 | case Opt_locallease: |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1911 | vol->local_lease = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1912 | break; |
| 1913 | case Opt_sign: |
Jeff Layton | 1e3cc57 | 2013-06-10 17:12:23 -0500 | [diff] [blame] | 1914 | vol->sign = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1915 | break; |
Steve French | 4f5c10f | 2019-09-03 21:18:49 -0500 | [diff] [blame] | 1916 | case Opt_ignore_signature: |
| 1917 | vol->sign = true; |
| 1918 | vol->ignore_signature = true; |
| 1919 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1920 | case Opt_seal: |
Steve French | 95b1cb9 | 2008-05-15 16:44:38 +0000 | [diff] [blame] | 1921 | /* we do not do the following in secFlags because seal |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1922 | * is a per tree connection (mount) not a per socket |
| 1923 | * or per-smb connection option in the protocol |
| 1924 | * vol->secFlg |= CIFSSEC_MUST_SEAL; |
| 1925 | */ |
Steve French | 95b1cb9 | 2008-05-15 16:44:38 +0000 | [diff] [blame] | 1926 | vol->seal = 1; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1927 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1928 | case Opt_noac: |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 1929 | 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] | 1930 | break; |
| 1931 | case Opt_fsc: |
Suresh Jayaraman | 607a569 | 2010-11-24 17:49:05 +0530 | [diff] [blame] | 1932 | #ifndef CONFIG_CIFS_FSCACHE |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1933 | 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] | 1934 | goto cifs_parse_mount_err; |
Suresh Jayaraman | 607a569 | 2010-11-24 17:49:05 +0530 | [diff] [blame] | 1935 | #endif |
Suresh Jayaraman | fa1df75 | 2010-07-05 18:13:36 +0530 | [diff] [blame] | 1936 | vol->fsc = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1937 | break; |
| 1938 | case Opt_mfsymlinks: |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 1939 | vol->mfsymlinks = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1940 | break; |
| 1941 | case Opt_multiuser: |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 1942 | vol->multiuser = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1943 | break; |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1944 | case Opt_sloppy: |
| 1945 | sloppy = true; |
| 1946 | break; |
Jeff Layton | a0b3df5 | 2013-05-24 07:40:59 -0400 | [diff] [blame] | 1947 | case Opt_nosharesock: |
| 1948 | vol->nosharesock = true; |
| 1949 | break; |
Steve French | b2a3077 | 2015-09-29 21:49:28 -0500 | [diff] [blame] | 1950 | case Opt_nopersistent: |
| 1951 | vol->nopersistent = true; |
| 1952 | if (vol->persistent) { |
| 1953 | cifs_dbg(VFS, |
| 1954 | "persistenthandles mount options conflict\n"); |
| 1955 | goto cifs_parse_mount_err; |
| 1956 | } |
| 1957 | break; |
| 1958 | case Opt_persistent: |
| 1959 | vol->persistent = true; |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 1960 | if ((vol->nopersistent) || (vol->resilient)) { |
Steve French | b2a3077 | 2015-09-29 21:49:28 -0500 | [diff] [blame] | 1961 | cifs_dbg(VFS, |
| 1962 | "persistenthandles mount options conflict\n"); |
| 1963 | goto cifs_parse_mount_err; |
| 1964 | } |
| 1965 | break; |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 1966 | case Opt_resilient: |
| 1967 | vol->resilient = true; |
| 1968 | if (vol->persistent) { |
| 1969 | cifs_dbg(VFS, |
| 1970 | "persistenthandles mount options conflict\n"); |
| 1971 | goto cifs_parse_mount_err; |
| 1972 | } |
| 1973 | break; |
| 1974 | case Opt_noresilient: |
| 1975 | vol->resilient = false; /* already the default */ |
| 1976 | break; |
Germano Percossi | 3956644 | 2016-12-15 12:31:18 +0530 | [diff] [blame] | 1977 | case Opt_domainauto: |
| 1978 | vol->domainauto = true; |
| 1979 | break; |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 1980 | case Opt_rdma: |
| 1981 | vol->rdma = true; |
| 1982 | break; |
Steve French | 9fe5ff1 | 2019-06-24 20:39:04 -0500 | [diff] [blame] | 1983 | case Opt_compress: |
| 1984 | vol->compression = UNKNOWN_TYPE; |
| 1985 | cifs_dbg(VFS, |
| 1986 | "SMB3 compression support is experimental\n"); |
| 1987 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1988 | |
| 1989 | /* Numeric Values */ |
| 1990 | case Opt_backupuid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1991 | if (get_option_uid(args, &vol->backupuid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1992 | cifs_dbg(VFS, "%s: Invalid backupuid value\n", |
| 1993 | __func__); |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 1994 | goto cifs_parse_mount_err; |
| 1995 | } |
| 1996 | vol->backupuid_specified = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 1997 | break; |
| 1998 | case Opt_backupgid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 1999 | if (get_option_gid(args, &vol->backupgid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2000 | cifs_dbg(VFS, "%s: Invalid backupgid value\n", |
| 2001 | __func__); |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 2002 | goto cifs_parse_mount_err; |
| 2003 | } |
| 2004 | vol->backupgid_specified = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2005 | break; |
| 2006 | case Opt_uid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 2007 | if (get_option_uid(args, &vol->linux_uid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2008 | cifs_dbg(VFS, "%s: Invalid uid value\n", |
| 2009 | __func__); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2010 | goto cifs_parse_mount_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2012 | uid_specified = true; |
| 2013 | break; |
| 2014 | case Opt_cruid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 2015 | if (get_option_uid(args, &vol->cred_uid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2016 | cifs_dbg(VFS, "%s: Invalid cruid value\n", |
| 2017 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2018 | goto cifs_parse_mount_err; |
| 2019 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2020 | break; |
| 2021 | case Opt_gid: |
Eric W. Biederman | 3da4656 | 2013-02-06 01:37:39 -0800 | [diff] [blame] | 2022 | if (get_option_gid(args, &vol->linux_gid)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2023 | cifs_dbg(VFS, "%s: Invalid gid value\n", |
| 2024 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2025 | goto cifs_parse_mount_err; |
| 2026 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2027 | gid_specified = true; |
| 2028 | break; |
| 2029 | case Opt_file_mode: |
| 2030 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2031 | cifs_dbg(VFS, "%s: Invalid file_mode value\n", |
| 2032 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2033 | goto cifs_parse_mount_err; |
| 2034 | } |
| 2035 | vol->file_mode = option; |
| 2036 | break; |
| 2037 | case Opt_dirmode: |
| 2038 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2039 | cifs_dbg(VFS, "%s: Invalid dir_mode value\n", |
| 2040 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2041 | goto cifs_parse_mount_err; |
| 2042 | } |
| 2043 | vol->dir_mode = option; |
| 2044 | break; |
| 2045 | case Opt_port: |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2046 | if (get_option_ul(args, &option) || |
| 2047 | option > USHRT_MAX) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2048 | cifs_dbg(VFS, "%s: Invalid port value\n", |
| 2049 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2050 | goto cifs_parse_mount_err; |
| 2051 | } |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2052 | port = (unsigned short)option; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2053 | break; |
Steve French | 563317e | 2019-09-08 23:22:02 -0500 | [diff] [blame] | 2054 | case Opt_min_enc_offload: |
| 2055 | if (get_option_ul(args, &option)) { |
| 2056 | cifs_dbg(VFS, "Invalid minimum encrypted read offload size (esize)\n"); |
| 2057 | goto cifs_parse_mount_err; |
| 2058 | } |
| 2059 | vol->min_offload = option; |
| 2060 | break; |
Steve French | e8506d2 | 2019-02-28 21:32:15 -0600 | [diff] [blame] | 2061 | case Opt_blocksize: |
| 2062 | if (get_option_ul(args, &option)) { |
| 2063 | cifs_dbg(VFS, "%s: Invalid blocksize value\n", |
| 2064 | __func__); |
| 2065 | goto cifs_parse_mount_err; |
| 2066 | } |
| 2067 | /* |
| 2068 | * inode blocksize realistically should never need to be |
| 2069 | * less than 16K or greater than 16M and default is 1MB. |
| 2070 | * Note that small inode block sizes (e.g. 64K) can lead |
| 2071 | * to very poor performance of common tools like cp and scp |
| 2072 | */ |
| 2073 | if ((option < CIFS_MAX_MSGSIZE) || |
| 2074 | (option > (4 * SMB3_DEFAULT_IOSIZE))) { |
| 2075 | cifs_dbg(VFS, "%s: Invalid blocksize\n", |
| 2076 | __func__); |
| 2077 | goto cifs_parse_mount_err; |
| 2078 | } |
| 2079 | vol->bsize = option; |
| 2080 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2081 | case Opt_rsize: |
| 2082 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2083 | cifs_dbg(VFS, "%s: Invalid rsize value\n", |
| 2084 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2085 | goto cifs_parse_mount_err; |
| 2086 | } |
| 2087 | vol->rsize = option; |
| 2088 | break; |
| 2089 | case Opt_wsize: |
| 2090 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2091 | cifs_dbg(VFS, "%s: Invalid wsize value\n", |
| 2092 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2093 | goto cifs_parse_mount_err; |
| 2094 | } |
| 2095 | vol->wsize = option; |
| 2096 | break; |
| 2097 | case Opt_actimeo: |
| 2098 | if (get_option_ul(args, &option)) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2099 | cifs_dbg(VFS, "%s: Invalid actimeo value\n", |
| 2100 | __func__); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2101 | goto cifs_parse_mount_err; |
| 2102 | } |
| 2103 | vol->actimeo = HZ * option; |
| 2104 | if (vol->actimeo > CIFS_MAX_ACTIMEO) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2105 | cifs_dbg(VFS, "attribute cache timeout too large\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2106 | goto cifs_parse_mount_err; |
| 2107 | } |
| 2108 | break; |
Steve French | ca567eb | 2019-03-29 16:31:07 -0500 | [diff] [blame] | 2109 | case Opt_handletimeout: |
| 2110 | if (get_option_ul(args, &option)) { |
| 2111 | cifs_dbg(VFS, "%s: Invalid handletimeout value\n", |
| 2112 | __func__); |
| 2113 | goto cifs_parse_mount_err; |
| 2114 | } |
| 2115 | vol->handle_timeout = option; |
| 2116 | if (vol->handle_timeout > SMB3_MAX_HANDLE_TIMEOUT) { |
| 2117 | cifs_dbg(VFS, "Invalid handle cache timeout, longer than 16 minutes\n"); |
| 2118 | goto cifs_parse_mount_err; |
| 2119 | } |
| 2120 | break; |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 2121 | case Opt_echo_interval: |
| 2122 | if (get_option_ul(args, &option)) { |
| 2123 | cifs_dbg(VFS, "%s: Invalid echo interval value\n", |
| 2124 | __func__); |
| 2125 | goto cifs_parse_mount_err; |
| 2126 | } |
| 2127 | vol->echo_interval = option; |
| 2128 | break; |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 2129 | case Opt_snapshot: |
| 2130 | if (get_option_ul(args, &option)) { |
| 2131 | cifs_dbg(VFS, "%s: Invalid snapshot time\n", |
| 2132 | __func__); |
| 2133 | goto cifs_parse_mount_err; |
| 2134 | } |
| 2135 | vol->snapshot_time = option; |
| 2136 | break; |
Steve French | 141891f | 2016-09-23 00:44:16 -0500 | [diff] [blame] | 2137 | case Opt_max_credits: |
| 2138 | if (get_option_ul(args, &option) || (option < 20) || |
| 2139 | (option > 60000)) { |
| 2140 | cifs_dbg(VFS, "%s: Invalid max_credits value\n", |
| 2141 | __func__); |
| 2142 | goto cifs_parse_mount_err; |
| 2143 | } |
| 2144 | vol->max_credits = option; |
| 2145 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2146 | |
| 2147 | /* String Arguments */ |
| 2148 | |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2149 | case Opt_blank_user: |
| 2150 | /* null user, ie. anonymous authentication */ |
| 2151 | vol->nullauth = 1; |
| 2152 | vol->username = NULL; |
| 2153 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2154 | case Opt_user: |
| 2155 | string = match_strdup(args); |
| 2156 | if (string == NULL) |
| 2157 | goto out_nomem; |
| 2158 | |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 2159 | if (strnlen(string, CIFS_MAX_USERNAME_LEN) > |
| 2160 | CIFS_MAX_USERNAME_LEN) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2161 | pr_warn("CIFS: username too long\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2162 | goto cifs_parse_mount_err; |
| 2163 | } |
Taesoo Kim | 2bd50fb | 2015-03-21 19:08:30 -0400 | [diff] [blame] | 2164 | |
| 2165 | kfree(vol->username); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2166 | vol->username = kstrdup(string, GFP_KERNEL); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2167 | if (!vol->username) |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2168 | goto cifs_parse_mount_err; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2169 | break; |
| 2170 | case Opt_blank_pass: |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2171 | /* passwords have to be handled differently |
| 2172 | * to allow the character used for deliminator |
| 2173 | * to be passed within them |
| 2174 | */ |
| 2175 | |
Sachin Prabhu | c369c9a | 2013-04-09 18:17:41 +0100 | [diff] [blame] | 2176 | /* |
| 2177 | * Check if this is a case where the password |
| 2178 | * starts with a delimiter |
| 2179 | */ |
| 2180 | tmp_end = strchr(data, '='); |
| 2181 | tmp_end++; |
| 2182 | if (!(tmp_end < end && tmp_end[1] == delim)) { |
| 2183 | /* No it is not. Set the password to NULL */ |
Aurelien Aptel | 97f4b72 | 2018-01-25 15:59:39 +0100 | [diff] [blame] | 2184 | kzfree(vol->password); |
Sachin Prabhu | c369c9a | 2013-04-09 18:17:41 +0100 | [diff] [blame] | 2185 | vol->password = NULL; |
| 2186 | break; |
| 2187 | } |
Gustavo A. R. Silva | 07fa601 | 2018-11-27 10:01:51 +1100 | [diff] [blame] | 2188 | /* Fallthrough - to Opt_pass below.*/ |
Sachin Prabhu | c369c9a | 2013-04-09 18:17:41 +0100 | [diff] [blame] | 2189 | case Opt_pass: |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2190 | /* Obtain the value string */ |
| 2191 | value = strchr(data, '='); |
Sachin Prabhu | 1023807 | 2012-03-28 18:07:08 +0100 | [diff] [blame] | 2192 | value++; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2193 | |
| 2194 | /* Set tmp_end to end of the string */ |
| 2195 | tmp_end = (char *) value + strlen(value); |
| 2196 | |
| 2197 | /* Check if following character is the deliminator |
| 2198 | * If yes, we have encountered a double deliminator |
| 2199 | * reset the NULL character to the deliminator |
| 2200 | */ |
Suresh Jayaraman | e73f843 | 2012-06-12 07:15:50 +0530 | [diff] [blame] | 2201 | if (tmp_end < end && tmp_end[1] == delim) { |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2202 | tmp_end[0] = delim; |
| 2203 | |
Suresh Jayaraman | e73f843 | 2012-06-12 07:15:50 +0530 | [diff] [blame] | 2204 | /* Keep iterating until we get to a single |
| 2205 | * deliminator OR the end |
| 2206 | */ |
| 2207 | while ((tmp_end = strchr(tmp_end, delim)) |
| 2208 | != NULL && (tmp_end[1] == delim)) { |
| 2209 | tmp_end = (char *) &tmp_end[2]; |
| 2210 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2211 | |
Suresh Jayaraman | e73f843 | 2012-06-12 07:15:50 +0530 | [diff] [blame] | 2212 | /* Reset var options to point to next element */ |
| 2213 | if (tmp_end) { |
| 2214 | tmp_end[0] = '\0'; |
| 2215 | options = (char *) &tmp_end[1]; |
| 2216 | } else |
| 2217 | /* Reached the end of the mount option |
| 2218 | * string */ |
| 2219 | options = end; |
| 2220 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2221 | |
Aurelien Aptel | 97f4b72 | 2018-01-25 15:59:39 +0100 | [diff] [blame] | 2222 | kzfree(vol->password); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2223 | /* Now build new password string */ |
| 2224 | temp_len = strlen(value); |
| 2225 | vol->password = kzalloc(temp_len+1, GFP_KERNEL); |
| 2226 | if (vol->password == NULL) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2227 | pr_warn("CIFS: no memory for password\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2228 | goto cifs_parse_mount_err; |
| 2229 | } |
| 2230 | |
| 2231 | for (i = 0, j = 0; i < temp_len; i++, j++) { |
| 2232 | vol->password[j] = value[i]; |
| 2233 | if ((value[i] == delim) && |
| 2234 | value[i+1] == delim) |
| 2235 | /* skip the second deliminator */ |
| 2236 | i++; |
| 2237 | } |
| 2238 | vol->password[j] = '\0'; |
| 2239 | break; |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2240 | case Opt_blank_ip: |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2241 | /* FIXME: should this be an error instead? */ |
| 2242 | got_ip = false; |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2243 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2244 | case Opt_ip: |
| 2245 | string = match_strdup(args); |
| 2246 | if (string == NULL) |
| 2247 | goto out_nomem; |
| 2248 | |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2249 | if (!cifs_convert_address(dstaddr, string, |
| 2250 | strlen(string))) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2251 | pr_err("CIFS: bad ip= option (%s).\n", string); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2252 | goto cifs_parse_mount_err; |
| 2253 | } |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2254 | got_ip = true; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2255 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2256 | case Opt_domain: |
| 2257 | string = match_strdup(args); |
| 2258 | if (string == NULL) |
| 2259 | goto out_nomem; |
| 2260 | |
Chen Gang | 057d633 | 2013-07-19 09:01:36 +0800 | [diff] [blame] | 2261 | if (strnlen(string, CIFS_MAX_DOMAINNAME_LEN) |
| 2262 | == CIFS_MAX_DOMAINNAME_LEN) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2263 | pr_warn("CIFS: domain name too long\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2264 | goto cifs_parse_mount_err; |
| 2265 | } |
| 2266 | |
Taesoo Kim | 2bd50fb | 2015-03-21 19:08:30 -0400 | [diff] [blame] | 2267 | kfree(vol->domainname); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2268 | vol->domainname = kstrdup(string, GFP_KERNEL); |
| 2269 | if (!vol->domainname) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2270 | pr_warn("CIFS: no memory for domainname\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2271 | goto cifs_parse_mount_err; |
| 2272 | } |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2273 | cifs_dbg(FYI, "Domain name set\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2274 | break; |
| 2275 | case Opt_srcaddr: |
| 2276 | string = match_strdup(args); |
| 2277 | if (string == NULL) |
| 2278 | goto out_nomem; |
| 2279 | |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2280 | if (!cifs_convert_address( |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2281 | (struct sockaddr *)&vol->srcaddr, |
| 2282 | string, strlen(string))) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2283 | pr_warn("CIFS: Could not parse srcaddr: %s\n", |
| 2284 | string); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2285 | goto cifs_parse_mount_err; |
| 2286 | } |
| 2287 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2288 | case Opt_iocharset: |
| 2289 | string = match_strdup(args); |
| 2290 | if (string == NULL) |
| 2291 | goto out_nomem; |
| 2292 | |
Sachin Prabhu | 4fe9e96 | 2012-04-10 18:12:27 +0100 | [diff] [blame] | 2293 | if (strnlen(string, 1024) >= 65) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2294 | pr_warn("CIFS: iocharset name too long.\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2295 | goto cifs_parse_mount_err; |
| 2296 | } |
| 2297 | |
Rasmus Villemoes | 87e747c | 2014-10-13 15:54:35 -0700 | [diff] [blame] | 2298 | if (strncasecmp(string, "default", 7) != 0) { |
Taesoo Kim | 2bd50fb | 2015-03-21 19:08:30 -0400 | [diff] [blame] | 2299 | kfree(vol->iocharset); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2300 | vol->iocharset = kstrdup(string, |
| 2301 | GFP_KERNEL); |
| 2302 | if (!vol->iocharset) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2303 | pr_warn("CIFS: no memory for charset\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2304 | goto cifs_parse_mount_err; |
| 2305 | } |
| 2306 | } |
| 2307 | /* if iocharset not set then load_nls_default |
| 2308 | * is used by caller |
| 2309 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2310 | cifs_dbg(FYI, "iocharset set to %s\n", string); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2311 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2312 | case Opt_netbiosname: |
| 2313 | string = match_strdup(args); |
| 2314 | if (string == NULL) |
| 2315 | goto out_nomem; |
| 2316 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2317 | memset(vol->source_rfc1001_name, 0x20, |
| 2318 | RFC1001_NAME_LEN); |
| 2319 | /* |
| 2320 | * FIXME: are there cases in which a comma can |
| 2321 | * be valid in workstation netbios name (and |
| 2322 | * need special handling)? |
| 2323 | */ |
| 2324 | for (i = 0; i < RFC1001_NAME_LEN; i++) { |
| 2325 | /* don't ucase netbiosname for user */ |
| 2326 | if (string[i] == 0) |
| 2327 | break; |
| 2328 | vol->source_rfc1001_name[i] = string[i]; |
| 2329 | } |
| 2330 | /* The string has 16th byte zero still from |
| 2331 | * set at top of the function |
| 2332 | */ |
| 2333 | if (i == RFC1001_NAME_LEN && string[i] != 0) |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2334 | pr_warn("CIFS: netbiosname longer than 15 truncated.\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2335 | break; |
| 2336 | case Opt_servern: |
| 2337 | /* servernetbiosname specified override *SMBSERVER */ |
| 2338 | string = match_strdup(args); |
| 2339 | if (string == NULL) |
| 2340 | goto out_nomem; |
| 2341 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2342 | /* last byte, type, is 0x20 for servr type */ |
| 2343 | memset(vol->target_rfc1001_name, 0x20, |
| 2344 | RFC1001_NAME_LEN_WITH_NULL); |
| 2345 | |
| 2346 | /* BB are there cases in which a comma can be |
| 2347 | valid in this workstation netbios name |
| 2348 | (and need special handling)? */ |
| 2349 | |
| 2350 | /* user or mount helper must uppercase the |
| 2351 | netbios name */ |
| 2352 | for (i = 0; i < 15; i++) { |
| 2353 | if (string[i] == 0) |
| 2354 | break; |
| 2355 | vol->target_rfc1001_name[i] = string[i]; |
| 2356 | } |
| 2357 | /* The string has 16th byte zero still from |
| 2358 | set at top of the function */ |
| 2359 | if (i == RFC1001_NAME_LEN && string[i] != 0) |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2360 | pr_warn("CIFS: server netbiosname longer than 15 truncated.\n"); |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2361 | break; |
| 2362 | case Opt_ver: |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2363 | /* version of mount userspace tools, not dialect */ |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2364 | string = match_strdup(args); |
| 2365 | if (string == NULL) |
| 2366 | goto out_nomem; |
| 2367 | |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2368 | /* If interface changes in mount.cifs bump to new ver */ |
Rasmus Villemoes | 87e747c | 2014-10-13 15:54:35 -0700 | [diff] [blame] | 2369 | if (strncasecmp(string, "1", 1) == 0) { |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2370 | if (strlen(string) > 1) { |
| 2371 | pr_warn("Bad mount helper ver=%s. Did " |
| 2372 | "you want SMB1 (CIFS) dialect " |
| 2373 | "and mean to type vers=1.0 " |
| 2374 | "instead?\n", string); |
| 2375 | goto cifs_parse_mount_err; |
| 2376 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2377 | /* This is the default */ |
| 2378 | break; |
| 2379 | } |
| 2380 | /* For all other value, error */ |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2381 | pr_warn("CIFS: Invalid mount helper version specified\n"); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2382 | goto cifs_parse_mount_err; |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2383 | case Opt_vers: |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2384 | /* protocol version (dialect) */ |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2385 | string = match_strdup(args); |
| 2386 | if (string == NULL) |
| 2387 | goto out_nomem; |
| 2388 | |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 2389 | if (cifs_parse_smb_version(string, vol, is_smb3) != 0) |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2390 | goto cifs_parse_mount_err; |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2391 | got_version = true; |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2392 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2393 | case Opt_sec: |
| 2394 | string = match_strdup(args); |
| 2395 | if (string == NULL) |
| 2396 | goto out_nomem; |
| 2397 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2398 | if (cifs_parse_security_flavors(string, vol) != 0) |
| 2399 | goto cifs_parse_mount_err; |
| 2400 | break; |
Jeff Layton | 15b6a47 | 2012-05-16 07:50:15 -0400 | [diff] [blame] | 2401 | case Opt_cache: |
| 2402 | string = match_strdup(args); |
| 2403 | if (string == NULL) |
| 2404 | goto out_nomem; |
| 2405 | |
| 2406 | if (cifs_parse_cache_flavor(string, vol) != 0) |
| 2407 | goto cifs_parse_mount_err; |
| 2408 | break; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2409 | default: |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2410 | /* |
| 2411 | * An option we don't recognize. Save it off for later |
| 2412 | * if we haven't already found one |
| 2413 | */ |
| 2414 | if (!invalid) |
| 2415 | invalid = data; |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2416 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | } |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2418 | /* Free up any allocated string */ |
| 2419 | kfree(string); |
| 2420 | string = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | } |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 2422 | |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2423 | if (!sloppy && invalid) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2424 | pr_err("CIFS: Unknown mount option \"%s\"\n", invalid); |
Jeff Layton | d816255 | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2425 | goto cifs_parse_mount_err; |
| 2426 | } |
| 2427 | |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 2428 | if (vol->rdma && vol->vals->protocol_id < SMB30_PROT_ID) { |
| 2429 | cifs_dbg(VFS, "SMB Direct requires Version >=3.0\n"); |
| 2430 | goto cifs_parse_mount_err; |
| 2431 | } |
| 2432 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2433 | #ifndef CONFIG_KEYS |
| 2434 | /* Muliuser mounts require CONFIG_KEYS support */ |
| 2435 | if (vol->multiuser) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2436 | cifs_dbg(VFS, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n"); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2437 | goto cifs_parse_mount_err; |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 2438 | } |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2439 | #endif |
Jeff Layton | e5e69ab | 2012-11-25 08:00:42 -0500 | [diff] [blame] | 2440 | if (!vol->UNC) { |
Jeff Layton | 37d4f99 | 2013-05-24 07:40:05 -0400 | [diff] [blame] | 2441 | 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] | 2442 | goto cifs_parse_mount_err; |
| 2443 | } |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 2444 | |
Jeff Layton | 62a1a43 | 2012-12-10 06:10:45 -0500 | [diff] [blame] | 2445 | /* make sure UNC has a share name */ |
| 2446 | if (!strchr(vol->UNC + 3, '\\')) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2447 | cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n"); |
Jeff Layton | 62a1a43 | 2012-12-10 06:10:45 -0500 | [diff] [blame] | 2448 | goto cifs_parse_mount_err; |
| 2449 | } |
| 2450 | |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2451 | if (!got_ip) { |
Daniel N Pettersson | 29bb315 | 2017-04-27 11:32:36 +0200 | [diff] [blame] | 2452 | int len; |
| 2453 | const char *slash; |
| 2454 | |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2455 | /* No ip= option specified? Try to get it from UNC */ |
Daniel N Pettersson | 29bb315 | 2017-04-27 11:32:36 +0200 | [diff] [blame] | 2456 | /* Use the address part of the UNC. */ |
| 2457 | slash = strchr(&vol->UNC[2], '\\'); |
| 2458 | len = slash - &vol->UNC[2]; |
| 2459 | if (!cifs_convert_address(dstaddr, &vol->UNC[2], len)) { |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2460 | pr_err("Unable to determine destination address.\n"); |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 2461 | goto cifs_parse_mount_err; |
| 2462 | } |
| 2463 | } |
| 2464 | |
| 2465 | /* set the port that we got earlier */ |
| 2466 | cifs_set_port(dstaddr, port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | |
Jeff Layton | 9b9d6b24 | 2009-07-31 06:56:09 -0400 | [diff] [blame] | 2468 | if (uid_specified) |
| 2469 | vol->override_uid = override_uid; |
| 2470 | else if (override_uid == 1) |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2471 | 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] | 2472 | |
| 2473 | if (gid_specified) |
| 2474 | vol->override_gid = override_gid; |
| 2475 | else if (override_gid == 1) |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2476 | 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] | 2477 | |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2478 | if (got_version == false) |
| 2479 | pr_warn("No dialect specified on mount. Default has changed to " |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 2480 | "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] | 2481 | "(SMB1). To use the less secure SMB1 dialect to access " |
Steve French | 9764c02 | 2017-09-17 10:41:35 -0500 | [diff] [blame] | 2482 | "old servers which do not support SMB3 (or SMB2.1) specify vers=1.0" |
| 2483 | " on mount.\n"); |
Steve French | 7e682f7 | 2017-08-31 21:34:24 -0500 | [diff] [blame] | 2484 | |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2485 | kfree(mountdata_copy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2486 | return 0; |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2487 | |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2488 | out_nomem: |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 2489 | pr_warn("Could not allocate temporary buffer\n"); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2490 | cifs_parse_mount_err: |
Sachin Prabhu | 8830d7e | 2012-03-23 14:40:56 -0400 | [diff] [blame] | 2491 | kfree(string); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 2492 | kfree(mountdata_copy); |
| 2493 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2494 | } |
| 2495 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2496 | /** Returns true if srcaddr isn't specified and rhs isn't |
| 2497 | * specified, or if srcaddr is specified and |
| 2498 | * matches the IP address of the rhs argument. |
| 2499 | */ |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2500 | static bool |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2501 | srcip_matches(struct sockaddr *srcaddr, struct sockaddr *rhs) |
| 2502 | { |
| 2503 | switch (srcaddr->sa_family) { |
| 2504 | case AF_UNSPEC: |
| 2505 | return (rhs->sa_family == AF_UNSPEC); |
| 2506 | case AF_INET: { |
| 2507 | struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr; |
| 2508 | struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs; |
| 2509 | return (saddr4->sin_addr.s_addr == vaddr4->sin_addr.s_addr); |
| 2510 | } |
| 2511 | case AF_INET6: { |
| 2512 | struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr; |
Nickolai Zeldovich | e3e2775 | 2013-01-16 21:36:17 -0500 | [diff] [blame] | 2513 | struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs; |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2514 | return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr); |
| 2515 | } |
| 2516 | default: |
| 2517 | WARN_ON(1); |
| 2518 | return false; /* don't expect to be here */ |
| 2519 | } |
| 2520 | } |
| 2521 | |
Pavel Shilovsky | 4b88613 | 2010-12-13 22:18:07 +0300 | [diff] [blame] | 2522 | /* |
| 2523 | * If no port is specified in addr structure, we try to match with 445 port |
| 2524 | * and if it fails - with 139 ports. It should be called only if address |
| 2525 | * families of server and addr are equal. |
| 2526 | */ |
| 2527 | static bool |
| 2528 | match_port(struct TCP_Server_Info *server, struct sockaddr *addr) |
| 2529 | { |
Steve French | 6da9791 | 2011-03-13 18:55:55 +0000 | [diff] [blame] | 2530 | __be16 port, *sport; |
Pavel Shilovsky | 4b88613 | 2010-12-13 22:18:07 +0300 | [diff] [blame] | 2531 | |
Long Li | 3b24911 | 2019-05-15 14:09:04 -0700 | [diff] [blame] | 2532 | /* SMBDirect manages its own ports, don't match it here */ |
| 2533 | if (server->rdma) |
| 2534 | return true; |
| 2535 | |
Pavel Shilovsky | 4b88613 | 2010-12-13 22:18:07 +0300 | [diff] [blame] | 2536 | switch (addr->sa_family) { |
| 2537 | case AF_INET: |
| 2538 | sport = &((struct sockaddr_in *) &server->dstaddr)->sin_port; |
| 2539 | port = ((struct sockaddr_in *) addr)->sin_port; |
| 2540 | break; |
| 2541 | case AF_INET6: |
| 2542 | sport = &((struct sockaddr_in6 *) &server->dstaddr)->sin6_port; |
| 2543 | port = ((struct sockaddr_in6 *) addr)->sin6_port; |
| 2544 | break; |
| 2545 | default: |
| 2546 | WARN_ON(1); |
| 2547 | return false; |
| 2548 | } |
| 2549 | |
| 2550 | if (!port) { |
| 2551 | port = htons(CIFS_PORT); |
| 2552 | if (port == *sport) |
| 2553 | return true; |
| 2554 | |
| 2555 | port = htons(RFC1001_PORT); |
| 2556 | } |
| 2557 | |
| 2558 | return port == *sport; |
| 2559 | } |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2560 | |
| 2561 | static bool |
| 2562 | match_address(struct TCP_Server_Info *server, struct sockaddr *addr, |
| 2563 | struct sockaddr *srcaddr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | { |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2565 | switch (addr->sa_family) { |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2566 | case AF_INET: { |
| 2567 | struct sockaddr_in *addr4 = (struct sockaddr_in *)addr; |
| 2568 | struct sockaddr_in *srv_addr4 = |
| 2569 | (struct sockaddr_in *)&server->dstaddr; |
| 2570 | |
| 2571 | if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr) |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2572 | return false; |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2573 | break; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2574 | } |
| 2575 | case AF_INET6: { |
| 2576 | struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr; |
| 2577 | struct sockaddr_in6 *srv_addr6 = |
| 2578 | (struct sockaddr_in6 *)&server->dstaddr; |
| 2579 | |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2580 | if (!ipv6_addr_equal(&addr6->sin6_addr, |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2581 | &srv_addr6->sin6_addr)) |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2582 | return false; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2583 | if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id) |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2584 | return false; |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2585 | break; |
| 2586 | } |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2587 | default: |
| 2588 | WARN_ON(1); |
| 2589 | return false; /* don't expect to be here */ |
| 2590 | } |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2591 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 2592 | if (!srcip_matches(srcaddr, (struct sockaddr *)&server->srcaddr)) |
| 2593 | return false; |
| 2594 | |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2595 | return true; |
| 2596 | } |
| 2597 | |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2598 | static bool |
| 2599 | match_security(struct TCP_Server_Info *server, struct smb_vol *vol) |
| 2600 | { |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 2601 | /* |
| 2602 | * The select_sectype function should either return the vol->sectype |
| 2603 | * that was specified, or "Unspecified" if that sectype was not |
| 2604 | * compatible with the given NEGOTIATE request. |
| 2605 | */ |
Sachin Prabhu | ef65aae | 2017-01-18 15:35:57 +0530 | [diff] [blame] | 2606 | if (server->ops->select_sectype(server, vol->sectype) |
| 2607 | == Unspecified) |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2608 | return false; |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2609 | |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 2610 | /* |
| 2611 | * Now check if signing mode is acceptable. No need to check |
| 2612 | * global_secflags at this point since if MUST_SIGN is set then |
| 2613 | * the server->sign had better be too. |
| 2614 | */ |
Jeff Layton | 38d77c5 | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 2615 | if (vol->sign && !server->sign) |
| 2616 | return false; |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2617 | |
| 2618 | return true; |
| 2619 | } |
| 2620 | |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2621 | 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] | 2622 | { |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2623 | struct sockaddr *addr = (struct sockaddr *)&vol->dstaddr; |
| 2624 | |
Jeff Layton | a0b3df5 | 2013-05-24 07:40:59 -0400 | [diff] [blame] | 2625 | if (vol->nosharesock) |
| 2626 | return 0; |
| 2627 | |
Steve French | 43cdae8 | 2019-06-13 14:26:49 -0500 | [diff] [blame] | 2628 | /* If multidialect negotiation see if existing sessions match one */ |
| 2629 | if (strcmp(vol->vals->version_string, SMB3ANY_VERSION_STRING) == 0) { |
| 2630 | if (server->vals->protocol_id < SMB30_PROT_ID) |
| 2631 | return 0; |
| 2632 | } else if (strcmp(vol->vals->version_string, |
| 2633 | SMBDEFAULT_VERSION_STRING) == 0) { |
| 2634 | if (server->vals->protocol_id < SMB21_PROT_ID) |
| 2635 | return 0; |
| 2636 | } else if ((server->vals != vol->vals) || (server->ops != vol->ops)) |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2637 | return 0; |
| 2638 | |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2639 | if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns)) |
| 2640 | return 0; |
| 2641 | |
| 2642 | if (!match_address(server, addr, |
| 2643 | (struct sockaddr *)&vol->srcaddr)) |
| 2644 | return 0; |
| 2645 | |
| 2646 | if (!match_port(server, addr)) |
| 2647 | return 0; |
| 2648 | |
| 2649 | if (!match_security(server, vol)) |
| 2650 | return 0; |
| 2651 | |
Rabin Vincent | b782fcc | 2016-07-19 09:25:45 +0200 | [diff] [blame] | 2652 | if (server->echo_interval != vol->echo_interval * HZ) |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 2653 | return 0; |
| 2654 | |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 2655 | if (server->rdma != vol->rdma) |
| 2656 | return 0; |
| 2657 | |
Steve French | 4f5c10f | 2019-09-03 21:18:49 -0500 | [diff] [blame] | 2658 | if (server->ignore_signature != vol->ignore_signature) |
| 2659 | return 0; |
| 2660 | |
Steve French | 563317e | 2019-09-08 23:22:02 -0500 | [diff] [blame] | 2661 | if (server->min_offload != vol->min_offload) |
| 2662 | return 0; |
| 2663 | |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2664 | return 1; |
| 2665 | } |
| 2666 | |
Paulo Alcantara | 54be1f6 | 2018-11-14 16:01:21 -0200 | [diff] [blame] | 2667 | struct TCP_Server_Info * |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2668 | cifs_find_tcp_session(struct smb_vol *vol) |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2669 | { |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2670 | struct TCP_Server_Info *server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2671 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2672 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 4515148 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2673 | list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2674 | if (!match_server(server, vol)) |
Jeff Layton | daf5b0b | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2675 | continue; |
| 2676 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2677 | ++server->srv_count; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2678 | spin_unlock(&cifs_tcp_ses_lock); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2679 | cifs_dbg(FYI, "Existing tcp session with server found\n"); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2680 | return server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2682 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | return NULL; |
| 2684 | } |
| 2685 | |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2686 | void |
| 2687 | cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2688 | { |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 2689 | struct task_struct *task; |
| 2690 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2691 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2692 | if (--server->srv_count > 0) { |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2693 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2694 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | } |
Steve French | dea570e0 | 2008-05-06 22:05:51 +0000 | [diff] [blame] | 2696 | |
Rob Landley | f1d0c99 | 2011-01-22 15:44:05 -0600 | [diff] [blame] | 2697 | put_net(cifs_net_ns(server)); |
| 2698 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2699 | list_del_init(&server->tcp_ses_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2700 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2701 | |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 2702 | cancel_delayed_work_sync(&server->echo); |
| 2703 | |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2704 | if (from_reconnect) |
| 2705 | /* |
| 2706 | * Avoid deadlock here: reconnect work calls |
| 2707 | * cifs_put_tcp_session() at its end. Need to be sure |
| 2708 | * that reconnect work does nothing with server pointer after |
| 2709 | * that step. |
| 2710 | */ |
| 2711 | cancel_delayed_work(&server->reconnect); |
| 2712 | else |
| 2713 | cancel_delayed_work_sync(&server->reconnect); |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2714 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2715 | spin_lock(&GlobalMid_Lock); |
| 2716 | server->tcpStatus = CifsExiting; |
| 2717 | spin_unlock(&GlobalMid_Lock); |
| 2718 | |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 2719 | cifs_crypto_secmech_release(server); |
Suresh Jayaraman | 488f1d2d | 2010-07-05 18:12:15 +0530 | [diff] [blame] | 2720 | cifs_fscache_release_client_cookie(server); |
| 2721 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 2722 | kfree(server->session_key.response); |
| 2723 | server->session_key.response = NULL; |
| 2724 | server->session_key.len = 0; |
Steve French | a5c3e1c | 2014-09-16 04:16:19 -0500 | [diff] [blame] | 2725 | |
| 2726 | task = xchg(&server->tsk, NULL); |
| 2727 | if (task) |
Eric W. Biederman | 72abe3b | 2019-05-15 12:33:50 -0500 | [diff] [blame] | 2728 | send_sig(SIGKILL, task, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | } |
| 2730 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2731 | static struct TCP_Server_Info * |
| 2732 | cifs_get_tcp_session(struct smb_vol *volume_info) |
| 2733 | { |
| 2734 | struct TCP_Server_Info *tcp_ses = NULL; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2735 | int rc; |
| 2736 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2737 | cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2738 | |
| 2739 | /* see if we already have a matching tcp_ses */ |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2740 | tcp_ses = cifs_find_tcp_session(volume_info); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2741 | if (tcp_ses) |
| 2742 | return tcp_ses; |
| 2743 | |
| 2744 | tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL); |
| 2745 | if (!tcp_ses) { |
| 2746 | rc = -ENOMEM; |
| 2747 | goto out_err; |
| 2748 | } |
| 2749 | |
Jeff Layton | 23db65f | 2012-05-15 12:20:51 -0400 | [diff] [blame] | 2750 | tcp_ses->ops = volume_info->ops; |
| 2751 | tcp_ses->vals = volume_info->vals; |
Rob Landley | f1d0c99 | 2011-01-22 15:44:05 -0600 | [diff] [blame] | 2752 | cifs_set_net_ns(tcp_ses, get_net(current->nsproxy->net_ns)); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2753 | tcp_ses->hostname = extract_hostname(volume_info->UNC); |
| 2754 | if (IS_ERR(tcp_ses->hostname)) { |
| 2755 | rc = PTR_ERR(tcp_ses->hostname); |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 2756 | goto out_err_crypto_release; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2757 | } |
| 2758 | |
Paulo Alcantara (SUSE) | 8eecd1c | 2019-07-16 19:04:50 -0300 | [diff] [blame] | 2759 | tcp_ses->noblockcnt = volume_info->rootfs; |
| 2760 | tcp_ses->noblocksnd = volume_info->noblocksnd || volume_info->rootfs; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2761 | tcp_ses->noautotune = volume_info->noautotune; |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 2762 | tcp_ses->tcp_nodelay = volume_info->sockopt_tcp_nodelay; |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 2763 | tcp_ses->rdma = volume_info->rdma; |
Pavel Shilovsky | fc40f9c | 2012-02-17 17:09:12 +0300 | [diff] [blame] | 2764 | tcp_ses->in_flight = 0; |
Steve French | 1b63f18 | 2019-09-09 22:57:11 -0500 | [diff] [blame] | 2765 | tcp_ses->max_in_flight = 0; |
Pavel Shilovsky | 2d86dbc | 2012-02-06 15:59:18 +0400 | [diff] [blame] | 2766 | tcp_ses->credits = 1; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2767 | init_waitqueue_head(&tcp_ses->response_q); |
| 2768 | init_waitqueue_head(&tcp_ses->request_q); |
| 2769 | INIT_LIST_HEAD(&tcp_ses->pending_mid_q); |
| 2770 | mutex_init(&tcp_ses->srv_mutex); |
| 2771 | memcpy(tcp_ses->workstation_RFC1001_name, |
| 2772 | volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL); |
| 2773 | memcpy(tcp_ses->server_RFC1001_name, |
| 2774 | volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL); |
Shirish Pargaonkar | 5d0d288 | 2010-10-13 18:15:00 -0500 | [diff] [blame] | 2775 | tcp_ses->session_estab = false; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2776 | tcp_ses->sequence_number = 0; |
Pavel Shilovsky | 5b96485 | 2019-01-18 11:30:26 -0800 | [diff] [blame] | 2777 | tcp_ses->reconnect_instance = 1; |
Steve French | fda3594 | 2011-01-20 18:06:34 +0000 | [diff] [blame] | 2778 | tcp_ses->lstrp = jiffies; |
Steve French | 9fe5ff1 | 2019-06-24 20:39:04 -0500 | [diff] [blame] | 2779 | tcp_ses->compress_algorithm = cpu_to_le16(volume_info->compression); |
Jeff Layton | 58fa015 | 2012-05-01 17:41:16 -0400 | [diff] [blame] | 2780 | spin_lock_init(&tcp_ses->req_lock); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2781 | INIT_LIST_HEAD(&tcp_ses->tcp_ses_list); |
| 2782 | INIT_LIST_HEAD(&tcp_ses->smb_ses_list); |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 2783 | INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request); |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 2784 | INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server); |
| 2785 | mutex_init(&tcp_ses->reconnect_mutex); |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 2786 | memcpy(&tcp_ses->srcaddr, &volume_info->srcaddr, |
| 2787 | sizeof(tcp_ses->srcaddr)); |
| 2788 | memcpy(&tcp_ses->dstaddr, &volume_info->dstaddr, |
| 2789 | sizeof(tcp_ses->dstaddr)); |
Steve French | fa70b87 | 2016-09-22 00:39:34 -0500 | [diff] [blame] | 2790 | generate_random_uuid(tcp_ses->client_guid); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2791 | /* |
| 2792 | * at this point we are the only ones with the pointer |
| 2793 | * to the struct since the kernel thread not created yet |
| 2794 | * no need to spinlock this init of tcpStatus or srv_count |
| 2795 | */ |
| 2796 | tcp_ses->tcpStatus = CifsNew; |
| 2797 | ++tcp_ses->srv_count; |
| 2798 | |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 2799 | if (volume_info->echo_interval >= SMB_ECHO_INTERVAL_MIN && |
| 2800 | volume_info->echo_interval <= SMB_ECHO_INTERVAL_MAX) |
| 2801 | tcp_ses->echo_interval = volume_info->echo_interval * HZ; |
| 2802 | else |
| 2803 | tcp_ses->echo_interval = SMB_ECHO_INTERVAL_DEFAULT * HZ; |
Long Li | 2f89464 | 2017-11-22 17:38:34 -0700 | [diff] [blame] | 2804 | if (tcp_ses->rdma) { |
| 2805 | #ifndef CONFIG_CIFS_SMB_DIRECT |
| 2806 | cifs_dbg(VFS, "CONFIG_CIFS_SMB_DIRECT is not enabled\n"); |
| 2807 | rc = -ENOENT; |
| 2808 | goto out_err_crypto_release; |
| 2809 | #endif |
| 2810 | tcp_ses->smbd_conn = smbd_get_connection( |
| 2811 | tcp_ses, (struct sockaddr *)&volume_info->dstaddr); |
| 2812 | if (tcp_ses->smbd_conn) { |
| 2813 | cifs_dbg(VFS, "RDMA transport established\n"); |
| 2814 | rc = 0; |
| 2815 | goto smbd_connected; |
| 2816 | } else { |
| 2817 | rc = -ENOENT; |
| 2818 | goto out_err_crypto_release; |
| 2819 | } |
| 2820 | } |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 2821 | rc = ip_connect(tcp_ses); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2822 | if (rc < 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2823 | cifs_dbg(VFS, "Error connecting to socket. Aborting operation.\n"); |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 2824 | goto out_err_crypto_release; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2825 | } |
Long Li | 2f89464 | 2017-11-22 17:38:34 -0700 | [diff] [blame] | 2826 | smbd_connected: |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2827 | /* |
| 2828 | * since we're in a cifs function already, we know that |
| 2829 | * this will succeed. No need for try_module_get(). |
| 2830 | */ |
| 2831 | __module_get(THIS_MODULE); |
Al Viro | 7c97c20 | 2011-06-21 08:51:28 -0400 | [diff] [blame] | 2832 | tcp_ses->tsk = kthread_run(cifs_demultiplex_thread, |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2833 | tcp_ses, "cifsd"); |
| 2834 | if (IS_ERR(tcp_ses->tsk)) { |
| 2835 | rc = PTR_ERR(tcp_ses->tsk); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 2836 | cifs_dbg(VFS, "error %d create cifsd thread\n", rc); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2837 | module_put(THIS_MODULE); |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 2838 | goto out_err_crypto_release; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2839 | } |
Steve French | 563317e | 2019-09-08 23:22:02 -0500 | [diff] [blame] | 2840 | tcp_ses->min_offload = volume_info->min_offload; |
Steve French | fd88ce9 | 2011-04-12 01:01:14 +0000 | [diff] [blame] | 2841 | tcp_ses->tcpStatus = CifsNeedNegotiate; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2842 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 2843 | tcp_ses->nr_targets = 1; |
Steve French | 4f5c10f | 2019-09-03 21:18:49 -0500 | [diff] [blame] | 2844 | tcp_ses->ignore_signature = volume_info->ignore_signature; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2845 | /* thread spawned, put it on the list */ |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2846 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2847 | list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 2848 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2849 | |
Suresh Jayaraman | 488f1d2d | 2010-07-05 18:12:15 +0530 | [diff] [blame] | 2850 | cifs_fscache_get_client_cookie(tcp_ses); |
| 2851 | |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 2852 | /* queue echo request delayed work */ |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 2853 | queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval); |
Jeff Layton | c74093b | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 2854 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2855 | return tcp_ses; |
| 2856 | |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 2857 | out_err_crypto_release: |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 2858 | cifs_crypto_secmech_release(tcp_ses); |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 2859 | |
Rob Landley | f1d0c99 | 2011-01-22 15:44:05 -0600 | [diff] [blame] | 2860 | put_net(cifs_net_ns(tcp_ses)); |
| 2861 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2862 | out_err: |
| 2863 | if (tcp_ses) { |
Steve French | 8347a5c | 2009-10-06 18:31:29 +0000 | [diff] [blame] | 2864 | if (!IS_ERR(tcp_ses->hostname)) |
| 2865 | kfree(tcp_ses->hostname); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2866 | if (tcp_ses->ssocket) |
| 2867 | sock_release(tcp_ses->ssocket); |
| 2868 | kfree(tcp_ses); |
| 2869 | } |
| 2870 | return ERR_PTR(rc); |
| 2871 | } |
| 2872 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2873 | static int match_session(struct cifs_ses *ses, struct smb_vol *vol) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2874 | { |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 2875 | if (vol->sectype != Unspecified && |
| 2876 | vol->sectype != ses->sectype) |
| 2877 | return 0; |
| 2878 | |
| 2879 | switch (ses->sectype) { |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2880 | case Kerberos: |
Eric W. Biederman | 64ed39d | 2013-02-06 02:30:39 -0800 | [diff] [blame] | 2881 | if (!uid_eq(vol->cred_uid, ses->cred_uid)) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2882 | return 0; |
| 2883 | break; |
| 2884 | default: |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2885 | /* NULL username means anonymous session */ |
| 2886 | if (ses->user_name == NULL) { |
| 2887 | if (!vol->nullauth) |
| 2888 | return 0; |
| 2889 | break; |
| 2890 | } |
| 2891 | |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2892 | /* anything else takes username/password */ |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 2893 | if (strncmp(ses->user_name, |
| 2894 | vol->username ? vol->username : "", |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 2895 | CIFS_MAX_USERNAME_LEN)) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2896 | return 0; |
Jeff Layton | 08b37d5 | 2014-05-23 06:53:10 -0400 | [diff] [blame] | 2897 | if ((vol->username && strlen(vol->username) != 0) && |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2898 | ses->password != NULL && |
| 2899 | strncmp(ses->password, |
| 2900 | vol->password ? vol->password : "", |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 2901 | CIFS_MAX_PASSWORD_LEN)) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 2902 | return 0; |
| 2903 | } |
| 2904 | return 1; |
| 2905 | } |
| 2906 | |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2907 | /** |
| 2908 | * cifs_setup_ipc - helper to setup the IPC tcon for the session |
| 2909 | * |
| 2910 | * A new IPC connection is made and stored in the session |
| 2911 | * tcon_ipc. The IPC tcon has the same lifetime as the session. |
| 2912 | */ |
| 2913 | static int |
| 2914 | cifs_setup_ipc(struct cifs_ses *ses, struct smb_vol *volume_info) |
| 2915 | { |
| 2916 | int rc = 0, xid; |
| 2917 | struct cifs_tcon *tcon; |
| 2918 | struct nls_table *nls_codepage; |
| 2919 | char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0}; |
| 2920 | bool seal = false; |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 2921 | struct TCP_Server_Info *server = ses->server; |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2922 | |
| 2923 | /* |
| 2924 | * If the mount request that resulted in the creation of the |
| 2925 | * session requires encryption, force IPC to be encrypted too. |
| 2926 | */ |
| 2927 | if (volume_info->seal) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 2928 | if (server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION) |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2929 | seal = true; |
| 2930 | else { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 2931 | cifs_server_dbg(VFS, |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2932 | "IPC: server doesn't support encryption\n"); |
| 2933 | return -EOPNOTSUPP; |
| 2934 | } |
| 2935 | } |
| 2936 | |
| 2937 | tcon = tconInfoAlloc(); |
| 2938 | if (tcon == NULL) |
| 2939 | return -ENOMEM; |
| 2940 | |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 2941 | scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname); |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2942 | |
| 2943 | /* cannot fail */ |
| 2944 | nls_codepage = load_nls_default(); |
| 2945 | |
| 2946 | xid = get_xid(); |
| 2947 | tcon->ses = ses; |
| 2948 | tcon->ipc = true; |
| 2949 | tcon->seal = seal; |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 2950 | rc = server->ops->tree_connect(xid, ses, unc, tcon, nls_codepage); |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2951 | free_xid(xid); |
| 2952 | |
| 2953 | if (rc) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 2954 | cifs_server_dbg(VFS, "failed to connect to IPC (rc=%d)\n", rc); |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 2955 | tconInfoFree(tcon); |
| 2956 | goto out; |
| 2957 | } |
| 2958 | |
| 2959 | cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid); |
| 2960 | |
| 2961 | ses->tcon_ipc = tcon; |
| 2962 | out: |
| 2963 | unload_nls(nls_codepage); |
| 2964 | return rc; |
| 2965 | } |
| 2966 | |
| 2967 | /** |
| 2968 | * cifs_free_ipc - helper to release the session IPC tcon |
| 2969 | * |
| 2970 | * Needs to be called everytime a session is destroyed |
| 2971 | */ |
| 2972 | static int |
| 2973 | cifs_free_ipc(struct cifs_ses *ses) |
| 2974 | { |
| 2975 | int rc = 0, xid; |
| 2976 | struct cifs_tcon *tcon = ses->tcon_ipc; |
| 2977 | |
| 2978 | if (tcon == NULL) |
| 2979 | return 0; |
| 2980 | |
| 2981 | if (ses->server->ops->tree_disconnect) { |
| 2982 | xid = get_xid(); |
| 2983 | rc = ses->server->ops->tree_disconnect(xid, tcon); |
| 2984 | free_xid(xid); |
| 2985 | } |
| 2986 | |
| 2987 | if (rc) |
| 2988 | cifs_dbg(FYI, "failed to disconnect IPC tcon (rc=%d)\n", rc); |
| 2989 | |
| 2990 | tconInfoFree(tcon); |
| 2991 | ses->tcon_ipc = NULL; |
| 2992 | return rc; |
| 2993 | } |
| 2994 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2995 | static struct cifs_ses * |
Jeff Layton | 4ff67b7 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 2996 | 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] | 2997 | { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 2998 | struct cifs_ses *ses; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2999 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3000 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 4ff67b7 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 3001 | list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 3002 | if (ses->status == CifsExiting) |
| 3003 | continue; |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 3004 | if (!match_session(ses, vol)) |
| 3005 | continue; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3006 | ++ses->ses_count; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3007 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3008 | return ses; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3009 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3010 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3011 | return NULL; |
| 3012 | } |
| 3013 | |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 3014 | void cifs_put_smb_ses(struct cifs_ses *ses) |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3015 | { |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 3016 | unsigned int rc, xid; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3017 | struct TCP_Server_Info *server = ses->server; |
| 3018 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3019 | cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count); |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 3020 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3021 | spin_lock(&cifs_tcp_ses_lock); |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 3022 | if (ses->status == CifsExiting) { |
| 3023 | spin_unlock(&cifs_tcp_ses_lock); |
| 3024 | return; |
| 3025 | } |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3026 | if (--ses->ses_count > 0) { |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3027 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3028 | return; |
| 3029 | } |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 3030 | if (ses->status == CifsGood) |
| 3031 | ses->status = CifsExiting; |
| 3032 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3033 | |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 3034 | cifs_free_ipc(ses); |
| 3035 | |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 3036 | if (ses->status == CifsExiting && server->ops->logoff) { |
| 3037 | xid = get_xid(); |
| 3038 | rc = server->ops->logoff(xid, ses); |
| 3039 | if (rc) |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 3040 | cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n", |
Shirish Pargaonkar | 7f48558 | 2013-10-12 10:06:03 -0500 | [diff] [blame] | 3041 | __func__, rc); |
| 3042 | _free_xid(xid); |
| 3043 | } |
| 3044 | |
| 3045 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3046 | list_del_init(&ses->smb_ses_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3047 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3048 | |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3049 | sesInfoFree(ses); |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 3050 | cifs_put_tcp_session(server, 0); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 3051 | } |
| 3052 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3053 | #ifdef CONFIG_KEYS |
| 3054 | |
Chen Gang | 057d633 | 2013-07-19 09:01:36 +0800 | [diff] [blame] | 3055 | /* strlen("cifs:a:") + CIFS_MAX_DOMAINNAME_LEN + 1 */ |
| 3056 | #define CIFSCREDS_DESC_SIZE (7 + CIFS_MAX_DOMAINNAME_LEN + 1) |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3057 | |
| 3058 | /* Populate username and pw fields from keyring if possible */ |
| 3059 | static int |
| 3060 | cifs_set_cifscreds(struct smb_vol *vol, struct cifs_ses *ses) |
| 3061 | { |
| 3062 | int rc = 0; |
Ronnie Sahlberg | f2aee32 | 2019-08-22 08:09:50 +1000 | [diff] [blame] | 3063 | int is_domain = 0; |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 3064 | const char *delim, *payload; |
| 3065 | char *desc; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3066 | ssize_t len; |
| 3067 | struct key *key; |
| 3068 | struct TCP_Server_Info *server = ses->server; |
| 3069 | struct sockaddr_in *sa; |
| 3070 | struct sockaddr_in6 *sa6; |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 3071 | const struct user_key_payload *upayload; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3072 | |
| 3073 | desc = kmalloc(CIFSCREDS_DESC_SIZE, GFP_KERNEL); |
| 3074 | if (!desc) |
| 3075 | return -ENOMEM; |
| 3076 | |
| 3077 | /* try to find an address key first */ |
| 3078 | switch (server->dstaddr.ss_family) { |
| 3079 | case AF_INET: |
| 3080 | sa = (struct sockaddr_in *)&server->dstaddr; |
| 3081 | sprintf(desc, "cifs:a:%pI4", &sa->sin_addr.s_addr); |
| 3082 | break; |
| 3083 | case AF_INET6: |
| 3084 | sa6 = (struct sockaddr_in6 *)&server->dstaddr; |
| 3085 | sprintf(desc, "cifs:a:%pI6c", &sa6->sin6_addr.s6_addr); |
| 3086 | break; |
| 3087 | default: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3088 | cifs_dbg(FYI, "Bad ss_family (%hu)\n", |
| 3089 | server->dstaddr.ss_family); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3090 | rc = -EINVAL; |
| 3091 | goto out_err; |
| 3092 | } |
| 3093 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3094 | cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc); |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 3095 | key = request_key(&key_type_logon, desc, ""); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3096 | if (IS_ERR(key)) { |
| 3097 | if (!ses->domainName) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3098 | cifs_dbg(FYI, "domainName is NULL\n"); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3099 | rc = PTR_ERR(key); |
| 3100 | goto out_err; |
| 3101 | } |
| 3102 | |
| 3103 | /* didn't work, try to find a domain key */ |
| 3104 | sprintf(desc, "cifs:d:%s", ses->domainName); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3105 | cifs_dbg(FYI, "%s: desc=%s\n", __func__, desc); |
Linus Torvalds | 028db3e | 2019-07-10 18:43:43 -0700 | [diff] [blame] | 3106 | key = request_key(&key_type_logon, desc, ""); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3107 | if (IS_ERR(key)) { |
| 3108 | rc = PTR_ERR(key); |
| 3109 | goto out_err; |
| 3110 | } |
Ronnie Sahlberg | f2aee32 | 2019-08-22 08:09:50 +1000 | [diff] [blame] | 3111 | is_domain = 1; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3112 | } |
| 3113 | |
| 3114 | down_read(&key->sem); |
David Howells | 0837e49 | 2017-03-01 15:11:23 +0000 | [diff] [blame] | 3115 | upayload = user_key_payload_locked(key); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3116 | if (IS_ERR_OR_NULL(upayload)) { |
Jeff Layton | 4edc53c | 2012-02-07 06:30:51 -0500 | [diff] [blame] | 3117 | rc = upayload ? PTR_ERR(upayload) : -EINVAL; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3118 | goto out_key_put; |
| 3119 | } |
| 3120 | |
| 3121 | /* find first : in payload */ |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 3122 | payload = upayload->data; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3123 | delim = strnchr(payload, upayload->datalen, ':'); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3124 | cifs_dbg(FYI, "payload=%s\n", payload); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3125 | if (!delim) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3126 | cifs_dbg(FYI, "Unable to find ':' in payload (datalen=%d)\n", |
| 3127 | upayload->datalen); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3128 | rc = -EINVAL; |
| 3129 | goto out_key_put; |
| 3130 | } |
| 3131 | |
| 3132 | len = delim - payload; |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 3133 | if (len > CIFS_MAX_USERNAME_LEN || len <= 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3134 | cifs_dbg(FYI, "Bad value from username search (len=%zd)\n", |
| 3135 | len); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3136 | rc = -EINVAL; |
| 3137 | goto out_key_put; |
| 3138 | } |
| 3139 | |
| 3140 | vol->username = kstrndup(payload, len, GFP_KERNEL); |
| 3141 | if (!vol->username) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3142 | cifs_dbg(FYI, "Unable to allocate %zd bytes for username\n", |
| 3143 | len); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3144 | rc = -ENOMEM; |
| 3145 | goto out_key_put; |
| 3146 | } |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3147 | cifs_dbg(FYI, "%s: username=%s\n", __func__, vol->username); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3148 | |
| 3149 | len = key->datalen - (len + 1); |
Scott Lovenberg | 8c3a2b4 | 2013-08-09 08:47:17 -0400 | [diff] [blame] | 3150 | if (len > CIFS_MAX_PASSWORD_LEN || len <= 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3151 | cifs_dbg(FYI, "Bad len for password search (len=%zd)\n", len); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3152 | rc = -EINVAL; |
| 3153 | kfree(vol->username); |
| 3154 | vol->username = NULL; |
| 3155 | goto out_key_put; |
| 3156 | } |
| 3157 | |
| 3158 | ++delim; |
| 3159 | vol->password = kstrndup(delim, len, GFP_KERNEL); |
| 3160 | if (!vol->password) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3161 | cifs_dbg(FYI, "Unable to allocate %zd bytes for password\n", |
| 3162 | len); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3163 | rc = -ENOMEM; |
| 3164 | kfree(vol->username); |
| 3165 | vol->username = NULL; |
| 3166 | goto out_key_put; |
| 3167 | } |
| 3168 | |
Ronnie Sahlberg | f2aee32 | 2019-08-22 08:09:50 +1000 | [diff] [blame] | 3169 | /* |
| 3170 | * If we have a domain key then we must set the domainName in the |
| 3171 | * for the request. |
| 3172 | */ |
| 3173 | if (is_domain && ses->domainName) { |
| 3174 | vol->domainname = kstrndup(ses->domainName, |
| 3175 | strlen(ses->domainName), |
| 3176 | GFP_KERNEL); |
| 3177 | if (!vol->domainname) { |
| 3178 | cifs_dbg(FYI, "Unable to allocate %zd bytes for " |
| 3179 | "domain\n", len); |
| 3180 | rc = -ENOMEM; |
| 3181 | kfree(vol->username); |
| 3182 | vol->username = NULL; |
Dan Carpenter | 478228e | 2019-08-27 13:59:17 +0300 | [diff] [blame] | 3183 | kzfree(vol->password); |
Ronnie Sahlberg | f2aee32 | 2019-08-22 08:09:50 +1000 | [diff] [blame] | 3184 | vol->password = NULL; |
| 3185 | goto out_key_put; |
| 3186 | } |
| 3187 | } |
| 3188 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3189 | out_key_put: |
| 3190 | up_read(&key->sem); |
| 3191 | key_put(key); |
| 3192 | out_err: |
| 3193 | kfree(desc); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3194 | cifs_dbg(FYI, "%s: returning %d\n", __func__, rc); |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 3195 | return rc; |
| 3196 | } |
| 3197 | #else /* ! CONFIG_KEYS */ |
| 3198 | static inline int |
| 3199 | cifs_set_cifscreds(struct smb_vol *vol __attribute__((unused)), |
| 3200 | struct cifs_ses *ses __attribute__((unused))) |
| 3201 | { |
| 3202 | return -ENOSYS; |
| 3203 | } |
| 3204 | #endif /* CONFIG_KEYS */ |
| 3205 | |
Aurelien Aptel | 4a1360d | 2018-01-25 18:47:52 +0100 | [diff] [blame] | 3206 | /** |
| 3207 | * cifs_get_smb_ses - get a session matching @volume_info data from @server |
| 3208 | * |
| 3209 | * This function assumes it is being called from cifs_mount() where we |
| 3210 | * already got a server reference (server refcount +1). See |
| 3211 | * cifs_get_tcon() for refcount explanations. |
| 3212 | */ |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 3213 | struct cifs_ses * |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3214 | cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info) |
| 3215 | { |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 3216 | int rc = -ENOMEM; |
| 3217 | unsigned int xid; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3218 | struct cifs_ses *ses; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3219 | struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr; |
| 3220 | struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr; |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3221 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3222 | xid = get_xid(); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3223 | |
Jeff Layton | 4ff67b7 | 2010-07-06 20:43:02 -0400 | [diff] [blame] | 3224 | ses = cifs_find_smb_ses(server, volume_info); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3225 | if (ses) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3226 | cifs_dbg(FYI, "Existing smb sess found (status=%d)\n", |
| 3227 | ses->status); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3228 | |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3229 | mutex_lock(&ses->session_mutex); |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 3230 | rc = cifs_negotiate_protocol(xid, ses); |
| 3231 | if (rc) { |
| 3232 | mutex_unlock(&ses->session_mutex); |
| 3233 | /* problem -- put our ses reference */ |
| 3234 | cifs_put_smb_ses(ses); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3235 | free_xid(xid); |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 3236 | return ERR_PTR(rc); |
| 3237 | } |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3238 | if (ses->need_reconnect) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3239 | cifs_dbg(FYI, "Session needs reconnect\n"); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3240 | rc = cifs_setup_session(xid, ses, |
| 3241 | volume_info->local_nls); |
| 3242 | if (rc) { |
| 3243 | mutex_unlock(&ses->session_mutex); |
| 3244 | /* problem -- put our reference */ |
| 3245 | cifs_put_smb_ses(ses); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3246 | free_xid(xid); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3247 | return ERR_PTR(rc); |
| 3248 | } |
| 3249 | } |
| 3250 | mutex_unlock(&ses->session_mutex); |
Jeff Layton | 460cf34 | 2010-09-14 11:38:24 -0400 | [diff] [blame] | 3251 | |
| 3252 | /* existing SMB ses has a server reference already */ |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 3253 | cifs_put_tcp_session(server, 0); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3254 | free_xid(xid); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3255 | return ses; |
| 3256 | } |
| 3257 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3258 | cifs_dbg(FYI, "Existing smb sess not found\n"); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3259 | ses = sesInfoAlloc(); |
| 3260 | if (ses == NULL) |
| 3261 | goto get_ses_fail; |
| 3262 | |
| 3263 | /* new SMB session uses our server ref */ |
| 3264 | ses->server = server; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3265 | if (server->dstaddr.ss_family == AF_INET6) |
| 3266 | sprintf(ses->serverName, "%pI6", &addr6->sin6_addr); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3267 | else |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3268 | sprintf(ses->serverName, "%pI4", &addr->sin_addr); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3269 | |
Steve French | 8727c8a | 2011-02-25 01:11:56 -0600 | [diff] [blame] | 3270 | if (volume_info->username) { |
| 3271 | ses->user_name = kstrdup(volume_info->username, GFP_KERNEL); |
| 3272 | if (!ses->user_name) |
| 3273 | goto get_ses_fail; |
| 3274 | } |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3275 | |
| 3276 | /* volume_info->password freed at unmount */ |
| 3277 | if (volume_info->password) { |
| 3278 | ses->password = kstrdup(volume_info->password, GFP_KERNEL); |
| 3279 | if (!ses->password) |
| 3280 | goto get_ses_fail; |
| 3281 | } |
| 3282 | if (volume_info->domainname) { |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 3283 | ses->domainName = kstrdup(volume_info->domainname, GFP_KERNEL); |
| 3284 | if (!ses->domainName) |
| 3285 | goto get_ses_fail; |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3286 | } |
Germano Percossi | 3956644 | 2016-12-15 12:31:18 +0530 | [diff] [blame] | 3287 | if (volume_info->domainauto) |
| 3288 | ses->domainAuto = volume_info->domainauto; |
Jeff Layton | 3e4b3e1 | 2010-07-19 18:00:17 -0400 | [diff] [blame] | 3289 | ses->cred_uid = volume_info->cred_uid; |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3290 | ses->linux_uid = volume_info->linux_uid; |
Steve French | d9b9420 | 2011-04-12 01:24:57 +0000 | [diff] [blame] | 3291 | |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 3292 | ses->sectype = volume_info->sectype; |
| 3293 | ses->sign = volume_info->sign; |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3294 | mutex_lock(&ses->session_mutex); |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 3295 | rc = cifs_negotiate_protocol(xid, ses); |
| 3296 | if (!rc) |
| 3297 | rc = cifs_setup_session(xid, ses, volume_info->local_nls); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3298 | mutex_unlock(&ses->session_mutex); |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 3299 | if (rc) |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3300 | goto get_ses_fail; |
| 3301 | |
| 3302 | /* success, put it on the list */ |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3303 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3304 | list_add(&ses->smb_ses_list, &server->smb_ses_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3305 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3306 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3307 | free_xid(xid); |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 3308 | |
| 3309 | cifs_setup_ipc(ses, volume_info); |
| 3310 | |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3311 | return ses; |
| 3312 | |
| 3313 | get_ses_fail: |
| 3314 | sesInfoFree(ses); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3315 | free_xid(xid); |
Jeff Layton | 36988c7 | 2010-04-24 07:57:43 -0400 | [diff] [blame] | 3316 | return ERR_PTR(rc); |
| 3317 | } |
| 3318 | |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3319 | 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] | 3320 | { |
| 3321 | if (tcon->tidStatus == CifsExiting) |
| 3322 | return 0; |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3323 | if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE)) |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 3324 | return 0; |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3325 | if (tcon->seal != volume_info->seal) |
| 3326 | return 0; |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3327 | if (tcon->snapshot_time != volume_info->snapshot_time) |
| 3328 | return 0; |
Steve French | ca567eb | 2019-03-29 16:31:07 -0500 | [diff] [blame] | 3329 | if (tcon->handle_timeout != volume_info->handle_timeout) |
| 3330 | return 0; |
Steve French | 3e7a02d | 2019-09-11 21:46:20 -0500 | [diff] [blame] | 3331 | if (tcon->no_lease != volume_info->no_lease) |
| 3332 | return 0; |
Pavel Shilovsky | 37bb04e | 2011-05-05 09:55:11 +0000 | [diff] [blame] | 3333 | return 1; |
| 3334 | } |
| 3335 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3336 | static struct cifs_tcon * |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3337 | cifs_find_tcon(struct cifs_ses *ses, struct smb_vol *volume_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3338 | { |
| 3339 | struct list_head *tmp; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3340 | struct cifs_tcon *tcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3341 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3342 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3343 | list_for_each(tmp, &ses->tcon_list) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3344 | tcon = list_entry(tmp, struct cifs_tcon, tcon_list); |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3345 | if (!match_tcon(tcon, volume_info)) |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3346 | continue; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3347 | ++tcon->tc_count; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3348 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3349 | return tcon; |
| 3350 | } |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3351 | spin_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3352 | return NULL; |
| 3353 | } |
| 3354 | |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 3355 | void |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3356 | cifs_put_tcon(struct cifs_tcon *tcon) |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3357 | { |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3358 | unsigned int xid; |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 3359 | struct cifs_ses *ses; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3360 | |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 3361 | /* |
| 3362 | * IPC tcon share the lifetime of their session and are |
| 3363 | * destroyed in the session put function |
| 3364 | */ |
| 3365 | if (tcon == NULL || tcon->ipc) |
| 3366 | return; |
| 3367 | |
| 3368 | ses = tcon->ses; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3369 | cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3370 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3371 | if (--tcon->tc_count > 0) { |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3372 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3373 | return; |
| 3374 | } |
| 3375 | |
| 3376 | list_del_init(&tcon->tcon_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3377 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3378 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3379 | xid = get_xid(); |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3380 | if (ses->server->ops->tree_disconnect) |
| 3381 | ses->server->ops->tree_disconnect(xid, tcon); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3382 | _free_xid(xid); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3383 | |
Suresh Jayaraman | d03382c | 2010-07-05 18:12:27 +0530 | [diff] [blame] | 3384 | cifs_fscache_release_super_cookie(tcon); |
Steve French | 9f84159 | 2010-07-23 20:37:53 +0000 | [diff] [blame] | 3385 | tconInfoFree(tcon); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3386 | cifs_put_smb_ses(ses); |
| 3387 | } |
| 3388 | |
Aurelien Aptel | 4a1360d | 2018-01-25 18:47:52 +0100 | [diff] [blame] | 3389 | /** |
| 3390 | * cifs_get_tcon - get a tcon matching @volume_info data from @ses |
| 3391 | * |
| 3392 | * - tcon refcount is the number of mount points using the tcon. |
| 3393 | * - ses refcount is the number of tcon using the session. |
| 3394 | * |
| 3395 | * 1. This function assumes it is being called from cifs_mount() where |
| 3396 | * we already got a session reference (ses refcount +1). |
| 3397 | * |
| 3398 | * 2. Since we're in the context of adding a mount point, the end |
| 3399 | * result should be either: |
| 3400 | * |
| 3401 | * a) a new tcon already allocated with refcount=1 (1 mount point) and |
| 3402 | * its session refcount incremented (1 new tcon). This +1 was |
| 3403 | * already done in (1). |
| 3404 | * |
| 3405 | * b) an existing tcon with refcount+1 (add a mount point to it) and |
| 3406 | * identical ses refcount (no new tcon). Because of (1) we need to |
| 3407 | * decrement the ses refcount. |
| 3408 | */ |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3409 | static struct cifs_tcon * |
| 3410 | cifs_get_tcon(struct cifs_ses *ses, struct smb_vol *volume_info) |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3411 | { |
| 3412 | int rc, xid; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3413 | struct cifs_tcon *tcon; |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3414 | |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3415 | tcon = cifs_find_tcon(ses, volume_info); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3416 | if (tcon) { |
Aurelien Aptel | 4a1360d | 2018-01-25 18:47:52 +0100 | [diff] [blame] | 3417 | /* |
| 3418 | * tcon has refcount already incremented but we need to |
| 3419 | * decrement extra ses reference gotten by caller (case b) |
| 3420 | */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3421 | cifs_dbg(FYI, "Found match on UNC path\n"); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3422 | cifs_put_smb_ses(ses); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3423 | return tcon; |
| 3424 | } |
| 3425 | |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3426 | if (!ses->server->ops->tree_connect) { |
| 3427 | rc = -ENOSYS; |
| 3428 | goto out_fail; |
| 3429 | } |
| 3430 | |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3431 | tcon = tconInfoAlloc(); |
| 3432 | if (tcon == NULL) { |
| 3433 | rc = -ENOMEM; |
| 3434 | goto out_fail; |
| 3435 | } |
| 3436 | |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3437 | if (volume_info->snapshot_time) { |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3438 | if (ses->server->vals->protocol_id == 0) { |
| 3439 | cifs_dbg(VFS, |
| 3440 | "Use SMB2 or later for snapshot mount option\n"); |
| 3441 | rc = -EOPNOTSUPP; |
| 3442 | goto out_fail; |
| 3443 | } else |
| 3444 | tcon->snapshot_time = volume_info->snapshot_time; |
Steve French | 8b217fe | 2016-11-11 22:36:20 -0600 | [diff] [blame] | 3445 | } |
| 3446 | |
Steve French | ca567eb | 2019-03-29 16:31:07 -0500 | [diff] [blame] | 3447 | if (volume_info->handle_timeout) { |
| 3448 | if (ses->server->vals->protocol_id == 0) { |
| 3449 | cifs_dbg(VFS, |
| 3450 | "Use SMB2.1 or later for handle timeout option\n"); |
| 3451 | rc = -EOPNOTSUPP; |
| 3452 | goto out_fail; |
| 3453 | } else |
| 3454 | tcon->handle_timeout = volume_info->handle_timeout; |
| 3455 | } |
| 3456 | |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3457 | tcon->ses = ses; |
| 3458 | if (volume_info->password) { |
| 3459 | tcon->password = kstrdup(volume_info->password, GFP_KERNEL); |
| 3460 | if (!tcon->password) { |
| 3461 | rc = -ENOMEM; |
| 3462 | goto out_fail; |
| 3463 | } |
| 3464 | } |
| 3465 | |
Steve French | 23657ad | 2018-04-22 15:14:58 -0500 | [diff] [blame] | 3466 | if (volume_info->seal) { |
| 3467 | if (ses->server->vals->protocol_id == 0) { |
| 3468 | cifs_dbg(VFS, |
| 3469 | "SMB3 or later required for encryption\n"); |
| 3470 | rc = -EOPNOTSUPP; |
| 3471 | goto out_fail; |
| 3472 | } else if (tcon->ses->server->capabilities & |
| 3473 | SMB2_GLOBAL_CAP_ENCRYPTION) |
| 3474 | tcon->seal = true; |
| 3475 | else { |
| 3476 | cifs_dbg(VFS, "Encryption is not supported on share\n"); |
| 3477 | rc = -EOPNOTSUPP; |
| 3478 | goto out_fail; |
| 3479 | } |
| 3480 | } |
| 3481 | |
Steve French | 8505c8b | 2018-06-18 14:01:59 -0500 | [diff] [blame] | 3482 | if (volume_info->linux_ext) { |
| 3483 | if (ses->server->posix_ext_supported) { |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 3484 | tcon->posix_extensions = true; |
Steve French | 2fbb564 | 2018-06-12 12:11:31 -0500 | [diff] [blame] | 3485 | printk_once(KERN_WARNING |
| 3486 | "SMB3.11 POSIX Extensions are experimental\n"); |
Steve French | 8505c8b | 2018-06-18 14:01:59 -0500 | [diff] [blame] | 3487 | } else { |
| 3488 | cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions.\n"); |
| 3489 | rc = -EOPNOTSUPP; |
| 3490 | goto out_fail; |
Steve French | 2fbb564 | 2018-06-12 12:11:31 -0500 | [diff] [blame] | 3491 | } |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 3492 | } |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 3493 | |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3494 | /* |
| 3495 | * BB Do we need to wrap session_mutex around this TCon call and Unix |
| 3496 | * SetFS as we do on SessSetup and reconnect? |
| 3497 | */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3498 | xid = get_xid(); |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3499 | rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon, |
| 3500 | volume_info->local_nls); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3501 | free_xid(xid); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3502 | cifs_dbg(FYI, "Tcon rc = %d\n", rc); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3503 | if (rc) |
| 3504 | goto out_fail; |
| 3505 | |
Steve French | b618f00 | 2015-11-03 09:15:03 -0600 | [diff] [blame] | 3506 | tcon->use_persistent = false; |
| 3507 | /* check if SMB2 or later, CIFS does not support persistent handles */ |
| 3508 | if (volume_info->persistent) { |
| 3509 | if (ses->server->vals->protocol_id == 0) { |
| 3510 | cifs_dbg(VFS, |
| 3511 | "SMB3 or later required for persistent handles\n"); |
| 3512 | rc = -EOPNOTSUPP; |
| 3513 | goto out_fail; |
| 3514 | } else if (ses->server->capabilities & |
| 3515 | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES) |
| 3516 | tcon->use_persistent = true; |
| 3517 | else /* persistent handles requested but not supported */ { |
| 3518 | cifs_dbg(VFS, |
| 3519 | "Persistent handles not supported on share\n"); |
| 3520 | rc = -EOPNOTSUPP; |
| 3521 | goto out_fail; |
| 3522 | } |
| 3523 | } else if ((tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY) |
| 3524 | && (ses->server->capabilities & SMB2_GLOBAL_CAP_PERSISTENT_HANDLES) |
| 3525 | && (volume_info->nopersistent == false)) { |
| 3526 | cifs_dbg(FYI, "enabling persistent handles\n"); |
| 3527 | tcon->use_persistent = true; |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 3528 | } else if (volume_info->resilient) { |
| 3529 | if (ses->server->vals->protocol_id == 0) { |
| 3530 | cifs_dbg(VFS, |
| 3531 | "SMB2.1 or later required for resilient handles\n"); |
| 3532 | rc = -EOPNOTSUPP; |
| 3533 | goto out_fail; |
| 3534 | } |
| 3535 | tcon->use_resilient = true; |
Steve French | b618f00 | 2015-11-03 09:15:03 -0600 | [diff] [blame] | 3536 | } |
| 3537 | |
Steve French | cae53f7 | 2019-09-03 17:49:46 -0500 | [diff] [blame] | 3538 | /* If the user really knows what they are doing they can override */ |
| 3539 | if (tcon->share_flags & SMB2_SHAREFLAG_NO_CACHING) { |
| 3540 | if (volume_info->cache_ro) |
| 3541 | cifs_dbg(VFS, "cache=ro requested on mount but NO_CACHING flag set on share\n"); |
| 3542 | else if (volume_info->cache_rw) |
| 3543 | cifs_dbg(VFS, "cache=singleclient requested on mount but NO_CACHING flag set on share\n"); |
| 3544 | } |
| 3545 | |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 3546 | /* |
| 3547 | * We can have only one retry value for a connection to a share so for |
| 3548 | * resources mounted more than once to the same server share the last |
| 3549 | * value passed in for the retry flag is used. |
| 3550 | */ |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3551 | tcon->retry = volume_info->retry; |
| 3552 | tcon->nocase = volume_info->nocase; |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 3553 | tcon->nohandlecache = volume_info->nohandlecache; |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3554 | tcon->local_lease = volume_info->local_lease; |
Steve French | 3e7a02d | 2019-09-11 21:46:20 -0500 | [diff] [blame] | 3555 | tcon->no_lease = volume_info->no_lease; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 3556 | INIT_LIST_HEAD(&tcon->pending_opens); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3557 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3558 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3559 | list_add(&tcon->tcon_list, &ses->tcon_list); |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 3560 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3561 | |
Suresh Jayaraman | d03382c | 2010-07-05 18:12:27 +0530 | [diff] [blame] | 3562 | cifs_fscache_get_super_cookie(tcon); |
| 3563 | |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3564 | return tcon; |
| 3565 | |
| 3566 | out_fail: |
| 3567 | tconInfoFree(tcon); |
| 3568 | return ERR_PTR(rc); |
| 3569 | } |
| 3570 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 3571 | void |
| 3572 | cifs_put_tlink(struct tcon_link *tlink) |
| 3573 | { |
| 3574 | if (!tlink || IS_ERR(tlink)) |
| 3575 | return; |
| 3576 | |
| 3577 | if (!atomic_dec_and_test(&tlink->tl_count) || |
| 3578 | test_bit(TCON_LINK_IN_TREE, &tlink->tl_flags)) { |
| 3579 | tlink->tl_time = jiffies; |
| 3580 | return; |
| 3581 | } |
| 3582 | |
| 3583 | if (!IS_ERR(tlink_tcon(tlink))) |
| 3584 | cifs_put_tcon(tlink_tcon(tlink)); |
| 3585 | kfree(tlink); |
| 3586 | return; |
| 3587 | } |
Jeff Layton | d00c28d | 2010-04-24 07:57:44 -0400 | [diff] [blame] | 3588 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3589 | static int |
| 3590 | compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data) |
| 3591 | { |
| 3592 | struct cifs_sb_info *old = CIFS_SB(sb); |
| 3593 | struct cifs_sb_info *new = mnt_data->cifs_sb; |
Paulo Alcantara (SUSE) | 29fbeb7 | 2019-06-18 16:16:02 -0300 | [diff] [blame] | 3594 | unsigned int oldflags = old->mnt_cifs_flags & CIFS_MOUNT_MASK; |
| 3595 | unsigned int newflags = new->mnt_cifs_flags & CIFS_MOUNT_MASK; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3596 | |
| 3597 | if ((sb->s_flags & CIFS_MS_MASK) != (mnt_data->flags & CIFS_MS_MASK)) |
| 3598 | return 0; |
| 3599 | |
Paulo Alcantara (SUSE) | 29fbeb7 | 2019-06-18 16:16:02 -0300 | [diff] [blame] | 3600 | if (old->mnt_cifs_serverino_autodisabled) |
| 3601 | newflags &= ~CIFS_MOUNT_SERVER_INUM; |
| 3602 | |
| 3603 | if (oldflags != newflags) |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3604 | return 0; |
| 3605 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3606 | /* |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 3607 | * We want to share sb only if we don't specify an r/wsize or |
| 3608 | * specified r/wsize is greater than or equal to existing one. |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3609 | */ |
| 3610 | if (new->wsize && new->wsize < old->wsize) |
| 3611 | return 0; |
| 3612 | |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 3613 | if (new->rsize && new->rsize < old->rsize) |
| 3614 | return 0; |
| 3615 | |
Eric W. Biederman | 1f68233 | 2013-02-06 01:20:20 -0800 | [diff] [blame] | 3616 | 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] | 3617 | return 0; |
| 3618 | |
| 3619 | if (old->mnt_file_mode != new->mnt_file_mode || |
| 3620 | old->mnt_dir_mode != new->mnt_dir_mode) |
| 3621 | return 0; |
| 3622 | |
| 3623 | if (strcmp(old->local_nls->charset, new->local_nls->charset)) |
| 3624 | return 0; |
| 3625 | |
| 3626 | if (old->actimeo != new->actimeo) |
| 3627 | return 0; |
| 3628 | |
| 3629 | return 1; |
| 3630 | } |
| 3631 | |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3632 | static int |
| 3633 | match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data) |
| 3634 | { |
| 3635 | struct cifs_sb_info *old = CIFS_SB(sb); |
| 3636 | struct cifs_sb_info *new = mnt_data->cifs_sb; |
Sachin Prabhu | cd8c429 | 2017-04-26 14:05:46 +0100 | [diff] [blame] | 3637 | bool old_set = old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH; |
| 3638 | bool new_set = new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH; |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3639 | |
Sachin Prabhu | cd8c429 | 2017-04-26 14:05:46 +0100 | [diff] [blame] | 3640 | if (old_set && new_set && !strcmp(new->prepath, old->prepath)) |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3641 | return 1; |
Sachin Prabhu | cd8c429 | 2017-04-26 14:05:46 +0100 | [diff] [blame] | 3642 | else if (!old_set && !new_set) |
| 3643 | return 1; |
| 3644 | |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3645 | return 0; |
| 3646 | } |
| 3647 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3648 | int |
| 3649 | cifs_match_super(struct super_block *sb, void *data) |
| 3650 | { |
| 3651 | struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data; |
| 3652 | struct smb_vol *volume_info; |
| 3653 | struct cifs_sb_info *cifs_sb; |
| 3654 | struct TCP_Server_Info *tcp_srv; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 3655 | struct cifs_ses *ses; |
| 3656 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3657 | struct tcon_link *tlink; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3658 | int rc = 0; |
| 3659 | |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3660 | spin_lock(&cifs_tcp_ses_lock); |
| 3661 | cifs_sb = CIFS_SB(sb); |
| 3662 | tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb)); |
| 3663 | if (IS_ERR(tlink)) { |
| 3664 | spin_unlock(&cifs_tcp_ses_lock); |
| 3665 | return rc; |
| 3666 | } |
| 3667 | tcon = tlink_tcon(tlink); |
| 3668 | ses = tcon->ses; |
| 3669 | tcp_srv = ses->server; |
| 3670 | |
| 3671 | volume_info = mnt_data->vol; |
| 3672 | |
Jeff Layton | 9fa114f | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 3673 | if (!match_server(tcp_srv, volume_info) || |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3674 | !match_session(ses, volume_info) || |
Pavel Shilovsky | ae6f8dd | 2016-11-17 13:59:23 -0800 | [diff] [blame] | 3675 | !match_tcon(tcon, volume_info) || |
Sachin Prabhu | c1d8b24 | 2016-07-29 22:38:20 +0100 | [diff] [blame] | 3676 | !match_prepath(sb, mnt_data)) { |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3677 | rc = 0; |
| 3678 | goto out; |
| 3679 | } |
| 3680 | |
| 3681 | rc = compare_mount_options(sb, mnt_data); |
| 3682 | out: |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3683 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | f484b5d0 | 2011-07-11 10:16:34 -0400 | [diff] [blame] | 3684 | cifs_put_tlink(tlink); |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 3685 | return rc; |
| 3686 | } |
| 3687 | |
Jeff Layton | 09e50d5 | 2008-07-23 10:11:19 -0400 | [diff] [blame] | 3688 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 3689 | static struct lock_class_key cifs_key[2]; |
| 3690 | static struct lock_class_key cifs_slock_key[2]; |
| 3691 | |
| 3692 | static inline void |
| 3693 | cifs_reclassify_socket4(struct socket *sock) |
| 3694 | { |
| 3695 | struct sock *sk = sock->sk; |
Hannes Frederic Sowa | fafc4e1 | 2016-04-08 15:11:27 +0200 | [diff] [blame] | 3696 | BUG_ON(!sock_allow_reclassification(sk)); |
Jeff Layton | 09e50d5 | 2008-07-23 10:11:19 -0400 | [diff] [blame] | 3697 | sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS", |
| 3698 | &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]); |
| 3699 | } |
| 3700 | |
| 3701 | static inline void |
| 3702 | cifs_reclassify_socket6(struct socket *sock) |
| 3703 | { |
| 3704 | struct sock *sk = sock->sk; |
Hannes Frederic Sowa | fafc4e1 | 2016-04-08 15:11:27 +0200 | [diff] [blame] | 3705 | BUG_ON(!sock_allow_reclassification(sk)); |
Jeff Layton | 09e50d5 | 2008-07-23 10:11:19 -0400 | [diff] [blame] | 3706 | sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS", |
| 3707 | &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]); |
| 3708 | } |
| 3709 | #else |
| 3710 | static inline void |
| 3711 | cifs_reclassify_socket4(struct socket *sock) |
| 3712 | { |
| 3713 | } |
| 3714 | |
| 3715 | static inline void |
| 3716 | cifs_reclassify_socket6(struct socket *sock) |
| 3717 | { |
| 3718 | } |
| 3719 | #endif |
| 3720 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | /* See RFC1001 section 14 on representation of Netbios names */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3722 | static void rfc1002mangle(char *target, char *source, unsigned int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3724 | unsigned int i, j; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3725 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3726 | for (i = 0, j = 0; i < (length); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3727 | /* mask a nibble at a time and encode */ |
| 3728 | target[j] = 'A' + (0x0F & (source[i] >> 4)); |
| 3729 | target[j+1] = 'A' + (0x0F & source[i]); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3730 | j += 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3731 | } |
| 3732 | |
| 3733 | } |
| 3734 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 3735 | static int |
| 3736 | bind_socket(struct TCP_Server_Info *server) |
| 3737 | { |
| 3738 | int rc = 0; |
| 3739 | if (server->srcaddr.ss_family != AF_UNSPEC) { |
| 3740 | /* Bind to the specified local IP address */ |
| 3741 | struct socket *socket = server->ssocket; |
| 3742 | rc = socket->ops->bind(socket, |
| 3743 | (struct sockaddr *) &server->srcaddr, |
| 3744 | sizeof(server->srcaddr)); |
| 3745 | if (rc < 0) { |
| 3746 | struct sockaddr_in *saddr4; |
| 3747 | struct sockaddr_in6 *saddr6; |
| 3748 | saddr4 = (struct sockaddr_in *)&server->srcaddr; |
| 3749 | saddr6 = (struct sockaddr_in6 *)&server->srcaddr; |
| 3750 | if (saddr6->sin6_family == AF_INET6) |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 3751 | cifs_server_dbg(VFS, "Failed to bind to: %pI6c, error: %d\n", |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3752 | &saddr6->sin6_addr, rc); |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 3753 | else |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 3754 | cifs_server_dbg(VFS, "Failed to bind to: %pI4, error: %d\n", |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3755 | &saddr4->sin_addr.s_addr, rc); |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 3756 | } |
| 3757 | } |
| 3758 | return rc; |
| 3759 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3760 | |
| 3761 | static int |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3762 | ip_rfc1001_connect(struct TCP_Server_Info *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3763 | { |
| 3764 | int rc = 0; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3765 | /* |
| 3766 | * some servers require RFC1001 sessinit before sending |
| 3767 | * negprot - BB check reconnection in case where second |
| 3768 | * sessinit is sent but no second negprot |
| 3769 | */ |
| 3770 | struct rfc1002_session_packet *ses_init_buf; |
| 3771 | struct smb_hdr *smb_buf; |
| 3772 | ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet), |
| 3773 | GFP_KERNEL); |
| 3774 | if (ses_init_buf) { |
| 3775 | ses_init_buf->trailer.session_req.called_len = 32; |
| 3776 | |
Colin Ian King | 997152f | 2016-01-25 16:25:54 +0000 | [diff] [blame] | 3777 | if (server->server_RFC1001_name[0] != 0) |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3778 | rfc1002mangle(ses_init_buf->trailer. |
| 3779 | session_req.called_name, |
| 3780 | server->server_RFC1001_name, |
| 3781 | RFC1001_NAME_LEN_WITH_NULL); |
| 3782 | else |
| 3783 | rfc1002mangle(ses_init_buf->trailer. |
| 3784 | session_req.called_name, |
| 3785 | DEFAULT_CIFS_CALLED_NAME, |
| 3786 | RFC1001_NAME_LEN_WITH_NULL); |
| 3787 | |
| 3788 | ses_init_buf->trailer.session_req.calling_len = 32; |
| 3789 | |
| 3790 | /* |
| 3791 | * calling name ends in null (byte 16) from old smb |
| 3792 | * convention. |
| 3793 | */ |
Steve French | c85c35f | 2015-03-27 01:15:02 -0500 | [diff] [blame] | 3794 | if (server->workstation_RFC1001_name[0] != 0) |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3795 | rfc1002mangle(ses_init_buf->trailer. |
| 3796 | session_req.calling_name, |
| 3797 | server->workstation_RFC1001_name, |
| 3798 | RFC1001_NAME_LEN_WITH_NULL); |
| 3799 | else |
| 3800 | rfc1002mangle(ses_init_buf->trailer. |
| 3801 | session_req.calling_name, |
| 3802 | "LINUX_CIFS_CLNT", |
| 3803 | RFC1001_NAME_LEN_WITH_NULL); |
| 3804 | |
| 3805 | ses_init_buf->trailer.session_req.scope1 = 0; |
| 3806 | ses_init_buf->trailer.session_req.scope2 = 0; |
| 3807 | smb_buf = (struct smb_hdr *)ses_init_buf; |
| 3808 | |
| 3809 | /* sizeof RFC1002_SESSION_REQUEST with no scope */ |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 3810 | smb_buf->smb_buf_length = cpu_to_be32(0x81000044); |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3811 | rc = smb_send(server, smb_buf, 0x44); |
| 3812 | kfree(ses_init_buf); |
| 3813 | /* |
| 3814 | * RFC1001 layer in at least one server |
| 3815 | * requires very short break before negprot |
| 3816 | * presumably because not expecting negprot |
| 3817 | * to follow so fast. This is a simple |
| 3818 | * solution that works without |
| 3819 | * complicating the code and causes no |
| 3820 | * significant slowing down on mount |
| 3821 | * for everyone else |
| 3822 | */ |
| 3823 | usleep_range(1000, 2000); |
| 3824 | } |
| 3825 | /* |
| 3826 | * else the negprot may still work without this |
| 3827 | * even though malloc failed |
| 3828 | */ |
| 3829 | |
| 3830 | return rc; |
| 3831 | } |
| 3832 | |
| 3833 | static int |
| 3834 | generic_ip_connect(struct TCP_Server_Info *server) |
| 3835 | { |
| 3836 | int rc = 0; |
Steve French | 6da9791 | 2011-03-13 18:55:55 +0000 | [diff] [blame] | 3837 | __be16 sport; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3838 | int slen, sfamily; |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 3839 | struct socket *socket = server->ssocket; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3840 | struct sockaddr *saddr; |
| 3841 | |
| 3842 | saddr = (struct sockaddr *) &server->dstaddr; |
| 3843 | |
| 3844 | if (server->dstaddr.ss_family == AF_INET6) { |
| 3845 | sport = ((struct sockaddr_in6 *) saddr)->sin6_port; |
| 3846 | slen = sizeof(struct sockaddr_in6); |
| 3847 | sfamily = AF_INET6; |
| 3848 | } else { |
| 3849 | sport = ((struct sockaddr_in *) saddr)->sin_port; |
| 3850 | slen = sizeof(struct sockaddr_in); |
| 3851 | sfamily = AF_INET; |
| 3852 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3853 | |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 3854 | if (socket == NULL) { |
Rob Landley | f1d0c99 | 2011-01-22 15:44:05 -0600 | [diff] [blame] | 3855 | rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM, |
| 3856 | IPPROTO_TCP, &socket, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3857 | if (rc < 0) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 3858 | cifs_server_dbg(VFS, "Error %d creating socket\n", rc); |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3859 | server->ssocket = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3860 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3861 | } |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 3862 | |
| 3863 | /* BB other socket options to set KEEPALIVE, NODELAY? */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3864 | cifs_dbg(FYI, "Socket created\n"); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 3865 | server->ssocket = socket; |
| 3866 | socket->sk->sk_allocation = GFP_NOFS; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3867 | if (sfamily == AF_INET6) |
| 3868 | cifs_reclassify_socket6(socket); |
| 3869 | else |
| 3870 | cifs_reclassify_socket4(socket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3871 | } |
| 3872 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 3873 | rc = bind_socket(server); |
| 3874 | if (rc < 0) |
| 3875 | return rc; |
| 3876 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame] | 3877 | /* |
| 3878 | * Eventually check for other socket options to change from |
| 3879 | * the default. sock_setsockopt not used because it expects |
| 3880 | * user space buffer |
| 3881 | */ |
| 3882 | socket->sk->sk_rcvtimeo = 7 * HZ; |
Steve French | da505c3 | 2009-01-19 03:49:35 +0000 | [diff] [blame] | 3883 | socket->sk->sk_sndtimeo = 5 * HZ; |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 3884 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3885 | /* make the bufsizes depend on wsize/rsize and max requests */ |
| 3886 | if (server->noautotune) { |
| 3887 | if (socket->sk->sk_sndbuf < (200 * 1024)) |
| 3888 | socket->sk->sk_sndbuf = 200 * 1024; |
| 3889 | if (socket->sk->sk_rcvbuf < (140 * 1024)) |
| 3890 | socket->sk->sk_rcvbuf = 140 * 1024; |
| 3891 | } |
| 3892 | |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 3893 | if (server->tcp_nodelay) { |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3894 | int val = 1; |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 3895 | rc = kernel_setsockopt(socket, SOL_TCP, TCP_NODELAY, |
| 3896 | (char *)&val, sizeof(val)); |
| 3897 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3898 | cifs_dbg(FYI, "set TCP_NODELAY socket option error %d\n", |
| 3899 | rc); |
Steve French | 6a5fa236 | 2010-01-01 01:28:43 +0000 | [diff] [blame] | 3900 | } |
| 3901 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3902 | cifs_dbg(FYI, "sndbuf %d rcvbuf %d rcvtimeo 0x%lx\n", |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3903 | socket->sk->sk_sndbuf, |
| 3904 | socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo); |
| 3905 | |
Paulo Alcantara (SUSE) | 8eecd1c | 2019-07-16 19:04:50 -0300 | [diff] [blame] | 3906 | rc = socket->ops->connect(socket, saddr, slen, |
| 3907 | server->noblockcnt ? O_NONBLOCK : 0); |
Paulo Alcantara (SUSE) | d532cc7 | 2019-10-10 12:31:58 -0300 | [diff] [blame] | 3908 | /* |
| 3909 | * When mounting SMB root file systems, we do not want to block in |
| 3910 | * connect. Otherwise bail out and then let cifs_reconnect() perform |
| 3911 | * reconnect failover - if possible. |
| 3912 | */ |
| 3913 | if (server->noblockcnt && rc == -EINPROGRESS) |
Paulo Alcantara (SUSE) | 8eecd1c | 2019-07-16 19:04:50 -0300 | [diff] [blame] | 3914 | rc = 0; |
Jeff Layton | ee1b3ea | 2011-06-21 07:18:26 -0400 | [diff] [blame] | 3915 | if (rc < 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3916 | cifs_dbg(FYI, "Error %d connecting to server\n", rc); |
Jeff Layton | ee1b3ea | 2011-06-21 07:18:26 -0400 | [diff] [blame] | 3917 | sock_release(socket); |
| 3918 | server->ssocket = NULL; |
| 3919 | return rc; |
| 3920 | } |
| 3921 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3922 | if (sport == htons(RFC1001_PORT)) |
| 3923 | rc = ip_rfc1001_connect(server); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3924 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3925 | return rc; |
| 3926 | } |
| 3927 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3928 | static int |
| 3929 | ip_connect(struct TCP_Server_Info *server) |
| 3930 | { |
Steve French | 6da9791 | 2011-03-13 18:55:55 +0000 | [diff] [blame] | 3931 | __be16 *sport; |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 3932 | struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&server->dstaddr; |
| 3933 | struct sockaddr_in *addr = (struct sockaddr_in *)&server->dstaddr; |
| 3934 | |
| 3935 | if (server->dstaddr.ss_family == AF_INET6) |
| 3936 | sport = &addr6->sin6_port; |
| 3937 | else |
| 3938 | sport = &addr->sin_port; |
| 3939 | |
| 3940 | if (*sport == 0) { |
| 3941 | int rc; |
| 3942 | |
| 3943 | /* try with 445 port at first */ |
| 3944 | *sport = htons(CIFS_PORT); |
| 3945 | |
| 3946 | rc = generic_ip_connect(server); |
| 3947 | if (rc >= 0) |
| 3948 | return rc; |
| 3949 | |
| 3950 | /* if it failed, try with 139 port */ |
| 3951 | *sport = htons(RFC1001_PORT); |
| 3952 | } |
| 3953 | |
| 3954 | return generic_ip_connect(server); |
| 3955 | } |
| 3956 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 3957 | void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon, |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 3958 | struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3959 | { |
| 3960 | /* if we are reconnecting then should we check to see if |
| 3961 | * any requested capabilities changed locally e.g. via |
| 3962 | * remount but we can not do much about it here |
| 3963 | * if they have (even if we could detect it by the following) |
| 3964 | * Perhaps we could add a backpointer to array of sb from tcon |
| 3965 | * or if we change to make all sb to same share the same |
| 3966 | * sb as NFS - then we only have one backpointer to sb. |
| 3967 | * What if we wanted to mount the server share twice once with |
| 3968 | * and once without posixacls or posix paths? */ |
| 3969 | __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3970 | |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 3971 | if (vol_info && vol_info->no_linux_ext) { |
| 3972 | tcon->fsUnixInfo.Capability = 0; |
| 3973 | tcon->unix_ext = 0; /* Unix Extensions disabled */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3974 | cifs_dbg(FYI, "Linux protocol extensions disabled\n"); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 3975 | return; |
| 3976 | } else if (vol_info) |
| 3977 | tcon->unix_ext = 1; /* Unix Extensions supported */ |
| 3978 | |
| 3979 | if (tcon->unix_ext == 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3980 | cifs_dbg(FYI, "Unix extensions disabled so not set on reconnect\n"); |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 3981 | return; |
| 3982 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3983 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3984 | if (!CIFSSMBQFSUnixInfo(xid, tcon)) { |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3985 | __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3986 | cifs_dbg(FYI, "unix caps which server supports %lld\n", cap); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3987 | /* check for reconnect case in which we do not |
| 3988 | want to change the mount behavior if we can avoid it */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3989 | if (vol_info == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3990 | /* turn off POSIX ACL and PATHNAMES if not set |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3991 | originally at mount time */ |
| 3992 | if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0) |
| 3993 | cap &= ~CIFS_UNIX_POSIX_ACL_CAP; |
Igor Mammedov | 11b6d64 | 2008-02-15 19:06:04 +0000 | [diff] [blame] | 3994 | if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) { |
| 3995 | if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3996 | cifs_dbg(VFS, "POSIXPATH support change\n"); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 3997 | cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP; |
Igor Mammedov | 11b6d64 | 2008-02-15 19:06:04 +0000 | [diff] [blame] | 3998 | } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 3999 | cifs_dbg(VFS, "possible reconnect error\n"); |
| 4000 | cifs_dbg(VFS, "server disabled POSIX path support\n"); |
Igor Mammedov | 11b6d64 | 2008-02-15 19:06:04 +0000 | [diff] [blame] | 4001 | } |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4002 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4003 | |
Steve French | 6848b73 | 2011-05-26 18:38:54 +0000 | [diff] [blame] | 4004 | if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4005 | cifs_dbg(VFS, "per-share encryption not supported yet\n"); |
Steve French | 6848b73 | 2011-05-26 18:38:54 +0000 | [diff] [blame] | 4006 | |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4007 | cap &= CIFS_UNIX_CAP_MASK; |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4008 | if (vol_info && vol_info->no_psx_acl) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4009 | cap &= ~CIFS_UNIX_POSIX_ACL_CAP; |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4010 | else if (CIFS_UNIX_POSIX_ACL_CAP & cap) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4011 | cifs_dbg(FYI, "negotiated posix acl support\n"); |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 4012 | if (cifs_sb) |
| 4013 | cifs_sb->mnt_cifs_flags |= |
| 4014 | CIFS_MOUNT_POSIXACL; |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4015 | } |
| 4016 | |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4017 | if (vol_info && vol_info->posix_paths == 0) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4018 | cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP; |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4019 | else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4020 | cifs_dbg(FYI, "negotiate posix pathnames\n"); |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 4021 | if (cifs_sb) |
| 4022 | cifs_sb->mnt_cifs_flags |= |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4023 | CIFS_MOUNT_POSIX_PATHS; |
| 4024 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4025 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4026 | cifs_dbg(FYI, "Negotiate caps 0x%x\n", (int)cap); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4027 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4028 | if (cap & CIFS_UNIX_FCNTL_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4029 | cifs_dbg(FYI, "FCNTL cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4030 | if (cap & CIFS_UNIX_EXTATTR_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4031 | cifs_dbg(FYI, "EXTATTR cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4032 | if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4033 | cifs_dbg(FYI, "POSIX path cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4034 | if (cap & CIFS_UNIX_XATTR_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4035 | cifs_dbg(FYI, "XATTR cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4036 | if (cap & CIFS_UNIX_POSIX_ACL_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4037 | cifs_dbg(FYI, "POSIX ACL cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4038 | if (cap & CIFS_UNIX_LARGE_READ_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4039 | cifs_dbg(FYI, "very large read cap\n"); |
Steve French | 75865f8c | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 4040 | if (cap & CIFS_UNIX_LARGE_WRITE_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4041 | cifs_dbg(FYI, "very large write cap\n"); |
Steve French | 6848b73 | 2011-05-26 18:38:54 +0000 | [diff] [blame] | 4042 | if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4043 | cifs_dbg(FYI, "transport encryption cap\n"); |
Steve French | 6848b73 | 2011-05-26 18:38:54 +0000 | [diff] [blame] | 4044 | if (cap & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4045 | cifs_dbg(FYI, "mandatory transport encryption cap\n"); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4046 | #endif /* CIFS_DEBUG2 */ |
| 4047 | if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) { |
Steve French | 442aa31 | 2007-09-24 20:25:46 +0000 | [diff] [blame] | 4048 | if (vol_info == NULL) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4049 | cifs_dbg(FYI, "resetting capabilities failed\n"); |
Steve French | 442aa31 | 2007-09-24 20:25:46 +0000 | [diff] [blame] | 4050 | } else |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4051 | 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] | 4052 | |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 4053 | } |
| 4054 | } |
| 4055 | } |
| 4056 | |
Sachin Prabhu | 4214ebf | 2016-07-29 22:38:19 +0100 | [diff] [blame] | 4057 | int cifs_setup_cifs_sb(struct smb_vol *pvolume_info, |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4058 | struct cifs_sb_info *cifs_sb) |
Jeff Layton | b1c8d2b | 2008-10-22 13:57:07 -0400 | [diff] [blame] | 4059 | { |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 4060 | INIT_DELAYED_WORK(&cifs_sb->prune_tlinks, cifs_prune_tlinks); |
| 4061 | |
Al Viro | 2ced6f6 | 2011-06-17 09:20:04 -0400 | [diff] [blame] | 4062 | spin_lock_init(&cifs_sb->tlink_tree_lock); |
| 4063 | cifs_sb->tlink_tree = RB_ROOT; |
| 4064 | |
Steve French | e8506d2 | 2019-02-28 21:32:15 -0600 | [diff] [blame] | 4065 | cifs_sb->bsize = pvolume_info->bsize; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 4066 | /* |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 4067 | * Temporarily set r/wsize for matching superblock. If we end up using |
| 4068 | * new sb then client will later negotiate it downward if needed. |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 4069 | */ |
Jeff Layton | 5eba8ab | 2011-10-19 15:30:26 -0400 | [diff] [blame] | 4070 | cifs_sb->rsize = pvolume_info->rsize; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 4071 | cifs_sb->wsize = pvolume_info->wsize; |
| 4072 | |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4073 | cifs_sb->mnt_uid = pvolume_info->linux_uid; |
| 4074 | cifs_sb->mnt_gid = pvolume_info->linux_gid; |
| 4075 | cifs_sb->mnt_file_mode = pvolume_info->file_mode; |
| 4076 | cifs_sb->mnt_dir_mode = pvolume_info->dir_mode; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4077 | cifs_dbg(FYI, "file mode: 0x%hx dir mode: 0x%hx\n", |
| 4078 | cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode); |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4079 | |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 4080 | cifs_sb->actimeo = pvolume_info->actimeo; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4081 | cifs_sb->local_nls = pvolume_info->local_nls; |
Suresh Jayaraman | 6d20e84 | 2010-12-01 14:42:28 +0530 | [diff] [blame] | 4082 | |
Aurelien Aptel | 8393072 | 2018-09-20 18:10:25 -0700 | [diff] [blame] | 4083 | if (pvolume_info->nodfs) |
| 4084 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_DFS; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4085 | if (pvolume_info->noperm) |
| 4086 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM; |
| 4087 | if (pvolume_info->setuids) |
| 4088 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID; |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 4089 | if (pvolume_info->setuidfromacl) |
| 4090 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4091 | if (pvolume_info->server_ino) |
| 4092 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM; |
| 4093 | if (pvolume_info->remap) |
Steve French | 2baa268 | 2014-09-27 02:19:01 -0500 | [diff] [blame] | 4094 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR; |
| 4095 | if (pvolume_info->sfu_remap) |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4096 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR; |
| 4097 | if (pvolume_info->no_xattr) |
| 4098 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR; |
| 4099 | if (pvolume_info->sfu_emul) |
| 4100 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL; |
| 4101 | if (pvolume_info->nobrl) |
| 4102 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL; |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 4103 | if (pvolume_info->nohandlecache) |
| 4104 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_HANDLE_CACHE; |
Steve French | be65244 | 2009-02-23 15:21:59 +0000 | [diff] [blame] | 4105 | if (pvolume_info->nostrictsync) |
Steve French | 4717bed | 2009-02-24 14:44:19 +0000 | [diff] [blame] | 4106 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC; |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 4107 | if (pvolume_info->mand_lock) |
| 4108 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL; |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 4109 | if (pvolume_info->rwpidforward) |
| 4110 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD; |
Steve French | 412094a | 2019-06-24 02:01:42 -0500 | [diff] [blame] | 4111 | if (pvolume_info->mode_ace) |
| 4112 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MODE_FROM_SID; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4113 | if (pvolume_info->cifs_acl) |
| 4114 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL; |
Sachin Prabhu | 3c7c87f | 2012-04-24 15:28:14 +0100 | [diff] [blame] | 4115 | if (pvolume_info->backupuid_specified) { |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 4116 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID; |
Sachin Prabhu | 3c7c87f | 2012-04-24 15:28:14 +0100 | [diff] [blame] | 4117 | cifs_sb->mnt_backupuid = pvolume_info->backupuid; |
| 4118 | } |
| 4119 | if (pvolume_info->backupgid_specified) { |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 4120 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID; |
Sachin Prabhu | 3c7c87f | 2012-04-24 15:28:14 +0100 | [diff] [blame] | 4121 | cifs_sb->mnt_backupgid = pvolume_info->backupgid; |
| 4122 | } |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4123 | if (pvolume_info->override_uid) |
| 4124 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID; |
| 4125 | if (pvolume_info->override_gid) |
| 4126 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID; |
| 4127 | if (pvolume_info->dynperm) |
| 4128 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM; |
Suresh Jayaraman | fa1df75 | 2010-07-05 18:13:36 +0530 | [diff] [blame] | 4129 | if (pvolume_info->fsc) |
| 4130 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE; |
Jeff Layton | 0eb8a13 | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 4131 | if (pvolume_info->multiuser) |
| 4132 | cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER | |
| 4133 | CIFS_MOUNT_NO_PERM); |
Pavel Shilovsky | d39454f | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 4134 | if (pvolume_info->strict_io) |
| 4135 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4136 | if (pvolume_info->direct_io) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4137 | cifs_dbg(FYI, "mounting share using direct i/o\n"); |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4138 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO; |
| 4139 | } |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 4140 | if (pvolume_info->cache_ro) { |
| 4141 | cifs_dbg(VFS, "mounting share with read only caching. Ensure that the share will not be modified while in use.\n"); |
| 4142 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RO_CACHE; |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 4143 | } else if (pvolume_info->cache_rw) { |
| 4144 | cifs_dbg(VFS, "mounting share in single client RW caching mode. Ensure that no other systems will be accessing the share.\n"); |
| 4145 | cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_RO_CACHE | |
| 4146 | CIFS_MOUNT_RW_CACHE); |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 4147 | } |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 4148 | if (pvolume_info->mfsymlinks) { |
| 4149 | if (pvolume_info->sfu_emul) { |
Steve French | db8b631 | 2014-09-22 05:13:55 -0500 | [diff] [blame] | 4150 | /* |
| 4151 | * Our SFU ("Services for Unix" emulation does not allow |
| 4152 | * creating symlinks but does allow reading existing SFU |
| 4153 | * symlinks (it does allow both creating and reading SFU |
| 4154 | * style mknod and FIFOs though). When "mfsymlinks" and |
| 4155 | * "sfu" are both enabled at the same time, it allows |
| 4156 | * reading both types of symlinks, but will only create |
| 4157 | * them with mfsymlinks format. This allows better |
| 4158 | * Apple compatibility (probably better for Samba too) |
| 4159 | * while still recognizing old Windows style symlinks. |
| 4160 | */ |
| 4161 | cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n"); |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 4162 | } |
Steve French | db8b631 | 2014-09-22 05:13:55 -0500 | [diff] [blame] | 4163 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS; |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 4164 | } |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 4165 | |
| 4166 | if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm)) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4167 | 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] | 4168 | |
| 4169 | if (pvolume_info->prepath) { |
| 4170 | cifs_sb->prepath = kstrdup(pvolume_info->prepath, GFP_KERNEL); |
| 4171 | if (cifs_sb->prepath == NULL) |
| 4172 | return -ENOMEM; |
| 4173 | } |
| 4174 | |
| 4175 | return 0; |
Jeff Layton | b1c8d2b | 2008-10-22 13:57:07 -0400 | [diff] [blame] | 4176 | } |
| 4177 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4178 | void |
| 4179 | cifs_cleanup_volume_info_contents(struct smb_vol *volume_info) |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4180 | { |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 4181 | kfree(volume_info->username); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4182 | kzfree(volume_info->password); |
Jesper Juhl | 95c7545 | 2011-08-27 18:58:34 +0200 | [diff] [blame] | 4183 | kfree(volume_info->UNC); |
Sean Finney | b946845 | 2011-04-11 13:19:32 +0000 | [diff] [blame] | 4184 | kfree(volume_info->domainname); |
| 4185 | kfree(volume_info->iocharset); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4186 | kfree(volume_info->prepath); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4187 | } |
| 4188 | |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4189 | void |
| 4190 | cifs_cleanup_volume_info(struct smb_vol *volume_info) |
| 4191 | { |
| 4192 | if (!volume_info) |
| 4193 | return; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4194 | cifs_cleanup_volume_info_contents(volume_info); |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4195 | kfree(volume_info); |
| 4196 | } |
| 4197 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4198 | /* Release all succeed connections */ |
| 4199 | static inline void mount_put_conns(struct cifs_sb_info *cifs_sb, |
| 4200 | unsigned int xid, |
| 4201 | struct TCP_Server_Info *server, |
| 4202 | struct cifs_ses *ses, struct cifs_tcon *tcon) |
| 4203 | { |
| 4204 | int rc = 0; |
| 4205 | |
| 4206 | if (tcon) |
| 4207 | cifs_put_tcon(tcon); |
| 4208 | else if (ses) |
| 4209 | cifs_put_smb_ses(ses); |
| 4210 | else if (server) |
| 4211 | cifs_put_tcp_session(server, 0); |
| 4212 | cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_POSIX_PATHS; |
| 4213 | free_xid(xid); |
| 4214 | } |
| 4215 | |
| 4216 | /* Get connections for tcp, ses and tcon */ |
| 4217 | static int mount_get_conns(struct smb_vol *vol, struct cifs_sb_info *cifs_sb, |
| 4218 | unsigned int *xid, |
| 4219 | struct TCP_Server_Info **nserver, |
| 4220 | struct cifs_ses **nses, struct cifs_tcon **ntcon) |
| 4221 | { |
| 4222 | int rc = 0; |
| 4223 | struct TCP_Server_Info *server; |
| 4224 | struct cifs_ses *ses; |
| 4225 | struct cifs_tcon *tcon; |
| 4226 | |
| 4227 | *nserver = NULL; |
| 4228 | *nses = NULL; |
| 4229 | *ntcon = NULL; |
| 4230 | |
| 4231 | *xid = get_xid(); |
| 4232 | |
| 4233 | /* get a reference to a tcp session */ |
| 4234 | server = cifs_get_tcp_session(vol); |
| 4235 | if (IS_ERR(server)) { |
| 4236 | rc = PTR_ERR(server); |
| 4237 | return rc; |
| 4238 | } |
| 4239 | |
| 4240 | *nserver = server; |
| 4241 | |
| 4242 | if ((vol->max_credits < 20) || (vol->max_credits > 60000)) |
| 4243 | server->max_credits = SMB2_MAX_CREDITS_AVAILABLE; |
| 4244 | else |
| 4245 | server->max_credits = vol->max_credits; |
| 4246 | |
| 4247 | /* get a reference to a SMB session */ |
| 4248 | ses = cifs_get_smb_ses(server, vol); |
| 4249 | if (IS_ERR(ses)) { |
| 4250 | rc = PTR_ERR(ses); |
| 4251 | return rc; |
| 4252 | } |
| 4253 | |
| 4254 | *nses = ses; |
| 4255 | |
| 4256 | if ((vol->persistent == true) && (!(ses->server->capabilities & |
| 4257 | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 4258 | cifs_server_dbg(VFS, "persistent handles not supported by server\n"); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4259 | return -EOPNOTSUPP; |
| 4260 | } |
| 4261 | |
| 4262 | /* search for existing tcon to this server share */ |
| 4263 | tcon = cifs_get_tcon(ses, vol); |
| 4264 | if (IS_ERR(tcon)) { |
| 4265 | rc = PTR_ERR(tcon); |
| 4266 | return rc; |
| 4267 | } |
| 4268 | |
| 4269 | *ntcon = tcon; |
| 4270 | |
| 4271 | /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */ |
| 4272 | if (tcon->posix_extensions) |
| 4273 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS; |
| 4274 | |
| 4275 | /* tell server which Unix caps we support */ |
| 4276 | if (cap_unix(tcon->ses)) { |
| 4277 | /* |
| 4278 | * reset of caps checks mount to see if unix extensions disabled |
| 4279 | * for just this mount. |
| 4280 | */ |
| 4281 | reset_cifs_unix_caps(*xid, tcon, cifs_sb, vol); |
| 4282 | if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) && |
| 4283 | (le64_to_cpu(tcon->fsUnixInfo.Capability) & |
| 4284 | CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) |
| 4285 | return -EACCES; |
| 4286 | } else |
| 4287 | tcon->unix_ext = 0; /* server does not support them */ |
| 4288 | |
| 4289 | /* do not care if a following call succeed - informational */ |
Steve French | 1981eba | 2019-08-29 22:33:38 -0500 | [diff] [blame] | 4290 | if (!tcon->pipe && server->ops->qfs_tcon) { |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4291 | server->ops->qfs_tcon(*xid, tcon); |
Steve French | 1981eba | 2019-08-29 22:33:38 -0500 | [diff] [blame] | 4292 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) { |
| 4293 | if (tcon->fsDevInfo.DeviceCharacteristics & |
Steve French | 52870d5 | 2019-10-01 21:25:46 -0500 | [diff] [blame] | 4294 | cpu_to_le32(FILE_READ_ONLY_DEVICE)) |
Steve French | 1981eba | 2019-08-29 22:33:38 -0500 | [diff] [blame] | 4295 | cifs_dbg(VFS, "mounted to read only share\n"); |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 4296 | else if ((cifs_sb->mnt_cifs_flags & |
| 4297 | CIFS_MOUNT_RW_CACHE) == 0) |
Steve French | 1981eba | 2019-08-29 22:33:38 -0500 | [diff] [blame] | 4298 | cifs_dbg(VFS, "read only mount of RW share\n"); |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 4299 | /* no need to log a RW mount of a typical RW share */ |
Steve French | 1981eba | 2019-08-29 22:33:38 -0500 | [diff] [blame] | 4300 | } |
| 4301 | } |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4302 | |
| 4303 | cifs_sb->wsize = server->ops->negotiate_wsize(tcon, vol); |
| 4304 | cifs_sb->rsize = server->ops->negotiate_rsize(tcon, vol); |
| 4305 | |
| 4306 | return 0; |
| 4307 | } |
| 4308 | |
| 4309 | static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses, |
| 4310 | struct cifs_tcon *tcon) |
| 4311 | { |
| 4312 | struct tcon_link *tlink; |
| 4313 | |
| 4314 | /* hang the tcon off of the superblock */ |
| 4315 | tlink = kzalloc(sizeof(*tlink), GFP_KERNEL); |
| 4316 | if (tlink == NULL) |
| 4317 | return -ENOMEM; |
| 4318 | |
| 4319 | tlink->tl_uid = ses->linux_uid; |
| 4320 | tlink->tl_tcon = tcon; |
| 4321 | tlink->tl_time = jiffies; |
| 4322 | set_bit(TCON_LINK_MASTER, &tlink->tl_flags); |
| 4323 | set_bit(TCON_LINK_IN_TREE, &tlink->tl_flags); |
| 4324 | |
| 4325 | cifs_sb->master_tlink = tlink; |
| 4326 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 4327 | tlink_rb_insert(&cifs_sb->tlink_tree, tlink); |
| 4328 | spin_unlock(&cifs_sb->tlink_tree_lock); |
| 4329 | |
| 4330 | queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks, |
| 4331 | TLINK_IDLE_EXPIRE); |
| 4332 | return 0; |
| 4333 | } |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4334 | |
Steve French | 2d6d589 | 2009-04-09 00:36:44 +0000 | [diff] [blame] | 4335 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Steve French | 6d3ea7e | 2012-11-28 22:34:41 -0600 | [diff] [blame] | 4336 | /* |
| 4337 | * cifs_build_path_to_root returns full path to root when we do not have an |
| 4338 | * exiting connection (tcon) |
| 4339 | */ |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4340 | static char * |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4341 | build_unc_path_to_root(const struct smb_vol *vol, |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4342 | const struct cifs_sb_info *cifs_sb, bool useppath) |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4343 | { |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4344 | char *full_path, *pos; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4345 | unsigned int pplen = useppath && vol->prepath ? |
| 4346 | strlen(vol->prepath) + 1 : 0; |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4347 | unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4348 | |
Ronnie Sahlberg | 340625e | 2019-08-27 09:30:14 +1000 | [diff] [blame] | 4349 | if (unc_len > MAX_TREE_SIZE) |
| 4350 | return ERR_PTR(-EINVAL); |
| 4351 | |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4352 | full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4353 | if (full_path == NULL) |
| 4354 | return ERR_PTR(-ENOMEM); |
| 4355 | |
Ronnie Sahlberg | 340625e | 2019-08-27 09:30:14 +1000 | [diff] [blame] | 4356 | memcpy(full_path, vol->UNC, unc_len); |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4357 | pos = full_path + unc_len; |
| 4358 | |
| 4359 | if (pplen) { |
Jeff Layton | 1fc29ba | 2013-05-31 10:00:18 -0400 | [diff] [blame] | 4360 | *pos = CIFS_DIR_SEP(cifs_sb); |
Ronnie Sahlberg | 340625e | 2019-08-27 09:30:14 +1000 | [diff] [blame] | 4361 | memcpy(pos + 1, vol->prepath, pplen); |
Jeff Layton | b2a0fa1 | 2011-07-06 08:10:36 -0400 | [diff] [blame] | 4362 | pos += pplen; |
| 4363 | } |
| 4364 | |
| 4365 | *pos = '\0'; /* add trailing null */ |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 4366 | convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb)); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4367 | cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4368 | return full_path; |
| 4369 | } |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4370 | |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4371 | /** |
| 4372 | * expand_dfs_referral - Perform a dfs referral query and update the cifs_sb |
| 4373 | * |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4374 | * |
Sean Finney | 046462a | 2011-04-11 13:19:33 +0000 | [diff] [blame] | 4375 | * If a referral is found, cifs_sb->mountdata will be (re-)allocated |
| 4376 | * to a string containing updated options for the submount. Otherwise it |
| 4377 | * will be left untouched. |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4378 | * |
| 4379 | * Returns the rc from get_dfs_path to the caller, which can be used to |
| 4380 | * determine whether there were referrals. |
| 4381 | */ |
| 4382 | static int |
Pavel Shilovsky | b669f33 | 2012-05-27 20:21:53 +0400 | [diff] [blame] | 4383 | expand_dfs_referral(const unsigned int xid, struct cifs_ses *ses, |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4384 | struct smb_vol *volume_info, struct cifs_sb_info *cifs_sb, |
Sean Finney | 046462a | 2011-04-11 13:19:33 +0000 | [diff] [blame] | 4385 | int check_prefix) |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4386 | { |
| 4387 | int rc; |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4388 | struct dfs_info3_param referral = {0}; |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4389 | char *full_path = NULL, *ref_path = NULL, *mdata = NULL; |
| 4390 | |
Aurelien Aptel | 8393072 | 2018-09-20 18:10:25 -0700 | [diff] [blame] | 4391 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) |
| 4392 | return -EREMOTE; |
| 4393 | |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4394 | full_path = build_unc_path_to_root(volume_info, cifs_sb, true); |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4395 | if (IS_ERR(full_path)) |
| 4396 | return PTR_ERR(full_path); |
| 4397 | |
| 4398 | /* For DFS paths, skip the first '\' of the UNC */ |
| 4399 | ref_path = check_prefix ? full_path + 1 : volume_info->UNC + 1; |
| 4400 | |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4401 | rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb), |
| 4402 | ref_path, &referral, NULL); |
| 4403 | if (!rc) { |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4404 | char *fake_devname = NULL; |
| 4405 | |
| 4406 | mdata = cifs_compose_mount_options(cifs_sb->mountdata, |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4407 | full_path + 1, &referral, |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4408 | &fake_devname); |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4409 | free_dfs_info_param(&referral); |
Sean Finney | 046462a | 2011-04-11 13:19:33 +0000 | [diff] [blame] | 4410 | |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4411 | if (IS_ERR(mdata)) { |
| 4412 | rc = PTR_ERR(mdata); |
| 4413 | mdata = NULL; |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4414 | } else { |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4415 | cifs_cleanup_volume_info_contents(volume_info); |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4416 | rc = cifs_setup_volume_info(volume_info, mdata, |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 4417 | fake_devname, false); |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4418 | } |
Jeff Layton | b9bce2e | 2011-07-06 08:10:39 -0400 | [diff] [blame] | 4419 | kfree(fake_devname); |
| 4420 | kfree(cifs_sb->mountdata); |
Sean Finney | 046462a | 2011-04-11 13:19:33 +0000 | [diff] [blame] | 4421 | cifs_sb->mountdata = mdata; |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4422 | } |
| 4423 | kfree(full_path); |
| 4424 | return rc; |
| 4425 | } |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4426 | |
| 4427 | static inline int get_next_dfs_tgt(const char *path, |
| 4428 | struct dfs_cache_tgt_list *tgt_list, |
| 4429 | struct dfs_cache_tgt_iterator **tgt_it) |
| 4430 | { |
| 4431 | if (!*tgt_it) |
| 4432 | *tgt_it = dfs_cache_get_tgt_iterator(tgt_list); |
| 4433 | else |
| 4434 | *tgt_it = dfs_cache_get_next_tgt(tgt_list, *tgt_it); |
| 4435 | return !*tgt_it ? -EHOSTDOWN : 0; |
| 4436 | } |
| 4437 | |
| 4438 | static int update_vol_info(const struct dfs_cache_tgt_iterator *tgt_it, |
| 4439 | struct smb_vol *fake_vol, struct smb_vol *vol) |
| 4440 | { |
| 4441 | const char *tgt = dfs_cache_get_tgt_name(tgt_it); |
| 4442 | int len = strlen(tgt) + 2; |
| 4443 | char *new_unc; |
| 4444 | |
| 4445 | new_unc = kmalloc(len, GFP_KERNEL); |
| 4446 | if (!new_unc) |
| 4447 | return -ENOMEM; |
Ronnie Sahlberg | 74ea5f9 | 2019-02-09 09:51:11 +1000 | [diff] [blame] | 4448 | scnprintf(new_unc, len, "\\%s", tgt); |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4449 | |
| 4450 | kfree(vol->UNC); |
| 4451 | vol->UNC = new_unc; |
| 4452 | |
| 4453 | if (fake_vol->prepath) { |
| 4454 | kfree(vol->prepath); |
| 4455 | vol->prepath = fake_vol->prepath; |
| 4456 | fake_vol->prepath = NULL; |
| 4457 | } |
| 4458 | memcpy(&vol->dstaddr, &fake_vol->dstaddr, sizeof(vol->dstaddr)); |
| 4459 | |
| 4460 | return 0; |
| 4461 | } |
| 4462 | |
| 4463 | static int setup_dfs_tgt_conn(const char *path, |
| 4464 | const struct dfs_cache_tgt_iterator *tgt_it, |
| 4465 | struct cifs_sb_info *cifs_sb, |
| 4466 | struct smb_vol *vol, |
| 4467 | unsigned int *xid, |
| 4468 | struct TCP_Server_Info **server, |
| 4469 | struct cifs_ses **ses, |
| 4470 | struct cifs_tcon **tcon) |
| 4471 | { |
| 4472 | int rc; |
| 4473 | struct dfs_info3_param ref = {0}; |
| 4474 | char *mdata = NULL, *fake_devname = NULL; |
Steve French | d0959b0 | 2019-10-05 10:53:58 -0500 | [diff] [blame] | 4475 | struct smb_vol fake_vol = {NULL}; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4476 | |
| 4477 | cifs_dbg(FYI, "%s: dfs path: %s\n", __func__, path); |
| 4478 | |
| 4479 | rc = dfs_cache_get_tgt_referral(path, tgt_it, &ref); |
| 4480 | if (rc) |
| 4481 | return rc; |
| 4482 | |
| 4483 | mdata = cifs_compose_mount_options(cifs_sb->mountdata, path, &ref, |
| 4484 | &fake_devname); |
| 4485 | free_dfs_info_param(&ref); |
| 4486 | |
| 4487 | if (IS_ERR(mdata)) { |
| 4488 | rc = PTR_ERR(mdata); |
| 4489 | mdata = NULL; |
| 4490 | } else { |
| 4491 | cifs_dbg(FYI, "%s: fake_devname: %s\n", __func__, fake_devname); |
| 4492 | rc = cifs_setup_volume_info(&fake_vol, mdata, fake_devname, |
| 4493 | false); |
| 4494 | } |
| 4495 | kfree(mdata); |
| 4496 | kfree(fake_devname); |
| 4497 | |
| 4498 | if (!rc) { |
| 4499 | /* |
| 4500 | * We use a 'fake_vol' here because we need pass it down to the |
| 4501 | * mount_{get,put} functions to test connection against new DFS |
| 4502 | * targets. |
| 4503 | */ |
| 4504 | mount_put_conns(cifs_sb, *xid, *server, *ses, *tcon); |
| 4505 | rc = mount_get_conns(&fake_vol, cifs_sb, xid, server, ses, |
| 4506 | tcon); |
| 4507 | if (!rc) { |
| 4508 | /* |
| 4509 | * We were able to connect to new target server. |
| 4510 | * Update current volume info with new target server. |
| 4511 | */ |
| 4512 | rc = update_vol_info(tgt_it, &fake_vol, vol); |
| 4513 | } |
| 4514 | } |
| 4515 | cifs_cleanup_volume_info_contents(&fake_vol); |
| 4516 | return rc; |
| 4517 | } |
| 4518 | |
| 4519 | static int mount_do_dfs_failover(const char *path, |
| 4520 | struct cifs_sb_info *cifs_sb, |
| 4521 | struct smb_vol *vol, |
| 4522 | struct cifs_ses *root_ses, |
| 4523 | unsigned int *xid, |
| 4524 | struct TCP_Server_Info **server, |
| 4525 | struct cifs_ses **ses, |
| 4526 | struct cifs_tcon **tcon) |
| 4527 | { |
| 4528 | int rc; |
| 4529 | struct dfs_cache_tgt_list tgt_list; |
| 4530 | struct dfs_cache_tgt_iterator *tgt_it = NULL; |
| 4531 | |
| 4532 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) |
| 4533 | return -EOPNOTSUPP; |
| 4534 | |
| 4535 | rc = dfs_cache_noreq_find(path, NULL, &tgt_list); |
| 4536 | if (rc) |
| 4537 | return rc; |
| 4538 | |
| 4539 | for (;;) { |
| 4540 | /* Get next DFS target server - if any */ |
| 4541 | rc = get_next_dfs_tgt(path, &tgt_list, &tgt_it); |
| 4542 | if (rc) |
| 4543 | break; |
| 4544 | /* Connect to next DFS target */ |
| 4545 | rc = setup_dfs_tgt_conn(path, tgt_it, cifs_sb, vol, xid, server, |
| 4546 | ses, tcon); |
| 4547 | if (!rc || rc == -EACCES || rc == -EOPNOTSUPP) |
| 4548 | break; |
| 4549 | } |
| 4550 | if (!rc) { |
| 4551 | /* |
| 4552 | * Update DFS target hint in DFS referral cache with the target |
| 4553 | * server we successfully reconnected to. |
| 4554 | */ |
| 4555 | rc = dfs_cache_update_tgthint(*xid, root_ses ? root_ses : *ses, |
| 4556 | cifs_sb->local_nls, |
| 4557 | cifs_remap(cifs_sb), path, |
| 4558 | tgt_it); |
| 4559 | } |
| 4560 | dfs_cache_free_tgts(&tgt_list); |
| 4561 | return rc; |
| 4562 | } |
Steve French | 2d6d589 | 2009-04-09 00:36:44 +0000 | [diff] [blame] | 4563 | #endif |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4564 | |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 4565 | int |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4566 | cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data, |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 4567 | const char *devname, bool is_smb3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4568 | { |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4569 | int rc = 0; |
Sean Finney | dd61394 | 2011-04-11 13:19:30 +0000 | [diff] [blame] | 4570 | |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 4571 | if (cifs_parse_mount_options(mount_data, devname, volume_info, is_smb3)) |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4572 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4573 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 4574 | if (volume_info->nullauth) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4575 | cifs_dbg(FYI, "Anonymous login\n"); |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 4576 | kfree(volume_info->username); |
| 4577 | volume_info->username = NULL; |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 4578 | } else if (volume_info->username) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4579 | /* BB fixme parse for domain name here */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4580 | cifs_dbg(FYI, "Username: %s\n", volume_info->username); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4581 | } else { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4582 | cifs_dbg(VFS, "No username specified\n"); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 4583 | /* In userspace mount helper we can get user name from alternate |
| 4584 | locations such as env variables and files on disk */ |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4585 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4586 | } |
| 4587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4588 | /* this is needed for ASCII cp to Unicode converts */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 4589 | if (volume_info->iocharset == NULL) { |
Jeff Layton | a5fc4ce | 2010-04-24 07:57:42 -0400 | [diff] [blame] | 4590 | /* load_nls_default cannot return null */ |
| 4591 | volume_info->local_nls = load_nls_default(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4592 | } else { |
Jeff Layton | a5fc4ce | 2010-04-24 07:57:42 -0400 | [diff] [blame] | 4593 | volume_info->local_nls = load_nls(volume_info->iocharset); |
| 4594 | if (volume_info->local_nls == NULL) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 4595 | cifs_dbg(VFS, "CIFS mount error: iocharset %s not found\n", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 4596 | volume_info->iocharset); |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4597 | return -ELIBACC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4598 | } |
| 4599 | } |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4600 | |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4601 | return rc; |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4602 | } |
| 4603 | |
| 4604 | struct smb_vol * |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 4605 | 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] | 4606 | { |
| 4607 | int rc; |
| 4608 | struct smb_vol *volume_info; |
| 4609 | |
Jeff Layton | 6ee9542 | 2012-11-26 11:09:57 -0500 | [diff] [blame] | 4610 | volume_info = kmalloc(sizeof(struct smb_vol), GFP_KERNEL); |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4611 | if (!volume_info) |
| 4612 | return ERR_PTR(-ENOMEM); |
| 4613 | |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 4614 | rc = cifs_setup_volume_info(volume_info, mount_data, devname, is_smb3); |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 4615 | if (rc) { |
| 4616 | cifs_cleanup_volume_info(volume_info); |
| 4617 | volume_info = ERR_PTR(rc); |
| 4618 | } |
| 4619 | |
| 4620 | return volume_info; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4621 | } |
| 4622 | |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 4623 | static int |
| 4624 | cifs_are_all_path_components_accessible(struct TCP_Server_Info *server, |
| 4625 | unsigned int xid, |
| 4626 | struct cifs_tcon *tcon, |
| 4627 | struct cifs_sb_info *cifs_sb, |
Ronnie Sahlberg | ce465bf | 2019-07-11 13:46:58 +1000 | [diff] [blame] | 4628 | char *full_path, |
| 4629 | int added_treename) |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 4630 | { |
| 4631 | int rc; |
| 4632 | char *s; |
| 4633 | char sep, tmp; |
Ronnie Sahlberg | ce465bf | 2019-07-11 13:46:58 +1000 | [diff] [blame] | 4634 | int skip = added_treename ? 1 : 0; |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 4635 | |
| 4636 | sep = CIFS_DIR_SEP(cifs_sb); |
| 4637 | s = full_path; |
| 4638 | |
| 4639 | rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, ""); |
| 4640 | while (rc == 0) { |
| 4641 | /* skip separators */ |
| 4642 | while (*s == sep) |
| 4643 | s++; |
| 4644 | if (!*s) |
| 4645 | break; |
| 4646 | /* next separator */ |
| 4647 | while (*s && *s != sep) |
| 4648 | s++; |
Ronnie Sahlberg | ce465bf | 2019-07-11 13:46:58 +1000 | [diff] [blame] | 4649 | /* |
| 4650 | * if the treename is added, we then have to skip the first |
| 4651 | * part within the separators |
| 4652 | */ |
| 4653 | if (skip) { |
| 4654 | skip = 0; |
| 4655 | continue; |
| 4656 | } |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 4657 | /* |
| 4658 | * temporarily null-terminate the path at the end of |
| 4659 | * the current component |
| 4660 | */ |
| 4661 | tmp = *s; |
| 4662 | *s = 0; |
| 4663 | rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, |
| 4664 | full_path); |
| 4665 | *s = tmp; |
| 4666 | } |
| 4667 | return rc; |
| 4668 | } |
| 4669 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4670 | /* |
| 4671 | * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is, |
| 4672 | * otherwise 0. |
| 4673 | */ |
| 4674 | static int is_path_remote(struct cifs_sb_info *cifs_sb, struct smb_vol *vol, |
| 4675 | const unsigned int xid, |
| 4676 | struct TCP_Server_Info *server, |
| 4677 | struct cifs_tcon *tcon) |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4678 | { |
Jeff Layton | 1daaae8 | 2012-03-21 06:30:40 -0400 | [diff] [blame] | 4679 | int rc; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4680 | char *full_path; |
| 4681 | |
| 4682 | if (!server->ops->is_path_accessible) |
| 4683 | return -EOPNOTSUPP; |
| 4684 | |
| 4685 | /* |
| 4686 | * cifs_build_path_to_root works only when we have a valid tcon |
| 4687 | */ |
| 4688 | full_path = cifs_build_path_to_root(vol, cifs_sb, tcon, |
| 4689 | tcon->Flags & SMB_SHARE_IS_IN_DFS); |
| 4690 | if (full_path == NULL) |
| 4691 | return -ENOMEM; |
| 4692 | |
| 4693 | cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path); |
| 4694 | |
| 4695 | rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, |
| 4696 | full_path); |
| 4697 | if (rc != 0 && rc != -EREMOTE) { |
| 4698 | kfree(full_path); |
| 4699 | return rc; |
| 4700 | } |
| 4701 | |
| 4702 | if (rc != -EREMOTE) { |
| 4703 | rc = cifs_are_all_path_components_accessible(server, xid, tcon, |
Ronnie Sahlberg | ce465bf | 2019-07-11 13:46:58 +1000 | [diff] [blame] | 4704 | cifs_sb, full_path, tcon->Flags & SMB_SHARE_IS_IN_DFS); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4705 | if (rc != 0) { |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 4706 | cifs_server_dbg(VFS, "cannot query dirs between root and final path, " |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4707 | "enabling CIFS_MOUNT_USE_PREFIX_PATH\n"); |
| 4708 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH; |
| 4709 | rc = 0; |
| 4710 | } |
| 4711 | } |
| 4712 | |
| 4713 | kfree(full_path); |
| 4714 | return rc; |
| 4715 | } |
| 4716 | |
| 4717 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 4718 | int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol) |
| 4719 | { |
| 4720 | int rc = 0; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 4721 | unsigned int xid; |
Pavel Shilovsky | af4281d | 2012-05-27 20:48:35 +0400 | [diff] [blame] | 4722 | struct cifs_ses *ses; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4723 | struct cifs_tcon *root_tcon = NULL; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4724 | struct cifs_tcon *tcon = NULL; |
Pavel Shilovsky | af4281d | 2012-05-27 20:48:35 +0400 | [diff] [blame] | 4725 | struct TCP_Server_Info *server; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4726 | char *root_path = NULL, *full_path = NULL; |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 4727 | char *old_mountdata, *origin_mountdata = NULL; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4728 | int count; |
Al Viro | dd85446 | 2011-06-17 08:24:42 -0400 | [diff] [blame] | 4729 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4730 | rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon); |
| 4731 | if (!rc && tcon) { |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4732 | /* If not a standalone DFS root, then check if path is remote */ |
| 4733 | rc = dfs_cache_find(xid, ses, cifs_sb->local_nls, |
| 4734 | cifs_remap(cifs_sb), vol->UNC + 1, NULL, |
| 4735 | NULL); |
| 4736 | if (rc) { |
| 4737 | rc = is_path_remote(cifs_sb, vol, xid, server, tcon); |
| 4738 | if (!rc) |
| 4739 | goto out; |
| 4740 | if (rc != -EREMOTE) |
| 4741 | goto error; |
| 4742 | } |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4743 | } |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4744 | /* |
| 4745 | * If first DFS target server went offline and we failed to connect it, |
| 4746 | * server and ses pointers are NULL at this point, though we still have |
| 4747 | * chance to get a cached DFS referral in expand_dfs_referral() and |
| 4748 | * retry next target available in it. |
| 4749 | * |
| 4750 | * If a NULL ses ptr is passed to dfs_cache_find(), a lookup will be |
| 4751 | * performed against DFS path and *no* requests will be sent to server |
| 4752 | * for any new DFS referrals. Hence it's safe to skip checking whether |
| 4753 | * server or ses ptr is NULL. |
| 4754 | */ |
| 4755 | if (rc == -EACCES || rc == -EOPNOTSUPP) |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4756 | goto error; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 4757 | |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4758 | root_path = build_unc_path_to_root(vol, cifs_sb, false); |
| 4759 | if (IS_ERR(root_path)) { |
| 4760 | rc = PTR_ERR(root_path); |
| 4761 | root_path = NULL; |
| 4762 | goto error; |
| 4763 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4764 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 4765 | full_path = build_unc_path_to_root(vol, cifs_sb, true); |
| 4766 | if (IS_ERR(full_path)) { |
| 4767 | rc = PTR_ERR(full_path); |
| 4768 | full_path = NULL; |
| 4769 | goto error; |
| 4770 | } |
Sean Finney | c1508ca | 2011-04-11 13:19:31 +0000 | [diff] [blame] | 4771 | /* |
| 4772 | * Perform an unconditional check for whether there are DFS |
| 4773 | * referrals for this path without prefix, to provide support |
| 4774 | * for DFS referrals from w2k8 servers which don't seem to respond |
| 4775 | * with PATH_NOT_COVERED to requests that include the prefix. |
| 4776 | * Chase the referral if found, otherwise continue normally. |
| 4777 | */ |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4778 | old_mountdata = cifs_sb->mountdata; |
| 4779 | (void)expand_dfs_referral(xid, ses, vol, cifs_sb, false); |
Sean Finney | c1508ca | 2011-04-11 13:19:31 +0000 | [diff] [blame] | 4780 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4781 | if (cifs_sb->mountdata == NULL) { |
| 4782 | rc = -ENOENT; |
| 4783 | goto error; |
| 4784 | } |
| 4785 | |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 4786 | /* Save DFS root volume information for DFS refresh worker */ |
| 4787 | origin_mountdata = kstrndup(cifs_sb->mountdata, |
| 4788 | strlen(cifs_sb->mountdata), GFP_KERNEL); |
| 4789 | if (!origin_mountdata) { |
| 4790 | rc = -ENOMEM; |
| 4791 | goto error; |
| 4792 | } |
| 4793 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4794 | if (cifs_sb->mountdata != old_mountdata) { |
| 4795 | /* If we were redirected, reconnect to new target server */ |
| 4796 | mount_put_conns(cifs_sb, xid, server, ses, tcon); |
| 4797 | rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon); |
| 4798 | } |
| 4799 | if (rc) { |
| 4800 | if (rc == -EACCES || rc == -EOPNOTSUPP) |
| 4801 | goto error; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4802 | /* Perform DFS failover to any other DFS targets */ |
| 4803 | rc = mount_do_dfs_failover(root_path + 1, cifs_sb, vol, NULL, |
| 4804 | &xid, &server, &ses, &tcon); |
| 4805 | if (rc) |
| 4806 | goto error; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4807 | } |
| 4808 | |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4809 | kfree(root_path); |
| 4810 | root_path = build_unc_path_to_root(vol, cifs_sb, false); |
| 4811 | if (IS_ERR(root_path)) { |
| 4812 | rc = PTR_ERR(root_path); |
| 4813 | root_path = NULL; |
| 4814 | goto error; |
| 4815 | } |
| 4816 | /* Cache out resolved root server */ |
| 4817 | (void)dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb), |
| 4818 | root_path + 1, NULL, NULL); |
| 4819 | /* |
| 4820 | * Save root tcon for additional DFS requests to update or create a new |
| 4821 | * DFS cache entry, or even perform DFS failover. |
| 4822 | */ |
| 4823 | spin_lock(&cifs_tcp_ses_lock); |
| 4824 | tcon->tc_count++; |
| 4825 | tcon->dfs_path = root_path; |
| 4826 | root_path = NULL; |
| 4827 | tcon->remap = cifs_remap(cifs_sb); |
| 4828 | spin_unlock(&cifs_tcp_ses_lock); |
| 4829 | |
| 4830 | root_tcon = tcon; |
| 4831 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4832 | for (count = 1; ;) { |
| 4833 | if (!rc && tcon) { |
| 4834 | rc = is_path_remote(cifs_sb, vol, xid, server, tcon); |
| 4835 | if (!rc || rc != -EREMOTE) |
| 4836 | break; |
Pavel Shilovsky | 68889f2 | 2012-05-25 14:40:22 +0400 | [diff] [blame] | 4837 | } |
Steve French | 6d3ea7e | 2012-11-28 22:34:41 -0600 | [diff] [blame] | 4838 | /* |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4839 | * BB: when we implement proper loop detection, |
| 4840 | * we will remove this check. But now we need it |
| 4841 | * to prevent an indefinite loop if 'DFS tree' is |
| 4842 | * misconfigured (i.e. has loops). |
Steve French | 6d3ea7e | 2012-11-28 22:34:41 -0600 | [diff] [blame] | 4843 | */ |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4844 | if (count++ > MAX_NESTED_LINKS) { |
Igor Mammedov | 5c2503a | 2009-04-21 19:31:05 +0400 | [diff] [blame] | 4845 | rc = -ELOOP; |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4846 | break; |
Igor Mammedov | 5c2503a | 2009-04-21 19:31:05 +0400 | [diff] [blame] | 4847 | } |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4848 | |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4849 | kfree(full_path); |
| 4850 | full_path = build_unc_path_to_root(vol, cifs_sb, true); |
| 4851 | if (IS_ERR(full_path)) { |
| 4852 | rc = PTR_ERR(full_path); |
| 4853 | full_path = NULL; |
| 4854 | break; |
| 4855 | } |
| 4856 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4857 | old_mountdata = cifs_sb->mountdata; |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4858 | rc = expand_dfs_referral(xid, root_tcon->ses, vol, cifs_sb, |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4859 | true); |
| 4860 | if (rc) |
| 4861 | break; |
Jeff Layton | 7b91e26 | 2009-07-23 15:22:30 -0400 | [diff] [blame] | 4862 | |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4863 | if (cifs_sb->mountdata != old_mountdata) { |
| 4864 | mount_put_conns(cifs_sb, xid, server, ses, tcon); |
| 4865 | rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, |
| 4866 | &tcon); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4867 | } |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4868 | if (rc) { |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4869 | if (rc == -EACCES || rc == -EOPNOTSUPP) |
| 4870 | break; |
| 4871 | /* Perform DFS failover to any other DFS targets */ |
| 4872 | rc = mount_do_dfs_failover(full_path + 1, cifs_sb, vol, |
| 4873 | root_tcon->ses, &xid, |
| 4874 | &server, &ses, &tcon); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4875 | if (rc == -EACCES || rc == -EOPNOTSUPP || !server || |
| 4876 | !ses) |
| 4877 | goto error; |
| 4878 | } |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4879 | } |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4880 | cifs_put_tcon(root_tcon); |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4881 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 4882 | if (rc) |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4883 | goto error; |
Igor Mammedov | 1bfe73c | 2009-04-01 17:54:42 +0400 | [diff] [blame] | 4884 | |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 4885 | spin_lock(&cifs_tcp_ses_lock); |
| 4886 | if (!tcon->dfs_path) { |
| 4887 | /* Save full path in new tcon to do failover when reconnecting tcons */ |
| 4888 | tcon->dfs_path = full_path; |
| 4889 | full_path = NULL; |
| 4890 | tcon->remap = cifs_remap(cifs_sb); |
| 4891 | } |
| 4892 | cifs_sb->origin_fullpath = kstrndup(tcon->dfs_path, |
YueHaibing | 2f0a617 | 2018-12-18 01:34:39 +0000 | [diff] [blame] | 4893 | strlen(tcon->dfs_path), |
| 4894 | GFP_ATOMIC); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 4895 | if (!cifs_sb->origin_fullpath) { |
| 4896 | spin_unlock(&cifs_tcp_ses_lock); |
| 4897 | rc = -ENOMEM; |
| 4898 | goto error; |
| 4899 | } |
| 4900 | spin_unlock(&cifs_tcp_ses_lock); |
| 4901 | |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 4902 | rc = dfs_cache_add_vol(origin_mountdata, vol, cifs_sb->origin_fullpath); |
Paulo Alcantara | e511d31 | 2018-11-14 17:16:44 -0200 | [diff] [blame] | 4903 | if (rc) { |
| 4904 | kfree(cifs_sb->origin_fullpath); |
| 4905 | goto error; |
| 4906 | } |
Aurelien Aptel | 5fc7fcd | 2018-11-16 16:13:25 +0100 | [diff] [blame] | 4907 | /* |
| 4908 | * After reconnecting to a different server, unique ids won't |
| 4909 | * match anymore, so we disable serverino. This prevents |
| 4910 | * dentry revalidation to think the dentry are stale (ESTALE). |
| 4911 | */ |
| 4912 | cifs_autodisable_serverino(cifs_sb); |
Jeff Layton | 70fe7dc | 2007-11-16 22:21:07 +0000 | [diff] [blame] | 4913 | out: |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 4914 | free_xid(xid); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4915 | return mount_setup_tlink(cifs_sb, ses, tcon); |
| 4916 | |
| 4917 | error: |
Paulo Alcantara | 4a367dc | 2018-11-14 16:53:52 -0200 | [diff] [blame] | 4918 | kfree(full_path); |
| 4919 | kfree(root_path); |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 4920 | kfree(origin_mountdata); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4921 | mount_put_conns(cifs_sb, xid, server, ses, tcon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4922 | return rc; |
| 4923 | } |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 4924 | #else |
| 4925 | int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol) |
| 4926 | { |
| 4927 | int rc = 0; |
| 4928 | unsigned int xid; |
| 4929 | struct cifs_ses *ses; |
| 4930 | struct cifs_tcon *tcon; |
| 4931 | struct TCP_Server_Info *server; |
| 4932 | |
| 4933 | rc = mount_get_conns(vol, cifs_sb, &xid, &server, &ses, &tcon); |
| 4934 | if (rc) |
| 4935 | goto error; |
| 4936 | |
| 4937 | if (tcon) { |
| 4938 | rc = is_path_remote(cifs_sb, vol, xid, server, tcon); |
| 4939 | if (rc == -EREMOTE) |
| 4940 | rc = -EOPNOTSUPP; |
| 4941 | if (rc) |
| 4942 | goto error; |
| 4943 | } |
| 4944 | |
| 4945 | free_xid(xid); |
| 4946 | |
| 4947 | return mount_setup_tlink(cifs_sb, ses, tcon); |
| 4948 | |
| 4949 | error: |
| 4950 | mount_put_conns(cifs_sb, xid, server, ses, tcon); |
| 4951 | return rc; |
| 4952 | } |
| 4953 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4954 | |
Jeff Layton | 8d1bca3 | 2011-06-11 21:17:10 -0400 | [diff] [blame] | 4955 | /* |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 4956 | * Issue a TREE_CONNECT request. |
Jeff Layton | 8d1bca3 | 2011-06-11 21:17:10 -0400 | [diff] [blame] | 4957 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4958 | int |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 4959 | CIFSTCon(const unsigned int xid, struct cifs_ses *ses, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 4960 | const char *tree, struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4961 | const struct nls_table *nls_codepage) |
| 4962 | { |
| 4963 | struct smb_hdr *smb_buffer; |
| 4964 | struct smb_hdr *smb_buffer_response; |
| 4965 | TCONX_REQ *pSMB; |
| 4966 | TCONX_RSP *pSMBr; |
| 4967 | unsigned char *bcc_ptr; |
| 4968 | int rc = 0; |
Jeff Layton | 690c522 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 4969 | int length; |
| 4970 | __u16 bytes_left, count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4971 | |
| 4972 | if (ses == NULL) |
| 4973 | return -EIO; |
| 4974 | |
| 4975 | smb_buffer = cifs_buf_get(); |
Steve French | ca43e3b | 2009-09-01 17:20:50 +0000 | [diff] [blame] | 4976 | if (smb_buffer == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4977 | return -ENOMEM; |
Steve French | ca43e3b | 2009-09-01 17:20:50 +0000 | [diff] [blame] | 4978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4979 | smb_buffer_response = smb_buffer; |
| 4980 | |
| 4981 | header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX, |
| 4982 | NULL /*no tid */ , 4 /*wct */ ); |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 4983 | |
Pavel Shilovsky | 8825736 | 2012-05-23 14:01:59 +0400 | [diff] [blame] | 4984 | smb_buffer->Mid = get_next_mid(ses->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4985 | smb_buffer->Uid = ses->Suid; |
| 4986 | pSMB = (TCONX_REQ *) smb_buffer; |
| 4987 | pSMBr = (TCONX_RSP *) smb_buffer_response; |
| 4988 | |
| 4989 | pSMB->AndXCommand = 0xFF; |
| 4990 | pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4991 | bcc_ptr = &pSMB->Password[0]; |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 4992 | if (tcon->pipe || (ses->server->sec_mode & SECMODE_USER)) { |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4993 | pSMB->PasswordLength = cpu_to_le16(1); /* minimum */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 4994 | *bcc_ptr = 0; /* password is null byte */ |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4995 | bcc_ptr++; /* skip password */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 4996 | /* already aligned so no need to do it below */ |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4997 | } else { |
Shirish Pargaonkar | 540b2e3 | 2011-01-18 22:33:54 -0600 | [diff] [blame] | 4998 | pSMB->PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE); |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 4999 | /* BB FIXME add code to fail this if NTLMv2 or Kerberos |
| 5000 | specified as required (when that support is added to |
| 5001 | the vfs in the future) as only NTLM or the much |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 5002 | weaker LANMAN (which we do not send by default) is accepted |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 5003 | by Samba (not sure whether other servers allow |
| 5004 | NTLMv2 password here) */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 5005 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 5006 | if ((global_secflags & CIFSSEC_MAY_LANMAN) && |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 5007 | (ses->sectype == LANMAN)) |
Shirish Pargaonkar | d3ba50b | 2010-10-27 15:20:36 -0500 | [diff] [blame] | 5008 | calc_lanman_hash(tcon->password, ses->server->cryptkey, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 5009 | ses->server->sec_mode & |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 5010 | SECMODE_PW_ENCRYPT ? true : false, |
| 5011 | bcc_ptr); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 5012 | else |
| 5013 | #endif /* CIFS_WEAK_PW_HASH */ |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 5014 | rc = SMBNTencrypt(tcon->password, ses->server->cryptkey, |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 5015 | bcc_ptr, nls_codepage); |
Steve French | f3a31a2 | 2015-03-26 19:23:20 -0500 | [diff] [blame] | 5016 | if (rc) { |
| 5017 | cifs_dbg(FYI, "%s Can't generate NTLM rsp. Error: %d\n", |
| 5018 | __func__, rc); |
| 5019 | cifs_buf_release(smb_buffer); |
| 5020 | return rc; |
| 5021 | } |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 5022 | |
Shirish Pargaonkar | 540b2e3 | 2011-01-18 22:33:54 -0600 | [diff] [blame] | 5023 | bcc_ptr += CIFS_AUTH_RESP_SIZE; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 5024 | if (ses->capabilities & CAP_UNICODE) { |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 5025 | /* must align unicode strings */ |
| 5026 | *bcc_ptr = 0; /* null byte password */ |
| 5027 | bcc_ptr++; |
| 5028 | } |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 5029 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5030 | |
Jeff Layton | 38d77c5 | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 5031 | if (ses->server->sign) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5032 | smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 5033 | |
| 5034 | if (ses->capabilities & CAP_STATUS32) { |
| 5035 | smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS; |
| 5036 | } |
| 5037 | if (ses->capabilities & CAP_DFS) { |
| 5038 | smb_buffer->Flags2 |= SMBFLG2_DFS; |
| 5039 | } |
| 5040 | if (ses->capabilities & CAP_UNICODE) { |
| 5041 | smb_buffer->Flags2 |= SMBFLG2_UNICODE; |
| 5042 | length = |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 5043 | cifs_strtoUTF16((__le16 *) bcc_ptr, tree, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5044 | 6 /* max utf8 char length in bytes */ * |
Steve French | a878fb2 | 2006-05-30 18:04:19 +0000 | [diff] [blame] | 5045 | (/* server len*/ + 256 /* share len */), nls_codepage); |
| 5046 | bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5047 | bcc_ptr += 2; /* skip trailing null */ |
| 5048 | } else { /* ASCII */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5049 | strcpy(bcc_ptr, tree); |
| 5050 | bcc_ptr += strlen(tree) + 1; |
| 5051 | } |
| 5052 | strcpy(bcc_ptr, "?????"); |
| 5053 | bcc_ptr += strlen("?????"); |
| 5054 | bcc_ptr += 1; |
| 5055 | count = bcc_ptr - &pSMB->Password[0]; |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 5056 | pSMB->hdr.smb_buf_length = cpu_to_be32(be32_to_cpu( |
| 5057 | pSMB->hdr.smb_buf_length) + count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5058 | pSMB->ByteCount = cpu_to_le16(count); |
| 5059 | |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 5060 | rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length, |
Jeff Layton | 7749981 | 2011-01-11 07:24:23 -0500 | [diff] [blame] | 5061 | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5063 | /* above now done in SendReceive */ |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 5064 | if (rc == 0) { |
Steve French | 0e0d2cf | 2009-05-01 05:27:32 +0000 | [diff] [blame] | 5065 | bool is_unicode; |
| 5066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5067 | tcon->tidStatus = CifsGood; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 5068 | tcon->need_reconnect = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5069 | tcon->tid = smb_buffer_response->Tid; |
| 5070 | bcc_ptr = pByteArea(smb_buffer_response); |
Jeff Layton | 690c522 | 2011-01-20 13:36:51 -0500 | [diff] [blame] | 5071 | bytes_left = get_bcc(smb_buffer_response); |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 5072 | length = strnlen(bcc_ptr, bytes_left - 2); |
Steve French | 0e0d2cf | 2009-05-01 05:27:32 +0000 | [diff] [blame] | 5073 | if (smb_buffer->Flags2 & SMBFLG2_UNICODE) |
| 5074 | is_unicode = true; |
| 5075 | else |
| 5076 | is_unicode = false; |
| 5077 | |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 5078 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5079 | /* skip service field (NB: this field is always ASCII) */ |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 5080 | if (length == 3) { |
| 5081 | if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && |
| 5082 | (bcc_ptr[2] == 'C')) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 5083 | cifs_dbg(FYI, "IPC connection\n"); |
Aurelien Aptel | b327a71 | 2018-01-24 13:46:10 +0100 | [diff] [blame] | 5084 | tcon->ipc = true; |
| 5085 | tcon->pipe = true; |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 5086 | } |
| 5087 | } else if (length == 2) { |
| 5088 | if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { |
| 5089 | /* the most common case */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 5090 | cifs_dbg(FYI, "disk share connection\n"); |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 5091 | } |
| 5092 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5093 | bcc_ptr += length + 1; |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 5094 | bytes_left -= (length + 1); |
Zhao Hongjiang | 46b51d0 | 2013-06-24 01:57:47 -0500 | [diff] [blame] | 5095 | strlcpy(tcon->treeName, tree, sizeof(tcon->treeName)); |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 5096 | |
| 5097 | /* mostly informational -- no need to fail on error here */ |
Jeff Layton | 90a98b2 | 2009-07-20 13:40:52 -0400 | [diff] [blame] | 5098 | kfree(tcon->nativeFileSystem); |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 5099 | tcon->nativeFileSystem = cifs_strndup_from_utf16(bcc_ptr, |
Steve French | 0e0d2cf | 2009-05-01 05:27:32 +0000 | [diff] [blame] | 5100 | bytes_left, is_unicode, |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 5101 | nls_codepage); |
| 5102 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 5103 | cifs_dbg(FYI, "nativeFileSystem=%s\n", tcon->nativeFileSystem); |
Jeff Layton | cc20c03 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 5104 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 5105 | if ((smb_buffer_response->WordCount == 3) || |
Steve French | 1a4e15a | 2006-10-12 21:33:51 +0000 | [diff] [blame] | 5106 | (smb_buffer_response->WordCount == 7)) |
| 5107 | /* field is in same location */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 5108 | tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport); |
| 5109 | else |
| 5110 | tcon->Flags = 0; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 5111 | cifs_dbg(FYI, "Tcon flags: 0x%x\n", tcon->Flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5112 | } |
| 5113 | |
Mariusz Kozlowski | a8a11d3 | 2007-10-03 16:41:24 +0000 | [diff] [blame] | 5114 | cifs_buf_release(smb_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5115 | return rc; |
| 5116 | } |
| 5117 | |
Al Viro | 2e32cf5 | 2013-10-03 12:53:37 -0400 | [diff] [blame] | 5118 | static void delayed_free(struct rcu_head *p) |
| 5119 | { |
| 5120 | struct cifs_sb_info *sbi = container_of(p, struct cifs_sb_info, rcu); |
| 5121 | unload_nls(sbi->local_nls); |
| 5122 | kfree(sbi); |
| 5123 | } |
| 5124 | |
Al Viro | 2a9b995 | 2011-06-17 09:27:16 -0400 | [diff] [blame] | 5125 | void |
| 5126 | cifs_umount(struct cifs_sb_info *cifs_sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5127 | { |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5128 | struct rb_root *root = &cifs_sb->tlink_tree; |
| 5129 | struct rb_node *node; |
| 5130 | struct tcon_link *tlink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5132 | cancel_delayed_work_sync(&cifs_sb->prune_tlinks); |
| 5133 | |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5134 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 5135 | while ((node = rb_first(root))) { |
| 5136 | tlink = rb_entry(node, struct tcon_link, tl_rbnode); |
| 5137 | cifs_get_tlink(tlink); |
| 5138 | clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags); |
| 5139 | rb_erase(node, root); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5140 | |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5141 | spin_unlock(&cifs_sb->tlink_tree_lock); |
| 5142 | cifs_put_tlink(tlink); |
| 5143 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 5144 | } |
| 5145 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5146 | |
Al Viro | d757d71 | 2011-06-17 09:42:43 -0400 | [diff] [blame] | 5147 | kfree(cifs_sb->mountdata); |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 5148 | kfree(cifs_sb->prepath); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 5149 | #ifdef CONFIG_CIFS_DFS_UPCALL |
Paulo Alcantara | e511d31 | 2018-11-14 17:16:44 -0200 | [diff] [blame] | 5150 | dfs_cache_del_vol(cifs_sb->origin_fullpath); |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 5151 | kfree(cifs_sb->origin_fullpath); |
| 5152 | #endif |
Al Viro | 2e32cf5 | 2013-10-03 12:53:37 -0400 | [diff] [blame] | 5153 | call_rcu(&cifs_sb->rcu, delayed_free); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 5154 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5155 | |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 5156 | int |
| 5157 | cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5158 | { |
| 5159 | int rc = 0; |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5160 | struct TCP_Server_Info *server = ses->server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5161 | |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 5162 | if (!server->ops->need_neg || !server->ops->negotiate) |
| 5163 | return -ENOSYS; |
| 5164 | |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5165 | /* only send once per connect */ |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 5166 | if (!server->ops->need_neg(server)) |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5167 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5168 | |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 5169 | rc = server->ops->negotiate(xid, ses); |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5170 | if (rc == 0) { |
| 5171 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | 7fdbaa1 | 2011-06-10 16:14:57 -0400 | [diff] [blame] | 5172 | if (server->tcpStatus == CifsNeedNegotiate) |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5173 | server->tcpStatus = CifsGood; |
| 5174 | else |
| 5175 | rc = -EHOSTDOWN; |
| 5176 | spin_unlock(&GlobalMid_Lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5177 | } |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 5178 | |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5179 | return rc; |
| 5180 | } |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 5181 | |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 5182 | int |
| 5183 | cifs_setup_session(const unsigned int xid, struct cifs_ses *ses, |
| 5184 | struct nls_table *nls_info) |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5185 | { |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 5186 | int rc = -ENOSYS; |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5187 | struct TCP_Server_Info *server = ses->server; |
| 5188 | |
Jeff Layton | 198b568 | 2010-04-24 07:57:48 -0400 | [diff] [blame] | 5189 | ses->capabilities = server->capabilities; |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 5190 | if (linuxExtEnabled == 0) |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 5191 | ses->capabilities &= (~server->vals->cap_unix); |
Steve French | 20418ac | 2009-04-30 16:13:32 +0000 | [diff] [blame] | 5192 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 5193 | 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] | 5194 | server->sec_mode, server->capabilities, server->timeAdj); |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 5195 | |
Shu Wang | f5c4ba8 | 2017-09-08 18:48:33 +0800 | [diff] [blame] | 5196 | if (ses->auth_key.response) { |
Steve French | 2a18287 | 2018-03-29 12:16:34 -0500 | [diff] [blame] | 5197 | cifs_dbg(FYI, "Free previous auth_key.response = %p\n", |
Shu Wang | f5c4ba8 | 2017-09-08 18:48:33 +0800 | [diff] [blame] | 5198 | ses->auth_key.response); |
| 5199 | kfree(ses->auth_key.response); |
| 5200 | ses->auth_key.response = NULL; |
| 5201 | ses->auth_key.len = 0; |
| 5202 | } |
| 5203 | |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 5204 | if (server->ops->sess_setup) |
| 5205 | rc = server->ops->sess_setup(xid, ses, nls_info); |
| 5206 | |
Shirish Pargaonkar | d4e63bd | 2013-08-29 08:35:09 -0500 | [diff] [blame] | 5207 | if (rc) |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 5208 | cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 5209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5210 | return rc; |
| 5211 | } |
| 5212 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 5213 | static int |
| 5214 | cifs_set_vol_auth(struct smb_vol *vol, struct cifs_ses *ses) |
| 5215 | { |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 5216 | vol->sectype = ses->sectype; |
| 5217 | |
| 5218 | /* krb5 is special, since we don't need username or pw */ |
| 5219 | if (vol->sectype == Kerberos) |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 5220 | return 0; |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 5221 | |
| 5222 | return cifs_set_cifscreds(vol, ses); |
| 5223 | } |
| 5224 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 5225 | static struct cifs_tcon * |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5226 | cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid) |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5227 | { |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 5228 | int rc; |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 5229 | struct cifs_tcon *master_tcon = cifs_sb_master_tcon(cifs_sb); |
| 5230 | struct cifs_ses *ses; |
| 5231 | struct cifs_tcon *tcon = NULL; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5232 | struct smb_vol *vol_info; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5233 | |
| 5234 | vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL); |
Dan Carpenter | 803ab97 | 2012-01-24 11:39:22 +0300 | [diff] [blame] | 5235 | if (vol_info == NULL) |
| 5236 | return ERR_PTR(-ENOMEM); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5237 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5238 | vol_info->local_nls = cifs_sb->local_nls; |
| 5239 | vol_info->linux_uid = fsuid; |
| 5240 | vol_info->cred_uid = fsuid; |
| 5241 | vol_info->UNC = master_tcon->treeName; |
| 5242 | vol_info->retry = master_tcon->retry; |
| 5243 | vol_info->nocase = master_tcon->nocase; |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 5244 | vol_info->nohandlecache = master_tcon->nohandlecache; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5245 | vol_info->local_lease = master_tcon->local_lease; |
| 5246 | vol_info->no_linux_ext = !master_tcon->unix_ext; |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 5247 | vol_info->sectype = master_tcon->ses->sectype; |
| 5248 | vol_info->sign = master_tcon->ses->sign; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5249 | |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 5250 | rc = cifs_set_vol_auth(vol_info, master_tcon->ses); |
| 5251 | if (rc) { |
| 5252 | tcon = ERR_PTR(rc); |
| 5253 | goto out; |
| 5254 | } |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5255 | |
| 5256 | /* get a reference for the same TCP session */ |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 5257 | spin_lock(&cifs_tcp_ses_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5258 | ++master_tcon->ses->server->srv_count; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 5259 | spin_unlock(&cifs_tcp_ses_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5260 | |
| 5261 | ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info); |
| 5262 | if (IS_ERR(ses)) { |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 5263 | tcon = (struct cifs_tcon *)ses; |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 5264 | cifs_put_tcp_session(master_tcon->ses->server, 0); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5265 | goto out; |
| 5266 | } |
| 5267 | |
| 5268 | tcon = cifs_get_tcon(ses, vol_info); |
| 5269 | if (IS_ERR(tcon)) { |
| 5270 | cifs_put_smb_ses(ses); |
| 5271 | goto out; |
| 5272 | } |
| 5273 | |
Steve French | ce558b0 | 2018-05-31 19:16:54 -0500 | [diff] [blame] | 5274 | /* if new SMB3.11 POSIX extensions are supported do not remap / and \ */ |
| 5275 | if (tcon->posix_extensions) |
| 5276 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS; |
Steve French | 0fdfef9 | 2018-06-28 19:30:23 -0500 | [diff] [blame] | 5277 | |
Pavel Shilovsky | 29e20f9 | 2012-07-13 13:58:14 +0400 | [diff] [blame] | 5278 | if (cap_unix(ses)) |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5279 | reset_cifs_unix_caps(0, tcon, NULL, vol_info); |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 5280 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5281 | out: |
Jeff Layton | 8a8798a | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 5282 | kfree(vol_info->username); |
Aurelien Aptel | 97f4b72 | 2018-01-25 15:59:39 +0100 | [diff] [blame] | 5283 | kzfree(vol_info->password); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5284 | kfree(vol_info); |
| 5285 | |
| 5286 | return tcon; |
| 5287 | } |
| 5288 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 5289 | struct cifs_tcon * |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5290 | cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb) |
| 5291 | { |
| 5292 | return tlink_tcon(cifs_sb_master_tlink(cifs_sb)); |
| 5293 | } |
| 5294 | |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5295 | /* find and return a tlink with given uid */ |
| 5296 | static struct tcon_link * |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5297 | tlink_rb_search(struct rb_root *root, kuid_t uid) |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5298 | { |
| 5299 | struct rb_node *node = root->rb_node; |
| 5300 | struct tcon_link *tlink; |
| 5301 | |
| 5302 | while (node) { |
| 5303 | tlink = rb_entry(node, struct tcon_link, tl_rbnode); |
| 5304 | |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5305 | if (uid_gt(tlink->tl_uid, uid)) |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5306 | node = node->rb_left; |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5307 | else if (uid_lt(tlink->tl_uid, uid)) |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5308 | node = node->rb_right; |
| 5309 | else |
| 5310 | return tlink; |
| 5311 | } |
| 5312 | return NULL; |
| 5313 | } |
| 5314 | |
| 5315 | /* insert a tcon_link into the tree */ |
| 5316 | static void |
| 5317 | tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink) |
| 5318 | { |
| 5319 | struct rb_node **new = &(root->rb_node), *parent = NULL; |
| 5320 | struct tcon_link *tlink; |
| 5321 | |
| 5322 | while (*new) { |
| 5323 | tlink = rb_entry(*new, struct tcon_link, tl_rbnode); |
| 5324 | parent = *new; |
| 5325 | |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5326 | if (uid_gt(tlink->tl_uid, new_tlink->tl_uid)) |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5327 | new = &((*new)->rb_left); |
| 5328 | else |
| 5329 | new = &((*new)->rb_right); |
| 5330 | } |
| 5331 | |
| 5332 | rb_link_node(&new_tlink->tl_rbnode, parent, new); |
| 5333 | rb_insert_color(&new_tlink->tl_rbnode, root); |
| 5334 | } |
| 5335 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5336 | /* |
| 5337 | * Find or construct an appropriate tcon given a cifs_sb and the fsuid of the |
| 5338 | * current task. |
| 5339 | * |
| 5340 | * If the superblock doesn't refer to a multiuser mount, then just return |
| 5341 | * the master tcon for the mount. |
| 5342 | * |
Suresh Jayaraman | 6ef933a | 2010-11-03 10:53:49 +0530 | [diff] [blame] | 5343 | * 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] | 5344 | * exists, then check to see if it's pending construction. If it is then wait |
| 5345 | * for construction to complete. Once it's no longer pending, check to see if |
| 5346 | * it failed and either return an error or retry construction, depending on |
| 5347 | * the timeout. |
| 5348 | * |
| 5349 | * If one doesn't exist then insert a new tcon_link struct into the tree and |
| 5350 | * try to construct a new one. |
| 5351 | */ |
| 5352 | struct tcon_link * |
| 5353 | cifs_sb_tlink(struct cifs_sb_info *cifs_sb) |
| 5354 | { |
| 5355 | int ret; |
Eric W. Biederman | 6d4a083 | 2013-02-06 01:48:56 -0800 | [diff] [blame] | 5356 | kuid_t fsuid = current_fsuid(); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5357 | struct tcon_link *tlink, *newtlink; |
| 5358 | |
| 5359 | if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)) |
| 5360 | return cifs_get_tlink(cifs_sb_master_tlink(cifs_sb)); |
| 5361 | |
| 5362 | spin_lock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5363 | tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5364 | if (tlink) |
| 5365 | cifs_get_tlink(tlink); |
| 5366 | spin_unlock(&cifs_sb->tlink_tree_lock); |
| 5367 | |
| 5368 | if (tlink == NULL) { |
| 5369 | newtlink = kzalloc(sizeof(*tlink), GFP_KERNEL); |
| 5370 | if (newtlink == NULL) |
| 5371 | return ERR_PTR(-ENOMEM); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5372 | newtlink->tl_uid = fsuid; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5373 | newtlink->tl_tcon = ERR_PTR(-EACCES); |
| 5374 | set_bit(TCON_LINK_PENDING, &newtlink->tl_flags); |
| 5375 | set_bit(TCON_LINK_IN_TREE, &newtlink->tl_flags); |
| 5376 | cifs_get_tlink(newtlink); |
| 5377 | |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5378 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 5379 | /* was one inserted after previous search? */ |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5380 | tlink = tlink_rb_search(&cifs_sb->tlink_tree, fsuid); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5381 | if (tlink) { |
| 5382 | cifs_get_tlink(tlink); |
| 5383 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5384 | kfree(newtlink); |
| 5385 | goto wait_for_construction; |
| 5386 | } |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5387 | tlink = newtlink; |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5388 | tlink_rb_insert(&cifs_sb->tlink_tree, tlink); |
| 5389 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5390 | } else { |
| 5391 | wait_for_construction: |
| 5392 | ret = wait_on_bit(&tlink->tl_flags, TCON_LINK_PENDING, |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5393 | TASK_INTERRUPTIBLE); |
| 5394 | if (ret) { |
| 5395 | cifs_put_tlink(tlink); |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 5396 | return ERR_PTR(-ERESTARTSYS); |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 5397 | } |
| 5398 | |
| 5399 | /* if it's good, return it */ |
| 5400 | if (!IS_ERR(tlink->tl_tcon)) |
| 5401 | return tlink; |
| 5402 | |
| 5403 | /* return error if we tried this already recently */ |
| 5404 | if (time_before(jiffies, tlink->tl_time + TLINK_ERROR_EXPIRE)) { |
| 5405 | cifs_put_tlink(tlink); |
| 5406 | return ERR_PTR(-EACCES); |
| 5407 | } |
| 5408 | |
| 5409 | if (test_and_set_bit(TCON_LINK_PENDING, &tlink->tl_flags)) |
| 5410 | goto wait_for_construction; |
| 5411 | } |
| 5412 | |
| 5413 | tlink->tl_tcon = cifs_construct_tcon(cifs_sb, fsuid); |
| 5414 | clear_bit(TCON_LINK_PENDING, &tlink->tl_flags); |
| 5415 | wake_up_bit(&tlink->tl_flags, TCON_LINK_PENDING); |
| 5416 | |
| 5417 | if (IS_ERR(tlink->tl_tcon)) { |
| 5418 | cifs_put_tlink(tlink); |
| 5419 | return ERR_PTR(-EACCES); |
| 5420 | } |
| 5421 | |
| 5422 | return tlink; |
| 5423 | } |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5424 | |
| 5425 | /* |
| 5426 | * periodic workqueue job that scans tcon_tree for a superblock and closes |
| 5427 | * out tcons. |
| 5428 | */ |
| 5429 | static void |
| 5430 | cifs_prune_tlinks(struct work_struct *work) |
| 5431 | { |
| 5432 | struct cifs_sb_info *cifs_sb = container_of(work, struct cifs_sb_info, |
| 5433 | prune_tlinks.work); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5434 | struct rb_root *root = &cifs_sb->tlink_tree; |
Colin Ian King | 37e12f5 | 2018-01-17 09:52:39 +0000 | [diff] [blame] | 5435 | struct rb_node *node; |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5436 | struct rb_node *tmp; |
| 5437 | struct tcon_link *tlink; |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5438 | |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5439 | /* |
| 5440 | * Because we drop the spinlock in the loop in order to put the tlink |
| 5441 | * it's not guarded against removal of links from the tree. The only |
| 5442 | * places that remove entries from the tree are this function and |
| 5443 | * umounts. Because this function is non-reentrant and is canceled |
| 5444 | * before umount can proceed, this is safe. |
| 5445 | */ |
| 5446 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 5447 | node = rb_first(root); |
| 5448 | while (node != NULL) { |
| 5449 | tmp = node; |
| 5450 | node = rb_next(tmp); |
| 5451 | tlink = rb_entry(tmp, struct tcon_link, tl_rbnode); |
| 5452 | |
| 5453 | if (test_bit(TCON_LINK_MASTER, &tlink->tl_flags) || |
| 5454 | atomic_read(&tlink->tl_count) != 0 || |
| 5455 | time_after(tlink->tl_time + TLINK_IDLE_EXPIRE, jiffies)) |
| 5456 | continue; |
| 5457 | |
| 5458 | cifs_get_tlink(tlink); |
| 5459 | clear_bit(TCON_LINK_IN_TREE, &tlink->tl_flags); |
| 5460 | rb_erase(tmp, root); |
| 5461 | |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5462 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 5463 | cifs_put_tlink(tlink); |
| 5464 | spin_lock(&cifs_sb->tlink_tree_lock); |
| 5465 | } |
| 5466 | spin_unlock(&cifs_sb->tlink_tree_lock); |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5467 | |
Jeff Layton | da472fc | 2012-03-23 14:40:53 -0400 | [diff] [blame] | 5468 | queue_delayed_work(cifsiod_wq, &cifs_sb->prune_tlinks, |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 5469 | TLINK_IDLE_EXPIRE); |
| 5470 | } |