blob: 3bcf881c3ae943036c7687449d4f257b8cbb3ff0 [file] [log] [blame]
Ronnie Sahlberga6a9cff2020-10-21 10:22:33 +10001// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2020, Microsoft Corporation.
4 *
5 * Author(s): Steve French <stfrench@microsoft.com>
6 * David Howells <dhowells@redhat.com>
7 */
8
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06009/*
10#include <linux/module.h>
11#include <linux/nsproxy.h>
12#include <linux/slab.h>
13#include <linux/magic.h>
14#include <linux/security.h>
15#include <net/net_namespace.h>
16*/
17
18#include <linux/ctype.h>
19#include <linux/fs_context.h>
20#include <linux/fs_parser.h>
21#include <linux/fs.h>
22#include <linux/mount.h>
23#include <linux/parser.h>
24#include <linux/utsname.h>
25#include "cifsfs.h"
26#include "cifspdu.h"
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +100027#include "cifsglob.h"
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +100028#include "cifsproto.h"
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -060029#include "cifs_unicode.h"
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +100030#include "cifs_debug.h"
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -060031#include "cifs_fs_sb.h"
32#include "ntlmssp.h"
33#include "nterr.h"
34#include "rfc1002pdu.h"
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +100035#include "fs_context.h"
36
Ronnie Sahlberg555782a2020-10-21 12:10:44 +100037static const match_table_t cifs_smb_version_tokens = {
38 { Smb_1, SMB1_VERSION_STRING },
39 { Smb_20, SMB20_VERSION_STRING},
40 { Smb_21, SMB21_VERSION_STRING },
41 { Smb_30, SMB30_VERSION_STRING },
42 { Smb_302, SMB302_VERSION_STRING },
43 { Smb_302, ALT_SMB302_VERSION_STRING },
44 { Smb_311, SMB311_VERSION_STRING },
45 { Smb_311, ALT_SMB311_VERSION_STRING },
46 { Smb_3any, SMB3ANY_VERSION_STRING },
47 { Smb_default, SMBDEFAULT_VERSION_STRING },
48 { Smb_version_err, NULL }
49};
50
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +100051static const match_table_t cifs_secflavor_tokens = {
52 { Opt_sec_krb5, "krb5" },
53 { Opt_sec_krb5i, "krb5i" },
54 { Opt_sec_krb5p, "krb5p" },
55 { Opt_sec_ntlmsspi, "ntlmsspi" },
56 { Opt_sec_ntlmssp, "ntlmssp" },
57 { Opt_ntlm, "ntlm" },
58 { Opt_sec_ntlmi, "ntlmi" },
59 { Opt_sec_ntlmv2, "nontlm" },
60 { Opt_sec_ntlmv2, "ntlmv2" },
61 { Opt_sec_ntlmv2i, "ntlmv2i" },
62 { Opt_sec_lanman, "lanman" },
63 { Opt_sec_none, "none" },
64
65 { Opt_sec_err, NULL }
66};
67
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -060068const struct fs_parameter_spec smb3_fs_parameters[] = {
69 /* Mount options that take no arguments */
70 fsparam_flag_no("user_xattr", Opt_user_xattr),
71 fsparam_flag_no("forceuid", Opt_forceuid),
72 fsparam_flag_no("multichannel", Opt_multichannel),
73 fsparam_flag_no("forcegid", Opt_forcegid),
74 fsparam_flag("noblocksend", Opt_noblocksend),
75 fsparam_flag("noautotune", Opt_noautotune),
76 fsparam_flag("nolease", Opt_nolease),
77 fsparam_flag_no("hard", Opt_hard),
78 fsparam_flag_no("soft", Opt_soft),
79 fsparam_flag_no("perm", Opt_perm),
80 fsparam_flag("nodelete", Opt_nodelete),
81 fsparam_flag_no("mapposix", Opt_mapposix),
82 fsparam_flag("mapchars", Opt_mapchars),
83 fsparam_flag("nomapchars", Opt_nomapchars),
84 fsparam_flag_no("sfu", Opt_sfu),
85 fsparam_flag("nodfs", Opt_nodfs),
86 fsparam_flag_no("posixpaths", Opt_posixpaths),
87 fsparam_flag_no("unix", Opt_unix),
88 fsparam_flag_no("linux", Opt_unix),
89 fsparam_flag_no("posix", Opt_unix),
90 fsparam_flag("nocase", Opt_nocase),
91 fsparam_flag("ignorecase", Opt_nocase),
92 fsparam_flag_no("brl", Opt_brl),
93 fsparam_flag_no("handlecache", Opt_handlecache),
94 fsparam_flag("forcemandatorylock", Opt_forcemandatorylock),
95 fsparam_flag("forcemand", Opt_forcemandatorylock),
96 fsparam_flag("setuidfromacl", Opt_setuidfromacl),
Steve French27cf9482020-12-16 01:22:54 -060097 fsparam_flag("idsfromsid", Opt_setuidfromacl),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -060098 fsparam_flag_no("setuids", Opt_setuids),
99 fsparam_flag_no("dynperm", Opt_dynperm),
100 fsparam_flag_no("intr", Opt_intr),
101 fsparam_flag_no("strictsync", Opt_strictsync),
102 fsparam_flag_no("serverino", Opt_serverino),
103 fsparam_flag("rwpidforward", Opt_rwpidforward),
104 fsparam_flag("cifsacl", Opt_cifsacl),
105 fsparam_flag_no("acl", Opt_acl),
106 fsparam_flag("locallease", Opt_locallease),
107 fsparam_flag("sign", Opt_sign),
108 fsparam_flag("ignore_signature", Opt_ignore_signature),
Steve French27cf9482020-12-16 01:22:54 -0600109 fsparam_flag("signloosely", Opt_ignore_signature),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600110 fsparam_flag("seal", Opt_seal),
111 fsparam_flag("noac", Opt_noac),
112 fsparam_flag("fsc", Opt_fsc),
113 fsparam_flag("mfsymlinks", Opt_mfsymlinks),
114 fsparam_flag("multiuser", Opt_multiuser),
115 fsparam_flag("sloppy", Opt_sloppy),
116 fsparam_flag("nosharesock", Opt_nosharesock),
Steve French27cf9482020-12-16 01:22:54 -0600117 fsparam_flag_no("persistenthandles", Opt_persistent),
118 fsparam_flag_no("resilienthandles", Opt_resilient),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600119 fsparam_flag("domainauto", Opt_domainauto),
120 fsparam_flag("rdma", Opt_rdma),
121 fsparam_flag("modesid", Opt_modesid),
Steve French27cf9482020-12-16 01:22:54 -0600122 fsparam_flag("modefromsid", Opt_modesid),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600123 fsparam_flag("rootfs", Opt_rootfs),
124 fsparam_flag("compress", Opt_compress),
Samuel Cabrero0ac4e292020-12-11 22:59:29 -0600125 fsparam_flag("witness", Opt_witness),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600126
127 /* Mount options which take numeric value */
128 fsparam_u32("backupuid", Opt_backupuid),
129 fsparam_u32("backupgid", Opt_backupgid),
130 fsparam_u32("uid", Opt_uid),
131 fsparam_u32("cruid", Opt_cruid),
132 fsparam_u32("gid", Opt_gid),
133 fsparam_u32("file_mode", Opt_file_mode),
134 fsparam_u32("dirmode", Opt_dirmode),
135 fsparam_u32("dir_mode", Opt_dirmode),
136 fsparam_u32("port", Opt_port),
137 fsparam_u32("min_enc_offload", Opt_min_enc_offload),
Steve French27cf9482020-12-16 01:22:54 -0600138 fsparam_u32("esize", Opt_min_enc_offload),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600139 fsparam_u32("bsize", Opt_blocksize),
Steve Frenchb8d64f82021-04-24 21:46:23 -0500140 fsparam_u32("rasize", Opt_rasize),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600141 fsparam_u32("rsize", Opt_rsize),
142 fsparam_u32("wsize", Opt_wsize),
143 fsparam_u32("actimeo", Opt_actimeo),
Steve French4c9f9482021-02-23 15:50:57 -0600144 fsparam_u32("acdirmax", Opt_acdirmax),
Steve French57804642021-02-24 12:12:53 -0600145 fsparam_u32("acregmax", Opt_acregmax),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600146 fsparam_u32("echo_interval", Opt_echo_interval),
147 fsparam_u32("max_credits", Opt_max_credits),
148 fsparam_u32("handletimeout", Opt_handletimeout),
149 fsparam_u32("snapshot", Opt_snapshot),
150 fsparam_u32("max_channels", Opt_max_channels),
151
152 /* Mount options which take string value */
153 fsparam_string("source", Opt_source),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600154 fsparam_string("user", Opt_user),
155 fsparam_string("username", Opt_user),
156 fsparam_string("pass", Opt_pass),
157 fsparam_string("password", Opt_pass),
158 fsparam_string("ip", Opt_ip),
159 fsparam_string("addr", Opt_ip),
160 fsparam_string("domain", Opt_domain),
161 fsparam_string("dom", Opt_domain),
162 fsparam_string("srcaddr", Opt_srcaddr),
163 fsparam_string("iocharset", Opt_iocharset),
164 fsparam_string("netbiosname", Opt_netbiosname),
165 fsparam_string("servern", Opt_servern),
166 fsparam_string("ver", Opt_ver),
167 fsparam_string("vers", Opt_vers),
168 fsparam_string("sec", Opt_sec),
169 fsparam_string("cache", Opt_cache),
170
171 /* Arguments that should be ignored */
172 fsparam_flag("guest", Opt_ignore),
173 fsparam_flag("noatime", Opt_ignore),
174 fsparam_flag("relatime", Opt_ignore),
175 fsparam_flag("_netdev", Opt_ignore),
176 fsparam_flag_no("suid", Opt_ignore),
177 fsparam_flag_no("exec", Opt_ignore),
178 fsparam_flag_no("dev", Opt_ignore),
179 fsparam_flag_no("mand", Opt_ignore),
Adam Harvey19d51582021-01-27 13:44:35 -0800180 fsparam_flag_no("auto", Opt_ignore),
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600181 fsparam_string("cred", Opt_ignore),
182 fsparam_string("credentials", Opt_ignore),
Ronnie Sahlbergaf1a3d22021-02-11 16:06:16 +1000183 /*
184 * UNC and prefixpath is now extracted from Opt_source
185 * in the new mount API so we can just ignore them going forward.
186 */
187 fsparam_string("unc", Opt_ignore),
Steve Frenchc9b8cd62021-01-28 11:20:22 -0600188 fsparam_string("prefixpath", Opt_ignore),
Dmitry Osipenko427c4f02020-12-14 14:37:45 +0300189 {}
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600190};
191
Aurelien Apteld9a86922021-03-01 19:32:09 +0100192static int
193cifs_parse_security_flavors(struct fs_context *fc, char *value, struct smb3_fs_context *ctx)
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000194{
195
196 substring_t args[MAX_OPT_ARGS];
197
198 /*
199 * With mount options, the last one should win. Reset any existing
200 * settings back to default.
201 */
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600202 ctx->sectype = Unspecified;
203 ctx->sign = false;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000204
205 switch (match_token(value, cifs_secflavor_tokens, args)) {
206 case Opt_sec_krb5p:
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100207 cifs_errorf(fc, "sec=krb5p is not supported!\n");
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000208 return 1;
209 case Opt_sec_krb5i:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600210 ctx->sign = true;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000211 fallthrough;
212 case Opt_sec_krb5:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600213 ctx->sectype = Kerberos;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000214 break;
215 case Opt_sec_ntlmsspi:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600216 ctx->sign = true;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000217 fallthrough;
218 case Opt_sec_ntlmssp:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600219 ctx->sectype = RawNTLMSSP;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000220 break;
221 case Opt_sec_ntlmi:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600222 ctx->sign = true;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000223 fallthrough;
224 case Opt_ntlm:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600225 ctx->sectype = NTLM;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000226 break;
227 case Opt_sec_ntlmv2i:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600228 ctx->sign = true;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000229 fallthrough;
230 case Opt_sec_ntlmv2:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600231 ctx->sectype = NTLMv2;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000232 break;
233#ifdef CONFIG_CIFS_WEAK_PW_HASH
234 case Opt_sec_lanman:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600235 ctx->sectype = LANMAN;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000236 break;
237#endif
238 case Opt_sec_none:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600239 ctx->nullauth = 1;
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000240 break;
241 default:
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100242 cifs_errorf(fc, "bad security option: %s\n", value);
Ronnie Sahlberg5c6e5aa2020-10-21 10:37:11 +1000243 return 1;
244 }
245
246 return 0;
247}
Ronnie Sahlberg2f20f072020-10-21 11:30:35 +1000248
249static const match_table_t cifs_cacheflavor_tokens = {
250 { Opt_cache_loose, "loose" },
251 { Opt_cache_strict, "strict" },
252 { Opt_cache_none, "none" },
253 { Opt_cache_ro, "ro" },
254 { Opt_cache_rw, "singleclient" },
255 { Opt_cache_err, NULL }
256};
257
Aurelien Apteld9a86922021-03-01 19:32:09 +0100258static int
259cifs_parse_cache_flavor(struct fs_context *fc, char *value, struct smb3_fs_context *ctx)
Ronnie Sahlberg2f20f072020-10-21 11:30:35 +1000260{
261 substring_t args[MAX_OPT_ARGS];
262
263 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
264 case Opt_cache_loose:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600265 ctx->direct_io = false;
266 ctx->strict_io = false;
267 ctx->cache_ro = false;
268 ctx->cache_rw = false;
Ronnie Sahlberg2f20f072020-10-21 11:30:35 +1000269 break;
270 case Opt_cache_strict:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600271 ctx->direct_io = false;
272 ctx->strict_io = true;
273 ctx->cache_ro = false;
274 ctx->cache_rw = false;
Ronnie Sahlberg2f20f072020-10-21 11:30:35 +1000275 break;
276 case Opt_cache_none:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600277 ctx->direct_io = true;
278 ctx->strict_io = false;
279 ctx->cache_ro = false;
280 ctx->cache_rw = false;
Ronnie Sahlberg2f20f072020-10-21 11:30:35 +1000281 break;
282 case Opt_cache_ro:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600283 ctx->direct_io = false;
284 ctx->strict_io = false;
285 ctx->cache_ro = true;
286 ctx->cache_rw = false;
Ronnie Sahlberg2f20f072020-10-21 11:30:35 +1000287 break;
288 case Opt_cache_rw:
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600289 ctx->direct_io = false;
290 ctx->strict_io = false;
291 ctx->cache_ro = false;
292 ctx->cache_rw = true;
Ronnie Sahlberg2f20f072020-10-21 11:30:35 +1000293 break;
294 default:
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100295 cifs_errorf(fc, "bad cache= option: %s\n", value);
Ronnie Sahlberg2f20f072020-10-21 11:30:35 +1000296 return 1;
297 }
298 return 0;
299}
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000300
301#define DUP_CTX_STR(field) \
302do { \
303 if (ctx->field) { \
304 new_ctx->field = kstrdup(ctx->field, GFP_ATOMIC); \
305 if (new_ctx->field == NULL) { \
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +1000306 smb3_cleanup_fs_context_contents(new_ctx); \
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000307 return -ENOMEM; \
308 } \
309 } \
310} while (0)
311
312int
313smb3_fs_context_dup(struct smb3_fs_context *new_ctx, struct smb3_fs_context *ctx)
314{
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000315 memcpy(new_ctx, ctx, sizeof(*ctx));
316 new_ctx->prepath = NULL;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600317 new_ctx->mount_options = NULL;
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000318 new_ctx->nodename = NULL;
319 new_ctx->username = NULL;
320 new_ctx->password = NULL;
321 new_ctx->domainname = NULL;
322 new_ctx->UNC = NULL;
Ronnie Sahlbergaf1a3d22021-02-11 16:06:16 +1000323 new_ctx->source = NULL;
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000324 new_ctx->iocharset = NULL;
325
326 /*
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +1000327 * Make sure to stay in sync with smb3_cleanup_fs_context_contents()
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000328 */
329 DUP_CTX_STR(prepath);
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600330 DUP_CTX_STR(mount_options);
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000331 DUP_CTX_STR(username);
332 DUP_CTX_STR(password);
333 DUP_CTX_STR(UNC);
Ronnie Sahlbergaf1a3d22021-02-11 16:06:16 +1000334 DUP_CTX_STR(source);
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000335 DUP_CTX_STR(domainname);
336 DUP_CTX_STR(nodename);
337 DUP_CTX_STR(iocharset);
338
Menglong Dongc13e7af2021-01-12 01:13:40 -0800339 return 0;
Ronnie Sahlberg837e3a12020-11-02 09:36:24 +1000340}
Ronnie Sahlberg66e7b092020-11-05 13:58:14 +1000341
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600342static int
Aurelien Apteld9a86922021-03-01 19:32:09 +0100343cifs_parse_smb_version(struct fs_context *fc, char *value, struct smb3_fs_context *ctx, bool is_smb3)
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600344{
345 substring_t args[MAX_OPT_ARGS];
346
347 switch (match_token(value, cifs_smb_version_tokens, args)) {
348#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
349 case Smb_1:
350 if (disable_legacy_dialects) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100351 cifs_errorf(fc, "mount with legacy dialect disabled\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600352 return 1;
353 }
354 if (is_smb3) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100355 cifs_errorf(fc, "vers=1.0 (cifs) not permitted when mounting with smb3\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600356 return 1;
357 }
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100358 cifs_errorf(fc, "Use of the less secure dialect vers=1.0 is not recommended unless required for access to very old servers\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600359 ctx->ops = &smb1_operations;
360 ctx->vals = &smb1_values;
361 break;
362 case Smb_20:
363 if (disable_legacy_dialects) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100364 cifs_errorf(fc, "mount with legacy dialect disabled\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600365 return 1;
366 }
367 if (is_smb3) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100368 cifs_errorf(fc, "vers=2.0 not permitted when mounting with smb3\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600369 return 1;
370 }
371 ctx->ops = &smb20_operations;
372 ctx->vals = &smb20_values;
373 break;
374#else
375 case Smb_1:
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100376 cifs_errorf(fc, "vers=1.0 (cifs) mount not permitted when legacy dialects disabled\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600377 return 1;
378 case Smb_20:
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100379 cifs_errorf(fc, "vers=2.0 mount not permitted when legacy dialects disabled\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600380 return 1;
381#endif /* CIFS_ALLOW_INSECURE_LEGACY */
382 case Smb_21:
383 ctx->ops = &smb21_operations;
384 ctx->vals = &smb21_values;
385 break;
386 case Smb_30:
387 ctx->ops = &smb30_operations;
388 ctx->vals = &smb30_values;
389 break;
390 case Smb_302:
391 ctx->ops = &smb30_operations; /* currently identical with 3.0 */
392 ctx->vals = &smb302_values;
393 break;
394 case Smb_311:
395 ctx->ops = &smb311_operations;
396 ctx->vals = &smb311_values;
397 break;
398 case Smb_3any:
399 ctx->ops = &smb30_operations; /* currently identical with 3.0 */
400 ctx->vals = &smb3any_values;
401 break;
402 case Smb_default:
Steve French6dffa4c2021-02-02 00:03:58 -0600403 ctx->ops = &smb30_operations;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600404 ctx->vals = &smbdefault_values;
405 break;
406 default:
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100407 cifs_errorf(fc, "Unknown vers= option specified: %s\n", value);
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600408 return 1;
409 }
410 return 0;
411}
412
Ronnie Sahlberg0d4873f2021-01-28 21:35:10 -0600413int smb3_parse_opt(const char *options, const char *key, char **val)
414{
415 int rc = -ENOENT;
416 char *opts, *orig, *p;
417
418 orig = opts = kstrdup(options, GFP_KERNEL);
419 if (!opts)
420 return -ENOMEM;
421
422 while ((p = strsep(&opts, ","))) {
423 char *nval;
424
425 if (!*p)
426 continue;
427 if (strncasecmp(p, key, strlen(key)))
428 continue;
429 nval = strchr(p, '=');
430 if (nval) {
431 if (nval == p)
432 continue;
433 *nval++ = 0;
Al Viro8d767222021-03-05 15:02:34 -0500434 *val = kstrdup(nval, GFP_KERNEL);
Ronnie Sahlberg0d4873f2021-01-28 21:35:10 -0600435 rc = !*val ? -ENOMEM : 0;
436 goto out;
437 }
438 }
439out:
440 kfree(orig);
441 return rc;
442}
443
Ronnie Sahlberg66e7b092020-11-05 13:58:14 +1000444/*
445 * Parse a devname into substrings and populate the ctx->UNC and ctx->prepath
446 * fields with the result. Returns 0 on success and an error otherwise
447 * (e.g. ENOMEM or EINVAL)
448 */
449int
450smb3_parse_devname(const char *devname, struct smb3_fs_context *ctx)
451{
452 char *pos;
453 const char *delims = "/\\";
454 size_t len;
455
456 if (unlikely(!devname || !*devname)) {
457 cifs_dbg(VFS, "Device name not specified\n");
458 return -EINVAL;
459 }
460
461 /* make sure we have a valid UNC double delimiter prefix */
462 len = strspn(devname, delims);
463 if (len != 2)
464 return -EINVAL;
465
466 /* find delimiter between host and sharename */
467 pos = strpbrk(devname + 2, delims);
468 if (!pos)
469 return -EINVAL;
470
471 /* skip past delimiter */
472 ++pos;
473
474 /* now go until next delimiter or end of string */
475 len = strcspn(pos, delims);
476
477 /* move "pos" up to delimiter or NULL */
478 pos += len;
Paulo Alcantara5c1acf32021-05-03 11:55:26 -0300479 kfree(ctx->UNC);
Ronnie Sahlberg66e7b092020-11-05 13:58:14 +1000480 ctx->UNC = kstrndup(devname, pos - devname, GFP_KERNEL);
481 if (!ctx->UNC)
482 return -ENOMEM;
483
484 convert_delimiter(ctx->UNC, '\\');
485
486 /* skip any delimiter */
487 if (*pos == '/' || *pos == '\\')
488 pos++;
489
Paulo Alcantara5c1acf32021-05-03 11:55:26 -0300490 kfree(ctx->prepath);
491 ctx->prepath = NULL;
492
Ronnie Sahlberg66e7b092020-11-05 13:58:14 +1000493 /* If pos is NULL then no prepath */
494 if (!*pos)
495 return 0;
496
497 ctx->prepath = kstrdup(pos, GFP_KERNEL);
498 if (!ctx->prepath)
499 return -ENOMEM;
500
501 return 0;
502}
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600503
504static void smb3_fs_context_free(struct fs_context *fc);
505static int smb3_fs_context_parse_param(struct fs_context *fc,
506 struct fs_parameter *param);
507static int smb3_fs_context_parse_monolithic(struct fs_context *fc,
508 void *data);
509static int smb3_get_tree(struct fs_context *fc);
510static int smb3_reconfigure(struct fs_context *fc);
511
512static const struct fs_context_operations smb3_fs_context_ops = {
513 .free = smb3_fs_context_free,
514 .parse_param = smb3_fs_context_parse_param,
515 .parse_monolithic = smb3_fs_context_parse_monolithic,
516 .get_tree = smb3_get_tree,
517 .reconfigure = smb3_reconfigure,
518};
519
520/*
521 * Parse a monolithic block of data from sys_mount().
522 * smb3_fs_context_parse_monolithic - Parse key[=val][,key[=val]]* mount data
523 * @ctx: The superblock configuration to fill in.
524 * @data: The data to parse
525 *
526 * Parse a blob of data that's in key[=val][,key[=val]]* form. This can be
527 * called from the ->monolithic_mount_data() fs_context operation.
528 *
529 * Returns 0 on success or the error returned by the ->parse_option() fs_context
530 * operation on failure.
531 */
532static int smb3_fs_context_parse_monolithic(struct fs_context *fc,
533 void *data)
534{
535 struct smb3_fs_context *ctx = smb3_fc2context(fc);
536 char *options = data, *key;
537 int ret = 0;
538
539 if (!options)
540 return 0;
541
542 ctx->mount_options = kstrdup(data, GFP_KERNEL);
543 if (ctx->mount_options == NULL)
544 return -ENOMEM;
545
546 ret = security_sb_eat_lsm_opts(options, &fc->security);
547 if (ret)
548 return ret;
549
550 /* BB Need to add support for sep= here TBD */
551 while ((key = strsep(&options, ",")) != NULL) {
Ronnie Sahlbergd08395a2021-02-25 17:36:27 +1000552 size_t len;
553 char *value;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600554
Ronnie Sahlbergd08395a2021-02-25 17:36:27 +1000555 if (*key == 0)
556 break;
557
558 /* Check if following character is the deliminator If yes,
559 * we have encountered a double deliminator reset the NULL
560 * character to the deliminator
561 */
562 while (options && options[0] == ',') {
563 len = strlen(key);
564 strcpy(key + len, options);
565 options = strchr(options, ',');
566 if (options)
567 *options++ = 0;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600568 }
Ronnie Sahlbergd08395a2021-02-25 17:36:27 +1000569
570
571 len = 0;
572 value = strchr(key, '=');
573 if (value) {
574 if (value == key)
575 continue;
576 *value++ = 0;
577 len = strlen(value);
578 }
579
580 ret = vfs_parse_fs_string(fc, key, value, len);
581 if (ret < 0)
582 break;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600583 }
584
585 return ret;
586}
587
588/*
589 * Validate the preparsed information in the config.
590 */
591static int smb3_fs_context_validate(struct fs_context *fc)
592{
593 struct smb3_fs_context *ctx = smb3_fc2context(fc);
594
595 if (ctx->rdma && ctx->vals->protocol_id < SMB30_PROT_ID) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100596 cifs_errorf(fc, "SMB Direct requires Version >=3.0\n");
Steve Frenchbd2f0b42021-01-28 16:43:03 -0600597 return -EOPNOTSUPP;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600598 }
599
600#ifndef CONFIG_KEYS
601 /* Muliuser mounts require CONFIG_KEYS support */
602 if (ctx->multiuser) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100603 cifs_errorf(fc, "Multiuser mounts require kernels with CONFIG_KEYS enabled\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600604 return -1;
605 }
606#endif
607
608 if (ctx->got_version == false)
609 pr_warn_once("No dialect specified on mount. Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3.1.1), from CIFS (SMB1). To use the less secure SMB1 dialect to access old servers which do not support SMB3.1.1 (or even SMB3 or SMB2.1) specify vers=1.0 on mount.\n");
610
611
612 if (!ctx->UNC) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100613 cifs_errorf(fc, "CIFS mount error: No usable UNC path provided in device string!\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600614 return -1;
615 }
616
617 /* make sure UNC has a share name */
618 if (strlen(ctx->UNC) < 3 || !strchr(ctx->UNC + 3, '\\')) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100619 cifs_errorf(fc, "Malformed UNC. Unable to find share name.\n");
Steve Frenchbd2f0b42021-01-28 16:43:03 -0600620 return -ENOENT;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600621 }
622
623 if (!ctx->got_ip) {
624 int len;
625 const char *slash;
626
627 /* No ip= option specified? Try to get it from UNC */
628 /* Use the address part of the UNC. */
629 slash = strchr(&ctx->UNC[2], '\\');
630 len = slash - &ctx->UNC[2];
631 if (!cifs_convert_address((struct sockaddr *)&ctx->dstaddr,
632 &ctx->UNC[2], len)) {
633 pr_err("Unable to determine destination address\n");
Steve Frenchbd2f0b42021-01-28 16:43:03 -0600634 return -EHOSTUNREACH;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600635 }
636 }
637
638 /* set the port that we got earlier */
639 cifs_set_port((struct sockaddr *)&ctx->dstaddr, ctx->port);
640
641 if (ctx->override_uid && !ctx->uid_specified) {
642 ctx->override_uid = 0;
643 pr_notice("ignoring forceuid mount option specified with no uid= option\n");
644 }
645
646 if (ctx->override_gid && !ctx->gid_specified) {
647 ctx->override_gid = 0;
648 pr_notice("ignoring forcegid mount option specified with no gid= option\n");
649 }
650
651 return 0;
652}
653
654static int smb3_get_tree_common(struct fs_context *fc)
655{
656 struct smb3_fs_context *ctx = smb3_fc2context(fc);
657 struct dentry *root;
658 int rc = 0;
659
660 root = cifs_smb3_do_mount(fc->fs_type, 0, ctx);
661 if (IS_ERR(root))
662 return PTR_ERR(root);
663
664 fc->root = root;
665
666 return rc;
667}
668
669/*
670 * Create an SMB3 superblock from the parameters passed.
671 */
672static int smb3_get_tree(struct fs_context *fc)
673{
674 int err = smb3_fs_context_validate(fc);
675
676 if (err)
677 return err;
678 return smb3_get_tree_common(fc);
679}
680
681static void smb3_fs_context_free(struct fs_context *fc)
682{
683 struct smb3_fs_context *ctx = smb3_fc2context(fc);
684
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +1000685 smb3_cleanup_fs_context(ctx);
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600686}
687
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000688/*
689 * Compare the old and new proposed context during reconfigure
690 * and check if the changes are compatible.
691 */
Aurelien Apteld9a86922021-03-01 19:32:09 +0100692static int smb3_verify_reconfigure_ctx(struct fs_context *fc,
693 struct smb3_fs_context *new_ctx,
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000694 struct smb3_fs_context *old_ctx)
695{
Ronnie Sahlberg531f03b2020-12-14 16:40:23 +1000696 if (new_ctx->posix_paths != old_ctx->posix_paths) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100697 cifs_errorf(fc, "can not change posixpaths during remount\n");
Ronnie Sahlberg531f03b2020-12-14 16:40:23 +1000698 return -EINVAL;
699 }
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000700 if (new_ctx->sectype != old_ctx->sectype) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100701 cifs_errorf(fc, "can not change sec during remount\n");
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000702 return -EINVAL;
703 }
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000704 if (new_ctx->multiuser != old_ctx->multiuser) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100705 cifs_errorf(fc, "can not change multiuser during remount\n");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000706 return -EINVAL;
707 }
708 if (new_ctx->UNC &&
709 (!old_ctx->UNC || strcmp(new_ctx->UNC, old_ctx->UNC))) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100710 cifs_errorf(fc, "can not change UNC during remount\n");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000711 return -EINVAL;
712 }
713 if (new_ctx->username &&
714 (!old_ctx->username || strcmp(new_ctx->username, old_ctx->username))) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100715 cifs_errorf(fc, "can not change username during remount\n");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000716 return -EINVAL;
717 }
718 if (new_ctx->password &&
719 (!old_ctx->password || strcmp(new_ctx->password, old_ctx->password))) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100720 cifs_errorf(fc, "can not change password during remount\n");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000721 return -EINVAL;
722 }
723 if (new_ctx->domainname &&
724 (!old_ctx->domainname || strcmp(new_ctx->domainname, old_ctx->domainname))) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100725 cifs_errorf(fc, "can not change domainname during remount\n");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000726 return -EINVAL;
727 }
728 if (new_ctx->nodename &&
729 (!old_ctx->nodename || strcmp(new_ctx->nodename, old_ctx->nodename))) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100730 cifs_errorf(fc, "can not change nodename during remount\n");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000731 return -EINVAL;
732 }
733 if (new_ctx->iocharset &&
734 (!old_ctx->iocharset || strcmp(new_ctx->iocharset, old_ctx->iocharset))) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100735 cifs_errorf(fc, "can not change iocharset during remount\n");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000736 return -EINVAL;
737 }
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000738
739 return 0;
740}
741
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000742#define STEAL_STRING(cifs_sb, ctx, field) \
743do { \
744 kfree(ctx->field); \
745 ctx->field = cifs_sb->ctx->field; \
746 cifs_sb->ctx->field = NULL; \
747} while (0)
748
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600749static int smb3_reconfigure(struct fs_context *fc)
750{
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000751 struct smb3_fs_context *ctx = smb3_fc2context(fc);
752 struct dentry *root = fc->root;
753 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
754 int rc;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600755
Aurelien Apteld9a86922021-03-01 19:32:09 +0100756 rc = smb3_verify_reconfigure_ctx(fc, ctx, cifs_sb->ctx);
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000757 if (rc)
758 return rc;
759
760 /*
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000761 * We can not change UNC/username/password/domainname/nodename/iocharset
762 * during reconnect so ignore what we have in the new context and
763 * just use what we already have in cifs_sb->ctx.
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000764 */
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000765 STEAL_STRING(cifs_sb, ctx, UNC);
Ronnie Sahlbergaf1a3d22021-02-11 16:06:16 +1000766 STEAL_STRING(cifs_sb, ctx, source);
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000767 STEAL_STRING(cifs_sb, ctx, username);
768 STEAL_STRING(cifs_sb, ctx, password);
769 STEAL_STRING(cifs_sb, ctx, domainname);
770 STEAL_STRING(cifs_sb, ctx, nodename);
771 STEAL_STRING(cifs_sb, ctx, iocharset);
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000772
Steve French2d060492020-12-16 18:04:27 -0600773 /* if rsize or wsize not passed in on remount, use previous values */
774 if (ctx->rsize == 0)
775 ctx->rsize = cifs_sb->ctx->rsize;
776 if (ctx->wsize == 0)
777 ctx->wsize = cifs_sb->ctx->wsize;
778
779
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000780 smb3_cleanup_fs_context_contents(cifs_sb->ctx);
781 rc = smb3_fs_context_dup(cifs_sb->ctx, ctx);
Ronnie Sahlberg1cb6c3d2020-12-14 16:40:26 +1000782 smb3_update_mnt_flags(cifs_sb);
Ronnie Sahlbergd6a78782020-12-14 16:40:18 +1000783
784 return rc;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600785}
786
787static int smb3_fs_context_parse_param(struct fs_context *fc,
788 struct fs_parameter *param)
789{
790 struct fs_parse_result result;
791 struct smb3_fs_context *ctx = smb3_fc2context(fc);
792 int i, opt;
793 bool is_smb3 = !strcmp(fc->fs_type->name, "smb3");
794 bool skip_parsing = false;
795
796 cifs_dbg(FYI, "CIFS: parsing cifs mount option '%s'\n", param->key);
797
798 /*
799 * fs_parse can not handle string options with an empty value so
800 * we will need special handling of them.
801 */
802 if (param->type == fs_value_is_string && param->string[0] == 0) {
Ronnie Sahlberg5c4b6422020-12-14 16:40:27 +1000803 if (!strcmp("pass", param->key) || !strcmp("password", param->key)) {
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600804 skip_parsing = true;
Ronnie Sahlberg5c4b6422020-12-14 16:40:27 +1000805 opt = Opt_pass;
Steve French31f65512020-12-16 16:26:35 -0600806 } else if (!strcmp("user", param->key) || !strcmp("username", param->key)) {
807 skip_parsing = true;
808 opt = Opt_user;
Ronnie Sahlberg5c4b6422020-12-14 16:40:27 +1000809 }
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600810 }
811
812 if (!skip_parsing) {
813 opt = fs_parse(fc, smb3_fs_parameters, param, &result);
814 if (opt < 0)
815 return ctx->sloppy ? 1 : opt;
816 }
817
818 switch (opt) {
819 case Opt_compress:
820 ctx->compression = UNKNOWN_TYPE;
821 cifs_dbg(VFS,
822 "SMB3 compression support is experimental\n");
823 break;
824 case Opt_nodfs:
825 ctx->nodfs = 1;
826 break;
827 case Opt_hard:
828 if (result.negated)
829 ctx->retry = 0;
830 else
831 ctx->retry = 1;
832 break;
833 case Opt_soft:
834 if (result.negated)
835 ctx->retry = 1;
836 else
837 ctx->retry = 0;
838 break;
839 case Opt_mapposix:
840 if (result.negated)
841 ctx->remap = false;
842 else {
843 ctx->remap = true;
844 ctx->sfu_remap = false; /* disable SFU mapping */
845 }
846 break;
847 case Opt_user_xattr:
848 if (result.negated)
849 ctx->no_xattr = 1;
850 else
851 ctx->no_xattr = 0;
852 break;
853 case Opt_forceuid:
854 if (result.negated)
855 ctx->override_uid = 0;
856 else
857 ctx->override_uid = 1;
858 break;
859 case Opt_forcegid:
860 if (result.negated)
861 ctx->override_gid = 0;
862 else
863 ctx->override_gid = 1;
864 break;
865 case Opt_perm:
866 if (result.negated)
867 ctx->noperm = 1;
868 else
869 ctx->noperm = 0;
870 break;
871 case Opt_dynperm:
872 if (result.negated)
873 ctx->dynperm = 0;
874 else
875 ctx->dynperm = 1;
876 break;
877 case Opt_sfu:
878 if (result.negated)
879 ctx->sfu_emul = 0;
880 else
881 ctx->sfu_emul = 1;
882 break;
883 case Opt_noblocksend:
884 ctx->noblocksnd = 1;
885 break;
886 case Opt_noautotune:
887 ctx->noautotune = 1;
888 break;
889 case Opt_nolease:
890 ctx->no_lease = 1;
891 break;
892 case Opt_nodelete:
893 ctx->nodelete = 1;
894 break;
895 case Opt_multichannel:
896 if (result.negated) {
897 ctx->multichannel = false;
898 ctx->max_channels = 1;
899 } else {
900 ctx->multichannel = true;
901 /* if number of channels not specified, default to 2 */
902 if (ctx->max_channels < 2)
903 ctx->max_channels = 2;
904 }
905 break;
906 case Opt_uid:
907 ctx->linux_uid.val = result.uint_32;
908 ctx->uid_specified = true;
909 break;
910 case Opt_cruid:
911 ctx->cred_uid.val = result.uint_32;
912 break;
913 case Opt_backupgid:
914 ctx->backupgid.val = result.uint_32;
915 ctx->backupgid_specified = true;
916 break;
917 case Opt_gid:
918 ctx->linux_gid.val = result.uint_32;
919 ctx->gid_specified = true;
920 break;
921 case Opt_port:
922 ctx->port = result.uint_32;
923 break;
924 case Opt_file_mode:
925 ctx->file_mode = result.uint_32;
926 break;
927 case Opt_dirmode:
928 ctx->dir_mode = result.uint_32;
929 break;
930 case Opt_min_enc_offload:
931 ctx->min_offload = result.uint_32;
932 break;
933 case Opt_blocksize:
934 /*
935 * inode blocksize realistically should never need to be
936 * less than 16K or greater than 16M and default is 1MB.
937 * Note that small inode block sizes (e.g. 64K) can lead
938 * to very poor performance of common tools like cp and scp
939 */
940 if ((result.uint_32 < CIFS_MAX_MSGSIZE) ||
941 (result.uint_32 > (4 * SMB3_DEFAULT_IOSIZE))) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100942 cifs_errorf(fc, "%s: Invalid blocksize\n",
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600943 __func__);
944 goto cifs_parse_mount_err;
945 }
946 ctx->bsize = result.uint_32;
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +1000947 ctx->got_bsize = true;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600948 break;
Steve Frenchb8d64f82021-04-24 21:46:23 -0500949 case Opt_rasize:
950 /*
951 * readahead size realistically should never need to be
952 * less than 1M (CIFS_DEFAULT_IOSIZE) or greater than 32M
953 * (perhaps an exception should be considered in the
954 * for the case of a large number of channels
955 * when multichannel is negotiated) since that would lead
956 * to plenty of parallel I/O in flight to the server.
957 * Note that smaller read ahead sizes would
958 * hurt performance of common tools like cp and scp
959 * which often trigger sequential i/o with read ahead
960 */
961 if ((result.uint_32 > (8 * SMB3_DEFAULT_IOSIZE)) ||
962 (result.uint_32 < CIFS_DEFAULT_IOSIZE)) {
963 cifs_errorf(fc, "%s: Invalid rasize %d vs. %d\n",
964 __func__, result.uint_32, SMB3_DEFAULT_IOSIZE);
965 goto cifs_parse_mount_err;
966 }
967 ctx->rasize = result.uint_32;
968 break;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600969 case Opt_rsize:
970 ctx->rsize = result.uint_32;
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +1000971 ctx->got_rsize = true;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600972 break;
973 case Opt_wsize:
974 ctx->wsize = result.uint_32;
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +1000975 ctx->got_wsize = true;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600976 break;
Steve French57804642021-02-24 12:12:53 -0600977 case Opt_acregmax:
978 ctx->acregmax = HZ * result.uint_32;
979 if (ctx->acregmax > CIFS_MAX_ACTIMEO) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100980 cifs_errorf(fc, "acregmax too large\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600981 goto cifs_parse_mount_err;
982 }
983 break;
Steve French4c9f9482021-02-23 15:50:57 -0600984 case Opt_acdirmax:
985 ctx->acdirmax = HZ * result.uint_32;
986 if (ctx->acdirmax > CIFS_MAX_ACTIMEO) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100987 cifs_errorf(fc, "acdirmax too large\n");
Steve French4c9f9482021-02-23 15:50:57 -0600988 goto cifs_parse_mount_err;
989 }
990 break;
Steve French57804642021-02-24 12:12:53 -0600991 case Opt_actimeo:
992 if (HZ * result.uint_32 > CIFS_MAX_ACTIMEO) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100993 cifs_errorf(fc, "timeout too large\n");
Steve French57804642021-02-24 12:12:53 -0600994 goto cifs_parse_mount_err;
995 }
996 if ((ctx->acdirmax != CIFS_DEF_ACTIMEO) ||
997 (ctx->acregmax != CIFS_DEF_ACTIMEO)) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +0100998 cifs_errorf(fc, "actimeo ignored since acregmax or acdirmax specified\n");
Steve French57804642021-02-24 12:12:53 -0600999 break;
1000 }
1001 ctx->acdirmax = ctx->acregmax = HZ * result.uint_32;
1002 break;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001003 case Opt_echo_interval:
1004 ctx->echo_interval = result.uint_32;
1005 break;
1006 case Opt_snapshot:
1007 ctx->snapshot_time = result.uint_32;
1008 break;
1009 case Opt_max_credits:
1010 if (result.uint_32 < 20 || result.uint_32 > 60000) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001011 cifs_errorf(fc, "%s: Invalid max_credits value\n",
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001012 __func__);
1013 goto cifs_parse_mount_err;
1014 }
1015 ctx->max_credits = result.uint_32;
1016 break;
1017 case Opt_max_channels:
1018 if (result.uint_32 < 1 || result.uint_32 > CIFS_MAX_CHANNELS) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001019 cifs_errorf(fc, "%s: Invalid max_channels value, needs to be 1-%d\n",
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001020 __func__, CIFS_MAX_CHANNELS);
1021 goto cifs_parse_mount_err;
1022 }
1023 ctx->max_channels = result.uint_32;
1024 break;
1025 case Opt_handletimeout:
1026 ctx->handle_timeout = result.uint_32;
1027 if (ctx->handle_timeout > SMB3_MAX_HANDLE_TIMEOUT) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001028 cifs_errorf(fc, "Invalid handle cache timeout, longer than 16 minutes\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001029 goto cifs_parse_mount_err;
1030 }
1031 break;
1032 case Opt_source:
1033 kfree(ctx->UNC);
1034 ctx->UNC = NULL;
1035 switch (smb3_parse_devname(param->string, ctx)) {
1036 case 0:
1037 break;
1038 case -ENOMEM:
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001039 cifs_errorf(fc, "Unable to allocate memory for devname\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001040 goto cifs_parse_mount_err;
1041 case -EINVAL:
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001042 cifs_errorf(fc, "Malformed UNC in devname\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001043 goto cifs_parse_mount_err;
1044 default:
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001045 cifs_errorf(fc, "Unknown error parsing devname\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001046 goto cifs_parse_mount_err;
1047 }
Ronnie Sahlbergaf1a3d22021-02-11 16:06:16 +10001048 ctx->source = kstrdup(param->string, GFP_KERNEL);
1049 if (ctx->source == NULL) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001050 cifs_errorf(fc, "OOM when copying UNC string\n");
Ronnie Sahlbergaf1a3d22021-02-11 16:06:16 +10001051 goto cifs_parse_mount_err;
1052 }
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001053 fc->source = kstrdup(param->string, GFP_KERNEL);
1054 if (fc->source == NULL) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001055 cifs_errorf(fc, "OOM when copying UNC string\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001056 goto cifs_parse_mount_err;
1057 }
1058 break;
1059 case Opt_user:
1060 kfree(ctx->username);
1061 ctx->username = NULL;
1062 if (strlen(param->string) == 0) {
1063 /* null user, ie. anonymous authentication */
1064 ctx->nullauth = 1;
1065 break;
1066 }
1067
1068 if (strnlen(param->string, CIFS_MAX_USERNAME_LEN) >
1069 CIFS_MAX_USERNAME_LEN) {
1070 pr_warn("username too long\n");
1071 goto cifs_parse_mount_err;
1072 }
1073 ctx->username = kstrdup(param->string, GFP_KERNEL);
1074 if (ctx->username == NULL) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001075 cifs_errorf(fc, "OOM when copying username string\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001076 goto cifs_parse_mount_err;
1077 }
1078 break;
1079 case Opt_pass:
1080 kfree(ctx->password);
1081 ctx->password = NULL;
1082 if (strlen(param->string) == 0)
1083 break;
1084
1085 ctx->password = kstrdup(param->string, GFP_KERNEL);
1086 if (ctx->password == NULL) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001087 cifs_errorf(fc, "OOM when copying password string\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001088 goto cifs_parse_mount_err;
1089 }
1090 break;
1091 case Opt_ip:
1092 if (strlen(param->string) == 0) {
1093 ctx->got_ip = false;
1094 break;
1095 }
1096 if (!cifs_convert_address((struct sockaddr *)&ctx->dstaddr,
1097 param->string,
1098 strlen(param->string))) {
1099 pr_err("bad ip= option (%s)\n", param->string);
1100 goto cifs_parse_mount_err;
1101 }
1102 ctx->got_ip = true;
1103 break;
1104 case Opt_domain:
1105 if (strnlen(param->string, CIFS_MAX_DOMAINNAME_LEN)
1106 == CIFS_MAX_DOMAINNAME_LEN) {
1107 pr_warn("domain name too long\n");
1108 goto cifs_parse_mount_err;
1109 }
1110
1111 kfree(ctx->domainname);
1112 ctx->domainname = kstrdup(param->string, GFP_KERNEL);
1113 if (ctx->domainname == NULL) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001114 cifs_errorf(fc, "OOM when copying domainname string\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001115 goto cifs_parse_mount_err;
1116 }
1117 cifs_dbg(FYI, "Domain name set\n");
1118 break;
1119 case Opt_srcaddr:
1120 if (!cifs_convert_address(
1121 (struct sockaddr *)&ctx->srcaddr,
1122 param->string, strlen(param->string))) {
1123 pr_warn("Could not parse srcaddr: %s\n",
1124 param->string);
1125 goto cifs_parse_mount_err;
1126 }
1127 break;
1128 case Opt_iocharset:
1129 if (strnlen(param->string, 1024) >= 65) {
1130 pr_warn("iocharset name too long\n");
1131 goto cifs_parse_mount_err;
1132 }
1133
1134 if (strncasecmp(param->string, "default", 7) != 0) {
1135 kfree(ctx->iocharset);
1136 ctx->iocharset = kstrdup(param->string, GFP_KERNEL);
1137 if (ctx->iocharset == NULL) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001138 cifs_errorf(fc, "OOM when copying iocharset string\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001139 goto cifs_parse_mount_err;
1140 }
1141 }
1142 /* if iocharset not set then load_nls_default
1143 * is used by caller
1144 */
1145 cifs_dbg(FYI, "iocharset set to %s\n", ctx->iocharset);
1146 break;
1147 case Opt_netbiosname:
1148 memset(ctx->source_rfc1001_name, 0x20,
1149 RFC1001_NAME_LEN);
1150 /*
1151 * FIXME: are there cases in which a comma can
1152 * be valid in workstation netbios name (and
1153 * need special handling)?
1154 */
1155 for (i = 0; i < RFC1001_NAME_LEN; i++) {
1156 /* don't ucase netbiosname for user */
1157 if (param->string[i] == 0)
1158 break;
1159 ctx->source_rfc1001_name[i] = param->string[i];
1160 }
1161 /* The string has 16th byte zero still from
1162 * set at top of the function
1163 */
1164 if (i == RFC1001_NAME_LEN && param->string[i] != 0)
1165 pr_warn("netbiosname longer than 15 truncated\n");
1166 break;
1167 case Opt_servern:
1168 /* last byte, type, is 0x20 for servr type */
1169 memset(ctx->target_rfc1001_name, 0x20,
1170 RFC1001_NAME_LEN_WITH_NULL);
1171 /*
1172 * BB are there cases in which a comma can be valid in this
1173 * workstation netbios name (and need special handling)?
1174 */
1175
1176 /* user or mount helper must uppercase the netbios name */
1177 for (i = 0; i < 15; i++) {
1178 if (param->string[i] == 0)
1179 break;
1180 ctx->target_rfc1001_name[i] = param->string[i];
1181 }
1182
1183 /* The string has 16th byte zero still from set at top of function */
1184 if (i == RFC1001_NAME_LEN && param->string[i] != 0)
1185 pr_warn("server netbiosname longer than 15 truncated\n");
1186 break;
1187 case Opt_ver:
1188 /* version of mount userspace tools, not dialect */
1189 /* If interface changes in mount.cifs bump to new ver */
1190 if (strncasecmp(param->string, "1", 1) == 0) {
1191 if (strlen(param->string) > 1) {
1192 pr_warn("Bad mount helper ver=%s. Did you want SMB1 (CIFS) dialect and mean to type vers=1.0 instead?\n",
1193 param->string);
1194 goto cifs_parse_mount_err;
1195 }
1196 /* This is the default */
1197 break;
1198 }
1199 /* For all other value, error */
1200 pr_warn("Invalid mount helper version specified\n");
1201 goto cifs_parse_mount_err;
1202 case Opt_vers:
1203 /* protocol version (dialect) */
Aurelien Apteld9a86922021-03-01 19:32:09 +01001204 if (cifs_parse_smb_version(fc, param->string, ctx, is_smb3) != 0)
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001205 goto cifs_parse_mount_err;
1206 ctx->got_version = true;
1207 break;
1208 case Opt_sec:
Aurelien Apteld9a86922021-03-01 19:32:09 +01001209 if (cifs_parse_security_flavors(fc, param->string, ctx) != 0)
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001210 goto cifs_parse_mount_err;
1211 break;
1212 case Opt_cache:
Aurelien Apteld9a86922021-03-01 19:32:09 +01001213 if (cifs_parse_cache_flavor(fc, param->string, ctx) != 0)
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001214 goto cifs_parse_mount_err;
1215 break;
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06001216 case Opt_witness:
1217#ifndef CONFIG_CIFS_SWN_UPCALL
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001218 cifs_errorf(fc, "Witness support needs CONFIG_CIFS_SWN_UPCALL config option\n");
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06001219 goto cifs_parse_mount_err;
1220#endif
1221 ctx->witness = true;
Steve Frenchdd538032020-12-14 20:15:12 -06001222 pr_warn_once("Witness protocol support is experimental\n");
Samuel Cabrero0ac4e292020-12-11 22:59:29 -06001223 break;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001224 case Opt_rootfs:
Aurelien Aptelaf3ef3b2021-03-18 19:17:10 +01001225#ifndef CONFIG_CIFS_ROOT
1226 cifs_dbg(VFS, "rootfs support requires CONFIG_CIFS_ROOT config option\n");
1227 goto cifs_parse_mount_err;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001228#endif
Aurelien Aptelaf3ef3b2021-03-18 19:17:10 +01001229 ctx->rootfs = true;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001230 break;
1231 case Opt_posixpaths:
1232 if (result.negated)
1233 ctx->posix_paths = 0;
1234 else
1235 ctx->posix_paths = 1;
1236 break;
1237 case Opt_unix:
1238 if (result.negated)
1239 ctx->linux_ext = 0;
1240 else
1241 ctx->no_linux_ext = 1;
1242 break;
1243 case Opt_nocase:
1244 ctx->nocase = 1;
1245 break;
1246 case Opt_brl:
1247 if (result.negated) {
1248 /*
1249 * turn off mandatory locking in mode
1250 * if remote locking is turned off since the
1251 * local vfs will do advisory
1252 */
1253 if (ctx->file_mode ==
1254 (S_IALLUGO & ~(S_ISUID | S_IXGRP)))
1255 ctx->file_mode = S_IALLUGO;
1256 ctx->nobrl = 1;
1257 } else
1258 ctx->nobrl = 0;
1259 break;
1260 case Opt_handlecache:
1261 if (result.negated)
1262 ctx->nohandlecache = 1;
1263 else
1264 ctx->nohandlecache = 0;
1265 break;
1266 case Opt_forcemandatorylock:
1267 ctx->mand_lock = 1;
1268 break;
1269 case Opt_setuids:
1270 ctx->setuids = result.negated;
1271 break;
1272 case Opt_intr:
1273 ctx->intr = !result.negated;
1274 break;
1275 case Opt_setuidfromacl:
1276 ctx->setuidfromacl = 1;
1277 break;
1278 case Opt_strictsync:
1279 ctx->nostrictsync = result.negated;
1280 break;
1281 case Opt_serverino:
1282 ctx->server_ino = !result.negated;
1283 break;
1284 case Opt_rwpidforward:
1285 ctx->rwpidforward = 1;
1286 break;
1287 case Opt_modesid:
1288 ctx->mode_ace = 1;
1289 break;
1290 case Opt_cifsacl:
1291 ctx->cifs_acl = !result.negated;
1292 break;
1293 case Opt_acl:
1294 ctx->no_psx_acl = result.negated;
1295 break;
1296 case Opt_locallease:
1297 ctx->local_lease = 1;
1298 break;
1299 case Opt_sign:
1300 ctx->sign = true;
1301 break;
1302 case Opt_ignore_signature:
1303 ctx->sign = true;
1304 ctx->ignore_signature = true;
1305 break;
1306 case Opt_seal:
1307 /* we do not do the following in secFlags because seal
1308 * is a per tree connection (mount) not a per socket
1309 * or per-smb connection option in the protocol
1310 * vol->secFlg |= CIFSSEC_MUST_SEAL;
1311 */
1312 ctx->seal = 1;
1313 break;
1314 case Opt_noac:
1315 pr_warn("Mount option noac not supported. Instead set /proc/fs/cifs/LookupCacheEnabled to 0\n");
1316 break;
1317 case Opt_fsc:
1318#ifndef CONFIG_CIFS_FSCACHE
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001319 cifs_errorf(fc, "FS-Cache support needs CONFIG_CIFS_FSCACHE kernel config option set\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001320 goto cifs_parse_mount_err;
1321#endif
1322 ctx->fsc = true;
1323 break;
1324 case Opt_mfsymlinks:
1325 ctx->mfsymlinks = true;
1326 break;
1327 case Opt_multiuser:
1328 ctx->multiuser = true;
1329 break;
1330 case Opt_sloppy:
1331 ctx->sloppy = true;
1332 break;
1333 case Opt_nosharesock:
1334 ctx->nosharesock = true;
1335 break;
1336 case Opt_persistent:
1337 if (result.negated) {
Steve French27cf9482020-12-16 01:22:54 -06001338 ctx->nopersistent = true;
1339 if (ctx->persistent) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001340 cifs_errorf(fc, "persistenthandles mount options conflict\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001341 goto cifs_parse_mount_err;
1342 }
1343 } else {
Steve French27cf9482020-12-16 01:22:54 -06001344 ctx->persistent = true;
1345 if ((ctx->nopersistent) || (ctx->resilient)) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001346 cifs_errorf(fc, "persistenthandles mount options conflict\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001347 goto cifs_parse_mount_err;
1348 }
1349 }
1350 break;
1351 case Opt_resilient:
1352 if (result.negated) {
1353 ctx->resilient = false; /* already the default */
1354 } else {
1355 ctx->resilient = true;
1356 if (ctx->persistent) {
Aurelien Aptel24feddd2021-03-01 19:34:02 +01001357 cifs_errorf(fc, "persistenthandles mount options conflict\n");
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001358 goto cifs_parse_mount_err;
1359 }
1360 }
1361 break;
1362 case Opt_domainauto:
1363 ctx->domainauto = true;
1364 break;
1365 case Opt_rdma:
1366 ctx->rdma = true;
1367 break;
1368 }
Steve French31f65512020-12-16 16:26:35 -06001369 /* case Opt_ignore: - is ignored as expected ... */
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001370
1371 return 0;
1372
1373 cifs_parse_mount_err:
Steve Frenchbd2f0b42021-01-28 16:43:03 -06001374 return -EINVAL;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001375}
1376
1377int smb3_init_fs_context(struct fs_context *fc)
1378{
1379 struct smb3_fs_context *ctx;
1380 char *nodename = utsname()->nodename;
1381 int i;
1382
1383 ctx = kzalloc(sizeof(struct smb3_fs_context), GFP_KERNEL);
1384 if (unlikely(!ctx))
1385 return -ENOMEM;
1386
1387 /*
1388 * does not have to be perfect mapping since field is
1389 * informational, only used for servers that do not support
1390 * port 445 and it can be overridden at mount time
1391 */
1392 memset(ctx->source_rfc1001_name, 0x20, RFC1001_NAME_LEN);
1393 for (i = 0; i < strnlen(nodename, RFC1001_NAME_LEN); i++)
1394 ctx->source_rfc1001_name[i] = toupper(nodename[i]);
1395
1396 ctx->source_rfc1001_name[RFC1001_NAME_LEN] = 0;
1397 /*
1398 * null target name indicates to use *SMBSERVR default called name
1399 * if we end up sending RFC1001 session initialize
1400 */
1401 ctx->target_rfc1001_name[0] = 0;
1402 ctx->cred_uid = current_uid();
1403 ctx->linux_uid = current_uid();
1404 ctx->linux_gid = current_gid();
Steve Frenchb8d64f82021-04-24 21:46:23 -05001405 /* By default 4MB read ahead size, 1MB block size */
1406 ctx->bsize = CIFS_DEFAULT_IOSIZE; /* can improve cp performance significantly */
1407 ctx->rasize = 0; /* 0 = use default (ie negotiated rsize) for read ahead pages */
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001408
1409 /*
1410 * default to SFM style remapping of seven reserved characters
1411 * unless user overrides it or we negotiate CIFS POSIX where
1412 * it is unnecessary. Can not simultaneously use more than one mapping
1413 * since then readdir could list files that open could not open
1414 */
1415 ctx->remap = true;
1416
1417 /* default to only allowing write access to owner of the mount */
1418 ctx->dir_mode = ctx->file_mode = S_IRUGO | S_IXUGO | S_IWUSR;
1419
1420 /* ctx->retry default is 0 (i.e. "soft" limited retry not hard retry) */
1421 /* default is always to request posix paths. */
1422 ctx->posix_paths = 1;
1423 /* default to using server inode numbers where available */
1424 ctx->server_ino = 1;
1425
1426 /* default is to use strict cifs caching semantics */
1427 ctx->strict_io = true;
1428
Steve French57804642021-02-24 12:12:53 -06001429 ctx->acregmax = CIFS_DEF_ACTIMEO;
Steve French4c9f9482021-02-23 15:50:57 -06001430 ctx->acdirmax = CIFS_DEF_ACTIMEO;
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001431
1432 /* Most clients set timeout to 0, allows server to use its default */
1433 ctx->handle_timeout = 0; /* See MS-SMB2 spec section 2.2.14.2.12 */
1434
1435 /* offer SMB2.1 and later (SMB3 etc). Secure and widely accepted */
1436 ctx->ops = &smb30_operations;
1437 ctx->vals = &smbdefault_values;
1438
1439 ctx->echo_interval = SMB_ECHO_INTERVAL_DEFAULT;
1440
1441 /* default to no multichannel (single server connection) */
1442 ctx->multichannel = false;
1443 ctx->max_channels = 1;
1444
1445 ctx->backupuid_specified = false; /* no backup intent for a user */
1446 ctx->backupgid_specified = false; /* no backup intent for a group */
1447
1448/*
1449 * short int override_uid = -1;
1450 * short int override_gid = -1;
1451 * char *nodename = strdup(utsname()->nodename);
1452 * struct sockaddr *dstaddr = (struct sockaddr *)&vol->dstaddr;
1453 */
1454
1455 fc->fs_private = ctx;
1456 fc->ops = &smb3_fs_context_ops;
1457 return 0;
1458}
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +10001459
1460void
1461smb3_cleanup_fs_context_contents(struct smb3_fs_context *ctx)
1462{
1463 if (ctx == NULL)
1464 return;
1465
1466 /*
1467 * Make sure this stays in sync with smb3_fs_context_dup()
1468 */
1469 kfree(ctx->mount_options);
1470 ctx->mount_options = NULL;
1471 kfree(ctx->username);
1472 ctx->username = NULL;
1473 kfree_sensitive(ctx->password);
1474 ctx->password = NULL;
1475 kfree(ctx->UNC);
1476 ctx->UNC = NULL;
Ronnie Sahlbergaf1a3d22021-02-11 16:06:16 +10001477 kfree(ctx->source);
1478 ctx->source = NULL;
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +10001479 kfree(ctx->domainname);
1480 ctx->domainname = NULL;
1481 kfree(ctx->nodename);
1482 ctx->nodename = NULL;
1483 kfree(ctx->iocharset);
1484 ctx->iocharset = NULL;
1485 kfree(ctx->prepath);
1486 ctx->prepath = NULL;
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +10001487}
1488
1489void
1490smb3_cleanup_fs_context(struct smb3_fs_context *ctx)
1491{
1492 if (!ctx)
1493 return;
1494 smb3_cleanup_fs_context_contents(ctx);
1495 kfree(ctx);
1496}
Ronnie Sahlberg2d39f502020-12-14 16:40:25 +10001497
1498void smb3_update_mnt_flags(struct cifs_sb_info *cifs_sb)
1499{
1500 struct smb3_fs_context *ctx = cifs_sb->ctx;
1501
1502 if (ctx->nodfs)
1503 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_DFS;
1504 else
1505 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_NO_DFS;
1506
1507 if (ctx->noperm)
1508 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM;
1509 else
1510 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_NO_PERM;
1511
1512 if (ctx->setuids)
1513 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID;
1514 else
1515 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SET_UID;
1516
1517 if (ctx->setuidfromacl)
1518 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UID_FROM_ACL;
1519 else
1520 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_UID_FROM_ACL;
1521
1522 if (ctx->server_ino)
1523 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM;
1524 else
1525 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
1526
1527 if (ctx->remap)
1528 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SFM_CHR;
1529 else
1530 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_MAP_SFM_CHR;
1531
1532 if (ctx->sfu_remap)
1533 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR;
1534 else
1535 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_MAP_SPECIAL_CHR;
1536
1537 if (ctx->no_xattr)
1538 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR;
1539 else
1540 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_NO_XATTR;
1541
1542 if (ctx->sfu_emul)
1543 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL;
1544 else
1545 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_UNX_EMUL;
1546
1547 if (ctx->nobrl)
1548 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL;
1549 else
1550 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_NO_BRL;
1551
1552 if (ctx->nohandlecache)
1553 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_HANDLE_CACHE;
1554 else
1555 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_NO_HANDLE_CACHE;
1556
1557 if (ctx->nostrictsync)
1558 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOSSYNC;
1559 else
1560 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_NOSSYNC;
1561
1562 if (ctx->mand_lock)
1563 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NOPOSIXBRL;
1564 else
1565 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_NOPOSIXBRL;
1566
1567 if (ctx->rwpidforward)
1568 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_RWPIDFORWARD;
1569 else
1570 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_RWPIDFORWARD;
1571
1572 if (ctx->mode_ace)
1573 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MODE_FROM_SID;
1574 else
1575 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_MODE_FROM_SID;
1576
1577 if (ctx->cifs_acl)
1578 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL;
1579 else
1580 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_CIFS_ACL;
1581
1582 if (ctx->backupuid_specified)
1583 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPUID;
1584 else
1585 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_CIFS_BACKUPUID;
1586
1587 if (ctx->backupgid_specified)
1588 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_BACKUPGID;
1589 else
1590 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_CIFS_BACKUPGID;
1591
1592 if (ctx->override_uid)
1593 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID;
1594 else
1595 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_OVERR_UID;
1596
1597 if (ctx->override_gid)
1598 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID;
1599 else
1600 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_OVERR_GID;
1601
1602 if (ctx->dynperm)
1603 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM;
1604 else
1605 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_DYNPERM;
1606
1607 if (ctx->fsc)
1608 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_FSCACHE;
1609 else
1610 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_FSCACHE;
1611
1612 if (ctx->multiuser)
1613 cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
1614 CIFS_MOUNT_NO_PERM);
1615 else
Ronnie Sahlberga0f85e32021-02-10 11:55:47 +10001616 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_MULTIUSER;
1617
Ronnie Sahlberg2d39f502020-12-14 16:40:25 +10001618
1619 if (ctx->strict_io)
1620 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_STRICT_IO;
1621 else
1622 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_STRICT_IO;
1623
1624 if (ctx->direct_io)
1625 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
1626 else
1627 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_DIRECT_IO;
1628
1629 if (ctx->mfsymlinks)
1630 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MF_SYMLINKS;
1631 else
1632 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_MF_SYMLINKS;
1633 if (ctx->mfsymlinks) {
1634 if (ctx->sfu_emul) {
1635 /*
1636 * Our SFU ("Services for Unix" emulation does not allow
1637 * creating symlinks but does allow reading existing SFU
1638 * symlinks (it does allow both creating and reading SFU
1639 * style mknod and FIFOs though). When "mfsymlinks" and
1640 * "sfu" are both enabled at the same time, it allows
1641 * reading both types of symlinks, but will only create
1642 * them with mfsymlinks format. This allows better
1643 * Apple compatibility (probably better for Samba too)
1644 * while still recognizing old Windows style symlinks.
1645 */
1646 cifs_dbg(VFS, "mount options mfsymlinks and sfu both enabled\n");
1647 }
1648 }
Steve French087f7572021-04-29 00:18:43 -05001649 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SHUTDOWN;
Ronnie Sahlberg2d39f502020-12-14 16:40:25 +10001650
1651 return;
1652}