2 * SMB2 version specific operations
4 * Copyright (c) 2012, Jeff Layton <jlayton@redhat.com>
6 * This library is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License v2 as published
8 * by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/pagemap.h>
21 #include <linux/vfs.h>
22 #include <linux/falloc.h>
25 #include "smb2proto.h"
26 #include "cifsproto.h"
27 #include "cifs_debug.h"
28 #include "cifs_unicode.h"
29 #include "smb2status.h"
33 change_conf(struct TCP_Server_Info
*server
)
35 server
->credits
+= server
->echo_credits
+ server
->oplock_credits
;
36 server
->oplock_credits
= server
->echo_credits
= 0;
37 switch (server
->credits
) {
41 server
->echoes
= false;
42 server
->oplocks
= false;
43 cifs_dbg(VFS
, "disabling echoes and oplocks\n");
46 server
->echoes
= true;
47 server
->oplocks
= false;
48 server
->echo_credits
= 1;
49 cifs_dbg(FYI
, "disabling oplocks\n");
52 server
->echoes
= true;
54 server
->oplocks
= true;
55 server
->oplock_credits
= 1;
57 server
->oplocks
= false;
59 server
->echo_credits
= 1;
61 server
->credits
-= server
->echo_credits
+ server
->oplock_credits
;
66 smb2_add_credits(struct TCP_Server_Info
*server
, const unsigned int add
,
70 spin_lock(&server
->req_lock
);
71 val
= server
->ops
->get_credits_field(server
, optype
);
74 if (server
->in_flight
== 0 && (optype
& CIFS_OP_MASK
) != CIFS_NEG_OP
)
75 rc
= change_conf(server
);
77 * Sometimes server returns 0 credits on oplock break ack - we need to
78 * rebalance credits in this case.
80 else if (server
->in_flight
> 0 && server
->oplock_credits
== 0 &&
82 if (server
->credits
> 1) {
84 server
->oplock_credits
++;
87 spin_unlock(&server
->req_lock
);
88 wake_up(&server
->request_q
);
90 cifs_reconnect(server
);
94 smb2_set_credits(struct TCP_Server_Info
*server
, const int val
)
96 spin_lock(&server
->req_lock
);
97 server
->credits
= val
;
98 spin_unlock(&server
->req_lock
);
102 smb2_get_credits_field(struct TCP_Server_Info
*server
, const int optype
)
106 return &server
->echo_credits
;
108 return &server
->oplock_credits
;
110 return &server
->credits
;
115 smb2_get_credits(struct mid_q_entry
*mid
)
117 return le16_to_cpu(((struct smb2_hdr
*)mid
->resp_buf
)->CreditRequest
);
121 smb2_wait_mtu_credits(struct TCP_Server_Info
*server
, unsigned int size
,
122 unsigned int *num
, unsigned int *credits
)
125 unsigned int scredits
;
127 spin_lock(&server
->req_lock
);
129 if (server
->credits
<= 0) {
130 spin_unlock(&server
->req_lock
);
131 cifs_num_waiters_inc(server
);
132 rc
= wait_event_killable(server
->request_q
,
133 has_credits(server
, &server
->credits
));
134 cifs_num_waiters_dec(server
);
137 spin_lock(&server
->req_lock
);
139 if (server
->tcpStatus
== CifsExiting
) {
140 spin_unlock(&server
->req_lock
);
144 scredits
= server
->credits
;
145 /* can deadlock with reopen */
147 *num
= SMB2_MAX_BUFFER_SIZE
;
152 /* leave one credit for a possible reopen */
154 *num
= min_t(unsigned int, size
,
155 scredits
* SMB2_MAX_BUFFER_SIZE
);
157 *credits
= DIV_ROUND_UP(*num
, SMB2_MAX_BUFFER_SIZE
);
158 server
->credits
-= *credits
;
163 spin_unlock(&server
->req_lock
);
168 smb2_get_next_mid(struct TCP_Server_Info
*server
)
171 /* for SMB2 we need the current value */
172 spin_lock(&GlobalMid_Lock
);
173 mid
= server
->CurrentMid
++;
174 spin_unlock(&GlobalMid_Lock
);
178 static struct mid_q_entry
*
179 smb2_find_mid(struct TCP_Server_Info
*server
, char *buf
)
181 struct mid_q_entry
*mid
;
182 struct smb2_hdr
*hdr
= (struct smb2_hdr
*)buf
;
183 __u64 wire_mid
= le64_to_cpu(hdr
->MessageId
);
185 if (hdr
->ProtocolId
== SMB2_TRANSFORM_PROTO_NUM
) {
186 cifs_dbg(VFS
, "encrypted frame parsing not supported yet");
190 spin_lock(&GlobalMid_Lock
);
191 list_for_each_entry(mid
, &server
->pending_mid_q
, qhead
) {
192 if ((mid
->mid
== wire_mid
) &&
193 (mid
->mid_state
== MID_REQUEST_SUBMITTED
) &&
194 (mid
->command
== hdr
->Command
)) {
195 spin_unlock(&GlobalMid_Lock
);
199 spin_unlock(&GlobalMid_Lock
);
204 smb2_dump_detail(void *buf
)
206 #ifdef CONFIG_CIFS_DEBUG2
207 struct smb2_hdr
*smb
= (struct smb2_hdr
*)buf
;
209 cifs_dbg(VFS
, "Cmd: %d Err: 0x%x Flags: 0x%x Mid: %llu Pid: %d\n",
210 smb
->Command
, smb
->Status
, smb
->Flags
, smb
->MessageId
,
212 cifs_dbg(VFS
, "smb buf %p len %u\n", smb
, smb2_calc_size(smb
));
217 smb2_need_neg(struct TCP_Server_Info
*server
)
219 return server
->max_read
== 0;
223 smb2_negotiate(const unsigned int xid
, struct cifs_ses
*ses
)
226 ses
->server
->CurrentMid
= 0;
227 rc
= SMB2_negotiate(xid
, ses
);
228 /* BB we probably don't need to retry with modern servers */
235 smb2_negotiate_wsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
237 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
240 /* start with specified wsize, or default */
241 wsize
= volume_info
->wsize
? volume_info
->wsize
: CIFS_DEFAULT_IOSIZE
;
242 wsize
= min_t(unsigned int, wsize
, server
->max_write
);
244 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
245 wsize
= min_t(unsigned int, wsize
, SMB2_MAX_BUFFER_SIZE
);
251 smb2_negotiate_rsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
253 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
256 /* start with specified rsize, or default */
257 rsize
= volume_info
->rsize
? volume_info
->rsize
: CIFS_DEFAULT_IOSIZE
;
258 rsize
= min_t(unsigned int, rsize
, server
->max_read
);
260 if (!(server
->capabilities
& SMB2_GLOBAL_CAP_LARGE_MTU
))
261 rsize
= min_t(unsigned int, rsize
, SMB2_MAX_BUFFER_SIZE
);
266 #ifdef CONFIG_CIFS_STATS2
268 SMB3_request_interfaces(const unsigned int xid
, struct cifs_tcon
*tcon
)
271 unsigned int ret_data_len
= 0;
272 struct network_interface_info_ioctl_rsp
*out_buf
;
274 rc
= SMB2_ioctl(xid
, tcon
, NO_FILE_ID
, NO_FILE_ID
,
275 FSCTL_QUERY_NETWORK_INTERFACE_INFO
, true /* is_fsctl */,
276 NULL
/* no data input */, 0 /* no data input */,
277 (char **)&out_buf
, &ret_data_len
);
279 cifs_dbg(VFS
, "error %d on ioctl to get interface list\n", rc
);
280 else if (ret_data_len
< sizeof(struct network_interface_info_ioctl_rsp
)) {
281 cifs_dbg(VFS
, "server returned bad net interface info buf\n");
284 /* Dump info on first interface */
285 cifs_dbg(FYI
, "Adapter Capability 0x%x\t",
286 le32_to_cpu(out_buf
->Capability
));
287 cifs_dbg(FYI
, "Link Speed %lld\n",
288 le64_to_cpu(out_buf
->LinkSpeed
));
296 smb3_qfs_tcon(const unsigned int xid
, struct cifs_tcon
*tcon
)
299 __le16 srch_path
= 0; /* Null - open root of share */
300 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
301 struct cifs_open_parms oparms
;
305 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
306 oparms
.disposition
= FILE_OPEN
;
307 oparms
.create_options
= 0;
309 oparms
.reconnect
= false;
311 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
);
315 #ifdef CONFIG_CIFS_STATS2
316 SMB3_request_interfaces(xid
, tcon
);
319 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
320 FS_ATTRIBUTE_INFORMATION
);
321 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
322 FS_DEVICE_INFORMATION
);
323 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
324 FS_SECTOR_SIZE_INFORMATION
); /* SMB3 specific */
325 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
330 smb2_qfs_tcon(const unsigned int xid
, struct cifs_tcon
*tcon
)
333 __le16 srch_path
= 0; /* Null - open root of share */
334 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
335 struct cifs_open_parms oparms
;
339 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
340 oparms
.disposition
= FILE_OPEN
;
341 oparms
.create_options
= 0;
343 oparms
.reconnect
= false;
345 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
);
349 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
350 FS_ATTRIBUTE_INFORMATION
);
351 SMB2_QFS_attr(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
352 FS_DEVICE_INFORMATION
);
353 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
358 smb2_is_path_accessible(const unsigned int xid
, struct cifs_tcon
*tcon
,
359 struct cifs_sb_info
*cifs_sb
, const char *full_path
)
363 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
364 struct cifs_open_parms oparms
;
367 utf16_path
= cifs_convert_path_to_utf16(full_path
, cifs_sb
);
372 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
373 oparms
.disposition
= FILE_OPEN
;
374 oparms
.create_options
= 0;
376 oparms
.reconnect
= false;
378 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
);
384 rc
= SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
390 smb2_get_srv_inum(const unsigned int xid
, struct cifs_tcon
*tcon
,
391 struct cifs_sb_info
*cifs_sb
, const char *full_path
,
392 u64
*uniqueid
, FILE_ALL_INFO
*data
)
394 *uniqueid
= le64_to_cpu(data
->IndexNumber
);
399 smb2_query_file_info(const unsigned int xid
, struct cifs_tcon
*tcon
,
400 struct cifs_fid
*fid
, FILE_ALL_INFO
*data
)
403 struct smb2_file_all_info
*smb2_data
;
405 smb2_data
= kzalloc(sizeof(struct smb2_file_all_info
) + PATH_MAX
* 2,
407 if (smb2_data
== NULL
)
410 rc
= SMB2_query_info(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
,
413 move_smb2_info_to_cifs(data
, smb2_data
);
419 smb2_can_echo(struct TCP_Server_Info
*server
)
421 return server
->echoes
;
425 smb2_clear_stats(struct cifs_tcon
*tcon
)
427 #ifdef CONFIG_CIFS_STATS
429 for (i
= 0; i
< NUMBER_OF_SMB2_COMMANDS
; i
++) {
430 atomic_set(&tcon
->stats
.smb2_stats
.smb2_com_sent
[i
], 0);
431 atomic_set(&tcon
->stats
.smb2_stats
.smb2_com_failed
[i
], 0);
437 smb2_dump_share_caps(struct seq_file
*m
, struct cifs_tcon
*tcon
)
439 seq_puts(m
, "\n\tShare Capabilities:");
440 if (tcon
->capabilities
& SMB2_SHARE_CAP_DFS
)
441 seq_puts(m
, " DFS,");
442 if (tcon
->capabilities
& SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY
)
443 seq_puts(m
, " CONTINUOUS AVAILABILITY,");
444 if (tcon
->capabilities
& SMB2_SHARE_CAP_SCALEOUT
)
445 seq_puts(m
, " SCALEOUT,");
446 if (tcon
->capabilities
& SMB2_SHARE_CAP_CLUSTER
)
447 seq_puts(m
, " CLUSTER,");
448 if (tcon
->capabilities
& SMB2_SHARE_CAP_ASYMMETRIC
)
449 seq_puts(m
, " ASYMMETRIC,");
450 if (tcon
->capabilities
== 0)
451 seq_puts(m
, " None");
452 if (tcon
->ss_flags
& SSINFO_FLAGS_ALIGNED_DEVICE
)
453 seq_puts(m
, " Aligned,");
454 if (tcon
->ss_flags
& SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE
)
455 seq_puts(m
, " Partition Aligned,");
456 if (tcon
->ss_flags
& SSINFO_FLAGS_NO_SEEK_PENALTY
)
457 seq_puts(m
, " SSD,");
458 if (tcon
->ss_flags
& SSINFO_FLAGS_TRIM_ENABLED
)
459 seq_puts(m
, " TRIM-support,");
461 seq_printf(m
, "\tShare Flags: 0x%x", tcon
->share_flags
);
462 if (tcon
->perf_sector_size
)
463 seq_printf(m
, "\tOptimal sector size: 0x%x",
464 tcon
->perf_sector_size
);
468 smb2_print_stats(struct seq_file
*m
, struct cifs_tcon
*tcon
)
470 #ifdef CONFIG_CIFS_STATS
471 atomic_t
*sent
= tcon
->stats
.smb2_stats
.smb2_com_sent
;
472 atomic_t
*failed
= tcon
->stats
.smb2_stats
.smb2_com_failed
;
473 seq_printf(m
, "\nNegotiates: %d sent %d failed",
474 atomic_read(&sent
[SMB2_NEGOTIATE_HE
]),
475 atomic_read(&failed
[SMB2_NEGOTIATE_HE
]));
476 seq_printf(m
, "\nSessionSetups: %d sent %d failed",
477 atomic_read(&sent
[SMB2_SESSION_SETUP_HE
]),
478 atomic_read(&failed
[SMB2_SESSION_SETUP_HE
]));
479 seq_printf(m
, "\nLogoffs: %d sent %d failed",
480 atomic_read(&sent
[SMB2_LOGOFF_HE
]),
481 atomic_read(&failed
[SMB2_LOGOFF_HE
]));
482 seq_printf(m
, "\nTreeConnects: %d sent %d failed",
483 atomic_read(&sent
[SMB2_TREE_CONNECT_HE
]),
484 atomic_read(&failed
[SMB2_TREE_CONNECT_HE
]));
485 seq_printf(m
, "\nTreeDisconnects: %d sent %d failed",
486 atomic_read(&sent
[SMB2_TREE_DISCONNECT_HE
]),
487 atomic_read(&failed
[SMB2_TREE_DISCONNECT_HE
]));
488 seq_printf(m
, "\nCreates: %d sent %d failed",
489 atomic_read(&sent
[SMB2_CREATE_HE
]),
490 atomic_read(&failed
[SMB2_CREATE_HE
]));
491 seq_printf(m
, "\nCloses: %d sent %d failed",
492 atomic_read(&sent
[SMB2_CLOSE_HE
]),
493 atomic_read(&failed
[SMB2_CLOSE_HE
]));
494 seq_printf(m
, "\nFlushes: %d sent %d failed",
495 atomic_read(&sent
[SMB2_FLUSH_HE
]),
496 atomic_read(&failed
[SMB2_FLUSH_HE
]));
497 seq_printf(m
, "\nReads: %d sent %d failed",
498 atomic_read(&sent
[SMB2_READ_HE
]),
499 atomic_read(&failed
[SMB2_READ_HE
]));
500 seq_printf(m
, "\nWrites: %d sent %d failed",
501 atomic_read(&sent
[SMB2_WRITE_HE
]),
502 atomic_read(&failed
[SMB2_WRITE_HE
]));
503 seq_printf(m
, "\nLocks: %d sent %d failed",
504 atomic_read(&sent
[SMB2_LOCK_HE
]),
505 atomic_read(&failed
[SMB2_LOCK_HE
]));
506 seq_printf(m
, "\nIOCTLs: %d sent %d failed",
507 atomic_read(&sent
[SMB2_IOCTL_HE
]),
508 atomic_read(&failed
[SMB2_IOCTL_HE
]));
509 seq_printf(m
, "\nCancels: %d sent %d failed",
510 atomic_read(&sent
[SMB2_CANCEL_HE
]),
511 atomic_read(&failed
[SMB2_CANCEL_HE
]));
512 seq_printf(m
, "\nEchos: %d sent %d failed",
513 atomic_read(&sent
[SMB2_ECHO_HE
]),
514 atomic_read(&failed
[SMB2_ECHO_HE
]));
515 seq_printf(m
, "\nQueryDirectories: %d sent %d failed",
516 atomic_read(&sent
[SMB2_QUERY_DIRECTORY_HE
]),
517 atomic_read(&failed
[SMB2_QUERY_DIRECTORY_HE
]));
518 seq_printf(m
, "\nChangeNotifies: %d sent %d failed",
519 atomic_read(&sent
[SMB2_CHANGE_NOTIFY_HE
]),
520 atomic_read(&failed
[SMB2_CHANGE_NOTIFY_HE
]));
521 seq_printf(m
, "\nQueryInfos: %d sent %d failed",
522 atomic_read(&sent
[SMB2_QUERY_INFO_HE
]),
523 atomic_read(&failed
[SMB2_QUERY_INFO_HE
]));
524 seq_printf(m
, "\nSetInfos: %d sent %d failed",
525 atomic_read(&sent
[SMB2_SET_INFO_HE
]),
526 atomic_read(&failed
[SMB2_SET_INFO_HE
]));
527 seq_printf(m
, "\nOplockBreaks: %d sent %d failed",
528 atomic_read(&sent
[SMB2_OPLOCK_BREAK_HE
]),
529 atomic_read(&failed
[SMB2_OPLOCK_BREAK_HE
]));
534 smb2_set_fid(struct cifsFileInfo
*cfile
, struct cifs_fid
*fid
, __u32 oplock
)
536 struct cifsInodeInfo
*cinode
= CIFS_I(d_inode(cfile
->dentry
));
537 struct TCP_Server_Info
*server
= tlink_tcon(cfile
->tlink
)->ses
->server
;
539 cfile
->fid
.persistent_fid
= fid
->persistent_fid
;
540 cfile
->fid
.volatile_fid
= fid
->volatile_fid
;
541 server
->ops
->set_oplock_level(cinode
, oplock
, fid
->epoch
,
543 cinode
->can_cache_brlcks
= CIFS_CACHE_WRITE(cinode
);
547 smb2_close_file(const unsigned int xid
, struct cifs_tcon
*tcon
,
548 struct cifs_fid
*fid
)
550 SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
554 SMB2_request_res_key(const unsigned int xid
, struct cifs_tcon
*tcon
,
555 u64 persistent_fid
, u64 volatile_fid
,
556 struct copychunk_ioctl
*pcchunk
)
559 unsigned int ret_data_len
;
560 struct resume_key_req
*res_key
;
562 rc
= SMB2_ioctl(xid
, tcon
, persistent_fid
, volatile_fid
,
563 FSCTL_SRV_REQUEST_RESUME_KEY
, true /* is_fsctl */,
564 NULL
, 0 /* no input */,
565 (char **)&res_key
, &ret_data_len
);
568 cifs_dbg(VFS
, "refcpy ioctl error %d getting resume key\n", rc
);
569 goto req_res_key_exit
;
571 if (ret_data_len
< sizeof(struct resume_key_req
)) {
572 cifs_dbg(VFS
, "Invalid refcopy resume key length\n");
574 goto req_res_key_exit
;
576 memcpy(pcchunk
->SourceKey
, res_key
->ResumeKey
, COPY_CHUNK_RES_KEY_SIZE
);
584 smb2_clone_range(const unsigned int xid
,
585 struct cifsFileInfo
*srcfile
,
586 struct cifsFileInfo
*trgtfile
, u64 src_off
,
587 u64 len
, u64 dest_off
)
590 unsigned int ret_data_len
;
591 struct copychunk_ioctl
*pcchunk
;
592 struct copychunk_ioctl_rsp
*retbuf
= NULL
;
593 struct cifs_tcon
*tcon
;
594 int chunks_copied
= 0;
595 bool chunk_sizes_updated
= false;
597 pcchunk
= kmalloc(sizeof(struct copychunk_ioctl
), GFP_KERNEL
);
602 cifs_dbg(FYI
, "in smb2_clone_range - about to call request res key\n");
603 /* Request a key from the server to identify the source of the copy */
604 rc
= SMB2_request_res_key(xid
, tlink_tcon(srcfile
->tlink
),
605 srcfile
->fid
.persistent_fid
,
606 srcfile
->fid
.volatile_fid
, pcchunk
);
608 /* Note: request_res_key sets res_key null only if rc !=0 */
612 /* For now array only one chunk long, will make more flexible later */
613 pcchunk
->ChunkCount
= cpu_to_le32(1);
614 pcchunk
->Reserved
= 0;
615 pcchunk
->Reserved2
= 0;
617 tcon
= tlink_tcon(trgtfile
->tlink
);
620 pcchunk
->SourceOffset
= cpu_to_le64(src_off
);
621 pcchunk
->TargetOffset
= cpu_to_le64(dest_off
);
623 cpu_to_le32(min_t(u32
, len
, tcon
->max_bytes_chunk
));
625 /* Request server copy to target from src identified by key */
626 rc
= SMB2_ioctl(xid
, tcon
, trgtfile
->fid
.persistent_fid
,
627 trgtfile
->fid
.volatile_fid
, FSCTL_SRV_COPYCHUNK_WRITE
,
628 true /* is_fsctl */, (char *)pcchunk
,
629 sizeof(struct copychunk_ioctl
), (char **)&retbuf
,
633 sizeof(struct copychunk_ioctl_rsp
)) {
634 cifs_dbg(VFS
, "invalid cchunk response size\n");
638 if (retbuf
->TotalBytesWritten
== 0) {
639 cifs_dbg(FYI
, "no bytes copied\n");
644 * Check if server claimed to write more than we asked
646 if (le32_to_cpu(retbuf
->TotalBytesWritten
) >
647 le32_to_cpu(pcchunk
->Length
)) {
648 cifs_dbg(VFS
, "invalid copy chunk response\n");
652 if (le32_to_cpu(retbuf
->ChunksWritten
) != 1) {
653 cifs_dbg(VFS
, "invalid num chunks written\n");
659 src_off
+= le32_to_cpu(retbuf
->TotalBytesWritten
);
660 dest_off
+= le32_to_cpu(retbuf
->TotalBytesWritten
);
661 len
-= le32_to_cpu(retbuf
->TotalBytesWritten
);
663 cifs_dbg(FYI
, "Chunks %d PartialChunk %d Total %d\n",
664 le32_to_cpu(retbuf
->ChunksWritten
),
665 le32_to_cpu(retbuf
->ChunkBytesWritten
),
666 le32_to_cpu(retbuf
->TotalBytesWritten
));
667 } else if (rc
== -EINVAL
) {
668 if (ret_data_len
!= sizeof(struct copychunk_ioctl_rsp
))
671 cifs_dbg(FYI
, "MaxChunks %d BytesChunk %d MaxCopy %d\n",
672 le32_to_cpu(retbuf
->ChunksWritten
),
673 le32_to_cpu(retbuf
->ChunkBytesWritten
),
674 le32_to_cpu(retbuf
->TotalBytesWritten
));
677 * Check if this is the first request using these sizes,
678 * (ie check if copy succeed once with original sizes
679 * and check if the server gave us different sizes after
680 * we already updated max sizes on previous request).
681 * if not then why is the server returning an error now
683 if ((chunks_copied
!= 0) || chunk_sizes_updated
)
686 /* Check that server is not asking us to grow size */
687 if (le32_to_cpu(retbuf
->ChunkBytesWritten
) <
688 tcon
->max_bytes_chunk
)
689 tcon
->max_bytes_chunk
=
690 le32_to_cpu(retbuf
->ChunkBytesWritten
);
692 goto cchunk_out
; /* server gave us bogus size */
694 /* No need to change MaxChunks since already set to 1 */
695 chunk_sizes_updated
= true;
706 smb2_flush_file(const unsigned int xid
, struct cifs_tcon
*tcon
,
707 struct cifs_fid
*fid
)
709 return SMB2_flush(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
713 smb2_read_data_offset(char *buf
)
715 struct smb2_read_rsp
*rsp
= (struct smb2_read_rsp
*)buf
;
716 return rsp
->DataOffset
;
720 smb2_read_data_length(char *buf
)
722 struct smb2_read_rsp
*rsp
= (struct smb2_read_rsp
*)buf
;
723 return le32_to_cpu(rsp
->DataLength
);
728 smb2_sync_read(const unsigned int xid
, struct cifs_fid
*pfid
,
729 struct cifs_io_parms
*parms
, unsigned int *bytes_read
,
730 char **buf
, int *buf_type
)
732 parms
->persistent_fid
= pfid
->persistent_fid
;
733 parms
->volatile_fid
= pfid
->volatile_fid
;
734 return SMB2_read(xid
, parms
, bytes_read
, buf
, buf_type
);
738 smb2_sync_write(const unsigned int xid
, struct cifs_fid
*pfid
,
739 struct cifs_io_parms
*parms
, unsigned int *written
,
740 struct kvec
*iov
, unsigned long nr_segs
)
743 parms
->persistent_fid
= pfid
->persistent_fid
;
744 parms
->volatile_fid
= pfid
->volatile_fid
;
745 return SMB2_write(xid
, parms
, written
, iov
, nr_segs
);
748 /* Set or clear the SPARSE_FILE attribute based on value passed in setsparse */
749 static bool smb2_set_sparse(const unsigned int xid
, struct cifs_tcon
*tcon
,
750 struct cifsFileInfo
*cfile
, struct inode
*inode
, __u8 setsparse
)
752 struct cifsInodeInfo
*cifsi
;
755 cifsi
= CIFS_I(inode
);
757 /* if file already sparse don't bother setting sparse again */
758 if ((cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) && setsparse
)
759 return true; /* already sparse */
761 if (!(cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) && !setsparse
)
762 return true; /* already not sparse */
765 * Can't check for sparse support on share the usual way via the
766 * FS attribute info (FILE_SUPPORTS_SPARSE_FILES) on the share
767 * since Samba server doesn't set the flag on the share, yet
768 * supports the set sparse FSCTL and returns sparse correctly
769 * in the file attributes. If we fail setting sparse though we
770 * mark that server does not support sparse files for this share
771 * to avoid repeatedly sending the unsupported fsctl to server
772 * if the file is repeatedly extended.
774 if (tcon
->broken_sparse_sup
)
777 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
778 cfile
->fid
.volatile_fid
, FSCTL_SET_SPARSE
,
779 true /* is_fctl */, &setsparse
, 1, NULL
, NULL
);
781 tcon
->broken_sparse_sup
= true;
782 cifs_dbg(FYI
, "set sparse rc = %d\n", rc
);
787 cifsi
->cifsAttrs
|= FILE_ATTRIBUTE_SPARSE_FILE
;
789 cifsi
->cifsAttrs
&= (~FILE_ATTRIBUTE_SPARSE_FILE
);
795 smb2_set_file_size(const unsigned int xid
, struct cifs_tcon
*tcon
,
796 struct cifsFileInfo
*cfile
, __u64 size
, bool set_alloc
)
798 __le64 eof
= cpu_to_le64(size
);
802 * If extending file more than one page make sparse. Many Linux fs
803 * make files sparse by default when extending via ftruncate
805 inode
= d_inode(cfile
->dentry
);
807 if (!set_alloc
&& (size
> inode
->i_size
+ 8192)) {
810 /* whether set sparse succeeds or not, extend the file */
811 smb2_set_sparse(xid
, tcon
, cfile
, inode
, set_sparse
);
814 return SMB2_set_eof(xid
, tcon
, cfile
->fid
.persistent_fid
,
815 cfile
->fid
.volatile_fid
, cfile
->pid
, &eof
, false);
819 smb2_duplicate_extents(const unsigned int xid
,
820 struct cifsFileInfo
*srcfile
,
821 struct cifsFileInfo
*trgtfile
, u64 src_off
,
822 u64 len
, u64 dest_off
)
825 unsigned int ret_data_len
;
827 struct duplicate_extents_to_file dup_ext_buf
;
828 struct cifs_tcon
*tcon
= tlink_tcon(trgtfile
->tlink
);
830 /* server fileays advertise duplicate extent support with this flag */
831 if ((le32_to_cpu(tcon
->fsAttrInfo
.Attributes
) &
832 FILE_SUPPORTS_BLOCK_REFCOUNTING
) == 0)
835 dup_ext_buf
.VolatileFileHandle
= srcfile
->fid
.volatile_fid
;
836 dup_ext_buf
.PersistentFileHandle
= srcfile
->fid
.persistent_fid
;
837 dup_ext_buf
.SourceFileOffset
= cpu_to_le64(src_off
);
838 dup_ext_buf
.TargetFileOffset
= cpu_to_le64(dest_off
);
839 dup_ext_buf
.ByteCount
= cpu_to_le64(len
);
840 cifs_dbg(FYI
, "duplicate extents: src off %lld dst off %lld len %lld",
841 src_off
, dest_off
, len
);
843 rc
= smb2_set_file_size(xid
, tcon
, trgtfile
, dest_off
+ len
, false);
845 goto duplicate_extents_out
;
847 rc
= SMB2_ioctl(xid
, tcon
, trgtfile
->fid
.persistent_fid
,
848 trgtfile
->fid
.volatile_fid
,
849 FSCTL_DUPLICATE_EXTENTS_TO_FILE
,
850 true /* is_fsctl */, (char *)&dup_ext_buf
,
851 sizeof(struct duplicate_extents_to_file
),
855 if (ret_data_len
> 0)
856 cifs_dbg(FYI
, "non-zero response length in duplicate extents");
858 duplicate_extents_out
:
863 smb2_set_compression(const unsigned int xid
, struct cifs_tcon
*tcon
,
864 struct cifsFileInfo
*cfile
)
866 return SMB2_set_compression(xid
, tcon
, cfile
->fid
.persistent_fid
,
867 cfile
->fid
.volatile_fid
);
871 smb3_set_integrity(const unsigned int xid
, struct cifs_tcon
*tcon
,
872 struct cifsFileInfo
*cfile
)
874 struct fsctl_set_integrity_information_req integr_info
;
876 unsigned int ret_data_len
;
878 integr_info
.ChecksumAlgorithm
= cpu_to_le16(CHECKSUM_TYPE_UNCHANGED
);
879 integr_info
.Flags
= 0;
880 integr_info
.Reserved
= 0;
882 return SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
883 cfile
->fid
.volatile_fid
,
884 FSCTL_SET_INTEGRITY_INFORMATION
,
885 true /* is_fsctl */, (char *)&integr_info
,
886 sizeof(struct fsctl_set_integrity_information_req
),
893 smb2_query_dir_first(const unsigned int xid
, struct cifs_tcon
*tcon
,
894 const char *path
, struct cifs_sb_info
*cifs_sb
,
895 struct cifs_fid
*fid
, __u16 search_flags
,
896 struct cifs_search_info
*srch_inf
)
900 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
901 struct cifs_open_parms oparms
;
903 utf16_path
= cifs_convert_path_to_utf16(path
, cifs_sb
);
908 oparms
.desired_access
= FILE_READ_ATTRIBUTES
| FILE_READ_DATA
;
909 oparms
.disposition
= FILE_OPEN
;
910 oparms
.create_options
= 0;
912 oparms
.reconnect
= false;
914 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, NULL
);
917 cifs_dbg(VFS
, "open dir failed\n");
921 srch_inf
->entries_in_buffer
= 0;
922 srch_inf
->index_of_last_entry
= 0;
924 rc
= SMB2_query_directory(xid
, tcon
, fid
->persistent_fid
,
925 fid
->volatile_fid
, 0, srch_inf
);
927 cifs_dbg(VFS
, "query directory failed\n");
928 SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
934 smb2_query_dir_next(const unsigned int xid
, struct cifs_tcon
*tcon
,
935 struct cifs_fid
*fid
, __u16 search_flags
,
936 struct cifs_search_info
*srch_inf
)
938 return SMB2_query_directory(xid
, tcon
, fid
->persistent_fid
,
939 fid
->volatile_fid
, 0, srch_inf
);
943 smb2_close_dir(const unsigned int xid
, struct cifs_tcon
*tcon
,
944 struct cifs_fid
*fid
)
946 return SMB2_close(xid
, tcon
, fid
->persistent_fid
, fid
->volatile_fid
);
950 * If we negotiate SMB2 protocol and get STATUS_PENDING - update
951 * the number of credits and return true. Otherwise - return false.
954 smb2_is_status_pending(char *buf
, struct TCP_Server_Info
*server
, int length
)
956 struct smb2_hdr
*hdr
= (struct smb2_hdr
*)buf
;
958 if (hdr
->Status
!= STATUS_PENDING
)
962 spin_lock(&server
->req_lock
);
963 server
->credits
+= le16_to_cpu(hdr
->CreditRequest
);
964 spin_unlock(&server
->req_lock
);
965 wake_up(&server
->request_q
);
972 smb2_oplock_response(struct cifs_tcon
*tcon
, struct cifs_fid
*fid
,
973 struct cifsInodeInfo
*cinode
)
975 if (tcon
->ses
->server
->capabilities
& SMB2_GLOBAL_CAP_LEASING
)
976 return SMB2_lease_break(0, tcon
, cinode
->lease_key
,
977 smb2_get_lease_state(cinode
));
979 return SMB2_oplock_break(0, tcon
, fid
->persistent_fid
,
981 CIFS_CACHE_READ(cinode
) ? 1 : 0);
985 smb2_queryfs(const unsigned int xid
, struct cifs_tcon
*tcon
,
989 __le16 srch_path
= 0; /* Null - open root of share */
990 u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
991 struct cifs_open_parms oparms
;
995 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
996 oparms
.disposition
= FILE_OPEN
;
997 oparms
.create_options
= 0;
999 oparms
.reconnect
= false;
1001 rc
= SMB2_open(xid
, &oparms
, &srch_path
, &oplock
, NULL
, NULL
);
1004 buf
->f_type
= SMB2_MAGIC_NUMBER
;
1005 rc
= SMB2_QFS_info(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
,
1007 SMB2_close(xid
, tcon
, fid
.persistent_fid
, fid
.volatile_fid
);
1012 smb2_compare_fids(struct cifsFileInfo
*ob1
, struct cifsFileInfo
*ob2
)
1014 return ob1
->fid
.persistent_fid
== ob2
->fid
.persistent_fid
&&
1015 ob1
->fid
.volatile_fid
== ob2
->fid
.volatile_fid
;
1019 smb2_mand_lock(const unsigned int xid
, struct cifsFileInfo
*cfile
, __u64 offset
,
1020 __u64 length
, __u32 type
, int lock
, int unlock
, bool wait
)
1022 if (unlock
&& !lock
)
1023 type
= SMB2_LOCKFLAG_UNLOCK
;
1024 return SMB2_lock(xid
, tlink_tcon(cfile
->tlink
),
1025 cfile
->fid
.persistent_fid
, cfile
->fid
.volatile_fid
,
1026 current
->tgid
, length
, offset
, type
, wait
);
1030 smb2_get_lease_key(struct inode
*inode
, struct cifs_fid
*fid
)
1032 memcpy(fid
->lease_key
, CIFS_I(inode
)->lease_key
, SMB2_LEASE_KEY_SIZE
);
1036 smb2_set_lease_key(struct inode
*inode
, struct cifs_fid
*fid
)
1038 memcpy(CIFS_I(inode
)->lease_key
, fid
->lease_key
, SMB2_LEASE_KEY_SIZE
);
1042 smb2_new_lease_key(struct cifs_fid
*fid
)
1044 get_random_bytes(fid
->lease_key
, SMB2_LEASE_KEY_SIZE
);
1047 #define SMB2_SYMLINK_STRUCT_SIZE \
1048 (sizeof(struct smb2_err_rsp) - 1 + sizeof(struct smb2_symlink_err_rsp))
1051 smb2_query_symlink(const unsigned int xid
, struct cifs_tcon
*tcon
,
1052 const char *full_path
, char **target_path
,
1053 struct cifs_sb_info
*cifs_sb
)
1057 __u8 oplock
= SMB2_OPLOCK_LEVEL_NONE
;
1058 struct cifs_open_parms oparms
;
1059 struct cifs_fid fid
;
1060 struct smb2_err_rsp
*err_buf
= NULL
;
1061 struct smb2_symlink_err_rsp
*symlink
;
1062 unsigned int sub_len
;
1063 unsigned int sub_offset
;
1064 unsigned int print_len
;
1065 unsigned int print_offset
;
1067 cifs_dbg(FYI
, "%s: path: %s\n", __func__
, full_path
);
1069 utf16_path
= cifs_convert_path_to_utf16(full_path
, cifs_sb
);
1074 oparms
.desired_access
= FILE_READ_ATTRIBUTES
;
1075 oparms
.disposition
= FILE_OPEN
;
1076 oparms
.create_options
= 0;
1078 oparms
.reconnect
= false;
1080 rc
= SMB2_open(xid
, &oparms
, utf16_path
, &oplock
, NULL
, &err_buf
);
1082 if (!rc
|| !err_buf
) {
1087 if (le32_to_cpu(err_buf
->ByteCount
) < sizeof(struct smb2_symlink_err_rsp
) ||
1088 get_rfc1002_length(err_buf
) + 4 < SMB2_SYMLINK_STRUCT_SIZE
) {
1093 /* open must fail on symlink - reset rc */
1095 symlink
= (struct smb2_symlink_err_rsp
*)err_buf
->ErrorData
;
1096 sub_len
= le16_to_cpu(symlink
->SubstituteNameLength
);
1097 sub_offset
= le16_to_cpu(symlink
->SubstituteNameOffset
);
1098 print_len
= le16_to_cpu(symlink
->PrintNameLength
);
1099 print_offset
= le16_to_cpu(symlink
->PrintNameOffset
);
1101 if (get_rfc1002_length(err_buf
) + 4 <
1102 SMB2_SYMLINK_STRUCT_SIZE
+ sub_offset
+ sub_len
) {
1107 if (get_rfc1002_length(err_buf
) + 4 <
1108 SMB2_SYMLINK_STRUCT_SIZE
+ print_offset
+ print_len
) {
1113 *target_path
= cifs_strndup_from_utf16(
1114 (char *)symlink
->PathBuffer
+ sub_offset
,
1115 sub_len
, true, cifs_sb
->local_nls
);
1116 if (!(*target_path
)) {
1120 convert_delimiter(*target_path
, '/');
1121 cifs_dbg(FYI
, "%s: target path: %s\n", __func__
, *target_path
);
1126 static long smb3_zero_range(struct file
*file
, struct cifs_tcon
*tcon
,
1127 loff_t offset
, loff_t len
, bool keep_size
)
1129 struct inode
*inode
;
1130 struct cifsInodeInfo
*cifsi
;
1131 struct cifsFileInfo
*cfile
= file
->private_data
;
1132 struct file_zero_data_information fsctl_buf
;
1138 inode
= d_inode(cfile
->dentry
);
1139 cifsi
= CIFS_I(inode
);
1141 /* if file not oplocked can't be sure whether asking to extend size */
1142 if (!CIFS_CACHE_READ(cifsi
))
1143 if (keep_size
== false)
1147 * Must check if file sparse since fallocate -z (zero range) assumes
1148 * non-sparse allocation
1150 if (!(cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
))
1154 * need to make sure we are not asked to extend the file since the SMB3
1155 * fsctl does not change the file size. In the future we could change
1156 * this to zero the first part of the range then set the file size
1157 * which for a non sparse file would zero the newly extended range
1159 if (keep_size
== false)
1160 if (i_size_read(inode
) < offset
+ len
)
1163 cifs_dbg(FYI
, "offset %lld len %lld", offset
, len
);
1165 fsctl_buf
.FileOffset
= cpu_to_le64(offset
);
1166 fsctl_buf
.BeyondFinalZero
= cpu_to_le64(offset
+ len
);
1168 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
1169 cfile
->fid
.volatile_fid
, FSCTL_SET_ZERO_DATA
,
1170 true /* is_fctl */, (char *)&fsctl_buf
,
1171 sizeof(struct file_zero_data_information
), NULL
, NULL
);
1176 static long smb3_punch_hole(struct file
*file
, struct cifs_tcon
*tcon
,
1177 loff_t offset
, loff_t len
)
1179 struct inode
*inode
;
1180 struct cifsInodeInfo
*cifsi
;
1181 struct cifsFileInfo
*cfile
= file
->private_data
;
1182 struct file_zero_data_information fsctl_buf
;
1185 __u8 set_sparse
= 1;
1189 inode
= d_inode(cfile
->dentry
);
1190 cifsi
= CIFS_I(inode
);
1192 /* Need to make file sparse, if not already, before freeing range. */
1193 /* Consider adding equivalent for compressed since it could also work */
1194 if (!smb2_set_sparse(xid
, tcon
, cfile
, inode
, set_sparse
))
1197 cifs_dbg(FYI
, "offset %lld len %lld", offset
, len
);
1199 fsctl_buf
.FileOffset
= cpu_to_le64(offset
);
1200 fsctl_buf
.BeyondFinalZero
= cpu_to_le64(offset
+ len
);
1202 rc
= SMB2_ioctl(xid
, tcon
, cfile
->fid
.persistent_fid
,
1203 cfile
->fid
.volatile_fid
, FSCTL_SET_ZERO_DATA
,
1204 true /* is_fctl */, (char *)&fsctl_buf
,
1205 sizeof(struct file_zero_data_information
), NULL
, NULL
);
1210 static long smb3_simple_falloc(struct file
*file
, struct cifs_tcon
*tcon
,
1211 loff_t off
, loff_t len
, bool keep_size
)
1213 struct inode
*inode
;
1214 struct cifsInodeInfo
*cifsi
;
1215 struct cifsFileInfo
*cfile
= file
->private_data
;
1216 long rc
= -EOPNOTSUPP
;
1221 inode
= d_inode(cfile
->dentry
);
1222 cifsi
= CIFS_I(inode
);
1224 /* if file not oplocked can't be sure whether asking to extend size */
1225 if (!CIFS_CACHE_READ(cifsi
))
1226 if (keep_size
== false)
1230 * Files are non-sparse by default so falloc may be a no-op
1231 * Must check if file sparse. If not sparse, and not extending
1232 * then no need to do anything since file already allocated
1234 if ((cifsi
->cifsAttrs
& FILE_ATTRIBUTE_SPARSE_FILE
) == 0) {
1235 if (keep_size
== true)
1237 /* check if extending file */
1238 else if (i_size_read(inode
) >= off
+ len
)
1239 /* not extending file and already not sparse */
1241 /* BB: in future add else clause to extend file */
1246 if ((keep_size
== true) || (i_size_read(inode
) >= off
+ len
)) {
1248 * Check if falloc starts within first few pages of file
1249 * and ends within a few pages of the end of file to
1250 * ensure that most of file is being forced to be
1251 * fallocated now. If so then setting whole file sparse
1252 * ie potentially making a few extra pages at the beginning
1253 * or end of the file non-sparse via set_sparse is harmless.
1255 if ((off
> 8192) || (off
+ len
+ 8192 < i_size_read(inode
)))
1258 rc
= smb2_set_sparse(xid
, tcon
, cfile
, inode
, false);
1260 /* BB: else ... in future add code to extend file and set sparse */
1268 static long smb3_fallocate(struct file
*file
, struct cifs_tcon
*tcon
, int mode
,
1269 loff_t off
, loff_t len
)
1271 /* KEEP_SIZE already checked for by do_fallocate */
1272 if (mode
& FALLOC_FL_PUNCH_HOLE
)
1273 return smb3_punch_hole(file
, tcon
, off
, len
);
1274 else if (mode
& FALLOC_FL_ZERO_RANGE
) {
1275 if (mode
& FALLOC_FL_KEEP_SIZE
)
1276 return smb3_zero_range(file
, tcon
, off
, len
, true);
1277 return smb3_zero_range(file
, tcon
, off
, len
, false);
1278 } else if (mode
== FALLOC_FL_KEEP_SIZE
)
1279 return smb3_simple_falloc(file
, tcon
, off
, len
, true);
1281 return smb3_simple_falloc(file
, tcon
, off
, len
, false);
1287 smb2_downgrade_oplock(struct TCP_Server_Info
*server
,
1288 struct cifsInodeInfo
*cinode
, bool set_level2
)
1291 server
->ops
->set_oplock_level(cinode
, SMB2_OPLOCK_LEVEL_II
,
1294 server
->ops
->set_oplock_level(cinode
, 0, 0, NULL
);
1298 smb2_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
1299 unsigned int epoch
, bool *purge_cache
)
1302 if (oplock
== SMB2_OPLOCK_LEVEL_NOCHANGE
)
1304 if (oplock
== SMB2_OPLOCK_LEVEL_BATCH
) {
1305 cinode
->oplock
= CIFS_CACHE_RHW_FLG
;
1306 cifs_dbg(FYI
, "Batch Oplock granted on inode %p\n",
1307 &cinode
->vfs_inode
);
1308 } else if (oplock
== SMB2_OPLOCK_LEVEL_EXCLUSIVE
) {
1309 cinode
->oplock
= CIFS_CACHE_RW_FLG
;
1310 cifs_dbg(FYI
, "Exclusive Oplock granted on inode %p\n",
1311 &cinode
->vfs_inode
);
1312 } else if (oplock
== SMB2_OPLOCK_LEVEL_II
) {
1313 cinode
->oplock
= CIFS_CACHE_READ_FLG
;
1314 cifs_dbg(FYI
, "Level II Oplock granted on inode %p\n",
1315 &cinode
->vfs_inode
);
1321 smb21_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
1322 unsigned int epoch
, bool *purge_cache
)
1324 char message
[5] = {0};
1327 if (oplock
== SMB2_OPLOCK_LEVEL_NOCHANGE
)
1331 if (oplock
& SMB2_LEASE_READ_CACHING_HE
) {
1332 cinode
->oplock
|= CIFS_CACHE_READ_FLG
;
1333 strcat(message
, "R");
1335 if (oplock
& SMB2_LEASE_HANDLE_CACHING_HE
) {
1336 cinode
->oplock
|= CIFS_CACHE_HANDLE_FLG
;
1337 strcat(message
, "H");
1339 if (oplock
& SMB2_LEASE_WRITE_CACHING_HE
) {
1340 cinode
->oplock
|= CIFS_CACHE_WRITE_FLG
;
1341 strcat(message
, "W");
1343 if (!cinode
->oplock
)
1344 strcat(message
, "None");
1345 cifs_dbg(FYI
, "%s Lease granted on inode %p\n", message
,
1346 &cinode
->vfs_inode
);
1350 smb3_set_oplock_level(struct cifsInodeInfo
*cinode
, __u32 oplock
,
1351 unsigned int epoch
, bool *purge_cache
)
1353 unsigned int old_oplock
= cinode
->oplock
;
1355 smb21_set_oplock_level(cinode
, oplock
, epoch
, purge_cache
);
1358 *purge_cache
= false;
1359 if (old_oplock
== CIFS_CACHE_READ_FLG
) {
1360 if (cinode
->oplock
== CIFS_CACHE_READ_FLG
&&
1361 (epoch
- cinode
->epoch
> 0))
1362 *purge_cache
= true;
1363 else if (cinode
->oplock
== CIFS_CACHE_RH_FLG
&&
1364 (epoch
- cinode
->epoch
> 1))
1365 *purge_cache
= true;
1366 else if (cinode
->oplock
== CIFS_CACHE_RHW_FLG
&&
1367 (epoch
- cinode
->epoch
> 1))
1368 *purge_cache
= true;
1369 else if (cinode
->oplock
== 0 &&
1370 (epoch
- cinode
->epoch
> 0))
1371 *purge_cache
= true;
1372 } else if (old_oplock
== CIFS_CACHE_RH_FLG
) {
1373 if (cinode
->oplock
== CIFS_CACHE_RH_FLG
&&
1374 (epoch
- cinode
->epoch
> 0))
1375 *purge_cache
= true;
1376 else if (cinode
->oplock
== CIFS_CACHE_RHW_FLG
&&
1377 (epoch
- cinode
->epoch
> 1))
1378 *purge_cache
= true;
1380 cinode
->epoch
= epoch
;
1385 smb2_is_read_op(__u32 oplock
)
1387 return oplock
== SMB2_OPLOCK_LEVEL_II
;
1391 smb21_is_read_op(__u32 oplock
)
1393 return (oplock
& SMB2_LEASE_READ_CACHING_HE
) &&
1394 !(oplock
& SMB2_LEASE_WRITE_CACHING_HE
);
1398 map_oplock_to_lease(u8 oplock
)
1400 if (oplock
== SMB2_OPLOCK_LEVEL_EXCLUSIVE
)
1401 return SMB2_LEASE_WRITE_CACHING
| SMB2_LEASE_READ_CACHING
;
1402 else if (oplock
== SMB2_OPLOCK_LEVEL_II
)
1403 return SMB2_LEASE_READ_CACHING
;
1404 else if (oplock
== SMB2_OPLOCK_LEVEL_BATCH
)
1405 return SMB2_LEASE_HANDLE_CACHING
| SMB2_LEASE_READ_CACHING
|
1406 SMB2_LEASE_WRITE_CACHING
;
1411 smb2_create_lease_buf(u8
*lease_key
, u8 oplock
)
1413 struct create_lease
*buf
;
1415 buf
= kzalloc(sizeof(struct create_lease
), GFP_KERNEL
);
1419 buf
->lcontext
.LeaseKeyLow
= cpu_to_le64(*((u64
*)lease_key
));
1420 buf
->lcontext
.LeaseKeyHigh
= cpu_to_le64(*((u64
*)(lease_key
+ 8)));
1421 buf
->lcontext
.LeaseState
= map_oplock_to_lease(oplock
);
1423 buf
->ccontext
.DataOffset
= cpu_to_le16(offsetof
1424 (struct create_lease
, lcontext
));
1425 buf
->ccontext
.DataLength
= cpu_to_le32(sizeof(struct lease_context
));
1426 buf
->ccontext
.NameOffset
= cpu_to_le16(offsetof
1427 (struct create_lease
, Name
));
1428 buf
->ccontext
.NameLength
= cpu_to_le16(4);
1429 /* SMB2_CREATE_REQUEST_LEASE is "RqLs" */
1438 smb3_create_lease_buf(u8
*lease_key
, u8 oplock
)
1440 struct create_lease_v2
*buf
;
1442 buf
= kzalloc(sizeof(struct create_lease_v2
), GFP_KERNEL
);
1446 buf
->lcontext
.LeaseKeyLow
= cpu_to_le64(*((u64
*)lease_key
));
1447 buf
->lcontext
.LeaseKeyHigh
= cpu_to_le64(*((u64
*)(lease_key
+ 8)));
1448 buf
->lcontext
.LeaseState
= map_oplock_to_lease(oplock
);
1450 buf
->ccontext
.DataOffset
= cpu_to_le16(offsetof
1451 (struct create_lease_v2
, lcontext
));
1452 buf
->ccontext
.DataLength
= cpu_to_le32(sizeof(struct lease_context_v2
));
1453 buf
->ccontext
.NameOffset
= cpu_to_le16(offsetof
1454 (struct create_lease_v2
, Name
));
1455 buf
->ccontext
.NameLength
= cpu_to_le16(4);
1456 /* SMB2_CREATE_REQUEST_LEASE is "RqLs" */
1465 smb2_parse_lease_buf(void *buf
, unsigned int *epoch
)
1467 struct create_lease
*lc
= (struct create_lease
*)buf
;
1469 *epoch
= 0; /* not used */
1470 if (lc
->lcontext
.LeaseFlags
& SMB2_LEASE_FLAG_BREAK_IN_PROGRESS
)
1471 return SMB2_OPLOCK_LEVEL_NOCHANGE
;
1472 return le32_to_cpu(lc
->lcontext
.LeaseState
);
1476 smb3_parse_lease_buf(void *buf
, unsigned int *epoch
)
1478 struct create_lease_v2
*lc
= (struct create_lease_v2
*)buf
;
1480 *epoch
= le16_to_cpu(lc
->lcontext
.Epoch
);
1481 if (lc
->lcontext
.LeaseFlags
& SMB2_LEASE_FLAG_BREAK_IN_PROGRESS
)
1482 return SMB2_OPLOCK_LEVEL_NOCHANGE
;
1483 return le32_to_cpu(lc
->lcontext
.LeaseState
);
1487 smb2_wp_retry_size(struct inode
*inode
)
1489 return min_t(unsigned int, CIFS_SB(inode
->i_sb
)->wsize
,
1490 SMB2_MAX_BUFFER_SIZE
);
1494 smb2_dir_needs_close(struct cifsFileInfo
*cfile
)
1496 return !cfile
->invalidHandle
;
1499 struct smb_version_operations smb20_operations
= {
1500 .compare_fids
= smb2_compare_fids
,
1501 .setup_request
= smb2_setup_request
,
1502 .setup_async_request
= smb2_setup_async_request
,
1503 .check_receive
= smb2_check_receive
,
1504 .add_credits
= smb2_add_credits
,
1505 .set_credits
= smb2_set_credits
,
1506 .get_credits_field
= smb2_get_credits_field
,
1507 .get_credits
= smb2_get_credits
,
1508 .wait_mtu_credits
= cifs_wait_mtu_credits
,
1509 .get_next_mid
= smb2_get_next_mid
,
1510 .read_data_offset
= smb2_read_data_offset
,
1511 .read_data_length
= smb2_read_data_length
,
1512 .map_error
= map_smb2_to_linux_error
,
1513 .find_mid
= smb2_find_mid
,
1514 .check_message
= smb2_check_message
,
1515 .dump_detail
= smb2_dump_detail
,
1516 .clear_stats
= smb2_clear_stats
,
1517 .print_stats
= smb2_print_stats
,
1518 .is_oplock_break
= smb2_is_valid_oplock_break
,
1519 .downgrade_oplock
= smb2_downgrade_oplock
,
1520 .need_neg
= smb2_need_neg
,
1521 .negotiate
= smb2_negotiate
,
1522 .negotiate_wsize
= smb2_negotiate_wsize
,
1523 .negotiate_rsize
= smb2_negotiate_rsize
,
1524 .sess_setup
= SMB2_sess_setup
,
1525 .logoff
= SMB2_logoff
,
1526 .tree_connect
= SMB2_tcon
,
1527 .tree_disconnect
= SMB2_tdis
,
1528 .qfs_tcon
= smb2_qfs_tcon
,
1529 .is_path_accessible
= smb2_is_path_accessible
,
1530 .can_echo
= smb2_can_echo
,
1532 .query_path_info
= smb2_query_path_info
,
1533 .get_srv_inum
= smb2_get_srv_inum
,
1534 .query_file_info
= smb2_query_file_info
,
1535 .set_path_size
= smb2_set_path_size
,
1536 .set_file_size
= smb2_set_file_size
,
1537 .set_file_info
= smb2_set_file_info
,
1538 .set_compression
= smb2_set_compression
,
1539 .mkdir
= smb2_mkdir
,
1540 .mkdir_setinfo
= smb2_mkdir_setinfo
,
1541 .rmdir
= smb2_rmdir
,
1542 .unlink
= smb2_unlink
,
1543 .rename
= smb2_rename_path
,
1544 .create_hardlink
= smb2_create_hardlink
,
1545 .query_symlink
= smb2_query_symlink
,
1546 .query_mf_symlink
= smb3_query_mf_symlink
,
1547 .create_mf_symlink
= smb3_create_mf_symlink
,
1548 .open
= smb2_open_file
,
1549 .set_fid
= smb2_set_fid
,
1550 .close
= smb2_close_file
,
1551 .flush
= smb2_flush_file
,
1552 .async_readv
= smb2_async_readv
,
1553 .async_writev
= smb2_async_writev
,
1554 .sync_read
= smb2_sync_read
,
1555 .sync_write
= smb2_sync_write
,
1556 .query_dir_first
= smb2_query_dir_first
,
1557 .query_dir_next
= smb2_query_dir_next
,
1558 .close_dir
= smb2_close_dir
,
1559 .calc_smb_size
= smb2_calc_size
,
1560 .is_status_pending
= smb2_is_status_pending
,
1561 .oplock_response
= smb2_oplock_response
,
1562 .queryfs
= smb2_queryfs
,
1563 .mand_lock
= smb2_mand_lock
,
1564 .mand_unlock_range
= smb2_unlock_range
,
1565 .push_mand_locks
= smb2_push_mandatory_locks
,
1566 .get_lease_key
= smb2_get_lease_key
,
1567 .set_lease_key
= smb2_set_lease_key
,
1568 .new_lease_key
= smb2_new_lease_key
,
1569 .calc_signature
= smb2_calc_signature
,
1570 .is_read_op
= smb2_is_read_op
,
1571 .set_oplock_level
= smb2_set_oplock_level
,
1572 .create_lease_buf
= smb2_create_lease_buf
,
1573 .parse_lease_buf
= smb2_parse_lease_buf
,
1574 .clone_range
= smb2_clone_range
,
1575 .wp_retry_size
= smb2_wp_retry_size
,
1576 .dir_needs_close
= smb2_dir_needs_close
,
1579 struct smb_version_operations smb21_operations
= {
1580 .compare_fids
= smb2_compare_fids
,
1581 .setup_request
= smb2_setup_request
,
1582 .setup_async_request
= smb2_setup_async_request
,
1583 .check_receive
= smb2_check_receive
,
1584 .add_credits
= smb2_add_credits
,
1585 .set_credits
= smb2_set_credits
,
1586 .get_credits_field
= smb2_get_credits_field
,
1587 .get_credits
= smb2_get_credits
,
1588 .wait_mtu_credits
= smb2_wait_mtu_credits
,
1589 .get_next_mid
= smb2_get_next_mid
,
1590 .read_data_offset
= smb2_read_data_offset
,
1591 .read_data_length
= smb2_read_data_length
,
1592 .map_error
= map_smb2_to_linux_error
,
1593 .find_mid
= smb2_find_mid
,
1594 .check_message
= smb2_check_message
,
1595 .dump_detail
= smb2_dump_detail
,
1596 .clear_stats
= smb2_clear_stats
,
1597 .print_stats
= smb2_print_stats
,
1598 .is_oplock_break
= smb2_is_valid_oplock_break
,
1599 .downgrade_oplock
= smb2_downgrade_oplock
,
1600 .need_neg
= smb2_need_neg
,
1601 .negotiate
= smb2_negotiate
,
1602 .negotiate_wsize
= smb2_negotiate_wsize
,
1603 .negotiate_rsize
= smb2_negotiate_rsize
,
1604 .sess_setup
= SMB2_sess_setup
,
1605 .logoff
= SMB2_logoff
,
1606 .tree_connect
= SMB2_tcon
,
1607 .tree_disconnect
= SMB2_tdis
,
1608 .qfs_tcon
= smb2_qfs_tcon
,
1609 .is_path_accessible
= smb2_is_path_accessible
,
1610 .can_echo
= smb2_can_echo
,
1612 .query_path_info
= smb2_query_path_info
,
1613 .get_srv_inum
= smb2_get_srv_inum
,
1614 .query_file_info
= smb2_query_file_info
,
1615 .set_path_size
= smb2_set_path_size
,
1616 .set_file_size
= smb2_set_file_size
,
1617 .set_file_info
= smb2_set_file_info
,
1618 .set_compression
= smb2_set_compression
,
1619 .mkdir
= smb2_mkdir
,
1620 .mkdir_setinfo
= smb2_mkdir_setinfo
,
1621 .rmdir
= smb2_rmdir
,
1622 .unlink
= smb2_unlink
,
1623 .rename
= smb2_rename_path
,
1624 .create_hardlink
= smb2_create_hardlink
,
1625 .query_symlink
= smb2_query_symlink
,
1626 .query_mf_symlink
= smb3_query_mf_symlink
,
1627 .create_mf_symlink
= smb3_create_mf_symlink
,
1628 .open
= smb2_open_file
,
1629 .set_fid
= smb2_set_fid
,
1630 .close
= smb2_close_file
,
1631 .flush
= smb2_flush_file
,
1632 .async_readv
= smb2_async_readv
,
1633 .async_writev
= smb2_async_writev
,
1634 .sync_read
= smb2_sync_read
,
1635 .sync_write
= smb2_sync_write
,
1636 .query_dir_first
= smb2_query_dir_first
,
1637 .query_dir_next
= smb2_query_dir_next
,
1638 .close_dir
= smb2_close_dir
,
1639 .calc_smb_size
= smb2_calc_size
,
1640 .is_status_pending
= smb2_is_status_pending
,
1641 .oplock_response
= smb2_oplock_response
,
1642 .queryfs
= smb2_queryfs
,
1643 .mand_lock
= smb2_mand_lock
,
1644 .mand_unlock_range
= smb2_unlock_range
,
1645 .push_mand_locks
= smb2_push_mandatory_locks
,
1646 .get_lease_key
= smb2_get_lease_key
,
1647 .set_lease_key
= smb2_set_lease_key
,
1648 .new_lease_key
= smb2_new_lease_key
,
1649 .calc_signature
= smb2_calc_signature
,
1650 .is_read_op
= smb21_is_read_op
,
1651 .set_oplock_level
= smb21_set_oplock_level
,
1652 .create_lease_buf
= smb2_create_lease_buf
,
1653 .parse_lease_buf
= smb2_parse_lease_buf
,
1654 .clone_range
= smb2_clone_range
,
1655 .wp_retry_size
= smb2_wp_retry_size
,
1656 .dir_needs_close
= smb2_dir_needs_close
,
1659 struct smb_version_operations smb30_operations
= {
1660 .compare_fids
= smb2_compare_fids
,
1661 .setup_request
= smb2_setup_request
,
1662 .setup_async_request
= smb2_setup_async_request
,
1663 .check_receive
= smb2_check_receive
,
1664 .add_credits
= smb2_add_credits
,
1665 .set_credits
= smb2_set_credits
,
1666 .get_credits_field
= smb2_get_credits_field
,
1667 .get_credits
= smb2_get_credits
,
1668 .wait_mtu_credits
= smb2_wait_mtu_credits
,
1669 .get_next_mid
= smb2_get_next_mid
,
1670 .read_data_offset
= smb2_read_data_offset
,
1671 .read_data_length
= smb2_read_data_length
,
1672 .map_error
= map_smb2_to_linux_error
,
1673 .find_mid
= smb2_find_mid
,
1674 .check_message
= smb2_check_message
,
1675 .dump_detail
= smb2_dump_detail
,
1676 .clear_stats
= smb2_clear_stats
,
1677 .print_stats
= smb2_print_stats
,
1678 .dump_share_caps
= smb2_dump_share_caps
,
1679 .is_oplock_break
= smb2_is_valid_oplock_break
,
1680 .downgrade_oplock
= smb2_downgrade_oplock
,
1681 .need_neg
= smb2_need_neg
,
1682 .negotiate
= smb2_negotiate
,
1683 .negotiate_wsize
= smb2_negotiate_wsize
,
1684 .negotiate_rsize
= smb2_negotiate_rsize
,
1685 .sess_setup
= SMB2_sess_setup
,
1686 .logoff
= SMB2_logoff
,
1687 .tree_connect
= SMB2_tcon
,
1688 .tree_disconnect
= SMB2_tdis
,
1689 .qfs_tcon
= smb3_qfs_tcon
,
1690 .is_path_accessible
= smb2_is_path_accessible
,
1691 .can_echo
= smb2_can_echo
,
1693 .query_path_info
= smb2_query_path_info
,
1694 .get_srv_inum
= smb2_get_srv_inum
,
1695 .query_file_info
= smb2_query_file_info
,
1696 .set_path_size
= smb2_set_path_size
,
1697 .set_file_size
= smb2_set_file_size
,
1698 .set_file_info
= smb2_set_file_info
,
1699 .set_compression
= smb2_set_compression
,
1700 .mkdir
= smb2_mkdir
,
1701 .mkdir_setinfo
= smb2_mkdir_setinfo
,
1702 .rmdir
= smb2_rmdir
,
1703 .unlink
= smb2_unlink
,
1704 .rename
= smb2_rename_path
,
1705 .create_hardlink
= smb2_create_hardlink
,
1706 .query_symlink
= smb2_query_symlink
,
1707 .query_mf_symlink
= smb3_query_mf_symlink
,
1708 .create_mf_symlink
= smb3_create_mf_symlink
,
1709 .open
= smb2_open_file
,
1710 .set_fid
= smb2_set_fid
,
1711 .close
= smb2_close_file
,
1712 .flush
= smb2_flush_file
,
1713 .async_readv
= smb2_async_readv
,
1714 .async_writev
= smb2_async_writev
,
1715 .sync_read
= smb2_sync_read
,
1716 .sync_write
= smb2_sync_write
,
1717 .query_dir_first
= smb2_query_dir_first
,
1718 .query_dir_next
= smb2_query_dir_next
,
1719 .close_dir
= smb2_close_dir
,
1720 .calc_smb_size
= smb2_calc_size
,
1721 .is_status_pending
= smb2_is_status_pending
,
1722 .oplock_response
= smb2_oplock_response
,
1723 .queryfs
= smb2_queryfs
,
1724 .mand_lock
= smb2_mand_lock
,
1725 .mand_unlock_range
= smb2_unlock_range
,
1726 .push_mand_locks
= smb2_push_mandatory_locks
,
1727 .get_lease_key
= smb2_get_lease_key
,
1728 .set_lease_key
= smb2_set_lease_key
,
1729 .new_lease_key
= smb2_new_lease_key
,
1730 .generate_signingkey
= generate_smb30signingkey
,
1731 .calc_signature
= smb3_calc_signature
,
1732 .set_integrity
= smb3_set_integrity
,
1733 .is_read_op
= smb21_is_read_op
,
1734 .set_oplock_level
= smb3_set_oplock_level
,
1735 .create_lease_buf
= smb3_create_lease_buf
,
1736 .parse_lease_buf
= smb3_parse_lease_buf
,
1737 .clone_range
= smb2_clone_range
,
1738 .duplicate_extents
= smb2_duplicate_extents
,
1739 .validate_negotiate
= smb3_validate_negotiate
,
1740 .wp_retry_size
= smb2_wp_retry_size
,
1741 .dir_needs_close
= smb2_dir_needs_close
,
1742 .fallocate
= smb3_fallocate
,
1745 #ifdef CONFIG_CIFS_SMB311
1746 struct smb_version_operations smb311_operations
= {
1747 .compare_fids
= smb2_compare_fids
,
1748 .setup_request
= smb2_setup_request
,
1749 .setup_async_request
= smb2_setup_async_request
,
1750 .check_receive
= smb2_check_receive
,
1751 .add_credits
= smb2_add_credits
,
1752 .set_credits
= smb2_set_credits
,
1753 .get_credits_field
= smb2_get_credits_field
,
1754 .get_credits
= smb2_get_credits
,
1755 .wait_mtu_credits
= smb2_wait_mtu_credits
,
1756 .get_next_mid
= smb2_get_next_mid
,
1757 .read_data_offset
= smb2_read_data_offset
,
1758 .read_data_length
= smb2_read_data_length
,
1759 .map_error
= map_smb2_to_linux_error
,
1760 .find_mid
= smb2_find_mid
,
1761 .check_message
= smb2_check_message
,
1762 .dump_detail
= smb2_dump_detail
,
1763 .clear_stats
= smb2_clear_stats
,
1764 .print_stats
= smb2_print_stats
,
1765 .dump_share_caps
= smb2_dump_share_caps
,
1766 .is_oplock_break
= smb2_is_valid_oplock_break
,
1767 .downgrade_oplock
= smb2_downgrade_oplock
,
1768 .need_neg
= smb2_need_neg
,
1769 .negotiate
= smb2_negotiate
,
1770 .negotiate_wsize
= smb2_negotiate_wsize
,
1771 .negotiate_rsize
= smb2_negotiate_rsize
,
1772 .sess_setup
= SMB2_sess_setup
,
1773 .logoff
= SMB2_logoff
,
1774 .tree_connect
= SMB2_tcon
,
1775 .tree_disconnect
= SMB2_tdis
,
1776 .qfs_tcon
= smb3_qfs_tcon
,
1777 .is_path_accessible
= smb2_is_path_accessible
,
1778 .can_echo
= smb2_can_echo
,
1780 .query_path_info
= smb2_query_path_info
,
1781 .get_srv_inum
= smb2_get_srv_inum
,
1782 .query_file_info
= smb2_query_file_info
,
1783 .set_path_size
= smb2_set_path_size
,
1784 .set_file_size
= smb2_set_file_size
,
1785 .set_file_info
= smb2_set_file_info
,
1786 .set_compression
= smb2_set_compression
,
1787 .mkdir
= smb2_mkdir
,
1788 .mkdir_setinfo
= smb2_mkdir_setinfo
,
1789 .rmdir
= smb2_rmdir
,
1790 .unlink
= smb2_unlink
,
1791 .rename
= smb2_rename_path
,
1792 .create_hardlink
= smb2_create_hardlink
,
1793 .query_symlink
= smb2_query_symlink
,
1794 .query_mf_symlink
= smb3_query_mf_symlink
,
1795 .create_mf_symlink
= smb3_create_mf_symlink
,
1796 .open
= smb2_open_file
,
1797 .set_fid
= smb2_set_fid
,
1798 .close
= smb2_close_file
,
1799 .flush
= smb2_flush_file
,
1800 .async_readv
= smb2_async_readv
,
1801 .async_writev
= smb2_async_writev
,
1802 .sync_read
= smb2_sync_read
,
1803 .sync_write
= smb2_sync_write
,
1804 .query_dir_first
= smb2_query_dir_first
,
1805 .query_dir_next
= smb2_query_dir_next
,
1806 .close_dir
= smb2_close_dir
,
1807 .calc_smb_size
= smb2_calc_size
,
1808 .is_status_pending
= smb2_is_status_pending
,
1809 .oplock_response
= smb2_oplock_response
,
1810 .queryfs
= smb2_queryfs
,
1811 .mand_lock
= smb2_mand_lock
,
1812 .mand_unlock_range
= smb2_unlock_range
,
1813 .push_mand_locks
= smb2_push_mandatory_locks
,
1814 .get_lease_key
= smb2_get_lease_key
,
1815 .set_lease_key
= smb2_set_lease_key
,
1816 .new_lease_key
= smb2_new_lease_key
,
1817 .generate_signingkey
= generate_smb311signingkey
,
1818 .calc_signature
= smb3_calc_signature
,
1819 .set_integrity
= smb3_set_integrity
,
1820 .is_read_op
= smb21_is_read_op
,
1821 .set_oplock_level
= smb3_set_oplock_level
,
1822 .create_lease_buf
= smb3_create_lease_buf
,
1823 .parse_lease_buf
= smb3_parse_lease_buf
,
1824 .clone_range
= smb2_clone_range
,
1825 .duplicate_extents
= smb2_duplicate_extents
,
1826 /* .validate_negotiate = smb3_validate_negotiate, */ /* not used in 3.11 */
1827 .wp_retry_size
= smb2_wp_retry_size
,
1828 .dir_needs_close
= smb2_dir_needs_close
,
1829 .fallocate
= smb3_fallocate
,
1831 #endif /* CIFS_SMB311 */
1833 struct smb_version_values smb20_values
= {
1834 .version_string
= SMB20_VERSION_STRING
,
1835 .protocol_id
= SMB20_PROT_ID
,
1836 .req_capabilities
= 0, /* MBZ */
1837 .large_lock_type
= 0,
1838 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
1839 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
1840 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
1841 .header_size
= sizeof(struct smb2_hdr
),
1842 .max_header_size
= MAX_SMB2_HDR_SIZE
,
1843 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
1844 .lock_cmd
= SMB2_LOCK
,
1846 .cap_nt_find
= SMB2_NT_FIND
,
1847 .cap_large_files
= SMB2_LARGE_FILES
,
1848 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1849 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1850 .create_lease_size
= sizeof(struct create_lease
),
1853 struct smb_version_values smb21_values
= {
1854 .version_string
= SMB21_VERSION_STRING
,
1855 .protocol_id
= SMB21_PROT_ID
,
1856 .req_capabilities
= 0, /* MBZ on negotiate req until SMB3 dialect */
1857 .large_lock_type
= 0,
1858 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
1859 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
1860 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
1861 .header_size
= sizeof(struct smb2_hdr
),
1862 .max_header_size
= MAX_SMB2_HDR_SIZE
,
1863 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
1864 .lock_cmd
= SMB2_LOCK
,
1866 .cap_nt_find
= SMB2_NT_FIND
,
1867 .cap_large_files
= SMB2_LARGE_FILES
,
1868 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1869 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1870 .create_lease_size
= sizeof(struct create_lease
),
1873 struct smb_version_values smb30_values
= {
1874 .version_string
= SMB30_VERSION_STRING
,
1875 .protocol_id
= SMB30_PROT_ID
,
1876 .req_capabilities
= SMB2_GLOBAL_CAP_DFS
| SMB2_GLOBAL_CAP_LEASING
| SMB2_GLOBAL_CAP_LARGE_MTU
| SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
| SMB2_GLOBAL_CAP_ENCRYPTION
,
1877 .large_lock_type
= 0,
1878 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
1879 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
1880 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
1881 .header_size
= sizeof(struct smb2_hdr
),
1882 .max_header_size
= MAX_SMB2_HDR_SIZE
,
1883 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
1884 .lock_cmd
= SMB2_LOCK
,
1886 .cap_nt_find
= SMB2_NT_FIND
,
1887 .cap_large_files
= SMB2_LARGE_FILES
,
1888 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1889 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1890 .create_lease_size
= sizeof(struct create_lease_v2
),
1893 struct smb_version_values smb302_values
= {
1894 .version_string
= SMB302_VERSION_STRING
,
1895 .protocol_id
= SMB302_PROT_ID
,
1896 .req_capabilities
= SMB2_GLOBAL_CAP_DFS
| SMB2_GLOBAL_CAP_LEASING
| SMB2_GLOBAL_CAP_LARGE_MTU
| SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
| SMB2_GLOBAL_CAP_ENCRYPTION
,
1897 .large_lock_type
= 0,
1898 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
1899 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
1900 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
1901 .header_size
= sizeof(struct smb2_hdr
),
1902 .max_header_size
= MAX_SMB2_HDR_SIZE
,
1903 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
1904 .lock_cmd
= SMB2_LOCK
,
1906 .cap_nt_find
= SMB2_NT_FIND
,
1907 .cap_large_files
= SMB2_LARGE_FILES
,
1908 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1909 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1910 .create_lease_size
= sizeof(struct create_lease_v2
),
1913 #ifdef CONFIG_CIFS_SMB311
1914 struct smb_version_values smb311_values
= {
1915 .version_string
= SMB311_VERSION_STRING
,
1916 .protocol_id
= SMB311_PROT_ID
,
1917 .req_capabilities
= SMB2_GLOBAL_CAP_DFS
| SMB2_GLOBAL_CAP_LEASING
| SMB2_GLOBAL_CAP_LARGE_MTU
| SMB2_GLOBAL_CAP_PERSISTENT_HANDLES
,
1918 .large_lock_type
= 0,
1919 .exclusive_lock_type
= SMB2_LOCKFLAG_EXCLUSIVE_LOCK
,
1920 .shared_lock_type
= SMB2_LOCKFLAG_SHARED_LOCK
,
1921 .unlock_lock_type
= SMB2_LOCKFLAG_UNLOCK
,
1922 .header_size
= sizeof(struct smb2_hdr
),
1923 .max_header_size
= MAX_SMB2_HDR_SIZE
,
1924 .read_rsp_size
= sizeof(struct smb2_read_rsp
) - 1,
1925 .lock_cmd
= SMB2_LOCK
,
1927 .cap_nt_find
= SMB2_NT_FIND
,
1928 .cap_large_files
= SMB2_LARGE_FILES
,
1929 .signing_enabled
= SMB2_NEGOTIATE_SIGNING_ENABLED
| SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1930 .signing_required
= SMB2_NEGOTIATE_SIGNING_REQUIRED
,
1931 .create_lease_size
= sizeof(struct create_lease_v2
),