1 // SPDX-License-Identifier: GPL-2.0
3 * SMB2 version specific operations
5 * Copyright (c) 2012, Jeff Layton <jlayton@redhat.com>
8 #include <linux/pagemap.h>
10 #include <linux/falloc.h>
11 #include <linux/scatterlist.h>
12 #include <linux/uuid.h>
13 #include <linux/sort.h>
14 #include <crypto/aead.h>
15 #include <linux/fiemap.h>
19 #include "smb2proto.h"
20 #include "cifsproto.h"
21 #include "cifs_debug.h"
22 #include "cifs_unicode.h"
23 #include "smb2status.h"
25 #include "cifs_ioctl.h"
26 #include "smbdirect.h"
28 /* Change credits for different ops and return the total number of credits */
30 change_conf(struct TCP_Server_Info
*server
)
32 server
->credits
+= server
->echo_credits
+ server
->oplock_credits
;
33 server
->oplock_credits
= server
->echo_credits
= 0;
34 switch (server
->credits
) {
38 server
->echoes
= false;
39 server
->oplocks
= false;
42 server
->echoes
= true;
43 server
->oplocks
= false;
44 server
->echo_credits
= 1;
47 server
->echoes
= true;
49 server
->oplocks
= true;
50 server
->oplock_credits
= 1;
52 server
->oplocks
= false;
54 server
->echo_credits
= 1;
56 server
->credits
-= server
->echo_credits
+ server
->oplock_credits
;
57 return server
->credits
+ server
->echo_credits
+ server
->oplock_credits
;
61 smb2_add_credits(struct TCP_Server_Info
*server
,
62 const struct cifs_credits
*credits
, const int optype
)
65 unsigned int add
= credits
->value
;
66 unsigned int instance
= credits
->instance
;
67 bool reconnect_detected
= false;
69 spin_lock(&server
->req_lock
);
70 val
= server
->ops
->get_credits_field(server
, optype
);
72 /* eg found case where write overlapping reconnect messed up credits */
73 if (((optype
& CIFS_OP_MASK
) == CIFS_NEG_OP
) && (*val
!= 0))
74 trace_smb3_reconnect_with_invalid_credits(server
->CurrentMid
,
75 server
->hostname
, *val
);
76 if ((instance
== 0) || (instance
== server
->reconnect_instance
))
79 reconnect_detected
= true;
82 *val
= 65000; /* Don't get near 64K credits, avoid srv bugs */
83 pr_warn_once("server overflowed SMB3 credits\n");
86 if (server
->in_flight
== 0 && (optype
& CIFS_OP_MASK
) != CIFS_NEG_OP
)
87 rc
= change_conf(server
);
89 * Sometimes server returns 0 credits on oplock break ack - we need to
90 * rebalance credits in this case.
92 else if (server
->in_flight
> 0 && server
->oplock_credits
== 0 &&
94 if (server
->credits
> 1) {
96 server
->oplock_credits
++;
99 spin_unlock(&server
->req_lock
);
100 wake_up(&server
->request_q
);
102 if (reconnect_detected
)
103 cifs_dbg(FYI
, "trying to put %d credits from the old server instance %d\n",
106 if (server
->tcpStatus
== CifsNeedReconnect
107 || server
->tcpStatus
== CifsExiting
)
112 /* change_conf hasn't been executed */
115 cifs_server_dbg(VFS
, "Possible client or server bug - zero credits\n");
118 cifs_server_dbg(VFS
, "disabling echoes and oplocks\n");
121 cifs_dbg(FYI
, "disabling oplocks\n");
124 cifs_dbg(FYI
, "add %u credits total=%d\n", add
, rc
);
129 smb2_set_credits(struct TCP_Server_Info
*server
, const int val
)
131 spin_lock(&server
->req_lock
);
132 server
->credits
= val
;
134 server
->reconnect_instance
++;
135 spin_unlock(&server
->req_lock
);
136 /* don't log while holding the lock */
138 cifs_dbg(FYI
, "set credits to 1 due to smb2 reconnect\n");
142 smb2_get_credits_field(struct TCP_Server_Info
*server
, const int optype
)
146 return &server
->echo_credits
;
148 return &server
->oplock_credits
;
150 return &server
->credits
;
155 smb2_get_credits(struct mid_q_entry
*mid
)
157 return mid
->credits_received
;
161 smb2_wait_mtu_credits(struct TCP_Server_Info
*server
, unsigned int size
,
162 unsigned int *num
, struct cifs_credits
*credits
)
165 unsigned int scredits
;
167 spin_lock(&server
->req_lock
);
169 if (server
->credits
<= 0) {
170 spin_unlock(&server
->req_lock
);
171 cifs_num_waiters_inc(server
);
172 rc
= wait_event_killable(server
->request_q
,
173 has_credits(server
, &server
->credits
, 1));
174 cifs_num_waiters_dec(server
);
177 spin_lock(&server
->req_lock
);
179 if (server
->tcpStatus
== CifsExiting
) {
180 spin_unlock(&server
->req_lock
);
184 scredits
= server
->credits
;
185 /* can deadlock with reopen */
187 *num
= SMB2_MAX_BUFFER_SIZE
;
189 credits
->instance
= 0;
193 /* leave some credits for reopen and other ops */
195 *num
= min_t(unsigned int, size
,
196 scredits
* SMB2_MAX_BUFFER_SIZE
);
199 DIV_ROUND_UP(*num
, SMB2_MAX_BUFFER_SIZE
);
200 credits
->instance
= server
->reconnect_instance
;
201 server
->credits
-= credits
->value
;
203 if (server
->in_flight
> server
->max_in_flight
)
204 server
->max_in_flight
= server
->in_flight
;
208 spin_unlock(&server
->req_lock
);
213 smb2_adjust_credits(struct TCP_Server_Info
*server
,
214 struct cifs_credits
*credits
,
215 const unsigned int payload_size
)
217 int new_val
= DIV_ROUND_UP(payload_size
, SMB2_MAX_BUFFER_SIZE
);
219 if (!credits
->value
|| credits
->value
== new_val
)
222 if (credits
->value
< new_val
) {
223 WARN_ONCE(1, "request has less credits (%d) than required (%d)",
224 credits
->value
, new_val
);
228 spin_lock(&server
->req_lock
);
230 if (server
->reconnect_instance
!= credits
->instance
) {
231 spin_unlock(&server
->req_lock
);
232 cifs_server_dbg(VFS
, "trying to return %d credits to old session\n",
233 credits
->value
- new_val
);
237 server
->credits
+= credits
->value
- new_val
;
238 spin_unlock(&server
->req_lock
);
239 wake_up(&server
->request_q
);
240 credits
->value
= new_val
;
245 smb2_get_next_mid(struct TCP_Server_Info
*server
)
248 /* for SMB2 we need the current value */
249 spin_lock(&GlobalMid_Lock
);
250 mid
= server
->CurrentMid
++;
251 spin_unlock(&GlobalMid_Lock
);
256 smb2_revert_current_mid(struct TCP_Server_Info
*server
, const unsigned int val
)
258 spin_lock(&GlobalMid_Lock
);
259 if (server
->CurrentMid
>= val
)
260 server
->CurrentMid
-= val
;
261 spin_unlock(&GlobalMid_Lock
);
264 static struct mid_q_entry
*
265 smb2_find_mid(struct TCP_Server_Info
*server
, char *buf
)
267 struct mid_q_entry
*mid
;
268 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
269 __u64 wire_mid
= le64_to_cpu(shdr
->MessageId
);
271 if (shdr
->ProtocolId
== SMB2_TRANSFORM_PROTO_NUM
) {
272 cifs_server_dbg(VFS
, "Encrypted frame parsing not supported yet\n");
276 spin_lock(&GlobalMid_Lock
);
277 list_for_each_entry(mid
, &server
->pending_mid_q
, qhead
) {
278 if ((mid
->mid
== wire_mid
) &&
279 (mid
->mid_state
== MID_REQUEST_SUBMITTED
) &&
280 (mid
->command
== shdr
->Command
)) {
281 kref_get(&mid
->refcount
);
282 spin_unlock(&GlobalMid_Lock
);
286 spin_unlock(&GlobalMid_Lock
);
291 smb2_dump_detail(void *buf
, struct TCP_Server_Info
*server
)
293 #ifdef CONFIG_CIFS_DEBUG2
294 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
296 cifs_server_dbg(VFS
, "Cmd: %d Err: 0x%x Flags: 0x%x Mid: %llu Pid: %d\n",
297 shdr
->Command
, shdr
->Status
, shdr
->Flags
, shdr
->MessageId
,
299 cifs_server_dbg(VFS
, "smb buf %p len %u\n", buf
,
300 server
->ops
->calc_smb_size(buf
, server
));
305 smb2_need_neg(struct TCP_Server_Info
*server
)
307 return server
->max_read
== 0;
311 smb2_negotiate(const unsigned int xid
, struct cifs_ses
*ses
)
315 cifs_ses_server(ses
)->CurrentMid
= 0;
316 rc
= SMB2_negotiate(xid
, ses
);
317 /* BB we probably don't need to retry with modern servers */
324 smb2_negotiate_wsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
326 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
329 /* start with specified wsize, or default */
330 wsize
= volume_info
->wsize
? volume_info
->wsize
: CIFS_DEFAULT_IOSIZE
;
331 wsize
= min_t(unsigned int, wsize
, server
->max_write
);
332 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
333 wsize
= min_t(unsigned int, wsize
, SMB2_MAX_BUFFER_SIZE
);
339 smb3_negotiate_wsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
341 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
344 /* start with specified wsize, or default */
345 wsize
= volume_info
->wsize
? volume_info
->wsize
: SMB3_DEFAULT_IOSIZE
;
346 wsize
= min_t(unsigned int, wsize
, server
->max_write
);
347 #ifdef CONFIG_CIFS_SMB_DIRECT
351 * Account for SMB2 data transfer packet header and
352 * possible encryption header
354 wsize
= min_t(unsigned int,
356 server
->smbd_conn
->max_fragmented_send_size
-
357 SMB2_READWRITE_PDU_HEADER_SIZE
-
358 sizeof(struct smb2_transform_hdr
));
360 wsize
= min_t(unsigned int,
361 wsize
, server
->smbd_conn
->max_readwrite_size
);
364 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
365 wsize
= min_t(unsigned int, wsize
, SMB2_MAX_BUFFER_SIZE
);
371 smb2_negotiate_rsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
373 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
376 /* start with specified rsize, or default */
377 rsize
= volume_info
->rsize
? volume_info
->rsize
: CIFS_DEFAULT_IOSIZE
;
378 rsize
= min_t(unsigned int, rsize
, server
->max_read
);
380 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
381 rsize
= min_t(unsigned int, rsize
, SMB2_MAX_BUFFER_SIZE
);
387 smb3_negotiate_rsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
389 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
392 /* start with specified rsize, or default */
393 rsize
= volume_info
->rsize
? volume_info
->rsize
: SMB3_DEFAULT_IOSIZE
;
394 rsize
= min_t(unsigned int, rsize
, server
->max_read
);
395 #ifdef CONFIG_CIFS_SMB_DIRECT
399 * Account for SMB2 data transfer packet header and
400 * possible encryption header
402 rsize
= min_t(unsigned int,
404 server
->smbd_conn
->max_fragmented_recv_size
-
405 SMB2_READWRITE_PDU_HEADER_SIZE
-
406 sizeof(struct smb2_transform_hdr
));
408 rsize
= min_t(unsigned int,
409 rsize
, server
->smbd_conn
->max_readwrite_size
);
413 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
414 rsize
= min_t(unsigned int, rsize
, SMB2_MAX_BUFFER_SIZE
);
420 parse_server_interfaces(struct network_interface_info_ioctl_rsp
*buf
,
422 struct cifs_server_iface
**iface_list
,
425 struct network_interface_info_ioctl_rsp
*p
;
426 struct sockaddr_in
*addr4
;
427 struct sockaddr_in6
*addr6
;
428 struct iface_info_ipv4
*p4
;
429 struct iface_info_ipv6
*p6
;
430 struct cifs_server_iface
*info
;
440 * Fist pass: count and sanity check
443 bytes_left
= buf_len
;
445 while (bytes_left
>= sizeof(*p
)) {
447 next
= le32_to_cpu(p
->Next
);
449 bytes_left
-= sizeof(*p
);
452 p
= (struct network_interface_info_ioctl_rsp
*)((u8
*)p
+next
);
457 cifs_dbg(VFS
, "%s: malformed interface info\n", __func__
);
462 if (bytes_left
|| p
->Next
)
463 cifs_dbg(VFS
, "%s: incomplete interface info\n", __func__
);
467 * Second pass: extract info to internal structure
470 *iface_list
= kcalloc(nb_iface
, sizeof(**iface_list
), GFP_KERNEL
);
477 bytes_left
= buf_len
;
479 while (bytes_left
>= sizeof(*p
)) {
480 info
->speed
= le64_to_cpu(p
->LinkSpeed
);
481 info
->rdma_capable
= le32_to_cpu(p
->Capability
& RDMA_CAPABLE
);
482 info
->rss_capable
= le32_to_cpu(p
->Capability
& RSS_CAPABLE
);
484 cifs_dbg(FYI
, "%s: adding iface %zu\n", __func__
, *iface_count
);
485 cifs_dbg(FYI
, "%s: speed %zu bps\n", __func__
, info
->speed
);
486 cifs_dbg(FYI
, "%s: capabilities 0x%08x\n", __func__
,
487 le32_to_cpu(p
->Capability
));
491 * The kernel and wire socket structures have the same
492 * layout and use network byte order but make the
493 * conversion explicit in case either one changes.
496 addr4
= (struct sockaddr_in
*)&info
->sockaddr
;
497 p4
= (struct iface_info_ipv4
*)p
->Buffer
;
498 addr4
->sin_family
= AF_INET
;
499 memcpy(&addr4
->sin_addr
, &p4
->IPv4Address
, 4);
501 /* [MS-SMB2] 2.2.32.5.1.1 Clients MUST ignore these */
502 addr4
->sin_port
= cpu_to_be16(CIFS_PORT
);
504 cifs_dbg(FYI
, "%s: ipv4 %pI4\n", __func__
,
508 addr6
= (struct sockaddr_in6
*)&info
->sockaddr
;
509 p6
= (struct iface_info_ipv6
*)p
->Buffer
;
510 addr6
->sin6_family
= AF_INET6
;
511 memcpy(&addr6
->sin6_addr
, &p6
->IPv6Address
, 16);
513 /* [MS-SMB2] 2.2.32.5.1.2 Clients MUST ignore these */
514 addr6
->sin6_flowinfo
= 0;
515 addr6
->sin6_scope_id
= 0;
516 addr6
->sin6_port
= cpu_to_be16(CIFS_PORT
);
518 cifs_dbg(FYI
, "%s: ipv6 %pI6\n", __func__
,
523 "%s: skipping unsupported socket family\n",
531 next
= le32_to_cpu(p
->Next
);
534 p
= (struct network_interface_info_ioctl_rsp
*)((u8
*)p
+next
);
552 static int compare_iface(const void *ia
, const void *ib
)
554 const struct cifs_server_iface
*a
= (struct cifs_server_iface
*)ia
;
555 const struct cifs_server_iface
*b
= (struct cifs_server_iface
*)ib
;
557 return a
->speed
== b
->speed
? 0 : (a
->speed
> b
->speed
? -1 : 1);
561 SMB3_request_interfaces(const unsigned int xid
, struct cifs_tcon
*tcon
)
564 unsigned int ret_data_len
= 0;
565 struct network_interface_info_ioctl_rsp
*out_buf
= NULL
;
566 struct cifs_server_iface
*iface_list
;
568 struct cifs_ses
*ses
= tcon
->ses
;
570 rc
= SMB2_ioctl(xid
, tcon
, NO_FILE_ID
, NO_FILE_ID
,
571 FSCTL_QUERY_NETWORK_INTERFACE_INFO
, true /* is_fsctl */,
572 NULL
/* no data input */, 0 /* no data input */,
573 CIFSMaxBufSize
, (char **)&out_buf
, &ret_data_len
);
574 if (rc
== -EOPNOTSUPP
) {
576 "server does not support query network interfaces\n");
578 } else if (rc
!= 0) {
579 cifs_tcon_dbg(VFS
, "error %d on ioctl to get interface list\n", rc
);
583 rc
= parse_server_interfaces(out_buf
, ret_data_len
,
584 &iface_list
, &iface_count
);
588 /* sort interfaces from fastest to slowest */
589 sort(iface_list
, iface_count
, sizeof(*iface_list
), compare_iface
, NULL
);
591 spin_lock(&ses
->iface_lock
);
592 kfree(ses
->iface_list
);
593 ses
->iface_list
= iface_list
;
594 ses
->iface_count
= iface_count
;
595 ses
->iface_last_update
= jiffies
;
596 spin_unlock(&ses
->iface_lock
);
604 smb2_close_cached_fid(struct kref
*ref
)
606 struct cached_fid
*cfid
= container_of(ref
, struct cached_fid
,
609 if (cfid
->is_valid
) {
610 cifs_dbg(FYI
, "clear cached root file handle\n");
611 SMB2_close(0, cfid
->tcon
, cfid
->fid
->persistent_fid
,
612 cfid
->fid
->volatile_fid
);
613 cfid
->is_valid
= false;
614 cfid
->file_all_info_is_valid
= false;
615 cfid
->has_lease
= false;
619 void close_shroot(struct cached_fid
*cfid
)
621 mutex_lock(&cfid
->fid_mutex
);
622 kref_put(&cfid
->refcount
, smb2_close_cached_fid
);
623 mutex_unlock(&cfid
->fid_mutex
);
626 void close_shroot_lease_locked(struct cached_fid
*cfid
)
628 if (cfid
->has_lease
) {
629 cfid
->has_lease
= false;
630 kref_put(&cfid
->refcount
, smb2_close_cached_fid
);
634 void close_shroot_lease(struct cached_fid
*cfid
)
636 mutex_lock(&cfid
->fid_mutex
);
637 close_shroot_lease_locked(cfid
);
638 mutex_unlock(&cfid
->fid_mutex
);
642 smb2_cached_lease_break(struct work_struct
*work
)
644 struct cached_fid
*cfid
= container_of(work
,
645 struct cached_fid
, lease_break
);
647 close_shroot_lease(cfid
);
651 * Open the directory at the root of a share
653 int open_shroot(unsigned int xid
, struct cifs_tcon
*tcon
,
654 struct cifs_sb_info
*cifs_sb
, struct cifs_fid
*pfid
)
656 struct cifs_ses
*ses
= tcon
->ses
;
657 struct TCP_Server_Info
*server
= ses
->server
;
658 struct cifs_open_parms oparms
;
659 struct smb2_create_rsp
*o_rsp
= NULL
;
660 struct smb2_query_info_rsp
*qi_rsp
= NULL
;
662 struct smb_rqst rqst
[2];
663 struct kvec rsp_iov
[2];
664 struct kvec open_iov
[SMB2_CREATE_IOV_SIZE
];
665 struct kvec qi_iov
[1];
667 __le16 utf16_path
= 0; /* Null - since an open of top of share */
668 u8 oplock
= SMB2_OPLOCK_LEVEL_II
;
670 mutex_lock(&tcon
->crfid
.fid_mutex
);
671 if (tcon
->crfid
.is_valid
) {
672 cifs_dbg(FYI
, "found a cached root file handle\n");
673 memcpy(pfid
, tcon
->crfid
.fid
, sizeof(struct cifs_fid
));
674 kref_get(&tcon
->crfid
.refcount
);
675 mutex_unlock(&tcon
->crfid
.fid_mutex
);
680 * We do not hold the lock for the open because in case
681 * SMB2_open needs to reconnect, it will end up calling
682 * cifs_mark_open_files_invalid() which takes the lock again
683 * thus causing a deadlock
686 mutex_unlock(&tcon
->crfid
.fid_mutex
);
688 if (smb3_encryption_required(tcon
))
689 flags
|= CIFS_TRANSFORM_REQ
;
691 if (!server
->ops
->new_lease_key
)
694 server
->ops
->new_lease_key(pfid
);
696 memset(rqst
, 0, sizeof(rqst
));
697 resp_buftype
[0] = resp_buftype
[1] = CIFS_NO_BUFFER
;
698 memset(rsp_iov
, 0, sizeof(rsp_iov
));
701 memset(&open_iov
, 0, sizeof(open_iov
));
702 rqst
[0].rq_iov
= open_iov
;
703 rqst
[0].rq_nvec
= SMB2_CREATE_IOV_SIZE
;
706 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
707 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
708 oparms
.disposition
= FILE_OPEN
;
710 oparms
.reconnect
= false;
712 rc
= SMB2_open_init(tcon
, server
,
713 &rqst
[0], &oplock
, &oparms
, &utf16_path
);
716 smb2_set_next_command(tcon
, &rqst
[0]);
718 memset(&qi_iov
, 0, sizeof(qi_iov
));
719 rqst
[1].rq_iov
= qi_iov
;
722 rc
= SMB2_query_info_init(tcon
, server
,
723 &rqst
[1], COMPOUND_FID
,
724 COMPOUND_FID
, FILE_ALL_INFORMATION
,
726 sizeof(struct smb2_file_all_info
) +
727 PATH_MAX
* 2, 0, NULL
);
731 smb2_set_related(&rqst
[1]);
733 rc
= compound_send_recv(xid
, ses
, server
,
735 resp_buftype
, rsp_iov
);
736 mutex_lock(&tcon
->crfid
.fid_mutex
);
739 * Now we need to check again as the cached root might have
740 * been successfully re-opened from a concurrent process
743 if (tcon
->crfid
.is_valid
) {
744 /* work was already done */
746 /* stash fids for close() later */
747 struct cifs_fid fid
= {
748 .persistent_fid
= pfid
->persistent_fid
,
749 .volatile_fid
= pfid
->volatile_fid
,
753 * caller expects this func to set pfid to a valid
754 * cached root, so we copy the existing one and get a
757 memcpy(pfid
, tcon
->crfid
.fid
, sizeof(*pfid
));
758 kref_get(&tcon
->crfid
.refcount
);
760 mutex_unlock(&tcon
->crfid
.fid_mutex
);
763 /* close extra handle outside of crit sec */
764 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
770 /* Cached root is still invalid, continue normaly */
773 if (rc
== -EREMCHG
) {
774 tcon
->need_reconnect
= true;
775 pr_warn_once("server share %s deleted\n",
781 atomic_inc(&tcon
->num_remote_opens
);
783 o_rsp
= (struct smb2_create_rsp
*)rsp_iov
[0].iov_base
;
784 oparms
.fid
->persistent_fid
= o_rsp
->PersistentFileId
;
785 oparms
.fid
->volatile_fid
= o_rsp
->VolatileFileId
;
786 #ifdef CONFIG_CIFS_DEBUG2
787 oparms
.fid
->mid
= le64_to_cpu(o_rsp
->sync_hdr
.MessageId
);
788 #endif /* CIFS_DEBUG2 */
790 memcpy(tcon
->crfid
.fid
, pfid
, sizeof(struct cifs_fid
));
791 tcon
->crfid
.tcon
= tcon
;
792 tcon
->crfid
.is_valid
= true;
793 kref_init(&tcon
->crfid
.refcount
);
795 /* BB TBD check to see if oplock level check can be removed below */
796 if (o_rsp
->OplockLevel
== SMB2_OPLOCK_LEVEL_LEASE
) {
797 kref_get(&tcon
->crfid
.refcount
);
798 tcon
->crfid
.has_lease
= true;
799 smb2_parse_contexts(server
, o_rsp
,
801 oparms
.fid
->lease_key
, &oplock
,
806 qi_rsp
= (struct smb2_query_info_rsp
*)rsp_iov
[1].iov_base
;
807 if (le32_to_cpu(qi_rsp
->OutputBufferLength
) < sizeof(struct smb2_file_all_info
))
809 if (!smb2_validate_and_copy_iov(
810 le16_to_cpu(qi_rsp
->OutputBufferOffset
),
811 sizeof(struct smb2_file_all_info
),
812 &rsp_iov
[1], sizeof(struct smb2_file_all_info
),
813 (char *)&tcon
->crfid
.file_all_info
))
814 tcon
->crfid
.file_all_info_is_valid
= true;
817 mutex_unlock(&tcon
->crfid
.fid_mutex
);
819 SMB2_open_free(&rqst
[0]);
820 SMB2_query_info_free(&rqst
[1]);
821 free_rsp_buf(resp_buftype
[0], rsp_iov
[0].iov_base
);
822 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
827 smb3_qfs_tcon(const unsigned int xid
, struct cifs_tcon
*tcon
,
828 struct cifs_sb_info
*cifs_sb
)
831 __le16 srch_path
= 0; /* Null - open root of share */
832 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
833 struct cifs_open_parms oparms
;
835 bool no_cached_open
= tcon
->nohandlecache
;
838 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
839 oparms
.disposition
= FILE_OPEN
;
840 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
842 oparms
.reconnect
= false;
845 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
,
848 rc
= open_shroot(xid
, tcon
, cifs_sb
, &fid
);
853 SMB3_request_interfaces(xid
, tcon
);
855 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
856 FS_ATTRIBUTE_INFORMATION
);
857 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
858 FS_DEVICE_INFORMATION
);
859 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
860 FS_VOLUME_INFORMATION
);
861 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
862 FS_SECTOR_SIZE_INFORMATION
); /* SMB3 specific */
864 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
866 close_shroot(&tcon
->crfid
);
870 smb2_qfs_tcon(const unsigned int xid
, struct cifs_tcon
*tcon
,
871 struct cifs_sb_info
*cifs_sb
)
874 __le16 srch_path
= 0; /* Null - open root of share */
875 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
876 struct cifs_open_parms oparms
;
880 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
881 oparms
.disposition
= FILE_OPEN
;
882 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
884 oparms
.reconnect
= false;
886 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
,
891 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
892 FS_ATTRIBUTE_INFORMATION
);
893 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
894 FS_DEVICE_INFORMATION
);
895 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
899 smb2_is_path_accessible(const unsigned int xid
, struct cifs_tcon
*tcon
,
900 struct cifs_sb_info
*cifs_sb
, const char *full_path
)
904 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
905 struct cifs_open_parms oparms
;
908 if ((*full_path
== 0) && tcon
->crfid
.is_valid
)
911 utf16_path
= cifs_convert_path_to_utf16(full_path
, cifs_sb
);
916 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
917 oparms
.disposition
= FILE_OPEN
;
918 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
920 oparms
.reconnect
= false;
922 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
,
929 rc
= SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
935 smb2_get_srv_inum(const unsigned int xid
, struct cifs_tcon
*tcon
,
936 struct cifs_sb_info
*cifs_sb
, const char *full_path
,
937 u64
*uniqueid
, FILE_ALL_INFO
*data
)
939 *uniqueid
= le64_to_cpu(data
->IndexNumber
);
944 smb2_query_file_info(const unsigned int xid
, struct cifs_tcon
*tcon
,
945 struct cifs_fid
*fid
, FILE_ALL_INFO
*data
)
948 struct smb2_file_all_info
*smb2_data
;
950 smb2_data
= kzalloc(sizeof(struct smb2_file_all_info
) + PATH_MAX
* 2,
952 if (smb2_data
== NULL
)
955 rc
= SMB2_query_info(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
,
958 move_smb2_info_to_cifs(data
, smb2_data
);
963 #ifdef CONFIG_CIFS_XATTR
965 move_smb2_ea_to_cifs(char *dst
, size_t dst_size
,
966 struct smb2_file_full_ea_info
*src
, size_t src_size
,
967 const unsigned char *ea_name
)
970 unsigned int ea_name_len
= ea_name
? strlen(ea_name
) : 0;
972 size_t buf_size
= dst_size
;
973 size_t name_len
, value_len
, user_name_len
;
975 while (src_size
> 0) {
976 name
= &src
->ea_data
[0];
977 name_len
= (size_t)src
->ea_name_length
;
978 value
= &src
->ea_data
[src
->ea_name_length
+ 1];
979 value_len
= (size_t)le16_to_cpu(src
->ea_value_length
);
984 if (src_size
< 8 + name_len
+ 1 + value_len
) {
985 cifs_dbg(FYI
, "EA entry goes beyond length of list\n");
991 if (ea_name_len
== name_len
&&
992 memcmp(ea_name
, name
, name_len
) == 0) {
996 if (dst_size
< value_len
) {
1000 memcpy(dst
, value
, value_len
);
1004 /* 'user.' plus a terminating null */
1005 user_name_len
= 5 + 1 + name_len
;
1007 if (buf_size
== 0) {
1008 /* skip copy - calc size only */
1009 rc
+= user_name_len
;
1010 } else if (dst_size
>= user_name_len
) {
1011 dst_size
-= user_name_len
;
1012 memcpy(dst
, "user.", 5);
1014 memcpy(dst
, src
->ea_data
, name_len
);
1018 rc
+= user_name_len
;
1020 /* stop before overrun buffer */
1026 if (!src
->next_entry_offset
)
1029 if (src_size
< le32_to_cpu(src
->next_entry_offset
)) {
1030 /* stop before overrun buffer */
1034 src_size
-= le32_to_cpu(src
->next_entry_offset
);
1035 src
= (void *)((char *)src
+
1036 le32_to_cpu(src
->next_entry_offset
));
1039 /* didn't find the named attribute */
1048 smb2_query_eas(const unsigned int xid
, struct cifs_tcon
*tcon
,
1049 const unsigned char *path
, const unsigned char *ea_name
,
1050 char *ea_data
, size_t buf_size
,
1051 struct cifs_sb_info
*cifs_sb
)
1055 struct kvec rsp_iov
= {NULL
, 0};
1056 int buftype
= CIFS_NO_BUFFER
;
1057 struct smb2_query_info_rsp
*rsp
;
1058 struct smb2_file_full_ea_info
*info
= NULL
;
1060 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
1064 rc
= smb2_query_info_compound(xid
, tcon
, utf16_path
,
1066 FILE_FULL_EA_INFORMATION
,
1069 MAX_SMB2_CREATE_RESPONSE_SIZE
-
1070 MAX_SMB2_CLOSE_RESPONSE_SIZE
,
1071 &rsp_iov
, &buftype
, cifs_sb
);
1074 * If ea_name is NULL (listxattr) and there are no EAs,
1075 * return 0 as it's not an error. Otherwise, the specified
1076 * ea_name was not found.
1078 if (!ea_name
&& rc
== -ENODATA
)
1083 rsp
= (struct smb2_query_info_rsp
*)rsp_iov
.iov_base
;
1084 rc
= smb2_validate_iov(le16_to_cpu(rsp
->OutputBufferOffset
),
1085 le32_to_cpu(rsp
->OutputBufferLength
),
1087 sizeof(struct smb2_file_full_ea_info
));
1091 info
= (struct smb2_file_full_ea_info
*)(
1092 le16_to_cpu(rsp
->OutputBufferOffset
) + (char *)rsp
);
1093 rc
= move_smb2_ea_to_cifs(ea_data
, buf_size
, info
,
1094 le32_to_cpu(rsp
->OutputBufferLength
), ea_name
);
1098 free_rsp_buf(buftype
, rsp_iov
.iov_base
);
1104 smb2_set_ea(const unsigned int xid
, struct cifs_tcon
*tcon
,
1105 const char *path
, const char *ea_name
, const void *ea_value
,
1106 const __u16 ea_value_len
, const struct nls_table
*nls_codepage
,
1107 struct cifs_sb_info
*cifs_sb
)
1109 struct cifs_ses
*ses
= tcon
->ses
;
1110 struct TCP_Server_Info
*server
= cifs_pick_channel(ses
);
1111 __le16
*utf16_path
= NULL
;
1112 int ea_name_len
= strlen(ea_name
);
1115 struct smb_rqst rqst
[3];
1116 int resp_buftype
[3];
1117 struct kvec rsp_iov
[3];
1118 struct kvec open_iov
[SMB2_CREATE_IOV_SIZE
];
1119 struct cifs_open_parms oparms
;
1120 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
1121 struct cifs_fid fid
;
1122 struct kvec si_iov
[SMB2_SET_INFO_IOV_SIZE
];
1123 unsigned int size
[1];
1125 struct smb2_file_full_ea_info
*ea
= NULL
;
1126 struct kvec close_iov
[1];
1127 struct smb2_query_info_rsp
*rsp
;
1128 int rc
, used_len
= 0;
1130 if (smb3_encryption_required(tcon
))
1131 flags
|= CIFS_TRANSFORM_REQ
;
1133 if (ea_name_len
> 255)
1136 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
1140 memset(rqst
, 0, sizeof(rqst
));
1141 resp_buftype
[0] = resp_buftype
[1] = resp_buftype
[2] = CIFS_NO_BUFFER
;
1142 memset(rsp_iov
, 0, sizeof(rsp_iov
));
1144 if (ses
->server
->ops
->query_all_EAs
) {
1146 rc
= ses
->server
->ops
->query_all_EAs(xid
, tcon
, path
,
1152 /* If we are adding a attribute we should first check
1153 * if there will be enough space available to store
1154 * the new EA. If not we should not add it since we
1155 * would not be able to even read the EAs back.
1157 rc
= smb2_query_info_compound(xid
, tcon
, utf16_path
,
1159 FILE_FULL_EA_INFORMATION
,
1162 MAX_SMB2_CREATE_RESPONSE_SIZE
-
1163 MAX_SMB2_CLOSE_RESPONSE_SIZE
,
1164 &rsp_iov
[1], &resp_buftype
[1], cifs_sb
);
1166 rsp
= (struct smb2_query_info_rsp
*)rsp_iov
[1].iov_base
;
1167 used_len
= le32_to_cpu(rsp
->OutputBufferLength
);
1169 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
1170 resp_buftype
[1] = CIFS_NO_BUFFER
;
1171 memset(&rsp_iov
[1], 0, sizeof(rsp_iov
[1]));
1174 /* Use a fudge factor of 256 bytes in case we collide
1175 * with a different set_EAs command.
1177 if(CIFSMaxBufSize
- MAX_SMB2_CREATE_RESPONSE_SIZE
-
1178 MAX_SMB2_CLOSE_RESPONSE_SIZE
- 256 <
1179 used_len
+ ea_name_len
+ ea_value_len
+ 1) {
1187 memset(&open_iov
, 0, sizeof(open_iov
));
1188 rqst
[0].rq_iov
= open_iov
;
1189 rqst
[0].rq_nvec
= SMB2_CREATE_IOV_SIZE
;
1191 memset(&oparms
, 0, sizeof(oparms
));
1193 oparms
.desired_access
= FILE_WRITE_EA
;
1194 oparms
.disposition
= FILE_OPEN
;
1195 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
1197 oparms
.reconnect
= false;
1199 rc
= SMB2_open_init(tcon
, server
,
1200 &rqst
[0], &oplock
, &oparms
, utf16_path
);
1203 smb2_set_next_command(tcon
, &rqst
[0]);
1207 memset(&si_iov
, 0, sizeof(si_iov
));
1208 rqst
[1].rq_iov
= si_iov
;
1209 rqst
[1].rq_nvec
= 1;
1211 len
= sizeof(ea
) + ea_name_len
+ ea_value_len
+ 1;
1212 ea
= kzalloc(len
, GFP_KERNEL
);
1218 ea
->ea_name_length
= ea_name_len
;
1219 ea
->ea_value_length
= cpu_to_le16(ea_value_len
);
1220 memcpy(ea
->ea_data
, ea_name
, ea_name_len
+ 1);
1221 memcpy(ea
->ea_data
+ ea_name_len
+ 1, ea_value
, ea_value_len
);
1226 rc
= SMB2_set_info_init(tcon
, server
,
1227 &rqst
[1], COMPOUND_FID
,
1228 COMPOUND_FID
, current
->tgid
,
1229 FILE_FULL_EA_INFORMATION
,
1230 SMB2_O_INFO_FILE
, 0, data
, size
);
1231 smb2_set_next_command(tcon
, &rqst
[1]);
1232 smb2_set_related(&rqst
[1]);
1236 memset(&close_iov
, 0, sizeof(close_iov
));
1237 rqst
[2].rq_iov
= close_iov
;
1238 rqst
[2].rq_nvec
= 1;
1239 rc
= SMB2_close_init(tcon
, server
,
1240 &rqst
[2], COMPOUND_FID
, COMPOUND_FID
, false);
1241 smb2_set_related(&rqst
[2]);
1243 rc
= compound_send_recv(xid
, ses
, server
,
1245 resp_buftype
, rsp_iov
);
1246 /* no need to bump num_remote_opens because handle immediately closed */
1251 SMB2_open_free(&rqst
[0]);
1252 SMB2_set_info_free(&rqst
[1]);
1253 SMB2_close_free(&rqst
[2]);
1254 free_rsp_buf(resp_buftype
[0], rsp_iov
[0].iov_base
);
1255 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
1256 free_rsp_buf(resp_buftype
[2], rsp_iov
[2].iov_base
);
1262 smb2_can_echo(struct TCP_Server_Info
*server
)
1264 return server
->echoes
;
1268 smb2_clear_stats(struct cifs_tcon
*tcon
)
1272 for (i
= 0; i
< NUMBER_OF_SMB2_COMMANDS
; i
++) {
1273 atomic_set(&tcon
->stats
.smb2_stats
.smb2_com_sent
[i
], 0);
1274 atomic_set(&tcon
->stats
.smb2_stats
.smb2_com_failed
[i
], 0);
1279 smb2_dump_share_caps(struct seq_file
*m
, struct cifs_tcon
*tcon
)
1281 seq_puts(m
, "\n\tShare Capabilities:");
1282 if (tcon
->capabilities
& SMB2_SHARE_CAP_DFS
)
1283 seq_puts(m
, " DFS,");
1284 if (tcon
->capabilities
& SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY
)
1285 seq_puts(m
, " CONTINUOUS AVAILABILITY,");
1286 if (tcon
->capabilities
& SMB2_SHARE_CAP_SCALEOUT
)
1287 seq_puts(m
, " SCALEOUT,");
1288 if (tcon
->capabilities
& SMB2_SHARE_CAP_CLUSTER
)
1289 seq_puts(m
, " CLUSTER,");
1290 if (tcon
->capabilities
& SMB2_SHARE_CAP_ASYMMETRIC
)
1291 seq_puts(m
, " ASYMMETRIC,");
1292 if (tcon
->capabilities
== 0)
1293 seq_puts(m
, " None");
1294 if (tcon
->ss_flags
& SSINFO_FLAGS_ALIGNED_DEVICE
)
1295 seq_puts(m
, " Aligned,");
1296 if (tcon
->ss_flags
& SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE
)
1297 seq_puts(m
, " Partition Aligned,");
1298 if (tcon
->ss_flags
& SSINFO_FLAGS_NO_SEEK_PENALTY
)
1299 seq_puts(m
, " SSD,");
1300 if (tcon
->ss_flags
& SSINFO_FLAGS_TRIM_ENABLED
)
1301 seq_puts(m
, " TRIM-support,");
1303 seq_printf(m
, "\tShare Flags: 0x%x", tcon
->share_flags
);
1304 seq_printf(m
, "\n\ttid: 0x%x", tcon
->tid
);
1305 if (tcon
->perf_sector_size
)
1306 seq_printf(m
, "\tOptimal sector size: 0x%x",
1307 tcon
->perf_sector_size
);
1308 seq_printf(m
, "\tMaximal Access: 0x%x", tcon
->maximal_access
);
1312 smb2_print_stats(struct seq_file
*m
, struct cifs_tcon
*tcon
)
1314 atomic_t
*sent
= tcon
->stats
.smb2_stats
.smb2_com_sent
;
1315 atomic_t
*failed
= tcon
->stats
.smb2_stats
.smb2_com_failed
;
1318 * Can't display SMB2_NEGOTIATE, SESSION_SETUP, LOGOFF, CANCEL and ECHO
1319 * totals (requests sent) since those SMBs are per-session not per tcon
1321 seq_printf(m
, "\nBytes read: %llu Bytes written: %llu",
1322 (long long)(tcon
->bytes_read
),
1323 (long long)(tcon
->bytes_written
));
1324 seq_printf(m
, "\nOpen files: %d total (local), %d open on server",
1325 atomic_read(&tcon
->num_local_opens
),
1326 atomic_read(&tcon
->num_remote_opens
));
1327 seq_printf(m
, "\nTreeConnects: %d total %d failed",
1328 atomic_read(&sent
[SMB2_TREE_CONNECT_HE
]),
1329 atomic_read(&failed
[SMB2_TREE_CONNECT_HE
]));
1330 seq_printf(m
, "\nTreeDisconnects: %d total %d failed",
1331 atomic_read(&sent
[SMB2_TREE_DISCONNECT_HE
]),
1332 atomic_read(&failed
[SMB2_TREE_DISCONNECT_HE
]));
1333 seq_printf(m
, "\nCreates: %d total %d failed",
1334 atomic_read(&sent
[SMB2_CREATE_HE
]),
1335 atomic_read(&failed
[SMB2_CREATE_HE
]));
1336 seq_printf(m
, "\nCloses: %d total %d failed",
1337 atomic_read(&sent
[SMB2_CLOSE_HE
]),
1338 atomic_read(&failed
[SMB2_CLOSE_HE
]));
1339 seq_printf(m
, "\nFlushes: %d total %d failed",
1340 atomic_read(&sent
[SMB2_FLUSH_HE
]),
1341 atomic_read(&failed
[SMB2_FLUSH_HE
]));
1342 seq_printf(m
, "\nReads: %d total %d failed",
1343 atomic_read(&sent
[SMB2_READ_HE
]),
1344 atomic_read(&failed
[SMB2_READ_HE
]));
1345 seq_printf(m
, "\nWrites: %d total %d failed",
1346 atomic_read(&sent
[SMB2_WRITE_HE
]),
1347 atomic_read(&failed
[SMB2_WRITE_HE
]));
1348 seq_printf(m
, "\nLocks: %d total %d failed",
1349 atomic_read(&sent
[SMB2_LOCK_HE
]),
1350 atomic_read(&failed
[SMB2_LOCK_HE
]));
1351 seq_printf(m
, "\nIOCTLs: %d total %d failed",
1352 atomic_read(&sent
[SMB2_IOCTL_HE
]),
1353 atomic_read(&failed
[SMB2_IOCTL_HE
]));
1354 seq_printf(m
, "\nQueryDirectories: %d total %d failed",
1355 atomic_read(&sent
[SMB2_QUERY_DIRECTORY_HE
]),
1356 atomic_read(&failed
[SMB2_QUERY_DIRECTORY_HE
]));
1357 seq_printf(m
, "\nChangeNotifies: %d total %d failed",
1358 atomic_read(&sent
[SMB2_CHANGE_NOTIFY_HE
]),
1359 atomic_read(&failed
[SMB2_CHANGE_NOTIFY_HE
]));
1360 seq_printf(m
, "\nQueryInfos: %d total %d failed",
1361 atomic_read(&sent
[SMB2_QUERY_INFO_HE
]),
1362 atomic_read(&failed
[SMB2_QUERY_INFO_HE
]));
1363 seq_printf(m
, "\nSetInfos: %d total %d failed",
1364 atomic_read(&sent
[SMB2_SET_INFO_HE
]),
1365 atomic_read(&failed
[SMB2_SET_INFO_HE
]));
1366 seq_printf(m
, "\nOplockBreaks: %d sent %d failed",
1367 atomic_read(&sent
[SMB2_OPLOCK_BREAK_HE
]),
1368 atomic_read(&failed
[SMB2_OPLOCK_BREAK_HE
]));
1372 smb2_set_fid(struct cifsFileInfo
*cfile
, struct cifs_fid
*fid
, __u32 oplock
)
1374 struct cifsInodeInfo
*cinode
= CIFS_I(d_inode(cfile
->dentry
));
1375 struct TCP_Server_Info
*server
= tlink_tcon(cfile
->tlink
)->ses
->server
;
1377 cfile
->fid
.persistent_fid
= fid
->persistent_fid
;
1378 cfile
->fid
.volatile_fid
= fid
->volatile_fid
;
1379 cfile
->fid
.access
= fid
->access
;
1380 #ifdef CONFIG_CIFS_DEBUG2
1381 cfile
->fid
.mid
= fid
->mid
;
1382 #endif /* CIFS_DEBUG2 */
1383 server
->ops
->set_oplock_level(cinode
, oplock
, fid
->epoch
,
1385 cinode
->can_cache_brlcks
= CIFS_CACHE_WRITE(cinode
);
1386 memcpy(cfile
->fid
.create_guid
, fid
->create_guid
, 16);
1390 smb2_close_file(const unsigned int xid
, struct cifs_tcon
*tcon
,
1391 struct cifs_fid
*fid
)
1393 SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
1397 smb2_close_getattr(const unsigned int xid
, struct cifs_tcon
*tcon
,
1398 struct cifsFileInfo
*cfile
)
1400 struct smb2_file_network_open_info file_inf
;
1401 struct inode
*inode
;
1404 rc
= __SMB2_close(xid
, tcon
, cfile
->fid
.persistent_fid
,
1405 cfile
->fid
.volatile_fid
, &file_inf
);
1409 inode
= d_inode(cfile
->dentry
);
1411 spin_lock(&inode
->i_lock
);
1412 CIFS_I(inode
)->time
= jiffies
;
1414 /* Creation time should not need to be updated on close */
1415 if (file_inf
.LastWriteTime
)
1416 inode
->i_mtime
= cifs_NTtimeToUnix(file_inf
.LastWriteTime
);
1417 if (file_inf
.ChangeTime
)
1418 inode
->i_ctime
= cifs_NTtimeToUnix(file_inf
.ChangeTime
);
1419 if (file_inf
.LastAccessTime
)
1420 inode
->i_atime
= cifs_NTtimeToUnix(file_inf
.LastAccessTime
);
1423 * i_blocks is not related to (i_size / i_blksize),
1424 * but instead 512 byte (2**9) size is required for
1425 * calculating num blocks.
1427 if (le64_to_cpu(file_inf
.AllocationSize
) > 4096)
1429 (512 - 1 + le64_to_cpu(file_inf
.AllocationSize
)) >> 9;
1431 /* End of file and Attributes should not have to be updated on close */
1432 spin_unlock(&inode
->i_lock
);
1436 SMB2_request_res_key(const unsigned int xid
, struct cifs_tcon
*tcon
,
1437 u64 persistent_fid
, u64 volatile_fid
,
1438 struct copychunk_ioctl
*pcchunk
)
1441 unsigned int ret_data_len
;
1442 struct resume_key_req
*res_key
;
1444 rc
= SMB2_ioctl(xid
, tcon
, persistent_fid
, volatile_fid
,
1445 FSCTL_SRV_REQUEST_RESUME_KEY
, true /* is_fsctl */,
1446 NULL
, 0 /* no input */, CIFSMaxBufSize
,
1447 (char **)&res_key
, &ret_data_len
);
1450 cifs_tcon_dbg(VFS
, "refcpy ioctl error %d getting resume key\n", rc
);
1451 goto req_res_key_exit
;
1453 if (ret_data_len
< sizeof(struct resume_key_req
)) {
1454 cifs_tcon_dbg(VFS
, "Invalid refcopy resume key length\n");
1456 goto req_res_key_exit
;
1458 memcpy(pcchunk
->SourceKey
, res_key
->ResumeKey
, COPY_CHUNK_RES_KEY_SIZE
);
1466 struct smb_rqst rqst
[3];
1467 struct kvec rsp_iov
[3];
1468 struct kvec open_iov
[SMB2_CREATE_IOV_SIZE
];
1469 struct kvec qi_iov
[1];
1470 struct kvec io_iov
[SMB2_IOCTL_IOV_SIZE
];
1471 struct kvec si_iov
[SMB2_SET_INFO_IOV_SIZE
];
1472 struct kvec close_iov
[1];
1476 smb2_ioctl_query_info(const unsigned int xid
,
1477 struct cifs_tcon
*tcon
,
1478 struct cifs_sb_info
*cifs_sb
,
1479 __le16
*path
, int is_dir
,
1482 struct iqi_vars
*vars
;
1483 struct smb_rqst
*rqst
;
1484 struct kvec
*rsp_iov
;
1485 struct cifs_ses
*ses
= tcon
->ses
;
1486 struct TCP_Server_Info
*server
= cifs_pick_channel(ses
);
1487 char __user
*arg
= (char __user
*)p
;
1488 struct smb_query_info qi
;
1489 struct smb_query_info __user
*pqi
;
1492 struct smb2_query_info_rsp
*qi_rsp
= NULL
;
1493 struct smb2_ioctl_rsp
*io_rsp
= NULL
;
1494 void *buffer
= NULL
;
1495 int resp_buftype
[3];
1496 struct cifs_open_parms oparms
;
1497 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
1498 struct cifs_fid fid
;
1499 unsigned int size
[2];
1501 int create_options
= is_dir
? CREATE_NOT_FILE
: CREATE_NOT_DIR
;
1503 vars
= kzalloc(sizeof(*vars
), GFP_ATOMIC
);
1506 rqst
= &vars
->rqst
[0];
1507 rsp_iov
= &vars
->rsp_iov
[0];
1509 resp_buftype
[0] = resp_buftype
[1] = resp_buftype
[2] = CIFS_NO_BUFFER
;
1511 if (copy_from_user(&qi
, arg
, sizeof(struct smb_query_info
)))
1514 if (qi
.output_buffer_length
> 1024) {
1519 if (!ses
|| !server
) {
1524 if (smb3_encryption_required(tcon
))
1525 flags
|= CIFS_TRANSFORM_REQ
;
1527 buffer
= memdup_user(arg
+ sizeof(struct smb_query_info
),
1528 qi
.output_buffer_length
);
1529 if (IS_ERR(buffer
)) {
1531 return PTR_ERR(buffer
);
1535 rqst
[0].rq_iov
= &vars
->open_iov
[0];
1536 rqst
[0].rq_nvec
= SMB2_CREATE_IOV_SIZE
;
1538 memset(&oparms
, 0, sizeof(oparms
));
1540 oparms
.disposition
= FILE_OPEN
;
1541 oparms
.create_options
= cifs_create_options(cifs_sb
, create_options
);
1543 oparms
.reconnect
= false;
1545 if (qi
.flags
& PASSTHRU_FSCTL
) {
1546 switch (qi
.info_type
& FSCTL_DEVICE_ACCESS_MASK
) {
1547 case FSCTL_DEVICE_ACCESS_FILE_READ_WRITE_ACCESS
:
1548 oparms
.desired_access
= FILE_READ_DATA
| FILE_WRITE_DATA
| FILE_READ_ATTRIBUTES
| SYNCHRONIZE
;
1550 case FSCTL_DEVICE_ACCESS_FILE_ANY_ACCESS
:
1551 oparms
.desired_access
= GENERIC_ALL
;
1553 case FSCTL_DEVICE_ACCESS_FILE_READ_ACCESS
:
1554 oparms
.desired_access
= GENERIC_READ
;
1556 case FSCTL_DEVICE_ACCESS_FILE_WRITE_ACCESS
:
1557 oparms
.desired_access
= GENERIC_WRITE
;
1560 } else if (qi
.flags
& PASSTHRU_SET_INFO
) {
1561 oparms
.desired_access
= GENERIC_WRITE
;
1563 oparms
.desired_access
= FILE_READ_ATTRIBUTES
| READ_CONTROL
;
1566 rc
= SMB2_open_init(tcon
, server
,
1567 &rqst
[0], &oplock
, &oparms
, path
);
1570 smb2_set_next_command(tcon
, &rqst
[0]);
1573 if (qi
.flags
& PASSTHRU_FSCTL
) {
1574 /* Can eventually relax perm check since server enforces too */
1575 if (!capable(CAP_SYS_ADMIN
))
1578 rqst
[1].rq_iov
= &vars
->io_iov
[0];
1579 rqst
[1].rq_nvec
= SMB2_IOCTL_IOV_SIZE
;
1581 rc
= SMB2_ioctl_init(tcon
, server
,
1583 COMPOUND_FID
, COMPOUND_FID
,
1584 qi
.info_type
, true, buffer
,
1585 qi
.output_buffer_length
,
1587 MAX_SMB2_CREATE_RESPONSE_SIZE
-
1588 MAX_SMB2_CLOSE_RESPONSE_SIZE
);
1590 } else if (qi
.flags
== PASSTHRU_SET_INFO
) {
1591 /* Can eventually relax perm check since server enforces too */
1592 if (!capable(CAP_SYS_ADMIN
))
1595 rqst
[1].rq_iov
= &vars
->si_iov
[0];
1596 rqst
[1].rq_nvec
= 1;
1601 rc
= SMB2_set_info_init(tcon
, server
,
1603 COMPOUND_FID
, COMPOUND_FID
,
1605 FILE_END_OF_FILE_INFORMATION
,
1606 SMB2_O_INFO_FILE
, 0, data
, size
);
1608 } else if (qi
.flags
== PASSTHRU_QUERY_INFO
) {
1609 rqst
[1].rq_iov
= &vars
->qi_iov
[0];
1610 rqst
[1].rq_nvec
= 1;
1612 rc
= SMB2_query_info_init(tcon
, server
,
1613 &rqst
[1], COMPOUND_FID
,
1614 COMPOUND_FID
, qi
.file_info_class
,
1615 qi
.info_type
, qi
.additional_information
,
1616 qi
.input_buffer_length
,
1617 qi
.output_buffer_length
, buffer
);
1618 } else { /* unknown flags */
1619 cifs_tcon_dbg(VFS
, "Invalid passthru query flags: 0x%x\n",
1626 smb2_set_next_command(tcon
, &rqst
[1]);
1627 smb2_set_related(&rqst
[1]);
1630 rqst
[2].rq_iov
= &vars
->close_iov
[0];
1631 rqst
[2].rq_nvec
= 1;
1633 rc
= SMB2_close_init(tcon
, server
,
1634 &rqst
[2], COMPOUND_FID
, COMPOUND_FID
, false);
1637 smb2_set_related(&rqst
[2]);
1639 rc
= compound_send_recv(xid
, ses
, server
,
1641 resp_buftype
, rsp_iov
);
1645 /* No need to bump num_remote_opens since handle immediately closed */
1646 if (qi
.flags
& PASSTHRU_FSCTL
) {
1647 pqi
= (struct smb_query_info __user
*)arg
;
1648 io_rsp
= (struct smb2_ioctl_rsp
*)rsp_iov
[1].iov_base
;
1649 if (le32_to_cpu(io_rsp
->OutputCount
) < qi
.input_buffer_length
)
1650 qi
.input_buffer_length
= le32_to_cpu(io_rsp
->OutputCount
);
1651 if (qi
.input_buffer_length
> 0 &&
1652 le32_to_cpu(io_rsp
->OutputOffset
) + qi
.input_buffer_length
1653 > rsp_iov
[1].iov_len
)
1656 if (copy_to_user(&pqi
->input_buffer_length
,
1657 &qi
.input_buffer_length
,
1658 sizeof(qi
.input_buffer_length
)))
1661 if (copy_to_user((void __user
*)pqi
+ sizeof(struct smb_query_info
),
1662 (const void *)io_rsp
+ le32_to_cpu(io_rsp
->OutputOffset
),
1663 qi
.input_buffer_length
))
1666 pqi
= (struct smb_query_info __user
*)arg
;
1667 qi_rsp
= (struct smb2_query_info_rsp
*)rsp_iov
[1].iov_base
;
1668 if (le32_to_cpu(qi_rsp
->OutputBufferLength
) < qi
.input_buffer_length
)
1669 qi
.input_buffer_length
= le32_to_cpu(qi_rsp
->OutputBufferLength
);
1670 if (copy_to_user(&pqi
->input_buffer_length
,
1671 &qi
.input_buffer_length
,
1672 sizeof(qi
.input_buffer_length
)))
1675 if (copy_to_user(pqi
+ 1, qi_rsp
->Buffer
,
1676 qi
.input_buffer_length
))
1683 SMB2_open_free(&rqst
[0]);
1684 if (qi
.flags
& PASSTHRU_FSCTL
)
1685 SMB2_ioctl_free(&rqst
[1]);
1687 SMB2_query_info_free(&rqst
[1]);
1689 SMB2_close_free(&rqst
[2]);
1690 free_rsp_buf(resp_buftype
[0], rsp_iov
[0].iov_base
);
1691 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
1692 free_rsp_buf(resp_buftype
[2], rsp_iov
[2].iov_base
);
1701 smb2_copychunk_range(const unsigned int xid
,
1702 struct cifsFileInfo
*srcfile
,
1703 struct cifsFileInfo
*trgtfile
, u64 src_off
,
1704 u64 len
, u64 dest_off
)
1707 unsigned int ret_data_len
;
1708 struct copychunk_ioctl
*pcchunk
;
1709 struct copychunk_ioctl_rsp
*retbuf
= NULL
;
1710 struct cifs_tcon
*tcon
;
1711 int chunks_copied
= 0;
1712 bool chunk_sizes_updated
= false;
1713 ssize_t bytes_written
, total_bytes_written
= 0;
1715 pcchunk
= kmalloc(sizeof(struct copychunk_ioctl
), GFP_KERNEL
);
1717 if (pcchunk
== NULL
)
1720 cifs_dbg(FYI
, "%s: about to call request res key\n", __func__
);
1721 /* Request a key from the server to identify the source of the copy */
1722 rc
= SMB2_request_res_key(xid
, tlink_tcon(srcfile
->tlink
),
1723 srcfile
->fid
.persistent_fid
,
1724 srcfile
->fid
.volatile_fid
, pcchunk
);
1726 /* Note: request_res_key sets res_key null only if rc !=0 */
1730 /* For now array only one chunk long, will make more flexible later */
1731 pcchunk
->ChunkCount
= cpu_to_le32(1);
1732 pcchunk
->Reserved
= 0;
1733 pcchunk
->Reserved2
= 0;
1735 tcon
= tlink_tcon(trgtfile
->tlink
);
1738 pcchunk
->SourceOffset
= cpu_to_le64(src_off
);
1739 pcchunk
->TargetOffset
= cpu_to_le64(dest_off
);
1741 cpu_to_le32(min_t(u32
, len
, tcon
->max_bytes_chunk
));
1743 /* Request server copy to target from src identified by key */
1744 rc
= SMB2_ioctl(xid
, tcon
, trgtfile
->fid
.persistent_fid
,
1745 trgtfile
->fid
.volatile_fid
, FSCTL_SRV_COPYCHUNK_WRITE
,
1746 true /* is_fsctl */, (char *)pcchunk
,
1747 sizeof(struct copychunk_ioctl
), CIFSMaxBufSize
,
1748 (char **)&retbuf
, &ret_data_len
);
1751 sizeof(struct copychunk_ioctl_rsp
)) {
1752 cifs_tcon_dbg(VFS
, "Invalid cchunk response size\n");
1756 if (retbuf
->TotalBytesWritten
== 0) {
1757 cifs_dbg(FYI
, "no bytes copied\n");
1762 * Check if server claimed to write more than we asked
1764 if (le32_to_cpu(retbuf
->TotalBytesWritten
) >
1765 le32_to_cpu(pcchunk
->Length
)) {
1766 cifs_tcon_dbg(VFS
, "Invalid copy chunk response\n");
1770 if (le32_to_cpu(retbuf
->ChunksWritten
) != 1) {
1771 cifs_tcon_dbg(VFS
, "Invalid num chunks written\n");
1777 bytes_written
= le32_to_cpu(retbuf
->TotalBytesWritten
);
1778 src_off
+= bytes_written
;
1779 dest_off
+= bytes_written
;
1780 len
-= bytes_written
;
1781 total_bytes_written
+= bytes_written
;
1783 cifs_dbg(FYI
, "Chunks %d PartialChunk %d Total %zu\n",
1784 le32_to_cpu(retbuf
->ChunksWritten
),
1785 le32_to_cpu(retbuf
->ChunkBytesWritten
),
1787 } else if (rc
== -EINVAL
) {
1788 if (ret_data_len
!= sizeof(struct copychunk_ioctl_rsp
))
1791 cifs_dbg(FYI
, "MaxChunks %d BytesChunk %d MaxCopy %d\n",
1792 le32_to_cpu(retbuf
->ChunksWritten
),
1793 le32_to_cpu(retbuf
->ChunkBytesWritten
),
1794 le32_to_cpu(retbuf
->TotalBytesWritten
));
1797 * Check if this is the first request using these sizes,
1798 * (ie check if copy succeed once with original sizes
1799 * and check if the server gave us different sizes after
1800 * we already updated max sizes on previous request).
1801 * if not then why is the server returning an error now
1803 if ((chunks_copied
!= 0) || chunk_sizes_updated
)
1806 /* Check that server is not asking us to grow size */
1807 if (le32_to_cpu(retbuf
->ChunkBytesWritten
) <
1808 tcon
->max_bytes_chunk
)
1809 tcon
->max_bytes_chunk
=
1810 le32_to_cpu(retbuf
->ChunkBytesWritten
);
1812 goto cchunk_out
; /* server gave us bogus size */
1814 /* No need to change MaxChunks since already set to 1 */
1815 chunk_sizes_updated
= true;
1826 return total_bytes_written
;
1830 smb2_flush_file(const unsigned int xid
, struct cifs_tcon
*tcon
,
1831 struct cifs_fid
*fid
)
1833 return SMB2_flush(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
1837 smb2_read_data_offset(char *buf
)
1839 struct smb2_read_rsp
*rsp
= (struct smb2_read_rsp
*)buf
;
1841 return rsp
->DataOffset
;
1845 smb2_read_data_length(char *buf
, bool in_remaining
)
1847 struct smb2_read_rsp
*rsp
= (struct smb2_read_rsp
*)buf
;
1850 return le32_to_cpu(rsp
->DataRemaining
);
1852 return le32_to_cpu(rsp
->DataLength
);
1857 smb2_sync_read(const unsigned int xid
, struct cifs_fid
*pfid
,
1858 struct cifs_io_parms
*parms
, unsigned int *bytes_read
,
1859 char **buf
, int *buf_type
)
1861 parms
->persistent_fid
= pfid
->persistent_fid
;
1862 parms
->volatile_fid
= pfid
->volatile_fid
;
1863 return SMB2_read(xid
, parms
, bytes_read
, buf
, buf_type
);
1867 smb2_sync_write(const unsigned int xid
, struct cifs_fid
*pfid
,
1868 struct cifs_io_parms
*parms
, unsigned int *written
,
1869 struct kvec
*iov
, unsigned long nr_segs
)
1872 parms
->persistent_fid
= pfid
->persistent_fid
;
1873 parms
->volatile_fid
= pfid
->volatile_fid
;
1874 return SMB2_write(xid
, parms
, written
, iov
, nr_segs
);
1877 /* Set or clear the SPARSE_FILE attribute based on value passed in setsparse */
1878 static bool smb2_set_sparse(const unsigned int xid
, struct cifs_tcon
*tcon
,
1879 struct cifsFileInfo
*cfile
, struct inode
*inode
, __u8 setsparse
)
1881 struct cifsInodeInfo
*cifsi
;
1884 cifsi
= CIFS_I(inode
);
1886 /* if file already sparse don't bother setting sparse again */
1887 if ((cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) && setsparse
)
1888 return true; /* already sparse */
1890 if (!(cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) && !setsparse
)
1891 return true; /* already not sparse */
1894 * Can't check for sparse support on share the usual way via the
1895 * FS attribute info (FILE_SUPPORTS_SPARSE_FILES) on the share
1896 * since Samba server doesn't set the flag on the share, yet
1897 * supports the set sparse FSCTL and returns sparse correctly
1898 * in the file attributes. If we fail setting sparse though we
1899 * mark that server does not support sparse files for this share
1900 * to avoid repeatedly sending the unsupported fsctl to server
1901 * if the file is repeatedly extended.
1903 if (tcon
->broken_sparse_sup
)
1906 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
1907 cfile
->fid
.volatile_fid
, FSCTL_SET_SPARSE
,
1909 &setsparse
, 1, CIFSMaxBufSize
, NULL
, NULL
);
1911 tcon
->broken_sparse_sup
= true;
1912 cifs_dbg(FYI
, "set sparse rc = %d\n", rc
);
1917 cifsi
->cifsAttrs
|= FILE_ATTRIBUTE_SPARSE_FILE
;
1919 cifsi
->cifsAttrs
&= (~FILE_ATTRIBUTE_SPARSE_FILE
);
1925 smb2_set_file_size(const unsigned int xid
, struct cifs_tcon
*tcon
,
1926 struct cifsFileInfo
*cfile
, __u64 size
, bool set_alloc
)
1928 __le64 eof
= cpu_to_le64(size
);
1929 struct inode
*inode
;
1932 * If extending file more than one page make sparse. Many Linux fs
1933 * make files sparse by default when extending via ftruncate
1935 inode
= d_inode(cfile
->dentry
);
1937 if (!set_alloc
&& (size
> inode
->i_size
+ 8192)) {
1938 __u8 set_sparse
= 1;
1940 /* whether set sparse succeeds or not, extend the file */
1941 smb2_set_sparse(xid
, tcon
, cfile
, inode
, set_sparse
);
1944 return SMB2_set_eof(xid
, tcon
, cfile
->fid
.persistent_fid
,
1945 cfile
->fid
.volatile_fid
, cfile
->pid
, &eof
);
1949 smb2_duplicate_extents(const unsigned int xid
,
1950 struct cifsFileInfo
*srcfile
,
1951 struct cifsFileInfo
*trgtfile
, u64 src_off
,
1952 u64 len
, u64 dest_off
)
1955 unsigned int ret_data_len
;
1956 struct duplicate_extents_to_file dup_ext_buf
;
1957 struct cifs_tcon
*tcon
= tlink_tcon(trgtfile
->tlink
);
1959 /* server fileays advertise duplicate extent support with this flag */
1960 if ((le32_to_cpu(tcon
->fsAttrInfo
.Attributes
) &
1961 FILE_SUPPORTS_BLOCK_REFCOUNTING
) == 0)
1964 dup_ext_buf
.VolatileFileHandle
= srcfile
->fid
.volatile_fid
;
1965 dup_ext_buf
.PersistentFileHandle
= srcfile
->fid
.persistent_fid
;
1966 dup_ext_buf
.SourceFileOffset
= cpu_to_le64(src_off
);
1967 dup_ext_buf
.TargetFileOffset
= cpu_to_le64(dest_off
);
1968 dup_ext_buf
.ByteCount
= cpu_to_le64(len
);
1969 cifs_dbg(FYI
, "Duplicate extents: src off %lld dst off %lld len %lld\n",
1970 src_off
, dest_off
, len
);
1972 rc
= smb2_set_file_size(xid
, tcon
, trgtfile
, dest_off
+ len
, false);
1974 goto duplicate_extents_out
;
1976 rc
= SMB2_ioctl(xid
, tcon
, trgtfile
->fid
.persistent_fid
,
1977 trgtfile
->fid
.volatile_fid
,
1978 FSCTL_DUPLICATE_EXTENTS_TO_FILE
,
1979 true /* is_fsctl */,
1980 (char *)&dup_ext_buf
,
1981 sizeof(struct duplicate_extents_to_file
),
1982 CIFSMaxBufSize
, NULL
,
1985 if (ret_data_len
> 0)
1986 cifs_dbg(FYI
, "Non-zero response length in duplicate extents\n");
1988 duplicate_extents_out
:
1993 smb2_set_compression(const unsigned int xid
, struct cifs_tcon
*tcon
,
1994 struct cifsFileInfo
*cfile
)
1996 return SMB2_set_compression(xid
, tcon
, cfile
->fid
.persistent_fid
,
1997 cfile
->fid
.volatile_fid
);
2001 smb3_set_integrity(const unsigned int xid
, struct cifs_tcon
*tcon
,
2002 struct cifsFileInfo
*cfile
)
2004 struct fsctl_set_integrity_information_req integr_info
;
2005 unsigned int ret_data_len
;
2007 integr_info
.ChecksumAlgorithm
= cpu_to_le16(CHECKSUM_TYPE_UNCHANGED
);
2008 integr_info
.Flags
= 0;
2009 integr_info
.Reserved
= 0;
2011 return SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
2012 cfile
->fid
.volatile_fid
,
2013 FSCTL_SET_INTEGRITY_INFORMATION
,
2014 true /* is_fsctl */,
2015 (char *)&integr_info
,
2016 sizeof(struct fsctl_set_integrity_information_req
),
2017 CIFSMaxBufSize
, NULL
,
2022 /* GMT Token is @GMT-YYYY.MM.DD-HH.MM.SS Unicode which is 48 bytes + null */
2023 #define GMT_TOKEN_SIZE 50
2025 #define MIN_SNAPSHOT_ARRAY_SIZE 16 /* See MS-SMB2 section 3.3.5.15.1 */
2028 * Input buffer contains (empty) struct smb_snapshot array with size filled in
2029 * For output see struct SRV_SNAPSHOT_ARRAY in MS-SMB2 section 2.2.32.2
2032 smb3_enum_snapshots(const unsigned int xid
, struct cifs_tcon
*tcon
,
2033 struct cifsFileInfo
*cfile
, void __user
*ioc_buf
)
2035 char *retbuf
= NULL
;
2036 unsigned int ret_data_len
= 0;
2038 u32 max_response_size
;
2039 struct smb_snapshot_array snapshot_in
;
2042 * On the first query to enumerate the list of snapshots available
2043 * for this volume the buffer begins with 0 (number of snapshots
2044 * which can be returned is zero since at that point we do not know
2045 * how big the buffer needs to be). On the second query,
2046 * it (ret_data_len) is set to number of snapshots so we can
2047 * know to set the maximum response size larger (see below).
2049 if (get_user(ret_data_len
, (unsigned int __user
*)ioc_buf
))
2053 * Note that for snapshot queries that servers like Azure expect that
2054 * the first query be minimal size (and just used to get the number/size
2055 * of previous versions) so response size must be specified as EXACTLY
2056 * sizeof(struct snapshot_array) which is 16 when rounded up to multiple
2059 if (ret_data_len
== 0)
2060 max_response_size
= MIN_SNAPSHOT_ARRAY_SIZE
;
2062 max_response_size
= CIFSMaxBufSize
;
2064 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
2065 cfile
->fid
.volatile_fid
,
2066 FSCTL_SRV_ENUMERATE_SNAPSHOTS
,
2067 true /* is_fsctl */,
2068 NULL
, 0 /* no input data */, max_response_size
,
2071 cifs_dbg(FYI
, "enum snaphots ioctl returned %d and ret buflen is %d\n",
2076 if (ret_data_len
&& (ioc_buf
!= NULL
) && (retbuf
!= NULL
)) {
2078 if (copy_from_user(&snapshot_in
, ioc_buf
,
2079 sizeof(struct smb_snapshot_array
))) {
2086 * Check for min size, ie not large enough to fit even one GMT
2087 * token (snapshot). On the first ioctl some users may pass in
2088 * smaller size (or zero) to simply get the size of the array
2089 * so the user space caller can allocate sufficient memory
2090 * and retry the ioctl again with larger array size sufficient
2091 * to hold all of the snapshot GMT tokens on the second try.
2093 if (snapshot_in
.snapshot_array_size
< GMT_TOKEN_SIZE
)
2094 ret_data_len
= sizeof(struct smb_snapshot_array
);
2097 * We return struct SRV_SNAPSHOT_ARRAY, followed by
2098 * the snapshot array (of 50 byte GMT tokens) each
2099 * representing an available previous version of the data
2101 if (ret_data_len
> (snapshot_in
.snapshot_array_size
+
2102 sizeof(struct smb_snapshot_array
)))
2103 ret_data_len
= snapshot_in
.snapshot_array_size
+
2104 sizeof(struct smb_snapshot_array
);
2106 if (copy_to_user(ioc_buf
, retbuf
, ret_data_len
))
2117 smb3_notify(const unsigned int xid
, struct file
*pfile
,
2118 void __user
*ioc_buf
)
2120 struct smb3_notify notify
;
2121 struct dentry
*dentry
= pfile
->f_path
.dentry
;
2122 struct inode
*inode
= file_inode(pfile
);
2123 struct cifs_sb_info
*cifs_sb
;
2124 struct cifs_open_parms oparms
;
2125 struct cifs_fid fid
;
2126 struct cifs_tcon
*tcon
;
2127 unsigned char *path
= NULL
;
2128 __le16
*utf16_path
= NULL
;
2129 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
2132 path
= build_path_from_dentry(dentry
);
2136 cifs_sb
= CIFS_SB(inode
->i_sb
);
2138 utf16_path
= cifs_convert_path_to_utf16(path
+ 1, cifs_sb
);
2139 if (utf16_path
== NULL
) {
2144 if (copy_from_user(¬ify
, ioc_buf
, sizeof(struct smb3_notify
))) {
2149 tcon
= cifs_sb_master_tcon(cifs_sb
);
2151 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
2152 oparms
.disposition
= FILE_OPEN
;
2153 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
2155 oparms
.reconnect
= false;
2157 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
,
2162 rc
= SMB2_change_notify(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
2163 notify
.watch_tree
, notify
.completion_filter
);
2165 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
2167 cifs_dbg(FYI
, "change notify for path %s rc %d\n", path
, rc
);
2176 smb2_query_dir_first(const unsigned int xid
, struct cifs_tcon
*tcon
,
2177 const char *path
, struct cifs_sb_info
*cifs_sb
,
2178 struct cifs_fid
*fid
, __u16 search_flags
,
2179 struct cifs_search_info
*srch_inf
)
2182 struct smb_rqst rqst
[2];
2183 struct kvec rsp_iov
[2];
2184 int resp_buftype
[2];
2185 struct kvec open_iov
[SMB2_CREATE_IOV_SIZE
];
2186 struct kvec qd_iov
[SMB2_QUERY_DIRECTORY_IOV_SIZE
];
2188 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
2189 struct cifs_open_parms oparms
;
2190 struct smb2_query_directory_rsp
*qd_rsp
= NULL
;
2191 struct smb2_create_rsp
*op_rsp
= NULL
;
2192 struct TCP_Server_Info
*server
= cifs_pick_channel(tcon
->ses
);
2194 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
2198 if (smb3_encryption_required(tcon
))
2199 flags
|= CIFS_TRANSFORM_REQ
;
2201 memset(rqst
, 0, sizeof(rqst
));
2202 resp_buftype
[0] = resp_buftype
[1] = CIFS_NO_BUFFER
;
2203 memset(rsp_iov
, 0, sizeof(rsp_iov
));
2206 memset(&open_iov
, 0, sizeof(open_iov
));
2207 rqst
[0].rq_iov
= open_iov
;
2208 rqst
[0].rq_nvec
= SMB2_CREATE_IOV_SIZE
;
2211 oparms
.desired_access
= FILE_READ_ATTRIBUTES
| FILE_READ_DATA
;
2212 oparms
.disposition
= FILE_OPEN
;
2213 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
2215 oparms
.reconnect
= false;
2217 rc
= SMB2_open_init(tcon
, server
,
2218 &rqst
[0], &oplock
, &oparms
, utf16_path
);
2221 smb2_set_next_command(tcon
, &rqst
[0]);
2223 /* Query directory */
2224 srch_inf
->entries_in_buffer
= 0;
2225 srch_inf
->index_of_last_entry
= 2;
2227 memset(&qd_iov
, 0, sizeof(qd_iov
));
2228 rqst
[1].rq_iov
= qd_iov
;
2229 rqst
[1].rq_nvec
= SMB2_QUERY_DIRECTORY_IOV_SIZE
;
2231 rc
= SMB2_query_directory_init(xid
, tcon
, server
,
2233 COMPOUND_FID
, COMPOUND_FID
,
2234 0, srch_inf
->info_level
);
2238 smb2_set_related(&rqst
[1]);
2240 rc
= compound_send_recv(xid
, tcon
->ses
, server
,
2242 resp_buftype
, rsp_iov
);
2244 /* If the open failed there is nothing to do */
2245 op_rsp
= (struct smb2_create_rsp
*)rsp_iov
[0].iov_base
;
2246 if (op_rsp
== NULL
|| op_rsp
->sync_hdr
.Status
!= STATUS_SUCCESS
) {
2247 cifs_dbg(FYI
, "query_dir_first: open failed rc=%d\n", rc
);
2250 fid
->persistent_fid
= op_rsp
->PersistentFileId
;
2251 fid
->volatile_fid
= op_rsp
->VolatileFileId
;
2253 /* Anything else than ENODATA means a genuine error */
2254 if (rc
&& rc
!= -ENODATA
) {
2255 SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
2256 cifs_dbg(FYI
, "query_dir_first: query directory failed rc=%d\n", rc
);
2257 trace_smb3_query_dir_err(xid
, fid
->persistent_fid
,
2258 tcon
->tid
, tcon
->ses
->Suid
, 0, 0, rc
);
2262 atomic_inc(&tcon
->num_remote_opens
);
2264 qd_rsp
= (struct smb2_query_directory_rsp
*)rsp_iov
[1].iov_base
;
2265 if (qd_rsp
->sync_hdr
.Status
== STATUS_NO_MORE_FILES
) {
2266 trace_smb3_query_dir_done(xid
, fid
->persistent_fid
,
2267 tcon
->tid
, tcon
->ses
->Suid
, 0, 0);
2268 srch_inf
->endOfSearch
= true;
2273 rc
= smb2_parse_query_directory(tcon
, &rsp_iov
[1], resp_buftype
[1],
2276 trace_smb3_query_dir_err(xid
, fid
->persistent_fid
, tcon
->tid
,
2277 tcon
->ses
->Suid
, 0, 0, rc
);
2280 resp_buftype
[1] = CIFS_NO_BUFFER
;
2282 trace_smb3_query_dir_done(xid
, fid
->persistent_fid
, tcon
->tid
,
2283 tcon
->ses
->Suid
, 0, srch_inf
->entries_in_buffer
);
2287 SMB2_open_free(&rqst
[0]);
2288 SMB2_query_directory_free(&rqst
[1]);
2289 free_rsp_buf(resp_buftype
[0], rsp_iov
[0].iov_base
);
2290 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
2295 smb2_query_dir_next(const unsigned int xid
, struct cifs_tcon
*tcon
,
2296 struct cifs_fid
*fid
, __u16 search_flags
,
2297 struct cifs_search_info
*srch_inf
)
2299 return SMB2_query_directory(xid
, tcon
, fid
->persistent_fid
,
2300 fid
->volatile_fid
, 0, srch_inf
);
2304 smb2_close_dir(const unsigned int xid
, struct cifs_tcon
*tcon
,
2305 struct cifs_fid
*fid
)
2307 return SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
2311 * If we negotiate SMB2 protocol and get STATUS_PENDING - update
2312 * the number of credits and return true. Otherwise - return false.
2315 smb2_is_status_pending(char *buf
, struct TCP_Server_Info
*server
)
2317 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
2319 if (shdr
->Status
!= STATUS_PENDING
)
2322 if (shdr
->CreditRequest
) {
2323 spin_lock(&server
->req_lock
);
2324 server
->credits
+= le16_to_cpu(shdr
->CreditRequest
);
2325 spin_unlock(&server
->req_lock
);
2326 wake_up(&server
->request_q
);
2333 smb2_is_session_expired(char *buf
)
2335 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
2337 if (shdr
->Status
!= STATUS_NETWORK_SESSION_EXPIRED
&&
2338 shdr
->Status
!= STATUS_USER_SESSION_DELETED
)
2341 trace_smb3_ses_expired(shdr
->TreeId
, shdr
->SessionId
,
2342 le16_to_cpu(shdr
->Command
),
2343 le64_to_cpu(shdr
->MessageId
));
2344 cifs_dbg(FYI
, "Session expired or deleted\n");
2350 smb2_oplock_response(struct cifs_tcon
*tcon
, struct cifs_fid
*fid
,
2351 struct cifsInodeInfo
*cinode
)
2353 if (tcon
->ses
->server
->capabilities
& SMB2_GLOBAL_CAP_LEASING
)
2354 return SMB2_lease_break(0, tcon
, cinode
->lease_key
,
2355 smb2_get_lease_state(cinode
));
2357 return SMB2_oplock_break(0, tcon
, fid
->persistent_fid
,
2359 CIFS_CACHE_READ(cinode
) ? 1 : 0);
2363 smb2_set_related(struct smb_rqst
*rqst
)
2365 struct smb2_sync_hdr
*shdr
;
2367 shdr
= (struct smb2_sync_hdr
*)(rqst
->rq_iov
[0].iov_base
);
2369 cifs_dbg(FYI
, "shdr NULL in smb2_set_related\n");
2372 shdr
->Flags
|= SMB2_FLAGS_RELATED_OPERATIONS
;
2375 char smb2_padding
[7] = {0, 0, 0, 0, 0, 0, 0};
2378 smb2_set_next_command(struct cifs_tcon
*tcon
, struct smb_rqst
*rqst
)
2380 struct smb2_sync_hdr
*shdr
;
2381 struct cifs_ses
*ses
= tcon
->ses
;
2382 struct TCP_Server_Info
*server
= ses
->server
;
2383 unsigned long len
= smb_rqst_len(server
, rqst
);
2386 shdr
= (struct smb2_sync_hdr
*)(rqst
->rq_iov
[0].iov_base
);
2388 cifs_dbg(FYI
, "shdr NULL in smb2_set_next_command\n");
2392 /* SMB headers in a compound are 8 byte aligned. */
2394 /* No padding needed */
2398 num_padding
= 8 - (len
& 7);
2399 if (!smb3_encryption_required(tcon
)) {
2401 * If we do not have encryption then we can just add an extra
2402 * iov for the padding.
2404 rqst
->rq_iov
[rqst
->rq_nvec
].iov_base
= smb2_padding
;
2405 rqst
->rq_iov
[rqst
->rq_nvec
].iov_len
= num_padding
;
2410 * We can not add a small padding iov for the encryption case
2411 * because the encryption framework can not handle the padding
2413 * We have to flatten this into a single buffer and add
2414 * the padding to it.
2416 for (i
= 1; i
< rqst
->rq_nvec
; i
++) {
2417 memcpy(rqst
->rq_iov
[0].iov_base
+
2418 rqst
->rq_iov
[0].iov_len
,
2419 rqst
->rq_iov
[i
].iov_base
,
2420 rqst
->rq_iov
[i
].iov_len
);
2421 rqst
->rq_iov
[0].iov_len
+= rqst
->rq_iov
[i
].iov_len
;
2423 memset(rqst
->rq_iov
[0].iov_base
+ rqst
->rq_iov
[0].iov_len
,
2425 rqst
->rq_iov
[0].iov_len
+= num_padding
;
2431 shdr
->NextCommand
= cpu_to_le32(len
);
2435 * Passes the query info response back to the caller on success.
2436 * Caller need to free this with free_rsp_buf().
2439 smb2_query_info_compound(const unsigned int xid
, struct cifs_tcon
*tcon
,
2440 __le16
*utf16_path
, u32 desired_access
,
2441 u32
class, u32 type
, u32 output_len
,
2442 struct kvec
*rsp
, int *buftype
,
2443 struct cifs_sb_info
*cifs_sb
)
2445 struct cifs_ses
*ses
= tcon
->ses
;
2446 struct TCP_Server_Info
*server
= cifs_pick_channel(ses
);
2448 struct smb_rqst rqst
[3];
2449 int resp_buftype
[3];
2450 struct kvec rsp_iov
[3];
2451 struct kvec open_iov
[SMB2_CREATE_IOV_SIZE
];
2452 struct kvec qi_iov
[1];
2453 struct kvec close_iov
[1];
2454 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
2455 struct cifs_open_parms oparms
;
2456 struct cifs_fid fid
;
2459 if (smb3_encryption_required(tcon
))
2460 flags
|= CIFS_TRANSFORM_REQ
;
2462 memset(rqst
, 0, sizeof(rqst
));
2463 resp_buftype
[0] = resp_buftype
[1] = resp_buftype
[2] = CIFS_NO_BUFFER
;
2464 memset(rsp_iov
, 0, sizeof(rsp_iov
));
2466 memset(&open_iov
, 0, sizeof(open_iov
));
2467 rqst
[0].rq_iov
= open_iov
;
2468 rqst
[0].rq_nvec
= SMB2_CREATE_IOV_SIZE
;
2471 oparms
.desired_access
= desired_access
;
2472 oparms
.disposition
= FILE_OPEN
;
2473 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
2475 oparms
.reconnect
= false;
2477 rc
= SMB2_open_init(tcon
, server
,
2478 &rqst
[0], &oplock
, &oparms
, utf16_path
);
2481 smb2_set_next_command(tcon
, &rqst
[0]);
2483 memset(&qi_iov
, 0, sizeof(qi_iov
));
2484 rqst
[1].rq_iov
= qi_iov
;
2485 rqst
[1].rq_nvec
= 1;
2487 rc
= SMB2_query_info_init(tcon
, server
,
2488 &rqst
[1], COMPOUND_FID
, COMPOUND_FID
,
2494 smb2_set_next_command(tcon
, &rqst
[1]);
2495 smb2_set_related(&rqst
[1]);
2497 memset(&close_iov
, 0, sizeof(close_iov
));
2498 rqst
[2].rq_iov
= close_iov
;
2499 rqst
[2].rq_nvec
= 1;
2501 rc
= SMB2_close_init(tcon
, server
,
2502 &rqst
[2], COMPOUND_FID
, COMPOUND_FID
, false);
2505 smb2_set_related(&rqst
[2]);
2507 rc
= compound_send_recv(xid
, ses
, server
,
2509 resp_buftype
, rsp_iov
);
2511 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
2512 if (rc
== -EREMCHG
) {
2513 tcon
->need_reconnect
= true;
2514 pr_warn_once("server share %s deleted\n",
2520 *buftype
= resp_buftype
[1];
2523 SMB2_open_free(&rqst
[0]);
2524 SMB2_query_info_free(&rqst
[1]);
2525 SMB2_close_free(&rqst
[2]);
2526 free_rsp_buf(resp_buftype
[0], rsp_iov
[0].iov_base
);
2527 free_rsp_buf(resp_buftype
[2], rsp_iov
[2].iov_base
);
2532 smb2_queryfs(const unsigned int xid
, struct cifs_tcon
*tcon
,
2533 struct cifs_sb_info
*cifs_sb
, struct kstatfs
*buf
)
2535 struct smb2_query_info_rsp
*rsp
;
2536 struct smb2_fs_full_size_info
*info
= NULL
;
2537 __le16 utf16_path
= 0; /* Null - open root of share */
2538 struct kvec rsp_iov
= {NULL
, 0};
2539 int buftype
= CIFS_NO_BUFFER
;
2543 rc
= smb2_query_info_compound(xid
, tcon
, &utf16_path
,
2544 FILE_READ_ATTRIBUTES
,
2545 FS_FULL_SIZE_INFORMATION
,
2546 SMB2_O_INFO_FILESYSTEM
,
2547 sizeof(struct smb2_fs_full_size_info
),
2548 &rsp_iov
, &buftype
, cifs_sb
);
2552 rsp
= (struct smb2_query_info_rsp
*)rsp_iov
.iov_base
;
2553 buf
->f_type
= SMB2_MAGIC_NUMBER
;
2554 info
= (struct smb2_fs_full_size_info
*)(
2555 le16_to_cpu(rsp
->OutputBufferOffset
) + (char *)rsp
);
2556 rc
= smb2_validate_iov(le16_to_cpu(rsp
->OutputBufferOffset
),
2557 le32_to_cpu(rsp
->OutputBufferLength
),
2559 sizeof(struct smb2_fs_full_size_info
));
2561 smb2_copy_fs_info_to_kstatfs(info
, buf
);
2564 free_rsp_buf(buftype
, rsp_iov
.iov_base
);
2569 smb311_queryfs(const unsigned int xid
, struct cifs_tcon
*tcon
,
2570 struct cifs_sb_info
*cifs_sb
, struct kstatfs
*buf
)
2573 __le16 srch_path
= 0; /* Null - open root of share */
2574 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
2575 struct cifs_open_parms oparms
;
2576 struct cifs_fid fid
;
2578 if (!tcon
->posix_extensions
)
2579 return smb2_queryfs(xid
, tcon
, cifs_sb
, buf
);
2582 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
2583 oparms
.disposition
= FILE_OPEN
;
2584 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
2586 oparms
.reconnect
= false;
2588 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
,
2593 rc
= SMB311_posix_qfs_info(xid
, tcon
, fid
.persistent_fid
,
2594 fid
.volatile_fid
, buf
);
2595 buf
->f_type
= SMB2_MAGIC_NUMBER
;
2596 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
2601 smb2_compare_fids(struct cifsFileInfo
*ob1
, struct cifsFileInfo
*ob2
)
2603 return ob1
->fid
.persistent_fid
== ob2
->fid
.persistent_fid
&&
2604 ob1
->fid
.volatile_fid
== ob2
->fid
.volatile_fid
;
2608 smb2_mand_lock(const unsigned int xid
, struct cifsFileInfo
*cfile
, __u64 offset
,
2609 __u64 length
, __u32 type
, int lock
, int unlock
, bool wait
)
2611 if (unlock
&& !lock
)
2612 type
= SMB2_LOCKFLAG_UNLOCK
;
2613 return SMB2_lock(xid
, tlink_tcon(cfile
->tlink
),
2614 cfile
->fid
.persistent_fid
, cfile
->fid
.volatile_fid
,
2615 current
->tgid
, length
, offset
, type
, wait
);
2619 smb2_get_lease_key(struct inode
*inode
, struct cifs_fid
*fid
)
2621 memcpy(fid
->lease_key
, CIFS_I(inode
)->lease_key
, SMB2_LEASE_KEY_SIZE
);
2625 smb2_set_lease_key(struct inode
*inode
, struct cifs_fid
*fid
)
2627 memcpy(CIFS_I(inode
)->lease_key
, fid
->lease_key
, SMB2_LEASE_KEY_SIZE
);
2631 smb2_new_lease_key(struct cifs_fid
*fid
)
2633 generate_random_uuid(fid
->lease_key
);
2637 smb2_get_dfs_refer(const unsigned int xid
, struct cifs_ses
*ses
,
2638 const char *search_name
,
2639 struct dfs_info3_param
**target_nodes
,
2640 unsigned int *num_of_nodes
,
2641 const struct nls_table
*nls_codepage
, int remap
)
2644 __le16
*utf16_path
= NULL
;
2645 int utf16_path_len
= 0;
2646 struct cifs_tcon
*tcon
;
2647 struct fsctl_get_dfs_referral_req
*dfs_req
= NULL
;
2648 struct get_dfs_referral_rsp
*dfs_rsp
= NULL
;
2649 u32 dfs_req_size
= 0, dfs_rsp_size
= 0;
2651 cifs_dbg(FYI
, "%s: path: %s\n", __func__
, search_name
);
2654 * Try to use the IPC tcon, otherwise just use any
2656 tcon
= ses
->tcon_ipc
;
2658 spin_lock(&cifs_tcp_ses_lock
);
2659 tcon
= list_first_entry_or_null(&ses
->tcon_list
,
2664 spin_unlock(&cifs_tcp_ses_lock
);
2668 cifs_dbg(VFS
, "session %p has no tcon available for a dfs referral request\n",
2674 utf16_path
= cifs_strndup_to_utf16(search_name
, PATH_MAX
,
2676 nls_codepage
, remap
);
2682 dfs_req_size
= sizeof(*dfs_req
) + utf16_path_len
;
2683 dfs_req
= kzalloc(dfs_req_size
, GFP_KERNEL
);
2689 /* Highest DFS referral version understood */
2690 dfs_req
->MaxReferralLevel
= DFS_VERSION
;
2692 /* Path to resolve in an UTF-16 null-terminated string */
2693 memcpy(dfs_req
->RequestFileName
, utf16_path
, utf16_path_len
);
2696 rc
= SMB2_ioctl(xid
, tcon
, NO_FILE_ID
, NO_FILE_ID
,
2697 FSCTL_DFS_GET_REFERRALS
,
2698 true /* is_fsctl */,
2699 (char *)dfs_req
, dfs_req_size
, CIFSMaxBufSize
,
2700 (char **)&dfs_rsp
, &dfs_rsp_size
);
2701 } while (rc
== -EAGAIN
);
2704 if ((rc
!= -ENOENT
) && (rc
!= -EOPNOTSUPP
))
2705 cifs_tcon_dbg(VFS
, "ioctl error in %s rc=%d\n", __func__
, rc
);
2709 rc
= parse_dfs_referrals(dfs_rsp
, dfs_rsp_size
,
2710 num_of_nodes
, target_nodes
,
2711 nls_codepage
, remap
, search_name
,
2712 true /* is_unicode */);
2714 cifs_tcon_dbg(VFS
, "parse error in %s rc=%d\n", __func__
, rc
);
2719 if (tcon
&& !tcon
->ipc
) {
2720 /* ipc tcons are not refcounted */
2721 spin_lock(&cifs_tcp_ses_lock
);
2723 spin_unlock(&cifs_tcp_ses_lock
);
2732 parse_reparse_posix(struct reparse_posix_data
*symlink_buf
,
2733 u32 plen
, char **target_path
,
2734 struct cifs_sb_info
*cifs_sb
)
2738 /* See MS-FSCC 2.1.2.6 for the 'NFS' style reparse tags */
2739 len
= le16_to_cpu(symlink_buf
->ReparseDataLength
);
2741 if (le64_to_cpu(symlink_buf
->InodeType
) != NFS_SPECFILE_LNK
) {
2742 cifs_dbg(VFS
, "%lld not a supported symlink type\n",
2743 le64_to_cpu(symlink_buf
->InodeType
));
2747 *target_path
= cifs_strndup_from_utf16(
2748 symlink_buf
->PathBuffer
,
2749 len
, true, cifs_sb
->local_nls
);
2750 if (!(*target_path
))
2753 convert_delimiter(*target_path
, '/');
2754 cifs_dbg(FYI
, "%s: target path: %s\n", __func__
, *target_path
);
2760 parse_reparse_symlink(struct reparse_symlink_data_buffer
*symlink_buf
,
2761 u32 plen
, char **target_path
,
2762 struct cifs_sb_info
*cifs_sb
)
2764 unsigned int sub_len
;
2765 unsigned int sub_offset
;
2767 /* We handle Symbolic Link reparse tag here. See: MS-FSCC 2.1.2.4 */
2769 sub_offset
= le16_to_cpu(symlink_buf
->SubstituteNameOffset
);
2770 sub_len
= le16_to_cpu(symlink_buf
->SubstituteNameLength
);
2771 if (sub_offset
+ 20 > plen
||
2772 sub_offset
+ sub_len
+ 20 > plen
) {
2773 cifs_dbg(VFS
, "srv returned malformed symlink buffer\n");
2777 *target_path
= cifs_strndup_from_utf16(
2778 symlink_buf
->PathBuffer
+ sub_offset
,
2779 sub_len
, true, cifs_sb
->local_nls
);
2780 if (!(*target_path
))
2783 convert_delimiter(*target_path
, '/');
2784 cifs_dbg(FYI
, "%s: target path: %s\n", __func__
, *target_path
);
2790 parse_reparse_point(struct reparse_data_buffer
*buf
,
2791 u32 plen
, char **target_path
,
2792 struct cifs_sb_info
*cifs_sb
)
2794 if (plen
< sizeof(struct reparse_data_buffer
)) {
2795 cifs_dbg(VFS
, "reparse buffer is too small. Must be at least 8 bytes but was %d\n",
2800 if (plen
< le16_to_cpu(buf
->ReparseDataLength
) +
2801 sizeof(struct reparse_data_buffer
)) {
2802 cifs_dbg(VFS
, "srv returned invalid reparse buf length: %d\n",
2807 /* See MS-FSCC 2.1.2 */
2808 switch (le32_to_cpu(buf
->ReparseTag
)) {
2809 case IO_REPARSE_TAG_NFS
:
2810 return parse_reparse_posix(
2811 (struct reparse_posix_data
*)buf
,
2812 plen
, target_path
, cifs_sb
);
2813 case IO_REPARSE_TAG_SYMLINK
:
2814 return parse_reparse_symlink(
2815 (struct reparse_symlink_data_buffer
*)buf
,
2816 plen
, target_path
, cifs_sb
);
2818 cifs_dbg(VFS
, "srv returned unknown symlink buffer tag:0x%08x\n",
2819 le32_to_cpu(buf
->ReparseTag
));
2824 #define SMB2_SYMLINK_STRUCT_SIZE \
2825 (sizeof(struct smb2_err_rsp) - 1 + sizeof(struct smb2_symlink_err_rsp))
2828 smb2_query_symlink(const unsigned int xid
, struct cifs_tcon
*tcon
,
2829 struct cifs_sb_info
*cifs_sb
, const char *full_path
,
2830 char **target_path
, bool is_reparse_point
)
2833 __le16
*utf16_path
= NULL
;
2834 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
2835 struct cifs_open_parms oparms
;
2836 struct cifs_fid fid
;
2837 struct kvec err_iov
= {NULL
, 0};
2838 struct smb2_err_rsp
*err_buf
= NULL
;
2839 struct smb2_symlink_err_rsp
*symlink
;
2840 struct TCP_Server_Info
*server
= cifs_pick_channel(tcon
->ses
);
2841 unsigned int sub_len
;
2842 unsigned int sub_offset
;
2843 unsigned int print_len
;
2844 unsigned int print_offset
;
2846 struct smb_rqst rqst
[3];
2847 int resp_buftype
[3];
2848 struct kvec rsp_iov
[3];
2849 struct kvec open_iov
[SMB2_CREATE_IOV_SIZE
];
2850 struct kvec io_iov
[SMB2_IOCTL_IOV_SIZE
];
2851 struct kvec close_iov
[1];
2852 struct smb2_create_rsp
*create_rsp
;
2853 struct smb2_ioctl_rsp
*ioctl_rsp
;
2854 struct reparse_data_buffer
*reparse_buf
;
2855 int create_options
= is_reparse_point
? OPEN_REPARSE_POINT
: 0;
2858 cifs_dbg(FYI
, "%s: path: %s\n", __func__
, full_path
);
2860 *target_path
= NULL
;
2862 if (smb3_encryption_required(tcon
))
2863 flags
|= CIFS_TRANSFORM_REQ
;
2865 memset(rqst
, 0, sizeof(rqst
));
2866 resp_buftype
[0] = resp_buftype
[1] = resp_buftype
[2] = CIFS_NO_BUFFER
;
2867 memset(rsp_iov
, 0, sizeof(rsp_iov
));
2869 utf16_path
= cifs_convert_path_to_utf16(full_path
, cifs_sb
);
2874 memset(&open_iov
, 0, sizeof(open_iov
));
2875 rqst
[0].rq_iov
= open_iov
;
2876 rqst
[0].rq_nvec
= SMB2_CREATE_IOV_SIZE
;
2878 memset(&oparms
, 0, sizeof(oparms
));
2880 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
2881 oparms
.disposition
= FILE_OPEN
;
2882 oparms
.create_options
= cifs_create_options(cifs_sb
, create_options
);
2884 oparms
.reconnect
= false;
2886 rc
= SMB2_open_init(tcon
, server
,
2887 &rqst
[0], &oplock
, &oparms
, utf16_path
);
2890 smb2_set_next_command(tcon
, &rqst
[0]);
2894 memset(&io_iov
, 0, sizeof(io_iov
));
2895 rqst
[1].rq_iov
= io_iov
;
2896 rqst
[1].rq_nvec
= SMB2_IOCTL_IOV_SIZE
;
2898 rc
= SMB2_ioctl_init(tcon
, server
,
2899 &rqst
[1], fid
.persistent_fid
,
2900 fid
.volatile_fid
, FSCTL_GET_REPARSE_POINT
,
2901 true /* is_fctl */, NULL
, 0,
2903 MAX_SMB2_CREATE_RESPONSE_SIZE
-
2904 MAX_SMB2_CLOSE_RESPONSE_SIZE
);
2908 smb2_set_next_command(tcon
, &rqst
[1]);
2909 smb2_set_related(&rqst
[1]);
2913 memset(&close_iov
, 0, sizeof(close_iov
));
2914 rqst
[2].rq_iov
= close_iov
;
2915 rqst
[2].rq_nvec
= 1;
2917 rc
= SMB2_close_init(tcon
, server
,
2918 &rqst
[2], COMPOUND_FID
, COMPOUND_FID
, false);
2922 smb2_set_related(&rqst
[2]);
2924 rc
= compound_send_recv(xid
, tcon
->ses
, server
,
2926 resp_buftype
, rsp_iov
);
2928 create_rsp
= rsp_iov
[0].iov_base
;
2929 if (create_rsp
&& create_rsp
->sync_hdr
.Status
)
2930 err_iov
= rsp_iov
[0];
2931 ioctl_rsp
= rsp_iov
[1].iov_base
;
2934 * Open was successful and we got an ioctl response.
2936 if ((rc
== 0) && (is_reparse_point
)) {
2937 /* See MS-FSCC 2.3.23 */
2939 reparse_buf
= (struct reparse_data_buffer
*)
2940 ((char *)ioctl_rsp
+
2941 le32_to_cpu(ioctl_rsp
->OutputOffset
));
2942 plen
= le32_to_cpu(ioctl_rsp
->OutputCount
);
2944 if (plen
+ le32_to_cpu(ioctl_rsp
->OutputOffset
) >
2945 rsp_iov
[1].iov_len
) {
2946 cifs_tcon_dbg(VFS
, "srv returned invalid ioctl len: %d\n",
2952 rc
= parse_reparse_point(reparse_buf
, plen
, target_path
,
2957 if (!rc
|| !err_iov
.iov_base
) {
2962 err_buf
= err_iov
.iov_base
;
2963 if (le32_to_cpu(err_buf
->ByteCount
) < sizeof(struct smb2_symlink_err_rsp
) ||
2964 err_iov
.iov_len
< SMB2_SYMLINK_STRUCT_SIZE
) {
2969 symlink
= (struct smb2_symlink_err_rsp
*)err_buf
->ErrorData
;
2970 if (le32_to_cpu(symlink
->SymLinkErrorTag
) != SYMLINK_ERROR_TAG
||
2971 le32_to_cpu(symlink
->ReparseTag
) != IO_REPARSE_TAG_SYMLINK
) {
2976 /* open must fail on symlink - reset rc */
2978 sub_len
= le16_to_cpu(symlink
->SubstituteNameLength
);
2979 sub_offset
= le16_to_cpu(symlink
->SubstituteNameOffset
);
2980 print_len
= le16_to_cpu(symlink
->PrintNameLength
);
2981 print_offset
= le16_to_cpu(symlink
->PrintNameOffset
);
2983 if (err_iov
.iov_len
< SMB2_SYMLINK_STRUCT_SIZE
+ sub_offset
+ sub_len
) {
2988 if (err_iov
.iov_len
<
2989 SMB2_SYMLINK_STRUCT_SIZE
+ print_offset
+ print_len
) {
2994 *target_path
= cifs_strndup_from_utf16(
2995 (char *)symlink
->PathBuffer
+ sub_offset
,
2996 sub_len
, true, cifs_sb
->local_nls
);
2997 if (!(*target_path
)) {
3001 convert_delimiter(*target_path
, '/');
3002 cifs_dbg(FYI
, "%s: target path: %s\n", __func__
, *target_path
);
3005 cifs_dbg(FYI
, "query symlink rc %d\n", rc
);
3007 SMB2_open_free(&rqst
[0]);
3008 SMB2_ioctl_free(&rqst
[1]);
3009 SMB2_close_free(&rqst
[2]);
3010 free_rsp_buf(resp_buftype
[0], rsp_iov
[0].iov_base
);
3011 free_rsp_buf(resp_buftype
[1], rsp_iov
[1].iov_base
);
3012 free_rsp_buf(resp_buftype
[2], rsp_iov
[2].iov_base
);
3016 static struct cifs_ntsd
*
3017 get_smb2_acl_by_fid(struct cifs_sb_info
*cifs_sb
,
3018 const struct cifs_fid
*cifsfid
, u32
*pacllen
)
3020 struct cifs_ntsd
*pntsd
= NULL
;
3022 int rc
= -EOPNOTSUPP
;
3023 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
3026 return ERR_CAST(tlink
);
3029 cifs_dbg(FYI
, "trying to get acl\n");
3031 rc
= SMB2_query_acl(xid
, tlink_tcon(tlink
), cifsfid
->persistent_fid
,
3032 cifsfid
->volatile_fid
, (void **)&pntsd
, pacllen
);
3035 cifs_put_tlink(tlink
);
3037 cifs_dbg(FYI
, "%s: rc = %d ACL len %d\n", __func__
, rc
, *pacllen
);
3044 static struct cifs_ntsd
*
3045 get_smb2_acl_by_path(struct cifs_sb_info
*cifs_sb
,
3046 const char *path
, u32
*pacllen
)
3048 struct cifs_ntsd
*pntsd
= NULL
;
3049 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
3052 struct cifs_tcon
*tcon
;
3053 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
3054 struct cifs_fid fid
;
3055 struct cifs_open_parms oparms
;
3058 cifs_dbg(FYI
, "get smb3 acl for path %s\n", path
);
3060 return ERR_CAST(tlink
);
3062 tcon
= tlink_tcon(tlink
);
3065 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
3073 oparms
.desired_access
= READ_CONTROL
;
3074 oparms
.disposition
= FILE_OPEN
;
3075 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
3077 oparms
.reconnect
= false;
3079 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
, NULL
,
3083 rc
= SMB2_query_acl(xid
, tlink_tcon(tlink
), fid
.persistent_fid
,
3084 fid
.volatile_fid
, (void **)&pntsd
, pacllen
);
3085 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
3088 cifs_put_tlink(tlink
);
3091 cifs_dbg(FYI
, "%s: rc = %d ACL len %d\n", __func__
, rc
, *pacllen
);
3098 set_smb2_acl(struct cifs_ntsd
*pnntsd
, __u32 acllen
,
3099 struct inode
*inode
, const char *path
, int aclflag
)
3101 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
3103 int rc
, access_flags
= 0;
3104 struct cifs_tcon
*tcon
;
3105 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
3106 struct tcon_link
*tlink
= cifs_sb_tlink(cifs_sb
);
3107 struct cifs_fid fid
;
3108 struct cifs_open_parms oparms
;
3111 cifs_dbg(FYI
, "set smb3 acl for path %s\n", path
);
3113 return PTR_ERR(tlink
);
3115 tcon
= tlink_tcon(tlink
);
3118 if (aclflag
== CIFS_ACL_OWNER
|| aclflag
== CIFS_ACL_GROUP
)
3119 access_flags
= WRITE_OWNER
;
3121 access_flags
= WRITE_DAC
;
3123 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
3131 oparms
.desired_access
= access_flags
;
3132 oparms
.create_options
= cifs_create_options(cifs_sb
, 0);
3133 oparms
.disposition
= FILE_OPEN
;
3136 oparms
.reconnect
= false;
3138 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
,
3142 rc
= SMB2_set_acl(xid
, tlink_tcon(tlink
), fid
.persistent_fid
,
3143 fid
.volatile_fid
, pnntsd
, acllen
, aclflag
);
3144 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
3147 cifs_put_tlink(tlink
);
3152 /* Retrieve an ACL from the server */
3153 static struct cifs_ntsd
*
3154 get_smb2_acl(struct cifs_sb_info
*cifs_sb
,
3155 struct inode
*inode
, const char *path
,
3158 struct cifs_ntsd
*pntsd
= NULL
;
3159 struct cifsFileInfo
*open_file
= NULL
;
3162 open_file
= find_readable_file(CIFS_I(inode
), true);
3164 return get_smb2_acl_by_path(cifs_sb
, path
, pacllen
);
3166 pntsd
= get_smb2_acl_by_fid(cifs_sb
, &open_file
->fid
, pacllen
);
3167 cifsFileInfo_put(open_file
);
3171 static long smb3_zero_range(struct file
*file
, struct cifs_tcon
*tcon
,
3172 loff_t offset
, loff_t len
, bool keep_size
)
3174 struct cifs_ses
*ses
= tcon
->ses
;
3175 struct inode
*inode
;
3176 struct cifsInodeInfo
*cifsi
;
3177 struct cifsFileInfo
*cfile
= file
->private_data
;
3178 struct file_zero_data_information fsctl_buf
;
3185 inode
= d_inode(cfile
->dentry
);
3186 cifsi
= CIFS_I(inode
);
3188 trace_smb3_zero_enter(xid
, cfile
->fid
.persistent_fid
, tcon
->tid
,
3189 ses
->Suid
, offset
, len
);
3192 * We zero the range through ioctl, so we need remove the page caches
3193 * first, otherwise the data may be inconsistent with the server.
3195 truncate_pagecache_range(inode
, offset
, offset
+ len
- 1);
3197 /* if file not oplocked can't be sure whether asking to extend size */
3198 if (!CIFS_CACHE_READ(cifsi
))
3199 if (keep_size
== false) {
3201 trace_smb3_zero_err(xid
, cfile
->fid
.persistent_fid
,
3202 tcon
->tid
, ses
->Suid
, offset
, len
, rc
);
3207 cifs_dbg(FYI
, "Offset %lld len %lld\n", offset
, len
);
3209 fsctl_buf
.FileOffset
= cpu_to_le64(offset
);
3210 fsctl_buf
.BeyondFinalZero
= cpu_to_le64(offset
+ len
);
3212 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
3213 cfile
->fid
.volatile_fid
, FSCTL_SET_ZERO_DATA
, true,
3215 sizeof(struct file_zero_data_information
),
3218 goto zero_range_exit
;
3221 * do we also need to change the size of the file?
3223 if (keep_size
== false && i_size_read(inode
) < offset
+ len
) {
3224 eof
= cpu_to_le64(offset
+ len
);
3225 rc
= SMB2_set_eof(xid
, tcon
, cfile
->fid
.persistent_fid
,
3226 cfile
->fid
.volatile_fid
, cfile
->pid
, &eof
);
3232 trace_smb3_zero_err(xid
, cfile
->fid
.persistent_fid
, tcon
->tid
,
3233 ses
->Suid
, offset
, len
, rc
);
3235 trace_smb3_zero_done(xid
, cfile
->fid
.persistent_fid
, tcon
->tid
,
3236 ses
->Suid
, offset
, len
);
3240 static long smb3_punch_hole(struct file
*file
, struct cifs_tcon
*tcon
,
3241 loff_t offset
, loff_t len
)
3243 struct inode
*inode
;
3244 struct cifsFileInfo
*cfile
= file
->private_data
;
3245 struct file_zero_data_information fsctl_buf
;
3248 __u8 set_sparse
= 1;
3252 inode
= d_inode(cfile
->dentry
);
3254 /* Need to make file sparse, if not already, before freeing range. */
3255 /* Consider adding equivalent for compressed since it could also work */
3256 if (!smb2_set_sparse(xid
, tcon
, cfile
, inode
, set_sparse
)) {
3263 * We implement the punch hole through ioctl, so we need remove the page
3264 * caches first, otherwise the data may be inconsistent with the server.
3266 truncate_pagecache_range(inode
, offset
, offset
+ len
- 1);
3268 cifs_dbg(FYI
, "Offset %lld len %lld\n", offset
, len
);
3270 fsctl_buf
.FileOffset
= cpu_to_le64(offset
);
3271 fsctl_buf
.BeyondFinalZero
= cpu_to_le64(offset
+ len
);
3273 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
3274 cfile
->fid
.volatile_fid
, FSCTL_SET_ZERO_DATA
,
3275 true /* is_fctl */, (char *)&fsctl_buf
,
3276 sizeof(struct file_zero_data_information
),
3277 CIFSMaxBufSize
, NULL
, NULL
);
3282 static long smb3_simple_falloc(struct file
*file
, struct cifs_tcon
*tcon
,
3283 loff_t off
, loff_t len
, bool keep_size
)
3285 struct inode
*inode
;
3286 struct cifsInodeInfo
*cifsi
;
3287 struct cifsFileInfo
*cfile
= file
->private_data
;
3288 long rc
= -EOPNOTSUPP
;
3294 inode
= d_inode(cfile
->dentry
);
3295 cifsi
= CIFS_I(inode
);
3297 trace_smb3_falloc_enter(xid
, cfile
->fid
.persistent_fid
, tcon
->tid
,
3298 tcon
->ses
->Suid
, off
, len
);
3299 /* if file not oplocked can't be sure whether asking to extend size */
3300 if (!CIFS_CACHE_READ(cifsi
))
3301 if (keep_size
== false) {
3302 trace_smb3_falloc_err(xid
, cfile
->fid
.persistent_fid
,
3303 tcon
->tid
, tcon
->ses
->Suid
, off
, len
, rc
);
3309 * Extending the file
3311 if ((keep_size
== false) && i_size_read(inode
) < off
+ len
) {
3312 rc
= inode_newsize_ok(inode
, off
+ len
);
3316 if ((cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) == 0)
3317 smb2_set_sparse(xid
, tcon
, cfile
, inode
, false);
3319 eof
= cpu_to_le64(off
+ len
);
3320 rc
= SMB2_set_eof(xid
, tcon
, cfile
->fid
.persistent_fid
,
3321 cfile
->fid
.volatile_fid
, cfile
->pid
, &eof
);
3323 cifsi
->server_eof
= off
+ len
;
3324 cifs_setsize(inode
, off
+ len
);
3325 cifs_truncate_page(inode
->i_mapping
, inode
->i_size
);
3326 truncate_setsize(inode
, off
+ len
);
3332 * Files are non-sparse by default so falloc may be a no-op
3333 * Must check if file sparse. If not sparse, and since we are not
3334 * extending then no need to do anything since file already allocated
3336 if ((cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) == 0) {
3341 if ((keep_size
== true) || (i_size_read(inode
) >= off
+ len
)) {
3343 * Check if falloc starts within first few pages of file
3344 * and ends within a few pages of the end of file to
3345 * ensure that most of file is being forced to be
3346 * fallocated now. If so then setting whole file sparse
3347 * ie potentially making a few extra pages at the beginning
3348 * or end of the file non-sparse via set_sparse is harmless.
3350 if ((off
> 8192) || (off
+ len
+ 8192 < i_size_read(inode
))) {
3356 smb2_set_sparse(xid
, tcon
, cfile
, inode
, false);
3361 trace_smb3_falloc_err(xid
, cfile
->fid
.persistent_fid
, tcon
->tid
,
3362 tcon
->ses
->Suid
, off
, len
, rc
);
3364 trace_smb3_falloc_done(xid
, cfile
->fid
.persistent_fid
, tcon
->tid
,
3365 tcon
->ses
->Suid
, off
, len
);
3371 static loff_t
smb3_llseek(struct file
*file
, struct cifs_tcon
*tcon
, loff_t offset
, int whence
)
3373 struct cifsFileInfo
*wrcfile
, *cfile
= file
->private_data
;
3374 struct cifsInodeInfo
*cifsi
;
3375 struct inode
*inode
;
3377 struct file_allocated_range_buffer in_data
, *out_data
= NULL
;
3381 if (whence
!= SEEK_HOLE
&& whence
!= SEEK_DATA
)
3382 return generic_file_llseek(file
, offset
, whence
);
3384 inode
= d_inode(cfile
->dentry
);
3385 cifsi
= CIFS_I(inode
);
3387 if (offset
< 0 || offset
>= i_size_read(inode
))
3392 * We need to be sure that all dirty pages are written as they
3393 * might fill holes on the server.
3394 * Note that we also MUST flush any written pages since at least
3395 * some servers (Windows2016) will not reflect recent writes in
3396 * QUERY_ALLOCATED_RANGES until SMB2_flush is called.
3398 wrcfile
= find_writable_file(cifsi
, FIND_WR_ANY
);
3400 filemap_write_and_wait(inode
->i_mapping
);
3401 smb2_flush_file(xid
, tcon
, &wrcfile
->fid
);
3402 cifsFileInfo_put(wrcfile
);
3405 if (!(cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
)) {
3406 if (whence
== SEEK_HOLE
)
3407 offset
= i_size_read(inode
);
3411 in_data
.file_offset
= cpu_to_le64(offset
);
3412 in_data
.length
= cpu_to_le64(i_size_read(inode
));
3414 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
3415 cfile
->fid
.volatile_fid
,
3416 FSCTL_QUERY_ALLOCATED_RANGES
, true,
3417 (char *)&in_data
, sizeof(in_data
),
3418 sizeof(struct file_allocated_range_buffer
),
3419 (char **)&out_data
, &out_data_len
);
3425 if (whence
== SEEK_HOLE
&& out_data_len
== 0)
3428 if (whence
== SEEK_DATA
&& out_data_len
== 0) {
3433 if (out_data_len
< sizeof(struct file_allocated_range_buffer
)) {
3437 if (whence
== SEEK_DATA
) {
3438 offset
= le64_to_cpu(out_data
->file_offset
);
3441 if (offset
< le64_to_cpu(out_data
->file_offset
))
3444 offset
= le64_to_cpu(out_data
->file_offset
) + le64_to_cpu(out_data
->length
);
3450 return vfs_setpos(file
, offset
, inode
->i_sb
->s_maxbytes
);
3455 static int smb3_fiemap(struct cifs_tcon
*tcon
,
3456 struct cifsFileInfo
*cfile
,
3457 struct fiemap_extent_info
*fei
, u64 start
, u64 len
)
3460 struct file_allocated_range_buffer in_data
, *out_data
;
3462 int i
, num
, rc
, flags
, last_blob
;
3465 rc
= fiemap_prep(d_inode(cfile
->dentry
), fei
, start
, &len
, 0);
3471 in_data
.file_offset
= cpu_to_le64(start
);
3472 in_data
.length
= cpu_to_le64(len
);
3474 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
3475 cfile
->fid
.volatile_fid
,
3476 FSCTL_QUERY_ALLOCATED_RANGES
, true,
3477 (char *)&in_data
, sizeof(in_data
),
3478 1024 * sizeof(struct file_allocated_range_buffer
),
3479 (char **)&out_data
, &out_data_len
);
3488 if (out_data_len
&& out_data_len
< sizeof(struct file_allocated_range_buffer
)) {
3492 if (out_data_len
% sizeof(struct file_allocated_range_buffer
)) {
3497 num
= out_data_len
/ sizeof(struct file_allocated_range_buffer
);
3498 for (i
= 0; i
< num
; i
++) {
3500 if (i
== num
- 1 && last_blob
)
3501 flags
|= FIEMAP_EXTENT_LAST
;
3503 rc
= fiemap_fill_next_extent(fei
,
3504 le64_to_cpu(out_data
[i
].file_offset
),
3505 le64_to_cpu(out_data
[i
].file_offset
),
3506 le64_to_cpu(out_data
[i
].length
),
3517 next
= le64_to_cpu(out_data
[num
- 1].file_offset
) +
3518 le64_to_cpu(out_data
[num
- 1].length
);
3519 len
= len
- (next
- start
);
3530 static long smb3_fallocate(struct file
*file
, struct cifs_tcon
*tcon
, int mode
,
3531 loff_t off
, loff_t len
)
3533 /* KEEP_SIZE already checked for by do_fallocate */
3534 if (mode
& FALLOC_FL_PUNCH_HOLE
)
3535 return smb3_punch_hole(file
, tcon
, off
, len
);
3536 else if (mode
& FALLOC_FL_ZERO_RANGE
) {
3537 if (mode
& FALLOC_FL_KEEP_SIZE
)
3538 return smb3_zero_range(file
, tcon
, off
, len
, true);
3539 return smb3_zero_range(file
, tcon
, off
, len
, false);
3540 } else if (mode
== FALLOC_FL_KEEP_SIZE
)
3541 return smb3_simple_falloc(file
, tcon
, off
, len
, true);
3543 return smb3_simple_falloc(file
, tcon
, off
, len
, false);
3549 smb2_downgrade_oplock(struct TCP_Server_Info
*server
,
3550 struct cifsInodeInfo
*cinode
, __u32 oplock
,
3551 unsigned int epoch
, bool *purge_cache
)
3553 server
->ops
->set_oplock_level(cinode
, oplock
, 0, NULL
);
3557 smb21_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
3558 unsigned int epoch
, bool *purge_cache
);
3561 smb3_downgrade_oplock(struct TCP_Server_Info
*server
,
3562 struct cifsInodeInfo
*cinode
, __u32 oplock
,
3563 unsigned int epoch
, bool *purge_cache
)
3565 unsigned int old_state
= cinode
->oplock
;
3566 unsigned int old_epoch
= cinode
->epoch
;
3567 unsigned int new_state
;
3569 if (epoch
> old_epoch
) {
3570 smb21_set_oplock_level(cinode
, oplock
, 0, NULL
);
3571 cinode
->epoch
= epoch
;
3574 new_state
= cinode
->oplock
;
3575 *purge_cache
= false;
3577 if ((old_state
& CIFS_CACHE_READ_FLG
) != 0 &&
3578 (new_state
& CIFS_CACHE_READ_FLG
) == 0)
3579 *purge_cache
= true;
3580 else if (old_state
== new_state
&& (epoch
- old_epoch
> 1))
3581 *purge_cache
= true;
3585 smb2_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
3586 unsigned int epoch
, bool *purge_cache
)
3589 if (oplock
== SMB2_OPLOCK_LEVEL_NOCHANGE
)
3591 if (oplock
== SMB2_OPLOCK_LEVEL_BATCH
) {
3592 cinode
->oplock
= CIFS_CACHE_RHW_FLG
;
3593 cifs_dbg(FYI
, "Batch Oplock granted on inode %p\n",
3594 &cinode
->vfs_inode
);
3595 } else if (oplock
== SMB2_OPLOCK_LEVEL_EXCLUSIVE
) {
3596 cinode
->oplock
= CIFS_CACHE_RW_FLG
;
3597 cifs_dbg(FYI
, "Exclusive Oplock granted on inode %p\n",
3598 &cinode
->vfs_inode
);
3599 } else if (oplock
== SMB2_OPLOCK_LEVEL_II
) {
3600 cinode
->oplock
= CIFS_CACHE_READ_FLG
;
3601 cifs_dbg(FYI
, "Level II Oplock granted on inode %p\n",
3602 &cinode
->vfs_inode
);
3608 smb21_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
3609 unsigned int epoch
, bool *purge_cache
)
3611 char message
[5] = {0};
3612 unsigned int new_oplock
= 0;
3615 if (oplock
== SMB2_OPLOCK_LEVEL_NOCHANGE
)
3618 /* Check if the server granted an oplock rather than a lease */
3619 if (oplock
& SMB2_OPLOCK_LEVEL_EXCLUSIVE
)
3620 return smb2_set_oplock_level(cinode
, oplock
, epoch
,
3623 if (oplock
& SMB2_LEASE_READ_CACHING_HE
) {
3624 new_oplock
|= CIFS_CACHE_READ_FLG
;
3625 strcat(message
, "R");
3627 if (oplock
& SMB2_LEASE_HANDLE_CACHING_HE
) {
3628 new_oplock
|= CIFS_CACHE_HANDLE_FLG
;
3629 strcat(message
, "H");
3631 if (oplock
& SMB2_LEASE_WRITE_CACHING_HE
) {
3632 new_oplock
|= CIFS_CACHE_WRITE_FLG
;
3633 strcat(message
, "W");
3636 strncpy(message
, "None", sizeof(message
));
3638 cinode
->oplock
= new_oplock
;
3639 cifs_dbg(FYI
, "%s Lease granted on inode %p\n", message
,
3640 &cinode
->vfs_inode
);
3644 smb3_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
3645 unsigned int epoch
, bool *purge_cache
)
3647 unsigned int old_oplock
= cinode
->oplock
;
3649 smb21_set_oplock_level(cinode
, oplock
, epoch
, purge_cache
);
3652 *purge_cache
= false;
3653 if (old_oplock
== CIFS_CACHE_READ_FLG
) {
3654 if (cinode
->oplock
== CIFS_CACHE_READ_FLG
&&
3655 (epoch
- cinode
->epoch
> 0))
3656 *purge_cache
= true;
3657 else if (cinode
->oplock
== CIFS_CACHE_RH_FLG
&&
3658 (epoch
- cinode
->epoch
> 1))
3659 *purge_cache
= true;
3660 else if (cinode
->oplock
== CIFS_CACHE_RHW_FLG
&&
3661 (epoch
- cinode
->epoch
> 1))
3662 *purge_cache
= true;
3663 else if (cinode
->oplock
== 0 &&
3664 (epoch
- cinode
->epoch
> 0))
3665 *purge_cache
= true;
3666 } else if (old_oplock
== CIFS_CACHE_RH_FLG
) {
3667 if (cinode
->oplock
== CIFS_CACHE_RH_FLG
&&
3668 (epoch
- cinode
->epoch
> 0))
3669 *purge_cache
= true;
3670 else if (cinode
->oplock
== CIFS_CACHE_RHW_FLG
&&
3671 (epoch
- cinode
->epoch
> 1))
3672 *purge_cache
= true;
3674 cinode
->epoch
= epoch
;
3679 smb2_is_read_op(__u32 oplock
)
3681 return oplock
== SMB2_OPLOCK_LEVEL_II
;
3685 smb21_is_read_op(__u32 oplock
)
3687 return (oplock
& SMB2_LEASE_READ_CACHING_HE
) &&
3688 !(oplock
& SMB2_LEASE_WRITE_CACHING_HE
);
3692 map_oplock_to_lease(u8 oplock
)
3694 if (oplock
== SMB2_OPLOCK_LEVEL_EXCLUSIVE
)
3695 return SMB2_LEASE_WRITE_CACHING
| SMB2_LEASE_READ_CACHING
;
3696 else if (oplock
== SMB2_OPLOCK_LEVEL_II
)
3697 return SMB2_LEASE_READ_CACHING
;
3698 else if (oplock
== SMB2_OPLOCK_LEVEL_BATCH
)
3699 return SMB2_LEASE_HANDLE_CACHING
| SMB2_LEASE_READ_CACHING
|
3700 SMB2_LEASE_WRITE_CACHING
;
3705 smb2_create_lease_buf(u8
*lease_key
, u8 oplock
)
3707 struct create_lease
*buf
;
3709 buf
= kzalloc(sizeof(struct create_lease
), GFP_KERNEL
);
3713 memcpy(&buf
->lcontext
.LeaseKey
, lease_key
, SMB2_LEASE_KEY_SIZE
);
3714 buf
->lcontext
.LeaseState
= map_oplock_to_lease(oplock
);
3716 buf
->ccontext
.DataOffset
= cpu_to_le16(offsetof
3717 (struct create_lease
, lcontext
));
3718 buf
->ccontext
.DataLength
= cpu_to_le32(sizeof(struct lease_context
));
3719 buf
->ccontext
.NameOffset
= cpu_to_le16(offsetof
3720 (struct create_lease
, Name
));
3721 buf
->ccontext
.NameLength
= cpu_to_le16(4);
3722 /* SMB2_CREATE_REQUEST_LEASE is "RqLs" */
3731 smb3_create_lease_buf(u8
*lease_key
, u8 oplock
)
3733 struct create_lease_v2
*buf
;
3735 buf
= kzalloc(sizeof(struct create_lease_v2
), GFP_KERNEL
);
3739 memcpy(&buf
->lcontext
.LeaseKey
, lease_key
, SMB2_LEASE_KEY_SIZE
);
3740 buf
->lcontext
.LeaseState
= map_oplock_to_lease(oplock
);
3742 buf
->ccontext
.DataOffset
= cpu_to_le16(offsetof
3743 (struct create_lease_v2
, lcontext
));
3744 buf
->ccontext
.DataLength
= cpu_to_le32(sizeof(struct lease_context_v2
));
3745 buf
->ccontext
.NameOffset
= cpu_to_le16(offsetof
3746 (struct create_lease_v2
, Name
));
3747 buf
->ccontext
.NameLength
= cpu_to_le16(4);
3748 /* SMB2_CREATE_REQUEST_LEASE is "RqLs" */
3757 smb2_parse_lease_buf(void *buf
, unsigned int *epoch
, char *lease_key
)
3759 struct create_lease
*lc
= (struct create_lease
*)buf
;
3761 *epoch
= 0; /* not used */
3762 if (lc
->lcontext
.LeaseFlags
& SMB2_LEASE_FLAG_BREAK_IN_PROGRESS
)
3763 return SMB2_OPLOCK_LEVEL_NOCHANGE
;
3764 return le32_to_cpu(lc
->lcontext
.LeaseState
);
3768 smb3_parse_lease_buf(void *buf
, unsigned int *epoch
, char *lease_key
)
3770 struct create_lease_v2
*lc
= (struct create_lease_v2
*)buf
;
3772 *epoch
= le16_to_cpu(lc
->lcontext
.Epoch
);
3773 if (lc
->lcontext
.LeaseFlags
& SMB2_LEASE_FLAG_BREAK_IN_PROGRESS
)
3774 return SMB2_OPLOCK_LEVEL_NOCHANGE
;
3776 memcpy(lease_key
, &lc
->lcontext
.LeaseKey
, SMB2_LEASE_KEY_SIZE
);
3777 return le32_to_cpu(lc
->lcontext
.LeaseState
);
3781 smb2_wp_retry_size(struct inode
*inode
)
3783 return min_t(unsigned int, CIFS_SB(inode
->i_sb
)->wsize
,
3784 SMB2_MAX_BUFFER_SIZE
);
3788 smb2_dir_needs_close(struct cifsFileInfo
*cfile
)
3790 return !cfile
->invalidHandle
;
3794 fill_transform_hdr(struct smb2_transform_hdr
*tr_hdr
, unsigned int orig_len
,
3795 struct smb_rqst
*old_rq
, __le16 cipher_type
)
3797 struct smb2_sync_hdr
*shdr
=
3798 (struct smb2_sync_hdr
*)old_rq
->rq_iov
[0].iov_base
;
3800 memset(tr_hdr
, 0, sizeof(struct smb2_transform_hdr
));
3801 tr_hdr
->ProtocolId
= SMB2_TRANSFORM_PROTO_NUM
;
3802 tr_hdr
->OriginalMessageSize
= cpu_to_le32(orig_len
);
3803 tr_hdr
->Flags
= cpu_to_le16(0x01);
3804 if (cipher_type
== SMB2_ENCRYPTION_AES128_GCM
)
3805 get_random_bytes(&tr_hdr
->Nonce
, SMB3_AES128GCM_NONCE
);
3807 get_random_bytes(&tr_hdr
->Nonce
, SMB3_AES128CCM_NONCE
);
3808 memcpy(&tr_hdr
->SessionId
, &shdr
->SessionId
, 8);
3811 /* We can not use the normal sg_set_buf() as we will sometimes pass a
3812 * stack object as buf.
3814 static inline void smb2_sg_set_buf(struct scatterlist
*sg
, const void *buf
,
3815 unsigned int buflen
)
3819 * VMAP_STACK (at least) puts stack into the vmalloc address space
3821 if (is_vmalloc_addr(buf
))
3822 addr
= vmalloc_to_page(buf
);
3824 addr
= virt_to_page(buf
);
3825 sg_set_page(sg
, addr
, buflen
, offset_in_page(buf
));
3828 /* Assumes the first rqst has a transform header as the first iov.
3830 * rqst[0].rq_iov[0] is transform header
3831 * rqst[0].rq_iov[1+] data to be encrypted/decrypted
3832 * rqst[1+].rq_iov[0+] data to be encrypted/decrypted
3834 static struct scatterlist
*
3835 init_sg(int num_rqst
, struct smb_rqst
*rqst
, u8
*sign
)
3837 unsigned int sg_len
;
3838 struct scatterlist
*sg
;
3841 unsigned int idx
= 0;
3845 for (i
= 0; i
< num_rqst
; i
++)
3846 sg_len
+= rqst
[i
].rq_nvec
+ rqst
[i
].rq_npages
;
3848 sg
= kmalloc_array(sg_len
, sizeof(struct scatterlist
), GFP_KERNEL
);
3852 sg_init_table(sg
, sg_len
);
3853 for (i
= 0; i
< num_rqst
; i
++) {
3854 for (j
= 0; j
< rqst
[i
].rq_nvec
; j
++) {
3856 * The first rqst has a transform header where the
3857 * first 20 bytes are not part of the encrypted blob
3859 skip
= (i
== 0) && (j
== 0) ? 20 : 0;
3860 smb2_sg_set_buf(&sg
[idx
++],
3861 rqst
[i
].rq_iov
[j
].iov_base
+ skip
,
3862 rqst
[i
].rq_iov
[j
].iov_len
- skip
);
3865 for (j
= 0; j
< rqst
[i
].rq_npages
; j
++) {
3866 unsigned int len
, offset
;
3868 rqst_page_get_length(&rqst
[i
], j
, &len
, &offset
);
3869 sg_set_page(&sg
[idx
++], rqst
[i
].rq_pages
[j
], len
, offset
);
3872 smb2_sg_set_buf(&sg
[idx
], sign
, SMB2_SIGNATURE_SIZE
);
3877 smb2_get_enc_key(struct TCP_Server_Info
*server
, __u64 ses_id
, int enc
, u8
*key
)
3879 struct cifs_ses
*ses
;
3882 spin_lock(&cifs_tcp_ses_lock
);
3883 list_for_each_entry(server
, &cifs_tcp_ses_list
, tcp_ses_list
) {
3884 list_for_each_entry(ses
, &server
->smb_ses_list
, smb_ses_list
) {
3885 if (ses
->Suid
== ses_id
) {
3886 ses_enc_key
= enc
? ses
->smb3encryptionkey
:
3887 ses
->smb3decryptionkey
;
3888 memcpy(key
, ses_enc_key
, SMB3_SIGN_KEY_SIZE
);
3889 spin_unlock(&cifs_tcp_ses_lock
);
3894 spin_unlock(&cifs_tcp_ses_lock
);
3899 * Encrypt or decrypt @rqst message. @rqst[0] has the following format:
3900 * iov[0] - transform header (associate data),
3901 * iov[1-N] - SMB2 header and pages - data to encrypt.
3902 * On success return encrypted data in iov[1-N] and pages, leave iov[0]
3906 crypt_message(struct TCP_Server_Info
*server
, int num_rqst
,
3907 struct smb_rqst
*rqst
, int enc
)
3909 struct smb2_transform_hdr
*tr_hdr
=
3910 (struct smb2_transform_hdr
*)rqst
[0].rq_iov
[0].iov_base
;
3911 unsigned int assoc_data_len
= sizeof(struct smb2_transform_hdr
) - 20;
3913 struct scatterlist
*sg
;
3914 u8 sign
[SMB2_SIGNATURE_SIZE
] = {};
3915 u8 key
[SMB3_SIGN_KEY_SIZE
];
3916 struct aead_request
*req
;
3918 unsigned int iv_len
;
3919 DECLARE_CRYPTO_WAIT(wait
);
3920 struct crypto_aead
*tfm
;
3921 unsigned int crypt_len
= le32_to_cpu(tr_hdr
->OriginalMessageSize
);
3923 rc
= smb2_get_enc_key(server
, tr_hdr
->SessionId
, enc
, key
);
3925 cifs_server_dbg(VFS
, "%s: Could not get %scryption key\n", __func__
,
3930 rc
= smb3_crypto_aead_allocate(server
);
3932 cifs_server_dbg(VFS
, "%s: crypto alloc failed\n", __func__
);
3936 tfm
= enc
? server
->secmech
.ccmaesencrypt
:
3937 server
->secmech
.ccmaesdecrypt
;
3938 rc
= crypto_aead_setkey(tfm
, key
, SMB3_SIGN_KEY_SIZE
);
3940 cifs_server_dbg(VFS
, "%s: Failed to set aead key %d\n", __func__
, rc
);
3944 rc
= crypto_aead_setauthsize(tfm
, SMB2_SIGNATURE_SIZE
);
3946 cifs_server_dbg(VFS
, "%s: Failed to set authsize %d\n", __func__
, rc
);
3950 req
= aead_request_alloc(tfm
, GFP_KERNEL
);
3952 cifs_server_dbg(VFS
, "%s: Failed to alloc aead request\n", __func__
);
3957 memcpy(sign
, &tr_hdr
->Signature
, SMB2_SIGNATURE_SIZE
);
3958 crypt_len
+= SMB2_SIGNATURE_SIZE
;
3961 sg
= init_sg(num_rqst
, rqst
, sign
);
3963 cifs_server_dbg(VFS
, "%s: Failed to init sg\n", __func__
);
3968 iv_len
= crypto_aead_ivsize(tfm
);
3969 iv
= kzalloc(iv_len
, GFP_KERNEL
);
3971 cifs_server_dbg(VFS
, "%s: Failed to alloc iv\n", __func__
);
3976 if (server
->cipher_type
== SMB2_ENCRYPTION_AES128_GCM
)
3977 memcpy(iv
, (char *)tr_hdr
->Nonce
, SMB3_AES128GCM_NONCE
);
3980 memcpy(iv
+ 1, (char *)tr_hdr
->Nonce
, SMB3_AES128CCM_NONCE
);
3983 aead_request_set_crypt(req
, sg
, sg
, crypt_len
, iv
);
3984 aead_request_set_ad(req
, assoc_data_len
);
3986 aead_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
3987 crypto_req_done
, &wait
);
3989 rc
= crypto_wait_req(enc
? crypto_aead_encrypt(req
)
3990 : crypto_aead_decrypt(req
), &wait
);
3993 memcpy(&tr_hdr
->Signature
, sign
, SMB2_SIGNATURE_SIZE
);
4004 smb3_free_compound_rqst(int num_rqst
, struct smb_rqst
*rqst
)
4008 for (i
= 0; i
< num_rqst
; i
++) {
4009 if (rqst
[i
].rq_pages
) {
4010 for (j
= rqst
[i
].rq_npages
- 1; j
>= 0; j
--)
4011 put_page(rqst
[i
].rq_pages
[j
]);
4012 kfree(rqst
[i
].rq_pages
);
4018 * This function will initialize new_rq and encrypt the content.
4019 * The first entry, new_rq[0], only contains a single iov which contains
4020 * a smb2_transform_hdr and is pre-allocated by the caller.
4021 * This function then populates new_rq[1+] with the content from olq_rq[0+].
4023 * The end result is an array of smb_rqst structures where the first structure
4024 * only contains a single iov for the transform header which we then can pass
4025 * to crypt_message().
4027 * new_rq[0].rq_iov[0] : smb2_transform_hdr pre-allocated by the caller
4028 * new_rq[1+].rq_iov[*] == old_rq[0+].rq_iov[*] : SMB2/3 requests
4031 smb3_init_transform_rq(struct TCP_Server_Info
*server
, int num_rqst
,
4032 struct smb_rqst
*new_rq
, struct smb_rqst
*old_rq
)
4034 struct page
**pages
;
4035 struct smb2_transform_hdr
*tr_hdr
= new_rq
[0].rq_iov
[0].iov_base
;
4036 unsigned int npages
;
4037 unsigned int orig_len
= 0;
4041 for (i
= 1; i
< num_rqst
; i
++) {
4042 npages
= old_rq
[i
- 1].rq_npages
;
4043 pages
= kmalloc_array(npages
, sizeof(struct page
*),
4048 new_rq
[i
].rq_pages
= pages
;
4049 new_rq
[i
].rq_npages
= npages
;
4050 new_rq
[i
].rq_offset
= old_rq
[i
- 1].rq_offset
;
4051 new_rq
[i
].rq_pagesz
= old_rq
[i
- 1].rq_pagesz
;
4052 new_rq
[i
].rq_tailsz
= old_rq
[i
- 1].rq_tailsz
;
4053 new_rq
[i
].rq_iov
= old_rq
[i
- 1].rq_iov
;
4054 new_rq
[i
].rq_nvec
= old_rq
[i
- 1].rq_nvec
;
4056 orig_len
+= smb_rqst_len(server
, &old_rq
[i
- 1]);
4058 for (j
= 0; j
< npages
; j
++) {
4059 pages
[j
] = alloc_page(GFP_KERNEL
|__GFP_HIGHMEM
);
4064 /* copy pages form the old */
4065 for (j
= 0; j
< npages
; j
++) {
4067 unsigned int offset
, len
;
4069 rqst_page_get_length(&new_rq
[i
], j
, &len
, &offset
);
4071 dst
= (char *) kmap(new_rq
[i
].rq_pages
[j
]) + offset
;
4072 src
= (char *) kmap(old_rq
[i
- 1].rq_pages
[j
]) + offset
;
4074 memcpy(dst
, src
, len
);
4075 kunmap(new_rq
[i
].rq_pages
[j
]);
4076 kunmap(old_rq
[i
- 1].rq_pages
[j
]);
4080 /* fill the 1st iov with a transform header */
4081 fill_transform_hdr(tr_hdr
, orig_len
, old_rq
, server
->cipher_type
);
4083 rc
= crypt_message(server
, num_rqst
, new_rq
, 1);
4084 cifs_dbg(FYI
, "Encrypt message returned %d\n", rc
);
4091 smb3_free_compound_rqst(num_rqst
- 1, &new_rq
[1]);
4096 smb3_is_transform_hdr(void *buf
)
4098 struct smb2_transform_hdr
*trhdr
= buf
;
4100 return trhdr
->ProtocolId
== SMB2_TRANSFORM_PROTO_NUM
;
4104 decrypt_raw_data(struct TCP_Server_Info
*server
, char *buf
,
4105 unsigned int buf_data_size
, struct page
**pages
,
4106 unsigned int npages
, unsigned int page_data_size
)
4109 struct smb_rqst rqst
= {NULL
};
4112 iov
[0].iov_base
= buf
;
4113 iov
[0].iov_len
= sizeof(struct smb2_transform_hdr
);
4114 iov
[1].iov_base
= buf
+ sizeof(struct smb2_transform_hdr
);
4115 iov
[1].iov_len
= buf_data_size
;
4119 rqst
.rq_pages
= pages
;
4120 rqst
.rq_npages
= npages
;
4121 rqst
.rq_pagesz
= PAGE_SIZE
;
4122 rqst
.rq_tailsz
= (page_data_size
% PAGE_SIZE
) ? : PAGE_SIZE
;
4124 rc
= crypt_message(server
, 1, &rqst
, 0);
4125 cifs_dbg(FYI
, "Decrypt message returned %d\n", rc
);
4130 memmove(buf
, iov
[1].iov_base
, buf_data_size
);
4132 server
->total_read
= buf_data_size
+ page_data_size
;
4138 read_data_into_pages(struct TCP_Server_Info
*server
, struct page
**pages
,
4139 unsigned int npages
, unsigned int len
)
4144 for (i
= 0; i
< npages
; i
++) {
4145 struct page
*page
= pages
[i
];
4149 if (len
>= PAGE_SIZE
) {
4150 /* enough data to fill the page */
4154 zero_user(page
, len
, PAGE_SIZE
- len
);
4157 length
= cifs_read_page_from_socket(server
, page
, 0, n
);
4160 server
->total_read
+= length
;
4167 init_read_bvec(struct page
**pages
, unsigned int npages
, unsigned int data_size
,
4168 unsigned int cur_off
, struct bio_vec
**page_vec
)
4170 struct bio_vec
*bvec
;
4173 bvec
= kcalloc(npages
, sizeof(struct bio_vec
), GFP_KERNEL
);
4177 for (i
= 0; i
< npages
; i
++) {
4178 bvec
[i
].bv_page
= pages
[i
];
4179 bvec
[i
].bv_offset
= (i
== 0) ? cur_off
: 0;
4180 bvec
[i
].bv_len
= min_t(unsigned int, PAGE_SIZE
, data_size
);
4181 data_size
-= bvec
[i
].bv_len
;
4184 if (data_size
!= 0) {
4185 cifs_dbg(VFS
, "%s: something went wrong\n", __func__
);
4195 handle_read_data(struct TCP_Server_Info
*server
, struct mid_q_entry
*mid
,
4196 char *buf
, unsigned int buf_len
, struct page
**pages
,
4197 unsigned int npages
, unsigned int page_data_size
)
4199 unsigned int data_offset
;
4200 unsigned int data_len
;
4201 unsigned int cur_off
;
4202 unsigned int cur_page_idx
;
4203 unsigned int pad_len
;
4204 struct cifs_readdata
*rdata
= mid
->callback_data
;
4205 struct smb2_sync_hdr
*shdr
= (struct smb2_sync_hdr
*)buf
;
4206 struct bio_vec
*bvec
= NULL
;
4207 struct iov_iter iter
;
4210 bool use_rdma_mr
= false;
4212 if (shdr
->Command
!= SMB2_READ
) {
4213 cifs_server_dbg(VFS
, "only big read responses are supported\n");
4217 if (server
->ops
->is_session_expired
&&
4218 server
->ops
->is_session_expired(buf
)) {
4219 cifs_reconnect(server
);
4223 if (server
->ops
->is_status_pending
&&
4224 server
->ops
->is_status_pending(buf
, server
))
4227 /* set up first two iov to get credits */
4228 rdata
->iov
[0].iov_base
= buf
;
4229 rdata
->iov
[0].iov_len
= 0;
4230 rdata
->iov
[1].iov_base
= buf
;
4231 rdata
->iov
[1].iov_len
=
4232 min_t(unsigned int, buf_len
, server
->vals
->read_rsp_size
);
4233 cifs_dbg(FYI
, "0: iov_base=%p iov_len=%zu\n",
4234 rdata
->iov
[0].iov_base
, rdata
->iov
[0].iov_len
);
4235 cifs_dbg(FYI
, "1: iov_base=%p iov_len=%zu\n",
4236 rdata
->iov
[1].iov_base
, rdata
->iov
[1].iov_len
);
4238 rdata
->result
= server
->ops
->map_error(buf
, true);
4239 if (rdata
->result
!= 0) {
4240 cifs_dbg(FYI
, "%s: server returned error %d\n",
4241 __func__
, rdata
->result
);
4242 /* normal error on read response */
4243 dequeue_mid(mid
, false);
4247 data_offset
= server
->ops
->read_data_offset(buf
);
4248 #ifdef CONFIG_CIFS_SMB_DIRECT
4249 use_rdma_mr
= rdata
->mr
;
4251 data_len
= server
->ops
->read_data_length(buf
, use_rdma_mr
);
4253 if (data_offset
< server
->vals
->read_rsp_size
) {
4255 * win2k8 sometimes sends an offset of 0 when the read
4256 * is beyond the EOF. Treat it as if the data starts just after
4259 cifs_dbg(FYI
, "%s: data offset (%u) inside read response header\n",
4260 __func__
, data_offset
);
4261 data_offset
= server
->vals
->read_rsp_size
;
4262 } else if (data_offset
> MAX_CIFS_SMALL_BUFFER_SIZE
) {
4263 /* data_offset is beyond the end of smallbuf */
4264 cifs_dbg(FYI
, "%s: data offset (%u) beyond end of smallbuf\n",
4265 __func__
, data_offset
);
4266 rdata
->result
= -EIO
;
4267 dequeue_mid(mid
, rdata
->result
);
4271 pad_len
= data_offset
- server
->vals
->read_rsp_size
;
4273 if (buf_len
<= data_offset
) {
4274 /* read response payload is in pages */
4275 cur_page_idx
= pad_len
/ PAGE_SIZE
;
4276 cur_off
= pad_len
% PAGE_SIZE
;
4278 if (cur_page_idx
!= 0) {
4279 /* data offset is beyond the 1st page of response */
4280 cifs_dbg(FYI
, "%s: data offset (%u) beyond 1st page of response\n",
4281 __func__
, data_offset
);
4282 rdata
->result
= -EIO
;
4283 dequeue_mid(mid
, rdata
->result
);
4287 if (data_len
> page_data_size
- pad_len
) {
4288 /* data_len is corrupt -- discard frame */
4289 rdata
->result
= -EIO
;
4290 dequeue_mid(mid
, rdata
->result
);
4294 rdata
->result
= init_read_bvec(pages
, npages
, page_data_size
,
4296 if (rdata
->result
!= 0) {
4297 dequeue_mid(mid
, rdata
->result
);
4301 iov_iter_bvec(&iter
, WRITE
, bvec
, npages
, data_len
);
4302 } else if (buf_len
>= data_offset
+ data_len
) {
4303 /* read response payload is in buf */
4304 WARN_ONCE(npages
> 0, "read data can be either in buf or in pages");
4305 iov
.iov_base
= buf
+ data_offset
;
4306 iov
.iov_len
= data_len
;
4307 iov_iter_kvec(&iter
, WRITE
, &iov
, 1, data_len
);
4309 /* read response payload cannot be in both buf and pages */
4310 WARN_ONCE(1, "buf can not contain only a part of read data");
4311 rdata
->result
= -EIO
;
4312 dequeue_mid(mid
, rdata
->result
);
4316 length
= rdata
->copy_into_pages(server
, rdata
, &iter
);
4323 dequeue_mid(mid
, false);
4327 struct smb2_decrypt_work
{
4328 struct work_struct decrypt
;
4329 struct TCP_Server_Info
*server
;
4330 struct page
**ppages
;
4332 unsigned int npages
;
4337 static void smb2_decrypt_offload(struct work_struct
*work
)
4339 struct smb2_decrypt_work
*dw
= container_of(work
,
4340 struct smb2_decrypt_work
, decrypt
);
4342 struct mid_q_entry
*mid
;
4344 rc
= decrypt_raw_data(dw
->server
, dw
->buf
, dw
->server
->vals
->read_rsp_size
,
4345 dw
->ppages
, dw
->npages
, dw
->len
);
4347 cifs_dbg(VFS
, "error decrypting rc=%d\n", rc
);
4351 dw
->server
->lstrp
= jiffies
;
4352 mid
= smb2_find_mid(dw
->server
, dw
->buf
);
4354 cifs_dbg(FYI
, "mid not found\n");
4356 mid
->decrypted
= true;
4357 rc
= handle_read_data(dw
->server
, mid
, dw
->buf
,
4358 dw
->server
->vals
->read_rsp_size
,
4359 dw
->ppages
, dw
->npages
, dw
->len
);
4361 cifs_mid_q_entry_release(mid
);
4365 for (i
= dw
->npages
-1; i
>= 0; i
--)
4366 put_page(dw
->ppages
[i
]);
4369 cifs_small_buf_release(dw
->buf
);
4375 receive_encrypted_read(struct TCP_Server_Info
*server
, struct mid_q_entry
**mid
,
4378 char *buf
= server
->smallbuf
;
4379 struct smb2_transform_hdr
*tr_hdr
= (struct smb2_transform_hdr
*)buf
;
4380 unsigned int npages
;
4381 struct page
**pages
;
4383 unsigned int buflen
= server
->pdu_size
;
4386 struct smb2_decrypt_work
*dw
;
4389 len
= min_t(unsigned int, buflen
, server
->vals
->read_rsp_size
+
4390 sizeof(struct smb2_transform_hdr
)) - HEADER_SIZE(server
) + 1;
4392 rc
= cifs_read_from_socket(server
, buf
+ HEADER_SIZE(server
) - 1, len
);
4395 server
->total_read
+= rc
;
4397 len
= le32_to_cpu(tr_hdr
->OriginalMessageSize
) -
4398 server
->vals
->read_rsp_size
;
4399 npages
= DIV_ROUND_UP(len
, PAGE_SIZE
);
4401 pages
= kmalloc_array(npages
, sizeof(struct page
*), GFP_KERNEL
);
4407 for (; i
< npages
; i
++) {
4408 pages
[i
] = alloc_page(GFP_KERNEL
|__GFP_HIGHMEM
);
4415 /* read read data into pages */
4416 rc
= read_data_into_pages(server
, pages
, npages
, len
);
4420 rc
= cifs_discard_remaining_data(server
);
4425 * For large reads, offload to different thread for better performance,
4426 * use more cores decrypting which can be expensive
4429 if ((server
->min_offload
) && (server
->in_flight
> 1) &&
4430 (server
->pdu_size
>= server
->min_offload
)) {
4431 dw
= kmalloc(sizeof(struct smb2_decrypt_work
), GFP_KERNEL
);
4433 goto non_offloaded_decrypt
;
4435 dw
->buf
= server
->smallbuf
;
4436 server
->smallbuf
= (char *)cifs_small_buf_get();
4438 INIT_WORK(&dw
->decrypt
, smb2_decrypt_offload
);
4440 dw
->npages
= npages
;
4441 dw
->server
= server
;
4444 queue_work(decrypt_wq
, &dw
->decrypt
);
4445 *num_mids
= 0; /* worker thread takes care of finding mid */
4449 non_offloaded_decrypt
:
4450 rc
= decrypt_raw_data(server
, buf
, server
->vals
->read_rsp_size
,
4451 pages
, npages
, len
);
4455 *mid
= smb2_find_mid(server
, buf
);
4457 cifs_dbg(FYI
, "mid not found\n");
4459 cifs_dbg(FYI
, "mid found\n");
4460 (*mid
)->decrypted
= true;
4461 rc
= handle_read_data(server
, *mid
, buf
,
4462 server
->vals
->read_rsp_size
,
4463 pages
, npages
, len
);
4467 for (i
= i
- 1; i
>= 0; i
--)
4472 cifs_discard_remaining_data(server
);
4477 receive_encrypted_standard(struct TCP_Server_Info
*server
,
4478 struct mid_q_entry
**mids
, char **bufs
,
4482 char *buf
= server
->smallbuf
;
4483 struct smb2_sync_hdr
*shdr
;
4484 unsigned int pdu_length
= server
->pdu_size
;
4485 unsigned int buf_size
;
4486 struct mid_q_entry
*mid_entry
;
4488 char *next_buffer
= NULL
;
4492 /* switch to large buffer if too big for a small one */
4493 if (pdu_length
> MAX_CIFS_SMALL_BUFFER_SIZE
) {
4494 server
->large_buf
= true;
4495 memcpy(server
->bigbuf
, buf
, server
->total_read
);
4496 buf
= server
->bigbuf
;
4499 /* now read the rest */
4500 length
= cifs_read_from_socket(server
, buf
+ HEADER_SIZE(server
) - 1,
4501 pdu_length
- HEADER_SIZE(server
) + 1);
4504 server
->total_read
+= length
;
4506 buf_size
= pdu_length
- sizeof(struct smb2_transform_hdr
);
4507 length
= decrypt_raw_data(server
, buf
, buf_size
, NULL
, 0, 0);
4511 next_is_large
= server
->large_buf
;
4513 shdr
= (struct smb2_sync_hdr
*)buf
;
4514 if (shdr
->NextCommand
) {
4516 next_buffer
= (char *)cifs_buf_get();
4518 next_buffer
= (char *)cifs_small_buf_get();
4520 buf
+ le32_to_cpu(shdr
->NextCommand
),
4521 pdu_length
- le32_to_cpu(shdr
->NextCommand
));
4524 mid_entry
= smb2_find_mid(server
, buf
);
4525 if (mid_entry
== NULL
)
4526 cifs_dbg(FYI
, "mid not found\n");
4528 cifs_dbg(FYI
, "mid found\n");
4529 mid_entry
->decrypted
= true;
4530 mid_entry
->resp_buf_size
= server
->pdu_size
;
4533 if (*num_mids
>= MAX_COMPOUND
) {
4534 cifs_server_dbg(VFS
, "too many PDUs in compound\n");
4537 bufs
[*num_mids
] = buf
;
4538 mids
[(*num_mids
)++] = mid_entry
;
4540 if (mid_entry
&& mid_entry
->handle
)
4541 ret
= mid_entry
->handle(server
, mid_entry
);
4543 ret
= cifs_handle_standard(server
, mid_entry
);
4545 if (ret
== 0 && shdr
->NextCommand
) {
4546 pdu_length
-= le32_to_cpu(shdr
->NextCommand
);
4547 server
->large_buf
= next_is_large
;
4549 server
->bigbuf
= buf
= next_buffer
;
4551 server
->smallbuf
= buf
= next_buffer
;
4553 } else if (ret
!= 0) {
4555 * ret != 0 here means that we didn't get to handle_mid() thus
4556 * server->smallbuf and server->bigbuf are still valid. We need
4557 * to free next_buffer because it is not going to be used
4561 free_rsp_buf(CIFS_LARGE_BUFFER
, next_buffer
);
4563 free_rsp_buf(CIFS_SMALL_BUFFER
, next_buffer
);
4570 smb3_receive_transform(struct TCP_Server_Info
*server
,
4571 struct mid_q_entry
**mids
, char **bufs
, int *num_mids
)
4573 char *buf
= server
->smallbuf
;
4574 unsigned int pdu_length
= server
->pdu_size
;
4575 struct smb2_transform_hdr
*tr_hdr
= (struct smb2_transform_hdr
*)buf
;
4576 unsigned int orig_len
= le32_to_cpu(tr_hdr
->OriginalMessageSize
);
4578 if (pdu_length
< sizeof(struct smb2_transform_hdr
) +
4579 sizeof(struct smb2_sync_hdr
)) {
4580 cifs_server_dbg(VFS
, "Transform message is too small (%u)\n",
4582 cifs_reconnect(server
);
4583 return -ECONNABORTED
;
4586 if (pdu_length
< orig_len
+ sizeof(struct smb2_transform_hdr
)) {
4587 cifs_server_dbg(VFS
, "Transform message is broken\n");
4588 cifs_reconnect(server
);
4589 return -ECONNABORTED
;
4592 /* TODO: add support for compounds containing READ. */
4593 if (pdu_length
> CIFSMaxBufSize
+ MAX_HEADER_SIZE(server
)) {
4594 return receive_encrypted_read(server
, &mids
[0], num_mids
);
4597 return receive_encrypted_standard(server
, mids
, bufs
, num_mids
);
4601 smb3_handle_read_data(struct TCP_Server_Info
*server
, struct mid_q_entry
*mid
)
4603 char *buf
= server
->large_buf
? server
->bigbuf
: server
->smallbuf
;
4605 return handle_read_data(server
, mid
, buf
, server
->pdu_size
,
4610 smb2_next_header(char *buf
)
4612 struct smb2_sync_hdr
*hdr
= (struct smb2_sync_hdr
*)buf
;
4613 struct smb2_transform_hdr
*t_hdr
= (struct smb2_transform_hdr
*)buf
;
4615 if (hdr
->ProtocolId
== SMB2_TRANSFORM_PROTO_NUM
)
4616 return sizeof(struct smb2_transform_hdr
) +
4617 le32_to_cpu(t_hdr
->OriginalMessageSize
);
4619 return le32_to_cpu(hdr
->NextCommand
);
4623 smb2_make_node(unsigned int xid
, struct inode
*inode
,
4624 struct dentry
*dentry
, struct cifs_tcon
*tcon
,
4625 char *full_path
, umode_t mode
, dev_t dev
)
4627 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
4629 FILE_ALL_INFO
*buf
= NULL
;
4630 struct cifs_io_parms io_parms
= {0};
4632 struct cifs_fid fid
;
4633 struct cifs_open_parms oparms
;
4634 unsigned int bytes_written
;
4635 struct win_dev
*pdev
;
4639 * Check if mounted with mount parm 'sfu' mount parm.
4640 * SFU emulation should work with all servers, but only
4641 * supports block and char device (no socket & fifo),
4642 * and was used by default in earlier versions of Windows
4644 if (!(cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_UNX_EMUL
))
4648 * TODO: Add ability to create instead via reparse point. Windows (e.g.
4649 * their current NFS server) uses this approach to expose special files
4650 * over SMB2/SMB3 and Samba will do this with SMB3.1.1 POSIX Extensions
4653 if (!S_ISCHR(mode
) && !S_ISBLK(mode
))
4656 cifs_dbg(FYI
, "sfu compat create special file\n");
4658 buf
= kmalloc(sizeof(FILE_ALL_INFO
), GFP_KERNEL
);
4665 oparms
.cifs_sb
= cifs_sb
;
4666 oparms
.desired_access
= GENERIC_WRITE
;
4667 oparms
.create_options
= cifs_create_options(cifs_sb
, CREATE_NOT_DIR
|
4668 CREATE_OPTION_SPECIAL
);
4669 oparms
.disposition
= FILE_CREATE
;
4670 oparms
.path
= full_path
;
4672 oparms
.reconnect
= false;
4674 if (tcon
->ses
->server
->oplocks
)
4675 oplock
= REQ_OPLOCK
;
4678 rc
= tcon
->ses
->server
->ops
->open(xid
, &oparms
, &oplock
, buf
);
4683 * BB Do not bother to decode buf since no local inode yet to put
4684 * timestamps in, but we can reuse it safely.
4687 pdev
= (struct win_dev
*)buf
;
4688 io_parms
.pid
= current
->tgid
;
4689 io_parms
.tcon
= tcon
;
4690 io_parms
.offset
= 0;
4691 io_parms
.length
= sizeof(struct win_dev
);
4692 iov
[1].iov_base
= buf
;
4693 iov
[1].iov_len
= sizeof(struct win_dev
);
4694 if (S_ISCHR(mode
)) {
4695 memcpy(pdev
->type
, "IntxCHR", 8);
4696 pdev
->major
= cpu_to_le64(MAJOR(dev
));
4697 pdev
->minor
= cpu_to_le64(MINOR(dev
));
4698 rc
= tcon
->ses
->server
->ops
->sync_write(xid
, &fid
, &io_parms
,
4699 &bytes_written
, iov
, 1);
4700 } else if (S_ISBLK(mode
)) {
4701 memcpy(pdev
->type
, "IntxBLK", 8);
4702 pdev
->major
= cpu_to_le64(MAJOR(dev
));
4703 pdev
->minor
= cpu_to_le64(MINOR(dev
));
4704 rc
= tcon
->ses
->server
->ops
->sync_write(xid
, &fid
, &io_parms
,
4705 &bytes_written
, iov
, 1);
4707 tcon
->ses
->server
->ops
->close(xid
, tcon
, &fid
);
4710 /* FIXME: add code here to set EAs */
4717 struct smb_version_operations smb20_operations
= {
4718 .compare_fids
= smb2_compare_fids
,
4719 .setup_request
= smb2_setup_request
,
4720 .setup_async_request
= smb2_setup_async_request
,
4721 .check_receive
= smb2_check_receive
,
4722 .add_credits
= smb2_add_credits
,
4723 .set_credits
= smb2_set_credits
,
4724 .get_credits_field
= smb2_get_credits_field
,
4725 .get_credits
= smb2_get_credits
,
4726 .wait_mtu_credits
= cifs_wait_mtu_credits
,
4727 .get_next_mid
= smb2_get_next_mid
,
4728 .revert_current_mid
= smb2_revert_current_mid
,
4729 .read_data_offset
= smb2_read_data_offset
,
4730 .read_data_length
= smb2_read_data_length
,
4731 .map_error
= map_smb2_to_linux_error
,
4732 .find_mid
= smb2_find_mid
,
4733 .check_message
= smb2_check_message
,
4734 .dump_detail
= smb2_dump_detail
,
4735 .clear_stats
= smb2_clear_stats
,
4736 .print_stats
= smb2_print_stats
,
4737 .is_oplock_break
= smb2_is_valid_oplock_break
,
4738 .handle_cancelled_mid
= smb2_handle_cancelled_mid
,
4739 .downgrade_oplock
= smb2_downgrade_oplock
,
4740 .need_neg
= smb2_need_neg
,
4741 .negotiate
= smb2_negotiate
,
4742 .negotiate_wsize
= smb2_negotiate_wsize
,
4743 .negotiate_rsize
= smb2_negotiate_rsize
,
4744 .sess_setup
= SMB2_sess_setup
,
4745 .logoff
= SMB2_logoff
,
4746 .tree_connect
= SMB2_tcon
,
4747 .tree_disconnect
= SMB2_tdis
,
4748 .qfs_tcon
= smb2_qfs_tcon
,
4749 .is_path_accessible
= smb2_is_path_accessible
,
4750 .can_echo
= smb2_can_echo
,
4752 .query_path_info
= smb2_query_path_info
,
4753 .get_srv_inum
= smb2_get_srv_inum
,
4754 .query_file_info
= smb2_query_file_info
,
4755 .set_path_size
= smb2_set_path_size
,
4756 .set_file_size
= smb2_set_file_size
,
4757 .set_file_info
= smb2_set_file_info
,
4758 .set_compression
= smb2_set_compression
,
4759 .mkdir
= smb2_mkdir
,
4760 .mkdir_setinfo
= smb2_mkdir_setinfo
,
4761 .rmdir
= smb2_rmdir
,
4762 .unlink
= smb2_unlink
,
4763 .rename
= smb2_rename_path
,
4764 .create_hardlink
= smb2_create_hardlink
,
4765 .query_symlink
= smb2_query_symlink
,
4766 .query_mf_symlink
= smb3_query_mf_symlink
,
4767 .create_mf_symlink
= smb3_create_mf_symlink
,
4768 .open
= smb2_open_file
,
4769 .set_fid
= smb2_set_fid
,
4770 .close
= smb2_close_file
,
4771 .flush
= smb2_flush_file
,
4772 .async_readv
= smb2_async_readv
,
4773 .async_writev
= smb2_async_writev
,
4774 .sync_read
= smb2_sync_read
,
4775 .sync_write
= smb2_sync_write
,
4776 .query_dir_first
= smb2_query_dir_first
,
4777 .query_dir_next
= smb2_query_dir_next
,
4778 .close_dir
= smb2_close_dir
,
4779 .calc_smb_size
= smb2_calc_size
,
4780 .is_status_pending
= smb2_is_status_pending
,
4781 .is_session_expired
= smb2_is_session_expired
,
4782 .oplock_response
= smb2_oplock_response
,
4783 .queryfs
= smb2_queryfs
,
4784 .mand_lock
= smb2_mand_lock
,
4785 .mand_unlock_range
= smb2_unlock_range
,
4786 .push_mand_locks
= smb2_push_mandatory_locks
,
4787 .get_lease_key
= smb2_get_lease_key
,
4788 .set_lease_key
= smb2_set_lease_key
,
4789 .new_lease_key
= smb2_new_lease_key
,
4790 .calc_signature
= smb2_calc_signature
,
4791 .is_read_op
= smb2_is_read_op
,
4792 .set_oplock_level
= smb2_set_oplock_level
,
4793 .create_lease_buf
= smb2_create_lease_buf
,
4794 .parse_lease_buf
= smb2_parse_lease_buf
,
4795 .copychunk_range
= smb2_copychunk_range
,
4796 .wp_retry_size
= smb2_wp_retry_size
,
4797 .dir_needs_close
= smb2_dir_needs_close
,
4798 .get_dfs_refer
= smb2_get_dfs_refer
,
4799 .select_sectype
= smb2_select_sectype
,
4800 #ifdef CONFIG_CIFS_XATTR
4801 .query_all_EAs
= smb2_query_eas
,
4802 .set_EA
= smb2_set_ea
,
4803 #endif /* CIFS_XATTR */
4804 .get_acl
= get_smb2_acl
,
4805 .get_acl_by_fid
= get_smb2_acl_by_fid
,
4806 .set_acl
= set_smb2_acl
,
4807 .next_header
= smb2_next_header
,
4808 .ioctl_query_info
= smb2_ioctl_query_info
,
4809 .make_node
= smb2_make_node
,
4810 .fiemap
= smb3_fiemap
,
4811 .llseek
= smb3_llseek
,
4814 struct smb_version_operations smb21_operations
= {
4815 .compare_fids
= smb2_compare_fids
,
4816 .setup_request
= smb2_setup_request
,
4817 .setup_async_request
= smb2_setup_async_request
,
4818 .check_receive
= smb2_check_receive
,
4819 .add_credits
= smb2_add_credits
,
4820 .set_credits
= smb2_set_credits
,
4821 .get_credits_field
= smb2_get_credits_field
,
4822 .get_credits
= smb2_get_credits
,
4823 .wait_mtu_credits
= smb2_wait_mtu_credits
,
4824 .adjust_credits
= smb2_adjust_credits
,
4825 .get_next_mid
= smb2_get_next_mid
,
4826 .revert_current_mid
= smb2_revert_current_mid
,
4827 .read_data_offset
= smb2_read_data_offset
,
4828 .read_data_length
= smb2_read_data_length
,
4829 .map_error
= map_smb2_to_linux_error
,
4830 .find_mid
= smb2_find_mid
,
4831 .check_message
= smb2_check_message
,
4832 .dump_detail
= smb2_dump_detail
,
4833 .clear_stats
= smb2_clear_stats
,
4834 .print_stats
= smb2_print_stats
,
4835 .is_oplock_break
= smb2_is_valid_oplock_break
,
4836 .handle_cancelled_mid
= smb2_handle_cancelled_mid
,
4837 .downgrade_oplock
= smb2_downgrade_oplock
,
4838 .need_neg
= smb2_need_neg
,
4839 .negotiate
= smb2_negotiate
,
4840 .negotiate_wsize
= smb2_negotiate_wsize
,
4841 .negotiate_rsize
= smb2_negotiate_rsize
,
4842 .sess_setup
= SMB2_sess_setup
,
4843 .logoff
= SMB2_logoff
,
4844 .tree_connect
= SMB2_tcon
,
4845 .tree_disconnect
= SMB2_tdis
,
4846 .qfs_tcon
= smb2_qfs_tcon
,
4847 .is_path_accessible
= smb2_is_path_accessible
,
4848 .can_echo
= smb2_can_echo
,
4850 .query_path_info
= smb2_query_path_info
,
4851 .get_srv_inum
= smb2_get_srv_inum
,
4852 .query_file_info
= smb2_query_file_info
,
4853 .set_path_size
= smb2_set_path_size
,
4854 .set_file_size
= smb2_set_file_size
,
4855 .set_file_info
= smb2_set_file_info
,
4856 .set_compression
= smb2_set_compression
,
4857 .mkdir
= smb2_mkdir
,
4858 .mkdir_setinfo
= smb2_mkdir_setinfo
,
4859 .rmdir
= smb2_rmdir
,
4860 .unlink
= smb2_unlink
,
4861 .rename
= smb2_rename_path
,
4862 .create_hardlink
= smb2_create_hardlink
,
4863 .query_symlink
= smb2_query_symlink
,
4864 .query_mf_symlink
= smb3_query_mf_symlink
,
4865 .create_mf_symlink
= smb3_create_mf_symlink
,
4866 .open
= smb2_open_file
,
4867 .set_fid
= smb2_set_fid
,
4868 .close
= smb2_close_file
,
4869 .flush
= smb2_flush_file
,
4870 .async_readv
= smb2_async_readv
,
4871 .async_writev
= smb2_async_writev
,
4872 .sync_read
= smb2_sync_read
,
4873 .sync_write
= smb2_sync_write
,
4874 .query_dir_first
= smb2_query_dir_first
,
4875 .query_dir_next
= smb2_query_dir_next
,
4876 .close_dir
= smb2_close_dir
,
4877 .calc_smb_size
= smb2_calc_size
,
4878 .is_status_pending
= smb2_is_status_pending
,
4879 .is_session_expired
= smb2_is_session_expired
,
4880 .oplock_response
= smb2_oplock_response
,
4881 .queryfs
= smb2_queryfs
,
4882 .mand_lock
= smb2_mand_lock
,
4883 .mand_unlock_range
= smb2_unlock_range
,
4884 .push_mand_locks
= smb2_push_mandatory_locks
,
4885 .get_lease_key
= smb2_get_lease_key
,
4886 .set_lease_key
= smb2_set_lease_key
,
4887 .new_lease_key
= smb2_new_lease_key
,
4888 .calc_signature
= smb2_calc_signature
,
4889 .is_read_op
= smb21_is_read_op
,
4890 .set_oplock_level
= smb21_set_oplock_level
,
4891 .create_lease_buf
= smb2_create_lease_buf
,
4892 .parse_lease_buf
= smb2_parse_lease_buf
,
4893 .copychunk_range
= smb2_copychunk_range
,
4894 .wp_retry_size
= smb2_wp_retry_size
,
4895 .dir_needs_close
= smb2_dir_needs_close
,
4896 .enum_snapshots
= smb3_enum_snapshots
,
4897 .notify
= smb3_notify
,
4898 .get_dfs_refer
= smb2_get_dfs_refer
,
4899 .select_sectype
= smb2_select_sectype
,
4900 #ifdef CONFIG_CIFS_XATTR
4901 .query_all_EAs
= smb2_query_eas
,
4902 .set_EA
= smb2_set_ea
,
4903 #endif /* CIFS_XATTR */
4904 .get_acl
= get_smb2_acl
,
4905 .get_acl_by_fid
= get_smb2_acl_by_fid
,
4906 .set_acl
= set_smb2_acl
,
4907 .next_header
= smb2_next_header
,
4908 .ioctl_query_info
= smb2_ioctl_query_info
,
4909 .make_node
= smb2_make_node
,
4910 .fiemap
= smb3_fiemap
,
4911 .llseek
= smb3_llseek
,
4914 struct smb_version_operations smb30_operations
= {
4915 .compare_fids
= smb2_compare_fids
,
4916 .setup_request
= smb2_setup_request
,
4917 .setup_async_request
= smb2_setup_async_request
,
4918 .check_receive
= smb2_check_receive
,
4919 .add_credits
= smb2_add_credits
,
4920 .set_credits
= smb2_set_credits
,
4921 .get_credits_field
= smb2_get_credits_field
,
4922 .get_credits
= smb2_get_credits
,
4923 .wait_mtu_credits
= smb2_wait_mtu_credits
,
4924 .adjust_credits
= smb2_adjust_credits
,
4925 .get_next_mid
= smb2_get_next_mid
,
4926 .revert_current_mid
= smb2_revert_current_mid
,
4927 .read_data_offset
= smb2_read_data_offset
,
4928 .read_data_length
= smb2_read_data_length
,
4929 .map_error
= map_smb2_to_linux_error
,
4930 .find_mid
= smb2_find_mid
,
4931 .check_message
= smb2_check_message
,
4932 .dump_detail
= smb2_dump_detail
,
4933 .clear_stats
= smb2_clear_stats
,
4934 .print_stats
= smb2_print_stats
,
4935 .dump_share_caps
= smb2_dump_share_caps
,
4936 .is_oplock_break
= smb2_is_valid_oplock_break
,
4937 .handle_cancelled_mid
= smb2_handle_cancelled_mid
,
4938 .downgrade_oplock
= smb3_downgrade_oplock
,
4939 .need_neg
= smb2_need_neg
,
4940 .negotiate
= smb2_negotiate
,
4941 .negotiate_wsize
= smb3_negotiate_wsize
,
4942 .negotiate_rsize
= smb3_negotiate_rsize
,
4943 .sess_setup
= SMB2_sess_setup
,
4944 .logoff
= SMB2_logoff
,
4945 .tree_connect
= SMB2_tcon
,
4946 .tree_disconnect
= SMB2_tdis
,
4947 .qfs_tcon
= smb3_qfs_tcon
,
4948 .is_path_accessible
= smb2_is_path_accessible
,
4949 .can_echo
= smb2_can_echo
,
4951 .query_path_info
= smb2_query_path_info
,
4952 .get_srv_inum
= smb2_get_srv_inum
,
4953 .query_file_info
= smb2_query_file_info
,
4954 .set_path_size
= smb2_set_path_size
,
4955 .set_file_size
= smb2_set_file_size
,
4956 .set_file_info
= smb2_set_file_info
,
4957 .set_compression
= smb2_set_compression
,
4958 .mkdir
= smb2_mkdir
,
4959 .mkdir_setinfo
= smb2_mkdir_setinfo
,
4960 .rmdir
= smb2_rmdir
,
4961 .unlink
= smb2_unlink
,
4962 .rename
= smb2_rename_path
,
4963 .create_hardlink
= smb2_create_hardlink
,
4964 .query_symlink
= smb2_query_symlink
,
4965 .query_mf_symlink
= smb3_query_mf_symlink
,
4966 .create_mf_symlink
= smb3_create_mf_symlink
,
4967 .open
= smb2_open_file
,
4968 .set_fid
= smb2_set_fid
,
4969 .close
= smb2_close_file
,
4970 .close_getattr
= smb2_close_getattr
,
4971 .flush
= smb2_flush_file
,
4972 .async_readv
= smb2_async_readv
,
4973 .async_writev
= smb2_async_writev
,
4974 .sync_read
= smb2_sync_read
,
4975 .sync_write
= smb2_sync_write
,
4976 .query_dir_first
= smb2_query_dir_first
,
4977 .query_dir_next
= smb2_query_dir_next
,
4978 .close_dir
= smb2_close_dir
,
4979 .calc_smb_size
= smb2_calc_size
,
4980 .is_status_pending
= smb2_is_status_pending
,
4981 .is_session_expired
= smb2_is_session_expired
,
4982 .oplock_response
= smb2_oplock_response
,
4983 .queryfs
= smb2_queryfs
,
4984 .mand_lock
= smb2_mand_lock
,
4985 .mand_unlock_range
= smb2_unlock_range
,
4986 .push_mand_locks
= smb2_push_mandatory_locks
,
4987 .get_lease_key
= smb2_get_lease_key
,
4988 .set_lease_key
= smb2_set_lease_key
,
4989 .new_lease_key
= smb2_new_lease_key
,
4990 .generate_signingkey
= generate_smb30signingkey
,
4991 .calc_signature
= smb3_calc_signature
,
4992 .set_integrity
= smb3_set_integrity
,
4993 .is_read_op
= smb21_is_read_op
,
4994 .set_oplock_level
= smb3_set_oplock_level
,
4995 .create_lease_buf
= smb3_create_lease_buf
,
4996 .parse_lease_buf
= smb3_parse_lease_buf
,
4997 .copychunk_range
= smb2_copychunk_range
,
4998 .duplicate_extents
= smb2_duplicate_extents
,
4999 .validate_negotiate
= smb3_validate_negotiate
,
5000 .wp_retry_size
= smb2_wp_retry_size
,
5001 .dir_needs_close
= smb2_dir_needs_close
,
5002 .fallocate
= smb3_fallocate
,
5003 .enum_snapshots
= smb3_enum_snapshots
,
5004 .notify
= smb3_notify
,
5005 .init_transform_rq
= smb3_init_transform_rq
,
5006 .is_transform_hdr
= smb3_is_transform_hdr
,
5007 .receive_transform
= smb3_receive_transform
,
5008 .get_dfs_refer
= smb2_get_dfs_refer
,
5009 .select_sectype
= smb2_select_sectype
,
5010 #ifdef CONFIG_CIFS_XATTR
5011 .query_all_EAs
= smb2_query_eas
,
5012 .set_EA
= smb2_set_ea
,
5013 #endif /* CIFS_XATTR */
5014 .get_acl
= get_smb2_acl
,
5015 .get_acl_by_fid
= get_smb2_acl_by_fid
,
5016 .set_acl
= set_smb2_acl
,
5017 .next_header
= smb2_next_header
,
5018 .ioctl_query_info
= smb2_ioctl_query_info
,
5019 .make_node
= smb2_make_node
,
5020 .fiemap
= smb3_fiemap
,
5021 .llseek
= smb3_llseek
,
5024 struct smb_version_operations smb311_operations
= {
5025 .compare_fids
= smb2_compare_fids
,
5026 .setup_request
= smb2_setup_request
,
5027 .setup_async_request
= smb2_setup_async_request
,
5028 .check_receive
= smb2_check_receive
,
5029 .add_credits
= smb2_add_credits
,
5030 .set_credits
= smb2_set_credits
,
5031 .get_credits_field
= smb2_get_credits_field
,
5032 .get_credits
= smb2_get_credits
,
5033 .wait_mtu_credits
= smb2_wait_mtu_credits
,
5034 .adjust_credits
= smb2_adjust_credits
,
5035 .get_next_mid
= smb2_get_next_mid
,
5036 .revert_current_mid
= smb2_revert_current_mid
,
5037 .read_data_offset
= smb2_read_data_offset
,
5038 .read_data_length
= smb2_read_data_length
,
5039 .map_error
= map_smb2_to_linux_error
,
5040 .find_mid
= smb2_find_mid
,
5041 .check_message
= smb2_check_message
,
5042 .dump_detail
= smb2_dump_detail
,
5043 .clear_stats
= smb2_clear_stats
,
5044 .print_stats
= smb2_print_stats
,
5045 .dump_share_caps
= smb2_dump_share_caps
,
5046 .is_oplock_break
= smb2_is_valid_oplock_break
,
5047 .handle_cancelled_mid
= smb2_handle_cancelled_mid
,
5048 .downgrade_oplock
= smb3_downgrade_oplock
,
5049 .need_neg
= smb2_need_neg
,
5050 .negotiate
= smb2_negotiate
,
5051 .negotiate_wsize
= smb3_negotiate_wsize
,
5052 .negotiate_rsize
= smb3_negotiate_rsize
,
5053 .sess_setup
= SMB2_sess_setup
,
5054 .logoff
= SMB2_logoff
,
5055 .tree_connect
= SMB2_tcon
,
5056 .tree_disconnect
= SMB2_tdis
,
5057 .qfs_tcon
= smb3_qfs_tcon
,
5058 .is_path_accessible
= smb2_is_path_accessible
,
5059 .can_echo
= smb2_can_echo
,
5061 .query_path_info
= smb2_query_path_info
,
5062 .get_srv_inum
= smb2_get_srv_inum
,
5063 .query_file_info
= smb2_query_file_info
,
5064 .set_path_size
= smb2_set_path_size
,
5065 .set_file_size
= smb2_set_file_size
,
5066 .set_file_info
= smb2_set_file_info
,
5067 .set_compression
= smb2_set_compression
,
5068 .mkdir
= smb2_mkdir
,
5069 .mkdir_setinfo
= smb2_mkdir_setinfo
,
5070 .posix_mkdir
= smb311_posix_mkdir
,
5071 .rmdir
= smb2_rmdir
,
5072 .unlink
= smb2_unlink
,
5073 .rename
= smb2_rename_path
,
5074 .create_hardlink
= smb2_create_hardlink
,
5075 .query_symlink
= smb2_query_symlink
,
5076 .query_mf_symlink
= smb3_query_mf_symlink
,
5077 .create_mf_symlink
= smb3_create_mf_symlink
,
5078 .open
= smb2_open_file
,
5079 .set_fid
= smb2_set_fid
,
5080 .close
= smb2_close_file
,
5081 .close_getattr
= smb2_close_getattr
,
5082 .flush
= smb2_flush_file
,
5083 .async_readv
= smb2_async_readv
,
5084 .async_writev
= smb2_async_writev
,
5085 .sync_read
= smb2_sync_read
,
5086 .sync_write
= smb2_sync_write
,
5087 .query_dir_first
= smb2_query_dir_first
,
5088 .query_dir_next
= smb2_query_dir_next
,
5089 .close_dir
= smb2_close_dir
,
5090 .calc_smb_size
= smb2_calc_size
,
5091 .is_status_pending
= smb2_is_status_pending
,
5092 .is_session_expired
= smb2_is_session_expired
,
5093 .oplock_response
= smb2_oplock_response
,
5094 .queryfs
= smb311_queryfs
,
5095 .mand_lock
= smb2_mand_lock
,
5096 .mand_unlock_range
= smb2_unlock_range
,
5097 .push_mand_locks
= smb2_push_mandatory_locks
,
5098 .get_lease_key
= smb2_get_lease_key
,
5099 .set_lease_key
= smb2_set_lease_key
,
5100 .new_lease_key
= smb2_new_lease_key
,
5101 .generate_signingkey
= generate_smb311signingkey
,
5102 .calc_signature
= smb3_calc_signature
,
5103 .set_integrity
= smb3_set_integrity
,
5104 .is_read_op
= smb21_is_read_op
,
5105 .set_oplock_level
= smb3_set_oplock_level
,
5106 .create_lease_buf
= smb3_create_lease_buf
,
5107 .parse_lease_buf
= smb3_parse_lease_buf
,
5108 .copychunk_range
= smb2_copychunk_range
,
5109 .duplicate_extents
= smb2_duplicate_extents
,
5110 /* .validate_negotiate = smb3_validate_negotiate, */ /* not used in 3.11 */
5111 .wp_retry_size
= smb2_wp_retry_size
,
5112 .dir_needs_close
= smb2_dir_needs_close
,
5113 .fallocate
= smb3_fallocate
,
5114 .enum_snapshots
= smb3_enum_snapshots
,
5115 .notify
= smb3_notify
,
5116 .init_transform_rq
= smb3_init_transform_rq
,
5117 .is_transform_hdr
= smb3_is_transform_hdr
,
5118 .receive_transform
= smb3_receive_transform
,
5119 .get_dfs_refer
= smb2_get_dfs_refer
,
5120 .select_sectype
= smb2_select_sectype
,
5121 #ifdef CONFIG_CIFS_XATTR
5122 .query_all_EAs
= smb2_query_eas
,
5123 .set_EA
= smb2_set_ea
,
5124 #endif /* CIFS_XATTR */
5125 .get_acl
= get_smb2_acl
,
5126 .get_acl_by_fid
= get_smb2_acl_by_fid
,
5127 .set_acl
= set_smb2_acl
,
5128 .next_header
= smb2_next_header
,
5129 .ioctl_query_info
= smb2_ioctl_query_info
,
5130 .make_node
= smb2_make_node
,
5131 .fiemap
= smb3_fiemap
,
5132 .llseek
= smb3_llseek
,
5135 struct smb_version_values smb20_values
= {
5136 .version_string
= SMB20_VERSION_STRING
,
5137 .protocol_id
= SMB20_PROT_ID
,
5138 .req_capabilities
= 0, /* MBZ */
5139 .large_lock_type
= 0,
5140 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
5141 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
5142 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
5143 .header_size
= sizeof(struct smb2_sync_hdr
),
5144 .header_preamble_size
= 0,
5145 .max_header_size
= MAX_SMB2_HDR_SIZE
,
5146 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
5147 .lock_cmd
= SMB2_LOCK
,
5149 .cap_nt_find
= SMB2_NT_FIND
,
5150 .cap_large_files
= SMB2_LARGE_FILES
,
5151 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5152 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5153 .create_lease_size
= sizeof(struct create_lease
),
5156 struct smb_version_values smb21_values
= {
5157 .version_string
= SMB21_VERSION_STRING
,
5158 .protocol_id
= SMB21_PROT_ID
,
5159 .req_capabilities
= 0, /* MBZ on negotiate req until SMB3 dialect */
5160 .large_lock_type
= 0,
5161 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
5162 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
5163 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
5164 .header_size
= sizeof(struct smb2_sync_hdr
),
5165 .header_preamble_size
= 0,
5166 .max_header_size
= MAX_SMB2_HDR_SIZE
,
5167 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
5168 .lock_cmd
= SMB2_LOCK
,
5170 .cap_nt_find
= SMB2_NT_FIND
,
5171 .cap_large_files
= SMB2_LARGE_FILES
,
5172 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5173 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5174 .create_lease_size
= sizeof(struct create_lease
),
5177 struct smb_version_values smb3any_values
= {
5178 .version_string
= SMB3ANY_VERSION_STRING
,
5179 .protocol_id
= SMB302_PROT_ID
, /* doesn't matter, send protocol array */
5180 .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
,
5181 .large_lock_type
= 0,
5182 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
5183 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
5184 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
5185 .header_size
= sizeof(struct smb2_sync_hdr
),
5186 .header_preamble_size
= 0,
5187 .max_header_size
= MAX_SMB2_HDR_SIZE
,
5188 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
5189 .lock_cmd
= SMB2_LOCK
,
5191 .cap_nt_find
= SMB2_NT_FIND
,
5192 .cap_large_files
= SMB2_LARGE_FILES
,
5193 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5194 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5195 .create_lease_size
= sizeof(struct create_lease_v2
),
5198 struct smb_version_values smbdefault_values
= {
5199 .version_string
= SMBDEFAULT_VERSION_STRING
,
5200 .protocol_id
= SMB302_PROT_ID
, /* doesn't matter, send protocol array */
5201 .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
,
5202 .large_lock_type
= 0,
5203 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
5204 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
5205 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
5206 .header_size
= sizeof(struct smb2_sync_hdr
),
5207 .header_preamble_size
= 0,
5208 .max_header_size
= MAX_SMB2_HDR_SIZE
,
5209 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
5210 .lock_cmd
= SMB2_LOCK
,
5212 .cap_nt_find
= SMB2_NT_FIND
,
5213 .cap_large_files
= SMB2_LARGE_FILES
,
5214 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5215 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5216 .create_lease_size
= sizeof(struct create_lease_v2
),
5219 struct smb_version_values smb30_values
= {
5220 .version_string
= SMB30_VERSION_STRING
,
5221 .protocol_id
= SMB30_PROT_ID
,
5222 .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
,
5223 .large_lock_type
= 0,
5224 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
5225 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
5226 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
5227 .header_size
= sizeof(struct smb2_sync_hdr
),
5228 .header_preamble_size
= 0,
5229 .max_header_size
= MAX_SMB2_HDR_SIZE
,
5230 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
5231 .lock_cmd
= SMB2_LOCK
,
5233 .cap_nt_find
= SMB2_NT_FIND
,
5234 .cap_large_files
= SMB2_LARGE_FILES
,
5235 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5236 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5237 .create_lease_size
= sizeof(struct create_lease_v2
),
5240 struct smb_version_values smb302_values
= {
5241 .version_string
= SMB302_VERSION_STRING
,
5242 .protocol_id
= SMB302_PROT_ID
,
5243 .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
,
5244 .large_lock_type
= 0,
5245 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
5246 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
5247 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
5248 .header_size
= sizeof(struct smb2_sync_hdr
),
5249 .header_preamble_size
= 0,
5250 .max_header_size
= MAX_SMB2_HDR_SIZE
,
5251 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
5252 .lock_cmd
= SMB2_LOCK
,
5254 .cap_nt_find
= SMB2_NT_FIND
,
5255 .cap_large_files
= SMB2_LARGE_FILES
,
5256 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5257 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5258 .create_lease_size
= sizeof(struct create_lease_v2
),
5261 struct smb_version_values smb311_values
= {
5262 .version_string
= SMB311_VERSION_STRING
,
5263 .protocol_id
= SMB311_PROT_ID
,
5264 .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
,
5265 .large_lock_type
= 0,
5266 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
5267 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
5268 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
5269 .header_size
= sizeof(struct smb2_sync_hdr
),
5270 .header_preamble_size
= 0,
5271 .max_header_size
= MAX_SMB2_HDR_SIZE
,
5272 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
5273 .lock_cmd
= SMB2_LOCK
,
5275 .cap_nt_find
= SMB2_NT_FIND
,
5276 .cap_large_files
= SMB2_LARGE_FILES
,
5277 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5278 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
5279 .create_lease_size
= sizeof(struct create_lease_v2
),