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 * Jeremy Allison (jra@samba.org) 7 * 8 */ 9 #ifndef _CIFS_GLOB_H 10 #define _CIFS_GLOB_H 11 12 #include <linux/in.h> 13 #include <linux/in6.h> 14 #include <linux/inet.h> 15 #include <linux/slab.h> 16 #include <linux/scatterlist.h> 17 #include <linux/mm.h> 18 #include <linux/mempool.h> 19 #include <linux/workqueue.h> 20 #include <linux/utsname.h> 21 #include <linux/sched/mm.h> 22 #include <linux/netfs.h> 23 #include <linux/fcntl.h> 24 #include "cifs_fs_sb.h" 25 #include "cifsacl.h" 26 #include <crypto/internal/hash.h> 27 #include <uapi/linux/cifs/cifs_mount.h> 28 #include "../common/smbglob.h" 29 #include "../common/smb2pdu.h" 30 #include "../common/fscc.h" 31 #include "smb2pdu.h" 32 #include "smb1pdu.h" 33 #include <linux/filelock.h> 34 35 #define SMB_PATH_MAX 260 36 #define CIFS_PORT 445 37 #define RFC1001_PORT 139 38 39 /* 40 * The sizes of various internal tables and strings 41 */ 42 #define MAX_UID_INFO 16 43 #define MAX_SES_INFO 2 44 #define MAX_TCON_INFO 4 45 46 #define MAX_TREE_SIZE (2 + CIFS_NI_MAXHOST + 1 + CIFS_MAX_SHARE_LEN + 1) 47 48 #define CIFS_MIN_RCV_POOL 4 49 50 #define MAX_REOPEN_ATT 5 /* these many maximum attempts to reopen a file */ 51 /* 52 * default attribute cache timeout (jiffies) 53 */ 54 #define CIFS_DEF_ACTIMEO (1 * HZ) 55 56 /* 57 * max sleep time before retry to server 58 */ 59 #define CIFS_MAX_SLEEP 2000 60 61 /* 62 * max attribute cache timeout (jiffies) - 2^30 63 */ 64 #define CIFS_MAX_ACTIMEO (1 << 30) 65 66 /* 67 * Max persistent and resilient handle timeout (milliseconds). 68 * Windows durable max was 960000 (16 minutes) 69 */ 70 #define SMB3_MAX_HANDLE_TIMEOUT 960000 71 72 /* 73 * MAX_REQ is the maximum number of requests that WE will send 74 * on one socket concurrently. 75 */ 76 #define CIFS_MAX_REQ 32767 77 78 #define RFC1001_NAME_LEN 15 79 #define RFC1001_NAME_LEN_WITH_NULL (RFC1001_NAME_LEN + 1) 80 81 /* maximum length of ip addr as a string (including ipv6 and sctp) */ 82 #define SERVER_NAME_LENGTH 80 83 #define SERVER_NAME_LEN_WITH_NULL (SERVER_NAME_LENGTH + 1) 84 85 /* echo interval in seconds */ 86 #define SMB_ECHO_INTERVAL_MIN 1 87 #define SMB_ECHO_INTERVAL_MAX 600 88 #define SMB_ECHO_INTERVAL_DEFAULT 60 89 90 /* smb multichannel query server interfaces interval in seconds */ 91 #define SMB_INTERFACE_POLL_INTERVAL 600 92 93 /* maximum number of PDUs in one compound */ 94 #define MAX_COMPOUND 10 95 96 /* 97 * Default number of credits to keep available for SMB3. 98 * This value is chosen somewhat arbitrarily. The Windows client 99 * defaults to 128 credits, the Windows server allows clients up to 100 * 512 credits (or 8K for later versions), and the NetApp server 101 * does not limit clients at all. Choose a high enough default value 102 * such that the client shouldn't limit performance, but allow mount 103 * to override (until you approach 64K, where we limit credits to 65000 104 * to reduce possibility of seeing more server credit overflow bugs. 105 */ 106 #define SMB2_MAX_CREDITS_AVAILABLE 32000 107 108 #ifndef XATTR_DOS_ATTRIB 109 #define XATTR_DOS_ATTRIB "user.DOSATTRIB" 110 #endif 111 112 #define CIFS_MAX_WORKSTATION_LEN (__NEW_UTS_LEN + 1) /* reasonable max for client */ 113 114 #define CIFS_DFS_ROOT_SES(ses) ((ses)->dfs_root_ses ?: (ses)) 115 116 /* 117 * CIFS vfs client Status information (based on what we know.) 118 */ 119 120 /* associated with each connection */ 121 enum statusEnum { 122 CifsNew = 0, 123 CifsGood, 124 CifsExiting, 125 CifsNeedReconnect, 126 CifsNeedNegotiate, 127 CifsInNegotiate, 128 }; 129 130 /* associated with each smb session */ 131 enum ses_status_enum { 132 SES_NEW = 0, 133 SES_GOOD, 134 SES_EXITING, 135 SES_NEED_RECON, 136 SES_IN_SETUP 137 }; 138 139 /* associated with each tree connection to the server */ 140 enum tid_status_enum { 141 TID_NEW = 0, 142 TID_GOOD, 143 TID_EXITING, 144 TID_NEED_RECON, 145 TID_NEED_TCON, 146 TID_IN_TCON, 147 TID_NEED_FILES_INVALIDATE, /* currently unused */ 148 TID_IN_FILES_INVALIDATE 149 }; 150 151 enum securityEnum { 152 Unspecified = 0, /* not specified */ 153 NTLMv2, /* Legacy NTLM auth with NTLMv2 hash */ 154 RawNTLMSSP, /* NTLMSSP without SPNEGO, NTLMv2 hash */ 155 Kerberos, /* Kerberos via SPNEGO */ 156 IAKerb, /* Kerberos proxy */ 157 }; 158 159 enum upcall_target_enum { 160 UPTARGET_UNSPECIFIED, /* not specified, defaults to app */ 161 UPTARGET_MOUNT, /* upcall to the mount namespace */ 162 UPTARGET_APP, /* upcall to the application namespace which did the mount */ 163 }; 164 165 enum cifs_reparse_type { 166 CIFS_REPARSE_TYPE_NONE, 167 CIFS_REPARSE_TYPE_NFS, 168 CIFS_REPARSE_TYPE_WSL, 169 CIFS_REPARSE_TYPE_DEFAULT = CIFS_REPARSE_TYPE_NFS, 170 }; 171 172 static inline const char *cifs_reparse_type_str(enum cifs_reparse_type type) 173 { 174 switch (type) { 175 case CIFS_REPARSE_TYPE_NONE: 176 return "none"; 177 case CIFS_REPARSE_TYPE_NFS: 178 return "nfs"; 179 case CIFS_REPARSE_TYPE_WSL: 180 return "wsl"; 181 default: 182 return "unknown"; 183 } 184 } 185 186 enum cifs_symlink_type { 187 CIFS_SYMLINK_TYPE_DEFAULT, 188 CIFS_SYMLINK_TYPE_NONE, 189 CIFS_SYMLINK_TYPE_NATIVE, 190 CIFS_SYMLINK_TYPE_UNIX, 191 CIFS_SYMLINK_TYPE_MFSYMLINKS, 192 CIFS_SYMLINK_TYPE_SFU, 193 CIFS_SYMLINK_TYPE_NFS, 194 CIFS_SYMLINK_TYPE_WSL, 195 }; 196 197 static inline const char *cifs_symlink_type_str(enum cifs_symlink_type type) 198 { 199 switch (type) { 200 case CIFS_SYMLINK_TYPE_NONE: 201 return "none"; 202 case CIFS_SYMLINK_TYPE_NATIVE: 203 return "native"; 204 case CIFS_SYMLINK_TYPE_UNIX: 205 return "unix"; 206 case CIFS_SYMLINK_TYPE_MFSYMLINKS: 207 return "mfsymlinks"; 208 case CIFS_SYMLINK_TYPE_SFU: 209 return "sfu"; 210 case CIFS_SYMLINK_TYPE_NFS: 211 return "nfs"; 212 case CIFS_SYMLINK_TYPE_WSL: 213 return "wsl"; 214 default: 215 return "unknown"; 216 } 217 } 218 219 struct session_key { 220 unsigned int len; 221 char *response; 222 }; 223 224 /* crypto hashing related structure/fields, not specific to a sec mech */ 225 struct cifs_secmech { 226 struct shash_desc *aes_cmac; /* block-cipher based MAC function, for SMB3 signatures */ 227 228 struct crypto_aead *enc; /* smb3 encryption AEAD TFM (AES-CCM and AES-GCM) */ 229 struct crypto_aead *dec; /* smb3 decryption AEAD TFM (AES-CCM and AES-GCM) */ 230 }; 231 232 /* per smb session structure/fields */ 233 struct ntlmssp_auth { 234 bool sesskey_per_smbsess; /* whether session key is per smb session */ 235 __u32 client_flags; /* sent by client in type 1 ntlmsssp exchange */ 236 __u32 server_flags; /* sent by server in type 2 ntlmssp exchange */ 237 unsigned char ciphertext[CIFS_CPHTXT_SIZE]; /* sent to server */ 238 char cryptkey[CIFS_CRYPTO_KEY_SIZE]; /* used by ntlmssp */ 239 }; 240 241 struct cifs_cred { 242 int uid; 243 int gid; 244 int mode; 245 int cecount; 246 struct smb_sid osid; 247 struct smb_sid gsid; 248 struct cifs_ntace *ntaces; 249 struct smb_ace *aces; 250 }; 251 252 struct cifs_open_info_data { 253 bool adjust_tz; 254 bool reparse_point; 255 bool contains_posix_file_info; 256 struct { 257 /* ioctl response buffer */ 258 struct { 259 int buftype; 260 struct kvec iov; 261 } io; 262 __u32 tag; 263 struct reparse_data_buffer *buf; 264 } reparse; 265 struct { 266 __u8 eas[SMB2_WSL_MAX_QUERY_EA_RESP_SIZE]; 267 unsigned int eas_len; 268 } wsl; 269 char *symlink_target; 270 struct smb_sid posix_owner; 271 struct smb_sid posix_group; 272 union { 273 struct smb2_file_all_info fi; 274 struct smb311_posix_qinfo posix_fi; 275 }; 276 }; 277 278 /* 279 ***************************************************************** 280 * Except the CIFS PDUs themselves all the 281 * globally interesting structs should go here 282 ***************************************************************** 283 */ 284 285 /* 286 * A smb_rqst represents a complete request to be issued to a server. It's 287 * formed by a kvec array, followed by an array of pages. Page data is assumed 288 * to start at the beginning of the first page. 289 */ 290 struct smb_rqst { 291 struct kvec *rq_iov; /* array of kvecs */ 292 unsigned int rq_nvec; /* number of kvecs in array */ 293 struct iov_iter rq_iter; /* Data iterator */ 294 struct folio_queue *rq_buffer; /* Buffer for encryption */ 295 }; 296 297 struct mid_q_entry; 298 struct TCP_Server_Info; 299 struct cifsFileInfo; 300 struct cifs_ses; 301 struct cifs_tcon; 302 struct dfs_info3_param; 303 struct cifs_fattr; 304 struct smb3_fs_context; 305 struct cifs_fid; 306 struct cifs_io_subrequest; 307 struct cifs_io_parms; 308 struct cifs_search_info; 309 struct cifsInodeInfo; 310 struct cifs_open_parms; 311 struct cifs_credits; 312 313 struct smb_version_operations { 314 int (*send_cancel)(struct cifs_ses *ses, struct TCP_Server_Info *server, 315 struct smb_rqst *rqst, struct mid_q_entry *mid, 316 unsigned int xid); 317 bool (*compare_fids)(struct cifsFileInfo *, struct cifsFileInfo *); 318 /* setup request: allocate mid, sign message */ 319 struct mid_q_entry *(*setup_request)(struct cifs_ses *, 320 struct TCP_Server_Info *, 321 struct smb_rqst *); 322 /* setup async request: allocate mid, sign message */ 323 struct mid_q_entry *(*setup_async_request)(struct TCP_Server_Info *, 324 struct smb_rqst *); 325 /* check response: verify signature, map error */ 326 int (*check_receive)(struct mid_q_entry *, struct TCP_Server_Info *, 327 bool); 328 void (*add_credits)(struct TCP_Server_Info *server, 329 struct cifs_credits *credits, 330 const int optype); 331 void (*set_credits)(struct TCP_Server_Info *, const int); 332 int * (*get_credits_field)(struct TCP_Server_Info *, const int); 333 unsigned int (*get_credits)(struct mid_q_entry *); 334 __u64 (*get_next_mid)(struct TCP_Server_Info *); 335 void (*revert_current_mid)(struct TCP_Server_Info *server, 336 const unsigned int val); 337 /* data offset from read response message */ 338 unsigned int (*read_data_offset)(char *); 339 /* 340 * Data length from read response message 341 * When in_remaining is true, the returned data length is in 342 * message field DataRemaining for out-of-band data read (e.g through 343 * Memory Registration RDMA write in SMBD). 344 * Otherwise, the returned data length is in message field DataLength. 345 */ 346 unsigned int (*read_data_length)(char *, bool in_remaining); 347 /* map smb to linux error */ 348 int (*map_error)(char *, bool); 349 /* find mid corresponding to the response message */ 350 struct mid_q_entry *(*find_mid)(struct TCP_Server_Info *server, char *buf); 351 void (*dump_detail)(void *buf, size_t buf_len, struct TCP_Server_Info *ptcp_info); 352 void (*clear_stats)(struct cifs_tcon *); 353 void (*print_stats)(struct seq_file *m, struct cifs_tcon *); 354 void (*dump_share_caps)(struct seq_file *, struct cifs_tcon *); 355 /* verify the message */ 356 int (*check_message)(char *buf, unsigned int pdu_len, unsigned int len, 357 struct TCP_Server_Info *server); 358 bool (*is_oplock_break)(char *, struct TCP_Server_Info *); 359 int (*handle_cancelled_mid)(struct mid_q_entry *, struct TCP_Server_Info *); 360 void (*downgrade_oplock)(struct TCP_Server_Info *server, 361 struct cifsInodeInfo *cinode, __u32 oplock, 362 __u16 epoch, bool *purge_cache); 363 /* process transaction2 response */ 364 bool (*check_trans2)(struct mid_q_entry *, struct TCP_Server_Info *, 365 char *, int); 366 /* check if we need to negotiate */ 367 bool (*need_neg)(struct TCP_Server_Info *); 368 /* negotiate to the server */ 369 int (*negotiate)(const unsigned int xid, 370 struct cifs_ses *ses, 371 struct TCP_Server_Info *server); 372 /* set negotiated write size */ 373 unsigned int (*negotiate_wsize)(struct cifs_tcon *tcon, struct smb3_fs_context *ctx); 374 /* set negotiated read size */ 375 unsigned int (*negotiate_rsize)(struct cifs_tcon *tcon, struct smb3_fs_context *ctx); 376 /* setup smb sessionn */ 377 int (*sess_setup)(const unsigned int, struct cifs_ses *, 378 struct TCP_Server_Info *server, 379 const struct nls_table *); 380 /* close smb session */ 381 int (*logoff)(const unsigned int, struct cifs_ses *); 382 /* connect to a server share */ 383 int (*tree_connect)(const unsigned int, struct cifs_ses *, const char *, 384 struct cifs_tcon *, const struct nls_table *); 385 /* close tree connection */ 386 int (*tree_disconnect)(const unsigned int, struct cifs_tcon *); 387 /* get DFS referrals */ 388 int (*get_dfs_refer)(const unsigned int, struct cifs_ses *, 389 const char *, struct dfs_info3_param **, 390 unsigned int *, const struct nls_table *, int); 391 /* informational QFS call */ 392 void (*qfs_tcon)(const unsigned int, struct cifs_tcon *, 393 struct cifs_sb_info *); 394 /* query for server interfaces */ 395 int (*query_server_interfaces)(const unsigned int, struct cifs_tcon *, 396 bool); 397 /* check if a path is accessible or not */ 398 int (*is_path_accessible)(const unsigned int, struct cifs_tcon *, 399 struct cifs_sb_info *, const char *); 400 /* query path data from the server */ 401 int (*query_path_info)(const unsigned int xid, 402 struct cifs_tcon *tcon, 403 struct cifs_sb_info *cifs_sb, 404 const char *full_path, 405 struct cifs_open_info_data *data); 406 /* query file data from the server */ 407 int (*query_file_info)(const unsigned int xid, struct cifs_tcon *tcon, 408 struct cifsFileInfo *cfile, struct cifs_open_info_data *data); 409 /* query reparse point to determine which type of special file */ 410 int (*query_reparse_point)(const unsigned int xid, 411 struct cifs_tcon *tcon, 412 struct cifs_sb_info *cifs_sb, 413 const char *full_path, 414 u32 *tag, struct kvec *rsp, 415 int *rsp_buftype); 416 /* get server index number */ 417 int (*get_srv_inum)(const unsigned int xid, struct cifs_tcon *tcon, 418 struct cifs_sb_info *cifs_sb, const char *full_path, u64 *uniqueid, 419 struct cifs_open_info_data *data); 420 /* set size by path */ 421 int (*set_path_size)(const unsigned int, struct cifs_tcon *, 422 const char *, __u64, struct cifs_sb_info *, bool, 423 struct dentry *); 424 /* set size by file handle */ 425 int (*set_file_size)(const unsigned int, struct cifs_tcon *, 426 struct cifsFileInfo *, __u64, bool); 427 /* set attributes */ 428 int (*set_file_info)(struct inode *, const char *, FILE_BASIC_INFO *, 429 const unsigned int); 430 int (*set_compression)(const unsigned int, struct cifs_tcon *, 431 struct cifsFileInfo *); 432 /* check if we can send an echo or nor */ 433 bool (*can_echo)(struct TCP_Server_Info *); 434 /* send echo request */ 435 int (*echo)(struct TCP_Server_Info *); 436 /* create directory */ 437 int (*posix_mkdir)(const unsigned int xid, struct inode *inode, 438 umode_t mode, struct cifs_tcon *tcon, 439 const char *full_path, 440 struct cifs_sb_info *cifs_sb); 441 int (*mkdir)(const unsigned int xid, struct inode *inode, umode_t mode, 442 struct cifs_tcon *tcon, const char *name, 443 struct cifs_sb_info *sb); 444 /* set info on created directory */ 445 void (*mkdir_setinfo)(struct inode *, const char *, 446 struct cifs_sb_info *, struct cifs_tcon *, 447 const unsigned int); 448 /* remove directory */ 449 int (*rmdir)(const unsigned int, struct cifs_tcon *, const char *, 450 struct cifs_sb_info *); 451 /* unlink file */ 452 int (*unlink)(const unsigned int, struct cifs_tcon *, const char *, 453 struct cifs_sb_info *, struct dentry *); 454 /* open, rename and delete file */ 455 int (*rename_pending_delete)(const char *, struct dentry *, 456 const unsigned int); 457 /* send rename request */ 458 int (*rename)(const unsigned int xid, 459 struct cifs_tcon *tcon, 460 struct dentry *source_dentry, 461 const char *from_name, const char *to_name, 462 struct cifs_sb_info *cifs_sb); 463 /* send create hardlink request */ 464 int (*create_hardlink)(const unsigned int xid, 465 struct cifs_tcon *tcon, 466 struct dentry *source_dentry, 467 const char *from_name, const char *to_name, 468 struct cifs_sb_info *cifs_sb); 469 /* query symlink target */ 470 int (*query_symlink)(const unsigned int xid, 471 struct cifs_tcon *tcon, 472 struct cifs_sb_info *cifs_sb, 473 const char *full_path, 474 char **target_path); 475 /* open a file for non-posix mounts */ 476 int (*open)(const unsigned int xid, struct cifs_open_parms *oparms, __u32 *oplock, 477 void *buf); 478 /* set fid protocol-specific info */ 479 void (*set_fid)(struct cifsFileInfo *, struct cifs_fid *, __u32); 480 /* close a file */ 481 int (*close)(const unsigned int, struct cifs_tcon *, 482 struct cifs_fid *); 483 /* close a file, returning file attributes and timestamps */ 484 int (*close_getattr)(const unsigned int xid, struct cifs_tcon *tcon, 485 struct cifsFileInfo *pfile_info); 486 /* send a flush request to the server */ 487 int (*flush)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); 488 /* async read from the server */ 489 int (*async_readv)(struct cifs_io_subrequest *); 490 /* async write to the server */ 491 void (*async_writev)(struct cifs_io_subrequest *); 492 /* sync read from the server */ 493 int (*sync_read)(const unsigned int, struct cifs_fid *, 494 struct cifs_io_parms *, unsigned int *, char **, 495 int *); 496 /* sync write to the server */ 497 int (*sync_write)(const unsigned int, struct cifs_fid *, 498 struct cifs_io_parms *, unsigned int *, struct kvec *, 499 unsigned long); 500 /* open dir, start readdir */ 501 int (*query_dir_first)(const unsigned int, struct cifs_tcon *, 502 const char *, struct cifs_sb_info *, 503 struct cifs_fid *, __u16, 504 struct cifs_search_info *); 505 /* continue readdir */ 506 int (*query_dir_next)(const unsigned int, struct cifs_tcon *, 507 struct cifs_fid *, 508 __u16, struct cifs_search_info *srch_inf); 509 /* close dir */ 510 int (*close_dir)(const unsigned int, struct cifs_tcon *, 511 struct cifs_fid *); 512 /* calculate a size of SMB message */ 513 unsigned int (*calc_smb_size)(void *buf); 514 /* check for STATUS_PENDING and process the response if yes */ 515 bool (*is_status_pending)(char *buf, struct TCP_Server_Info *server); 516 /* check for STATUS_NETWORK_SESSION_EXPIRED */ 517 bool (*is_session_expired)(char *); 518 /* send oplock break response */ 519 int (*oplock_response)(struct cifs_tcon *tcon, __u64 persistent_fid, 520 __u64 volatile_fid, __u16 net_fid, 521 struct cifsInodeInfo *cifs_inode, 522 unsigned int oplock); 523 /* query remote filesystem */ 524 int (*queryfs)(const unsigned int, struct cifs_tcon *, 525 const char *, struct cifs_sb_info *, struct kstatfs *); 526 /* send mandatory brlock to the server */ 527 int (*mand_lock)(const unsigned int, struct cifsFileInfo *, __u64, 528 __u64, __u32, int, int, bool); 529 /* unlock range of mandatory locks */ 530 int (*mand_unlock_range)(struct cifsFileInfo *, struct file_lock *, 531 const unsigned int); 532 /* push brlocks from the cache to the server */ 533 int (*push_mand_locks)(struct cifsFileInfo *); 534 /* get lease key of the inode */ 535 void (*get_lease_key)(struct inode *, struct cifs_fid *); 536 /* set lease key of the inode */ 537 void (*set_lease_key)(struct inode *, struct cifs_fid *); 538 /* generate new lease key */ 539 void (*new_lease_key)(struct cifs_fid *); 540 int (*generate_signingkey)(struct cifs_ses *ses, 541 struct TCP_Server_Info *server); 542 int (*set_integrity)(const unsigned int, struct cifs_tcon *tcon, 543 struct cifsFileInfo *src_file); 544 int (*enum_snapshots)(const unsigned int xid, struct cifs_tcon *tcon, 545 struct cifsFileInfo *src_file, void __user *); 546 int (*notify)(const unsigned int xid, struct file *pfile, 547 void __user *pbuf, bool return_changes); 548 int (*query_mf_symlink)(unsigned int, struct cifs_tcon *, 549 struct cifs_sb_info *, const unsigned char *, 550 char *, unsigned int *); 551 int (*create_mf_symlink)(unsigned int, struct cifs_tcon *, 552 struct cifs_sb_info *, const unsigned char *, 553 char *, unsigned int *); 554 /* if we can do cache read operations */ 555 bool (*is_read_op)(__u32); 556 /* set oplock level for the inode */ 557 void (*set_oplock_level)(struct cifsInodeInfo *cinode, __u32 oplock, __u16 epoch, 558 bool *purge_cache); 559 /* create lease context buffer for CREATE request */ 560 char * (*create_lease_buf)(u8 *lease_key, u8 oplock, u8 *parent_lease_key, __le32 le_flags); 561 /* parse lease context buffer and return oplock/epoch info */ 562 __u8 (*parse_lease_buf)(void *buf, __u16 *epoch, char *lkey); 563 ssize_t (*copychunk_range)(const unsigned int, 564 struct cifsFileInfo *src_file, 565 struct cifsFileInfo *target_file, 566 u64 src_off, u64 len, u64 dest_off); 567 int (*duplicate_extents)(const unsigned int, struct cifsFileInfo *src, 568 struct cifsFileInfo *target_file, u64 src_off, u64 len, 569 u64 dest_off); 570 int (*validate_negotiate)(const unsigned int, struct cifs_tcon *); 571 ssize_t (*query_all_EAs)(const unsigned int, struct cifs_tcon *, 572 const unsigned char *, const unsigned char *, char *, 573 size_t, struct cifs_sb_info *); 574 int (*set_EA)(const unsigned int, struct cifs_tcon *, const char *, 575 const char *, const void *, const __u16, 576 const struct nls_table *, struct cifs_sb_info *); 577 struct smb_ntsd * (*get_acl)(struct cifs_sb_info *cifssb, struct inode *ino, 578 const char *patch, u32 *plen, u32 info); 579 struct smb_ntsd * (*get_acl_by_fid)(struct cifs_sb_info *cifssmb, 580 const struct cifs_fid *pfid, u32 *plen, u32 info); 581 int (*set_acl)(struct smb_ntsd *pntsd, __u32 len, struct inode *ino, const char *path, 582 int flag); 583 /* writepages retry size */ 584 unsigned int (*wp_retry_size)(struct inode *); 585 /* get mtu credits */ 586 int (*wait_mtu_credits)(struct TCP_Server_Info *, size_t, 587 size_t *, struct cifs_credits *); 588 /* adjust previously taken mtu credits to request size */ 589 int (*adjust_credits)(struct TCP_Server_Info *server, 590 struct cifs_io_subrequest *subreq, 591 unsigned int /*enum smb3_rw_credits_trace*/ trace); 592 /* check if we need to issue closedir */ 593 bool (*dir_needs_close)(struct cifsFileInfo *); 594 long (*fallocate)(struct file *, struct cifs_tcon *, int, loff_t, 595 loff_t); 596 /* init transform (compress/encrypt) request */ 597 int (*init_transform_rq)(struct TCP_Server_Info *, int num_rqst, 598 struct smb_rqst *, struct smb_rqst *); 599 int (*is_transform_hdr)(void *buf); 600 int (*receive_transform)(struct TCP_Server_Info *, 601 struct mid_q_entry **, char **, int *); 602 enum securityEnum (*select_sectype)(struct TCP_Server_Info *, 603 enum securityEnum); 604 int (*next_header)(struct TCP_Server_Info *server, char *buf, 605 unsigned int *noff); 606 /* ioctl passthrough for query_info */ 607 int (*ioctl_query_info)(const unsigned int xid, 608 struct cifs_tcon *tcon, 609 struct cifs_sb_info *cifs_sb, 610 __le16 *path, int is_dir, 611 unsigned long p); 612 /* make unix special files (block, char, fifo, socket) */ 613 int (*make_node)(unsigned int xid, 614 struct inode *inode, 615 struct dentry *dentry, 616 struct cifs_tcon *tcon, 617 const char *full_path, 618 umode_t mode, 619 dev_t device_number); 620 /* version specific fiemap implementation */ 621 int (*fiemap)(struct cifs_tcon *tcon, struct cifsFileInfo *, 622 struct fiemap_extent_info *, u64, u64); 623 /* version specific llseek implementation */ 624 loff_t (*llseek)(struct file *, struct cifs_tcon *, loff_t, int); 625 /* Check for STATUS_IO_TIMEOUT */ 626 bool (*is_status_io_timeout)(char *buf); 627 /* Check for STATUS_NETWORK_NAME_DELETED */ 628 bool (*is_network_name_deleted)(char *buf, struct TCP_Server_Info *srv); 629 struct reparse_data_buffer * (*get_reparse_point_buffer)(const struct kvec *rsp_iov, 630 u32 *plen); 631 struct inode * (*create_reparse_inode)(struct cifs_open_info_data *data, 632 struct super_block *sb, 633 const unsigned int xid, 634 struct cifs_tcon *tcon, 635 const char *full_path, 636 bool directory, 637 struct kvec *reparse_iov, 638 struct kvec *xattr_iov); 639 }; 640 641 #define HEADER_SIZE(server) (server->vals->header_size) 642 #define MAX_HEADER_SIZE(server) (server->vals->max_header_size) 643 #define MID_HEADER_SIZE(server) (HEADER_SIZE(server) - 1) 644 645 /** 646 * CIFS superblock mount flags (mnt_cifs_flags) to consider when 647 * trying to reuse existing superblock for a new mount 648 */ 649 #define CIFS_MOUNT_MASK (CIFS_MOUNT_NO_PERM | CIFS_MOUNT_SET_UID | \ 650 CIFS_MOUNT_SERVER_INUM | CIFS_MOUNT_DIRECT_IO | \ 651 CIFS_MOUNT_NO_XATTR | CIFS_MOUNT_MAP_SPECIAL_CHR | \ 652 CIFS_MOUNT_MAP_SFM_CHR | \ 653 CIFS_MOUNT_UNX_EMUL | CIFS_MOUNT_NO_BRL | \ 654 CIFS_MOUNT_CIFS_ACL | CIFS_MOUNT_OVERR_UID | \ 655 CIFS_MOUNT_OVERR_GID | CIFS_MOUNT_DYNPERM | \ 656 CIFS_MOUNT_NOPOSIXBRL | CIFS_MOUNT_NOSSYNC | \ 657 CIFS_MOUNT_FSCACHE | CIFS_MOUNT_MF_SYMLINKS | \ 658 CIFS_MOUNT_MULTIUSER | CIFS_MOUNT_STRICT_IO | \ 659 CIFS_MOUNT_CIFS_BACKUPUID | CIFS_MOUNT_CIFS_BACKUPGID | \ 660 CIFS_MOUNT_UID_FROM_ACL | CIFS_MOUNT_NO_HANDLE_CACHE | \ 661 CIFS_MOUNT_NO_DFS | CIFS_MOUNT_MODE_FROM_SID | \ 662 CIFS_MOUNT_RO_CACHE | CIFS_MOUNT_RW_CACHE) 663 664 /** 665 * Generic VFS superblock mount flags (s_flags) to consider when 666 * trying to reuse existing superblock for a new mount 667 */ 668 #define CIFS_MS_MASK (SB_RDONLY | SB_MANDLOCK | SB_NOEXEC | SB_NOSUID | \ 669 SB_NODEV | SB_SYNCHRONOUS) 670 671 struct cifs_mnt_data { 672 struct cifs_sb_info *cifs_sb; 673 struct smb3_fs_context *ctx; 674 int flags; 675 }; 676 677 struct TCP_Server_Info { 678 struct list_head tcp_ses_list; 679 struct list_head smb_ses_list; 680 struct list_head rlist; /* reconnect list */ 681 spinlock_t srv_lock; /* protect anything here that is not protected */ 682 __u64 conn_id; /* connection identifier (useful for debugging) */ 683 int srv_count; /* reference counter */ 684 int rfc1001_sessinit; /* whether to estasblish netbios session */ 685 bool with_rfc1001; /* if netbios session is used */ 686 /* 15 character server name + 0x20 16th byte indicating type = srv */ 687 char server_RFC1001_name[RFC1001_NAME_LEN_WITH_NULL]; 688 struct smb_version_operations *ops; 689 struct smb_version_values *vals; 690 /* updates to tcpStatus protected by cifs_tcp_ses_lock */ 691 enum statusEnum tcpStatus; /* what we think the status is */ 692 char *hostname; /* hostname portion of UNC string */ 693 struct socket *ssocket; 694 struct sockaddr_storage dstaddr; 695 struct sockaddr_storage srcaddr; /* locally bind to this IP */ 696 #ifdef CONFIG_NET_NS 697 struct net *net; 698 #endif 699 wait_queue_head_t response_q; 700 wait_queue_head_t request_q; /* if more than maxmpx to srvr must block*/ 701 spinlock_t mid_queue_lock; /* protect mid queue */ 702 spinlock_t mid_counter_lock; 703 struct list_head pending_mid_q; 704 bool noblocksnd; /* use blocking sendmsg */ 705 bool noautotune; /* do not autotune send buf sizes */ 706 bool nosharesock; 707 bool tcp_nodelay; 708 bool terminate; 709 int credits; /* send no more requests at once */ 710 unsigned int max_credits; /* can override large 32000 default at mnt */ 711 unsigned int in_flight; /* number of requests on the wire to server */ 712 unsigned int max_in_flight; /* max number of requests that were on wire */ 713 spinlock_t req_lock; /* protect the two values above */ 714 struct mutex _srv_mutex; 715 unsigned int nofs_flag; 716 struct task_struct *tsk; 717 char server_GUID[16]; 718 __u16 sec_mode; 719 bool sign; /* is signing enabled on this connection? */ 720 bool ignore_signature:1; /* skip validation of signatures in SMB2/3 rsp */ 721 bool session_estab; /* mark when very first sess is established */ 722 int echo_credits; /* echo reserved slots */ 723 int oplock_credits; /* oplock break reserved slots */ 724 bool echoes:1; /* enable echoes */ 725 __u8 client_guid[SMB2_CLIENT_GUID_SIZE]; /* Client GUID */ 726 u16 dialect; /* dialect index that server chose */ 727 bool oplocks:1; /* enable oplocks */ 728 unsigned int maxReq; /* Clients should submit no more */ 729 /* than maxReq distinct unanswered SMBs to the server when using */ 730 /* multiplexed reads or writes (for SMB1/CIFS only, not SMB2/SMB3) */ 731 unsigned int maxBuf; /* maxBuf specifies the maximum */ 732 /* message size the server can send or receive for non-raw SMBs */ 733 /* maxBuf is returned by SMB NegotiateProtocol so maxBuf is only 0 */ 734 /* when socket is setup (and during reconnect) before NegProt sent */ 735 unsigned int max_rw; /* maxRw specifies the maximum */ 736 /* message size the server can send or receive for */ 737 /* SMB_COM_WRITE_RAW or SMB_COM_READ_RAW. */ 738 unsigned int capabilities; /* selective disabling of caps by smb sess */ 739 int timeAdj; /* Adjust for difference in server time zone in sec */ 740 __u64 current_mid; /* multiplex id - rotating counter, protected by mid_counter_lock */ 741 char cryptkey[CIFS_CRYPTO_KEY_SIZE]; /* used by ntlm, ntlmv2 etc */ 742 /* 16th byte of RFC1001 workstation name is always null */ 743 char workstation_RFC1001_name[RFC1001_NAME_LEN_WITH_NULL]; 744 __u32 sequence_number; /* for signing, protected by srv_mutex */ 745 __u32 reconnect_instance; /* incremented on each reconnect */ 746 __le32 session_key_id; /* retrieved from negotiate response and send in session setup request */ 747 struct session_key session_key; 748 unsigned long lstrp; /* when we got last response from this server */ 749 unsigned long neg_start; /* when negotiate started (jiffies) */ 750 unsigned long reconn_delay; /* when resched session and tcon reconnect */ 751 struct cifs_secmech secmech; /* crypto sec mech functs, descriptors */ 752 #define CIFS_NEGFLAVOR_UNENCAP 1 /* wct == 17, but no ext_sec */ 753 #define CIFS_NEGFLAVOR_EXTENDED 2 /* wct == 17, ext_sec bit set */ 754 char negflavor; /* NEGOTIATE response flavor */ 755 /* extended security flavors that server supports */ 756 bool sec_ntlmssp; /* supports NTLMSSP */ 757 bool sec_kerberosu2u; /* supports U2U Kerberos */ 758 bool sec_kerberos; /* supports plain Kerberos */ 759 bool sec_mskerberos; /* supports legacy MS Kerberos */ 760 bool sec_iakerb; /* supports pass-through auth for Kerberos (krb5 proxy) */ 761 bool large_buf; /* is current buffer large? */ 762 /* use SMBD connection instead of socket */ 763 bool rdma; 764 /* point to the SMBD connection if RDMA is used instead of socket */ 765 struct smbd_connection *smbd_conn; 766 struct delayed_work echo; /* echo ping workqueue job */ 767 char *smallbuf; /* pointer to current "small" buffer */ 768 char *bigbuf; /* pointer to current "big" buffer */ 769 /* Total size of this PDU. Only valid from cifs_demultiplex_thread */ 770 unsigned int pdu_size; 771 unsigned int total_read; /* total amount of data read in this pass */ 772 atomic_t in_send; /* requests trying to send */ 773 atomic_t num_waiters; /* blocked waiting to get in sendrecv */ 774 #ifdef CONFIG_CIFS_STATS2 775 atomic_t num_cmds[NUMBER_OF_SMB2_COMMANDS]; /* total requests by cmd */ 776 atomic_t smb2slowcmd[NUMBER_OF_SMB2_COMMANDS]; /* count resps > 1 sec */ 777 __u64 time_per_cmd[NUMBER_OF_SMB2_COMMANDS]; /* total time per cmd */ 778 __u32 slowest_cmd[NUMBER_OF_SMB2_COMMANDS]; 779 __u32 fastest_cmd[NUMBER_OF_SMB2_COMMANDS]; 780 #endif /* STATS2 */ 781 unsigned int max_read; 782 unsigned int max_write; 783 unsigned int min_offload; 784 /* 785 * If payload is less than or equal to the threshold, 786 * use RDMA send/recv to send upper layer I/O. 787 * If payload is more than the threshold, 788 * use RDMA read/write through memory registration for I/O. 789 */ 790 unsigned int rdma_readwrite_threshold; 791 unsigned int retrans; 792 struct { 793 bool requested; /* "compress" mount option set*/ 794 bool enabled; /* actually negotiated with server */ 795 __le16 alg; /* preferred alg negotiated with server */ 796 } compression; 797 __u16 signing_algorithm; 798 __le16 cipher_type; 799 /* save initial negprot hash */ 800 __u8 preauth_sha_hash[SMB2_PREAUTH_HASH_SIZE]; 801 bool signing_negotiated; /* true if valid signing context rcvd from server */ 802 bool posix_ext_supported; 803 struct delayed_work reconnect; /* reconnect workqueue job */ 804 struct mutex reconnect_mutex; /* prevent simultaneous reconnects */ 805 unsigned long echo_interval; 806 807 /* 808 * Number of targets available for reconnect. The more targets 809 * the more tasks have to wait to let the demultiplex thread 810 * reconnect. 811 */ 812 int nr_targets; 813 bool noblockcnt; /* use non-blocking connect() */ 814 815 /* 816 * If this is a session channel, 817 * primary_server holds the ref-counted 818 * pointer to primary channel connection for the session. 819 */ 820 #define SERVER_IS_CHAN(server) (!!(server)->primary_server) 821 struct TCP_Server_Info *primary_server; 822 __u16 channel_sequence_num; /* incremented on primary channel on each chan reconnect */ 823 824 #ifdef CONFIG_CIFS_SWN_UPCALL 825 bool use_swn_dstaddr; 826 struct sockaddr_storage swn_dstaddr; 827 #endif 828 /* 829 * Canonical DFS referral path used in cifs_reconnect() for failover as 830 * well as in DFS cache refresher. 831 * 832 * format: \\HOST\SHARE[\OPTIONAL PATH] 833 */ 834 char *leaf_fullpath; 835 bool dfs_conn:1; 836 char dns_dom[CIFS_MAX_DOMAINNAME_LEN + 1]; 837 }; 838 839 static inline bool is_smb1(const struct TCP_Server_Info *server) 840 { 841 return server->vals->protocol_id == SMB10_PROT_ID; 842 } 843 844 static inline void cifs_server_lock(struct TCP_Server_Info *server) 845 { 846 unsigned int nofs_flag = memalloc_nofs_save(); 847 848 mutex_lock(&server->_srv_mutex); 849 server->nofs_flag = nofs_flag; 850 } 851 852 static inline void cifs_server_unlock(struct TCP_Server_Info *server) 853 { 854 unsigned int nofs_flag = server->nofs_flag; 855 856 mutex_unlock(&server->_srv_mutex); 857 memalloc_nofs_restore(nofs_flag); 858 } 859 860 struct cifs_credits { 861 unsigned int value; 862 unsigned int instance; 863 unsigned int in_flight_check; 864 unsigned int rreq_debug_id; 865 unsigned int rreq_debug_index; 866 }; 867 868 static inline unsigned int 869 in_flight(struct TCP_Server_Info *server) 870 { 871 unsigned int num; 872 873 spin_lock(&server->req_lock); 874 num = server->in_flight; 875 spin_unlock(&server->req_lock); 876 return num; 877 } 878 879 static inline bool 880 has_credits(struct TCP_Server_Info *server, int *credits, int num_credits) 881 { 882 int num; 883 884 spin_lock(&server->req_lock); 885 num = *credits; 886 spin_unlock(&server->req_lock); 887 return num >= num_credits; 888 } 889 890 static inline void 891 add_credits(struct TCP_Server_Info *server, struct cifs_credits *credits, 892 const int optype) 893 { 894 server->ops->add_credits(server, credits, optype); 895 } 896 897 static inline void 898 add_credits_and_wake_if(struct TCP_Server_Info *server, 899 struct cifs_credits *credits, const int optype) 900 { 901 if (credits->value) { 902 server->ops->add_credits(server, credits, optype); 903 wake_up(&server->request_q); 904 credits->value = 0; 905 } 906 } 907 908 static inline void 909 set_credits(struct TCP_Server_Info *server, const int val) 910 { 911 server->ops->set_credits(server, val); 912 } 913 914 static inline int 915 adjust_credits(struct TCP_Server_Info *server, struct cifs_io_subrequest *subreq, 916 unsigned int /* enum smb3_rw_credits_trace */ trace) 917 { 918 return server->ops->adjust_credits ? 919 server->ops->adjust_credits(server, subreq, trace) : 0; 920 } 921 922 static inline __le64 923 get_next_mid64(struct TCP_Server_Info *server) 924 { 925 return cpu_to_le64(server->ops->get_next_mid(server)); 926 } 927 928 static inline __le16 929 get_next_mid(struct TCP_Server_Info *server) 930 { 931 __u16 mid = server->ops->get_next_mid(server); 932 /* 933 * The value in the SMB header should be little endian for easy 934 * on-the-wire decoding. 935 */ 936 return cpu_to_le16(mid); 937 } 938 939 static inline void 940 revert_current_mid(struct TCP_Server_Info *server, const unsigned int val) 941 { 942 if (server->ops->revert_current_mid) 943 server->ops->revert_current_mid(server, val); 944 } 945 946 static inline void 947 revert_current_mid_from_hdr(struct TCP_Server_Info *server, 948 const struct smb2_hdr *shdr) 949 { 950 unsigned int num = le16_to_cpu(shdr->CreditCharge); 951 952 return revert_current_mid(server, num > 0 ? num : 1); 953 } 954 955 /* 956 * When the server supports very large reads and writes via POSIX extensions, 957 * we can allow up to 2^24-1, minus the size of a READ/WRITE_AND_X header, not 958 * including the RFC1001 length. 959 * 960 * Note that this might make for "interesting" allocation problems during 961 * writeback however as we have to allocate an array of pointers for the 962 * pages. A 16M write means ~32kb page array with PAGE_SIZE == 4096. 963 * 964 * For reads, there is a similar problem as we need to allocate an array 965 * of kvecs to handle the receive, though that should only need to be done 966 * once. 967 */ 968 #define CIFS_MAX_WSIZE ((1<<24) - 1 - sizeof(WRITE_REQ)) 969 #define CIFS_MAX_RSIZE ((1<<24) - sizeof(READ_RSP)) 970 971 /* 972 * When the server doesn't allow large posix writes, only allow a rsize/wsize 973 * of 2^17-1 minus the size of the call header. That allows for a read or 974 * write up to the maximum size described by RFC1002. 975 */ 976 #define CIFS_MAX_RFC1002_WSIZE ((1<<17) - 1 - sizeof(WRITE_REQ)) 977 #define CIFS_MAX_RFC1002_RSIZE ((1<<17) - 1 - sizeof(READ_RSP)) 978 979 /* 980 * Windows only supports a max of 60kb reads and 65535 byte writes. Default to 981 * those values when posix extensions aren't in force. In actuality here, we 982 * use 65536 to allow for a write that is a multiple of 4k. Most servers seem 983 * to be ok with the extra byte even though Windows doesn't send writes that 984 * are that large. 985 * 986 * Citation: 987 * 988 * https://blogs.msdn.com/b/openspecification/archive/2009/04/10/smb-maximum-transmit-buffer-size-and-performance-tuning.aspx 989 */ 990 #define CIFS_DEFAULT_NON_POSIX_RSIZE (60 * 1024) 991 #define CIFS_DEFAULT_NON_POSIX_WSIZE (65536) 992 993 /* 994 * Macros to allow the TCP_Server_Info->net field and related code to drop out 995 * when CONFIG_NET_NS isn't set. 996 */ 997 998 #ifdef CONFIG_NET_NS 999 1000 static inline struct net *cifs_net_ns(struct TCP_Server_Info *srv) 1001 { 1002 return srv->net; 1003 } 1004 1005 static inline void cifs_set_net_ns(struct TCP_Server_Info *srv, struct net *net) 1006 { 1007 srv->net = net; 1008 } 1009 1010 #else 1011 1012 static inline struct net *cifs_net_ns(struct TCP_Server_Info *srv) 1013 { 1014 return &init_net; 1015 } 1016 1017 static inline void cifs_set_net_ns(struct TCP_Server_Info *srv, struct net *net) 1018 { 1019 } 1020 1021 #endif 1022 1023 struct cifs_server_iface { 1024 struct list_head iface_head; 1025 struct kref refcount; 1026 size_t speed; 1027 size_t weight_fulfilled; 1028 unsigned int num_channels; 1029 unsigned int rdma_capable : 1; 1030 unsigned int rss_capable : 1; 1031 unsigned int is_active : 1; /* unset if non existent */ 1032 struct sockaddr_storage sockaddr; 1033 }; 1034 1035 /* release iface when last ref is dropped */ 1036 static inline void 1037 release_iface(struct kref *ref) 1038 { 1039 struct cifs_server_iface *iface = container_of(ref, 1040 struct cifs_server_iface, 1041 refcount); 1042 kfree(iface); 1043 } 1044 1045 struct cifs_chan { 1046 unsigned int in_reconnect : 1; /* if session setup in progress for this channel */ 1047 struct TCP_Server_Info *server; 1048 struct cifs_server_iface *iface; /* interface in use */ 1049 __u8 signkey[SMB3_SIGN_KEY_SIZE]; 1050 }; 1051 1052 #define CIFS_SES_FLAG_SCALE_CHANNELS (0x1) 1053 #define CIFS_SES_FLAGS_PENDING_QUERY_INTERFACES (0x2) 1054 1055 /* 1056 * Session structure. One of these for each uid session with a particular host 1057 */ 1058 struct cifs_ses { 1059 struct list_head smb_ses_list; 1060 struct list_head rlist; /* reconnect list */ 1061 struct list_head tcon_list; 1062 struct list_head dlist; /* dfs list */ 1063 struct cifs_tcon *tcon_ipc; 1064 spinlock_t ses_lock; /* protect anything here that is not protected */ 1065 struct mutex session_mutex; 1066 struct TCP_Server_Info *server; /* pointer to server info */ 1067 int ses_count; /* reference counter */ 1068 enum ses_status_enum ses_status; /* updates protected by cifs_tcp_ses_lock */ 1069 unsigned int overrideSecFlg; /* if non-zero override global sec flags */ 1070 char *serverOS; /* name of operating system underlying server */ 1071 char *serverNOS; /* name of network operating system of server */ 1072 char *serverDomain; /* security realm of server */ 1073 __u64 Suid; /* remote smb uid */ 1074 kuid_t linux_uid; /* overriding owner of files on the mount */ 1075 kuid_t cred_uid; /* owner of credentials */ 1076 unsigned int capabilities; 1077 char ip_addr[INET6_ADDRSTRLEN + 1]; /* Max ipv6 (or v4) addr string len */ 1078 char *user_name; /* must not be null except during init of sess 1079 and after mount option parsing we fill it */ 1080 char *domainName; 1081 char *password; 1082 char *password2; /* When key rotation used, new password may be set before it expires */ 1083 char workstation_name[CIFS_MAX_WORKSTATION_LEN]; 1084 struct session_key auth_key; 1085 struct ntlmssp_auth *ntlmssp; /* ciphertext, flags, server challenge */ 1086 enum securityEnum sectype; /* what security flavor was specified? */ 1087 enum upcall_target_enum upcall_target; /* what upcall target was specified? */ 1088 bool sign; /* is signing required? */ 1089 bool domainAuto:1; 1090 bool expired_pwd; /* track if access denied or expired pwd so can know if need to update */ 1091 int unicode; 1092 unsigned int flags; 1093 __u16 session_flags; 1094 __u8 smb3signingkey[SMB3_SIGN_KEY_SIZE]; 1095 __u8 smb3encryptionkey[SMB3_ENC_DEC_KEY_SIZE]; 1096 __u8 smb3decryptionkey[SMB3_ENC_DEC_KEY_SIZE]; 1097 __u8 preauth_sha_hash[SMB2_PREAUTH_HASH_SIZE]; 1098 1099 /* 1100 * Network interfaces available on the server this session is 1101 * connected to. 1102 * 1103 * Other channels can be opened by connecting and binding this 1104 * session to interfaces from this list. 1105 * 1106 * iface_lock should be taken when accessing any of these fields 1107 */ 1108 spinlock_t iface_lock; 1109 /* ========= begin: protected by iface_lock ======== */ 1110 struct list_head iface_list; 1111 size_t iface_count; 1112 unsigned long iface_last_update; /* jiffies */ 1113 /* ========= end: protected by iface_lock ======== */ 1114 1115 spinlock_t chan_lock; 1116 /* ========= begin: protected by chan_lock ======== */ 1117 #define CIFS_MAX_CHANNELS 16 1118 #define CIFS_INVAL_CHAN_INDEX (-1) 1119 #define CIFS_ALL_CHANNELS_SET(ses) \ 1120 ((1UL << (ses)->chan_count) - 1) 1121 #define CIFS_ALL_CHANS_GOOD(ses) \ 1122 (!(ses)->chans_need_reconnect) 1123 #define CIFS_ALL_CHANS_NEED_RECONNECT(ses) \ 1124 ((ses)->chans_need_reconnect == CIFS_ALL_CHANNELS_SET(ses)) 1125 #define CIFS_SET_ALL_CHANS_NEED_RECONNECT(ses) \ 1126 ((ses)->chans_need_reconnect = CIFS_ALL_CHANNELS_SET(ses)) 1127 #define CIFS_CHAN_NEEDS_RECONNECT(ses, index) \ 1128 test_bit((index), &(ses)->chans_need_reconnect) 1129 #define CIFS_CHAN_IN_RECONNECT(ses, index) \ 1130 ((ses)->chans[(index)].in_reconnect) 1131 1132 struct cifs_chan chans[CIFS_MAX_CHANNELS]; 1133 size_t chan_count; 1134 size_t chan_max; 1135 atomic_t chan_seq; /* round robin state */ 1136 1137 /* 1138 * chans_need_reconnect is a bitmap indicating which of the channels 1139 * under this smb session needs to be reconnected. 1140 * If not multichannel session, only one bit will be used. 1141 * 1142 * We will ask for sess and tcon reconnection only if all the 1143 * channels are marked for needing reconnection. This will 1144 * enable the sessions on top to continue to live till any 1145 * of the channels below are active. 1146 */ 1147 unsigned long chans_need_reconnect; 1148 /* ========= end: protected by chan_lock ======== */ 1149 struct cifs_ses *dfs_root_ses; 1150 struct nls_table *local_nls; 1151 char *dns_dom; /* FQDN of the domain */ 1152 }; 1153 1154 static inline bool 1155 cap_unix(struct cifs_ses *ses) 1156 { 1157 return ses->server->vals->cap_unix & ses->capabilities; 1158 } 1159 1160 /* 1161 * common struct for holding inode info when searching for or updating an 1162 * inode with new info 1163 */ 1164 1165 #define CIFS_FATTR_JUNCTION 0x1 1166 #define CIFS_FATTR_DELETE_PENDING 0x2 1167 #define CIFS_FATTR_NEED_REVAL 0x4 1168 #define CIFS_FATTR_INO_COLLISION 0x8 1169 #define CIFS_FATTR_UNKNOWN_NLINK 0x10 1170 #define CIFS_FATTR_FAKE_ROOT_INO 0x20 1171 1172 struct cifs_fattr { 1173 u32 cf_flags; 1174 u32 cf_cifsattrs; 1175 u64 cf_uniqueid; 1176 u64 cf_eof; 1177 u64 cf_bytes; 1178 u64 cf_createtime; 1179 kuid_t cf_uid; 1180 kgid_t cf_gid; 1181 umode_t cf_mode; 1182 dev_t cf_rdev; 1183 unsigned int cf_nlink; 1184 unsigned int cf_dtype; 1185 struct timespec64 cf_atime; 1186 struct timespec64 cf_mtime; 1187 struct timespec64 cf_ctime; 1188 u32 cf_cifstag; 1189 char *cf_symlink_target; 1190 }; 1191 1192 /* 1193 * there is one of these for each connection to a resource on a particular 1194 * session 1195 */ 1196 struct cifs_tcon { 1197 struct list_head tcon_list; 1198 int debug_id; /* Debugging for tracing */ 1199 int tc_count; 1200 struct list_head rlist; /* reconnect list */ 1201 spinlock_t tc_lock; /* protect anything here that is not protected */ 1202 atomic_t num_local_opens; /* num of all opens including disconnected */ 1203 atomic_t num_remote_opens; /* num of all network opens on server */ 1204 struct list_head openFileList; 1205 spinlock_t open_file_lock; /* protects list above */ 1206 struct cifs_ses *ses; /* pointer to session associated with */ 1207 char tree_name[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */ 1208 char *nativeFileSystem; 1209 char *password; /* for share-level security */ 1210 __u32 tid; /* The 4 byte tree id */ 1211 __u16 Flags; /* optional support bits */ 1212 enum tid_status_enum status; 1213 atomic_t num_smbs_sent; 1214 union { 1215 struct { 1216 atomic_t num_writes; 1217 atomic_t num_reads; 1218 atomic_t num_flushes; 1219 atomic_t num_oplock_brks; 1220 atomic_t num_opens; 1221 atomic_t num_closes; 1222 atomic_t num_deletes; 1223 atomic_t num_mkdirs; 1224 atomic_t num_posixopens; 1225 atomic_t num_posixmkdirs; 1226 atomic_t num_rmdirs; 1227 atomic_t num_renames; 1228 atomic_t num_t2renames; 1229 atomic_t num_ffirst; 1230 atomic_t num_fnext; 1231 atomic_t num_fclose; 1232 atomic_t num_hardlinks; 1233 atomic_t num_symlinks; 1234 atomic_t num_locks; 1235 atomic_t num_acl_get; 1236 atomic_t num_acl_set; 1237 } cifs_stats; 1238 struct { 1239 atomic_t smb2_com_sent[NUMBER_OF_SMB2_COMMANDS]; 1240 atomic_t smb2_com_failed[NUMBER_OF_SMB2_COMMANDS]; 1241 } smb2_stats; 1242 } stats; 1243 __u64 bytes_read; 1244 __u64 bytes_written; 1245 spinlock_t stat_lock; /* protects the two fields above */ 1246 time64_t stats_from_time; 1247 FILE_SYSTEM_DEVICE_INFO fsDevInfo; 1248 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if fs name truncated */ 1249 FILE_SYSTEM_UNIX_INFO fsUnixInfo; 1250 bool ipc:1; /* set if connection to IPC$ share (always also pipe) */ 1251 bool pipe:1; /* set if connection to pipe share */ 1252 bool print:1; /* set if connection to printer share */ 1253 bool retry:1; 1254 bool nocase:1; 1255 bool nohandlecache:1; /* if strange server resource prob can turn off */ 1256 bool nodelete:1; 1257 bool seal:1; /* transport encryption for this mounted share */ 1258 bool unix_ext:1; /* if false disable Linux extensions to CIFS protocol 1259 for this mount even if server would support */ 1260 bool posix_extensions; /* if true SMB3.11 posix extensions enabled */ 1261 bool local_lease:1; /* check leases (only) on local system not remote */ 1262 bool broken_posix_open; /* e.g. Samba server versions < 3.3.2, 3.2.9 */ 1263 bool broken_sparse_sup; /* if server or share does not support sparse */ 1264 bool need_reconnect:1; /* connection reset, tid now invalid */ 1265 bool need_reopen_files:1; /* need to reopen tcon file handles */ 1266 bool use_resilient:1; /* use resilient instead of durable handles */ 1267 bool use_persistent:1; /* use persistent instead of durable handles */ 1268 bool no_lease:1; /* Do not request leases on files or directories */ 1269 bool use_witness:1; /* use witness protocol */ 1270 bool dummy:1; /* dummy tcon used for reconnecting channels */ 1271 __le32 capabilities; 1272 __u32 share_flags; 1273 __u32 maximal_access; 1274 __u32 vol_serial_number; 1275 __le64 vol_create_time; 1276 __u64 snapshot_time; /* for timewarp tokens - timestamp of snapshot */ 1277 __u32 handle_timeout; /* persistent and durable handle timeout in ms */ 1278 __u32 ss_flags; /* sector size flags */ 1279 __u32 perf_sector_size; /* best sector size for perf */ 1280 __u32 max_chunks; 1281 __u32 max_bytes_chunk; 1282 __u32 max_bytes_copy; 1283 __u32 max_cached_dirs; 1284 #ifdef CONFIG_CIFS_FSCACHE 1285 u64 resource_id; /* server resource id */ 1286 bool fscache_acquired; /* T if we've tried acquiring a cookie */ 1287 struct fscache_volume *fscache; /* cookie for share */ 1288 struct mutex fscache_lock; /* Prevent regetting a cookie */ 1289 #endif 1290 struct list_head pending_opens; /* list of incomplete opens */ 1291 struct cached_fids *cfids; 1292 struct list_head cifs_sb_list; 1293 spinlock_t sb_list_lock; 1294 #ifdef CONFIG_CIFS_DFS_UPCALL 1295 struct delayed_work dfs_cache_work; 1296 struct list_head dfs_ses_list; 1297 #endif 1298 struct delayed_work query_interfaces; /* query interfaces workqueue job */ 1299 char *origin_fullpath; /* canonical copy of smb3_fs_context::source */ 1300 }; 1301 1302 /* 1303 * This is a refcounted and timestamped container for a tcon pointer. The 1304 * container holds a tcon reference. It is considered safe to free one of 1305 * these when the tl_count goes to 0. The tl_time is the time of the last 1306 * "get" on the container. 1307 */ 1308 struct tcon_link { 1309 struct rb_node tl_rbnode; 1310 kuid_t tl_uid; 1311 unsigned long tl_flags; 1312 #define TCON_LINK_MASTER 0 1313 #define TCON_LINK_PENDING 1 1314 #define TCON_LINK_IN_TREE 2 1315 unsigned long tl_time; 1316 atomic_t tl_count; 1317 struct cifs_tcon *tl_tcon; 1318 }; 1319 1320 struct tcon_link *cifs_sb_tlink(struct cifs_sb_info *cifs_sb); 1321 void smb3_free_compound_rqst(int num_rqst, struct smb_rqst *rqst); 1322 1323 static inline struct cifs_tcon * 1324 tlink_tcon(struct tcon_link *tlink) 1325 { 1326 return tlink->tl_tcon; 1327 } 1328 1329 static inline struct tcon_link * 1330 cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb) 1331 { 1332 return cifs_sb->master_tlink; 1333 } 1334 1335 void cifs_put_tlink(struct tcon_link *tlink); 1336 1337 static inline struct tcon_link * 1338 cifs_get_tlink(struct tcon_link *tlink) 1339 { 1340 if (tlink && !IS_ERR(tlink)) 1341 atomic_inc(&tlink->tl_count); 1342 return tlink; 1343 } 1344 1345 /* This function is always expected to succeed */ 1346 struct cifs_tcon *cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb); 1347 1348 #define CIFS_OPLOCK_NO_CHANGE 0xfe 1349 1350 struct cifs_pending_open { 1351 struct list_head olist; 1352 struct tcon_link *tlink; 1353 __u8 lease_key[16]; 1354 __u32 oplock; 1355 }; 1356 1357 struct cifs_deferred_close { 1358 struct list_head dlist; 1359 struct tcon_link *tlink; 1360 __u16 netfid; 1361 __u64 persistent_fid; 1362 __u64 volatile_fid; 1363 }; 1364 1365 /* 1366 * This info hangs off the cifsFileInfo structure, pointed to by llist. 1367 * This is used to track byte stream locks on the file 1368 */ 1369 struct cifsLockInfo { 1370 struct list_head llist; /* pointer to next cifsLockInfo */ 1371 struct list_head blist; /* pointer to locks blocked on this */ 1372 wait_queue_head_t block_q; 1373 __u64 offset; 1374 __u64 length; 1375 __u32 pid; 1376 __u16 type; 1377 __u16 flags; 1378 }; 1379 1380 /* 1381 * One of these for each open instance of a file 1382 */ 1383 struct cifs_search_info { 1384 loff_t index_of_last_entry; 1385 __u16 entries_in_buffer; 1386 __u16 info_level; 1387 __u32 resume_key; 1388 char *ntwrk_buf_start; 1389 char *srch_entries_start; 1390 char *last_entry; 1391 const char *presume_name; 1392 unsigned int resume_name_len; 1393 bool endOfSearch:1; 1394 bool emptyDir:1; 1395 bool unicode:1; 1396 bool smallBuf:1; /* so we know which buf_release function to call */ 1397 }; 1398 1399 #define ACL_NO_MODE ((umode_t)(-1)) 1400 struct cifs_open_parms { 1401 struct cifs_tcon *tcon; 1402 struct cifs_sb_info *cifs_sb; 1403 int disposition; 1404 int desired_access; 1405 int create_options; 1406 const char *path; 1407 struct cifs_fid *fid; 1408 umode_t mode; 1409 bool reconnect:1; 1410 bool replay:1; /* indicates that this open is for a replay */ 1411 struct kvec *ea_cctx; 1412 __le32 lease_flags; 1413 }; 1414 1415 struct cifs_fid { 1416 __u16 netfid; 1417 __u64 persistent_fid; /* persist file id for smb2 */ 1418 __u64 volatile_fid; /* volatile file id for smb2 */ 1419 __u8 lease_key[SMB2_LEASE_KEY_SIZE]; /* lease key for smb2 */ 1420 __u8 parent_lease_key[SMB2_LEASE_KEY_SIZE]; 1421 __u8 create_guid[16]; 1422 __u32 access; 1423 struct cifs_pending_open *pending_open; 1424 __u16 epoch; 1425 #ifdef CONFIG_CIFS_DEBUG2 1426 __u64 mid; 1427 #endif /* CIFS_DEBUG2 */ 1428 bool purge_cache; 1429 }; 1430 1431 struct cifs_fid_locks { 1432 struct list_head llist; 1433 struct cifsFileInfo *cfile; /* fid that owns locks */ 1434 struct list_head locks; /* locks held by fid above */ 1435 }; 1436 1437 struct cifsFileInfo { 1438 /* following two lists are protected by tcon->open_file_lock */ 1439 struct list_head tlist; /* pointer to next fid owned by tcon */ 1440 struct list_head flist; /* next fid (file instance) for this inode */ 1441 /* lock list below protected by cifsi->lock_sem */ 1442 struct cifs_fid_locks *llist; /* brlocks held by this fid */ 1443 kuid_t uid; /* allows finding which FileInfo structure */ 1444 __u32 pid; /* process id who opened file */ 1445 struct cifs_fid fid; /* file id from remote */ 1446 struct list_head rlist; /* reconnect list */ 1447 /* BB add lock scope info here if needed */ 1448 /* lock scope id (0 if none) */ 1449 struct dentry *dentry; 1450 struct tcon_link *tlink; 1451 unsigned int f_flags; 1452 bool invalidHandle:1; /* file closed via session abend */ 1453 bool swapfile:1; 1454 bool oplock_break_cancelled:1; 1455 bool status_file_deleted:1; /* file has been deleted */ 1456 bool offload:1; /* offload final part of _put to a wq */ 1457 __u16 oplock_epoch; /* epoch from the lease break */ 1458 __u32 oplock_level; /* oplock/lease level from the lease break */ 1459 int count; 1460 spinlock_t file_info_lock; /* protects four flag/count fields above */ 1461 struct mutex fh_mutex; /* prevents reopen race after dead ses*/ 1462 struct cifs_search_info srch_inf; 1463 struct work_struct oplock_break; /* work for oplock breaks */ 1464 struct work_struct put; /* work for the final part of _put */ 1465 struct work_struct serverclose; /* work for serverclose */ 1466 struct delayed_work deferred; 1467 bool deferred_close_scheduled; /* Flag to indicate close is scheduled */ 1468 char *symlink_target; 1469 }; 1470 1471 struct cifs_io_parms { 1472 __u16 netfid; 1473 __u64 persistent_fid; /* persist file id for smb2 */ 1474 __u64 volatile_fid; /* volatile file id for smb2 */ 1475 __u32 pid; 1476 __u64 offset; 1477 unsigned int length; 1478 struct cifs_tcon *tcon; 1479 struct TCP_Server_Info *server; 1480 }; 1481 1482 struct cifs_io_request { 1483 struct netfs_io_request rreq; 1484 struct cifsFileInfo *cfile; 1485 pid_t pid; 1486 }; 1487 1488 /* asynchronous read support */ 1489 struct cifs_io_subrequest { 1490 union { 1491 struct netfs_io_subrequest subreq; 1492 struct netfs_io_request *rreq; 1493 struct cifs_io_request *req; 1494 }; 1495 ssize_t got_bytes; 1496 unsigned int xid; 1497 int result; 1498 bool have_xid; 1499 bool replay; 1500 unsigned int retries; /* number of retries so far */ 1501 unsigned int cur_sleep; /* time to sleep before replay */ 1502 struct kvec iov[2]; 1503 struct TCP_Server_Info *server; 1504 #ifdef CONFIG_CIFS_SMB_DIRECT 1505 struct smbdirect_mr_io *mr; 1506 #endif 1507 struct cifs_credits credits; 1508 }; 1509 1510 /* 1511 * Take a reference on the file private data. Must be called with 1512 * cfile->file_info_lock held. 1513 */ 1514 static inline void 1515 cifsFileInfo_get_locked(struct cifsFileInfo *cifs_file) 1516 { 1517 ++cifs_file->count; 1518 } 1519 1520 struct cifsFileInfo *cifsFileInfo_get(struct cifsFileInfo *cifs_file); 1521 void _cifsFileInfo_put(struct cifsFileInfo *cifs_file, 1522 bool wait_oplock_handler, bool offload); 1523 void cifsFileInfo_put(struct cifsFileInfo *cifs_file); 1524 int cifs_file_flush(const unsigned int xid, struct inode *inode, 1525 struct cifsFileInfo *cfile); 1526 int cifs_file_set_size(const unsigned int xid, struct dentry *dentry, 1527 const char *full_path, struct cifsFileInfo *open_file, 1528 loff_t size); 1529 1530 #define CIFS_CACHE_READ_FLG 1 1531 #define CIFS_CACHE_HANDLE_FLG 2 1532 #define CIFS_CACHE_RH_FLG (CIFS_CACHE_READ_FLG | CIFS_CACHE_HANDLE_FLG) 1533 #define CIFS_CACHE_WRITE_FLG 4 1534 #define CIFS_CACHE_RW_FLG (CIFS_CACHE_READ_FLG | CIFS_CACHE_WRITE_FLG) 1535 #define CIFS_CACHE_RHW_FLG (CIFS_CACHE_RW_FLG | CIFS_CACHE_HANDLE_FLG) 1536 1537 /* 1538 * One of these for each file inode 1539 */ 1540 1541 struct cifsInodeInfo { 1542 struct netfs_inode netfs; /* Netfslib context and vfs inode */ 1543 bool can_cache_brlcks; 1544 struct list_head llist; /* locks helb by this inode */ 1545 /* 1546 * NOTE: Some code paths call down_read(lock_sem) twice, so 1547 * we must always use cifs_down_write() instead of down_write() 1548 * for this semaphore to avoid deadlocks. 1549 */ 1550 struct rw_semaphore lock_sem; /* protect the fields above */ 1551 /* BB add in lists for dirty pages i.e. write caching info for oplock */ 1552 struct list_head openFileList; 1553 spinlock_t open_file_lock; /* protects openFileList */ 1554 __u32 cifsAttrs; /* e.g. DOS archive bit, sparse, compressed, system */ 1555 unsigned int oplock; /* oplock/lease level we have */ 1556 __u16 epoch; /* used to track lease state changes */ 1557 #define CIFS_INODE_PENDING_OPLOCK_BREAK (0) /* oplock break in progress */ 1558 #define CIFS_INODE_PENDING_WRITERS (1) /* Writes in progress */ 1559 #define CIFS_INODE_FLAG_UNUSED (2) /* Unused flag */ 1560 #define CIFS_INO_DELETE_PENDING (3) /* delete pending on server */ 1561 #define CIFS_INO_INVALID_MAPPING (4) /* pagecache is invalid */ 1562 #define CIFS_INO_LOCK (5) /* lock bit for synchronization */ 1563 #define CIFS_INO_CLOSE_ON_LOCK (7) /* Not to defer the close when lock is set */ 1564 unsigned long flags; 1565 spinlock_t writers_lock; 1566 unsigned int writers; /* Number of writers on this inode */ 1567 unsigned long time; /* jiffies of last update of inode */ 1568 u64 uniqueid; /* server inode number */ 1569 u64 createtime; /* creation time on server */ 1570 __u8 lease_key[SMB2_LEASE_KEY_SIZE]; /* lease key for this inode */ 1571 struct list_head deferred_closes; /* list of deferred closes */ 1572 spinlock_t deferred_lock; /* protection on deferred list */ 1573 bool lease_granted; /* Flag to indicate whether lease or oplock is granted. */ 1574 char *symlink_target; 1575 __u32 reparse_tag; 1576 }; 1577 1578 static inline struct cifsInodeInfo * 1579 CIFS_I(struct inode *inode) 1580 { 1581 return container_of(inode, struct cifsInodeInfo, netfs.inode); 1582 } 1583 1584 static inline void *cinode_to_fsinfo(struct cifsInodeInfo *cinode) 1585 { 1586 return cinode->netfs.inode.i_sb->s_fs_info; 1587 } 1588 1589 static inline void *super_to_fsinfo(struct super_block *sb) 1590 { 1591 return sb->s_fs_info; 1592 } 1593 1594 static inline void *inode_to_fsinfo(struct inode *inode) 1595 { 1596 return inode->i_sb->s_fs_info; 1597 } 1598 1599 static inline void *file_to_fsinfo(struct file *file) 1600 { 1601 return file_inode(file)->i_sb->s_fs_info; 1602 } 1603 1604 static inline void *dentry_to_fsinfo(struct dentry *dentry) 1605 { 1606 return dentry->d_sb->s_fs_info; 1607 } 1608 1609 static inline void *const_dentry_to_fsinfo(const struct dentry *dentry) 1610 { 1611 return dentry->d_sb->s_fs_info; 1612 } 1613 1614 #define CIFS_SB(_ptr) \ 1615 ((struct cifs_sb_info *) \ 1616 _Generic((_ptr), \ 1617 struct cifsInodeInfo * : cinode_to_fsinfo, \ 1618 const struct dentry * : const_dentry_to_fsinfo, \ 1619 struct super_block * : super_to_fsinfo, \ 1620 struct dentry * : dentry_to_fsinfo, \ 1621 struct inode * : inode_to_fsinfo, \ 1622 struct file * : file_to_fsinfo)(_ptr)) 1623 1624 /* 1625 * Use atomic_t for @cifs_sb->mnt_cifs_flags as it is currently accessed 1626 * locklessly and may be changed concurrently by mount/remount and reconnect 1627 * paths. 1628 */ 1629 static inline unsigned int cifs_sb_flags(const struct cifs_sb_info *cifs_sb) 1630 { 1631 return atomic_read(&cifs_sb->mnt_cifs_flags); 1632 } 1633 1634 static inline char CIFS_DIR_SEP(const struct cifs_sb_info *cifs_sb) 1635 { 1636 return (cifs_sb_flags(cifs_sb) & CIFS_MOUNT_POSIX_PATHS) ? '/' : '\\'; 1637 } 1638 1639 static inline void 1640 convert_delimiter(char *path, char delim) 1641 { 1642 char old_delim, *pos; 1643 1644 if (delim == '/') 1645 old_delim = '\\'; 1646 else 1647 old_delim = '/'; 1648 1649 pos = path; 1650 while ((pos = strchr(pos, old_delim))) 1651 *pos = delim; 1652 } 1653 1654 #define cifs_stats_inc atomic_inc 1655 1656 static inline void cifs_stats_bytes_written(struct cifs_tcon *tcon, 1657 unsigned int bytes) 1658 { 1659 if (bytes) { 1660 spin_lock(&tcon->stat_lock); 1661 tcon->bytes_written += bytes; 1662 spin_unlock(&tcon->stat_lock); 1663 } 1664 } 1665 1666 static inline void cifs_stats_bytes_read(struct cifs_tcon *tcon, 1667 unsigned int bytes) 1668 { 1669 spin_lock(&tcon->stat_lock); 1670 tcon->bytes_read += bytes; 1671 spin_unlock(&tcon->stat_lock); 1672 } 1673 1674 1675 /* 1676 * This is the prototype for the mid receive function. This function is for 1677 * receiving the rest of the SMB frame, starting with the WordCount (which is 1678 * just after the MID in struct smb_hdr). Note: 1679 * 1680 * - This will be called by cifsd, with no locks held. 1681 * - The mid will still be on the pending_mid_q. 1682 * - mid->resp_buf will point to the current buffer. 1683 * 1684 * Returns zero on a successful receive, or an error. The receive state in 1685 * the TCP_Server_Info will also be updated. 1686 */ 1687 typedef int (*mid_receive_t)(struct TCP_Server_Info *server, 1688 struct mid_q_entry *mid); 1689 1690 /* 1691 * This is the prototype for the mid callback function. This is called once the 1692 * mid has been received off of the socket. When creating one, take special 1693 * care to avoid deadlocks. Things to bear in mind: 1694 * 1695 * - it will be called by cifsd, with no locks held 1696 * - the mid will be removed from any lists 1697 */ 1698 typedef void (*mid_callback_t)(struct TCP_Server_Info *srv, struct mid_q_entry *mid); 1699 1700 /* 1701 * This is the protopyte for mid handle function. This is called once the mid 1702 * has been recognized after decryption of the message. 1703 */ 1704 typedef int (*mid_handle_t)(struct TCP_Server_Info *server, 1705 struct mid_q_entry *mid); 1706 1707 /* one of these for every pending CIFS request to the server */ 1708 struct mid_q_entry { 1709 struct list_head qhead; /* mids waiting on reply from this server */ 1710 refcount_t refcount; 1711 __u64 mid; /* multiplex id */ 1712 __u16 credits; /* number of credits consumed by this mid */ 1713 __u16 credits_received; /* number of credits from the response */ 1714 __u32 pid; /* process id */ 1715 __u32 sequence_number; /* for CIFS signing */ 1716 unsigned int sr_flags; /* Flags passed to send_recv() */ 1717 unsigned long when_alloc; /* when mid was created */ 1718 #ifdef CONFIG_CIFS_STATS2 1719 unsigned long when_sent; /* time when smb send finished */ 1720 unsigned long when_received; /* when demux complete (taken off wire) */ 1721 #endif 1722 mid_receive_t receive; /* call receive callback */ 1723 mid_callback_t callback; /* call completion callback */ 1724 mid_handle_t handle; /* call handle mid callback */ 1725 void *callback_data; /* general purpose pointer for callback */ 1726 struct task_struct *creator; 1727 void *resp_buf; /* pointer to received SMB header */ 1728 unsigned int resp_buf_size; 1729 u32 response_pdu_len; 1730 int mid_state; /* wish this were enum but can not pass to wait_event */ 1731 int mid_rc; /* rc for MID_RC */ 1732 __le16 command; /* smb command code */ 1733 unsigned int optype; /* operation type */ 1734 spinlock_t mid_lock; 1735 bool wait_cancelled:1; /* Cancelled while waiting for response */ 1736 bool deleted_from_q:1; /* Whether Mid has been dequeued frem pending_mid_q */ 1737 bool large_buf:1; /* if valid response, is pointer to large buf */ 1738 bool multiRsp:1; /* multiple trans2 responses for one request */ 1739 bool multiEnd:1; /* both received */ 1740 bool decrypted:1; /* decrypted entry */ 1741 }; 1742 1743 struct close_cancelled_open { 1744 struct cifs_fid fid; 1745 struct cifs_tcon *tcon; 1746 struct work_struct work; 1747 __u64 mid; 1748 __u16 cmd; 1749 }; 1750 1751 /* Make code in transport.c a little cleaner by moving 1752 update of optional stats into function below */ 1753 static inline void cifs_in_send_inc(struct TCP_Server_Info *server) 1754 { 1755 atomic_inc(&server->in_send); 1756 } 1757 1758 static inline void cifs_in_send_dec(struct TCP_Server_Info *server) 1759 { 1760 atomic_dec(&server->in_send); 1761 } 1762 1763 static inline void cifs_num_waiters_inc(struct TCP_Server_Info *server) 1764 { 1765 atomic_inc(&server->num_waiters); 1766 } 1767 1768 static inline void cifs_num_waiters_dec(struct TCP_Server_Info *server) 1769 { 1770 atomic_dec(&server->num_waiters); 1771 } 1772 1773 #ifdef CONFIG_CIFS_STATS2 1774 static inline void cifs_save_when_sent(struct mid_q_entry *mid) 1775 { 1776 mid->when_sent = jiffies; 1777 } 1778 #else 1779 static inline void cifs_save_when_sent(struct mid_q_entry *mid) 1780 { 1781 } 1782 #endif 1783 1784 /* for pending dnotify requests */ 1785 struct dir_notify_req { 1786 struct list_head lhead; 1787 __le16 Pid; 1788 __le16 PidHigh; 1789 __u16 Mid; 1790 __u16 Tid; 1791 __u16 Uid; 1792 __u16 netfid; 1793 __u32 filter; /* CompletionFilter (for multishot) */ 1794 int multishot; 1795 struct file *pfile; 1796 }; 1797 1798 struct dfs_info3_param { 1799 int flags; /* DFSREF_REFERRAL_SERVER, DFSREF_STORAGE_SERVER*/ 1800 int path_consumed; 1801 int server_type; 1802 int ref_flag; 1803 char *path_name; 1804 char *node_name; 1805 int ttl; 1806 }; 1807 1808 struct file_list { 1809 struct list_head list; 1810 struct cifsFileInfo *cfile; 1811 }; 1812 1813 struct cifs_mount_ctx { 1814 struct cifs_sb_info *cifs_sb; 1815 struct smb3_fs_context *fs_ctx; 1816 unsigned int xid; 1817 struct TCP_Server_Info *server; 1818 struct cifs_ses *ses; 1819 struct cifs_tcon *tcon; 1820 }; 1821 1822 struct mchan_mount { 1823 struct work_struct work; 1824 struct cifs_ses *ses; 1825 }; 1826 1827 static inline void __free_dfs_info_param(struct dfs_info3_param *param) 1828 { 1829 kfree(param->path_name); 1830 kfree(param->node_name); 1831 } 1832 1833 static inline void free_dfs_info_param(struct dfs_info3_param *param) 1834 { 1835 if (param) 1836 __free_dfs_info_param(param); 1837 } 1838 1839 static inline void zfree_dfs_info_param(struct dfs_info3_param *param) 1840 { 1841 if (param) { 1842 __free_dfs_info_param(param); 1843 memset(param, 0, sizeof(*param)); 1844 } 1845 } 1846 1847 static inline void free_dfs_info_array(struct dfs_info3_param *param, 1848 int number_of_items) 1849 { 1850 int i; 1851 1852 if ((number_of_items == 0) || (param == NULL)) 1853 return; 1854 for (i = 0; i < number_of_items; i++) { 1855 kfree(param[i].path_name); 1856 kfree(param[i].node_name); 1857 } 1858 kfree(param); 1859 } 1860 1861 static inline bool is_interrupt_error(int error) 1862 { 1863 switch (error) { 1864 case -EINTR: 1865 case -ERESTARTSYS: 1866 case -ERESTARTNOHAND: 1867 case -ERESTARTNOINTR: 1868 return true; 1869 } 1870 return false; 1871 } 1872 1873 static inline bool is_retryable_error(int error) 1874 { 1875 if (is_interrupt_error(error) || error == -EAGAIN) 1876 return true; 1877 return false; 1878 } 1879 1880 static inline bool is_replayable_error(int error) 1881 { 1882 if (error == -EAGAIN || error == -ECONNABORTED) 1883 return true; 1884 return false; 1885 } 1886 1887 1888 enum cifs_find_flags { 1889 FIND_ANY = 0U, 1890 FIND_FSUID_ONLY = (1U << 0), 1891 FIND_WITH_DELETE = (1U << 1), 1892 FIND_NO_PENDING_DELETE = (1U << 2), 1893 FIND_OPEN_FLAGS = (1U << 3), 1894 }; 1895 1896 #define MID_FREE 0 1897 #define MID_REQUEST_ALLOCATED 1 1898 #define MID_REQUEST_SUBMITTED 2 1899 #define MID_RESPONSE_RECEIVED 4 1900 #define MID_RETRY_NEEDED 8 /* session closed while this request out */ 1901 #define MID_RESPONSE_MALFORMED 0x10 1902 #define MID_SHUTDOWN 0x20 1903 #define MID_RESPONSE_READY 0x40 /* ready for other process handle the rsp */ 1904 #define MID_RC 0x80 /* mid_rc contains custom rc */ 1905 1906 /* Types of response buffer returned from SendReceive2 */ 1907 #define CIFS_NO_BUFFER 0 /* Response buffer not returned */ 1908 #define CIFS_SMALL_BUFFER 1 1909 #define CIFS_LARGE_BUFFER 2 1910 #define CIFS_IOVEC 4 /* array of response buffers */ 1911 1912 /* Type of Request to SendReceive2 */ 1913 #define CIFS_BLOCKING_OP 1 /* operation can block */ 1914 #define CIFS_NON_BLOCKING 2 /* do not block waiting for credits */ 1915 #define CIFS_TIMEOUT_MASK 0x003 /* only one of above set in req */ 1916 #define CIFS_LOG_ERROR 0x010 /* log NT STATUS if non-zero */ 1917 #define CIFS_LARGE_BUF_OP 0x020 /* large request buffer */ 1918 #define CIFS_NO_RSP_BUF 0x040 /* no response buffer required */ 1919 1920 /* Type of request operation */ 1921 #define CIFS_ECHO_OP 0x080 /* echo request */ 1922 #define CIFS_OBREAK_OP 0x0100 /* oplock break request */ 1923 #define CIFS_NEG_OP 0x0200 /* negotiate request */ 1924 #define CIFS_CP_CREATE_CLOSE_OP 0x0400 /* compound create+close request */ 1925 /* Lower bitmask values are reserved by others below. */ 1926 #define CIFS_SESS_OP 0x2000 /* session setup request */ 1927 #define CIFS_OP_MASK 0x2780 /* mask request type */ 1928 1929 #define CIFS_HAS_CREDITS 0x0400 /* already has credits */ 1930 #define CIFS_TRANSFORM_REQ 0x0800 /* transform request before sending */ 1931 #define CIFS_NO_SRV_RSP 0x1000 /* there is no server response */ 1932 #define CIFS_COMPRESS_REQ 0x4000 /* compress request before sending */ 1933 #define CIFS_INTERRUPTIBLE_WAIT 0x8000 /* Interruptible wait (e.g. lock request) */ 1934 #define CIFS_WINDOWS_LOCK 0x10000 /* We're trying to get a Windows lock */ 1935 1936 /* Security Flags: indicate type of session setup needed */ 1937 #define CIFSSEC_MAY_SIGN 0x00001 1938 #define CIFSSEC_MAY_NTLMV2 0x00004 1939 #define CIFSSEC_MAY_KRB5 0x00008 1940 #define CIFSSEC_MAY_SEAL 0x00040 1941 #define CIFSSEC_MAY_NTLMSSP 0x00080 /* raw ntlmssp with ntlmv2 */ 1942 1943 #define CIFSSEC_MUST_SIGN 0x01001 1944 /* note that only one of the following can be set so the 1945 result of setting MUST flags more than once will be to 1946 require use of the stronger protocol */ 1947 #define CIFSSEC_MUST_NTLMV2 0x04004 1948 #define CIFSSEC_MUST_KRB5 0x08008 1949 #ifdef CONFIG_CIFS_UPCALL 1950 #define CIFSSEC_MASK 0xCF0CF /* flags supported if no weak allowed */ 1951 #else 1952 #define CIFSSEC_MASK 0xC70C7 /* flags supported if no weak allowed */ 1953 #endif /* UPCALL */ 1954 #define CIFSSEC_MUST_SEAL 0x40040 1955 #define CIFSSEC_MUST_NTLMSSP 0x80080 /* raw ntlmssp with ntlmv2 */ 1956 1957 #define CIFSSEC_DEF (CIFSSEC_MAY_SIGN | CIFSSEC_MAY_NTLMV2 | CIFSSEC_MAY_NTLMSSP | CIFSSEC_MAY_SEAL) 1958 #define CIFSSEC_MAX (CIFSSEC_MAY_SIGN | CIFSSEC_MUST_KRB5 | CIFSSEC_MAY_SEAL) 1959 #define CIFSSEC_AUTH_MASK (CIFSSEC_MAY_NTLMV2 | CIFSSEC_MAY_KRB5 | CIFSSEC_MAY_NTLMSSP) 1960 /* 1961 ***************************************************************** 1962 * All constants go here 1963 ***************************************************************** 1964 */ 1965 1966 #define UID_HASH (16) 1967 1968 /* 1969 * Note that ONE module should define _DECLARE_GLOBALS_HERE to cause the 1970 * following to be declared. 1971 */ 1972 1973 /**************************************************************************** 1974 * LOCK ORDERING NOTES: 1975 **************************************************************************** 1976 * Here are all the locks (spinlock, mutex, semaphore) in cifs.ko, arranged according 1977 * to the locking order. i.e. if two locks are to be held together, the lock that 1978 * appears higher in this list needs to be taken before the other. 1979 * 1980 * If you hold a lock that is lower in this list, and you need to take a higher lock 1981 * (or if you think that one of the functions that you're calling may need to), first 1982 * drop the lock you hold, pick up the higher lock, then the lower one. This will 1983 * ensure that locks are picked up only in one direction in the below table 1984 * (top to bottom). 1985 * 1986 * Also, if you expect a function to be called with a lock held, explicitly document 1987 * this in the comments on top of your function definition. 1988 * 1989 * And also, try to keep the critical sections (lock hold time) to be as minimal as 1990 * possible. Blocking / calling other functions with a lock held always increase 1991 * the risk of a possible deadlock. 1992 * 1993 * Following this rule will avoid unnecessary deadlocks, which can get really hard to 1994 * debug. Also, any new lock that you introduce, please add to this list in the correct 1995 * order. 1996 * 1997 * Please populate this list whenever you introduce new locks in your changes. Or in 1998 * case I've missed some existing locks. Please ensure that it's added in the list 1999 * based on the locking order expected. 2000 * 2001 * ===================================================================================== 2002 * Lock Protects Initialization fn 2003 * ===================================================================================== 2004 * cifs_mount_mutex mount/unmount operations 2005 * vol_list_lock 2006 * vol_info->ctx_lock vol_info->ctx 2007 * cifs_sb_info->tlink_tree_lock cifs_sb_info->tlink_tree cifs_setup_cifs_sb 2008 * TCP_Server_Info-> TCP_Server_Info cifs_get_tcp_session 2009 * reconnect_mutex 2010 * cifs_ses->session_mutex cifs_ses sesInfoAlloc 2011 * TCP_Server_Info->srv_mutex TCP_Server_Info cifs_get_tcp_session 2012 * cifs_tcp_ses_lock cifs_tcp_ses_list sesInfoAlloc 2013 * cifs_tcon->open_file_lock cifs_tcon->openFileList tconInfoAlloc 2014 * cifs_tcon->pending_opens 2015 * cifs_tcon->stat_lock cifs_tcon->bytes_read tconInfoAlloc 2016 * cifs_tcon->bytes_written 2017 * cifs_tcon->fscache_lock cifs_tcon->fscache tconInfoAlloc 2018 * cifs_tcon->sb_list_lock cifs_tcon->cifs_sb_list tconInfoAlloc 2019 * GlobalMid_Lock GlobalMaxActiveXid init_cifs 2020 * GlobalCurrentXid 2021 * GlobalTotalActiveXid 2022 * TCP_Server_Info->srv_lock (anything in struct not protected by another lock and can change) 2023 * TCP_Server_Info->mid_queue_lock TCP_Server_Info->pending_mid_q cifs_get_tcp_session 2024 * mid_q_entry->deleted_from_q 2025 * TCP_Server_Info->mid_counter_lock TCP_Server_Info->current_mid cifs_get_tcp_session 2026 * TCP_Server_Info->req_lock TCP_Server_Info->in_flight cifs_get_tcp_session 2027 * ->credits 2028 * ->echo_credits 2029 * ->oplock_credits 2030 * ->reconnect_instance 2031 * cifs_ses->ses_lock (anything that is not protected by another lock and can change) 2032 * sesInfoAlloc 2033 * cifs_ses->iface_lock cifs_ses->iface_list sesInfoAlloc 2034 * ->iface_count 2035 * ->iface_last_update 2036 * cifs_ses->chan_lock cifs_ses->chans sesInfoAlloc 2037 * ->chans_need_reconnect 2038 * ->chans_in_reconnect 2039 * cifs_tcon->tc_lock (anything that is not protected by another lock and can change) 2040 * tcon_info_alloc 2041 * cifs_swnreg_idr_mutex cifs_swnreg_idr cifs_swn.c 2042 * (witness service registration, accesses tcon fields under tc_lock) 2043 * inode->i_rwsem, taken by fs/netfs/locking.c e.g. should be taken before cifsInodeInfo locks 2044 * cifsInodeInfo->open_file_lock cifsInodeInfo->openFileList cifs_alloc_inode 2045 * cifsInodeInfo->writers_lock cifsInodeInfo->writers cifsInodeInfo_alloc 2046 * cifsInodeInfo->lock_sem cifsInodeInfo->llist cifs_init_once 2047 * ->can_cache_brlcks 2048 * cifsInodeInfo->deferred_lock cifsInodeInfo->deferred_closes cifsInodeInfo_alloc 2049 * cached_fids->cfid_list_lock cifs_tcon->cfids->entries init_cached_dirs 2050 * cached_fid->dirents.de_mutex cached_fid->dirents alloc_cached_dir 2051 * cifsFileInfo->fh_mutex cifsFileInfo cifs_new_fileinfo 2052 * cifsFileInfo->file_info_lock cifsFileInfo->count cifs_new_fileinfo 2053 * ->invalidHandle initiate_cifs_search 2054 * ->oplock_break_cancelled 2055 * smbdirect_mr->mutex RDMA memory region management (SMBDirect only) 2056 * mid_q_entry->mid_lock mid_q_entry->callback alloc_mid 2057 * smb2_mid_entry_alloc 2058 * (Any fields of mid_q_entry that will need protection) 2059 ****************************************************************************/ 2060 2061 #ifdef DECLARE_GLOBALS_HERE 2062 #define GLOBAL_EXTERN 2063 #else 2064 #define GLOBAL_EXTERN extern 2065 #endif 2066 2067 /* 2068 * the list of TCP_Server_Info structures, ie each of the sockets 2069 * connecting our client to a distinct server (ip address), is 2070 * chained together by cifs_tcp_ses_list. The list of all our SMB 2071 * sessions (and from that the tree connections) can be found 2072 * by iterating over cifs_tcp_ses_list 2073 */ 2074 extern struct list_head cifs_tcp_ses_list; 2075 2076 /* 2077 * This lock protects the cifs_tcp_ses_list, the list of smb sessions per 2078 * tcp session, and the list of tcon's per smb session. It also protects 2079 * the reference counters for the server, smb session, and tcon. 2080 * generally the locks should be taken in order tcp_ses_lock before 2081 * tcon->open_file_lock and that before file->file_info_lock since the 2082 * structure order is cifs_socket-->cifs_ses-->cifs_tcon-->cifs_file 2083 */ 2084 extern spinlock_t cifs_tcp_ses_lock; 2085 2086 /* 2087 * Global transaction id (XID) information 2088 */ 2089 extern unsigned int GlobalCurrentXid; /* protected by GlobalMid_Lock */ 2090 extern unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Lock */ 2091 extern unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Lock */ 2092 extern spinlock_t GlobalMid_Lock; /* protects above & list operations on midQ entries */ 2093 2094 /* 2095 * Global counters, updated atomically 2096 */ 2097 extern atomic_t sesInfoAllocCount; 2098 extern atomic_t tconInfoAllocCount; 2099 extern atomic_t tcpSesNextId; 2100 extern atomic_t tcpSesAllocCount; 2101 extern atomic_t tcpSesReconnectCount; 2102 extern atomic_t tconInfoReconnectCount; 2103 2104 /* Various Debug counters */ 2105 extern atomic_t buf_alloc_count; /* current number allocated */ 2106 extern atomic_t small_buf_alloc_count; 2107 #ifdef CONFIG_CIFS_STATS2 2108 extern atomic_t total_buf_alloc_count; /* total allocated over all time */ 2109 extern atomic_t total_small_buf_alloc_count; 2110 extern unsigned int slow_rsp_threshold; /* number of secs before logging */ 2111 #endif 2112 2113 /* Misc globals */ 2114 extern bool enable_oplocks; /* enable or disable oplocks */ 2115 extern bool lookupCacheEnabled; 2116 extern unsigned int global_secflags; /* if on, session setup sent 2117 with more secure ntlmssp2 challenge/resp */ 2118 extern unsigned int sign_CIFS_PDUs; /* enable smb packet signing */ 2119 extern bool enable_gcm_256; /* allow optional negotiate of strongest signing (aes-gcm-256) */ 2120 extern bool require_gcm_256; /* require use of strongest signing (aes-gcm-256) */ 2121 extern bool enable_negotiate_signing; /* request use of faster (GMAC) signing if available */ 2122 extern bool linuxExtEnabled;/*enable Linux/Unix CIFS extensions*/ 2123 extern unsigned int CIFSMaxBufSize; /* max size not including hdr */ 2124 extern unsigned int cifs_min_rcv; /* min size of big ntwrk buf pool */ 2125 extern unsigned int cifs_min_small; /* min size of small buf pool */ 2126 extern unsigned int cifs_max_pending; /* MAX requests at once to server*/ 2127 extern unsigned int dir_cache_timeout; /* max time for directory lease caching of dir */ 2128 extern bool disable_legacy_dialects; /* forbid vers=1.0 and vers=2.0 mounts */ 2129 extern atomic_t mid_count; 2130 2131 void cifs_oplock_break(struct work_struct *work); 2132 void cifs_queue_oplock_break(struct cifsFileInfo *cfile); 2133 void smb2_deferred_work_close(struct work_struct *work); 2134 2135 extern const struct slow_work_ops cifs_oplock_break_ops; 2136 extern struct workqueue_struct *cifsiod_wq; 2137 extern struct workqueue_struct *decrypt_wq; 2138 extern struct workqueue_struct *fileinfo_put_wq; 2139 extern struct workqueue_struct *cifsoplockd_wq; 2140 extern struct workqueue_struct *deferredclose_wq; 2141 extern struct workqueue_struct *serverclose_wq; 2142 extern struct workqueue_struct *cfid_put_wq; 2143 extern __u32 cifs_lock_secret; 2144 2145 extern mempool_t *cifs_sm_req_poolp; 2146 extern mempool_t *cifs_req_poolp; 2147 extern mempool_t cifs_mid_pool; 2148 extern mempool_t cifs_io_request_pool; 2149 extern mempool_t cifs_io_subrequest_pool; 2150 2151 /* Operations for different SMB versions */ 2152 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY 2153 extern struct smb_version_operations smb20_operations; 2154 extern struct smb_version_values smb20_values; 2155 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ 2156 extern struct smb_version_operations smb21_operations; 2157 extern struct smb_version_values smb21_values; 2158 extern struct smb_version_values smbdefault_values; 2159 extern struct smb_version_values smb3any_values; 2160 extern struct smb_version_operations smb30_operations; 2161 extern struct smb_version_values smb30_values; 2162 /*extern struct smb_version_operations smb302_operations;*/ /* not needed yet */ 2163 extern struct smb_version_values smb302_values; 2164 extern struct smb_version_operations smb311_operations; 2165 extern struct smb_version_values smb311_values; 2166 2167 static inline char *get_security_type_str(enum securityEnum sectype) 2168 { 2169 switch (sectype) { 2170 case RawNTLMSSP: 2171 return "RawNTLMSSP"; 2172 case Kerberos: 2173 return "Kerberos"; 2174 case NTLMv2: 2175 return "NTLMv2"; 2176 case IAKerb: 2177 return "IAKerb"; 2178 default: 2179 return "Unknown"; 2180 } 2181 } 2182 2183 static inline bool is_smb1_server(struct TCP_Server_Info *server) 2184 { 2185 return strcmp(server->vals->version_string, SMB1_VERSION_STRING) == 0; 2186 } 2187 2188 static inline bool is_tcon_dfs(struct cifs_tcon *tcon) 2189 { 2190 /* 2191 * For SMB1, see MS-CIFS 2.4.55 SMB_COM_TREE_CONNECT_ANDX (0x75) and MS-CIFS 3.3.4.4 DFS 2192 * Subsystem Notifies That a Share Is a DFS Share. 2193 * 2194 * For SMB2+, see MS-SMB2 2.2.10 SMB2 TREE_CONNECT Response and MS-SMB2 3.3.4.14 Server 2195 * Application Updates a Share. 2196 */ 2197 if (!tcon || !tcon->ses || !tcon->ses->server) 2198 return false; 2199 return is_smb1_server(tcon->ses->server) ? tcon->Flags & SMB_SHARE_IS_IN_DFS : 2200 tcon->share_flags & (SHI1005_FLAGS_DFS | SHI1005_FLAGS_DFS_ROOT); 2201 } 2202 2203 static inline bool cifs_is_referral_server(struct cifs_tcon *tcon, 2204 const struct dfs_info3_param *ref) 2205 { 2206 /* 2207 * Check if all targets are capable of handling DFS referrals as per 2208 * MS-DFSC 2.2.4 RESP_GET_DFS_REFERRAL. 2209 */ 2210 return is_tcon_dfs(tcon) || (ref && (ref->flags & DFSREF_REFERRAL_SERVER)); 2211 } 2212 2213 static inline u64 cifs_flock_len(const struct file_lock *fl) 2214 { 2215 return (u64)fl->fl_end - fl->fl_start + 1; 2216 } 2217 2218 static inline size_t ntlmssp_workstation_name_size(const struct cifs_ses *ses) 2219 { 2220 if (WARN_ON_ONCE(!ses || !ses->server)) 2221 return 0; 2222 /* 2223 * Make workstation name no more than 15 chars when using insecure dialects as some legacy 2224 * servers do require it during NTLMSSP. 2225 */ 2226 if (ses->server->dialect <= SMB20_PROT_ID) 2227 return min_t(size_t, sizeof(ses->workstation_name), RFC1001_NAME_LEN_WITH_NULL); 2228 return sizeof(ses->workstation_name); 2229 } 2230 2231 static inline void move_cifs_info_to_smb2(struct smb2_file_all_info *dst, const FILE_ALL_INFO *src) 2232 { 2233 memcpy(dst, src, (size_t)((u8 *)&src->EASize - (u8 *)src)); 2234 dst->IndexNumber = 0; 2235 dst->EASize = src->EASize; 2236 dst->AccessFlags = 0; 2237 dst->CurrentByteOffset = 0; 2238 dst->Mode = 0; 2239 dst->AlignmentRequirement = 0; 2240 dst->FileNameLength = src->FileNameLength; 2241 } 2242 2243 #define CIFS_OPARMS(_cifs_sb, _tcon, _path, _da, _cd, _co, _mode) \ 2244 ((struct cifs_open_parms) { \ 2245 .tcon = _tcon, \ 2246 .path = _path, \ 2247 .desired_access = (_da), \ 2248 .disposition = (_cd), \ 2249 .create_options = cifs_create_options(_cifs_sb, (_co)), \ 2250 .mode = (_mode), \ 2251 .cifs_sb = _cifs_sb, \ 2252 }) 2253 2254 struct smb2_compound_vars { 2255 struct cifs_open_parms oparms; 2256 struct kvec rsp_iov[MAX_COMPOUND]; 2257 struct smb_rqst rqst[MAX_COMPOUND]; 2258 struct kvec open_iov[SMB2_CREATE_IOV_SIZE]; 2259 struct kvec qi_iov; 2260 struct kvec io_iov[SMB2_IOCTL_IOV_SIZE]; 2261 struct kvec si_iov[SMB2_SET_INFO_IOV_SIZE]; 2262 struct kvec unlink_iov[SMB2_SET_INFO_IOV_SIZE]; 2263 struct kvec rename_iov[SMB2_SET_INFO_IOV_SIZE]; 2264 struct kvec close_iov; 2265 struct smb2_file_rename_info_hdr rename_info; 2266 struct smb2_file_link_info_hdr link_info; 2267 struct kvec ea_iov; 2268 }; 2269 2270 static inline bool cifs_ses_exiting(struct cifs_ses *ses) 2271 { 2272 bool ret; 2273 2274 spin_lock(&ses->ses_lock); 2275 ret = ses->ses_status == SES_EXITING; 2276 spin_unlock(&ses->ses_lock); 2277 return ret; 2278 } 2279 2280 static inline bool cifs_netbios_name(const char *name, size_t namelen) 2281 { 2282 bool ret = false; 2283 size_t i; 2284 2285 if (namelen >= 1 && namelen <= RFC1001_NAME_LEN) { 2286 for (i = 0; i < namelen; i++) { 2287 const unsigned char c = name[i]; 2288 2289 if (c == '\\' || c == '/' || c == ':' || c == '*' || 2290 c == '?' || c == '"' || c == '<' || c == '>' || 2291 c == '|' || c == '.') 2292 return false; 2293 if (!ret && isalpha(c)) 2294 ret = true; 2295 } 2296 } 2297 return ret; 2298 } 2299 2300 /* 2301 * Execute mid callback atomically - ensures callback runs exactly once 2302 * and prevents sleeping in atomic context. 2303 */ 2304 static inline void mid_execute_callback(struct TCP_Server_Info *server, 2305 struct mid_q_entry *mid) 2306 { 2307 mid_callback_t callback; 2308 2309 spin_lock(&mid->mid_lock); 2310 callback = mid->callback; 2311 mid->callback = NULL; /* Mark as executed, */ 2312 spin_unlock(&mid->mid_lock); 2313 2314 if (callback) 2315 callback(server, mid); 2316 } 2317 2318 #define CIFS_REPARSE_SUPPORT(tcon) \ 2319 ((tcon)->posix_extensions || \ 2320 (le32_to_cpu((tcon)->fsAttrInfo.Attributes) & \ 2321 FILE_SUPPORTS_REPARSE_POINTS)) 2322 2323 struct cifs_calc_sig_ctx { 2324 struct md5_ctx *md5; 2325 struct hmac_sha256_ctx *hmac; 2326 struct shash_desc *shash; 2327 }; 2328 2329 #define CIFS_RECONN_DELAY_SECS 30 2330 #define CIFS_MAX_RECONN_DELAY (4 * CIFS_RECONN_DELAY_SECS) 2331 2332 static inline void cifs_queue_server_reconn(struct TCP_Server_Info *server) 2333 { 2334 if (!delayed_work_pending(&server->reconnect)) { 2335 WRITE_ONCE(server->reconn_delay, 0); 2336 mod_delayed_work(cifsiod_wq, &server->reconnect, 0); 2337 } 2338 } 2339 2340 static inline void cifs_requeue_server_reconn(struct TCP_Server_Info *server) 2341 { 2342 unsigned long delay = READ_ONCE(server->reconn_delay); 2343 2344 delay = umin(delay + CIFS_RECONN_DELAY_SECS, CIFS_MAX_RECONN_DELAY); 2345 WRITE_ONCE(server->reconn_delay, delay); 2346 queue_delayed_work(cifsiod_wq, &server->reconnect, delay * HZ); 2347 } 2348 2349 static inline bool __cifs_cache_state_check(struct cifsInodeInfo *cinode, 2350 unsigned int oplock_flags, 2351 unsigned int sb_flags) 2352 { 2353 unsigned int sflags = cifs_sb_flags(CIFS_SB(cinode)); 2354 unsigned int oplock = READ_ONCE(cinode->oplock); 2355 2356 return (oplock & oplock_flags) || (sflags & sb_flags); 2357 } 2358 2359 #define CIFS_CACHE_READ(cinode) \ 2360 __cifs_cache_state_check(cinode, CIFS_CACHE_READ_FLG, \ 2361 CIFS_MOUNT_RO_CACHE) 2362 #define CIFS_CACHE_HANDLE(cinode) \ 2363 __cifs_cache_state_check(cinode, CIFS_CACHE_HANDLE_FLG, 0) 2364 #define CIFS_CACHE_WRITE(cinode) \ 2365 __cifs_cache_state_check(cinode, CIFS_CACHE_WRITE_FLG, \ 2366 CIFS_MOUNT_RW_CACHE) 2367 2368 static inline void cifs_reset_oplock(struct cifsInodeInfo *cinode) 2369 { 2370 scoped_guard(spinlock, &cinode->open_file_lock) 2371 WRITE_ONCE(cinode->oplock, 0); 2372 } 2373 2374 static inline bool cifs_forced_shutdown(const struct cifs_sb_info *sbi) 2375 { 2376 return cifs_sb_flags(sbi) & CIFS_MOUNT_SHUTDOWN; 2377 } 2378 2379 static inline int cifs_open_create_options(unsigned int oflags, int opts) 2380 { 2381 /* O_SYNC also has bit for O_DSYNC so following check picks up either */ 2382 if (oflags & O_SYNC) 2383 opts |= CREATE_WRITE_THROUGH; 2384 if (oflags & O_DIRECT) 2385 opts |= CREATE_NO_BUFFER; 2386 return opts; 2387 } 2388 2389 #endif /* _CIFS_GLOB_H */ 2390