2 * SMB2 version specific operations
4 * Copyright (c) 2012, Jeff Layton <jlayton@redhat.com>
6 * This library is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License v2 as published
8 * by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/pagemap.h>
21 #include <linux/vfs.h>
22 #include <linux/falloc.h>
23 #include <linux/scatterlist.h>
24 #include <linux/uuid.h>
25 #include <crypto/aead.h>
28 #include "smb2proto.h"
29 #include "cifsproto.h"
30 #include "cifs_debug.h"
31 #include "cifs_unicode.h"
32 #include "smb2status.h"
34 #include "cifs_ioctl.h"
35 #include "smbdirect.h"
38 change_conf(struct TCP_Server_Info
*server
)
40 server
->credits
+= server
->echo_credits
+ server
->oplock_credits
;
41 server
->oplock_credits
= server
->echo_credits
= 0;
42 switch (server
->credits
) {
46 server
->echoes
= false;
47 server
->oplocks
= false;
48 cifs_dbg(VFS
, "disabling echoes and oplocks\n");
51 server
->echoes
= true;
52 server
->oplocks
= false;
53 server
->echo_credits
= 1;
54 cifs_dbg(FYI
, "disabling oplocks\n");
57 server
->echoes
= true;
59 server
->oplocks
= true;
60 server
->oplock_credits
= 1;
62 server
->oplocks
= false;
64 server
->echo_credits
= 1;
66 server
->credits
-= server
->echo_credits
+ server
->oplock_credits
;
71 smb2_add_credits(struct TCP_Server_Info
*server
, const unsigned int add
,
75 spin_lock(&server
->req_lock
);
76 val
= server
->ops
->get_credits_field(server
, optype
);
78 /* eg found case where write overlapping reconnect messed up credits */
79 if (((optype
& CIFS_OP_MASK
) == CIFS_NEG_OP
) && (*val
!= 0))
80 trace_smb3_reconnect_with_invalid_credits(server
->CurrentMid
,
81 server
->hostname
, *val
);
85 *val
= 65000; /* Don't get near 64K credits, avoid srv bugs */
86 printk_once(KERN_WARNING
"server overflowed SMB3 credits\n");
89 if (server
->in_flight
== 0 && (optype
& CIFS_OP_MASK
) != CIFS_NEG_OP
)
90 rc
= change_conf(server
);
92 * Sometimes server returns 0 credits on oplock break ack - we need to
93 * rebalance credits in this case.
95 else if (server
->in_flight
> 0 && server
->oplock_credits
== 0 &&
97 if (server
->credits
> 1) {
99 server
->oplock_credits
++;
102 spin_unlock(&server
->req_lock
);
103 wake_up(&server
->request_q
);
105 cifs_reconnect(server
);
109 smb2_set_credits(struct TCP_Server_Info
*server
, const int val
)
111 spin_lock(&server
->req_lock
);
112 server
->credits
= val
;
114 server
->reconnect_instance
++;
115 spin_unlock(&server
->req_lock
);
116 /* don't log while holding the lock */
118 cifs_dbg(FYI
, "set credits to 1 due to smb2 reconnect\n");
122 smb2_get_credits_field(struct TCP_Server_Info
*server
, const int optype
)
126 return &server
->echo_credits
;
128 return &server
->oplock_credits
;
130 return &server
->credits
;
135 smb2_get_credits(struct mid_q_entry
*mid
)
137 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)mid
->resp_buf
;
139 return le16_to_cpu(shdr
->CreditRequest
);
143 smb2_wait_mtu_credits(struct TCP_Server_Info
*server
, unsigned int size
,
144 unsigned int *num
, unsigned int *credits
)
147 unsigned int scredits
;
149 spin_lock(&server
->req_lock
);
151 if (server
->credits
<= 0) {
152 spin_unlock(&server
->req_lock
);
153 cifs_num_waiters_inc(server
);
154 rc
= wait_event_killable(server
->request_q
,
155 has_credits(server
, &server
->credits
));
156 cifs_num_waiters_dec(server
);
159 spin_lock(&server
->req_lock
);
161 if (server
->tcpStatus
== CifsExiting
) {
162 spin_unlock(&server
->req_lock
);
166 scredits
= server
->credits
;
167 /* can deadlock with reopen */
169 *num
= SMB2_MAX_BUFFER_SIZE
;
174 /* leave one credit for a possible reopen */
176 *num
= min_t(unsigned int, size
,
177 scredits
* SMB2_MAX_BUFFER_SIZE
);
179 *credits
= DIV_ROUND_UP(*num
, SMB2_MAX_BUFFER_SIZE
);
180 server
->credits
-= *credits
;
185 spin_unlock(&server
->req_lock
);
190 smb2_get_next_mid(struct TCP_Server_Info
*server
)
193 /* for SMB2 we need the current value */
194 spin_lock(&GlobalMid_Lock
);
195 mid
= server
->CurrentMid
++;
196 spin_unlock(&GlobalMid_Lock
);
200 static struct mid_q_entry
*
201 smb2_find_mid(struct TCP_Server_Info
*server
, char *buf
)
203 struct mid_q_entry
*mid
;
204 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
205 __u64 wire_mid
= le64_to_cpu(shdr
->MessageId
);
207 if (shdr
->ProtocolId
== SMB2_TRANSFORM_PROTO_NUM
) {
208 cifs_dbg(VFS
, "encrypted frame parsing not supported yet");
212 spin_lock(&GlobalMid_Lock
);
213 list_for_each_entry(mid
, &server
->pending_mid_q
, qhead
) {
214 if ((mid
->mid
== wire_mid
) &&
215 (mid
->mid_state
== MID_REQUEST_SUBMITTED
) &&
216 (mid
->command
== shdr
->Command
)) {
217 kref_get(&mid
->refcount
);
218 spin_unlock(&GlobalMid_Lock
);
222 spin_unlock(&GlobalMid_Lock
);
227 smb2_dump_detail(void *buf
, struct TCP_Server_Info
*server
)
229 #ifdef CONFIG_CIFS_DEBUG2
230 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
232 cifs_dbg(VFS
, "Cmd: %d Err: 0x%x Flags: 0x%x Mid: %llu Pid: %d\n",
233 shdr
->Command
, shdr
->Status
, shdr
->Flags
, shdr
->MessageId
,
235 cifs_dbg(VFS
, "smb buf %p len %u\n", buf
,
236 server
->ops
->calc_smb_size(buf
, server
));
241 smb2_need_neg(struct TCP_Server_Info
*server
)
243 return server
->max_read
== 0;
247 smb2_negotiate(const unsigned int xid
, struct cifs_ses
*ses
)
250 ses
->server
->CurrentMid
= 0;
251 rc
= SMB2_negotiate(xid
, ses
);
252 /* BB we probably don't need to retry with modern servers */
259 smb2_negotiate_wsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
261 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
264 /* start with specified wsize, or default */
265 wsize
= volume_info
->wsize
? volume_info
->wsize
: CIFS_DEFAULT_IOSIZE
;
266 wsize
= min_t(unsigned int, wsize
, server
->max_write
);
267 #ifdef CONFIG_CIFS_SMB_DIRECT
270 wsize
= min_t(unsigned int,
271 wsize
, server
->smbd_conn
->max_fragmented_send_size
);
273 wsize
= min_t(unsigned int,
274 wsize
, server
->smbd_conn
->max_readwrite_size
);
277 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
278 wsize
= min_t(unsigned int, wsize
, SMB2_MAX_BUFFER_SIZE
);
284 smb3_negotiate_wsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
286 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
289 /* start with specified wsize, or default */
290 wsize
= volume_info
->wsize
? volume_info
->wsize
: SMB3_DEFAULT_IOSIZE
;
291 wsize
= min_t(unsigned int, wsize
, server
->max_write
);
292 #ifdef CONFIG_CIFS_SMB_DIRECT
295 wsize
= min_t(unsigned int,
296 wsize
, server
->smbd_conn
->max_fragmented_send_size
);
298 wsize
= min_t(unsigned int,
299 wsize
, server
->smbd_conn
->max_readwrite_size
);
302 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
303 wsize
= min_t(unsigned int, wsize
, SMB2_MAX_BUFFER_SIZE
);
309 smb2_negotiate_rsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
311 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
314 /* start with specified rsize, or default */
315 rsize
= volume_info
->rsize
? volume_info
->rsize
: CIFS_DEFAULT_IOSIZE
;
316 rsize
= min_t(unsigned int, rsize
, server
->max_read
);
317 #ifdef CONFIG_CIFS_SMB_DIRECT
320 rsize
= min_t(unsigned int,
321 rsize
, server
->smbd_conn
->max_fragmented_recv_size
);
323 rsize
= min_t(unsigned int,
324 rsize
, server
->smbd_conn
->max_readwrite_size
);
328 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
329 rsize
= min_t(unsigned int, rsize
, SMB2_MAX_BUFFER_SIZE
);
335 smb3_negotiate_rsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
337 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
340 /* start with specified rsize, or default */
341 rsize
= volume_info
->rsize
? volume_info
->rsize
: SMB3_DEFAULT_IOSIZE
;
342 rsize
= min_t(unsigned int, rsize
, server
->max_read
);
343 #ifdef CONFIG_CIFS_SMB_DIRECT
346 rsize
= min_t(unsigned int,
347 rsize
, server
->smbd_conn
->max_fragmented_recv_size
);
349 rsize
= min_t(unsigned int,
350 rsize
, server
->smbd_conn
->max_readwrite_size
);
354 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
355 rsize
= min_t(unsigned int, rsize
, SMB2_MAX_BUFFER_SIZE
);
361 parse_server_interfaces(struct network_interface_info_ioctl_rsp
*buf
,
363 struct cifs_server_iface
**iface_list
,
366 struct network_interface_info_ioctl_rsp
*p
;
367 struct sockaddr_in
*addr4
;
368 struct sockaddr_in6
*addr6
;
369 struct iface_info_ipv4
*p4
;
370 struct iface_info_ipv6
*p6
;
371 struct cifs_server_iface
*info
;
381 * Fist pass: count and sanity check
384 bytes_left
= buf_len
;
386 while (bytes_left
>= sizeof(*p
)) {
388 next
= le32_to_cpu(p
->Next
);
390 bytes_left
-= sizeof(*p
);
393 p
= (struct network_interface_info_ioctl_rsp
*)((u8
*)p
+next
);
398 cifs_dbg(VFS
, "%s: malformed interface info\n", __func__
);
403 if (bytes_left
|| p
->Next
)
404 cifs_dbg(VFS
, "%s: incomplete interface info\n", __func__
);
408 * Second pass: extract info to internal structure
411 *iface_list
= kcalloc(nb_iface
, sizeof(**iface_list
), GFP_KERNEL
);
418 bytes_left
= buf_len
;
420 while (bytes_left
>= sizeof(*p
)) {
421 info
->speed
= le64_to_cpu(p
->LinkSpeed
);
422 info
->rdma_capable
= le32_to_cpu(p
->Capability
& RDMA_CAPABLE
);
423 info
->rss_capable
= le32_to_cpu(p
->Capability
& RSS_CAPABLE
);
425 cifs_dbg(FYI
, "%s: adding iface %zu\n", __func__
, *iface_count
);
426 cifs_dbg(FYI
, "%s: speed %zu bps\n", __func__
, info
->speed
);
427 cifs_dbg(FYI
, "%s: capabilities 0x%08x\n", __func__
,
428 le32_to_cpu(p
->Capability
));
432 * The kernel and wire socket structures have the same
433 * layout and use network byte order but make the
434 * conversion explicit in case either one changes.
437 addr4
= (struct sockaddr_in
*)&info
->sockaddr
;
438 p4
= (struct iface_info_ipv4
*)p
->Buffer
;
439 addr4
->sin_family
= AF_INET
;
440 memcpy(&addr4
->sin_addr
, &p4
->IPv4Address
, 4);
442 /* [MS-SMB2] 2.2.32.5.1.1 Clients MUST ignore these */
443 addr4
->sin_port
= cpu_to_be16(CIFS_PORT
);
445 cifs_dbg(FYI
, "%s: ipv4 %pI4\n", __func__
,
449 addr6
= (struct sockaddr_in6
*)&info
->sockaddr
;
450 p6
= (struct iface_info_ipv6
*)p
->Buffer
;
451 addr6
->sin6_family
= AF_INET6
;
452 memcpy(&addr6
->sin6_addr
, &p6
->IPv6Address
, 16);
454 /* [MS-SMB2] 2.2.32.5.1.2 Clients MUST ignore these */
455 addr6
->sin6_flowinfo
= 0;
456 addr6
->sin6_scope_id
= 0;
457 addr6
->sin6_port
= cpu_to_be16(CIFS_PORT
);
459 cifs_dbg(FYI
, "%s: ipv6 %pI6\n", __func__
,
464 "%s: skipping unsupported socket family\n",
472 next
= le32_to_cpu(p
->Next
);
475 p
= (struct network_interface_info_ioctl_rsp
*)((u8
*)p
+next
);
495 SMB3_request_interfaces(const unsigned int xid
, struct cifs_tcon
*tcon
)
498 unsigned int ret_data_len
= 0;
499 struct network_interface_info_ioctl_rsp
*out_buf
= NULL
;
500 struct cifs_server_iface
*iface_list
;
502 struct cifs_ses
*ses
= tcon
->ses
;
504 rc
= SMB2_ioctl(xid
, tcon
, NO_FILE_ID
, NO_FILE_ID
,
505 FSCTL_QUERY_NETWORK_INTERFACE_INFO
, true /* is_fsctl */,
506 NULL
/* no data input */, 0 /* no data input */,
507 (char **)&out_buf
, &ret_data_len
);
508 if (rc
== -EOPNOTSUPP
) {
510 "server does not support query network interfaces\n");
512 } else if (rc
!= 0) {
513 cifs_dbg(VFS
, "error %d on ioctl to get interface list\n", rc
);
517 rc
= parse_server_interfaces(out_buf
, ret_data_len
,
518 &iface_list
, &iface_count
);
522 spin_lock(&ses
->iface_lock
);
523 kfree(ses
->iface_list
);
524 ses
->iface_list
= iface_list
;
525 ses
->iface_count
= iface_count
;
526 ses
->iface_last_update
= jiffies
;
527 spin_unlock(&ses
->iface_lock
);
535 smb2_close_cached_fid(struct kref
*ref
)
537 struct cached_fid
*cfid
= container_of(ref
, struct cached_fid
,
540 if (cfid
->is_valid
) {
541 cifs_dbg(FYI
, "clear cached root file handle\n");
542 SMB2_close(0, cfid
->tcon
, cfid
->fid
->persistent_fid
,
543 cfid
->fid
->volatile_fid
);
544 cfid
->is_valid
= false;
548 void close_shroot(struct cached_fid
*cfid
)
550 mutex_lock(&cfid
->fid_mutex
);
551 kref_put(&cfid
->refcount
, smb2_close_cached_fid
);
552 mutex_unlock(&cfid
->fid_mutex
);
556 smb2_cached_lease_break(struct work_struct
*work
)
558 struct cached_fid
*cfid
= container_of(work
,
559 struct cached_fid
, lease_break
);
565 * Open the directory at the root of a share
567 int open_shroot(unsigned int xid
, struct cifs_tcon
*tcon
, struct cifs_fid
*pfid
)
569 struct cifs_open_parms oparams
;
571 __le16 srch_path
= 0; /* Null - since an open of top of share */
572 u8 oplock
= SMB2_OPLOCK_LEVEL_II
;
574 mutex_lock(&tcon
->crfid
.fid_mutex
);
575 if (tcon
->crfid
.is_valid
) {
576 cifs_dbg(FYI
, "found a cached root file handle\n");
577 memcpy(pfid
, tcon
->crfid
.fid
, sizeof(struct cifs_fid
));
578 kref_get(&tcon
->crfid
.refcount
);
579 mutex_unlock(&tcon
->crfid
.fid_mutex
);
584 oparams
.create_options
= 0;
585 oparams
.desired_access
= FILE_READ_ATTRIBUTES
;
586 oparams
.disposition
= FILE_OPEN
;
588 oparams
.reconnect
= false;
590 rc
= SMB2_open(xid
, &oparams
, &srch_path
, &oplock
, NULL
, NULL
, NULL
);
592 memcpy(tcon
->crfid
.fid
, pfid
, sizeof(struct cifs_fid
));
593 tcon
->crfid
.tcon
= tcon
;
594 tcon
->crfid
.is_valid
= true;
595 kref_init(&tcon
->crfid
.refcount
);
596 kref_get(&tcon
->crfid
.refcount
);
598 mutex_unlock(&tcon
->crfid
.fid_mutex
);
603 smb3_qfs_tcon(const unsigned int xid
, struct cifs_tcon
*tcon
)
606 __le16 srch_path
= 0; /* Null - open root of share */
607 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
608 struct cifs_open_parms oparms
;
610 bool no_cached_open
= tcon
->nohandlecache
;
613 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
614 oparms
.disposition
= FILE_OPEN
;
615 oparms
.create_options
= 0;
617 oparms
.reconnect
= false;
620 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
,
623 rc
= open_shroot(xid
, tcon
, &fid
);
628 SMB3_request_interfaces(xid
, tcon
);
630 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
631 FS_ATTRIBUTE_INFORMATION
);
632 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
633 FS_DEVICE_INFORMATION
);
634 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
635 FS_VOLUME_INFORMATION
);
636 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
637 FS_SECTOR_SIZE_INFORMATION
); /* SMB3 specific */
639 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
641 close_shroot(&tcon
->crfid
);
647 smb2_qfs_tcon(const unsigned int xid
, struct cifs_tcon
*tcon
)
650 __le16 srch_path
= 0; /* Null - open root of share */
651 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
652 struct cifs_open_parms oparms
;
656 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
657 oparms
.disposition
= FILE_OPEN
;
658 oparms
.create_options
= 0;
660 oparms
.reconnect
= false;
662 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
, NULL
);
666 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
667 FS_ATTRIBUTE_INFORMATION
);
668 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
669 FS_DEVICE_INFORMATION
);
670 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
675 smb2_is_path_accessible(const unsigned int xid
, struct cifs_tcon
*tcon
,
676 struct cifs_sb_info
*cifs_sb
, const char *full_path
)
680 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
681 struct cifs_open_parms oparms
;
684 if ((*full_path
== 0) && tcon
->crfid
.is_valid
)
687 utf16_path
= cifs_convert_path_to_utf16(full_path
, cifs_sb
);
692 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
693 oparms
.disposition
= FILE_OPEN
;
694 if (backup_cred(cifs_sb
))
695 oparms
.create_options
= CREATE_OPEN_BACKUP_INTENT
;
697 oparms
.create_options
= 0;
699 oparms
.reconnect
= false;
701 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
);
707 rc
= SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
713 smb2_get_srv_inum(const unsigned int xid
, struct cifs_tcon
*tcon
,
714 struct cifs_sb_info
*cifs_sb
, const char *full_path
,
715 u64
*uniqueid
, FILE_ALL_INFO
*data
)
717 *uniqueid
= le64_to_cpu(data
->IndexNumber
);
722 smb2_query_file_info(const unsigned int xid
, struct cifs_tcon
*tcon
,
723 struct cifs_fid
*fid
, FILE_ALL_INFO
*data
)
726 struct smb2_file_all_info
*smb2_data
;
728 smb2_data
= kzalloc(sizeof(struct smb2_file_all_info
) + PATH_MAX
* 2,
730 if (smb2_data
== NULL
)
733 rc
= SMB2_query_info(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
,
736 move_smb2_info_to_cifs(data
, smb2_data
);
741 #ifdef CONFIG_CIFS_XATTR
743 move_smb2_ea_to_cifs(char *dst
, size_t dst_size
,
744 struct smb2_file_full_ea_info
*src
, size_t src_size
,
745 const unsigned char *ea_name
)
748 unsigned int ea_name_len
= ea_name
? strlen(ea_name
) : 0;
750 size_t buf_size
= dst_size
;
751 size_t name_len
, value_len
, user_name_len
;
753 while (src_size
> 0) {
754 name
= &src
->ea_data
[0];
755 name_len
= (size_t)src
->ea_name_length
;
756 value
= &src
->ea_data
[src
->ea_name_length
+ 1];
757 value_len
= (size_t)le16_to_cpu(src
->ea_value_length
);
763 if (src_size
< 8 + name_len
+ 1 + value_len
) {
764 cifs_dbg(FYI
, "EA entry goes beyond length of list\n");
770 if (ea_name_len
== name_len
&&
771 memcmp(ea_name
, name
, name_len
) == 0) {
775 if (dst_size
< value_len
) {
779 memcpy(dst
, value
, value_len
);
783 /* 'user.' plus a terminating null */
784 user_name_len
= 5 + 1 + name_len
;
787 /* skip copy - calc size only */
789 } else if (dst_size
>= user_name_len
) {
790 dst_size
-= user_name_len
;
791 memcpy(dst
, "user.", 5);
793 memcpy(dst
, src
->ea_data
, name_len
);
799 /* stop before overrun buffer */
805 if (!src
->next_entry_offset
)
808 if (src_size
< le32_to_cpu(src
->next_entry_offset
)) {
809 /* stop before overrun buffer */
813 src_size
-= le32_to_cpu(src
->next_entry_offset
);
814 src
= (void *)((char *)src
+
815 le32_to_cpu(src
->next_entry_offset
));
818 /* didn't find the named attribute */
827 smb2_query_eas(const unsigned int xid
, struct cifs_tcon
*tcon
,
828 const unsigned char *path
, const unsigned char *ea_name
,
829 char *ea_data
, size_t buf_size
,
830 struct cifs_sb_info
*cifs_sb
)
834 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
835 struct cifs_open_parms oparms
;
837 struct smb2_file_full_ea_info
*smb2_data
;
838 int ea_buf_size
= SMB2_MIN_EA_BUF
;
840 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
845 oparms
.desired_access
= FILE_READ_EA
;
846 oparms
.disposition
= FILE_OPEN
;
847 if (backup_cred(cifs_sb
))
848 oparms
.create_options
= CREATE_OPEN_BACKUP_INTENT
;
850 oparms
.create_options
= 0;
852 oparms
.reconnect
= false;
854 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
);
857 cifs_dbg(FYI
, "open failed rc=%d\n", rc
);
862 smb2_data
= kzalloc(ea_buf_size
, GFP_KERNEL
);
863 if (smb2_data
== NULL
) {
864 SMB2_close(xid
, tcon
, fid
.persistent_fid
,
869 rc
= SMB2_query_eas(xid
, tcon
, fid
.persistent_fid
,
871 ea_buf_size
, smb2_data
);
879 if (ea_buf_size
> SMB2_MAX_EA_BUF
) {
880 cifs_dbg(VFS
, "EA size is too large\n");
881 SMB2_close(xid
, tcon
, fid
.persistent_fid
,
887 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
890 * If ea_name is NULL (listxattr) and there are no EAs, return 0 as it's
891 * not an error. Otherwise, the specified ea_name was not found.
894 rc
= move_smb2_ea_to_cifs(ea_data
, buf_size
, smb2_data
,
895 SMB2_MAX_EA_BUF
, ea_name
);
896 else if (!ea_name
&& rc
== -ENODATA
)
905 smb2_set_ea(const unsigned int xid
, struct cifs_tcon
*tcon
,
906 const char *path
, const char *ea_name
, const void *ea_value
,
907 const __u16 ea_value_len
, const struct nls_table
*nls_codepage
,
908 struct cifs_sb_info
*cifs_sb
)
912 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
913 struct cifs_open_parms oparms
;
915 struct smb2_file_full_ea_info
*ea
;
916 int ea_name_len
= strlen(ea_name
);
919 if (ea_name_len
> 255)
922 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
927 oparms
.desired_access
= FILE_WRITE_EA
;
928 oparms
.disposition
= FILE_OPEN
;
929 if (backup_cred(cifs_sb
))
930 oparms
.create_options
= CREATE_OPEN_BACKUP_INTENT
;
932 oparms
.create_options
= 0;
934 oparms
.reconnect
= false;
936 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
);
939 cifs_dbg(FYI
, "open failed rc=%d\n", rc
);
943 len
= sizeof(ea
) + ea_name_len
+ ea_value_len
+ 1;
944 ea
= kzalloc(len
, GFP_KERNEL
);
946 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
950 ea
->ea_name_length
= ea_name_len
;
951 ea
->ea_value_length
= cpu_to_le16(ea_value_len
);
952 memcpy(ea
->ea_data
, ea_name
, ea_name_len
+ 1);
953 memcpy(ea
->ea_data
+ ea_name_len
+ 1, ea_value
, ea_value_len
);
955 rc
= SMB2_set_ea(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
, ea
,
959 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
966 smb2_can_echo(struct TCP_Server_Info
*server
)
968 return server
->echoes
;
972 smb2_clear_stats(struct cifs_tcon
*tcon
)
975 for (i
= 0; i
< NUMBER_OF_SMB2_COMMANDS
; i
++) {
976 atomic_set(&tcon
->stats
.smb2_stats
.smb2_com_sent
[i
], 0);
977 atomic_set(&tcon
->stats
.smb2_stats
.smb2_com_failed
[i
], 0);
982 smb2_dump_share_caps(struct seq_file
*m
, struct cifs_tcon
*tcon
)
984 seq_puts(m
, "\n\tShare Capabilities:");
985 if (tcon
->capabilities
& SMB2_SHARE_CAP_DFS
)
986 seq_puts(m
, " DFS,");
987 if (tcon
->capabilities
& SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY
)
988 seq_puts(m
, " CONTINUOUS AVAILABILITY,");
989 if (tcon
->capabilities
& SMB2_SHARE_CAP_SCALEOUT
)
990 seq_puts(m
, " SCALEOUT,");
991 if (tcon
->capabilities
& SMB2_SHARE_CAP_CLUSTER
)
992 seq_puts(m
, " CLUSTER,");
993 if (tcon
->capabilities
& SMB2_SHARE_CAP_ASYMMETRIC
)
994 seq_puts(m
, " ASYMMETRIC,");
995 if (tcon
->capabilities
== 0)
996 seq_puts(m
, " None");
997 if (tcon
->ss_flags
& SSINFO_FLAGS_ALIGNED_DEVICE
)
998 seq_puts(m
, " Aligned,");
999 if (tcon
->ss_flags
& SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE
)
1000 seq_puts(m
, " Partition Aligned,");
1001 if (tcon
->ss_flags
& SSINFO_FLAGS_NO_SEEK_PENALTY
)
1002 seq_puts(m
, " SSD,");
1003 if (tcon
->ss_flags
& SSINFO_FLAGS_TRIM_ENABLED
)
1004 seq_puts(m
, " TRIM-support,");
1006 seq_printf(m
, "\tShare Flags: 0x%x", tcon
->share_flags
);
1007 seq_printf(m
, "\n\ttid: 0x%x", tcon
->tid
);
1008 if (tcon
->perf_sector_size
)
1009 seq_printf(m
, "\tOptimal sector size: 0x%x",
1010 tcon
->perf_sector_size
);
1011 seq_printf(m
, "\tMaximal Access: 0x%x", tcon
->maximal_access
);
1015 smb2_print_stats(struct seq_file
*m
, struct cifs_tcon
*tcon
)
1017 atomic_t
*sent
= tcon
->stats
.smb2_stats
.smb2_com_sent
;
1018 atomic_t
*failed
= tcon
->stats
.smb2_stats
.smb2_com_failed
;
1021 * Can't display SMB2_NEGOTIATE, SESSION_SETUP, LOGOFF, CANCEL and ECHO
1022 * totals (requests sent) since those SMBs are per-session not per tcon
1024 seq_printf(m
, "\nBytes read: %llu Bytes written: %llu",
1025 (long long)(tcon
->bytes_read
),
1026 (long long)(tcon
->bytes_written
));
1027 seq_printf(m
, "\nOpen files: %d total (local), %d open on server",
1028 atomic_read(&tcon
->num_local_opens
),
1029 atomic_read(&tcon
->num_remote_opens
));
1030 seq_printf(m
, "\nTreeConnects: %d total %d failed",
1031 atomic_read(&sent
[SMB2_TREE_CONNECT_HE
]),
1032 atomic_read(&failed
[SMB2_TREE_CONNECT_HE
]));
1033 seq_printf(m
, "\nTreeDisconnects: %d total %d failed",
1034 atomic_read(&sent
[SMB2_TREE_DISCONNECT_HE
]),
1035 atomic_read(&failed
[SMB2_TREE_DISCONNECT_HE
]));
1036 seq_printf(m
, "\nCreates: %d total %d failed",
1037 atomic_read(&sent
[SMB2_CREATE_HE
]),
1038 atomic_read(&failed
[SMB2_CREATE_HE
]));
1039 seq_printf(m
, "\nCloses: %d total %d failed",
1040 atomic_read(&sent
[SMB2_CLOSE_HE
]),
1041 atomic_read(&failed
[SMB2_CLOSE_HE
]));
1042 seq_printf(m
, "\nFlushes: %d total %d failed",
1043 atomic_read(&sent
[SMB2_FLUSH_HE
]),
1044 atomic_read(&failed
[SMB2_FLUSH_HE
]));
1045 seq_printf(m
, "\nReads: %d total %d failed",
1046 atomic_read(&sent
[SMB2_READ_HE
]),
1047 atomic_read(&failed
[SMB2_READ_HE
]));
1048 seq_printf(m
, "\nWrites: %d total %d failed",
1049 atomic_read(&sent
[SMB2_WRITE_HE
]),
1050 atomic_read(&failed
[SMB2_WRITE_HE
]));
1051 seq_printf(m
, "\nLocks: %d total %d failed",
1052 atomic_read(&sent
[SMB2_LOCK_HE
]),
1053 atomic_read(&failed
[SMB2_LOCK_HE
]));
1054 seq_printf(m
, "\nIOCTLs: %d total %d failed",
1055 atomic_read(&sent
[SMB2_IOCTL_HE
]),
1056 atomic_read(&failed
[SMB2_IOCTL_HE
]));
1057 seq_printf(m
, "\nQueryDirectories: %d total %d failed",
1058 atomic_read(&sent
[SMB2_QUERY_DIRECTORY_HE
]),
1059 atomic_read(&failed
[SMB2_QUERY_DIRECTORY_HE
]));
1060 seq_printf(m
, "\nChangeNotifies: %d total %d failed",
1061 atomic_read(&sent
[SMB2_CHANGE_NOTIFY_HE
]),
1062 atomic_read(&failed
[SMB2_CHANGE_NOTIFY_HE
]));
1063 seq_printf(m
, "\nQueryInfos: %d total %d failed",
1064 atomic_read(&sent
[SMB2_QUERY_INFO_HE
]),
1065 atomic_read(&failed
[SMB2_QUERY_INFO_HE
]));
1066 seq_printf(m
, "\nSetInfos: %d total %d failed",
1067 atomic_read(&sent
[SMB2_SET_INFO_HE
]),
1068 atomic_read(&failed
[SMB2_SET_INFO_HE
]));
1069 seq_printf(m
, "\nOplockBreaks: %d sent %d failed",
1070 atomic_read(&sent
[SMB2_OPLOCK_BREAK_HE
]),
1071 atomic_read(&failed
[SMB2_OPLOCK_BREAK_HE
]));
1075 smb2_set_fid(struct cifsFileInfo
*cfile
, struct cifs_fid
*fid
, __u32 oplock
)
1077 struct cifsInodeInfo
*cinode
= CIFS_I(d_inode(cfile
->dentry
));
1078 struct TCP_Server_Info
*server
= tlink_tcon(cfile
->tlink
)->ses
->server
;
1080 cfile
->fid
.persistent_fid
= fid
->persistent_fid
;
1081 cfile
->fid
.volatile_fid
= fid
->volatile_fid
;
1082 #ifdef CONFIG_CIFS_DEBUG2
1083 cfile
->fid
.mid
= fid
->mid
;
1084 #endif /* CIFS_DEBUG2 */
1085 server
->ops
->set_oplock_level(cinode
, oplock
, fid
->epoch
,
1087 cinode
->can_cache_brlcks
= CIFS_CACHE_WRITE(cinode
);
1088 memcpy(cfile
->fid
.create_guid
, fid
->create_guid
, 16);
1092 smb2_close_file(const unsigned int xid
, struct cifs_tcon
*tcon
,
1093 struct cifs_fid
*fid
)
1095 SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
1099 SMB2_request_res_key(const unsigned int xid
, struct cifs_tcon
*tcon
,
1100 u64 persistent_fid
, u64 volatile_fid
,
1101 struct copychunk_ioctl
*pcchunk
)
1104 unsigned int ret_data_len
;
1105 struct resume_key_req
*res_key
;
1107 rc
= SMB2_ioctl(xid
, tcon
, persistent_fid
, volatile_fid
,
1108 FSCTL_SRV_REQUEST_RESUME_KEY
, true /* is_fsctl */,
1109 NULL
, 0 /* no input */,
1110 (char **)&res_key
, &ret_data_len
);
1113 cifs_dbg(VFS
, "refcpy ioctl error %d getting resume key\n", rc
);
1114 goto req_res_key_exit
;
1116 if (ret_data_len
< sizeof(struct resume_key_req
)) {
1117 cifs_dbg(VFS
, "Invalid refcopy resume key length\n");
1119 goto req_res_key_exit
;
1121 memcpy(pcchunk
->SourceKey
, res_key
->ResumeKey
, COPY_CHUNK_RES_KEY_SIZE
);
1129 smb2_ioctl_query_info(const unsigned int xid
,
1130 struct cifs_tcon
*tcon
,
1131 __le16
*path
, int is_dir
,
1134 struct cifs_ses
*ses
= tcon
->ses
;
1135 char __user
*arg
= (char __user
*)p
;
1136 struct smb_query_info qi
;
1137 struct smb_query_info __user
*pqi
;
1140 struct smb2_query_info_rsp
*rsp
= NULL
;
1141 void *buffer
= NULL
;
1142 struct smb_rqst rqst
[3];
1143 int resp_buftype
[3];
1144 struct kvec rsp_iov
[3];
1145 struct kvec open_iov
[SMB2_CREATE_IOV_SIZE
];
1146 struct cifs_open_parms oparms
;
1147 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
1148 struct cifs_fid fid
;
1149 struct kvec qi_iov
[1];
1150 struct kvec close_iov
[1];
1152 memset(rqst
, 0, sizeof(rqst
));
1153 resp_buftype
[0] = resp_buftype
[1] = resp_buftype
[2] = CIFS_NO_BUFFER
;
1154 memset(rsp_iov
, 0, sizeof(rsp_iov
));
1156 if (copy_from_user(&qi
, arg
, sizeof(struct smb_query_info
)))
1159 if (qi
.output_buffer_length
> 1024)
1162 if (!ses
|| !(ses
->server
))
1165 if (smb3_encryption_required(tcon
))
1166 flags
|= CIFS_TRANSFORM_REQ
;
1168 buffer
= kmalloc(qi
.output_buffer_length
, GFP_KERNEL
);
1172 if (copy_from_user(buffer
, arg
+ sizeof(struct smb_query_info
),
1173 qi
.output_buffer_length
)) {
1179 memset(&open_iov
, 0, sizeof(open_iov
));
1180 rqst
[0].rq_iov
= open_iov
;
1181 rqst
[0].rq_nvec
= SMB2_CREATE_IOV_SIZE
;
1183 memset(&oparms
, 0, sizeof(oparms
));
1185 oparms
.desired_access
= FILE_READ_ATTRIBUTES
| READ_CONTROL
;
1186 oparms
.disposition
= FILE_OPEN
;
1188 oparms
.create_options
= CREATE_NOT_FILE
;
1190 oparms
.create_options
= CREATE_NOT_DIR
;
1192 oparms
.reconnect
= false;
1194 rc
= SMB2_open_init(tcon
, &rqst
[0], &oplock
, &oparms
, path
);
1197 smb2_set_next_command(ses
->server
, &rqst
[0]);
1200 memset(&qi_iov
, 0, sizeof(qi_iov
));
1201 rqst
[1].rq_iov
= qi_iov
;
1202 rqst
[1].rq_nvec
= 1;
1204 rc
= SMB2_query_info_init(tcon
, &rqst
[1], COMPOUND_FID
, COMPOUND_FID
,
1205 qi
.file_info_class
, qi
.info_type
,
1206 qi
.additional_information
,
1207 qi
.input_buffer_length
,
1208 qi
.output_buffer_length
, buffer
);
1211 smb2_set_next_command(ses
->server
, &rqst
[1]);
1212 smb2_set_related(&rqst
[1]);
1215 memset(&close_iov
, 0, sizeof(close_iov
));
1216 rqst
[2].rq_iov
= close_iov
;
1217 rqst
[2].rq_nvec
= 1;
1219 rc
= SMB2_close_init(tcon
, &rqst
[2], COMPOUND_FID
, COMPOUND_FID
);
1222 smb2_set_related(&rqst
[2]);
1224 rc
= compound_send_recv(xid
, ses
, flags
, 3, rqst
,
1225 resp_buftype
, rsp_iov
);
1228 pqi
= (struct smb_query_info __user
*)arg
;
1229 rsp
= (struct smb2_query_info_rsp
*)rsp_iov
[1].iov_base
;
1230 if (le32_to_cpu(rsp
->OutputBufferLength
) < qi
.input_buffer_length
)
1231 qi
.input_buffer_length
= le32_to_cpu(rsp
->OutputBufferLength
);
1232 if (copy_to_user(&pqi
->input_buffer_length
, &qi
.input_buffer_length
,
1233 sizeof(qi
.input_buffer_length
))) {
1237 if (copy_to_user(pqi
+ 1, rsp
->Buffer
, qi
.input_buffer_length
)) {
1244 SMB2_open_free(&rqst
[0]);
1245 SMB2_query_info_free(&rqst
[1]);
1246 SMB2_close_free(&rqst
[2]);
1247 free_rsp_buf(resp_buftype
[0], rsp_iov
[0].iov_base
);
1248 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
1249 free_rsp_buf(resp_buftype
[2], rsp_iov
[2].iov_base
);
1254 smb2_copychunk_range(const unsigned int xid
,
1255 struct cifsFileInfo
*srcfile
,
1256 struct cifsFileInfo
*trgtfile
, u64 src_off
,
1257 u64 len
, u64 dest_off
)
1260 unsigned int ret_data_len
;
1261 struct copychunk_ioctl
*pcchunk
;
1262 struct copychunk_ioctl_rsp
*retbuf
= NULL
;
1263 struct cifs_tcon
*tcon
;
1264 int chunks_copied
= 0;
1265 bool chunk_sizes_updated
= false;
1266 ssize_t bytes_written
, total_bytes_written
= 0;
1268 pcchunk
= kmalloc(sizeof(struct copychunk_ioctl
), GFP_KERNEL
);
1270 if (pcchunk
== NULL
)
1273 cifs_dbg(FYI
, "in smb2_copychunk_range - about to call request res key\n");
1274 /* Request a key from the server to identify the source of the copy */
1275 rc
= SMB2_request_res_key(xid
, tlink_tcon(srcfile
->tlink
),
1276 srcfile
->fid
.persistent_fid
,
1277 srcfile
->fid
.volatile_fid
, pcchunk
);
1279 /* Note: request_res_key sets res_key null only if rc !=0 */
1283 /* For now array only one chunk long, will make more flexible later */
1284 pcchunk
->ChunkCount
= cpu_to_le32(1);
1285 pcchunk
->Reserved
= 0;
1286 pcchunk
->Reserved2
= 0;
1288 tcon
= tlink_tcon(trgtfile
->tlink
);
1291 pcchunk
->SourceOffset
= cpu_to_le64(src_off
);
1292 pcchunk
->TargetOffset
= cpu_to_le64(dest_off
);
1294 cpu_to_le32(min_t(u32
, len
, tcon
->max_bytes_chunk
));
1296 /* Request server copy to target from src identified by key */
1297 rc
= SMB2_ioctl(xid
, tcon
, trgtfile
->fid
.persistent_fid
,
1298 trgtfile
->fid
.volatile_fid
, FSCTL_SRV_COPYCHUNK_WRITE
,
1299 true /* is_fsctl */, (char *)pcchunk
,
1300 sizeof(struct copychunk_ioctl
), (char **)&retbuf
,
1304 sizeof(struct copychunk_ioctl_rsp
)) {
1305 cifs_dbg(VFS
, "invalid cchunk response size\n");
1309 if (retbuf
->TotalBytesWritten
== 0) {
1310 cifs_dbg(FYI
, "no bytes copied\n");
1315 * Check if server claimed to write more than we asked
1317 if (le32_to_cpu(retbuf
->TotalBytesWritten
) >
1318 le32_to_cpu(pcchunk
->Length
)) {
1319 cifs_dbg(VFS
, "invalid copy chunk response\n");
1323 if (le32_to_cpu(retbuf
->ChunksWritten
) != 1) {
1324 cifs_dbg(VFS
, "invalid num chunks written\n");
1330 bytes_written
= le32_to_cpu(retbuf
->TotalBytesWritten
);
1331 src_off
+= bytes_written
;
1332 dest_off
+= bytes_written
;
1333 len
-= bytes_written
;
1334 total_bytes_written
+= bytes_written
;
1336 cifs_dbg(FYI
, "Chunks %d PartialChunk %d Total %zu\n",
1337 le32_to_cpu(retbuf
->ChunksWritten
),
1338 le32_to_cpu(retbuf
->ChunkBytesWritten
),
1340 } else if (rc
== -EINVAL
) {
1341 if (ret_data_len
!= sizeof(struct copychunk_ioctl_rsp
))
1344 cifs_dbg(FYI
, "MaxChunks %d BytesChunk %d MaxCopy %d\n",
1345 le32_to_cpu(retbuf
->ChunksWritten
),
1346 le32_to_cpu(retbuf
->ChunkBytesWritten
),
1347 le32_to_cpu(retbuf
->TotalBytesWritten
));
1350 * Check if this is the first request using these sizes,
1351 * (ie check if copy succeed once with original sizes
1352 * and check if the server gave us different sizes after
1353 * we already updated max sizes on previous request).
1354 * if not then why is the server returning an error now
1356 if ((chunks_copied
!= 0) || chunk_sizes_updated
)
1359 /* Check that server is not asking us to grow size */
1360 if (le32_to_cpu(retbuf
->ChunkBytesWritten
) <
1361 tcon
->max_bytes_chunk
)
1362 tcon
->max_bytes_chunk
=
1363 le32_to_cpu(retbuf
->ChunkBytesWritten
);
1365 goto cchunk_out
; /* server gave us bogus size */
1367 /* No need to change MaxChunks since already set to 1 */
1368 chunk_sizes_updated
= true;
1379 return total_bytes_written
;
1383 smb2_flush_file(const unsigned int xid
, struct cifs_tcon
*tcon
,
1384 struct cifs_fid
*fid
)
1386 return SMB2_flush(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
1390 smb2_read_data_offset(char *buf
)
1392 struct smb2_read_rsp
*rsp
= (struct smb2_read_rsp
*)buf
;
1393 return rsp
->DataOffset
;
1397 smb2_read_data_length(char *buf
, bool in_remaining
)
1399 struct smb2_read_rsp
*rsp
= (struct smb2_read_rsp
*)buf
;
1402 return le32_to_cpu(rsp
->DataRemaining
);
1404 return le32_to_cpu(rsp
->DataLength
);
1409 smb2_sync_read(const unsigned int xid
, struct cifs_fid
*pfid
,
1410 struct cifs_io_parms
*parms
, unsigned int *bytes_read
,
1411 char **buf
, int *buf_type
)
1413 parms
->persistent_fid
= pfid
->persistent_fid
;
1414 parms
->volatile_fid
= pfid
->volatile_fid
;
1415 return SMB2_read(xid
, parms
, bytes_read
, buf
, buf_type
);
1419 smb2_sync_write(const unsigned int xid
, struct cifs_fid
*pfid
,
1420 struct cifs_io_parms
*parms
, unsigned int *written
,
1421 struct kvec
*iov
, unsigned long nr_segs
)
1424 parms
->persistent_fid
= pfid
->persistent_fid
;
1425 parms
->volatile_fid
= pfid
->volatile_fid
;
1426 return SMB2_write(xid
, parms
, written
, iov
, nr_segs
);
1429 /* Set or clear the SPARSE_FILE attribute based on value passed in setsparse */
1430 static bool smb2_set_sparse(const unsigned int xid
, struct cifs_tcon
*tcon
,
1431 struct cifsFileInfo
*cfile
, struct inode
*inode
, __u8 setsparse
)
1433 struct cifsInodeInfo
*cifsi
;
1436 cifsi
= CIFS_I(inode
);
1438 /* if file already sparse don't bother setting sparse again */
1439 if ((cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) && setsparse
)
1440 return true; /* already sparse */
1442 if (!(cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) && !setsparse
)
1443 return true; /* already not sparse */
1446 * Can't check for sparse support on share the usual way via the
1447 * FS attribute info (FILE_SUPPORTS_SPARSE_FILES) on the share
1448 * since Samba server doesn't set the flag on the share, yet
1449 * supports the set sparse FSCTL and returns sparse correctly
1450 * in the file attributes. If we fail setting sparse though we
1451 * mark that server does not support sparse files for this share
1452 * to avoid repeatedly sending the unsupported fsctl to server
1453 * if the file is repeatedly extended.
1455 if (tcon
->broken_sparse_sup
)
1458 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
1459 cfile
->fid
.volatile_fid
, FSCTL_SET_SPARSE
,
1461 &setsparse
, 1, NULL
, NULL
);
1463 tcon
->broken_sparse_sup
= true;
1464 cifs_dbg(FYI
, "set sparse rc = %d\n", rc
);
1469 cifsi
->cifsAttrs
|= FILE_ATTRIBUTE_SPARSE_FILE
;
1471 cifsi
->cifsAttrs
&= (~FILE_ATTRIBUTE_SPARSE_FILE
);
1477 smb2_set_file_size(const unsigned int xid
, struct cifs_tcon
*tcon
,
1478 struct cifsFileInfo
*cfile
, __u64 size
, bool set_alloc
)
1480 __le64 eof
= cpu_to_le64(size
);
1481 struct inode
*inode
;
1484 * If extending file more than one page make sparse. Many Linux fs
1485 * make files sparse by default when extending via ftruncate
1487 inode
= d_inode(cfile
->dentry
);
1489 if (!set_alloc
&& (size
> inode
->i_size
+ 8192)) {
1490 __u8 set_sparse
= 1;
1492 /* whether set sparse succeeds or not, extend the file */
1493 smb2_set_sparse(xid
, tcon
, cfile
, inode
, set_sparse
);
1496 return SMB2_set_eof(xid
, tcon
, cfile
->fid
.persistent_fid
,
1497 cfile
->fid
.volatile_fid
, cfile
->pid
, &eof
);
1501 smb2_duplicate_extents(const unsigned int xid
,
1502 struct cifsFileInfo
*srcfile
,
1503 struct cifsFileInfo
*trgtfile
, u64 src_off
,
1504 u64 len
, u64 dest_off
)
1507 unsigned int ret_data_len
;
1508 struct duplicate_extents_to_file dup_ext_buf
;
1509 struct cifs_tcon
*tcon
= tlink_tcon(trgtfile
->tlink
);
1511 /* server fileays advertise duplicate extent support with this flag */
1512 if ((le32_to_cpu(tcon
->fsAttrInfo
.Attributes
) &
1513 FILE_SUPPORTS_BLOCK_REFCOUNTING
) == 0)
1516 dup_ext_buf
.VolatileFileHandle
= srcfile
->fid
.volatile_fid
;
1517 dup_ext_buf
.PersistentFileHandle
= srcfile
->fid
.persistent_fid
;
1518 dup_ext_buf
.SourceFileOffset
= cpu_to_le64(src_off
);
1519 dup_ext_buf
.TargetFileOffset
= cpu_to_le64(dest_off
);
1520 dup_ext_buf
.ByteCount
= cpu_to_le64(len
);
1521 cifs_dbg(FYI
, "duplicate extents: src off %lld dst off %lld len %lld",
1522 src_off
, dest_off
, len
);
1524 rc
= smb2_set_file_size(xid
, tcon
, trgtfile
, dest_off
+ len
, false);
1526 goto duplicate_extents_out
;
1528 rc
= SMB2_ioctl(xid
, tcon
, trgtfile
->fid
.persistent_fid
,
1529 trgtfile
->fid
.volatile_fid
,
1530 FSCTL_DUPLICATE_EXTENTS_TO_FILE
,
1531 true /* is_fsctl */,
1532 (char *)&dup_ext_buf
,
1533 sizeof(struct duplicate_extents_to_file
),
1537 if (ret_data_len
> 0)
1538 cifs_dbg(FYI
, "non-zero response length in duplicate extents");
1540 duplicate_extents_out
:
1545 smb2_set_compression(const unsigned int xid
, struct cifs_tcon
*tcon
,
1546 struct cifsFileInfo
*cfile
)
1548 return SMB2_set_compression(xid
, tcon
, cfile
->fid
.persistent_fid
,
1549 cfile
->fid
.volatile_fid
);
1553 smb3_set_integrity(const unsigned int xid
, struct cifs_tcon
*tcon
,
1554 struct cifsFileInfo
*cfile
)
1556 struct fsctl_set_integrity_information_req integr_info
;
1557 unsigned int ret_data_len
;
1559 integr_info
.ChecksumAlgorithm
= cpu_to_le16(CHECKSUM_TYPE_UNCHANGED
);
1560 integr_info
.Flags
= 0;
1561 integr_info
.Reserved
= 0;
1563 return SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
1564 cfile
->fid
.volatile_fid
,
1565 FSCTL_SET_INTEGRITY_INFORMATION
,
1566 true /* is_fsctl */,
1567 (char *)&integr_info
,
1568 sizeof(struct fsctl_set_integrity_information_req
),
1574 /* GMT Token is @GMT-YYYY.MM.DD-HH.MM.SS Unicode which is 48 bytes + null */
1575 #define GMT_TOKEN_SIZE 50
1578 * Input buffer contains (empty) struct smb_snapshot array with size filled in
1579 * For output see struct SRV_SNAPSHOT_ARRAY in MS-SMB2 section 2.2.32.2
1582 smb3_enum_snapshots(const unsigned int xid
, struct cifs_tcon
*tcon
,
1583 struct cifsFileInfo
*cfile
, void __user
*ioc_buf
)
1585 char *retbuf
= NULL
;
1586 unsigned int ret_data_len
= 0;
1588 struct smb_snapshot_array snapshot_in
;
1590 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
1591 cfile
->fid
.volatile_fid
,
1592 FSCTL_SRV_ENUMERATE_SNAPSHOTS
,
1593 true /* is_fsctl */,
1594 NULL
, 0 /* no input data */,
1597 cifs_dbg(FYI
, "enum snaphots ioctl returned %d and ret buflen is %d\n",
1602 if (ret_data_len
&& (ioc_buf
!= NULL
) && (retbuf
!= NULL
)) {
1604 if (copy_from_user(&snapshot_in
, ioc_buf
,
1605 sizeof(struct smb_snapshot_array
))) {
1612 * Check for min size, ie not large enough to fit even one GMT
1613 * token (snapshot). On the first ioctl some users may pass in
1614 * smaller size (or zero) to simply get the size of the array
1615 * so the user space caller can allocate sufficient memory
1616 * and retry the ioctl again with larger array size sufficient
1617 * to hold all of the snapshot GMT tokens on the second try.
1619 if (snapshot_in
.snapshot_array_size
< GMT_TOKEN_SIZE
)
1620 ret_data_len
= sizeof(struct smb_snapshot_array
);
1623 * We return struct SRV_SNAPSHOT_ARRAY, followed by
1624 * the snapshot array (of 50 byte GMT tokens) each
1625 * representing an available previous version of the data
1627 if (ret_data_len
> (snapshot_in
.snapshot_array_size
+
1628 sizeof(struct smb_snapshot_array
)))
1629 ret_data_len
= snapshot_in
.snapshot_array_size
+
1630 sizeof(struct smb_snapshot_array
);
1632 if (copy_to_user(ioc_buf
, retbuf
, ret_data_len
))
1641 smb2_query_dir_first(const unsigned int xid
, struct cifs_tcon
*tcon
,
1642 const char *path
, struct cifs_sb_info
*cifs_sb
,
1643 struct cifs_fid
*fid
, __u16 search_flags
,
1644 struct cifs_search_info
*srch_inf
)
1648 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
1649 struct cifs_open_parms oparms
;
1651 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
1656 oparms
.desired_access
= FILE_READ_ATTRIBUTES
| FILE_READ_DATA
;
1657 oparms
.disposition
= FILE_OPEN
;
1658 if (backup_cred(cifs_sb
))
1659 oparms
.create_options
= CREATE_OPEN_BACKUP_INTENT
;
1661 oparms
.create_options
= 0;
1663 oparms
.reconnect
= false;
1665 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
);
1668 cifs_dbg(FYI
, "open dir failed rc=%d\n", rc
);
1672 srch_inf
->entries_in_buffer
= 0;
1673 srch_inf
->index_of_last_entry
= 2;
1675 rc
= SMB2_query_directory(xid
, tcon
, fid
->persistent_fid
,
1676 fid
->volatile_fid
, 0, srch_inf
);
1678 cifs_dbg(FYI
, "query directory failed rc=%d\n", rc
);
1679 SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
1685 smb2_query_dir_next(const unsigned int xid
, struct cifs_tcon
*tcon
,
1686 struct cifs_fid
*fid
, __u16 search_flags
,
1687 struct cifs_search_info
*srch_inf
)
1689 return SMB2_query_directory(xid
, tcon
, fid
->persistent_fid
,
1690 fid
->volatile_fid
, 0, srch_inf
);
1694 smb2_close_dir(const unsigned int xid
, struct cifs_tcon
*tcon
,
1695 struct cifs_fid
*fid
)
1697 return SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
1701 * If we negotiate SMB2 protocol and get STATUS_PENDING - update
1702 * the number of credits and return true. Otherwise - return false.
1705 smb2_is_status_pending(char *buf
, struct TCP_Server_Info
*server
, int length
)
1707 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
1709 if (shdr
->Status
!= STATUS_PENDING
)
1713 spin_lock(&server
->req_lock
);
1714 server
->credits
+= le16_to_cpu(shdr
->CreditRequest
);
1715 spin_unlock(&server
->req_lock
);
1716 wake_up(&server
->request_q
);
1723 smb2_is_session_expired(char *buf
)
1725 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
1727 if (shdr
->Status
!= STATUS_NETWORK_SESSION_EXPIRED
&&
1728 shdr
->Status
!= STATUS_USER_SESSION_DELETED
)
1731 trace_smb3_ses_expired(shdr
->TreeId
, shdr
->SessionId
,
1732 le16_to_cpu(shdr
->Command
),
1733 le64_to_cpu(shdr
->MessageId
));
1734 cifs_dbg(FYI
, "Session expired or deleted\n");
1740 smb2_oplock_response(struct cifs_tcon
*tcon
, struct cifs_fid
*fid
,
1741 struct cifsInodeInfo
*cinode
)
1743 if (tcon
->ses
->server
->capabilities
& SMB2_GLOBAL_CAP_LEASING
)
1744 return SMB2_lease_break(0, tcon
, cinode
->lease_key
,
1745 smb2_get_lease_state(cinode
));
1747 return SMB2_oplock_break(0, tcon
, fid
->persistent_fid
,
1749 CIFS_CACHE_READ(cinode
) ? 1 : 0);
1753 smb2_set_related(struct smb_rqst
*rqst
)
1755 struct smb2_sync_hdr
*shdr
;
1757 shdr
= (struct smb2_sync_hdr
*)(rqst
->rq_iov
[0].iov_base
);
1758 shdr
->Flags
|= SMB2_FLAGS_RELATED_OPERATIONS
;
1761 char smb2_padding
[7] = {0, 0, 0, 0, 0, 0, 0};
1764 smb2_set_next_command(struct TCP_Server_Info
*server
, struct smb_rqst
*rqst
)
1766 struct smb2_sync_hdr
*shdr
;
1767 unsigned long len
= smb_rqst_len(server
, rqst
);
1769 /* SMB headers in a compound are 8 byte aligned. */
1771 rqst
->rq_iov
[rqst
->rq_nvec
].iov_base
= smb2_padding
;
1772 rqst
->rq_iov
[rqst
->rq_nvec
].iov_len
= 8 - (len
& 7);
1774 len
= smb_rqst_len(server
, rqst
);
1777 shdr
= (struct smb2_sync_hdr
*)(rqst
->rq_iov
[0].iov_base
);
1778 shdr
->NextCommand
= cpu_to_le32(len
);
1782 smb2_queryfs(const unsigned int xid
, struct cifs_tcon
*tcon
,
1783 struct kstatfs
*buf
)
1785 struct smb2_query_info_rsp
*rsp
;
1786 struct smb2_fs_full_size_info
*info
= NULL
;
1787 struct smb_rqst rqst
[3];
1788 int resp_buftype
[3];
1789 struct kvec rsp_iov
[3];
1790 struct kvec open_iov
[SMB2_CREATE_IOV_SIZE
];
1791 struct kvec qi_iov
[1];
1792 struct kvec close_iov
[1];
1793 struct cifs_ses
*ses
= tcon
->ses
;
1794 struct TCP_Server_Info
*server
= ses
->server
;
1795 __le16 srch_path
= 0; /* Null - open root of share */
1796 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
1797 struct cifs_open_parms oparms
;
1798 struct cifs_fid fid
;
1802 if (smb3_encryption_required(tcon
))
1803 flags
|= CIFS_TRANSFORM_REQ
;
1805 memset(rqst
, 0, sizeof(rqst
));
1806 resp_buftype
[0] = resp_buftype
[1] = resp_buftype
[2] = CIFS_NO_BUFFER
;
1807 memset(rsp_iov
, 0, sizeof(rsp_iov
));
1809 memset(&open_iov
, 0, sizeof(open_iov
));
1810 rqst
[0].rq_iov
= open_iov
;
1811 rqst
[0].rq_nvec
= SMB2_CREATE_IOV_SIZE
;
1814 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
1815 oparms
.disposition
= FILE_OPEN
;
1816 oparms
.create_options
= 0;
1818 oparms
.reconnect
= false;
1820 rc
= SMB2_open_init(tcon
, &rqst
[0], &oplock
, &oparms
, &srch_path
);
1823 smb2_set_next_command(server
, &rqst
[0]);
1825 memset(&qi_iov
, 0, sizeof(qi_iov
));
1826 rqst
[1].rq_iov
= qi_iov
;
1827 rqst
[1].rq_nvec
= 1;
1829 rc
= SMB2_query_info_init(tcon
, &rqst
[1], COMPOUND_FID
, COMPOUND_FID
,
1830 FS_FULL_SIZE_INFORMATION
,
1831 SMB2_O_INFO_FILESYSTEM
, 0,
1832 sizeof(struct smb2_fs_full_size_info
), 0,
1836 smb2_set_next_command(server
, &rqst
[1]);
1837 smb2_set_related(&rqst
[1]);
1839 memset(&close_iov
, 0, sizeof(close_iov
));
1840 rqst
[2].rq_iov
= close_iov
;
1841 rqst
[2].rq_nvec
= 1;
1843 rc
= SMB2_close_init(tcon
, &rqst
[2], COMPOUND_FID
, COMPOUND_FID
);
1846 smb2_set_related(&rqst
[2]);
1848 rc
= compound_send_recv(xid
, ses
, flags
, 3, rqst
,
1849 resp_buftype
, rsp_iov
);
1853 rsp
= (struct smb2_query_info_rsp
*)rsp_iov
[1].iov_base
;
1854 buf
->f_type
= SMB2_MAGIC_NUMBER
;
1855 info
= (struct smb2_fs_full_size_info
*)(
1856 le16_to_cpu(rsp
->OutputBufferOffset
) + (char *)rsp
);
1857 rc
= smb2_validate_iov(le16_to_cpu(rsp
->OutputBufferOffset
),
1858 le32_to_cpu(rsp
->OutputBufferLength
),
1860 sizeof(struct smb2_fs_full_size_info
));
1862 smb2_copy_fs_info_to_kstatfs(info
, buf
);
1865 SMB2_open_free(&rqst
[0]);
1866 SMB2_query_info_free(&rqst
[1]);
1867 SMB2_close_free(&rqst
[2]);
1868 free_rsp_buf(resp_buftype
[0], rsp_iov
[0].iov_base
);
1869 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
1870 free_rsp_buf(resp_buftype
[2], rsp_iov
[2].iov_base
);
1875 smb311_queryfs(const unsigned int xid
, struct cifs_tcon
*tcon
,
1876 struct kstatfs
*buf
)
1879 __le16 srch_path
= 0; /* Null - open root of share */
1880 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
1881 struct cifs_open_parms oparms
;
1882 struct cifs_fid fid
;
1884 if (!tcon
->posix_extensions
)
1885 return smb2_queryfs(xid
, tcon
, buf
);
1888 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
1889 oparms
.disposition
= FILE_OPEN
;
1890 oparms
.create_options
= 0;
1892 oparms
.reconnect
= false;
1894 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
, NULL
);
1898 rc
= SMB311_posix_qfs_info(xid
, tcon
, fid
.persistent_fid
,
1899 fid
.volatile_fid
, buf
);
1900 buf
->f_type
= SMB2_MAGIC_NUMBER
;
1901 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
1906 smb2_compare_fids(struct cifsFileInfo
*ob1
, struct cifsFileInfo
*ob2
)
1908 return ob1
->fid
.persistent_fid
== ob2
->fid
.persistent_fid
&&
1909 ob1
->fid
.volatile_fid
== ob2
->fid
.volatile_fid
;
1913 smb2_mand_lock(const unsigned int xid
, struct cifsFileInfo
*cfile
, __u64 offset
,
1914 __u64 length
, __u32 type
, int lock
, int unlock
, bool wait
)
1916 if (unlock
&& !lock
)
1917 type
= SMB2_LOCKFLAG_UNLOCK
;
1918 return SMB2_lock(xid
, tlink_tcon(cfile
->tlink
),
1919 cfile
->fid
.persistent_fid
, cfile
->fid
.volatile_fid
,
1920 current
->tgid
, length
, offset
, type
, wait
);
1924 smb2_get_lease_key(struct inode
*inode
, struct cifs_fid
*fid
)
1926 memcpy(fid
->lease_key
, CIFS_I(inode
)->lease_key
, SMB2_LEASE_KEY_SIZE
);
1930 smb2_set_lease_key(struct inode
*inode
, struct cifs_fid
*fid
)
1932 memcpy(CIFS_I(inode
)->lease_key
, fid
->lease_key
, SMB2_LEASE_KEY_SIZE
);
1936 smb2_new_lease_key(struct cifs_fid
*fid
)
1938 generate_random_uuid(fid
->lease_key
);
1942 smb2_get_dfs_refer(const unsigned int xid
, struct cifs_ses
*ses
,
1943 const char *search_name
,
1944 struct dfs_info3_param
**target_nodes
,
1945 unsigned int *num_of_nodes
,
1946 const struct nls_table
*nls_codepage
, int remap
)
1949 __le16
*utf16_path
= NULL
;
1950 int utf16_path_len
= 0;
1951 struct cifs_tcon
*tcon
;
1952 struct fsctl_get_dfs_referral_req
*dfs_req
= NULL
;
1953 struct get_dfs_referral_rsp
*dfs_rsp
= NULL
;
1954 u32 dfs_req_size
= 0, dfs_rsp_size
= 0;
1956 cifs_dbg(FYI
, "smb2_get_dfs_refer path <%s>\n", search_name
);
1959 * Try to use the IPC tcon, otherwise just use any
1961 tcon
= ses
->tcon_ipc
;
1963 spin_lock(&cifs_tcp_ses_lock
);
1964 tcon
= list_first_entry_or_null(&ses
->tcon_list
,
1969 spin_unlock(&cifs_tcp_ses_lock
);
1973 cifs_dbg(VFS
, "session %p has no tcon available for a dfs referral request\n",
1979 utf16_path
= cifs_strndup_to_utf16(search_name
, PATH_MAX
,
1981 nls_codepage
, remap
);
1987 dfs_req_size
= sizeof(*dfs_req
) + utf16_path_len
;
1988 dfs_req
= kzalloc(dfs_req_size
, GFP_KERNEL
);
1994 /* Highest DFS referral version understood */
1995 dfs_req
->MaxReferralLevel
= DFS_VERSION
;
1997 /* Path to resolve in an UTF-16 null-terminated string */
1998 memcpy(dfs_req
->RequestFileName
, utf16_path
, utf16_path_len
);
2001 rc
= SMB2_ioctl(xid
, tcon
, NO_FILE_ID
, NO_FILE_ID
,
2002 FSCTL_DFS_GET_REFERRALS
,
2003 true /* is_fsctl */,
2004 (char *)dfs_req
, dfs_req_size
,
2005 (char **)&dfs_rsp
, &dfs_rsp_size
);
2006 } while (rc
== -EAGAIN
);
2009 if ((rc
!= -ENOENT
) && (rc
!= -EOPNOTSUPP
))
2010 cifs_dbg(VFS
, "ioctl error in smb2_get_dfs_refer rc=%d\n", rc
);
2014 rc
= parse_dfs_referrals(dfs_rsp
, dfs_rsp_size
,
2015 num_of_nodes
, target_nodes
,
2016 nls_codepage
, remap
, search_name
,
2017 true /* is_unicode */);
2019 cifs_dbg(VFS
, "parse error in smb2_get_dfs_refer rc=%d\n", rc
);
2024 if (tcon
&& !tcon
->ipc
) {
2025 /* ipc tcons are not refcounted */
2026 spin_lock(&cifs_tcp_ses_lock
);
2028 spin_unlock(&cifs_tcp_ses_lock
);
2035 #define SMB2_SYMLINK_STRUCT_SIZE \
2036 (sizeof(struct smb2_err_rsp) - 1 + sizeof(struct smb2_symlink_err_rsp))
2039 smb2_query_symlink(const unsigned int xid
, struct cifs_tcon
*tcon
,
2040 const char *full_path
, char **target_path
,
2041 struct cifs_sb_info
*cifs_sb
)
2045 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
2046 struct cifs_open_parms oparms
;
2047 struct cifs_fid fid
;
2048 struct kvec err_iov
= {NULL
, 0};
2049 struct smb2_err_rsp
*err_buf
= NULL
;
2051 struct smb2_symlink_err_rsp
*symlink
;
2052 unsigned int sub_len
;
2053 unsigned int sub_offset
;
2054 unsigned int print_len
;
2055 unsigned int print_offset
;
2057 cifs_dbg(FYI
, "%s: path: %s\n", __func__
, full_path
);
2059 utf16_path
= cifs_convert_path_to_utf16(full_path
, cifs_sb
);
2064 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
2065 oparms
.disposition
= FILE_OPEN
;
2066 if (backup_cred(cifs_sb
))
2067 oparms
.create_options
= CREATE_OPEN_BACKUP_INTENT
;
2069 oparms
.create_options
= 0;
2071 oparms
.reconnect
= false;
2073 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, &err_iov
,
2075 if (!rc
|| !err_iov
.iov_base
) {
2080 err_buf
= err_iov
.iov_base
;
2081 if (le32_to_cpu(err_buf
->ByteCount
) < sizeof(struct smb2_symlink_err_rsp
) ||
2082 err_iov
.iov_len
< SMB2_SYMLINK_STRUCT_SIZE
) {
2087 /* open must fail on symlink - reset rc */
2089 symlink
= (struct smb2_symlink_err_rsp
*)err_buf
->ErrorData
;
2090 sub_len
= le16_to_cpu(symlink
->SubstituteNameLength
);
2091 sub_offset
= le16_to_cpu(symlink
->SubstituteNameOffset
);
2092 print_len
= le16_to_cpu(symlink
->PrintNameLength
);
2093 print_offset
= le16_to_cpu(symlink
->PrintNameOffset
);
2095 if (err_iov
.iov_len
< SMB2_SYMLINK_STRUCT_SIZE
+ sub_offset
+ sub_len
) {
2100 if (err_iov
.iov_len
<
2101 SMB2_SYMLINK_STRUCT_SIZE
+ print_offset
+ print_len
) {
2106 *target_path
= cifs_strndup_from_utf16(
2107 (char *)symlink
->PathBuffer
+ sub_offset
,
2108 sub_len
, true, cifs_sb
->local_nls
);
2109 if (!(*target_path
)) {
2113 convert_delimiter(*target_path
, '/');
2114 cifs_dbg(FYI
, "%s: target path: %s\n", __func__
, *target_path
);
2117 free_rsp_buf(resp_buftype
, err_buf
);
2123 #ifdef CONFIG_CIFS_ACL
2124 static struct cifs_ntsd
*
2125 get_smb2_acl_by_fid(struct cifs_sb_info
*cifs_sb
,
2126 const struct cifs_fid
*cifsfid
, u32
*pacllen
)
2128 struct cifs_ntsd
*pntsd
= NULL
;
2130 int rc
= -EOPNOTSUPP
;
2131 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
2134 return ERR_CAST(tlink
);
2137 cifs_dbg(FYI
, "trying to get acl\n");
2139 rc
= SMB2_query_acl(xid
, tlink_tcon(tlink
), cifsfid
->persistent_fid
,
2140 cifsfid
->volatile_fid
, (void **)&pntsd
, pacllen
);
2143 cifs_put_tlink(tlink
);
2145 cifs_dbg(FYI
, "%s: rc = %d ACL len %d\n", __func__
, rc
, *pacllen
);
2152 static struct cifs_ntsd
*
2153 get_smb2_acl_by_path(struct cifs_sb_info
*cifs_sb
,
2154 const char *path
, u32
*pacllen
)
2156 struct cifs_ntsd
*pntsd
= NULL
;
2157 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
2160 struct cifs_tcon
*tcon
;
2161 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
2162 struct cifs_fid fid
;
2163 struct cifs_open_parms oparms
;
2166 cifs_dbg(FYI
, "get smb3 acl for path %s\n", path
);
2168 return ERR_CAST(tlink
);
2170 tcon
= tlink_tcon(tlink
);
2173 if (backup_cred(cifs_sb
))
2174 oparms
.create_options
= CREATE_OPEN_BACKUP_INTENT
;
2176 oparms
.create_options
= 0;
2178 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
2186 oparms
.desired_access
= READ_CONTROL
;
2187 oparms
.disposition
= FILE_OPEN
;
2189 oparms
.reconnect
= false;
2191 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
);
2194 rc
= SMB2_query_acl(xid
, tlink_tcon(tlink
), fid
.persistent_fid
,
2195 fid
.volatile_fid
, (void **)&pntsd
, pacllen
);
2196 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
2199 cifs_put_tlink(tlink
);
2202 cifs_dbg(FYI
, "%s: rc = %d ACL len %d\n", __func__
, rc
, *pacllen
);
2208 #ifdef CONFIG_CIFS_ACL
2210 set_smb2_acl(struct cifs_ntsd
*pnntsd
, __u32 acllen
,
2211 struct inode
*inode
, const char *path
, int aclflag
)
2213 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
2215 int rc
, access_flags
= 0;
2216 struct cifs_tcon
*tcon
;
2217 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
2218 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
2219 struct cifs_fid fid
;
2220 struct cifs_open_parms oparms
;
2223 cifs_dbg(FYI
, "set smb3 acl for path %s\n", path
);
2225 return PTR_ERR(tlink
);
2227 tcon
= tlink_tcon(tlink
);
2230 if (backup_cred(cifs_sb
))
2231 oparms
.create_options
= CREATE_OPEN_BACKUP_INTENT
;
2233 oparms
.create_options
= 0;
2235 if (aclflag
== CIFS_ACL_OWNER
|| aclflag
== CIFS_ACL_GROUP
)
2236 access_flags
= WRITE_OWNER
;
2238 access_flags
= WRITE_DAC
;
2240 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
2248 oparms
.desired_access
= access_flags
;
2249 oparms
.disposition
= FILE_OPEN
;
2252 oparms
.reconnect
= false;
2254 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
);
2257 rc
= SMB2_set_acl(xid
, tlink_tcon(tlink
), fid
.persistent_fid
,
2258 fid
.volatile_fid
, pnntsd
, acllen
, aclflag
);
2259 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
2262 cifs_put_tlink(tlink
);
2266 #endif /* CIFS_ACL */
2268 /* Retrieve an ACL from the server */
2269 static struct cifs_ntsd
*
2270 get_smb2_acl(struct cifs_sb_info
*cifs_sb
,
2271 struct inode
*inode
, const char *path
,
2274 struct cifs_ntsd
*pntsd
= NULL
;
2275 struct cifsFileInfo
*open_file
= NULL
;
2278 open_file
= find_readable_file(CIFS_I(inode
), true);
2280 return get_smb2_acl_by_path(cifs_sb
, path
, pacllen
);
2282 pntsd
= get_smb2_acl_by_fid(cifs_sb
, &open_file
->fid
, pacllen
);
2283 cifsFileInfo_put(open_file
);
2288 static long smb3_zero_range(struct file
*file
, struct cifs_tcon
*tcon
,
2289 loff_t offset
, loff_t len
, bool keep_size
)
2291 struct inode
*inode
;
2292 struct cifsInodeInfo
*cifsi
;
2293 struct cifsFileInfo
*cfile
= file
->private_data
;
2294 struct file_zero_data_information fsctl_buf
;
2300 inode
= d_inode(cfile
->dentry
);
2301 cifsi
= CIFS_I(inode
);
2303 /* if file not oplocked can't be sure whether asking to extend size */
2304 if (!CIFS_CACHE_READ(cifsi
))
2305 if (keep_size
== false) {
2312 * Must check if file sparse since fallocate -z (zero range) assumes
2313 * non-sparse allocation
2315 if (!(cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
)) {
2322 * need to make sure we are not asked to extend the file since the SMB3
2323 * fsctl does not change the file size. In the future we could change
2324 * this to zero the first part of the range then set the file size
2325 * which for a non sparse file would zero the newly extended range
2327 if (keep_size
== false)
2328 if (i_size_read(inode
) < offset
+ len
) {
2334 cifs_dbg(FYI
, "offset %lld len %lld", offset
, len
);
2336 fsctl_buf
.FileOffset
= cpu_to_le64(offset
);
2337 fsctl_buf
.BeyondFinalZero
= cpu_to_le64(offset
+ len
);
2339 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
2340 cfile
->fid
.volatile_fid
, FSCTL_SET_ZERO_DATA
,
2341 true /* is_fctl */, (char *)&fsctl_buf
,
2342 sizeof(struct file_zero_data_information
), NULL
, NULL
);
2347 static long smb3_punch_hole(struct file
*file
, struct cifs_tcon
*tcon
,
2348 loff_t offset
, loff_t len
)
2350 struct inode
*inode
;
2351 struct cifsInodeInfo
*cifsi
;
2352 struct cifsFileInfo
*cfile
= file
->private_data
;
2353 struct file_zero_data_information fsctl_buf
;
2356 __u8 set_sparse
= 1;
2360 inode
= d_inode(cfile
->dentry
);
2361 cifsi
= CIFS_I(inode
);
2363 /* Need to make file sparse, if not already, before freeing range. */
2364 /* Consider adding equivalent for compressed since it could also work */
2365 if (!smb2_set_sparse(xid
, tcon
, cfile
, inode
, set_sparse
)) {
2371 cifs_dbg(FYI
, "offset %lld len %lld", offset
, len
);
2373 fsctl_buf
.FileOffset
= cpu_to_le64(offset
);
2374 fsctl_buf
.BeyondFinalZero
= cpu_to_le64(offset
+ len
);
2376 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
2377 cfile
->fid
.volatile_fid
, FSCTL_SET_ZERO_DATA
,
2378 true /* is_fctl */, (char *)&fsctl_buf
,
2379 sizeof(struct file_zero_data_information
), NULL
, NULL
);
2384 static long smb3_simple_falloc(struct file
*file
, struct cifs_tcon
*tcon
,
2385 loff_t off
, loff_t len
, bool keep_size
)
2387 struct inode
*inode
;
2388 struct cifsInodeInfo
*cifsi
;
2389 struct cifsFileInfo
*cfile
= file
->private_data
;
2390 long rc
= -EOPNOTSUPP
;
2395 inode
= d_inode(cfile
->dentry
);
2396 cifsi
= CIFS_I(inode
);
2398 /* if file not oplocked can't be sure whether asking to extend size */
2399 if (!CIFS_CACHE_READ(cifsi
))
2400 if (keep_size
== false) {
2406 * Files are non-sparse by default so falloc may be a no-op
2407 * Must check if file sparse. If not sparse, and not extending
2408 * then no need to do anything since file already allocated
2410 if ((cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) == 0) {
2411 if (keep_size
== true)
2413 /* check if extending file */
2414 else if (i_size_read(inode
) >= off
+ len
)
2415 /* not extending file and already not sparse */
2417 /* BB: in future add else clause to extend file */
2424 if ((keep_size
== true) || (i_size_read(inode
) >= off
+ len
)) {
2426 * Check if falloc starts within first few pages of file
2427 * and ends within a few pages of the end of file to
2428 * ensure that most of file is being forced to be
2429 * fallocated now. If so then setting whole file sparse
2430 * ie potentially making a few extra pages at the beginning
2431 * or end of the file non-sparse via set_sparse is harmless.
2433 if ((off
> 8192) || (off
+ len
+ 8192 < i_size_read(inode
))) {
2439 rc
= smb2_set_sparse(xid
, tcon
, cfile
, inode
, false);
2441 /* BB: else ... in future add code to extend file and set sparse */
2449 static long smb3_fallocate(struct file
*file
, struct cifs_tcon
*tcon
, int mode
,
2450 loff_t off
, loff_t len
)
2452 /* KEEP_SIZE already checked for by do_fallocate */
2453 if (mode
& FALLOC_FL_PUNCH_HOLE
)
2454 return smb3_punch_hole(file
, tcon
, off
, len
);
2455 else if (mode
& FALLOC_FL_ZERO_RANGE
) {
2456 if (mode
& FALLOC_FL_KEEP_SIZE
)
2457 return smb3_zero_range(file
, tcon
, off
, len
, true);
2458 return smb3_zero_range(file
, tcon
, off
, len
, false);
2459 } else if (mode
== FALLOC_FL_KEEP_SIZE
)
2460 return smb3_simple_falloc(file
, tcon
, off
, len
, true);
2462 return smb3_simple_falloc(file
, tcon
, off
, len
, false);
2468 smb2_downgrade_oplock(struct TCP_Server_Info
*server
,
2469 struct cifsInodeInfo
*cinode
, bool set_level2
)
2472 server
->ops
->set_oplock_level(cinode
, SMB2_OPLOCK_LEVEL_II
,
2475 server
->ops
->set_oplock_level(cinode
, 0, 0, NULL
);
2479 smb2_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
2480 unsigned int epoch
, bool *purge_cache
)
2483 if (oplock
== SMB2_OPLOCK_LEVEL_NOCHANGE
)
2485 if (oplock
== SMB2_OPLOCK_LEVEL_BATCH
) {
2486 cinode
->oplock
= CIFS_CACHE_RHW_FLG
;
2487 cifs_dbg(FYI
, "Batch Oplock granted on inode %p\n",
2488 &cinode
->vfs_inode
);
2489 } else if (oplock
== SMB2_OPLOCK_LEVEL_EXCLUSIVE
) {
2490 cinode
->oplock
= CIFS_CACHE_RW_FLG
;
2491 cifs_dbg(FYI
, "Exclusive Oplock granted on inode %p\n",
2492 &cinode
->vfs_inode
);
2493 } else if (oplock
== SMB2_OPLOCK_LEVEL_II
) {
2494 cinode
->oplock
= CIFS_CACHE_READ_FLG
;
2495 cifs_dbg(FYI
, "Level II Oplock granted on inode %p\n",
2496 &cinode
->vfs_inode
);
2502 smb21_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
2503 unsigned int epoch
, bool *purge_cache
)
2505 char message
[5] = {0};
2508 if (oplock
== SMB2_OPLOCK_LEVEL_NOCHANGE
)
2512 if (oplock
& SMB2_LEASE_READ_CACHING_HE
) {
2513 cinode
->oplock
|= CIFS_CACHE_READ_FLG
;
2514 strcat(message
, "R");
2516 if (oplock
& SMB2_LEASE_HANDLE_CACHING_HE
) {
2517 cinode
->oplock
|= CIFS_CACHE_HANDLE_FLG
;
2518 strcat(message
, "H");
2520 if (oplock
& SMB2_LEASE_WRITE_CACHING_HE
) {
2521 cinode
->oplock
|= CIFS_CACHE_WRITE_FLG
;
2522 strcat(message
, "W");
2524 if (!cinode
->oplock
)
2525 strcat(message
, "None");
2526 cifs_dbg(FYI
, "%s Lease granted on inode %p\n", message
,
2527 &cinode
->vfs_inode
);
2531 smb3_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
2532 unsigned int epoch
, bool *purge_cache
)
2534 unsigned int old_oplock
= cinode
->oplock
;
2536 smb21_set_oplock_level(cinode
, oplock
, epoch
, purge_cache
);
2539 *purge_cache
= false;
2540 if (old_oplock
== CIFS_CACHE_READ_FLG
) {
2541 if (cinode
->oplock
== CIFS_CACHE_READ_FLG
&&
2542 (epoch
- cinode
->epoch
> 0))
2543 *purge_cache
= true;
2544 else if (cinode
->oplock
== CIFS_CACHE_RH_FLG
&&
2545 (epoch
- cinode
->epoch
> 1))
2546 *purge_cache
= true;
2547 else if (cinode
->oplock
== CIFS_CACHE_RHW_FLG
&&
2548 (epoch
- cinode
->epoch
> 1))
2549 *purge_cache
= true;
2550 else if (cinode
->oplock
== 0 &&
2551 (epoch
- cinode
->epoch
> 0))
2552 *purge_cache
= true;
2553 } else if (old_oplock
== CIFS_CACHE_RH_FLG
) {
2554 if (cinode
->oplock
== CIFS_CACHE_RH_FLG
&&
2555 (epoch
- cinode
->epoch
> 0))
2556 *purge_cache
= true;
2557 else if (cinode
->oplock
== CIFS_CACHE_RHW_FLG
&&
2558 (epoch
- cinode
->epoch
> 1))
2559 *purge_cache
= true;
2561 cinode
->epoch
= epoch
;
2566 smb2_is_read_op(__u32 oplock
)
2568 return oplock
== SMB2_OPLOCK_LEVEL_II
;
2572 smb21_is_read_op(__u32 oplock
)
2574 return (oplock
& SMB2_LEASE_READ_CACHING_HE
) &&
2575 !(oplock
& SMB2_LEASE_WRITE_CACHING_HE
);
2579 map_oplock_to_lease(u8 oplock
)
2581 if (oplock
== SMB2_OPLOCK_LEVEL_EXCLUSIVE
)
2582 return SMB2_LEASE_WRITE_CACHING
| SMB2_LEASE_READ_CACHING
;
2583 else if (oplock
== SMB2_OPLOCK_LEVEL_II
)
2584 return SMB2_LEASE_READ_CACHING
;
2585 else if (oplock
== SMB2_OPLOCK_LEVEL_BATCH
)
2586 return SMB2_LEASE_HANDLE_CACHING
| SMB2_LEASE_READ_CACHING
|
2587 SMB2_LEASE_WRITE_CACHING
;
2592 smb2_create_lease_buf(u8
*lease_key
, u8 oplock
)
2594 struct create_lease
*buf
;
2596 buf
= kzalloc(sizeof(struct create_lease
), GFP_KERNEL
);
2600 memcpy(&buf
->lcontext
.LeaseKey
, lease_key
, SMB2_LEASE_KEY_SIZE
);
2601 buf
->lcontext
.LeaseState
= map_oplock_to_lease(oplock
);
2603 buf
->ccontext
.DataOffset
= cpu_to_le16(offsetof
2604 (struct create_lease
, lcontext
));
2605 buf
->ccontext
.DataLength
= cpu_to_le32(sizeof(struct lease_context
));
2606 buf
->ccontext
.NameOffset
= cpu_to_le16(offsetof
2607 (struct create_lease
, Name
));
2608 buf
->ccontext
.NameLength
= cpu_to_le16(4);
2609 /* SMB2_CREATE_REQUEST_LEASE is "RqLs" */
2618 smb3_create_lease_buf(u8
*lease_key
, u8 oplock
)
2620 struct create_lease_v2
*buf
;
2622 buf
= kzalloc(sizeof(struct create_lease_v2
), GFP_KERNEL
);
2626 memcpy(&buf
->lcontext
.LeaseKey
, lease_key
, SMB2_LEASE_KEY_SIZE
);
2627 buf
->lcontext
.LeaseState
= map_oplock_to_lease(oplock
);
2629 buf
->ccontext
.DataOffset
= cpu_to_le16(offsetof
2630 (struct create_lease_v2
, lcontext
));
2631 buf
->ccontext
.DataLength
= cpu_to_le32(sizeof(struct lease_context_v2
));
2632 buf
->ccontext
.NameOffset
= cpu_to_le16(offsetof
2633 (struct create_lease_v2
, Name
));
2634 buf
->ccontext
.NameLength
= cpu_to_le16(4);
2635 /* SMB2_CREATE_REQUEST_LEASE is "RqLs" */
2644 smb2_parse_lease_buf(void *buf
, unsigned int *epoch
, char *lease_key
)
2646 struct create_lease
*lc
= (struct create_lease
*)buf
;
2648 *epoch
= 0; /* not used */
2649 if (lc
->lcontext
.LeaseFlags
& SMB2_LEASE_FLAG_BREAK_IN_PROGRESS
)
2650 return SMB2_OPLOCK_LEVEL_NOCHANGE
;
2651 return le32_to_cpu(lc
->lcontext
.LeaseState
);
2655 smb3_parse_lease_buf(void *buf
, unsigned int *epoch
, char *lease_key
)
2657 struct create_lease_v2
*lc
= (struct create_lease_v2
*)buf
;
2659 *epoch
= le16_to_cpu(lc
->lcontext
.Epoch
);
2660 if (lc
->lcontext
.LeaseFlags
& SMB2_LEASE_FLAG_BREAK_IN_PROGRESS
)
2661 return SMB2_OPLOCK_LEVEL_NOCHANGE
;
2663 memcpy(lease_key
, &lc
->lcontext
.LeaseKey
, SMB2_LEASE_KEY_SIZE
);
2664 return le32_to_cpu(lc
->lcontext
.LeaseState
);
2668 smb2_wp_retry_size(struct inode
*inode
)
2670 return min_t(unsigned int, CIFS_SB(inode
->i_sb
)->wsize
,
2671 SMB2_MAX_BUFFER_SIZE
);
2675 smb2_dir_needs_close(struct cifsFileInfo
*cfile
)
2677 return !cfile
->invalidHandle
;
2681 fill_transform_hdr(struct smb2_transform_hdr
*tr_hdr
, unsigned int orig_len
,
2682 struct smb_rqst
*old_rq
)
2684 struct smb2_sync_hdr
*shdr
=
2685 (struct smb2_sync_hdr
*)old_rq
->rq_iov
[0].iov_base
;
2687 memset(tr_hdr
, 0, sizeof(struct smb2_transform_hdr
));
2688 tr_hdr
->ProtocolId
= SMB2_TRANSFORM_PROTO_NUM
;
2689 tr_hdr
->OriginalMessageSize
= cpu_to_le32(orig_len
);
2690 tr_hdr
->Flags
= cpu_to_le16(0x01);
2691 get_random_bytes(&tr_hdr
->Nonce
, SMB3_AES128CMM_NONCE
);
2692 memcpy(&tr_hdr
->SessionId
, &shdr
->SessionId
, 8);
2695 /* We can not use the normal sg_set_buf() as we will sometimes pass a
2696 * stack object as buf.
2698 static inline void smb2_sg_set_buf(struct scatterlist
*sg
, const void *buf
,
2699 unsigned int buflen
)
2701 sg_set_page(sg
, virt_to_page(buf
), buflen
, offset_in_page(buf
));
2704 /* Assumes the first rqst has a transform header as the first iov.
2706 * rqst[0].rq_iov[0] is transform header
2707 * rqst[0].rq_iov[1+] data to be encrypted/decrypted
2708 * rqst[1+].rq_iov[0+] data to be encrypted/decrypted
2710 static struct scatterlist
*
2711 init_sg(int num_rqst
, struct smb_rqst
*rqst
, u8
*sign
)
2713 unsigned int sg_len
;
2714 struct scatterlist
*sg
;
2717 unsigned int idx
= 0;
2721 for (i
= 0; i
< num_rqst
; i
++)
2722 sg_len
+= rqst
[i
].rq_nvec
+ rqst
[i
].rq_npages
;
2724 sg
= kmalloc_array(sg_len
, sizeof(struct scatterlist
), GFP_KERNEL
);
2728 sg_init_table(sg
, sg_len
);
2729 for (i
= 0; i
< num_rqst
; i
++) {
2730 for (j
= 0; j
< rqst
[i
].rq_nvec
; j
++) {
2732 * The first rqst has a transform header where the
2733 * first 20 bytes are not part of the encrypted blob
2735 skip
= (i
== 0) && (j
== 0) ? 20 : 0;
2736 smb2_sg_set_buf(&sg
[idx
++],
2737 rqst
[i
].rq_iov
[j
].iov_base
+ skip
,
2738 rqst
[i
].rq_iov
[j
].iov_len
- skip
);
2741 for (j
= 0; j
< rqst
[i
].rq_npages
; j
++) {
2742 unsigned int len
, offset
;
2744 rqst_page_get_length(&rqst
[i
], j
, &len
, &offset
);
2745 sg_set_page(&sg
[idx
++], rqst
[i
].rq_pages
[j
], len
, offset
);
2748 smb2_sg_set_buf(&sg
[idx
], sign
, SMB2_SIGNATURE_SIZE
);
2753 smb2_get_enc_key(struct TCP_Server_Info
*server
, __u64 ses_id
, int enc
, u8
*key
)
2755 struct cifs_ses
*ses
;
2758 spin_lock(&cifs_tcp_ses_lock
);
2759 list_for_each_entry(ses
, &server
->smb_ses_list
, smb_ses_list
) {
2760 if (ses
->Suid
!= ses_id
)
2762 ses_enc_key
= enc
? ses
->smb3encryptionkey
:
2763 ses
->smb3decryptionkey
;
2764 memcpy(key
, ses_enc_key
, SMB3_SIGN_KEY_SIZE
);
2765 spin_unlock(&cifs_tcp_ses_lock
);
2768 spin_unlock(&cifs_tcp_ses_lock
);
2773 * Encrypt or decrypt @rqst message. @rqst[0] has the following format:
2774 * iov[0] - transform header (associate data),
2775 * iov[1-N] - SMB2 header and pages - data to encrypt.
2776 * On success return encrypted data in iov[1-N] and pages, leave iov[0]
2780 crypt_message(struct TCP_Server_Info
*server
, int num_rqst
,
2781 struct smb_rqst
*rqst
, int enc
)
2783 struct smb2_transform_hdr
*tr_hdr
=
2784 (struct smb2_transform_hdr
*)rqst
[0].rq_iov
[0].iov_base
;
2785 unsigned int assoc_data_len
= sizeof(struct smb2_transform_hdr
) - 20;
2787 struct scatterlist
*sg
;
2788 u8 sign
[SMB2_SIGNATURE_SIZE
] = {};
2789 u8 key
[SMB3_SIGN_KEY_SIZE
];
2790 struct aead_request
*req
;
2792 unsigned int iv_len
;
2793 DECLARE_CRYPTO_WAIT(wait
);
2794 struct crypto_aead
*tfm
;
2795 unsigned int crypt_len
= le32_to_cpu(tr_hdr
->OriginalMessageSize
);
2797 rc
= smb2_get_enc_key(server
, tr_hdr
->SessionId
, enc
, key
);
2799 cifs_dbg(VFS
, "%s: Could not get %scryption key\n", __func__
,
2804 rc
= smb3_crypto_aead_allocate(server
);
2806 cifs_dbg(VFS
, "%s: crypto alloc failed\n", __func__
);
2810 tfm
= enc
? server
->secmech
.ccmaesencrypt
:
2811 server
->secmech
.ccmaesdecrypt
;
2812 rc
= crypto_aead_setkey(tfm
, key
, SMB3_SIGN_KEY_SIZE
);
2814 cifs_dbg(VFS
, "%s: Failed to set aead key %d\n", __func__
, rc
);
2818 rc
= crypto_aead_setauthsize(tfm
, SMB2_SIGNATURE_SIZE
);
2820 cifs_dbg(VFS
, "%s: Failed to set authsize %d\n", __func__
, rc
);
2824 req
= aead_request_alloc(tfm
, GFP_KERNEL
);
2826 cifs_dbg(VFS
, "%s: Failed to alloc aead request", __func__
);
2831 memcpy(sign
, &tr_hdr
->Signature
, SMB2_SIGNATURE_SIZE
);
2832 crypt_len
+= SMB2_SIGNATURE_SIZE
;
2835 sg
= init_sg(num_rqst
, rqst
, sign
);
2837 cifs_dbg(VFS
, "%s: Failed to init sg", __func__
);
2842 iv_len
= crypto_aead_ivsize(tfm
);
2843 iv
= kzalloc(iv_len
, GFP_KERNEL
);
2845 cifs_dbg(VFS
, "%s: Failed to alloc IV", __func__
);
2850 memcpy(iv
+ 1, (char *)tr_hdr
->Nonce
, SMB3_AES128CMM_NONCE
);
2852 aead_request_set_crypt(req
, sg
, sg
, crypt_len
, iv
);
2853 aead_request_set_ad(req
, assoc_data_len
);
2855 aead_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
2856 crypto_req_done
, &wait
);
2858 rc
= crypto_wait_req(enc
? crypto_aead_encrypt(req
)
2859 : crypto_aead_decrypt(req
), &wait
);
2862 memcpy(&tr_hdr
->Signature
, sign
, SMB2_SIGNATURE_SIZE
);
2873 smb3_free_compound_rqst(int num_rqst
, struct smb_rqst
*rqst
)
2877 for (i
= 0; i
< num_rqst
; i
++) {
2878 if (rqst
[i
].rq_pages
) {
2879 for (j
= rqst
[i
].rq_npages
- 1; j
>= 0; j
--)
2880 put_page(rqst
[i
].rq_pages
[j
]);
2881 kfree(rqst
[i
].rq_pages
);
2887 * This function will initialize new_rq and encrypt the content.
2888 * The first entry, new_rq[0], only contains a single iov which contains
2889 * a smb2_transform_hdr and is pre-allocated by the caller.
2890 * This function then populates new_rq[1+] with the content from olq_rq[0+].
2892 * The end result is an array of smb_rqst structures where the first structure
2893 * only contains a single iov for the transform header which we then can pass
2894 * to crypt_message().
2896 * new_rq[0].rq_iov[0] : smb2_transform_hdr pre-allocated by the caller
2897 * new_rq[1+].rq_iov[*] == old_rq[0+].rq_iov[*] : SMB2/3 requests
2900 smb3_init_transform_rq(struct TCP_Server_Info
*server
, int num_rqst
,
2901 struct smb_rqst
*new_rq
, struct smb_rqst
*old_rq
)
2903 struct page
**pages
;
2904 struct smb2_transform_hdr
*tr_hdr
= new_rq
[0].rq_iov
[0].iov_base
;
2905 unsigned int npages
;
2906 unsigned int orig_len
= 0;
2910 for (i
= 1; i
< num_rqst
; i
++) {
2911 npages
= old_rq
[i
- 1].rq_npages
;
2912 pages
= kmalloc_array(npages
, sizeof(struct page
*),
2917 new_rq
[i
].rq_pages
= pages
;
2918 new_rq
[i
].rq_npages
= npages
;
2919 new_rq
[i
].rq_offset
= old_rq
[i
- 1].rq_offset
;
2920 new_rq
[i
].rq_pagesz
= old_rq
[i
- 1].rq_pagesz
;
2921 new_rq
[i
].rq_tailsz
= old_rq
[i
- 1].rq_tailsz
;
2922 new_rq
[i
].rq_iov
= old_rq
[i
- 1].rq_iov
;
2923 new_rq
[i
].rq_nvec
= old_rq
[i
- 1].rq_nvec
;
2925 orig_len
+= smb_rqst_len(server
, &old_rq
[i
- 1]);
2927 for (j
= 0; j
< npages
; j
++) {
2928 pages
[j
] = alloc_page(GFP_KERNEL
|__GFP_HIGHMEM
);
2933 /* copy pages form the old */
2934 for (j
= 0; j
< npages
; j
++) {
2936 unsigned int offset
, len
;
2938 rqst_page_get_length(&new_rq
[i
], j
, &len
, &offset
);
2940 dst
= (char *) kmap(new_rq
[i
].rq_pages
[j
]) + offset
;
2941 src
= (char *) kmap(old_rq
[i
- 1].rq_pages
[j
]) + offset
;
2943 memcpy(dst
, src
, len
);
2944 kunmap(new_rq
[i
].rq_pages
[j
]);
2945 kunmap(old_rq
[i
- 1].rq_pages
[j
]);
2949 /* fill the 1st iov with a transform header */
2950 fill_transform_hdr(tr_hdr
, orig_len
, old_rq
);
2952 rc
= crypt_message(server
, num_rqst
, new_rq
, 1);
2953 cifs_dbg(FYI
, "encrypt message returned %d", rc
);
2960 smb3_free_compound_rqst(num_rqst
- 1, &new_rq
[1]);
2965 smb3_is_transform_hdr(void *buf
)
2967 struct smb2_transform_hdr
*trhdr
= buf
;
2969 return trhdr
->ProtocolId
== SMB2_TRANSFORM_PROTO_NUM
;
2973 decrypt_raw_data(struct TCP_Server_Info
*server
, char *buf
,
2974 unsigned int buf_data_size
, struct page
**pages
,
2975 unsigned int npages
, unsigned int page_data_size
)
2978 struct smb_rqst rqst
= {NULL
};
2981 iov
[0].iov_base
= buf
;
2982 iov
[0].iov_len
= sizeof(struct smb2_transform_hdr
);
2983 iov
[1].iov_base
= buf
+ sizeof(struct smb2_transform_hdr
);
2984 iov
[1].iov_len
= buf_data_size
;
2988 rqst
.rq_pages
= pages
;
2989 rqst
.rq_npages
= npages
;
2990 rqst
.rq_pagesz
= PAGE_SIZE
;
2991 rqst
.rq_tailsz
= (page_data_size
% PAGE_SIZE
) ? : PAGE_SIZE
;
2993 rc
= crypt_message(server
, 1, &rqst
, 0);
2994 cifs_dbg(FYI
, "decrypt message returned %d\n", rc
);
2999 memmove(buf
, iov
[1].iov_base
, buf_data_size
);
3001 server
->total_read
= buf_data_size
+ page_data_size
;
3007 read_data_into_pages(struct TCP_Server_Info
*server
, struct page
**pages
,
3008 unsigned int npages
, unsigned int len
)
3013 for (i
= 0; i
< npages
; i
++) {
3014 struct page
*page
= pages
[i
];
3018 if (len
>= PAGE_SIZE
) {
3019 /* enough data to fill the page */
3023 zero_user(page
, len
, PAGE_SIZE
- len
);
3026 length
= cifs_read_page_from_socket(server
, page
, 0, n
);
3029 server
->total_read
+= length
;
3036 init_read_bvec(struct page
**pages
, unsigned int npages
, unsigned int data_size
,
3037 unsigned int cur_off
, struct bio_vec
**page_vec
)
3039 struct bio_vec
*bvec
;
3042 bvec
= kcalloc(npages
, sizeof(struct bio_vec
), GFP_KERNEL
);
3046 for (i
= 0; i
< npages
; i
++) {
3047 bvec
[i
].bv_page
= pages
[i
];
3048 bvec
[i
].bv_offset
= (i
== 0) ? cur_off
: 0;
3049 bvec
[i
].bv_len
= min_t(unsigned int, PAGE_SIZE
, data_size
);
3050 data_size
-= bvec
[i
].bv_len
;
3053 if (data_size
!= 0) {
3054 cifs_dbg(VFS
, "%s: something went wrong\n", __func__
);
3064 handle_read_data(struct TCP_Server_Info
*server
, struct mid_q_entry
*mid
,
3065 char *buf
, unsigned int buf_len
, struct page
**pages
,
3066 unsigned int npages
, unsigned int page_data_size
)
3068 unsigned int data_offset
;
3069 unsigned int data_len
;
3070 unsigned int cur_off
;
3071 unsigned int cur_page_idx
;
3072 unsigned int pad_len
;
3073 struct cifs_readdata
*rdata
= mid
->callback_data
;
3074 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
3075 struct bio_vec
*bvec
= NULL
;
3076 struct iov_iter iter
;
3079 bool use_rdma_mr
= false;
3081 if (shdr
->Command
!= SMB2_READ
) {
3082 cifs_dbg(VFS
, "only big read responses are supported\n");
3086 if (server
->ops
->is_session_expired
&&
3087 server
->ops
->is_session_expired(buf
)) {
3088 cifs_reconnect(server
);
3089 wake_up(&server
->response_q
);
3093 if (server
->ops
->is_status_pending
&&
3094 server
->ops
->is_status_pending(buf
, server
, 0))
3097 rdata
->result
= server
->ops
->map_error(buf
, false);
3098 if (rdata
->result
!= 0) {
3099 cifs_dbg(FYI
, "%s: server returned error %d\n",
3100 __func__
, rdata
->result
);
3101 dequeue_mid(mid
, rdata
->result
);
3105 data_offset
= server
->ops
->read_data_offset(buf
);
3106 #ifdef CONFIG_CIFS_SMB_DIRECT
3107 use_rdma_mr
= rdata
->mr
;
3109 data_len
= server
->ops
->read_data_length(buf
, use_rdma_mr
);
3111 if (data_offset
< server
->vals
->read_rsp_size
) {
3113 * win2k8 sometimes sends an offset of 0 when the read
3114 * is beyond the EOF. Treat it as if the data starts just after
3117 cifs_dbg(FYI
, "%s: data offset (%u) inside read response header\n",
3118 __func__
, data_offset
);
3119 data_offset
= server
->vals
->read_rsp_size
;
3120 } else if (data_offset
> MAX_CIFS_SMALL_BUFFER_SIZE
) {
3121 /* data_offset is beyond the end of smallbuf */
3122 cifs_dbg(FYI
, "%s: data offset (%u) beyond end of smallbuf\n",
3123 __func__
, data_offset
);
3124 rdata
->result
= -EIO
;
3125 dequeue_mid(mid
, rdata
->result
);
3129 pad_len
= data_offset
- server
->vals
->read_rsp_size
;
3131 if (buf_len
<= data_offset
) {
3132 /* read response payload is in pages */
3133 cur_page_idx
= pad_len
/ PAGE_SIZE
;
3134 cur_off
= pad_len
% PAGE_SIZE
;
3136 if (cur_page_idx
!= 0) {
3137 /* data offset is beyond the 1st page of response */
3138 cifs_dbg(FYI
, "%s: data offset (%u) beyond 1st page of response\n",
3139 __func__
, data_offset
);
3140 rdata
->result
= -EIO
;
3141 dequeue_mid(mid
, rdata
->result
);
3145 if (data_len
> page_data_size
- pad_len
) {
3146 /* data_len is corrupt -- discard frame */
3147 rdata
->result
= -EIO
;
3148 dequeue_mid(mid
, rdata
->result
);
3152 rdata
->result
= init_read_bvec(pages
, npages
, page_data_size
,
3154 if (rdata
->result
!= 0) {
3155 dequeue_mid(mid
, rdata
->result
);
3159 iov_iter_bvec(&iter
, WRITE
, bvec
, npages
, data_len
);
3160 } else if (buf_len
>= data_offset
+ data_len
) {
3161 /* read response payload is in buf */
3162 WARN_ONCE(npages
> 0, "read data can be either in buf or in pages");
3163 iov
.iov_base
= buf
+ data_offset
;
3164 iov
.iov_len
= data_len
;
3165 iov_iter_kvec(&iter
, WRITE
, &iov
, 1, data_len
);
3167 /* read response payload cannot be in both buf and pages */
3168 WARN_ONCE(1, "buf can not contain only a part of read data");
3169 rdata
->result
= -EIO
;
3170 dequeue_mid(mid
, rdata
->result
);
3174 /* set up first iov for signature check */
3175 rdata
->iov
[0].iov_base
= buf
;
3176 rdata
->iov
[0].iov_len
= 4;
3177 rdata
->iov
[1].iov_base
= buf
+ 4;
3178 rdata
->iov
[1].iov_len
= server
->vals
->read_rsp_size
- 4;
3179 cifs_dbg(FYI
, "0: iov_base=%p iov_len=%zu\n",
3180 rdata
->iov
[0].iov_base
, server
->vals
->read_rsp_size
);
3182 length
= rdata
->copy_into_pages(server
, rdata
, &iter
);
3189 dequeue_mid(mid
, false);
3194 receive_encrypted_read(struct TCP_Server_Info
*server
, struct mid_q_entry
**mid
)
3196 char *buf
= server
->smallbuf
;
3197 struct smb2_transform_hdr
*tr_hdr
= (struct smb2_transform_hdr
*)buf
;
3198 unsigned int npages
;
3199 struct page
**pages
;
3201 unsigned int buflen
= server
->pdu_size
;
3205 len
= min_t(unsigned int, buflen
, server
->vals
->read_rsp_size
+
3206 sizeof(struct smb2_transform_hdr
)) - HEADER_SIZE(server
) + 1;
3208 rc
= cifs_read_from_socket(server
, buf
+ HEADER_SIZE(server
) - 1, len
);
3211 server
->total_read
+= rc
;
3213 len
= le32_to_cpu(tr_hdr
->OriginalMessageSize
) -
3214 server
->vals
->read_rsp_size
;
3215 npages
= DIV_ROUND_UP(len
, PAGE_SIZE
);
3217 pages
= kmalloc_array(npages
, sizeof(struct page
*), GFP_KERNEL
);
3223 for (; i
< npages
; i
++) {
3224 pages
[i
] = alloc_page(GFP_KERNEL
|__GFP_HIGHMEM
);
3231 /* read read data into pages */
3232 rc
= read_data_into_pages(server
, pages
, npages
, len
);
3236 rc
= cifs_discard_remaining_data(server
);
3240 rc
= decrypt_raw_data(server
, buf
, server
->vals
->read_rsp_size
,
3241 pages
, npages
, len
);
3245 *mid
= smb2_find_mid(server
, buf
);
3247 cifs_dbg(FYI
, "mid not found\n");
3249 cifs_dbg(FYI
, "mid found\n");
3250 (*mid
)->decrypted
= true;
3251 rc
= handle_read_data(server
, *mid
, buf
,
3252 server
->vals
->read_rsp_size
,
3253 pages
, npages
, len
);
3257 for (i
= i
- 1; i
>= 0; i
--)
3262 cifs_discard_remaining_data(server
);
3267 receive_encrypted_standard(struct TCP_Server_Info
*server
,
3268 struct mid_q_entry
**mids
, char **bufs
,
3272 char *buf
= server
->smallbuf
;
3274 struct smb2_sync_hdr
*shdr
;
3275 unsigned int pdu_length
= server
->pdu_size
;
3276 unsigned int buf_size
;
3277 struct mid_q_entry
*mid_entry
;
3279 char *next_buffer
= NULL
;
3283 /* switch to large buffer if too big for a small one */
3284 if (pdu_length
> MAX_CIFS_SMALL_BUFFER_SIZE
) {
3285 server
->large_buf
= true;
3286 memcpy(server
->bigbuf
, buf
, server
->total_read
);
3287 buf
= server
->bigbuf
;
3290 /* now read the rest */
3291 length
= cifs_read_from_socket(server
, buf
+ HEADER_SIZE(server
) - 1,
3292 pdu_length
- HEADER_SIZE(server
) + 1);
3295 server
->total_read
+= length
;
3297 buf_size
= pdu_length
- sizeof(struct smb2_transform_hdr
);
3298 length
= decrypt_raw_data(server
, buf
, buf_size
, NULL
, 0, 0);
3302 next_is_large
= server
->large_buf
;
3304 shdr
= (struct smb2_sync_hdr
*)buf
;
3305 if (shdr
->NextCommand
) {
3306 if (next_is_large
) {
3307 tmpbuf
= server
->bigbuf
;
3308 next_buffer
= (char *)cifs_buf_get();
3310 tmpbuf
= server
->smallbuf
;
3311 next_buffer
= (char *)cifs_small_buf_get();
3314 tmpbuf
+ le32_to_cpu(shdr
->NextCommand
),
3315 pdu_length
- le32_to_cpu(shdr
->NextCommand
));
3318 mid_entry
= smb2_find_mid(server
, buf
);
3319 if (mid_entry
== NULL
)
3320 cifs_dbg(FYI
, "mid not found\n");
3322 cifs_dbg(FYI
, "mid found\n");
3323 mid_entry
->decrypted
= true;
3324 mid_entry
->resp_buf_size
= server
->pdu_size
;
3327 if (*num_mids
>= MAX_COMPOUND
) {
3328 cifs_dbg(VFS
, "too many PDUs in compound\n");
3331 bufs
[*num_mids
] = buf
;
3332 mids
[(*num_mids
)++] = mid_entry
;
3334 if (mid_entry
&& mid_entry
->handle
)
3335 ret
= mid_entry
->handle(server
, mid_entry
);
3337 ret
= cifs_handle_standard(server
, mid_entry
);
3339 if (ret
== 0 && shdr
->NextCommand
) {
3340 pdu_length
-= le32_to_cpu(shdr
->NextCommand
);
3341 server
->large_buf
= next_is_large
;
3343 server
->bigbuf
= next_buffer
;
3345 server
->smallbuf
= next_buffer
;
3347 buf
+= le32_to_cpu(shdr
->NextCommand
);
3355 smb3_receive_transform(struct TCP_Server_Info
*server
,
3356 struct mid_q_entry
**mids
, char **bufs
, int *num_mids
)
3358 char *buf
= server
->smallbuf
;
3359 unsigned int pdu_length
= server
->pdu_size
;
3360 struct smb2_transform_hdr
*tr_hdr
= (struct smb2_transform_hdr
*)buf
;
3361 unsigned int orig_len
= le32_to_cpu(tr_hdr
->OriginalMessageSize
);
3363 if (pdu_length
< sizeof(struct smb2_transform_hdr
) +
3364 sizeof(struct smb2_sync_hdr
)) {
3365 cifs_dbg(VFS
, "Transform message is too small (%u)\n",
3367 cifs_reconnect(server
);
3368 wake_up(&server
->response_q
);
3369 return -ECONNABORTED
;
3372 if (pdu_length
< orig_len
+ sizeof(struct smb2_transform_hdr
)) {
3373 cifs_dbg(VFS
, "Transform message is broken\n");
3374 cifs_reconnect(server
);
3375 wake_up(&server
->response_q
);
3376 return -ECONNABORTED
;
3379 /* TODO: add support for compounds containing READ. */
3380 if (pdu_length
> CIFSMaxBufSize
+ MAX_HEADER_SIZE(server
))
3381 return receive_encrypted_read(server
, &mids
[0]);
3383 return receive_encrypted_standard(server
, mids
, bufs
, num_mids
);
3387 smb3_handle_read_data(struct TCP_Server_Info
*server
, struct mid_q_entry
*mid
)
3389 char *buf
= server
->large_buf
? server
->bigbuf
: server
->smallbuf
;
3391 return handle_read_data(server
, mid
, buf
, server
->pdu_size
,
3396 smb2_next_header(char *buf
)
3398 struct smb2_sync_hdr
*hdr
= (struct smb2_sync_hdr
*)buf
;
3399 struct smb2_transform_hdr
*t_hdr
= (struct smb2_transform_hdr
*)buf
;
3401 if (hdr
->ProtocolId
== SMB2_TRANSFORM_PROTO_NUM
)
3402 return sizeof(struct smb2_transform_hdr
) +
3403 le32_to_cpu(t_hdr
->OriginalMessageSize
);
3405 return le32_to_cpu(hdr
->NextCommand
);
3408 struct smb_version_operations smb20_operations
= {
3409 .compare_fids
= smb2_compare_fids
,
3410 .setup_request
= smb2_setup_request
,
3411 .setup_async_request
= smb2_setup_async_request
,
3412 .check_receive
= smb2_check_receive
,
3413 .add_credits
= smb2_add_credits
,
3414 .set_credits
= smb2_set_credits
,
3415 .get_credits_field
= smb2_get_credits_field
,
3416 .get_credits
= smb2_get_credits
,
3417 .wait_mtu_credits
= cifs_wait_mtu_credits
,
3418 .get_next_mid
= smb2_get_next_mid
,
3419 .read_data_offset
= smb2_read_data_offset
,
3420 .read_data_length
= smb2_read_data_length
,
3421 .map_error
= map_smb2_to_linux_error
,
3422 .find_mid
= smb2_find_mid
,
3423 .check_message
= smb2_check_message
,
3424 .dump_detail
= smb2_dump_detail
,
3425 .clear_stats
= smb2_clear_stats
,
3426 .print_stats
= smb2_print_stats
,
3427 .is_oplock_break
= smb2_is_valid_oplock_break
,
3428 .handle_cancelled_mid
= smb2_handle_cancelled_mid
,
3429 .downgrade_oplock
= smb2_downgrade_oplock
,
3430 .need_neg
= smb2_need_neg
,
3431 .negotiate
= smb2_negotiate
,
3432 .negotiate_wsize
= smb2_negotiate_wsize
,
3433 .negotiate_rsize
= smb2_negotiate_rsize
,
3434 .sess_setup
= SMB2_sess_setup
,
3435 .logoff
= SMB2_logoff
,
3436 .tree_connect
= SMB2_tcon
,
3437 .tree_disconnect
= SMB2_tdis
,
3438 .qfs_tcon
= smb2_qfs_tcon
,
3439 .is_path_accessible
= smb2_is_path_accessible
,
3440 .can_echo
= smb2_can_echo
,
3442 .query_path_info
= smb2_query_path_info
,
3443 .get_srv_inum
= smb2_get_srv_inum
,
3444 .query_file_info
= smb2_query_file_info
,
3445 .set_path_size
= smb2_set_path_size
,
3446 .set_file_size
= smb2_set_file_size
,
3447 .set_file_info
= smb2_set_file_info
,
3448 .set_compression
= smb2_set_compression
,
3449 .mkdir
= smb2_mkdir
,
3450 .mkdir_setinfo
= smb2_mkdir_setinfo
,
3451 .rmdir
= smb2_rmdir
,
3452 .unlink
= smb2_unlink
,
3453 .rename
= smb2_rename_path
,
3454 .create_hardlink
= smb2_create_hardlink
,
3455 .query_symlink
= smb2_query_symlink
,
3456 .query_mf_symlink
= smb3_query_mf_symlink
,
3457 .create_mf_symlink
= smb3_create_mf_symlink
,
3458 .open
= smb2_open_file
,
3459 .set_fid
= smb2_set_fid
,
3460 .close
= smb2_close_file
,
3461 .flush
= smb2_flush_file
,
3462 .async_readv
= smb2_async_readv
,
3463 .async_writev
= smb2_async_writev
,
3464 .sync_read
= smb2_sync_read
,
3465 .sync_write
= smb2_sync_write
,
3466 .query_dir_first
= smb2_query_dir_first
,
3467 .query_dir_next
= smb2_query_dir_next
,
3468 .close_dir
= smb2_close_dir
,
3469 .calc_smb_size
= smb2_calc_size
,
3470 .is_status_pending
= smb2_is_status_pending
,
3471 .is_session_expired
= smb2_is_session_expired
,
3472 .oplock_response
= smb2_oplock_response
,
3473 .queryfs
= smb2_queryfs
,
3474 .mand_lock
= smb2_mand_lock
,
3475 .mand_unlock_range
= smb2_unlock_range
,
3476 .push_mand_locks
= smb2_push_mandatory_locks
,
3477 .get_lease_key
= smb2_get_lease_key
,
3478 .set_lease_key
= smb2_set_lease_key
,
3479 .new_lease_key
= smb2_new_lease_key
,
3480 .calc_signature
= smb2_calc_signature
,
3481 .is_read_op
= smb2_is_read_op
,
3482 .set_oplock_level
= smb2_set_oplock_level
,
3483 .create_lease_buf
= smb2_create_lease_buf
,
3484 .parse_lease_buf
= smb2_parse_lease_buf
,
3485 .copychunk_range
= smb2_copychunk_range
,
3486 .wp_retry_size
= smb2_wp_retry_size
,
3487 .dir_needs_close
= smb2_dir_needs_close
,
3488 .get_dfs_refer
= smb2_get_dfs_refer
,
3489 .select_sectype
= smb2_select_sectype
,
3490 #ifdef CONFIG_CIFS_XATTR
3491 .query_all_EAs
= smb2_query_eas
,
3492 .set_EA
= smb2_set_ea
,
3493 #endif /* CIFS_XATTR */
3494 #ifdef CONFIG_CIFS_ACL
3495 .get_acl
= get_smb2_acl
,
3496 .get_acl_by_fid
= get_smb2_acl_by_fid
,
3497 .set_acl
= set_smb2_acl
,
3498 #endif /* CIFS_ACL */
3499 .next_header
= smb2_next_header
,
3500 .ioctl_query_info
= smb2_ioctl_query_info
,
3503 struct smb_version_operations smb21_operations
= {
3504 .compare_fids
= smb2_compare_fids
,
3505 .setup_request
= smb2_setup_request
,
3506 .setup_async_request
= smb2_setup_async_request
,
3507 .check_receive
= smb2_check_receive
,
3508 .add_credits
= smb2_add_credits
,
3509 .set_credits
= smb2_set_credits
,
3510 .get_credits_field
= smb2_get_credits_field
,
3511 .get_credits
= smb2_get_credits
,
3512 .wait_mtu_credits
= smb2_wait_mtu_credits
,
3513 .get_next_mid
= smb2_get_next_mid
,
3514 .read_data_offset
= smb2_read_data_offset
,
3515 .read_data_length
= smb2_read_data_length
,
3516 .map_error
= map_smb2_to_linux_error
,
3517 .find_mid
= smb2_find_mid
,
3518 .check_message
= smb2_check_message
,
3519 .dump_detail
= smb2_dump_detail
,
3520 .clear_stats
= smb2_clear_stats
,
3521 .print_stats
= smb2_print_stats
,
3522 .is_oplock_break
= smb2_is_valid_oplock_break
,
3523 .handle_cancelled_mid
= smb2_handle_cancelled_mid
,
3524 .downgrade_oplock
= smb2_downgrade_oplock
,
3525 .need_neg
= smb2_need_neg
,
3526 .negotiate
= smb2_negotiate
,
3527 .negotiate_wsize
= smb2_negotiate_wsize
,
3528 .negotiate_rsize
= smb2_negotiate_rsize
,
3529 .sess_setup
= SMB2_sess_setup
,
3530 .logoff
= SMB2_logoff
,
3531 .tree_connect
= SMB2_tcon
,
3532 .tree_disconnect
= SMB2_tdis
,
3533 .qfs_tcon
= smb2_qfs_tcon
,
3534 .is_path_accessible
= smb2_is_path_accessible
,
3535 .can_echo
= smb2_can_echo
,
3537 .query_path_info
= smb2_query_path_info
,
3538 .get_srv_inum
= smb2_get_srv_inum
,
3539 .query_file_info
= smb2_query_file_info
,
3540 .set_path_size
= smb2_set_path_size
,
3541 .set_file_size
= smb2_set_file_size
,
3542 .set_file_info
= smb2_set_file_info
,
3543 .set_compression
= smb2_set_compression
,
3544 .mkdir
= smb2_mkdir
,
3545 .mkdir_setinfo
= smb2_mkdir_setinfo
,
3546 .rmdir
= smb2_rmdir
,
3547 .unlink
= smb2_unlink
,
3548 .rename
= smb2_rename_path
,
3549 .create_hardlink
= smb2_create_hardlink
,
3550 .query_symlink
= smb2_query_symlink
,
3551 .query_mf_symlink
= smb3_query_mf_symlink
,
3552 .create_mf_symlink
= smb3_create_mf_symlink
,
3553 .open
= smb2_open_file
,
3554 .set_fid
= smb2_set_fid
,
3555 .close
= smb2_close_file
,
3556 .flush
= smb2_flush_file
,
3557 .async_readv
= smb2_async_readv
,
3558 .async_writev
= smb2_async_writev
,
3559 .sync_read
= smb2_sync_read
,
3560 .sync_write
= smb2_sync_write
,
3561 .query_dir_first
= smb2_query_dir_first
,
3562 .query_dir_next
= smb2_query_dir_next
,
3563 .close_dir
= smb2_close_dir
,
3564 .calc_smb_size
= smb2_calc_size
,
3565 .is_status_pending
= smb2_is_status_pending
,
3566 .is_session_expired
= smb2_is_session_expired
,
3567 .oplock_response
= smb2_oplock_response
,
3568 .queryfs
= smb2_queryfs
,
3569 .mand_lock
= smb2_mand_lock
,
3570 .mand_unlock_range
= smb2_unlock_range
,
3571 .push_mand_locks
= smb2_push_mandatory_locks
,
3572 .get_lease_key
= smb2_get_lease_key
,
3573 .set_lease_key
= smb2_set_lease_key
,
3574 .new_lease_key
= smb2_new_lease_key
,
3575 .calc_signature
= smb2_calc_signature
,
3576 .is_read_op
= smb21_is_read_op
,
3577 .set_oplock_level
= smb21_set_oplock_level
,
3578 .create_lease_buf
= smb2_create_lease_buf
,
3579 .parse_lease_buf
= smb2_parse_lease_buf
,
3580 .copychunk_range
= smb2_copychunk_range
,
3581 .wp_retry_size
= smb2_wp_retry_size
,
3582 .dir_needs_close
= smb2_dir_needs_close
,
3583 .enum_snapshots
= smb3_enum_snapshots
,
3584 .get_dfs_refer
= smb2_get_dfs_refer
,
3585 .select_sectype
= smb2_select_sectype
,
3586 #ifdef CONFIG_CIFS_XATTR
3587 .query_all_EAs
= smb2_query_eas
,
3588 .set_EA
= smb2_set_ea
,
3589 #endif /* CIFS_XATTR */
3590 #ifdef CONFIG_CIFS_ACL
3591 .get_acl
= get_smb2_acl
,
3592 .get_acl_by_fid
= get_smb2_acl_by_fid
,
3593 .set_acl
= set_smb2_acl
,
3594 #endif /* CIFS_ACL */
3595 .next_header
= smb2_next_header
,
3596 .ioctl_query_info
= smb2_ioctl_query_info
,
3599 struct smb_version_operations smb30_operations
= {
3600 .compare_fids
= smb2_compare_fids
,
3601 .setup_request
= smb2_setup_request
,
3602 .setup_async_request
= smb2_setup_async_request
,
3603 .check_receive
= smb2_check_receive
,
3604 .add_credits
= smb2_add_credits
,
3605 .set_credits
= smb2_set_credits
,
3606 .get_credits_field
= smb2_get_credits_field
,
3607 .get_credits
= smb2_get_credits
,
3608 .wait_mtu_credits
= smb2_wait_mtu_credits
,
3609 .get_next_mid
= smb2_get_next_mid
,
3610 .read_data_offset
= smb2_read_data_offset
,
3611 .read_data_length
= smb2_read_data_length
,
3612 .map_error
= map_smb2_to_linux_error
,
3613 .find_mid
= smb2_find_mid
,
3614 .check_message
= smb2_check_message
,
3615 .dump_detail
= smb2_dump_detail
,
3616 .clear_stats
= smb2_clear_stats
,
3617 .print_stats
= smb2_print_stats
,
3618 .dump_share_caps
= smb2_dump_share_caps
,
3619 .is_oplock_break
= smb2_is_valid_oplock_break
,
3620 .handle_cancelled_mid
= smb2_handle_cancelled_mid
,
3621 .downgrade_oplock
= smb2_downgrade_oplock
,
3622 .need_neg
= smb2_need_neg
,
3623 .negotiate
= smb2_negotiate
,
3624 .negotiate_wsize
= smb3_negotiate_wsize
,
3625 .negotiate_rsize
= smb3_negotiate_rsize
,
3626 .sess_setup
= SMB2_sess_setup
,
3627 .logoff
= SMB2_logoff
,
3628 .tree_connect
= SMB2_tcon
,
3629 .tree_disconnect
= SMB2_tdis
,
3630 .qfs_tcon
= smb3_qfs_tcon
,
3631 .is_path_accessible
= smb2_is_path_accessible
,
3632 .can_echo
= smb2_can_echo
,
3634 .query_path_info
= smb2_query_path_info
,
3635 .get_srv_inum
= smb2_get_srv_inum
,
3636 .query_file_info
= smb2_query_file_info
,
3637 .set_path_size
= smb2_set_path_size
,
3638 .set_file_size
= smb2_set_file_size
,
3639 .set_file_info
= smb2_set_file_info
,
3640 .set_compression
= smb2_set_compression
,
3641 .mkdir
= smb2_mkdir
,
3642 .mkdir_setinfo
= smb2_mkdir_setinfo
,
3643 .rmdir
= smb2_rmdir
,
3644 .unlink
= smb2_unlink
,
3645 .rename
= smb2_rename_path
,
3646 .create_hardlink
= smb2_create_hardlink
,
3647 .query_symlink
= smb2_query_symlink
,
3648 .query_mf_symlink
= smb3_query_mf_symlink
,
3649 .create_mf_symlink
= smb3_create_mf_symlink
,
3650 .open
= smb2_open_file
,
3651 .set_fid
= smb2_set_fid
,
3652 .close
= smb2_close_file
,
3653 .flush
= smb2_flush_file
,
3654 .async_readv
= smb2_async_readv
,
3655 .async_writev
= smb2_async_writev
,
3656 .sync_read
= smb2_sync_read
,
3657 .sync_write
= smb2_sync_write
,
3658 .query_dir_first
= smb2_query_dir_first
,
3659 .query_dir_next
= smb2_query_dir_next
,
3660 .close_dir
= smb2_close_dir
,
3661 .calc_smb_size
= smb2_calc_size
,
3662 .is_status_pending
= smb2_is_status_pending
,
3663 .is_session_expired
= smb2_is_session_expired
,
3664 .oplock_response
= smb2_oplock_response
,
3665 .queryfs
= smb2_queryfs
,
3666 .mand_lock
= smb2_mand_lock
,
3667 .mand_unlock_range
= smb2_unlock_range
,
3668 .push_mand_locks
= smb2_push_mandatory_locks
,
3669 .get_lease_key
= smb2_get_lease_key
,
3670 .set_lease_key
= smb2_set_lease_key
,
3671 .new_lease_key
= smb2_new_lease_key
,
3672 .generate_signingkey
= generate_smb30signingkey
,
3673 .calc_signature
= smb3_calc_signature
,
3674 .set_integrity
= smb3_set_integrity
,
3675 .is_read_op
= smb21_is_read_op
,
3676 .set_oplock_level
= smb3_set_oplock_level
,
3677 .create_lease_buf
= smb3_create_lease_buf
,
3678 .parse_lease_buf
= smb3_parse_lease_buf
,
3679 .copychunk_range
= smb2_copychunk_range
,
3680 .duplicate_extents
= smb2_duplicate_extents
,
3681 .validate_negotiate
= smb3_validate_negotiate
,
3682 .wp_retry_size
= smb2_wp_retry_size
,
3683 .dir_needs_close
= smb2_dir_needs_close
,
3684 .fallocate
= smb3_fallocate
,
3685 .enum_snapshots
= smb3_enum_snapshots
,
3686 .init_transform_rq
= smb3_init_transform_rq
,
3687 .is_transform_hdr
= smb3_is_transform_hdr
,
3688 .receive_transform
= smb3_receive_transform
,
3689 .get_dfs_refer
= smb2_get_dfs_refer
,
3690 .select_sectype
= smb2_select_sectype
,
3691 #ifdef CONFIG_CIFS_XATTR
3692 .query_all_EAs
= smb2_query_eas
,
3693 .set_EA
= smb2_set_ea
,
3694 #endif /* CIFS_XATTR */
3695 #ifdef CONFIG_CIFS_ACL
3696 .get_acl
= get_smb2_acl
,
3697 .get_acl_by_fid
= get_smb2_acl_by_fid
,
3698 .set_acl
= set_smb2_acl
,
3699 #endif /* CIFS_ACL */
3700 .next_header
= smb2_next_header
,
3701 .ioctl_query_info
= smb2_ioctl_query_info
,
3704 struct smb_version_operations smb311_operations
= {
3705 .compare_fids
= smb2_compare_fids
,
3706 .setup_request
= smb2_setup_request
,
3707 .setup_async_request
= smb2_setup_async_request
,
3708 .check_receive
= smb2_check_receive
,
3709 .add_credits
= smb2_add_credits
,
3710 .set_credits
= smb2_set_credits
,
3711 .get_credits_field
= smb2_get_credits_field
,
3712 .get_credits
= smb2_get_credits
,
3713 .wait_mtu_credits
= smb2_wait_mtu_credits
,
3714 .get_next_mid
= smb2_get_next_mid
,
3715 .read_data_offset
= smb2_read_data_offset
,
3716 .read_data_length
= smb2_read_data_length
,
3717 .map_error
= map_smb2_to_linux_error
,
3718 .find_mid
= smb2_find_mid
,
3719 .check_message
= smb2_check_message
,
3720 .dump_detail
= smb2_dump_detail
,
3721 .clear_stats
= smb2_clear_stats
,
3722 .print_stats
= smb2_print_stats
,
3723 .dump_share_caps
= smb2_dump_share_caps
,
3724 .is_oplock_break
= smb2_is_valid_oplock_break
,
3725 .handle_cancelled_mid
= smb2_handle_cancelled_mid
,
3726 .downgrade_oplock
= smb2_downgrade_oplock
,
3727 .need_neg
= smb2_need_neg
,
3728 .negotiate
= smb2_negotiate
,
3729 .negotiate_wsize
= smb3_negotiate_wsize
,
3730 .negotiate_rsize
= smb3_negotiate_rsize
,
3731 .sess_setup
= SMB2_sess_setup
,
3732 .logoff
= SMB2_logoff
,
3733 .tree_connect
= SMB2_tcon
,
3734 .tree_disconnect
= SMB2_tdis
,
3735 .qfs_tcon
= smb3_qfs_tcon
,
3736 .is_path_accessible
= smb2_is_path_accessible
,
3737 .can_echo
= smb2_can_echo
,
3739 .query_path_info
= smb2_query_path_info
,
3740 .get_srv_inum
= smb2_get_srv_inum
,
3741 .query_file_info
= smb2_query_file_info
,
3742 .set_path_size
= smb2_set_path_size
,
3743 .set_file_size
= smb2_set_file_size
,
3744 .set_file_info
= smb2_set_file_info
,
3745 .set_compression
= smb2_set_compression
,
3746 .mkdir
= smb2_mkdir
,
3747 .mkdir_setinfo
= smb2_mkdir_setinfo
,
3748 .posix_mkdir
= smb311_posix_mkdir
,
3749 .rmdir
= smb2_rmdir
,
3750 .unlink
= smb2_unlink
,
3751 .rename
= smb2_rename_path
,
3752 .create_hardlink
= smb2_create_hardlink
,
3753 .query_symlink
= smb2_query_symlink
,
3754 .query_mf_symlink
= smb3_query_mf_symlink
,
3755 .create_mf_symlink
= smb3_create_mf_symlink
,
3756 .open
= smb2_open_file
,
3757 .set_fid
= smb2_set_fid
,
3758 .close
= smb2_close_file
,
3759 .flush
= smb2_flush_file
,
3760 .async_readv
= smb2_async_readv
,
3761 .async_writev
= smb2_async_writev
,
3762 .sync_read
= smb2_sync_read
,
3763 .sync_write
= smb2_sync_write
,
3764 .query_dir_first
= smb2_query_dir_first
,
3765 .query_dir_next
= smb2_query_dir_next
,
3766 .close_dir
= smb2_close_dir
,
3767 .calc_smb_size
= smb2_calc_size
,
3768 .is_status_pending
= smb2_is_status_pending
,
3769 .is_session_expired
= smb2_is_session_expired
,
3770 .oplock_response
= smb2_oplock_response
,
3771 .queryfs
= smb311_queryfs
,
3772 .mand_lock
= smb2_mand_lock
,
3773 .mand_unlock_range
= smb2_unlock_range
,
3774 .push_mand_locks
= smb2_push_mandatory_locks
,
3775 .get_lease_key
= smb2_get_lease_key
,
3776 .set_lease_key
= smb2_set_lease_key
,
3777 .new_lease_key
= smb2_new_lease_key
,
3778 .generate_signingkey
= generate_smb311signingkey
,
3779 .calc_signature
= smb3_calc_signature
,
3780 .set_integrity
= smb3_set_integrity
,
3781 .is_read_op
= smb21_is_read_op
,
3782 .set_oplock_level
= smb3_set_oplock_level
,
3783 .create_lease_buf
= smb3_create_lease_buf
,
3784 .parse_lease_buf
= smb3_parse_lease_buf
,
3785 .copychunk_range
= smb2_copychunk_range
,
3786 .duplicate_extents
= smb2_duplicate_extents
,
3787 /* .validate_negotiate = smb3_validate_negotiate, */ /* not used in 3.11 */
3788 .wp_retry_size
= smb2_wp_retry_size
,
3789 .dir_needs_close
= smb2_dir_needs_close
,
3790 .fallocate
= smb3_fallocate
,
3791 .enum_snapshots
= smb3_enum_snapshots
,
3792 .init_transform_rq
= smb3_init_transform_rq
,
3793 .is_transform_hdr
= smb3_is_transform_hdr
,
3794 .receive_transform
= smb3_receive_transform
,
3795 .get_dfs_refer
= smb2_get_dfs_refer
,
3796 .select_sectype
= smb2_select_sectype
,
3797 #ifdef CONFIG_CIFS_XATTR
3798 .query_all_EAs
= smb2_query_eas
,
3799 .set_EA
= smb2_set_ea
,
3800 #endif /* CIFS_XATTR */
3801 #ifdef CONFIG_CIFS_ACL
3802 .get_acl
= get_smb2_acl
,
3803 .get_acl_by_fid
= get_smb2_acl_by_fid
,
3804 .set_acl
= set_smb2_acl
,
3805 #endif /* CIFS_ACL */
3806 .next_header
= smb2_next_header
,
3807 .ioctl_query_info
= smb2_ioctl_query_info
,
3810 struct smb_version_values smb20_values
= {
3811 .version_string
= SMB20_VERSION_STRING
,
3812 .protocol_id
= SMB20_PROT_ID
,
3813 .req_capabilities
= 0, /* MBZ */
3814 .large_lock_type
= 0,
3815 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
3816 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
3817 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
3818 .header_size
= sizeof(struct smb2_sync_hdr
),
3819 .header_preamble_size
= 0,
3820 .max_header_size
= MAX_SMB2_HDR_SIZE
,
3821 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
3822 .lock_cmd
= SMB2_LOCK
,
3824 .cap_nt_find
= SMB2_NT_FIND
,
3825 .cap_large_files
= SMB2_LARGE_FILES
,
3826 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3827 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3828 .create_lease_size
= sizeof(struct create_lease
),
3831 struct smb_version_values smb21_values
= {
3832 .version_string
= SMB21_VERSION_STRING
,
3833 .protocol_id
= SMB21_PROT_ID
,
3834 .req_capabilities
= 0, /* MBZ on negotiate req until SMB3 dialect */
3835 .large_lock_type
= 0,
3836 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
3837 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
3838 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
3839 .header_size
= sizeof(struct smb2_sync_hdr
),
3840 .header_preamble_size
= 0,
3841 .max_header_size
= MAX_SMB2_HDR_SIZE
,
3842 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
3843 .lock_cmd
= SMB2_LOCK
,
3845 .cap_nt_find
= SMB2_NT_FIND
,
3846 .cap_large_files
= SMB2_LARGE_FILES
,
3847 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3848 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3849 .create_lease_size
= sizeof(struct create_lease
),
3852 struct smb_version_values smb3any_values
= {
3853 .version_string
= SMB3ANY_VERSION_STRING
,
3854 .protocol_id
= SMB302_PROT_ID
, /* doesn't matter, send protocol array */
3855 .req_capabilities
= SMB2_GLOBAL_CAP_DFS
| SMB2_GLOBAL_CAP_LEASING
| SMB2_GLOBAL_CAP_LARGE_MTU
| SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
| SMB2_GLOBAL_CAP_ENCRYPTION
| SMB2_GLOBAL_CAP_DIRECTORY_LEASING
,
3856 .large_lock_type
= 0,
3857 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
3858 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
3859 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
3860 .header_size
= sizeof(struct smb2_sync_hdr
),
3861 .header_preamble_size
= 0,
3862 .max_header_size
= MAX_SMB2_HDR_SIZE
,
3863 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
3864 .lock_cmd
= SMB2_LOCK
,
3866 .cap_nt_find
= SMB2_NT_FIND
,
3867 .cap_large_files
= SMB2_LARGE_FILES
,
3868 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3869 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3870 .create_lease_size
= sizeof(struct create_lease_v2
),
3873 struct smb_version_values smbdefault_values
= {
3874 .version_string
= SMBDEFAULT_VERSION_STRING
,
3875 .protocol_id
= SMB302_PROT_ID
, /* doesn't matter, send protocol array */
3876 .req_capabilities
= SMB2_GLOBAL_CAP_DFS
| SMB2_GLOBAL_CAP_LEASING
| SMB2_GLOBAL_CAP_LARGE_MTU
| SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
| SMB2_GLOBAL_CAP_ENCRYPTION
| SMB2_GLOBAL_CAP_DIRECTORY_LEASING
,
3877 .large_lock_type
= 0,
3878 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
3879 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
3880 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
3881 .header_size
= sizeof(struct smb2_sync_hdr
),
3882 .header_preamble_size
= 0,
3883 .max_header_size
= MAX_SMB2_HDR_SIZE
,
3884 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
3885 .lock_cmd
= SMB2_LOCK
,
3887 .cap_nt_find
= SMB2_NT_FIND
,
3888 .cap_large_files
= SMB2_LARGE_FILES
,
3889 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3890 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3891 .create_lease_size
= sizeof(struct create_lease_v2
),
3894 struct smb_version_values smb30_values
= {
3895 .version_string
= SMB30_VERSION_STRING
,
3896 .protocol_id
= SMB30_PROT_ID
,
3897 .req_capabilities
= SMB2_GLOBAL_CAP_DFS
| SMB2_GLOBAL_CAP_LEASING
| SMB2_GLOBAL_CAP_LARGE_MTU
| SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
| SMB2_GLOBAL_CAP_ENCRYPTION
| SMB2_GLOBAL_CAP_DIRECTORY_LEASING
,
3898 .large_lock_type
= 0,
3899 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
3900 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
3901 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
3902 .header_size
= sizeof(struct smb2_sync_hdr
),
3903 .header_preamble_size
= 0,
3904 .max_header_size
= MAX_SMB2_HDR_SIZE
,
3905 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
3906 .lock_cmd
= SMB2_LOCK
,
3908 .cap_nt_find
= SMB2_NT_FIND
,
3909 .cap_large_files
= SMB2_LARGE_FILES
,
3910 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3911 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3912 .create_lease_size
= sizeof(struct create_lease_v2
),
3915 struct smb_version_values smb302_values
= {
3916 .version_string
= SMB302_VERSION_STRING
,
3917 .protocol_id
= SMB302_PROT_ID
,
3918 .req_capabilities
= SMB2_GLOBAL_CAP_DFS
| SMB2_GLOBAL_CAP_LEASING
| SMB2_GLOBAL_CAP_LARGE_MTU
| SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
| SMB2_GLOBAL_CAP_ENCRYPTION
| SMB2_GLOBAL_CAP_DIRECTORY_LEASING
,
3919 .large_lock_type
= 0,
3920 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
3921 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
3922 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
3923 .header_size
= sizeof(struct smb2_sync_hdr
),
3924 .header_preamble_size
= 0,
3925 .max_header_size
= MAX_SMB2_HDR_SIZE
,
3926 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
3927 .lock_cmd
= SMB2_LOCK
,
3929 .cap_nt_find
= SMB2_NT_FIND
,
3930 .cap_large_files
= SMB2_LARGE_FILES
,
3931 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3932 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3933 .create_lease_size
= sizeof(struct create_lease_v2
),
3936 struct smb_version_values smb311_values
= {
3937 .version_string
= SMB311_VERSION_STRING
,
3938 .protocol_id
= SMB311_PROT_ID
,
3939 .req_capabilities
= SMB2_GLOBAL_CAP_DFS
| SMB2_GLOBAL_CAP_LEASING
| SMB2_GLOBAL_CAP_LARGE_MTU
| SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
| SMB2_GLOBAL_CAP_ENCRYPTION
| SMB2_GLOBAL_CAP_DIRECTORY_LEASING
,
3940 .large_lock_type
= 0,
3941 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
3942 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
3943 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
3944 .header_size
= sizeof(struct smb2_sync_hdr
),
3945 .header_preamble_size
= 0,
3946 .max_header_size
= MAX_SMB2_HDR_SIZE
,
3947 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
3948 .lock_cmd
= SMB2_LOCK
,
3950 .cap_nt_find
= SMB2_NT_FIND
,
3951 .cap_large_files
= SMB2_LARGE_FILES
,
3952 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3953 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
3954 .create_lease_size
= sizeof(struct create_lease_v2
),