]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - fs/cifs/cifsfs.c
UBUNTU: Ubuntu-5.15.0-39.42
[mirror_ubuntu-jammy-kernel.git] / fs / cifs / cifsfs.c
1 // SPDX-License-Identifier: LGPL-2.1
2 /*
3 *
4 * Copyright (C) International Business Machines Corp., 2002,2008
5 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * Common Internet FileSystem (CIFS) client
8 *
9 */
10
11 /* Note that BB means BUGBUG (ie something to fix eventually) */
12
13 #include <linux/module.h>
14 #include <linux/fs.h>
15 #include <linux/mount.h>
16 #include <linux/slab.h>
17 #include <linux/init.h>
18 #include <linux/list.h>
19 #include <linux/seq_file.h>
20 #include <linux/vfs.h>
21 #include <linux/mempool.h>
22 #include <linux/delay.h>
23 #include <linux/kthread.h>
24 #include <linux/freezer.h>
25 #include <linux/namei.h>
26 #include <linux/random.h>
27 #include <linux/uuid.h>
28 #include <linux/xattr.h>
29 #include <net/ipv6.h>
30 #include "cifsfs.h"
31 #include "cifspdu.h"
32 #define DECLARE_GLOBALS_HERE
33 #include "cifsglob.h"
34 #include "cifsproto.h"
35 #include "cifs_debug.h"
36 #include "cifs_fs_sb.h"
37 #include <linux/mm.h>
38 #include <linux/key-type.h>
39 #include "cifs_spnego.h"
40 #include "fscache.h"
41 #include "smb2pdu.h"
42 #ifdef CONFIG_CIFS_DFS_UPCALL
43 #include "dfs_cache.h"
44 #endif
45 #ifdef CONFIG_CIFS_SWN_UPCALL
46 #include "netlink.h"
47 #endif
48 #include "fs_context.h"
49
50 /*
51 * DOS dates from 1980/1/1 through 2107/12/31
52 * Protocol specifications indicate the range should be to 119, which
53 * limits maximum year to 2099. But this range has not been checked.
54 */
55 #define SMB_DATE_MAX (127<<9 | 12<<5 | 31)
56 #define SMB_DATE_MIN (0<<9 | 1<<5 | 1)
57 #define SMB_TIME_MAX (23<<11 | 59<<5 | 29)
58
59 int cifsFYI = 0;
60 bool traceSMB;
61 bool enable_oplocks = true;
62 bool linuxExtEnabled = true;
63 bool lookupCacheEnabled = true;
64 bool disable_legacy_dialects; /* false by default */
65 bool enable_gcm_256 = true;
66 bool require_gcm_256; /* false by default */
67 bool enable_negotiate_signing; /* false by default */
68 unsigned int global_secflags = CIFSSEC_DEF;
69 /* unsigned int ntlmv2_support = 0; */
70 unsigned int sign_CIFS_PDUs = 1;
71 static const struct super_operations cifs_super_ops;
72 unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
73 module_param(CIFSMaxBufSize, uint, 0444);
74 MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header) "
75 "for CIFS requests. "
76 "Default: 16384 Range: 8192 to 130048");
77 unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL;
78 module_param(cifs_min_rcv, uint, 0444);
79 MODULE_PARM_DESC(cifs_min_rcv, "Network buffers in pool. Default: 4 Range: "
80 "1 to 64");
81 unsigned int cifs_min_small = 30;
82 module_param(cifs_min_small, uint, 0444);
83 MODULE_PARM_DESC(cifs_min_small, "Small network buffers in pool. Default: 30 "
84 "Range: 2 to 256");
85 unsigned int cifs_max_pending = CIFS_MAX_REQ;
86 module_param(cifs_max_pending, uint, 0444);
87 MODULE_PARM_DESC(cifs_max_pending, "Simultaneous requests to server for "
88 "CIFS/SMB1 dialect (N/A for SMB3) "
89 "Default: 32767 Range: 2 to 32767.");
90 #ifdef CONFIG_CIFS_STATS2
91 unsigned int slow_rsp_threshold = 1;
92 module_param(slow_rsp_threshold, uint, 0644);
93 MODULE_PARM_DESC(slow_rsp_threshold, "Amount of time (in seconds) to wait "
94 "before logging that a response is delayed. "
95 "Default: 1 (if set to 0 disables msg).");
96 #endif /* STATS2 */
97
98 module_param(enable_oplocks, bool, 0644);
99 MODULE_PARM_DESC(enable_oplocks, "Enable or disable oplocks. Default: y/Y/1");
100
101 module_param(enable_gcm_256, bool, 0644);
102 MODULE_PARM_DESC(enable_gcm_256, "Enable requesting strongest (256 bit) GCM encryption. Default: n/N/0");
103
104 module_param(require_gcm_256, bool, 0644);
105 MODULE_PARM_DESC(require_gcm_256, "Require strongest (256 bit) GCM encryption. Default: n/N/0");
106
107 module_param(enable_negotiate_signing, bool, 0644);
108 MODULE_PARM_DESC(enable_negotiate_signing, "Enable negotiating packet signing algorithm with server. Default: n/N/0");
109
110 module_param(disable_legacy_dialects, bool, 0644);
111 MODULE_PARM_DESC(disable_legacy_dialects, "To improve security it may be "
112 "helpful to restrict the ability to "
113 "override the default dialects (SMB2.1, "
114 "SMB3 and SMB3.02) on mount with old "
115 "dialects (CIFS/SMB1 and SMB2) since "
116 "vers=1.0 (CIFS/SMB1) and vers=2.0 are weaker"
117 " and less secure. Default: n/N/0");
118
119 extern mempool_t *cifs_sm_req_poolp;
120 extern mempool_t *cifs_req_poolp;
121 extern mempool_t *cifs_mid_poolp;
122
123 struct workqueue_struct *cifsiod_wq;
124 struct workqueue_struct *decrypt_wq;
125 struct workqueue_struct *fileinfo_put_wq;
126 struct workqueue_struct *cifsoplockd_wq;
127 struct workqueue_struct *deferredclose_wq;
128 __u32 cifs_lock_secret;
129
130 /*
131 * Bumps refcount for cifs super block.
132 * Note that it should be only called if a referece to VFS super block is
133 * already held, e.g. in open-type syscalls context. Otherwise it can race with
134 * atomic_dec_and_test in deactivate_locked_super.
135 */
136 void
137 cifs_sb_active(struct super_block *sb)
138 {
139 struct cifs_sb_info *server = CIFS_SB(sb);
140
141 if (atomic_inc_return(&server->active) == 1)
142 atomic_inc(&sb->s_active);
143 }
144
145 void
146 cifs_sb_deactive(struct super_block *sb)
147 {
148 struct cifs_sb_info *server = CIFS_SB(sb);
149
150 if (atomic_dec_and_test(&server->active))
151 deactivate_super(sb);
152 }
153
154 static int
155 cifs_read_super(struct super_block *sb)
156 {
157 struct inode *inode;
158 struct cifs_sb_info *cifs_sb;
159 struct cifs_tcon *tcon;
160 struct timespec64 ts;
161 int rc = 0;
162
163 cifs_sb = CIFS_SB(sb);
164 tcon = cifs_sb_master_tcon(cifs_sb);
165
166 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIXACL)
167 sb->s_flags |= SB_POSIXACL;
168
169 if (tcon->snapshot_time)
170 sb->s_flags |= SB_RDONLY;
171
172 if (tcon->ses->capabilities & tcon->ses->server->vals->cap_large_files)
173 sb->s_maxbytes = MAX_LFS_FILESIZE;
174 else
175 sb->s_maxbytes = MAX_NON_LFS;
176
177 /*
178 * Some very old servers like DOS and OS/2 used 2 second granularity
179 * (while all current servers use 100ns granularity - see MS-DTYP)
180 * but 1 second is the maximum allowed granularity for the VFS
181 * so for old servers set time granularity to 1 second while for
182 * everything else (current servers) set it to 100ns.
183 */
184 if ((tcon->ses->server->vals->protocol_id == SMB10_PROT_ID) &&
185 ((tcon->ses->capabilities &
186 tcon->ses->server->vals->cap_nt_find) == 0) &&
187 !tcon->unix_ext) {
188 sb->s_time_gran = 1000000000; /* 1 second is max allowed gran */
189 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MIN), 0, 0);
190 sb->s_time_min = ts.tv_sec;
191 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MAX),
192 cpu_to_le16(SMB_TIME_MAX), 0);
193 sb->s_time_max = ts.tv_sec;
194 } else {
195 /*
196 * Almost every server, including all SMB2+, uses DCE TIME
197 * ie 100 nanosecond units, since 1601. See MS-DTYP and MS-FSCC
198 */
199 sb->s_time_gran = 100;
200 ts = cifs_NTtimeToUnix(0);
201 sb->s_time_min = ts.tv_sec;
202 ts = cifs_NTtimeToUnix(cpu_to_le64(S64_MAX));
203 sb->s_time_max = ts.tv_sec;
204 }
205
206 sb->s_magic = CIFS_MAGIC_NUMBER;
207 sb->s_op = &cifs_super_ops;
208 sb->s_xattr = cifs_xattr_handlers;
209 rc = super_setup_bdi(sb);
210 if (rc)
211 goto out_no_root;
212 /* tune readahead according to rsize if readahead size not set on mount */
213 if (cifs_sb->ctx->rsize == 0)
214 cifs_sb->ctx->rsize =
215 tcon->ses->server->ops->negotiate_rsize(tcon, cifs_sb->ctx);
216 if (cifs_sb->ctx->rasize)
217 sb->s_bdi->ra_pages = cifs_sb->ctx->rasize / PAGE_SIZE;
218 else
219 sb->s_bdi->ra_pages = cifs_sb->ctx->rsize / PAGE_SIZE;
220
221 sb->s_blocksize = CIFS_MAX_MSGSIZE;
222 sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */
223 inode = cifs_root_iget(sb);
224
225 if (IS_ERR(inode)) {
226 rc = PTR_ERR(inode);
227 goto out_no_root;
228 }
229
230 if (tcon->nocase)
231 sb->s_d_op = &cifs_ci_dentry_ops;
232 else
233 sb->s_d_op = &cifs_dentry_ops;
234
235 sb->s_root = d_make_root(inode);
236 if (!sb->s_root) {
237 rc = -ENOMEM;
238 goto out_no_root;
239 }
240
241 #ifdef CONFIG_CIFS_NFSD_EXPORT
242 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
243 cifs_dbg(FYI, "export ops supported\n");
244 sb->s_export_op = &cifs_export_ops;
245 }
246 #endif /* CONFIG_CIFS_NFSD_EXPORT */
247
248 return 0;
249
250 out_no_root:
251 cifs_dbg(VFS, "%s: get root inode failed\n", __func__);
252 return rc;
253 }
254
255 static void cifs_kill_sb(struct super_block *sb)
256 {
257 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
258 struct cifs_tcon *tcon;
259 struct cached_fid *cfid;
260 struct rb_root *root = &cifs_sb->tlink_tree;
261 struct rb_node *node;
262 struct tcon_link *tlink;
263
264 /*
265 * We ned to release all dentries for the cached directories
266 * before we kill the sb.
267 */
268 if (cifs_sb->root) {
269 for (node = rb_first(root); node; node = rb_next(node)) {
270 tlink = rb_entry(node, struct tcon_link, tl_rbnode);
271 tcon = tlink_tcon(tlink);
272 if (IS_ERR(tcon))
273 continue;
274 cfid = &tcon->crfid;
275 mutex_lock(&cfid->fid_mutex);
276 if (cfid->dentry) {
277 dput(cfid->dentry);
278 cfid->dentry = NULL;
279 }
280 mutex_unlock(&cfid->fid_mutex);
281 }
282
283 /* finally release root dentry */
284 dput(cifs_sb->root);
285 cifs_sb->root = NULL;
286 }
287
288 kill_anon_super(sb);
289 cifs_umount(cifs_sb);
290 }
291
292 static int
293 cifs_statfs(struct dentry *dentry, struct kstatfs *buf)
294 {
295 struct super_block *sb = dentry->d_sb;
296 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
297 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
298 struct TCP_Server_Info *server = tcon->ses->server;
299 unsigned int xid;
300 int rc = 0;
301
302 xid = get_xid();
303
304 if (le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength) > 0)
305 buf->f_namelen =
306 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
307 else
308 buf->f_namelen = PATH_MAX;
309
310 buf->f_fsid.val[0] = tcon->vol_serial_number;
311 /* are using part of create time for more randomness, see man statfs */
312 buf->f_fsid.val[1] = (int)le64_to_cpu(tcon->vol_create_time);
313
314 buf->f_files = 0; /* undefined */
315 buf->f_ffree = 0; /* unlimited */
316
317 if (server->ops->queryfs)
318 rc = server->ops->queryfs(xid, tcon, cifs_sb, buf);
319
320 free_xid(xid);
321 return rc;
322 }
323
324 static long cifs_fallocate(struct file *file, int mode, loff_t off, loff_t len)
325 {
326 struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file);
327 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
328 struct TCP_Server_Info *server = tcon->ses->server;
329
330 if (server->ops->fallocate)
331 return server->ops->fallocate(file, tcon, mode, off, len);
332
333 return -EOPNOTSUPP;
334 }
335
336 static int cifs_permission(struct user_namespace *mnt_userns,
337 struct inode *inode, int mask)
338 {
339 struct cifs_sb_info *cifs_sb;
340
341 cifs_sb = CIFS_SB(inode->i_sb);
342
343 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) {
344 if ((mask & MAY_EXEC) && !execute_ok(inode))
345 return -EACCES;
346 else
347 return 0;
348 } else /* file mode might have been restricted at mount time
349 on the client (above and beyond ACL on servers) for
350 servers which do not support setting and viewing mode bits,
351 so allowing client to check permissions is useful */
352 return generic_permission(&init_user_ns, inode, mask);
353 }
354
355 static struct kmem_cache *cifs_inode_cachep;
356 static struct kmem_cache *cifs_req_cachep;
357 static struct kmem_cache *cifs_mid_cachep;
358 static struct kmem_cache *cifs_sm_req_cachep;
359 mempool_t *cifs_sm_req_poolp;
360 mempool_t *cifs_req_poolp;
361 mempool_t *cifs_mid_poolp;
362
363 static struct inode *
364 cifs_alloc_inode(struct super_block *sb)
365 {
366 struct cifsInodeInfo *cifs_inode;
367 cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL);
368 if (!cifs_inode)
369 return NULL;
370 cifs_inode->cifsAttrs = 0x20; /* default */
371 cifs_inode->time = 0;
372 /*
373 * Until the file is open and we have gotten oplock info back from the
374 * server, can not assume caching of file data or metadata.
375 */
376 cifs_set_oplock_level(cifs_inode, 0);
377 cifs_inode->flags = 0;
378 spin_lock_init(&cifs_inode->writers_lock);
379 cifs_inode->writers = 0;
380 cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */
381 cifs_inode->server_eof = 0;
382 cifs_inode->uniqueid = 0;
383 cifs_inode->createtime = 0;
384 cifs_inode->epoch = 0;
385 spin_lock_init(&cifs_inode->open_file_lock);
386 generate_random_uuid(cifs_inode->lease_key);
387
388 /*
389 * Can not set i_flags here - they get immediately overwritten to zero
390 * by the VFS.
391 */
392 /* cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME; */
393 INIT_LIST_HEAD(&cifs_inode->openFileList);
394 INIT_LIST_HEAD(&cifs_inode->llist);
395 INIT_LIST_HEAD(&cifs_inode->deferred_closes);
396 spin_lock_init(&cifs_inode->deferred_lock);
397 return &cifs_inode->vfs_inode;
398 }
399
400 static void
401 cifs_free_inode(struct inode *inode)
402 {
403 kmem_cache_free(cifs_inode_cachep, CIFS_I(inode));
404 }
405
406 static void
407 cifs_evict_inode(struct inode *inode)
408 {
409 truncate_inode_pages_final(&inode->i_data);
410 clear_inode(inode);
411 }
412
413 static void
414 cifs_show_address(struct seq_file *s, struct TCP_Server_Info *server)
415 {
416 struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr;
417 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr;
418
419 seq_puts(s, ",addr=");
420
421 switch (server->dstaddr.ss_family) {
422 case AF_INET:
423 seq_printf(s, "%pI4", &sa->sin_addr.s_addr);
424 break;
425 case AF_INET6:
426 seq_printf(s, "%pI6", &sa6->sin6_addr.s6_addr);
427 if (sa6->sin6_scope_id)
428 seq_printf(s, "%%%u", sa6->sin6_scope_id);
429 break;
430 default:
431 seq_puts(s, "(unknown)");
432 }
433 if (server->rdma)
434 seq_puts(s, ",rdma");
435 }
436
437 static void
438 cifs_show_security(struct seq_file *s, struct cifs_ses *ses)
439 {
440 if (ses->sectype == Unspecified) {
441 if (ses->user_name == NULL)
442 seq_puts(s, ",sec=none");
443 return;
444 }
445
446 seq_puts(s, ",sec=");
447
448 switch (ses->sectype) {
449 case NTLMv2:
450 seq_puts(s, "ntlmv2");
451 break;
452 case Kerberos:
453 seq_puts(s, "krb5");
454 break;
455 case RawNTLMSSP:
456 seq_puts(s, "ntlmssp");
457 break;
458 default:
459 /* shouldn't ever happen */
460 seq_puts(s, "unknown");
461 break;
462 }
463
464 if (ses->sign)
465 seq_puts(s, "i");
466
467 if (ses->sectype == Kerberos)
468 seq_printf(s, ",cruid=%u",
469 from_kuid_munged(&init_user_ns, ses->cred_uid));
470 }
471
472 static void
473 cifs_show_cache_flavor(struct seq_file *s, struct cifs_sb_info *cifs_sb)
474 {
475 seq_puts(s, ",cache=");
476
477 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO)
478 seq_puts(s, "strict");
479 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO)
480 seq_puts(s, "none");
481 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RW_CACHE)
482 seq_puts(s, "singleclient"); /* assume only one client access */
483 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE)
484 seq_puts(s, "ro"); /* read only caching assumed */
485 else
486 seq_puts(s, "loose");
487 }
488
489 /*
490 * cifs_show_devname() is used so we show the mount device name with correct
491 * format (e.g. forward slashes vs. back slashes) in /proc/mounts
492 */
493 static int cifs_show_devname(struct seq_file *m, struct dentry *root)
494 {
495 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
496 char *devname = kstrdup(cifs_sb->ctx->source, GFP_KERNEL);
497
498 if (devname == NULL)
499 seq_puts(m, "none");
500 else {
501 convert_delimiter(devname, '/');
502 /* escape all spaces in share names */
503 seq_escape(m, devname, " \t");
504 kfree(devname);
505 }
506 return 0;
507 }
508
509 /*
510 * cifs_show_options() is for displaying mount options in /proc/mounts.
511 * Not all settable options are displayed but most of the important
512 * ones are.
513 */
514 static int
515 cifs_show_options(struct seq_file *s, struct dentry *root)
516 {
517 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
518 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
519 struct sockaddr *srcaddr;
520 srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr;
521
522 seq_show_option(s, "vers", tcon->ses->server->vals->version_string);
523 cifs_show_security(s, tcon->ses);
524 cifs_show_cache_flavor(s, cifs_sb);
525
526 if (tcon->no_lease)
527 seq_puts(s, ",nolease");
528 if (cifs_sb->ctx->multiuser)
529 seq_puts(s, ",multiuser");
530 else if (tcon->ses->user_name)
531 seq_show_option(s, "username", tcon->ses->user_name);
532
533 if (tcon->ses->domainName && tcon->ses->domainName[0] != 0)
534 seq_show_option(s, "domain", tcon->ses->domainName);
535
536 if (srcaddr->sa_family != AF_UNSPEC) {
537 struct sockaddr_in *saddr4;
538 struct sockaddr_in6 *saddr6;
539 saddr4 = (struct sockaddr_in *)srcaddr;
540 saddr6 = (struct sockaddr_in6 *)srcaddr;
541 if (srcaddr->sa_family == AF_INET6)
542 seq_printf(s, ",srcaddr=%pI6c",
543 &saddr6->sin6_addr);
544 else if (srcaddr->sa_family == AF_INET)
545 seq_printf(s, ",srcaddr=%pI4",
546 &saddr4->sin_addr.s_addr);
547 else
548 seq_printf(s, ",srcaddr=BAD-AF:%i",
549 (int)(srcaddr->sa_family));
550 }
551
552 seq_printf(s, ",uid=%u",
553 from_kuid_munged(&init_user_ns, cifs_sb->ctx->linux_uid));
554 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)
555 seq_puts(s, ",forceuid");
556 else
557 seq_puts(s, ",noforceuid");
558
559 seq_printf(s, ",gid=%u",
560 from_kgid_munged(&init_user_ns, cifs_sb->ctx->linux_gid));
561 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)
562 seq_puts(s, ",forcegid");
563 else
564 seq_puts(s, ",noforcegid");
565
566 cifs_show_address(s, tcon->ses->server);
567
568 if (!tcon->unix_ext)
569 seq_printf(s, ",file_mode=0%ho,dir_mode=0%ho",
570 cifs_sb->ctx->file_mode,
571 cifs_sb->ctx->dir_mode);
572 if (cifs_sb->ctx->iocharset)
573 seq_printf(s, ",iocharset=%s", cifs_sb->ctx->iocharset);
574 if (tcon->seal)
575 seq_puts(s, ",seal");
576 else if (tcon->ses->server->ignore_signature)
577 seq_puts(s, ",signloosely");
578 if (tcon->nocase)
579 seq_puts(s, ",nocase");
580 if (tcon->nodelete)
581 seq_puts(s, ",nodelete");
582 if (tcon->local_lease)
583 seq_puts(s, ",locallease");
584 if (tcon->retry)
585 seq_puts(s, ",hard");
586 else
587 seq_puts(s, ",soft");
588 if (tcon->use_persistent)
589 seq_puts(s, ",persistenthandles");
590 else if (tcon->use_resilient)
591 seq_puts(s, ",resilienthandles");
592 if (tcon->posix_extensions)
593 seq_puts(s, ",posix");
594 else if (tcon->unix_ext)
595 seq_puts(s, ",unix");
596 else
597 seq_puts(s, ",nounix");
598 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
599 seq_puts(s, ",nodfs");
600 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)
601 seq_puts(s, ",posixpaths");
602 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)
603 seq_puts(s, ",setuids");
604 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL)
605 seq_puts(s, ",idsfromsid");
606 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
607 seq_puts(s, ",serverino");
608 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
609 seq_puts(s, ",rwpidforward");
610 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL)
611 seq_puts(s, ",forcemand");
612 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
613 seq_puts(s, ",nouser_xattr");
614 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
615 seq_puts(s, ",mapchars");
616 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
617 seq_puts(s, ",mapposix");
618 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
619 seq_puts(s, ",sfu");
620 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
621 seq_puts(s, ",nobrl");
622 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_HANDLE_CACHE)
623 seq_puts(s, ",nohandlecache");
624 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID)
625 seq_puts(s, ",modefromsid");
626 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
627 seq_puts(s, ",cifsacl");
628 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
629 seq_puts(s, ",dynperm");
630 if (root->d_sb->s_flags & SB_POSIXACL)
631 seq_puts(s, ",acl");
632 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
633 seq_puts(s, ",mfsymlinks");
634 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
635 seq_puts(s, ",fsc");
636 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)
637 seq_puts(s, ",nostrictsync");
638 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
639 seq_puts(s, ",noperm");
640 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID)
641 seq_printf(s, ",backupuid=%u",
642 from_kuid_munged(&init_user_ns,
643 cifs_sb->ctx->backupuid));
644 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID)
645 seq_printf(s, ",backupgid=%u",
646 from_kgid_munged(&init_user_ns,
647 cifs_sb->ctx->backupgid));
648
649 seq_printf(s, ",rsize=%u", cifs_sb->ctx->rsize);
650 seq_printf(s, ",wsize=%u", cifs_sb->ctx->wsize);
651 seq_printf(s, ",bsize=%u", cifs_sb->ctx->bsize);
652 if (cifs_sb->ctx->rasize)
653 seq_printf(s, ",rasize=%u", cifs_sb->ctx->rasize);
654 if (tcon->ses->server->min_offload)
655 seq_printf(s, ",esize=%u", tcon->ses->server->min_offload);
656 seq_printf(s, ",echo_interval=%lu",
657 tcon->ses->server->echo_interval / HZ);
658
659 /* Only display max_credits if it was overridden on mount */
660 if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE)
661 seq_printf(s, ",max_credits=%u", tcon->ses->server->max_credits);
662
663 if (tcon->snapshot_time)
664 seq_printf(s, ",snapshot=%llu", tcon->snapshot_time);
665 if (tcon->handle_timeout)
666 seq_printf(s, ",handletimeout=%u", tcon->handle_timeout);
667
668 /*
669 * Display file and directory attribute timeout in seconds.
670 * If file and directory attribute timeout the same then actimeo
671 * was likely specified on mount
672 */
673 if (cifs_sb->ctx->acdirmax == cifs_sb->ctx->acregmax)
674 seq_printf(s, ",actimeo=%lu", cifs_sb->ctx->acregmax / HZ);
675 else {
676 seq_printf(s, ",acdirmax=%lu", cifs_sb->ctx->acdirmax / HZ);
677 seq_printf(s, ",acregmax=%lu", cifs_sb->ctx->acregmax / HZ);
678 }
679
680 if (tcon->ses->chan_max > 1)
681 seq_printf(s, ",multichannel,max_channels=%zu",
682 tcon->ses->chan_max);
683
684 if (tcon->use_witness)
685 seq_puts(s, ",witness");
686
687 return 0;
688 }
689
690 static void cifs_umount_begin(struct super_block *sb)
691 {
692 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
693 struct cifs_tcon *tcon;
694
695 if (cifs_sb == NULL)
696 return;
697
698 tcon = cifs_sb_master_tcon(cifs_sb);
699
700 spin_lock(&cifs_tcp_ses_lock);
701 if ((tcon->tc_count > 1) || (tcon->tidStatus == CifsExiting)) {
702 /* we have other mounts to same share or we have
703 already tried to force umount this and woken up
704 all waiting network requests, nothing to do */
705 spin_unlock(&cifs_tcp_ses_lock);
706 return;
707 } else if (tcon->tc_count == 1)
708 tcon->tidStatus = CifsExiting;
709 spin_unlock(&cifs_tcp_ses_lock);
710
711 /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */
712 /* cancel_notify_requests(tcon); */
713 if (tcon->ses && tcon->ses->server) {
714 cifs_dbg(FYI, "wake up tasks now - umount begin not complete\n");
715 wake_up_all(&tcon->ses->server->request_q);
716 wake_up_all(&tcon->ses->server->response_q);
717 msleep(1); /* yield */
718 /* we have to kick the requests once more */
719 wake_up_all(&tcon->ses->server->response_q);
720 msleep(1);
721 }
722
723 return;
724 }
725
726 #ifdef CONFIG_CIFS_STATS2
727 static int cifs_show_stats(struct seq_file *s, struct dentry *root)
728 {
729 /* BB FIXME */
730 return 0;
731 }
732 #endif
733
734 static int cifs_drop_inode(struct inode *inode)
735 {
736 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
737
738 /* no serverino => unconditional eviction */
739 return !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) ||
740 generic_drop_inode(inode);
741 }
742
743 static const struct super_operations cifs_super_ops = {
744 .statfs = cifs_statfs,
745 .alloc_inode = cifs_alloc_inode,
746 .free_inode = cifs_free_inode,
747 .drop_inode = cifs_drop_inode,
748 .evict_inode = cifs_evict_inode,
749 /* .show_path = cifs_show_path, */ /* Would we ever need show path? */
750 .show_devname = cifs_show_devname,
751 /* .delete_inode = cifs_delete_inode, */ /* Do not need above
752 function unless later we add lazy close of inodes or unless the
753 kernel forgets to call us with the same number of releases (closes)
754 as opens */
755 .show_options = cifs_show_options,
756 .umount_begin = cifs_umount_begin,
757 #ifdef CONFIG_CIFS_STATS2
758 .show_stats = cifs_show_stats,
759 #endif
760 };
761
762 /*
763 * Get root dentry from superblock according to prefix path mount option.
764 * Return dentry with refcount + 1 on success and NULL otherwise.
765 */
766 static struct dentry *
767 cifs_get_root(struct smb3_fs_context *ctx, struct super_block *sb)
768 {
769 struct dentry *dentry;
770 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
771 char *full_path = NULL;
772 char *s, *p;
773 char sep;
774
775 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
776 return dget(sb->s_root);
777
778 full_path = cifs_build_path_to_root(ctx, cifs_sb,
779 cifs_sb_master_tcon(cifs_sb), 0);
780 if (full_path == NULL)
781 return ERR_PTR(-ENOMEM);
782
783 cifs_dbg(FYI, "Get root dentry for %s\n", full_path);
784
785 sep = CIFS_DIR_SEP(cifs_sb);
786 dentry = dget(sb->s_root);
787 p = s = full_path;
788
789 do {
790 struct inode *dir = d_inode(dentry);
791 struct dentry *child;
792
793 if (!S_ISDIR(dir->i_mode)) {
794 dput(dentry);
795 dentry = ERR_PTR(-ENOTDIR);
796 break;
797 }
798
799 /* skip separators */
800 while (*s == sep)
801 s++;
802 if (!*s)
803 break;
804 p = s++;
805 /* next separator */
806 while (*s && *s != sep)
807 s++;
808
809 child = lookup_positive_unlocked(p, dentry, s - p);
810 dput(dentry);
811 dentry = child;
812 } while (!IS_ERR(dentry));
813 kfree(full_path);
814 return dentry;
815 }
816
817 static int cifs_set_super(struct super_block *sb, void *data)
818 {
819 struct cifs_mnt_data *mnt_data = data;
820 sb->s_fs_info = mnt_data->cifs_sb;
821 return set_anon_super(sb, NULL);
822 }
823
824 struct dentry *
825 cifs_smb3_do_mount(struct file_system_type *fs_type,
826 int flags, struct smb3_fs_context *old_ctx)
827 {
828 int rc;
829 struct super_block *sb;
830 struct cifs_sb_info *cifs_sb = NULL;
831 struct cifs_mnt_data mnt_data;
832 struct dentry *root;
833
834 /*
835 * Prints in Kernel / CIFS log the attempted mount operation
836 * If CIFS_DEBUG && cifs_FYI
837 */
838 if (cifsFYI)
839 cifs_dbg(FYI, "Devname: %s flags: %d\n", old_ctx->UNC, flags);
840 else
841 cifs_info("Attempting to mount %s\n", old_ctx->UNC);
842
843 cifs_sb = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL);
844 if (cifs_sb == NULL) {
845 root = ERR_PTR(-ENOMEM);
846 goto out;
847 }
848
849 cifs_sb->ctx = kzalloc(sizeof(struct smb3_fs_context), GFP_KERNEL);
850 if (!cifs_sb->ctx) {
851 root = ERR_PTR(-ENOMEM);
852 goto out;
853 }
854 rc = smb3_fs_context_dup(cifs_sb->ctx, old_ctx);
855 if (rc) {
856 root = ERR_PTR(rc);
857 goto out;
858 }
859
860 rc = cifs_setup_volume_info(cifs_sb->ctx, NULL, NULL);
861 if (rc) {
862 root = ERR_PTR(rc);
863 goto out;
864 }
865
866 rc = cifs_setup_cifs_sb(cifs_sb);
867 if (rc) {
868 root = ERR_PTR(rc);
869 goto out;
870 }
871
872 rc = cifs_mount(cifs_sb, cifs_sb->ctx);
873 if (rc) {
874 if (!(flags & SB_SILENT))
875 cifs_dbg(VFS, "cifs_mount failed w/return code = %d\n",
876 rc);
877 root = ERR_PTR(rc);
878 goto out;
879 }
880
881 mnt_data.ctx = cifs_sb->ctx;
882 mnt_data.cifs_sb = cifs_sb;
883 mnt_data.flags = flags;
884
885 /* BB should we make this contingent on mount parm? */
886 flags |= SB_NODIRATIME | SB_NOATIME;
887
888 sb = sget(fs_type, cifs_match_super, cifs_set_super, flags, &mnt_data);
889 if (IS_ERR(sb)) {
890 root = ERR_CAST(sb);
891 cifs_umount(cifs_sb);
892 cifs_sb = NULL;
893 goto out;
894 }
895
896 if (sb->s_root) {
897 cifs_dbg(FYI, "Use existing superblock\n");
898 cifs_umount(cifs_sb);
899 cifs_sb = NULL;
900 } else {
901 rc = cifs_read_super(sb);
902 if (rc) {
903 root = ERR_PTR(rc);
904 goto out_super;
905 }
906
907 sb->s_flags |= SB_ACTIVE;
908 }
909
910 root = cifs_get_root(cifs_sb ? cifs_sb->ctx : old_ctx, sb);
911 if (IS_ERR(root))
912 goto out_super;
913
914 if (cifs_sb)
915 cifs_sb->root = dget(root);
916
917 cifs_dbg(FYI, "dentry root is: %p\n", root);
918 return root;
919
920 out_super:
921 deactivate_locked_super(sb);
922 return root;
923 out:
924 if (cifs_sb) {
925 kfree(cifs_sb->prepath);
926 smb3_cleanup_fs_context(cifs_sb->ctx);
927 kfree(cifs_sb);
928 }
929 return root;
930 }
931
932
933 static ssize_t
934 cifs_loose_read_iter(struct kiocb *iocb, struct iov_iter *iter)
935 {
936 ssize_t rc;
937 struct inode *inode = file_inode(iocb->ki_filp);
938
939 if (iocb->ki_filp->f_flags & O_DIRECT)
940 return cifs_user_readv(iocb, iter);
941
942 rc = cifs_revalidate_mapping(inode);
943 if (rc)
944 return rc;
945
946 return generic_file_read_iter(iocb, iter);
947 }
948
949 static ssize_t cifs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
950 {
951 struct inode *inode = file_inode(iocb->ki_filp);
952 struct cifsInodeInfo *cinode = CIFS_I(inode);
953 ssize_t written;
954 int rc;
955
956 if (iocb->ki_filp->f_flags & O_DIRECT) {
957 written = cifs_user_writev(iocb, from);
958 if (written > 0 && CIFS_CACHE_READ(cinode)) {
959 cifs_zap_mapping(inode);
960 cifs_dbg(FYI,
961 "Set no oplock for inode=%p after a write operation\n",
962 inode);
963 cinode->oplock = 0;
964 }
965 return written;
966 }
967
968 written = cifs_get_writer(cinode);
969 if (written)
970 return written;
971
972 written = generic_file_write_iter(iocb, from);
973
974 if (CIFS_CACHE_WRITE(CIFS_I(inode)))
975 goto out;
976
977 rc = filemap_fdatawrite(inode->i_mapping);
978 if (rc)
979 cifs_dbg(FYI, "cifs_file_write_iter: %d rc on %p inode\n",
980 rc, inode);
981
982 out:
983 cifs_put_writer(cinode);
984 return written;
985 }
986
987 static loff_t cifs_llseek(struct file *file, loff_t offset, int whence)
988 {
989 struct cifsFileInfo *cfile = file->private_data;
990 struct cifs_tcon *tcon;
991
992 /*
993 * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
994 * the cached file length
995 */
996 if (whence != SEEK_SET && whence != SEEK_CUR) {
997 int rc;
998 struct inode *inode = file_inode(file);
999
1000 /*
1001 * We need to be sure that all dirty pages are written and the
1002 * server has the newest file length.
1003 */
1004 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
1005 inode->i_mapping->nrpages != 0) {
1006 rc = filemap_fdatawait(inode->i_mapping);
1007 if (rc) {
1008 mapping_set_error(inode->i_mapping, rc);
1009 return rc;
1010 }
1011 }
1012 /*
1013 * Some applications poll for the file length in this strange
1014 * way so we must seek to end on non-oplocked files by
1015 * setting the revalidate time to zero.
1016 */
1017 CIFS_I(inode)->time = 0;
1018
1019 rc = cifs_revalidate_file_attr(file);
1020 if (rc < 0)
1021 return (loff_t)rc;
1022 }
1023 if (cfile && cfile->tlink) {
1024 tcon = tlink_tcon(cfile->tlink);
1025 if (tcon->ses->server->ops->llseek)
1026 return tcon->ses->server->ops->llseek(file, tcon,
1027 offset, whence);
1028 }
1029 return generic_file_llseek(file, offset, whence);
1030 }
1031
1032 static int
1033 cifs_setlease(struct file *file, long arg, struct file_lock **lease, void **priv)
1034 {
1035 /*
1036 * Note that this is called by vfs setlease with i_lock held to
1037 * protect *lease from going away.
1038 */
1039 struct inode *inode = file_inode(file);
1040 struct cifsFileInfo *cfile = file->private_data;
1041
1042 if (!(S_ISREG(inode->i_mode)))
1043 return -EINVAL;
1044
1045 /* Check if file is oplocked if this is request for new lease */
1046 if (arg == F_UNLCK ||
1047 ((arg == F_RDLCK) && CIFS_CACHE_READ(CIFS_I(inode))) ||
1048 ((arg == F_WRLCK) && CIFS_CACHE_WRITE(CIFS_I(inode))))
1049 return generic_setlease(file, arg, lease, priv);
1050 else if (tlink_tcon(cfile->tlink)->local_lease &&
1051 !CIFS_CACHE_READ(CIFS_I(inode)))
1052 /*
1053 * If the server claims to support oplock on this file, then we
1054 * still need to check oplock even if the local_lease mount
1055 * option is set, but there are servers which do not support
1056 * oplock for which this mount option may be useful if the user
1057 * knows that the file won't be changed on the server by anyone
1058 * else.
1059 */
1060 return generic_setlease(file, arg, lease, priv);
1061 else
1062 return -EAGAIN;
1063 }
1064
1065 struct file_system_type cifs_fs_type = {
1066 .owner = THIS_MODULE,
1067 .name = "cifs",
1068 .init_fs_context = smb3_init_fs_context,
1069 .parameters = smb3_fs_parameters,
1070 .kill_sb = cifs_kill_sb,
1071 .fs_flags = FS_RENAME_DOES_D_MOVE,
1072 };
1073 MODULE_ALIAS_FS("cifs");
1074
1075 static struct file_system_type smb3_fs_type = {
1076 .owner = THIS_MODULE,
1077 .name = "smb3",
1078 .init_fs_context = smb3_init_fs_context,
1079 .parameters = smb3_fs_parameters,
1080 .kill_sb = cifs_kill_sb,
1081 .fs_flags = FS_RENAME_DOES_D_MOVE,
1082 };
1083 MODULE_ALIAS_FS("smb3");
1084 MODULE_ALIAS("smb3");
1085
1086 const struct inode_operations cifs_dir_inode_ops = {
1087 .create = cifs_create,
1088 .atomic_open = cifs_atomic_open,
1089 .lookup = cifs_lookup,
1090 .getattr = cifs_getattr,
1091 .unlink = cifs_unlink,
1092 .link = cifs_hardlink,
1093 .mkdir = cifs_mkdir,
1094 .rmdir = cifs_rmdir,
1095 .rename = cifs_rename2,
1096 .permission = cifs_permission,
1097 .setattr = cifs_setattr,
1098 .symlink = cifs_symlink,
1099 .mknod = cifs_mknod,
1100 .listxattr = cifs_listxattr,
1101 };
1102
1103 const struct inode_operations cifs_file_inode_ops = {
1104 .setattr = cifs_setattr,
1105 .getattr = cifs_getattr,
1106 .permission = cifs_permission,
1107 .listxattr = cifs_listxattr,
1108 .fiemap = cifs_fiemap,
1109 };
1110
1111 const struct inode_operations cifs_symlink_inode_ops = {
1112 .get_link = cifs_get_link,
1113 .permission = cifs_permission,
1114 .listxattr = cifs_listxattr,
1115 };
1116
1117 static loff_t cifs_remap_file_range(struct file *src_file, loff_t off,
1118 struct file *dst_file, loff_t destoff, loff_t len,
1119 unsigned int remap_flags)
1120 {
1121 struct inode *src_inode = file_inode(src_file);
1122 struct inode *target_inode = file_inode(dst_file);
1123 struct cifsFileInfo *smb_file_src = src_file->private_data;
1124 struct cifsFileInfo *smb_file_target;
1125 struct cifs_tcon *target_tcon;
1126 unsigned int xid;
1127 int rc;
1128
1129 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
1130 return -EINVAL;
1131
1132 cifs_dbg(FYI, "clone range\n");
1133
1134 xid = get_xid();
1135
1136 if (!src_file->private_data || !dst_file->private_data) {
1137 rc = -EBADF;
1138 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1139 goto out;
1140 }
1141
1142 smb_file_target = dst_file->private_data;
1143 target_tcon = tlink_tcon(smb_file_target->tlink);
1144
1145 /*
1146 * Note: cifs case is easier than btrfs since server responsible for
1147 * checks for proper open modes and file type and if it wants
1148 * server could even support copy of range where source = target
1149 */
1150 lock_two_nondirectories(target_inode, src_inode);
1151
1152 if (len == 0)
1153 len = src_inode->i_size - off;
1154
1155 cifs_dbg(FYI, "about to flush pages\n");
1156 /* should we flush first and last page first */
1157 truncate_inode_pages_range(&target_inode->i_data, destoff,
1158 PAGE_ALIGN(destoff + len)-1);
1159
1160 if (target_tcon->ses->server->ops->duplicate_extents)
1161 rc = target_tcon->ses->server->ops->duplicate_extents(xid,
1162 smb_file_src, smb_file_target, off, len, destoff);
1163 else
1164 rc = -EOPNOTSUPP;
1165
1166 /* force revalidate of size and timestamps of target file now
1167 that target is updated on the server */
1168 CIFS_I(target_inode)->time = 0;
1169 /* although unlocking in the reverse order from locking is not
1170 strictly necessary here it is a little cleaner to be consistent */
1171 unlock_two_nondirectories(src_inode, target_inode);
1172 out:
1173 free_xid(xid);
1174 return rc < 0 ? rc : len;
1175 }
1176
1177 ssize_t cifs_file_copychunk_range(unsigned int xid,
1178 struct file *src_file, loff_t off,
1179 struct file *dst_file, loff_t destoff,
1180 size_t len, unsigned int flags)
1181 {
1182 struct inode *src_inode = file_inode(src_file);
1183 struct inode *target_inode = file_inode(dst_file);
1184 struct cifsFileInfo *smb_file_src;
1185 struct cifsFileInfo *smb_file_target;
1186 struct cifs_tcon *src_tcon;
1187 struct cifs_tcon *target_tcon;
1188 ssize_t rc;
1189
1190 cifs_dbg(FYI, "copychunk range\n");
1191
1192 if (!src_file->private_data || !dst_file->private_data) {
1193 rc = -EBADF;
1194 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1195 goto out;
1196 }
1197
1198 rc = -EXDEV;
1199 smb_file_target = dst_file->private_data;
1200 smb_file_src = src_file->private_data;
1201 src_tcon = tlink_tcon(smb_file_src->tlink);
1202 target_tcon = tlink_tcon(smb_file_target->tlink);
1203
1204 if (src_tcon->ses != target_tcon->ses) {
1205 cifs_dbg(VFS, "source and target of copy not on same server\n");
1206 goto out;
1207 }
1208
1209 rc = -EOPNOTSUPP;
1210 if (!target_tcon->ses->server->ops->copychunk_range)
1211 goto out;
1212
1213 /*
1214 * Note: cifs case is easier than btrfs since server responsible for
1215 * checks for proper open modes and file type and if it wants
1216 * server could even support copy of range where source = target
1217 */
1218 lock_two_nondirectories(target_inode, src_inode);
1219
1220 cifs_dbg(FYI, "about to flush pages\n");
1221 /* should we flush first and last page first */
1222 truncate_inode_pages(&target_inode->i_data, 0);
1223
1224 rc = file_modified(dst_file);
1225 if (!rc)
1226 rc = target_tcon->ses->server->ops->copychunk_range(xid,
1227 smb_file_src, smb_file_target, off, len, destoff);
1228
1229 file_accessed(src_file);
1230
1231 /* force revalidate of size and timestamps of target file now
1232 * that target is updated on the server
1233 */
1234 CIFS_I(target_inode)->time = 0;
1235 /* although unlocking in the reverse order from locking is not
1236 * strictly necessary here it is a little cleaner to be consistent
1237 */
1238 unlock_two_nondirectories(src_inode, target_inode);
1239
1240 out:
1241 return rc;
1242 }
1243
1244 /*
1245 * Directory operations under CIFS/SMB2/SMB3 are synchronous, so fsync()
1246 * is a dummy operation.
1247 */
1248 static int cifs_dir_fsync(struct file *file, loff_t start, loff_t end, int datasync)
1249 {
1250 cifs_dbg(FYI, "Sync directory - name: %pD datasync: 0x%x\n",
1251 file, datasync);
1252
1253 return 0;
1254 }
1255
1256 static ssize_t cifs_copy_file_range(struct file *src_file, loff_t off,
1257 struct file *dst_file, loff_t destoff,
1258 size_t len, unsigned int flags)
1259 {
1260 unsigned int xid = get_xid();
1261 ssize_t rc;
1262 struct cifsFileInfo *cfile = dst_file->private_data;
1263
1264 if (cfile->swapfile)
1265 return -EOPNOTSUPP;
1266
1267 rc = cifs_file_copychunk_range(xid, src_file, off, dst_file, destoff,
1268 len, flags);
1269 free_xid(xid);
1270
1271 if (rc == -EOPNOTSUPP || rc == -EXDEV)
1272 rc = generic_copy_file_range(src_file, off, dst_file,
1273 destoff, len, flags);
1274 return rc;
1275 }
1276
1277 const struct file_operations cifs_file_ops = {
1278 .read_iter = cifs_loose_read_iter,
1279 .write_iter = cifs_file_write_iter,
1280 .open = cifs_open,
1281 .release = cifs_close,
1282 .lock = cifs_lock,
1283 .flock = cifs_flock,
1284 .fsync = cifs_fsync,
1285 .flush = cifs_flush,
1286 .mmap = cifs_file_mmap,
1287 .splice_read = generic_file_splice_read,
1288 .splice_write = iter_file_splice_write,
1289 .llseek = cifs_llseek,
1290 .unlocked_ioctl = cifs_ioctl,
1291 .copy_file_range = cifs_copy_file_range,
1292 .remap_file_range = cifs_remap_file_range,
1293 .setlease = cifs_setlease,
1294 .fallocate = cifs_fallocate,
1295 };
1296
1297 const struct file_operations cifs_file_strict_ops = {
1298 .read_iter = cifs_strict_readv,
1299 .write_iter = cifs_strict_writev,
1300 .open = cifs_open,
1301 .release = cifs_close,
1302 .lock = cifs_lock,
1303 .flock = cifs_flock,
1304 .fsync = cifs_strict_fsync,
1305 .flush = cifs_flush,
1306 .mmap = cifs_file_strict_mmap,
1307 .splice_read = generic_file_splice_read,
1308 .splice_write = iter_file_splice_write,
1309 .llseek = cifs_llseek,
1310 .unlocked_ioctl = cifs_ioctl,
1311 .copy_file_range = cifs_copy_file_range,
1312 .remap_file_range = cifs_remap_file_range,
1313 .setlease = cifs_setlease,
1314 .fallocate = cifs_fallocate,
1315 };
1316
1317 const struct file_operations cifs_file_direct_ops = {
1318 .read_iter = cifs_direct_readv,
1319 .write_iter = cifs_direct_writev,
1320 .open = cifs_open,
1321 .release = cifs_close,
1322 .lock = cifs_lock,
1323 .flock = cifs_flock,
1324 .fsync = cifs_fsync,
1325 .flush = cifs_flush,
1326 .mmap = cifs_file_mmap,
1327 .splice_read = generic_file_splice_read,
1328 .splice_write = iter_file_splice_write,
1329 .unlocked_ioctl = cifs_ioctl,
1330 .copy_file_range = cifs_copy_file_range,
1331 .remap_file_range = cifs_remap_file_range,
1332 .llseek = cifs_llseek,
1333 .setlease = cifs_setlease,
1334 .fallocate = cifs_fallocate,
1335 };
1336
1337 const struct file_operations cifs_file_nobrl_ops = {
1338 .read_iter = cifs_loose_read_iter,
1339 .write_iter = cifs_file_write_iter,
1340 .open = cifs_open,
1341 .release = cifs_close,
1342 .fsync = cifs_fsync,
1343 .flush = cifs_flush,
1344 .mmap = cifs_file_mmap,
1345 .splice_read = generic_file_splice_read,
1346 .splice_write = iter_file_splice_write,
1347 .llseek = cifs_llseek,
1348 .unlocked_ioctl = cifs_ioctl,
1349 .copy_file_range = cifs_copy_file_range,
1350 .remap_file_range = cifs_remap_file_range,
1351 .setlease = cifs_setlease,
1352 .fallocate = cifs_fallocate,
1353 };
1354
1355 const struct file_operations cifs_file_strict_nobrl_ops = {
1356 .read_iter = cifs_strict_readv,
1357 .write_iter = cifs_strict_writev,
1358 .open = cifs_open,
1359 .release = cifs_close,
1360 .fsync = cifs_strict_fsync,
1361 .flush = cifs_flush,
1362 .mmap = cifs_file_strict_mmap,
1363 .splice_read = generic_file_splice_read,
1364 .splice_write = iter_file_splice_write,
1365 .llseek = cifs_llseek,
1366 .unlocked_ioctl = cifs_ioctl,
1367 .copy_file_range = cifs_copy_file_range,
1368 .remap_file_range = cifs_remap_file_range,
1369 .setlease = cifs_setlease,
1370 .fallocate = cifs_fallocate,
1371 };
1372
1373 const struct file_operations cifs_file_direct_nobrl_ops = {
1374 .read_iter = cifs_direct_readv,
1375 .write_iter = cifs_direct_writev,
1376 .open = cifs_open,
1377 .release = cifs_close,
1378 .fsync = cifs_fsync,
1379 .flush = cifs_flush,
1380 .mmap = cifs_file_mmap,
1381 .splice_read = generic_file_splice_read,
1382 .splice_write = iter_file_splice_write,
1383 .unlocked_ioctl = cifs_ioctl,
1384 .copy_file_range = cifs_copy_file_range,
1385 .remap_file_range = cifs_remap_file_range,
1386 .llseek = cifs_llseek,
1387 .setlease = cifs_setlease,
1388 .fallocate = cifs_fallocate,
1389 };
1390
1391 const struct file_operations cifs_dir_ops = {
1392 .iterate_shared = cifs_readdir,
1393 .release = cifs_closedir,
1394 .read = generic_read_dir,
1395 .unlocked_ioctl = cifs_ioctl,
1396 .copy_file_range = cifs_copy_file_range,
1397 .remap_file_range = cifs_remap_file_range,
1398 .llseek = generic_file_llseek,
1399 .fsync = cifs_dir_fsync,
1400 };
1401
1402 static void
1403 cifs_init_once(void *inode)
1404 {
1405 struct cifsInodeInfo *cifsi = inode;
1406
1407 inode_init_once(&cifsi->vfs_inode);
1408 init_rwsem(&cifsi->lock_sem);
1409 }
1410
1411 static int __init
1412 cifs_init_inodecache(void)
1413 {
1414 cifs_inode_cachep = kmem_cache_create("cifs_inode_cache",
1415 sizeof(struct cifsInodeInfo),
1416 0, (SLAB_RECLAIM_ACCOUNT|
1417 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
1418 cifs_init_once);
1419 if (cifs_inode_cachep == NULL)
1420 return -ENOMEM;
1421
1422 return 0;
1423 }
1424
1425 static void
1426 cifs_destroy_inodecache(void)
1427 {
1428 /*
1429 * Make sure all delayed rcu free inodes are flushed before we
1430 * destroy cache.
1431 */
1432 rcu_barrier();
1433 kmem_cache_destroy(cifs_inode_cachep);
1434 }
1435
1436 static int
1437 cifs_init_request_bufs(void)
1438 {
1439 /*
1440 * SMB2 maximum header size is bigger than CIFS one - no problems to
1441 * allocate some more bytes for CIFS.
1442 */
1443 size_t max_hdr_size = MAX_SMB2_HDR_SIZE;
1444
1445 if (CIFSMaxBufSize < 8192) {
1446 /* Buffer size can not be smaller than 2 * PATH_MAX since maximum
1447 Unicode path name has to fit in any SMB/CIFS path based frames */
1448 CIFSMaxBufSize = 8192;
1449 } else if (CIFSMaxBufSize > 1024*127) {
1450 CIFSMaxBufSize = 1024 * 127;
1451 } else {
1452 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
1453 }
1454 /*
1455 cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n",
1456 CIFSMaxBufSize, CIFSMaxBufSize);
1457 */
1458 cifs_req_cachep = kmem_cache_create_usercopy("cifs_request",
1459 CIFSMaxBufSize + max_hdr_size, 0,
1460 SLAB_HWCACHE_ALIGN, 0,
1461 CIFSMaxBufSize + max_hdr_size,
1462 NULL);
1463 if (cifs_req_cachep == NULL)
1464 return -ENOMEM;
1465
1466 if (cifs_min_rcv < 1)
1467 cifs_min_rcv = 1;
1468 else if (cifs_min_rcv > 64) {
1469 cifs_min_rcv = 64;
1470 cifs_dbg(VFS, "cifs_min_rcv set to maximum (64)\n");
1471 }
1472
1473 cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv,
1474 cifs_req_cachep);
1475
1476 if (cifs_req_poolp == NULL) {
1477 kmem_cache_destroy(cifs_req_cachep);
1478 return -ENOMEM;
1479 }
1480 /* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and
1481 almost all handle based requests (but not write response, nor is it
1482 sufficient for path based requests). A smaller size would have
1483 been more efficient (compacting multiple slab items on one 4k page)
1484 for the case in which debug was on, but this larger size allows
1485 more SMBs to use small buffer alloc and is still much more
1486 efficient to alloc 1 per page off the slab compared to 17K (5page)
1487 alloc of large cifs buffers even when page debugging is on */
1488 cifs_sm_req_cachep = kmem_cache_create_usercopy("cifs_small_rq",
1489 MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN,
1490 0, MAX_CIFS_SMALL_BUFFER_SIZE, NULL);
1491 if (cifs_sm_req_cachep == NULL) {
1492 mempool_destroy(cifs_req_poolp);
1493 kmem_cache_destroy(cifs_req_cachep);
1494 return -ENOMEM;
1495 }
1496
1497 if (cifs_min_small < 2)
1498 cifs_min_small = 2;
1499 else if (cifs_min_small > 256) {
1500 cifs_min_small = 256;
1501 cifs_dbg(FYI, "cifs_min_small set to maximum (256)\n");
1502 }
1503
1504 cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small,
1505 cifs_sm_req_cachep);
1506
1507 if (cifs_sm_req_poolp == NULL) {
1508 mempool_destroy(cifs_req_poolp);
1509 kmem_cache_destroy(cifs_req_cachep);
1510 kmem_cache_destroy(cifs_sm_req_cachep);
1511 return -ENOMEM;
1512 }
1513
1514 return 0;
1515 }
1516
1517 static void
1518 cifs_destroy_request_bufs(void)
1519 {
1520 mempool_destroy(cifs_req_poolp);
1521 kmem_cache_destroy(cifs_req_cachep);
1522 mempool_destroy(cifs_sm_req_poolp);
1523 kmem_cache_destroy(cifs_sm_req_cachep);
1524 }
1525
1526 static int
1527 cifs_init_mids(void)
1528 {
1529 cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids",
1530 sizeof(struct mid_q_entry), 0,
1531 SLAB_HWCACHE_ALIGN, NULL);
1532 if (cifs_mid_cachep == NULL)
1533 return -ENOMEM;
1534
1535 /* 3 is a reasonable minimum number of simultaneous operations */
1536 cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep);
1537 if (cifs_mid_poolp == NULL) {
1538 kmem_cache_destroy(cifs_mid_cachep);
1539 return -ENOMEM;
1540 }
1541
1542 return 0;
1543 }
1544
1545 static void
1546 cifs_destroy_mids(void)
1547 {
1548 mempool_destroy(cifs_mid_poolp);
1549 kmem_cache_destroy(cifs_mid_cachep);
1550 }
1551
1552 static int __init
1553 init_cifs(void)
1554 {
1555 int rc = 0;
1556 cifs_proc_init();
1557 INIT_LIST_HEAD(&cifs_tcp_ses_list);
1558 /*
1559 * Initialize Global counters
1560 */
1561 atomic_set(&sesInfoAllocCount, 0);
1562 atomic_set(&tconInfoAllocCount, 0);
1563 atomic_set(&tcpSesNextId, 0);
1564 atomic_set(&tcpSesAllocCount, 0);
1565 atomic_set(&tcpSesReconnectCount, 0);
1566 atomic_set(&tconInfoReconnectCount, 0);
1567
1568 atomic_set(&bufAllocCount, 0);
1569 atomic_set(&smBufAllocCount, 0);
1570 #ifdef CONFIG_CIFS_STATS2
1571 atomic_set(&totBufAllocCount, 0);
1572 atomic_set(&totSmBufAllocCount, 0);
1573 if (slow_rsp_threshold < 1)
1574 cifs_dbg(FYI, "slow_response_threshold msgs disabled\n");
1575 else if (slow_rsp_threshold > 32767)
1576 cifs_dbg(VFS,
1577 "slow response threshold set higher than recommended (0 to 32767)\n");
1578 #endif /* CONFIG_CIFS_STATS2 */
1579
1580 atomic_set(&midCount, 0);
1581 GlobalCurrentXid = 0;
1582 GlobalTotalActiveXid = 0;
1583 GlobalMaxActiveXid = 0;
1584 spin_lock_init(&cifs_tcp_ses_lock);
1585 spin_lock_init(&GlobalMid_Lock);
1586
1587 cifs_lock_secret = get_random_u32();
1588
1589 if (cifs_max_pending < 2) {
1590 cifs_max_pending = 2;
1591 cifs_dbg(FYI, "cifs_max_pending set to min of 2\n");
1592 } else if (cifs_max_pending > CIFS_MAX_REQ) {
1593 cifs_max_pending = CIFS_MAX_REQ;
1594 cifs_dbg(FYI, "cifs_max_pending set to max of %u\n",
1595 CIFS_MAX_REQ);
1596 }
1597
1598 cifsiod_wq = alloc_workqueue("cifsiod", WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1599 if (!cifsiod_wq) {
1600 rc = -ENOMEM;
1601 goto out_clean_proc;
1602 }
1603
1604 /*
1605 * Consider in future setting limit!=0 maybe to min(num_of_cores - 1, 3)
1606 * so that we don't launch too many worker threads but
1607 * Documentation/core-api/workqueue.rst recommends setting it to 0
1608 */
1609
1610 /* WQ_UNBOUND allows decrypt tasks to run on any CPU */
1611 decrypt_wq = alloc_workqueue("smb3decryptd",
1612 WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1613 if (!decrypt_wq) {
1614 rc = -ENOMEM;
1615 goto out_destroy_cifsiod_wq;
1616 }
1617
1618 fileinfo_put_wq = alloc_workqueue("cifsfileinfoput",
1619 WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1620 if (!fileinfo_put_wq) {
1621 rc = -ENOMEM;
1622 goto out_destroy_decrypt_wq;
1623 }
1624
1625 cifsoplockd_wq = alloc_workqueue("cifsoplockd",
1626 WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1627 if (!cifsoplockd_wq) {
1628 rc = -ENOMEM;
1629 goto out_destroy_fileinfo_put_wq;
1630 }
1631
1632 deferredclose_wq = alloc_workqueue("deferredclose",
1633 WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1634 if (!deferredclose_wq) {
1635 rc = -ENOMEM;
1636 goto out_destroy_cifsoplockd_wq;
1637 }
1638
1639 rc = cifs_fscache_register();
1640 if (rc)
1641 goto out_destroy_deferredclose_wq;
1642
1643 rc = cifs_init_inodecache();
1644 if (rc)
1645 goto out_unreg_fscache;
1646
1647 rc = cifs_init_mids();
1648 if (rc)
1649 goto out_destroy_inodecache;
1650
1651 rc = cifs_init_request_bufs();
1652 if (rc)
1653 goto out_destroy_mids;
1654
1655 #ifdef CONFIG_CIFS_DFS_UPCALL
1656 rc = dfs_cache_init();
1657 if (rc)
1658 goto out_destroy_request_bufs;
1659 #endif /* CONFIG_CIFS_DFS_UPCALL */
1660 #ifdef CONFIG_CIFS_UPCALL
1661 rc = init_cifs_spnego();
1662 if (rc)
1663 goto out_destroy_dfs_cache;
1664 #endif /* CONFIG_CIFS_UPCALL */
1665 #ifdef CONFIG_CIFS_SWN_UPCALL
1666 rc = cifs_genl_init();
1667 if (rc)
1668 goto out_register_key_type;
1669 #endif /* CONFIG_CIFS_SWN_UPCALL */
1670
1671 rc = init_cifs_idmap();
1672 if (rc)
1673 goto out_cifs_swn_init;
1674
1675 rc = register_filesystem(&cifs_fs_type);
1676 if (rc)
1677 goto out_init_cifs_idmap;
1678
1679 rc = register_filesystem(&smb3_fs_type);
1680 if (rc) {
1681 unregister_filesystem(&cifs_fs_type);
1682 goto out_init_cifs_idmap;
1683 }
1684
1685 return 0;
1686
1687 out_init_cifs_idmap:
1688 exit_cifs_idmap();
1689 out_cifs_swn_init:
1690 #ifdef CONFIG_CIFS_SWN_UPCALL
1691 cifs_genl_exit();
1692 out_register_key_type:
1693 #endif
1694 #ifdef CONFIG_CIFS_UPCALL
1695 exit_cifs_spnego();
1696 out_destroy_dfs_cache:
1697 #endif
1698 #ifdef CONFIG_CIFS_DFS_UPCALL
1699 dfs_cache_destroy();
1700 out_destroy_request_bufs:
1701 #endif
1702 cifs_destroy_request_bufs();
1703 out_destroy_mids:
1704 cifs_destroy_mids();
1705 out_destroy_inodecache:
1706 cifs_destroy_inodecache();
1707 out_unreg_fscache:
1708 cifs_fscache_unregister();
1709 out_destroy_deferredclose_wq:
1710 destroy_workqueue(deferredclose_wq);
1711 out_destroy_cifsoplockd_wq:
1712 destroy_workqueue(cifsoplockd_wq);
1713 out_destroy_fileinfo_put_wq:
1714 destroy_workqueue(fileinfo_put_wq);
1715 out_destroy_decrypt_wq:
1716 destroy_workqueue(decrypt_wq);
1717 out_destroy_cifsiod_wq:
1718 destroy_workqueue(cifsiod_wq);
1719 out_clean_proc:
1720 cifs_proc_clean();
1721 return rc;
1722 }
1723
1724 static void __exit
1725 exit_cifs(void)
1726 {
1727 cifs_dbg(NOISY, "exit_smb3\n");
1728 unregister_filesystem(&cifs_fs_type);
1729 unregister_filesystem(&smb3_fs_type);
1730 cifs_dfs_release_automount_timer();
1731 exit_cifs_idmap();
1732 #ifdef CONFIG_CIFS_SWN_UPCALL
1733 cifs_genl_exit();
1734 #endif
1735 #ifdef CONFIG_CIFS_UPCALL
1736 exit_cifs_spnego();
1737 #endif
1738 #ifdef CONFIG_CIFS_DFS_UPCALL
1739 dfs_cache_destroy();
1740 #endif
1741 cifs_destroy_request_bufs();
1742 cifs_destroy_mids();
1743 cifs_destroy_inodecache();
1744 cifs_fscache_unregister();
1745 destroy_workqueue(deferredclose_wq);
1746 destroy_workqueue(cifsoplockd_wq);
1747 destroy_workqueue(decrypt_wq);
1748 destroy_workqueue(fileinfo_put_wq);
1749 destroy_workqueue(cifsiod_wq);
1750 cifs_proc_clean();
1751 }
1752
1753 MODULE_AUTHOR("Steve French");
1754 MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */
1755 MODULE_DESCRIPTION
1756 ("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and "
1757 "also older servers complying with the SNIA CIFS Specification)");
1758 MODULE_VERSION(CIFS_VERSION);
1759 MODULE_SOFTDEP("ecb");
1760 MODULE_SOFTDEP("hmac");
1761 MODULE_SOFTDEP("md5");
1762 MODULE_SOFTDEP("nls");
1763 MODULE_SOFTDEP("aes");
1764 MODULE_SOFTDEP("cmac");
1765 MODULE_SOFTDEP("sha256");
1766 MODULE_SOFTDEP("sha512");
1767 MODULE_SOFTDEP("aead2");
1768 MODULE_SOFTDEP("ccm");
1769 MODULE_SOFTDEP("gcm");
1770 module_init(init_cifs)
1771 module_exit(exit_cifs)