cifsfs.c 45.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 *   fs/cifs/cifsfs.c
 *
4
 *   Copyright (C) International Business Machines  Corp., 2002,2008
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *   Author(s): Steve French (sfrench@us.ibm.com)
 *
 *   Common Internet FileSystem (CIFS) client
 *
 *   This library is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Lesser General Public License as published
 *   by the Free Software Foundation; either version 2.1 of the License, or
 *   (at your option) any later version.
 *
 *   This library is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 *   the GNU Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public License
 *   along with this library; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

/* Note that BB means BUGBUG (ie something to fix eventually) */

#include <linux/module.h>
#include <linux/fs.h>
#include <linux/mount.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/list.h>
#include <linux/seq_file.h>
#include <linux/vfs.h>
#include <linux/mempool.h>
35
#include <linux/delay.h>
36
#include <linux/kthread.h>
37
#include <linux/freezer.h>
A
Al Viro 已提交
38
#include <linux/namei.h>
P
Pavel Shilovsky 已提交
39
#include <linux/random.h>
40
#include <linux/uuid.h>
41
#include <linux/xattr.h>
42
#include <net/ipv6.h>
L
Linus Torvalds 已提交
43 44 45 46 47 48 49 50
#include "cifsfs.h"
#include "cifspdu.h"
#define DECLARE_GLOBALS_HERE
#include "cifsglob.h"
#include "cifsproto.h"
#include "cifs_debug.h"
#include "cifs_fs_sb.h"
#include <linux/mm.h>
51
#include <linux/key-type.h>
52
#include "cifs_spnego.h"
53
#include "fscache.h"
54
#include "smb2pdu.h"
55 56 57
#ifdef CONFIG_CIFS_DFS_UPCALL
#include "dfs_cache.h"
#endif
58
#include "fs_context.h"
L
Linus Torvalds 已提交
59

60 61 62 63 64 65 66 67 68
/*
 * DOS dates from 1980/1/1 through 2107/12/31
 * Protocol specifications indicate the range should be to 119, which
 * limits maximum year to 2099. But this range has not been checked.
 */
#define SMB_DATE_MAX (127<<9 | 12<<5 | 31)
#define SMB_DATE_MIN (0<<9 | 1<<5 | 1)
#define SMB_TIME_MAX (23<<11 | 59<<5 | 29)

L
Linus Torvalds 已提交
69
int cifsFYI = 0;
70
bool traceSMB;
71
bool enable_oplocks = true;
72 73
bool linuxExtEnabled = true;
bool lookupCacheEnabled = true;
74
bool disable_legacy_dialects; /* false by default */
75
bool enable_gcm_256;  /* false by default, change when more servers support it */
76
bool require_gcm_256; /* false by default */
77
unsigned int global_secflags = CIFSSEC_DEF;
78
/* unsigned int ntlmv2_support = 0; */
L
Linus Torvalds 已提交
79
unsigned int sign_CIFS_PDUs = 1;
80
static const struct super_operations cifs_super_ops;
L
Linus Torvalds 已提交
81
unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
82
module_param(CIFSMaxBufSize, uint, 0444);
83 84
MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header) "
				 "for CIFS requests. "
85
				 "Default: 16384 Range: 8192 to 130048");
L
Linus Torvalds 已提交
86
unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL;
87
module_param(cifs_min_rcv, uint, 0444);
88 89
MODULE_PARM_DESC(cifs_min_rcv, "Network buffers in pool. Default: 4 Range: "
				"1 to 64");
L
Linus Torvalds 已提交
90
unsigned int cifs_min_small = 30;
91
module_param(cifs_min_small, uint, 0444);
92 93
MODULE_PARM_DESC(cifs_min_small, "Small network buffers in pool. Default: 30 "
				 "Range: 2 to 256");
L
Linus Torvalds 已提交
94
unsigned int cifs_max_pending = CIFS_MAX_REQ;
J
Jeff Layton 已提交
95
module_param(cifs_max_pending, uint, 0444);
96 97
MODULE_PARM_DESC(cifs_max_pending, "Simultaneous requests to server for "
				   "CIFS/SMB1 dialect (N/A for SMB3) "
98
				   "Default: 32767 Range: 2 to 32767.");
99 100 101 102 103 104 105 106
#ifdef CONFIG_CIFS_STATS2
unsigned int slow_rsp_threshold = 1;
module_param(slow_rsp_threshold, uint, 0644);
MODULE_PARM_DESC(slow_rsp_threshold, "Amount of time (in seconds) to wait "
				   "before logging that a response is delayed. "
				   "Default: 1 (if set to 0 disables msg).");
#endif /* STATS2 */

107
module_param(enable_oplocks, bool, 0644);
J
Jeff Layton 已提交
108
MODULE_PARM_DESC(enable_oplocks, "Enable or disable oplocks. Default: y/Y/1");
109

110 111 112
module_param(enable_gcm_256, bool, 0644);
MODULE_PARM_DESC(enable_gcm_256, "Enable requesting strongest (256 bit) GCM encryption. Default: n/N/0");

113 114 115
module_param(require_gcm_256, bool, 0644);
MODULE_PARM_DESC(require_gcm_256, "Require strongest (256 bit) GCM encryption. Default: n/N/0");

116 117 118 119 120 121 122 123 124
module_param(disable_legacy_dialects, bool, 0644);
MODULE_PARM_DESC(disable_legacy_dialects, "To improve security it may be "
				  "helpful to restrict the ability to "
				  "override the default dialects (SMB2.1, "
				  "SMB3 and SMB3.02) on mount with old "
				  "dialects (CIFS/SMB1 and SMB2) since "
				  "vers=1.0 (CIFS/SMB1) and vers=2.0 are weaker"
				  " and less secure. Default: n/N/0");

L
Linus Torvalds 已提交
125 126 127 128
extern mempool_t *cifs_sm_req_poolp;
extern mempool_t *cifs_req_poolp;
extern mempool_t *cifs_mid_poolp;

J
Jeff Layton 已提交
129
struct workqueue_struct	*cifsiod_wq;
130
struct workqueue_struct	*decrypt_wq;
131
struct workqueue_struct	*fileinfo_put_wq;
R
Rabin Vincent 已提交
132
struct workqueue_struct	*cifsoplockd_wq;
133
__u32 cifs_lock_secret;
J
Jeff Layton 已提交
134

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
/*
 * Bumps refcount for cifs super block.
 * Note that it should be only called if a referece to VFS super block is
 * already held, e.g. in open-type syscalls context. Otherwise it can race with
 * atomic_dec_and_test in deactivate_locked_super.
 */
void
cifs_sb_active(struct super_block *sb)
{
	struct cifs_sb_info *server = CIFS_SB(sb);

	if (atomic_inc_return(&server->active) == 1)
		atomic_inc(&sb->s_active);
}

void
cifs_sb_deactive(struct super_block *sb)
{
	struct cifs_sb_info *server = CIFS_SB(sb);

	if (atomic_dec_and_test(&server->active))
		deactivate_super(sb);
}

L
Linus Torvalds 已提交
159
static int
A
Al Viro 已提交
160
cifs_read_super(struct super_block *sb)
L
Linus Torvalds 已提交
161 162
{
	struct inode *inode;
163
	struct cifs_sb_info *cifs_sb;
164
	struct cifs_tcon *tcon;
165
	struct timespec64 ts;
L
Linus Torvalds 已提交
166
	int rc = 0;
167

168
	cifs_sb = CIFS_SB(sb);
169
	tcon = cifs_sb_master_tcon(cifs_sb);
L
Linus Torvalds 已提交
170

171
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIXACL)
172
		sb->s_flags |= SB_POSIXACL;
173

174 175 176
	if (tcon->snapshot_time)
		sb->s_flags |= SB_RDONLY;

177
	if (tcon->ses->capabilities & tcon->ses->server->vals->cap_large_files)
178 179 180 181
		sb->s_maxbytes = MAX_LFS_FILESIZE;
	else
		sb->s_maxbytes = MAX_NON_LFS;

182 183 184 185 186 187 188
	/*
	 * Some very old servers like DOS and OS/2 used 2 second granularity
	 * (while all current servers use 100ns granularity - see MS-DTYP)
	 * but 1 second is the maximum allowed granularity for the VFS
	 * so for old servers set time granularity to 1 second while for
	 * everything else (current servers) set it to 100ns.
	 */
189 190 191 192 193 194
	if ((tcon->ses->server->vals->protocol_id == SMB10_PROT_ID) &&
	    ((tcon->ses->capabilities &
	      tcon->ses->server->vals->cap_nt_find) == 0) &&
	    !tcon->unix_ext) {
		sb->s_time_gran = 1000000000; /* 1 second is max allowed gran */
		ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MIN), 0, 0);
195
		sb->s_time_min = ts.tv_sec;
196 197
		ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MAX),
				    cpu_to_le16(SMB_TIME_MAX), 0);
198 199
		sb->s_time_max = ts.tv_sec;
	} else {
200 201 202 203 204 205
		/*
		 * Almost every server, including all SMB2+, uses DCE TIME
		 * ie 100 nanosecond units, since 1601.  See MS-DTYP and MS-FSCC
		 */
		sb->s_time_gran = 100;
		ts = cifs_NTtimeToUnix(0);
206
		sb->s_time_min = ts.tv_sec;
207
		ts = cifs_NTtimeToUnix(cpu_to_le64(S64_MAX));
208 209 210
		sb->s_time_max = ts.tv_sec;
	}

L
Linus Torvalds 已提交
211 212
	sb->s_magic = CIFS_MAGIC_NUMBER;
	sb->s_op = &cifs_super_ops;
213
	sb->s_xattr = cifs_xattr_handlers;
214 215 216 217 218 219
	rc = super_setup_bdi(sb);
	if (rc)
		goto out_no_root;
	/* tune readahead according to rsize */
	sb->s_bdi->ra_pages = cifs_sb->rsize / PAGE_SIZE;

L
Linus Torvalds 已提交
220 221
	sb->s_blocksize = CIFS_MAX_MSGSIZE;
	sb->s_blocksize_bits = 14;	/* default 2**14 = CIFS_MAX_MSGSIZE */
222
	inode = cifs_root_iget(sb);
L
Linus Torvalds 已提交
223

224 225
	if (IS_ERR(inode)) {
		rc = PTR_ERR(inode);
L
Linus Torvalds 已提交
226 227 228
		goto out_no_root;
	}

229
	if (tcon->nocase)
230 231 232 233
		sb->s_d_op = &cifs_ci_dentry_ops;
	else
		sb->s_d_op = &cifs_dentry_ops;

234
	sb->s_root = d_make_root(inode);
L
Linus Torvalds 已提交
235 236 237 238
	if (!sb->s_root) {
		rc = -ENOMEM;
		goto out_no_root;
	}
239

P
Paul Bolle 已提交
240
#ifdef CONFIG_CIFS_NFSD_EXPORT
241
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
242
		cifs_dbg(FYI, "export ops supported\n");
243 244
		sb->s_export_op = &cifs_export_ops;
	}
P
Paul Bolle 已提交
245
#endif /* CONFIG_CIFS_NFSD_EXPORT */
L
Linus Torvalds 已提交
246 247 248 249

	return 0;

out_no_root:
250
	cifs_dbg(VFS, "%s: get root inode failed\n", __func__);
L
Linus Torvalds 已提交
251 252 253
	return rc;
}

A
Al Viro 已提交
254 255 256 257
static void cifs_kill_sb(struct super_block *sb)
{
	struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
	kill_anon_super(sb);
258
	cifs_umount(cifs_sb);
L
Linus Torvalds 已提交
259 260 261
}

static int
262
cifs_statfs(struct dentry *dentry, struct kstatfs *buf)
L
Linus Torvalds 已提交
263
{
264
	struct super_block *sb = dentry->d_sb;
S
Steve French 已提交
265
	struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
266
	struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
267
	struct TCP_Server_Info *server = tcon->ses->server;
268
	unsigned int xid;
269
	int rc = 0;
L
Linus Torvalds 已提交
270

271
	xid = get_xid();
L
Linus Torvalds 已提交
272

273 274 275 276 277 278 279 280 281 282
	if (le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength) > 0)
		buf->f_namelen =
		       le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
	else
		buf->f_namelen = PATH_MAX;

	buf->f_fsid.val[0] = tcon->vol_serial_number;
	/* are using part of create time for more randomness, see man statfs */
	buf->f_fsid.val[1] =  (int)le64_to_cpu(tcon->vol_create_time);

L
Linus Torvalds 已提交
283 284 285
	buf->f_files = 0;	/* undefined */
	buf->f_ffree = 0;	/* unlimited */

286
	if (server->ops->queryfs)
287
		rc = server->ops->queryfs(xid, tcon, cifs_sb, buf);
S
Steve French 已提交
288

289
	free_xid(xid);
S
Steve French 已提交
290
	return 0;
L
Linus Torvalds 已提交
291 292
}

293 294
static long cifs_fallocate(struct file *file, int mode, loff_t off, loff_t len)
{
295
	struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file);
296 297 298 299 300 301 302 303 304
	struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
	struct TCP_Server_Info *server = tcon->ses->server;

	if (server->ops->fallocate)
		return server->ops->fallocate(file, tcon, mode, off, len);

	return -EOPNOTSUPP;
}

305
static int cifs_permission(struct inode *inode, int mask)
L
Linus Torvalds 已提交
306 307 308 309 310
{
	struct cifs_sb_info *cifs_sb;

	cifs_sb = CIFS_SB(inode->i_sb);

311 312 313 314 315 316
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) {
		if ((mask & MAY_EXEC) && !execute_ok(inode))
			return -EACCES;
		else
			return 0;
	} else /* file mode might have been restricted at mount time
317
		on the client (above and beyond ACL on servers) for
L
Linus Torvalds 已提交
318
		servers which do not support setting and viewing mode bits,
319
		so allowing client to check permissions is useful */
320
		return generic_permission(inode, mask);
L
Linus Torvalds 已提交
321 322
}

323 324 325 326
static struct kmem_cache *cifs_inode_cachep;
static struct kmem_cache *cifs_req_cachep;
static struct kmem_cache *cifs_mid_cachep;
static struct kmem_cache *cifs_sm_req_cachep;
L
Linus Torvalds 已提交
327 328 329 330 331 332 333 334
mempool_t *cifs_sm_req_poolp;
mempool_t *cifs_req_poolp;
mempool_t *cifs_mid_poolp;

static struct inode *
cifs_alloc_inode(struct super_block *sb)
{
	struct cifsInodeInfo *cifs_inode;
335
	cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL);
L
Linus Torvalds 已提交
336 337 338 339
	if (!cifs_inode)
		return NULL;
	cifs_inode->cifsAttrs = 0x20;	/* default */
	cifs_inode->time = 0;
P
Pavel Shilovsky 已提交
340 341 342 343
	/*
	 * Until the file is open and we have gotten oplock info back from the
	 * server, can not assume caching of file data or metadata.
	 */
344
	cifs_set_oplock_level(cifs_inode, 0);
345
	cifs_inode->flags = 0;
346 347
	spin_lock_init(&cifs_inode->writers_lock);
	cifs_inode->writers = 0;
L
Linus Torvalds 已提交
348
	cifs_inode->vfs_inode.i_blkbits = 14;  /* 2**14 = CIFS_MAX_MSGSIZE */
349
	cifs_inode->server_eof = 0;
350 351
	cifs_inode->uniqueid = 0;
	cifs_inode->createtime = 0;
352
	cifs_inode->epoch = 0;
353
	spin_lock_init(&cifs_inode->open_file_lock);
354
	generate_random_uuid(cifs_inode->lease_key);
355

P
Pavel Shilovsky 已提交
356 357 358 359 360
	/*
	 * Can not set i_flags here - they get immediately overwritten to zero
	 * by the VFS.
	 */
	/* cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME; */
L
Linus Torvalds 已提交
361
	INIT_LIST_HEAD(&cifs_inode->openFileList);
362
	INIT_LIST_HEAD(&cifs_inode->llist);
L
Linus Torvalds 已提交
363 364 365 366
	return &cifs_inode->vfs_inode;
}

static void
A
Al Viro 已提交
367
cifs_free_inode(struct inode *inode)
L
Linus Torvalds 已提交
368
{
A
Al Viro 已提交
369
	kmem_cache_free(cifs_inode_cachep, CIFS_I(inode));
L
Linus Torvalds 已提交
370 371
}

372
static void
373
cifs_evict_inode(struct inode *inode)
374
{
375
	truncate_inode_pages_final(&inode->i_data);
376
	clear_inode(inode);
377 378 379
	cifs_fscache_release_inode_cookie(inode);
}

380 381 382
static void
cifs_show_address(struct seq_file *s, struct TCP_Server_Info *server)
{
383 384 385
	struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr;
	struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr;

386
	seq_puts(s, ",addr=");
387

388
	switch (server->dstaddr.ss_family) {
389
	case AF_INET:
390
		seq_printf(s, "%pI4", &sa->sin_addr.s_addr);
391 392
		break;
	case AF_INET6:
393 394 395
		seq_printf(s, "%pI6", &sa6->sin6_addr.s6_addr);
		if (sa6->sin6_scope_id)
			seq_printf(s, "%%%u", sa6->sin6_scope_id);
396 397
		break;
	default:
398
		seq_puts(s, "(unknown)");
399
	}
L
Long Li 已提交
400 401
	if (server->rdma)
		seq_puts(s, ",rdma");
402 403
}

404
static void
405
cifs_show_security(struct seq_file *s, struct cifs_ses *ses)
406
{
407 408 409
	if (ses->sectype == Unspecified) {
		if (ses->user_name == NULL)
			seq_puts(s, ",sec=none");
410
		return;
411
	}
412

413
	seq_puts(s, ",sec=");
414

415
	switch (ses->sectype) {
416
	case LANMAN:
417
		seq_puts(s, "lanman");
418 419
		break;
	case NTLMv2:
420
		seq_puts(s, "ntlmv2");
421 422
		break;
	case NTLM:
423
		seq_puts(s, "ntlm");
424 425
		break;
	case Kerberos:
426
		seq_puts(s, "krb5");
427 428
		break;
	case RawNTLMSSP:
429
		seq_puts(s, "ntlmssp");
430 431 432
		break;
	default:
		/* shouldn't ever happen */
433
		seq_puts(s, "unknown");
434 435 436
		break;
	}

437
	if (ses->sign)
438
		seq_puts(s, "i");
439 440 441 442

	if (ses->sectype == Kerberos)
		seq_printf(s, ",cruid=%u",
			   from_kuid_munged(&init_user_ns, ses->cred_uid));
443 444
}

445 446 447
static void
cifs_show_cache_flavor(struct seq_file *s, struct cifs_sb_info *cifs_sb)
{
448
	seq_puts(s, ",cache=");
449 450

	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO)
451
		seq_puts(s, "strict");
452
	else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO)
453
		seq_puts(s, "none");
454 455
	else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RW_CACHE)
		seq_puts(s, "singleclient"); /* assume only one client access */
456 457
	else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE)
		seq_puts(s, "ro"); /* read only caching assumed */
458
	else
459
		seq_puts(s, "loose");
460 461
}

462 463 464 465 466 467 468 469 470 471 472 473
static void
cifs_show_nls(struct seq_file *s, struct nls_table *cur)
{
	struct nls_table *def;

	/* Display iocharset= option if it's not default charset */
	def = load_nls_default();
	if (def != cur)
		seq_printf(s, ",iocharset=%s", cur->charset);
	unload_nls(def);
}

L
Linus Torvalds 已提交
474 475 476 477 478 479
/*
 * cifs_show_options() is for displaying mount options in /proc/mounts.
 * Not all settable options are displayed but most of the important
 * ones are.
 */
static int
480
cifs_show_options(struct seq_file *s, struct dentry *root)
L
Linus Torvalds 已提交
481
{
482
	struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
483
	struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
484 485
	struct sockaddr *srcaddr;
	srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr;
486

487
	seq_show_option(s, "vers", tcon->ses->server->vals->version_string);
488
	cifs_show_security(s, tcon->ses);
489
	cifs_show_cache_flavor(s, cifs_sb);
490

491 492
	if (tcon->no_lease)
		seq_puts(s, ",nolease");
493
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)
494
		seq_puts(s, ",multiuser");
495
	else if (tcon->ses->user_name)
496
		seq_show_option(s, "username", tcon->ses->user_name);
497

498
	if (tcon->ses->domainName && tcon->ses->domainName[0] != 0)
499
		seq_show_option(s, "domain", tcon->ses->domainName);
500

501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
	if (srcaddr->sa_family != AF_UNSPEC) {
		struct sockaddr_in *saddr4;
		struct sockaddr_in6 *saddr6;
		saddr4 = (struct sockaddr_in *)srcaddr;
		saddr6 = (struct sockaddr_in6 *)srcaddr;
		if (srcaddr->sa_family == AF_INET6)
			seq_printf(s, ",srcaddr=%pI6c",
				   &saddr6->sin6_addr);
		else if (srcaddr->sa_family == AF_INET)
			seq_printf(s, ",srcaddr=%pI4",
				   &saddr4->sin_addr.s_addr);
		else
			seq_printf(s, ",srcaddr=BAD-AF:%i",
				   (int)(srcaddr->sa_family));
	}

517 518
	seq_printf(s, ",uid=%u",
		   from_kuid_munged(&init_user_ns, cifs_sb->mnt_uid));
519
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)
520
		seq_puts(s, ",forceuid");
521
	else
522
		seq_puts(s, ",noforceuid");
523

524 525
	seq_printf(s, ",gid=%u",
		   from_kgid_munged(&init_user_ns, cifs_sb->mnt_gid));
526
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)
527
		seq_puts(s, ",forcegid");
528
	else
529
		seq_puts(s, ",noforcegid");
530

531
	cifs_show_address(s, tcon->ses->server);
L
Linus Torvalds 已提交
532

533
	if (!tcon->unix_ext)
A
Al Viro 已提交
534
		seq_printf(s, ",file_mode=0%ho,dir_mode=0%ho",
535 536
					   cifs_sb->mnt_file_mode,
					   cifs_sb->mnt_dir_mode);
537 538 539

	cifs_show_nls(s, cifs_sb->local_nls);

540
	if (tcon->seal)
541
		seq_puts(s, ",seal");
542 543
	else if (tcon->ses->server->ignore_signature)
		seq_puts(s, ",signloosely");
544
	if (tcon->nocase)
545
		seq_puts(s, ",nocase");
S
Steve French 已提交
546 547
	if (tcon->nodelete)
		seq_puts(s, ",nodelete");
548 549
	if (tcon->local_lease)
		seq_puts(s, ",locallease");
550
	if (tcon->retry)
551
		seq_puts(s, ",hard");
552 553
	else
		seq_puts(s, ",soft");
554 555
	if (tcon->use_persistent)
		seq_puts(s, ",persistenthandles");
S
Steve French 已提交
556 557
	else if (tcon->use_resilient)
		seq_puts(s, ",resilienthandles");
558 559 560 561 562 563
	if (tcon->posix_extensions)
		seq_puts(s, ",posix");
	else if (tcon->unix_ext)
		seq_puts(s, ",unix");
	else
		seq_puts(s, ",nounix");
564 565
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
		seq_puts(s, ",nodfs");
566
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)
567
		seq_puts(s, ",posixpaths");
568
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)
569
		seq_puts(s, ",setuids");
570 571
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL)
		seq_puts(s, ",idsfromsid");
572
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
573
		seq_puts(s, ",serverino");
574
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
575
		seq_puts(s, ",rwpidforward");
576
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL)
577
		seq_puts(s, ",forcemand");
578
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
579
		seq_puts(s, ",nouser_xattr");
580
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
581
		seq_puts(s, ",mapchars");
582 583
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
		seq_puts(s, ",mapposix");
584
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
585
		seq_puts(s, ",sfu");
586
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
587
		seq_puts(s, ",nobrl");
S
Steve French 已提交
588 589
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_HANDLE_CACHE)
		seq_puts(s, ",nohandlecache");
590 591
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID)
		seq_puts(s, ",modefromsid");
592
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
593
		seq_puts(s, ",cifsacl");
594
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
595
		seq_puts(s, ",dynperm");
596
	if (root->d_sb->s_flags & SB_POSIXACL)
597
		seq_puts(s, ",acl");
598
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
599
		seq_puts(s, ",mfsymlinks");
600
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
601
		seq_puts(s, ",fsc");
602
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)
603
		seq_puts(s, ",nostrictsync");
604
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
605
		seq_puts(s, ",noperm");
606
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID)
607 608 609
		seq_printf(s, ",backupuid=%u",
			   from_kuid_munged(&init_user_ns,
					    cifs_sb->mnt_backupuid));
610
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID)
611 612 613
		seq_printf(s, ",backupgid=%u",
			   from_kgid_munged(&init_user_ns,
					    cifs_sb->mnt_backupgid));
614

615 616
	seq_printf(s, ",rsize=%u", cifs_sb->rsize);
	seq_printf(s, ",wsize=%u", cifs_sb->wsize);
617
	seq_printf(s, ",bsize=%u", cifs_sb->bsize);
618 619
	if (tcon->ses->server->min_offload)
		seq_printf(s, ",esize=%u", tcon->ses->server->min_offload);
S
Steve French 已提交
620 621
	seq_printf(s, ",echo_interval=%lu",
			tcon->ses->server->echo_interval / HZ);
622 623 624 625 626

	/* Only display max_credits if it was overridden on mount */
	if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE)
		seq_printf(s, ",max_credits=%u", tcon->ses->server->max_credits);

627 628
	if (tcon->snapshot_time)
		seq_printf(s, ",snapshot=%llu", tcon->snapshot_time);
629 630
	if (tcon->handle_timeout)
		seq_printf(s, ",handletimeout=%u", tcon->handle_timeout);
631
	/* convert actimeo and display it in seconds */
632
	seq_printf(s, ",actimeo=%lu", cifs_sb->actimeo / HZ);
633

634
	if (tcon->ses->chan_max > 1)
635
		seq_printf(s, ",multichannel,max_channels=%zu",
636 637
			   tcon->ses->chan_max);

L
Linus Torvalds 已提交
638 639 640
	return 0;
}

641
static void cifs_umount_begin(struct super_block *sb)
642
{
643
	struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
644
	struct cifs_tcon *tcon;
645

646
	if (cifs_sb == NULL)
647 648
		return;

649
	tcon = cifs_sb_master_tcon(cifs_sb);
650

651
	spin_lock(&cifs_tcp_ses_lock);
652 653 654 655
	if ((tcon->tc_count > 1) || (tcon->tidStatus == CifsExiting)) {
		/* we have other mounts to same share or we have
		   already tried to force umount this and woken up
		   all waiting network requests, nothing to do */
656
		spin_unlock(&cifs_tcp_ses_lock);
657 658
		return;
	} else if (tcon->tc_count == 1)
659
		tcon->tidStatus = CifsExiting;
660
	spin_unlock(&cifs_tcp_ses_lock);
661

662
	/* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */
S
Steve French 已提交
663
	/* cancel_notify_requests(tcon); */
664
	if (tcon->ses && tcon->ses->server) {
665
		cifs_dbg(FYI, "wake up tasks now - umount begin not complete\n");
666
		wake_up_all(&tcon->ses->server->request_q);
667 668 669 670 671
		wake_up_all(&tcon->ses->server->response_q);
		msleep(1); /* yield */
		/* we have to kick the requests once more */
		wake_up_all(&tcon->ses->server->response_q);
		msleep(1);
672
	}
673 674 675 676

	return;
}

677
#ifdef CONFIG_CIFS_STATS2
678
static int cifs_show_stats(struct seq_file *s, struct dentry *root)
679 680 681 682 683 684
{
	/* BB FIXME */
	return 0;
}
#endif

685
static int cifs_drop_inode(struct inode *inode)
686 687 688
{
	struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);

689 690 691
	/* no serverino => unconditional eviction */
	return !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) ||
		generic_drop_inode(inode);
692 693
}

694
static const struct super_operations cifs_super_ops = {
L
Linus Torvalds 已提交
695 696
	.statfs = cifs_statfs,
	.alloc_inode = cifs_alloc_inode,
A
Al Viro 已提交
697
	.free_inode = cifs_free_inode,
698
	.drop_inode	= cifs_drop_inode,
699
	.evict_inode	= cifs_evict_inode,
700 701
/*	.delete_inode	= cifs_delete_inode,  */  /* Do not need above
	function unless later we add lazy close of inodes or unless the
702 703
	kernel forgets to call us with the same number of releases (closes)
	as opens */
L
Linus Torvalds 已提交
704
	.show_options = cifs_show_options,
S
Steve French 已提交
705
	.umount_begin   = cifs_umount_begin,
706
#ifdef CONFIG_CIFS_STATS2
707
	.show_stats = cifs_show_stats,
708
#endif
L
Linus Torvalds 已提交
709 710
};

711 712 713 714 715
/*
 * Get root dentry from superblock according to prefix path mount option.
 * Return dentry with refcount + 1 on success and NULL otherwise.
 */
static struct dentry *
716
cifs_get_root(struct smb3_fs_context *ctx, struct super_block *sb)
717
{
A
Al Viro 已提交
718
	struct dentry *dentry;
719
	struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
A
Al Viro 已提交
720 721
	char *full_path = NULL;
	char *s, *p;
722 723
	char sep;

724 725 726
	if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
		return dget(sb->s_root);

727
	full_path = cifs_build_path_to_root(ctx, cifs_sb,
728
				cifs_sb_master_tcon(cifs_sb), 0);
729
	if (full_path == NULL)
730
		return ERR_PTR(-ENOMEM);
731

732
	cifs_dbg(FYI, "Get root dentry for %s\n", full_path);
733 734

	sep = CIFS_DIR_SEP(cifs_sb);
A
Al Viro 已提交
735 736 737 738
	dentry = dget(sb->s_root);
	p = s = full_path;

	do {
739
		struct inode *dir = d_inode(dentry);
A
Al Viro 已提交
740 741
		struct dentry *child;

742 743 744 745 746
		if (!S_ISDIR(dir->i_mode)) {
			dput(dentry);
			dentry = ERR_PTR(-ENOTDIR);
			break;
		}
747

A
Al Viro 已提交
748 749 750 751 752 753 754 755 756 757
		/* skip separators */
		while (*s == sep)
			s++;
		if (!*s)
			break;
		p = s++;
		/* next separator */
		while (*s && *s != sep)
			s++;

A
Al Viro 已提交
758
		child = lookup_positive_unlocked(p, dentry, s - p);
A
Al Viro 已提交
759 760 761
		dput(dentry);
		dentry = child;
	} while (!IS_ERR(dentry));
762
	kfree(full_path);
A
Al Viro 已提交
763
	return dentry;
764 765
}

A
Al Viro 已提交
766 767 768 769 770 771 772
static int cifs_set_super(struct super_block *sb, void *data)
{
	struct cifs_mnt_data *mnt_data = data;
	sb->s_fs_info = mnt_data->cifs_sb;
	return set_anon_super(sb, NULL);
}

R
Ronnie Sahlberg 已提交
773
struct dentry *
774
cifs_smb3_do_mount(struct file_system_type *fs_type,
R
Ronnie Sahlberg 已提交
775
	      int flags, struct smb3_fs_context *old_ctx)
L
Linus Torvalds 已提交
776 777
{
	int rc;
778
	struct super_block *sb;
779
	struct cifs_sb_info *cifs_sb = NULL;
780
	struct cifs_mnt_data mnt_data;
781
	struct dentry *root;
L
Linus Torvalds 已提交
782

783 784 785 786
	/*
	 * Prints in Kernel / CIFS log the attempted mount operation
	 *	If CIFS_DEBUG && cifs_FYI
	 */
787
	if (cifsFYI)
R
Ronnie Sahlberg 已提交
788
		cifs_dbg(FYI, "Devname: %s flags: %d\n", old_ctx->UNC, flags);
789
	else
R
Ronnie Sahlberg 已提交
790 791
		cifs_info("Attempting to mount %s\n", old_ctx->UNC);

792 793 794
	cifs_sb = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL);
	if (cifs_sb == NULL) {
		root = ERR_PTR(-ENOMEM);
R
Ronnie Sahlberg 已提交
795 796
		goto out;
	}
L
Linus Torvalds 已提交
797

798 799 800 801 802 803
	cifs_sb->ctx = kzalloc(sizeof(struct smb3_fs_context), GFP_KERNEL);
	if (!cifs_sb->ctx) {
		root = ERR_PTR(-ENOMEM);
		goto out;
	}
	rc = smb3_fs_context_dup(cifs_sb->ctx, old_ctx);
R
Ronnie Sahlberg 已提交
804 805 806 807
	if (rc) {
		root = ERR_PTR(rc);
		goto out;
	}
808

809 810 811 812
	rc = cifs_setup_volume_info(cifs_sb->ctx);
	if (rc) {
		root = ERR_PTR(rc);
		goto out;
813 814
	}

815
	cifs_sb->mountdata = kstrndup(cifs_sb->ctx->mount_options, PAGE_SIZE, GFP_KERNEL);
A
Al Viro 已提交
816 817
	if (cifs_sb->mountdata == NULL) {
		root = ERR_PTR(-ENOMEM);
818
		goto out;
A
Al Viro 已提交
819 820
	}

821
	rc = cifs_setup_cifs_sb(cifs_sb->ctx, cifs_sb);
822 823
	if (rc) {
		root = ERR_PTR(rc);
824
		goto out;
825 826
	}

827
	rc = cifs_mount(cifs_sb, cifs_sb->ctx);
A
Al Viro 已提交
828
	if (rc) {
829
		if (!(flags & SB_SILENT))
830 831
			cifs_dbg(VFS, "cifs_mount failed w/return code = %d\n",
				 rc);
A
Al Viro 已提交
832
		root = ERR_PTR(rc);
833
		goto out;
A
Al Viro 已提交
834 835
	}

836
	mnt_data.ctx = cifs_sb->ctx;
837 838 839
	mnt_data.cifs_sb = cifs_sb;
	mnt_data.flags = flags;

D
David Howells 已提交
840
	/* BB should we make this contingent on mount parm? */
841
	flags |= SB_NODIRATIME | SB_NOATIME;
D
David Howells 已提交
842 843

	sb = sget(fs_type, cifs_match_super, cifs_set_super, flags, &mnt_data);
844 845
	if (IS_ERR(sb)) {
		root = ERR_CAST(sb);
A
Al Viro 已提交
846
		cifs_umount(cifs_sb);
847
		goto out;
848
	}
L
Linus Torvalds 已提交
849

A
Al Viro 已提交
850
	if (sb->s_root) {
851
		cifs_dbg(FYI, "Use existing superblock\n");
A
Al Viro 已提交
852
		cifs_umount(cifs_sb);
A
Al Viro 已提交
853 854 855 856 857 858
	} else {
		rc = cifs_read_super(sb);
		if (rc) {
			root = ERR_PTR(rc);
			goto out_super;
		}
859

860
		sb->s_flags |= SB_ACTIVE;
L
Linus Torvalds 已提交
861
	}
862

863
	root = cifs_get_root(cifs_sb->ctx, sb);
864
	if (IS_ERR(root))
865
		goto out_super;
866

867
	cifs_dbg(FYI, "dentry root is: %p\n", root);
868
	return root;
869

870 871 872
out_super:
	deactivate_locked_super(sb);
out:
873 874 875 876 877 878
	if (cifs_sb) {
		kfree(cifs_sb->prepath);
		kfree(cifs_sb->mountdata);
		cifs_cleanup_volume_info(cifs_sb->ctx);
		kfree(cifs_sb);
	}
879
	return root;
L
Linus Torvalds 已提交
880 881
}

882

883 884 885 886 887 888
static ssize_t
cifs_loose_read_iter(struct kiocb *iocb, struct iov_iter *iter)
{
	ssize_t rc;
	struct inode *inode = file_inode(iocb->ki_filp);

889 890 891
	if (iocb->ki_filp->f_flags & O_DIRECT)
		return cifs_user_readv(iocb, iter);

892 893 894 895 896 897 898
	rc = cifs_revalidate_mapping(inode);
	if (rc)
		return rc;

	return generic_file_read_iter(iocb, iter);
}

A
Al Viro 已提交
899
static ssize_t cifs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
L
Linus Torvalds 已提交
900
{
A
Al Viro 已提交
901
	struct inode *inode = file_inode(iocb->ki_filp);
902
	struct cifsInodeInfo *cinode = CIFS_I(inode);
L
Linus Torvalds 已提交
903
	ssize_t written;
904
	int rc;
L
Linus Torvalds 已提交
905

906 907 908 909 910 911 912 913 914 915 916 917
	if (iocb->ki_filp->f_flags & O_DIRECT) {
		written = cifs_user_writev(iocb, from);
		if (written > 0 && CIFS_CACHE_READ(cinode)) {
			cifs_zap_mapping(inode);
			cifs_dbg(FYI,
				 "Set no oplock for inode=%p after a write operation\n",
				 inode);
			cinode->oplock = 0;
		}
		return written;
	}

918 919 920 921
	written = cifs_get_writer(cinode);
	if (written)
		return written;

A
Al Viro 已提交
922
	written = generic_file_write_iter(iocb, from);
923

924
	if (CIFS_CACHE_WRITE(CIFS_I(inode)))
925
		goto out;
926 927 928

	rc = filemap_fdatawrite(inode->i_mapping);
	if (rc)
A
Al Viro 已提交
929
		cifs_dbg(FYI, "cifs_file_write_iter: %d rc on %p inode\n",
930
			 rc, inode);
931

932 933
out:
	cifs_put_writer(cinode);
L
Linus Torvalds 已提交
934 935 936
	return written;
}

937
static loff_t cifs_llseek(struct file *file, loff_t offset, int whence)
938
{
939 940 941
	struct cifsFileInfo *cfile = file->private_data;
	struct cifs_tcon *tcon;

942
	/*
943
	 * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
944 945
	 * the cached file length
	 */
946
	if (whence != SEEK_SET && whence != SEEK_CUR) {
947
		int rc;
A
Al Viro 已提交
948
		struct inode *inode = file_inode(file);
949 950 951 952 953

		/*
		 * We need to be sure that all dirty pages are written and the
		 * server has the newest file length.
		 */
954
		if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
955 956
		    inode->i_mapping->nrpages != 0) {
			rc = filemap_fdatawait(inode->i_mapping);
957 958 959 960
			if (rc) {
				mapping_set_error(inode->i_mapping, rc);
				return rc;
			}
961 962 963 964 965 966 967 968 969 970 971
		}
		/*
		 * Some applications poll for the file length in this strange
		 * way so we must seek to end on non-oplocked files by
		 * setting the revalidate time to zero.
		 */
		CIFS_I(inode)->time = 0;

		rc = cifs_revalidate_file_attr(file);
		if (rc < 0)
			return (loff_t)rc;
972
	}
973 974 975 976 977 978
	if (cfile && cfile->tlink) {
		tcon = tlink_tcon(cfile->tlink);
		if (tcon->ses->server->ops->llseek)
			return tcon->ses->server->ops->llseek(file, tcon,
							      offset, whence);
	}
979
	return generic_file_llseek(file, offset, whence);
980 981
}

982 983
static int
cifs_setlease(struct file *file, long arg, struct file_lock **lease, void **priv)
S
Steve French 已提交
984
{
985 986 987 988
	/*
	 * Note that this is called by vfs setlease with i_lock held to
	 * protect *lease from going away.
	 */
A
Al Viro 已提交
989
	struct inode *inode = file_inode(file);
990
	struct cifsFileInfo *cfile = file->private_data;
S
Steve French 已提交
991 992 993 994

	if (!(S_ISREG(inode->i_mode)))
		return -EINVAL;

995 996 997
	/* Check if file is oplocked if this is request for new lease */
	if (arg == F_UNLCK ||
	    ((arg == F_RDLCK) && CIFS_CACHE_READ(CIFS_I(inode))) ||
998
	    ((arg == F_WRLCK) && CIFS_CACHE_WRITE(CIFS_I(inode))))
999
		return generic_setlease(file, arg, lease, priv);
1000
	else if (tlink_tcon(cfile->tlink)->local_lease &&
1001 1002 1003 1004 1005 1006 1007 1008 1009
		 !CIFS_CACHE_READ(CIFS_I(inode)))
		/*
		 * If the server claims to support oplock on this file, then we
		 * still need to check oplock even if the local_lease mount
		 * option is set, but there are servers which do not support
		 * oplock for which this mount option may be useful if the user
		 * knows that the file won't be changed on the server by anyone
		 * else.
		 */
1010
		return generic_setlease(file, arg, lease, priv);
1011
	else
S
Steve French 已提交
1012 1013 1014
		return -EAGAIN;
}

1015
struct file_system_type cifs_fs_type = {
L
Linus Torvalds 已提交
1016 1017
	.owner = THIS_MODULE,
	.name = "cifs",
R
Ronnie Sahlberg 已提交
1018 1019
	.init_fs_context = smb3_init_fs_context,
	.parameters = smb3_fs_parameters,
A
Al Viro 已提交
1020
	.kill_sb = cifs_kill_sb,
S
Steve French 已提交
1021
	.fs_flags = FS_RENAME_DOES_D_MOVE,
L
Linus Torvalds 已提交
1022
};
1023
MODULE_ALIAS_FS("cifs");
1024 1025 1026 1027

static struct file_system_type smb3_fs_type = {
	.owner = THIS_MODULE,
	.name = "smb3",
R
Ronnie Sahlberg 已提交
1028 1029
	.init_fs_context = smb3_init_fs_context,
	.parameters = smb3_fs_parameters,
1030
	.kill_sb = cifs_kill_sb,
S
Steve French 已提交
1031
	.fs_flags = FS_RENAME_DOES_D_MOVE,
1032 1033 1034 1035
};
MODULE_ALIAS_FS("smb3");
MODULE_ALIAS("smb3");

1036
const struct inode_operations cifs_dir_inode_ops = {
L
Linus Torvalds 已提交
1037
	.create = cifs_create,
1038
	.atomic_open = cifs_atomic_open,
L
Linus Torvalds 已提交
1039 1040 1041 1042 1043 1044
	.lookup = cifs_lookup,
	.getattr = cifs_getattr,
	.unlink = cifs_unlink,
	.link = cifs_hardlink,
	.mkdir = cifs_mkdir,
	.rmdir = cifs_rmdir,
1045
	.rename = cifs_rename2,
L
Linus Torvalds 已提交
1046 1047 1048 1049 1050 1051 1052
	.permission = cifs_permission,
	.setattr = cifs_setattr,
	.symlink = cifs_symlink,
	.mknod   = cifs_mknod,
	.listxattr = cifs_listxattr,
};

1053
const struct inode_operations cifs_file_inode_ops = {
L
Linus Torvalds 已提交
1054
	.setattr = cifs_setattr,
1055
	.getattr = cifs_getattr,
L
Linus Torvalds 已提交
1056 1057
	.permission = cifs_permission,
	.listxattr = cifs_listxattr,
R
Ronnie Sahlberg 已提交
1058
	.fiemap = cifs_fiemap,
L
Linus Torvalds 已提交
1059 1060
};

1061
const struct inode_operations cifs_symlink_inode_ops = {
1062
	.get_link = cifs_get_link,
L
Linus Torvalds 已提交
1063 1064 1065 1066
	.permission = cifs_permission,
	.listxattr = cifs_listxattr,
};

1067 1068
static loff_t cifs_remap_file_range(struct file *src_file, loff_t off,
		struct file *dst_file, loff_t destoff, loff_t len,
1069
		unsigned int remap_flags)
1070 1071 1072 1073
{
	struct inode *src_inode = file_inode(src_file);
	struct inode *target_inode = file_inode(dst_file);
	struct cifsFileInfo *smb_file_src = src_file->private_data;
1074 1075
	struct cifsFileInfo *smb_file_target;
	struct cifs_tcon *target_tcon;
1076 1077 1078
	unsigned int xid;
	int rc;

1079
	if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
1080 1081
		return -EINVAL;

1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
	cifs_dbg(FYI, "clone range\n");

	xid = get_xid();

	if (!src_file->private_data || !dst_file->private_data) {
		rc = -EBADF;
		cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
		goto out;
	}

1092 1093 1094
	smb_file_target = dst_file->private_data;
	target_tcon = tlink_tcon(smb_file_target->tlink);

1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
	/*
	 * Note: cifs case is easier than btrfs since server responsible for
	 * checks for proper open modes and file type and if it wants
	 * server could even support copy of range where source = target
	 */
	lock_two_nondirectories(target_inode, src_inode);

	if (len == 0)
		len = src_inode->i_size - off;

	cifs_dbg(FYI, "about to flush pages\n");
	/* should we flush first and last page first */
	truncate_inode_pages_range(&target_inode->i_data, destoff,
1108
				   PAGE_ALIGN(destoff + len)-1);
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123

	if (target_tcon->ses->server->ops->duplicate_extents)
		rc = target_tcon->ses->server->ops->duplicate_extents(xid,
			smb_file_src, smb_file_target, off, len, destoff);
	else
		rc = -EOPNOTSUPP;

	/* force revalidate of size and timestamps of target file now
	   that target is updated on the server */
	CIFS_I(target_inode)->time = 0;
	/* although unlocking in the reverse order from locking is not
	   strictly necessary here it is a little cleaner to be consistent */
	unlock_two_nondirectories(src_inode, target_inode);
out:
	free_xid(xid);
1124
	return rc < 0 ? rc : len;
1125 1126
}

S
Sachin Prabhu 已提交
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
ssize_t cifs_file_copychunk_range(unsigned int xid,
				struct file *src_file, loff_t off,
				struct file *dst_file, loff_t destoff,
				size_t len, unsigned int flags)
{
	struct inode *src_inode = file_inode(src_file);
	struct inode *target_inode = file_inode(dst_file);
	struct cifsFileInfo *smb_file_src;
	struct cifsFileInfo *smb_file_target;
	struct cifs_tcon *src_tcon;
	struct cifs_tcon *target_tcon;
	ssize_t rc;

	cifs_dbg(FYI, "copychunk range\n");

	if (!src_file->private_data || !dst_file->private_data) {
		rc = -EBADF;
		cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
		goto out;
	}

	rc = -EXDEV;
	smb_file_target = dst_file->private_data;
	smb_file_src = src_file->private_data;
	src_tcon = tlink_tcon(smb_file_src->tlink);
	target_tcon = tlink_tcon(smb_file_target->tlink);

	if (src_tcon->ses != target_tcon->ses) {
		cifs_dbg(VFS, "source and target of copy not on same server\n");
		goto out;
	}

1159 1160 1161 1162
	rc = -EOPNOTSUPP;
	if (!target_tcon->ses->server->ops->copychunk_range)
		goto out;

S
Sachin Prabhu 已提交
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
	/*
	 * Note: cifs case is easier than btrfs since server responsible for
	 * checks for proper open modes and file type and if it wants
	 * server could even support copy of range where source = target
	 */
	lock_two_nondirectories(target_inode, src_inode);

	cifs_dbg(FYI, "about to flush pages\n");
	/* should we flush first and last page first */
	truncate_inode_pages(&target_inode->i_data, 0);

1174 1175
	rc = file_modified(dst_file);
	if (!rc)
S
Sachin Prabhu 已提交
1176 1177
		rc = target_tcon->ses->server->ops->copychunk_range(xid,
			smb_file_src, smb_file_target, off, len, destoff);
1178 1179

	file_accessed(src_file);
S
Sachin Prabhu 已提交
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193

	/* force revalidate of size and timestamps of target file now
	 * that target is updated on the server
	 */
	CIFS_I(target_inode)->time = 0;
	/* although unlocking in the reverse order from locking is not
	 * strictly necessary here it is a little cleaner to be consistent
	 */
	unlock_two_nondirectories(src_inode, target_inode);

out:
	return rc;
}

1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
/*
 * Directory operations under CIFS/SMB2/SMB3 are synchronous, so fsync()
 * is a dummy operation.
 */
static int cifs_dir_fsync(struct file *file, loff_t start, loff_t end, int datasync)
{
	cifs_dbg(FYI, "Sync directory - name: %pD datasync: 0x%x\n",
		 file, datasync);

	return 0;
}

S
Sachin Prabhu 已提交
1206 1207 1208 1209 1210 1211
static ssize_t cifs_copy_file_range(struct file *src_file, loff_t off,
				struct file *dst_file, loff_t destoff,
				size_t len, unsigned int flags)
{
	unsigned int xid = get_xid();
	ssize_t rc;
S
Steve French 已提交
1212 1213 1214 1215
	struct cifsFileInfo *cfile = dst_file->private_data;

	if (cfile->swapfile)
		return -EOPNOTSUPP;
S
Sachin Prabhu 已提交
1216 1217 1218 1219

	rc = cifs_file_copychunk_range(xid, src_file, off, dst_file, destoff,
					len, flags);
	free_xid(xid);
1220

1221
	if (rc == -EOPNOTSUPP || rc == -EXDEV)
1222 1223
		rc = generic_copy_file_range(src_file, off, dst_file,
					     destoff, len, flags);
S
Sachin Prabhu 已提交
1224 1225 1226
	return rc;
}

1227
const struct file_operations cifs_file_ops = {
1228
	.read_iter = cifs_loose_read_iter,
A
Al Viro 已提交
1229
	.write_iter = cifs_file_write_iter,
L
Linus Torvalds 已提交
1230 1231 1232
	.open = cifs_open,
	.release = cifs_close,
	.lock = cifs_lock,
S
Steve French 已提交
1233
	.flock = cifs_flock,
L
Linus Torvalds 已提交
1234 1235 1236
	.fsync = cifs_fsync,
	.flush = cifs_flush,
	.mmap  = cifs_file_mmap,
1237
	.splice_read = generic_file_splice_read,
A
Andrés Souto 已提交
1238
	.splice_write = iter_file_splice_write,
1239
	.llseek = cifs_llseek,
1240
	.unlocked_ioctl	= cifs_ioctl,
S
Sachin Prabhu 已提交
1241
	.copy_file_range = cifs_copy_file_range,
1242
	.remap_file_range = cifs_remap_file_range,
S
Steve French 已提交
1243
	.setlease = cifs_setlease,
1244
	.fallocate = cifs_fallocate,
L
Linus Torvalds 已提交
1245 1246
};

1247
const struct file_operations cifs_file_strict_ops = {
A
Al Viro 已提交
1248
	.read_iter = cifs_strict_readv,
A
Al Viro 已提交
1249
	.write_iter = cifs_strict_writev,
1250 1251 1252
	.open = cifs_open,
	.release = cifs_close,
	.lock = cifs_lock,
S
Steve French 已提交
1253
	.flock = cifs_flock,
1254 1255
	.fsync = cifs_strict_fsync,
	.flush = cifs_flush,
1256
	.mmap = cifs_file_strict_mmap,
1257
	.splice_read = generic_file_splice_read,
A
Andrés Souto 已提交
1258
	.splice_write = iter_file_splice_write,
1259 1260
	.llseek = cifs_llseek,
	.unlocked_ioctl	= cifs_ioctl,
S
Sachin Prabhu 已提交
1261
	.copy_file_range = cifs_copy_file_range,
1262
	.remap_file_range = cifs_remap_file_range,
1263
	.setlease = cifs_setlease,
1264
	.fallocate = cifs_fallocate,
1265 1266
};

1267
const struct file_operations cifs_file_direct_ops = {
1268 1269
	.read_iter = cifs_direct_readv,
	.write_iter = cifs_direct_writev,
L
Linus Torvalds 已提交
1270 1271 1272
	.open = cifs_open,
	.release = cifs_close,
	.lock = cifs_lock,
S
Steve French 已提交
1273
	.flock = cifs_flock,
L
Linus Torvalds 已提交
1274 1275
	.fsync = cifs_fsync,
	.flush = cifs_flush,
1276
	.mmap = cifs_file_mmap,
1277
	.splice_read = generic_file_splice_read,
A
Andrés Souto 已提交
1278
	.splice_write = iter_file_splice_write,
1279
	.unlocked_ioctl  = cifs_ioctl,
S
Sachin Prabhu 已提交
1280
	.copy_file_range = cifs_copy_file_range,
1281
	.remap_file_range = cifs_remap_file_range,
1282
	.llseek = cifs_llseek,
S
Steve French 已提交
1283
	.setlease = cifs_setlease,
1284
	.fallocate = cifs_fallocate,
L
Linus Torvalds 已提交
1285
};
1286

1287
const struct file_operations cifs_file_nobrl_ops = {
1288
	.read_iter = cifs_loose_read_iter,
A
Al Viro 已提交
1289
	.write_iter = cifs_file_write_iter,
1290 1291 1292 1293 1294
	.open = cifs_open,
	.release = cifs_close,
	.fsync = cifs_fsync,
	.flush = cifs_flush,
	.mmap  = cifs_file_mmap,
1295
	.splice_read = generic_file_splice_read,
A
Andrés Souto 已提交
1296
	.splice_write = iter_file_splice_write,
1297
	.llseek = cifs_llseek,
1298
	.unlocked_ioctl	= cifs_ioctl,
S
Sachin Prabhu 已提交
1299
	.copy_file_range = cifs_copy_file_range,
1300
	.remap_file_range = cifs_remap_file_range,
S
Steve French 已提交
1301
	.setlease = cifs_setlease,
1302
	.fallocate = cifs_fallocate,
1303 1304
};

1305
const struct file_operations cifs_file_strict_nobrl_ops = {
A
Al Viro 已提交
1306
	.read_iter = cifs_strict_readv,
A
Al Viro 已提交
1307
	.write_iter = cifs_strict_writev,
1308 1309 1310 1311
	.open = cifs_open,
	.release = cifs_close,
	.fsync = cifs_strict_fsync,
	.flush = cifs_flush,
1312
	.mmap = cifs_file_strict_mmap,
1313
	.splice_read = generic_file_splice_read,
A
Andrés Souto 已提交
1314
	.splice_write = iter_file_splice_write,
1315 1316
	.llseek = cifs_llseek,
	.unlocked_ioctl	= cifs_ioctl,
S
Sachin Prabhu 已提交
1317
	.copy_file_range = cifs_copy_file_range,
1318
	.remap_file_range = cifs_remap_file_range,
1319
	.setlease = cifs_setlease,
1320
	.fallocate = cifs_fallocate,
1321 1322
};

1323
const struct file_operations cifs_file_direct_nobrl_ops = {
1324 1325
	.read_iter = cifs_direct_readv,
	.write_iter = cifs_direct_writev,
1326 1327 1328 1329
	.open = cifs_open,
	.release = cifs_close,
	.fsync = cifs_fsync,
	.flush = cifs_flush,
1330
	.mmap = cifs_file_mmap,
1331
	.splice_read = generic_file_splice_read,
A
Andrés Souto 已提交
1332
	.splice_write = iter_file_splice_write,
1333
	.unlocked_ioctl  = cifs_ioctl,
S
Sachin Prabhu 已提交
1334
	.copy_file_range = cifs_copy_file_range,
1335
	.remap_file_range = cifs_remap_file_range,
1336
	.llseek = cifs_llseek,
S
Steve French 已提交
1337
	.setlease = cifs_setlease,
1338
	.fallocate = cifs_fallocate,
1339
};
L
Linus Torvalds 已提交
1340

1341
const struct file_operations cifs_dir_ops = {
A
Al Viro 已提交
1342
	.iterate_shared = cifs_readdir,
L
Linus Torvalds 已提交
1343 1344
	.release = cifs_closedir,
	.read    = generic_read_dir,
1345
	.unlocked_ioctl  = cifs_ioctl,
S
Sachin Prabhu 已提交
1346
	.copy_file_range = cifs_copy_file_range,
1347
	.remap_file_range = cifs_remap_file_range,
1348
	.llseek = generic_file_llseek,
1349
	.fsync = cifs_dir_fsync,
L
Linus Torvalds 已提交
1350 1351 1352
};

static void
1353
cifs_init_once(void *inode)
L
Linus Torvalds 已提交
1354 1355 1356
{
	struct cifsInodeInfo *cifsi = inode;

C
Christoph Lameter 已提交
1357
	inode_init_once(&cifsi->vfs_inode);
1358
	init_rwsem(&cifsi->lock_sem);
L
Linus Torvalds 已提交
1359 1360
}

1361
static int __init
L
Linus Torvalds 已提交
1362 1363 1364
cifs_init_inodecache(void)
{
	cifs_inode_cachep = kmem_cache_create("cifs_inode_cache",
1365
					      sizeof(struct cifsInodeInfo),
1366
					      0, (SLAB_RECLAIM_ACCOUNT|
1367
						SLAB_MEM_SPREAD|SLAB_ACCOUNT),
1368
					      cifs_init_once);
L
Linus Torvalds 已提交
1369 1370 1371 1372 1373 1374 1375 1376 1377
	if (cifs_inode_cachep == NULL)
		return -ENOMEM;

	return 0;
}

static void
cifs_destroy_inodecache(void)
{
1378 1379 1380 1381 1382
	/*
	 * Make sure all delayed rcu free inodes are flushed before we
	 * destroy cache.
	 */
	rcu_barrier();
1383
	kmem_cache_destroy(cifs_inode_cachep);
L
Linus Torvalds 已提交
1384 1385 1386 1387 1388
}

static int
cifs_init_request_bufs(void)
{
1389 1390 1391 1392
	/*
	 * SMB2 maximum header size is bigger than CIFS one - no problems to
	 * allocate some more bytes for CIFS.
	 */
1393 1394
	size_t max_hdr_size = MAX_SMB2_HDR_SIZE;

1395
	if (CIFSMaxBufSize < 8192) {
L
Linus Torvalds 已提交
1396 1397 1398 1399 1400 1401 1402 1403
	/* Buffer size can not be smaller than 2 * PATH_MAX since maximum
	Unicode path name has to fit in any SMB/CIFS path based frames */
		CIFSMaxBufSize = 8192;
	} else if (CIFSMaxBufSize > 1024*127) {
		CIFSMaxBufSize = 1024 * 127;
	} else {
		CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
	}
1404 1405 1406 1407
/*
	cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n",
		 CIFSMaxBufSize, CIFSMaxBufSize);
*/
1408
	cifs_req_cachep = kmem_cache_create_usercopy("cifs_request",
1409
					    CIFSMaxBufSize + max_hdr_size, 0,
1410 1411 1412
					    SLAB_HWCACHE_ALIGN, 0,
					    CIFSMaxBufSize + max_hdr_size,
					    NULL);
L
Linus Torvalds 已提交
1413 1414 1415
	if (cifs_req_cachep == NULL)
		return -ENOMEM;

1416
	if (cifs_min_rcv < 1)
L
Linus Torvalds 已提交
1417 1418 1419
		cifs_min_rcv = 1;
	else if (cifs_min_rcv > 64) {
		cifs_min_rcv = 64;
1420
		cifs_dbg(VFS, "cifs_min_rcv set to maximum (64)\n");
L
Linus Torvalds 已提交
1421 1422
	}

1423 1424
	cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv,
						  cifs_req_cachep);
L
Linus Torvalds 已提交
1425

1426
	if (cifs_req_poolp == NULL) {
L
Linus Torvalds 已提交
1427 1428 1429
		kmem_cache_destroy(cifs_req_cachep);
		return -ENOMEM;
	}
1430
	/* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and
L
Linus Torvalds 已提交
1431 1432
	almost all handle based requests (but not write response, nor is it
	sufficient for path based requests).  A smaller size would have
1433
	been more efficient (compacting multiple slab items on one 4k page)
L
Linus Torvalds 已提交
1434 1435
	for the case in which debug was on, but this larger size allows
	more SMBs to use small buffer alloc and is still much more
S
Steve French 已提交
1436
	efficient to alloc 1 per page off the slab compared to 17K (5page)
L
Linus Torvalds 已提交
1437
	alloc of large cifs buffers even when page debugging is on */
1438
	cifs_sm_req_cachep = kmem_cache_create_usercopy("cifs_small_rq",
S
Steve French 已提交
1439
			MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN,
1440
			0, MAX_CIFS_SMALL_BUFFER_SIZE, NULL);
L
Linus Torvalds 已提交
1441 1442 1443
	if (cifs_sm_req_cachep == NULL) {
		mempool_destroy(cifs_req_poolp);
		kmem_cache_destroy(cifs_req_cachep);
S
Steve French 已提交
1444
		return -ENOMEM;
L
Linus Torvalds 已提交
1445 1446
	}

1447
	if (cifs_min_small < 2)
L
Linus Torvalds 已提交
1448 1449 1450
		cifs_min_small = 2;
	else if (cifs_min_small > 256) {
		cifs_min_small = 256;
1451
		cifs_dbg(FYI, "cifs_min_small set to maximum (256)\n");
L
Linus Torvalds 已提交
1452 1453
	}

1454 1455
	cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small,
						     cifs_sm_req_cachep);
L
Linus Torvalds 已提交
1456

1457
	if (cifs_sm_req_poolp == NULL) {
L
Linus Torvalds 已提交
1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
		mempool_destroy(cifs_req_poolp);
		kmem_cache_destroy(cifs_req_cachep);
		kmem_cache_destroy(cifs_sm_req_cachep);
		return -ENOMEM;
	}

	return 0;
}

static void
cifs_destroy_request_bufs(void)
{
	mempool_destroy(cifs_req_poolp);
1471
	kmem_cache_destroy(cifs_req_cachep);
L
Linus Torvalds 已提交
1472
	mempool_destroy(cifs_sm_req_poolp);
1473
	kmem_cache_destroy(cifs_sm_req_cachep);
L
Linus Torvalds 已提交
1474 1475 1476 1477 1478 1479
}

static int
cifs_init_mids(void)
{
	cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids",
1480 1481
					    sizeof(struct mid_q_entry), 0,
					    SLAB_HWCACHE_ALIGN, NULL);
L
Linus Torvalds 已提交
1482 1483 1484
	if (cifs_mid_cachep == NULL)
		return -ENOMEM;

1485 1486
	/* 3 is a reasonable minimum number of simultaneous operations */
	cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep);
1487
	if (cifs_mid_poolp == NULL) {
L
Linus Torvalds 已提交
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
		kmem_cache_destroy(cifs_mid_cachep);
		return -ENOMEM;
	}

	return 0;
}

static void
cifs_destroy_mids(void)
{
	mempool_destroy(cifs_mid_poolp);
1499
	kmem_cache_destroy(cifs_mid_cachep);
L
Linus Torvalds 已提交
1500 1501 1502 1503 1504 1505 1506
}

static int __init
init_cifs(void)
{
	int rc = 0;
	cifs_proc_init();
1507
	INIT_LIST_HEAD(&cifs_tcp_ses_list);
1508
#ifdef CONFIG_CIFS_DNOTIFY_EXPERIMENTAL /* unused temporarily */
1509 1510
	INIT_LIST_HEAD(&GlobalDnotifyReqList);
	INIT_LIST_HEAD(&GlobalDnotifyRsp_Q);
1511
#endif /* was needed for dnotify, and will be needed for inotify when VFS fix */
L
Linus Torvalds 已提交
1512 1513 1514 1515 1516
/*
 *  Initialize Global counters
 */
	atomic_set(&sesInfoAllocCount, 0);
	atomic_set(&tconInfoAllocCount, 0);
S
Steve French 已提交
1517
	atomic_set(&tcpSesAllocCount, 0);
L
Linus Torvalds 已提交
1518 1519 1520 1521
	atomic_set(&tcpSesReconnectCount, 0);
	atomic_set(&tconInfoReconnectCount, 0);

	atomic_set(&bufAllocCount, 0);
1522 1523 1524 1525
	atomic_set(&smBufAllocCount, 0);
#ifdef CONFIG_CIFS_STATS2
	atomic_set(&totBufAllocCount, 0);
	atomic_set(&totSmBufAllocCount, 0);
1526 1527 1528 1529 1530
	if (slow_rsp_threshold < 1)
		cifs_dbg(FYI, "slow_response_threshold msgs disabled\n");
	else if (slow_rsp_threshold > 32767)
		cifs_dbg(VFS,
		       "slow response threshold set higher than recommended (0 to 32767)\n");
1531 1532
#endif /* CONFIG_CIFS_STATS2 */

L
Linus Torvalds 已提交
1533 1534 1535 1536
	atomic_set(&midCount, 0);
	GlobalCurrentXid = 0;
	GlobalTotalActiveXid = 0;
	GlobalMaxActiveXid = 0;
1537
	spin_lock_init(&cifs_tcp_ses_lock);
L
Linus Torvalds 已提交
1538 1539
	spin_lock_init(&GlobalMid_Lock);

1540
	cifs_lock_secret = get_random_u32();
1541

1542
	if (cifs_max_pending < 2) {
L
Linus Torvalds 已提交
1543
		cifs_max_pending = 2;
1544
		cifs_dbg(FYI, "cifs_max_pending set to min of 2\n");
1545 1546
	} else if (cifs_max_pending > CIFS_MAX_REQ) {
		cifs_max_pending = CIFS_MAX_REQ;
1547 1548
		cifs_dbg(FYI, "cifs_max_pending set to max of %u\n",
			 CIFS_MAX_REQ);
L
Linus Torvalds 已提交
1549 1550
	}

J
Jeff Layton 已提交
1551 1552 1553 1554 1555 1556
	cifsiod_wq = alloc_workqueue("cifsiod", WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
	if (!cifsiod_wq) {
		rc = -ENOMEM;
		goto out_clean_proc;
	}

1557
	/*
1558 1559
	 * Consider in future setting limit!=0 maybe to min(num_of_cores - 1, 3)
	 * so that we don't launch too many worker threads but
1560
	 * Documentation/core-api/workqueue.rst recommends setting it to 0
1561
	 */
1562 1563

	/* WQ_UNBOUND allows decrypt tasks to run on any CPU */
1564
	decrypt_wq = alloc_workqueue("smb3decryptd",
1565
				     WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1566 1567 1568 1569 1570
	if (!decrypt_wq) {
		rc = -ENOMEM;
		goto out_destroy_cifsiod_wq;
	}

1571 1572 1573 1574 1575 1576 1577
	fileinfo_put_wq = alloc_workqueue("cifsfileinfoput",
				     WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
	if (!fileinfo_put_wq) {
		rc = -ENOMEM;
		goto out_destroy_decrypt_wq;
	}

R
Rabin Vincent 已提交
1578 1579 1580 1581
	cifsoplockd_wq = alloc_workqueue("cifsoplockd",
					 WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
	if (!cifsoplockd_wq) {
		rc = -ENOMEM;
1582
		goto out_destroy_fileinfo_put_wq;
R
Rabin Vincent 已提交
1583 1584
	}

1585 1586
	rc = cifs_fscache_register();
	if (rc)
R
Rabin Vincent 已提交
1587
		goto out_destroy_cifsoplockd_wq;
1588

L
Linus Torvalds 已提交
1589
	rc = cifs_init_inodecache();
1590
	if (rc)
1591
		goto out_unreg_fscache;
1592 1593 1594 1595 1596 1597 1598 1599 1600

	rc = cifs_init_mids();
	if (rc)
		goto out_destroy_inodecache;

	rc = cifs_init_request_bufs();
	if (rc)
		goto out_destroy_mids;

1601 1602 1603 1604 1605
#ifdef CONFIG_CIFS_DFS_UPCALL
	rc = dfs_cache_init();
	if (rc)
		goto out_destroy_request_bufs;
#endif /* CONFIG_CIFS_DFS_UPCALL */
1606
#ifdef CONFIG_CIFS_UPCALL
1607
	rc = init_cifs_spnego();
1608
	if (rc)
1609
		goto out_destroy_dfs_cache;
1610 1611 1612 1613
#endif /* CONFIG_CIFS_UPCALL */

	rc = init_cifs_idmap();
	if (rc)
1614
		goto out_register_key_type;
1615 1616 1617

	rc = register_filesystem(&cifs_fs_type);
	if (rc)
1618
		goto out_init_cifs_idmap;
1619

1620 1621 1622 1623 1624 1625
	rc = register_filesystem(&smb3_fs_type);
	if (rc) {
		unregister_filesystem(&cifs_fs_type);
		goto out_init_cifs_idmap;
	}

1626 1627
	return 0;

1628
out_init_cifs_idmap:
1629
	exit_cifs_idmap();
1630
out_register_key_type:
1631
#ifdef CONFIG_CIFS_UPCALL
1632
	exit_cifs_spnego();
1633 1634 1635 1636
out_destroy_dfs_cache:
#endif
#ifdef CONFIG_CIFS_DFS_UPCALL
	dfs_cache_destroy();
1637
out_destroy_request_bufs:
1638
#endif
1639
	cifs_destroy_request_bufs();
1640
out_destroy_mids:
1641
	cifs_destroy_mids();
1642
out_destroy_inodecache:
1643
	cifs_destroy_inodecache();
1644
out_unreg_fscache:
1645
	cifs_fscache_unregister();
R
Rabin Vincent 已提交
1646 1647
out_destroy_cifsoplockd_wq:
	destroy_workqueue(cifsoplockd_wq);
1648 1649
out_destroy_fileinfo_put_wq:
	destroy_workqueue(fileinfo_put_wq);
1650 1651
out_destroy_decrypt_wq:
	destroy_workqueue(decrypt_wq);
R
Rabin Vincent 已提交
1652
out_destroy_cifsiod_wq:
J
Jeff Layton 已提交
1653
	destroy_workqueue(cifsiod_wq);
1654 1655
out_clean_proc:
	cifs_proc_clean();
L
Linus Torvalds 已提交
1656 1657 1658 1659 1660 1661
	return rc;
}

static void __exit
exit_cifs(void)
{
1662
	cifs_dbg(NOISY, "exit_smb3\n");
1663
	unregister_filesystem(&cifs_fs_type);
1664
	unregister_filesystem(&smb3_fs_type);
1665
	cifs_dfs_release_automount_timer();
1666
	exit_cifs_idmap();
1667
#ifdef CONFIG_CIFS_UPCALL
1668
	exit_cifs_spnego();
1669 1670 1671
#endif
#ifdef CONFIG_CIFS_DFS_UPCALL
	dfs_cache_destroy();
L
Linus Torvalds 已提交
1672 1673
#endif
	cifs_destroy_request_bufs();
1674 1675 1676
	cifs_destroy_mids();
	cifs_destroy_inodecache();
	cifs_fscache_unregister();
R
Rabin Vincent 已提交
1677
	destroy_workqueue(cifsoplockd_wq);
1678
	destroy_workqueue(decrypt_wq);
1679
	destroy_workqueue(fileinfo_put_wq);
J
Jeff Layton 已提交
1680
	destroy_workqueue(cifsiod_wq);
1681
	cifs_proc_clean();
L
Linus Torvalds 已提交
1682 1683
}

1684
MODULE_AUTHOR("Steve French");
S
Steve French 已提交
1685
MODULE_LICENSE("GPL");	/* combination of LGPL + GPL source behaves as GPL */
L
Linus Torvalds 已提交
1686
MODULE_DESCRIPTION
1687 1688
	("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and "
	"also older servers complying with the SNIA CIFS Specification)");
L
Linus Torvalds 已提交
1689
MODULE_VERSION(CIFS_VERSION);
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701
MODULE_SOFTDEP("ecb");
MODULE_SOFTDEP("hmac");
MODULE_SOFTDEP("md4");
MODULE_SOFTDEP("md5");
MODULE_SOFTDEP("nls");
MODULE_SOFTDEP("aes");
MODULE_SOFTDEP("cmac");
MODULE_SOFTDEP("sha256");
MODULE_SOFTDEP("sha512");
MODULE_SOFTDEP("aead2");
MODULE_SOFTDEP("ccm");
MODULE_SOFTDEP("gcm");
L
Linus Torvalds 已提交
1702 1703
module_init(init_cifs)
module_exit(exit_cifs)