Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/smb2misc.c |
| 3 | * |
| 4 | * Copyright (C) International Business Machines Corp., 2002,2011 |
| 5 | * Etersoft, 2012 |
| 6 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 7 | * Pavel Shilovsky (pshilovsky@samba.org) 2012 |
| 8 | * |
| 9 | * This library is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU Lesser General Public License as published |
| 11 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This library is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 17 | * the GNU Lesser General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU Lesser General Public License |
| 20 | * along with this library; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | */ |
| 23 | #include <linux/ctype.h> |
| 24 | #include "smb2pdu.h" |
| 25 | #include "cifsglob.h" |
| 26 | #include "cifsproto.h" |
| 27 | #include "smb2proto.h" |
| 28 | #include "cifs_debug.h" |
| 29 | #include "cifs_unicode.h" |
| 30 | #include "smb2status.h" |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 31 | #include "smb2glob.h" |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 32 | |
| 33 | static int |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 34 | check_smb2_hdr(struct smb2_sync_hdr *shdr, __u64 mid) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 35 | { |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 36 | __u64 wire_mid = le64_to_cpu(shdr->MessageId); |
Sachin Prabhu | 9235d09 | 2014-12-09 17:37:00 +0000 | [diff] [blame] | 37 | |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 38 | /* |
| 39 | * Make sure that this really is an SMB, that it is a response, |
| 40 | * and that the message ids match. |
| 41 | */ |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 42 | if ((shdr->ProtocolId == SMB2_PROTO_NUMBER) && |
Sachin Prabhu | 9235d09 | 2014-12-09 17:37:00 +0000 | [diff] [blame] | 43 | (mid == wire_mid)) { |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 44 | if (shdr->Flags & SMB2_FLAGS_SERVER_TO_REDIR) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 45 | return 0; |
| 46 | else { |
| 47 | /* only one valid case where server sends us request */ |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 48 | if (shdr->Command == SMB2_OPLOCK_BREAK) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 49 | return 0; |
| 50 | else |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 51 | cifs_dbg(VFS, "Received Request not response\n"); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 52 | } |
| 53 | } else { /* bad signature or mid */ |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 54 | if (shdr->ProtocolId != SMB2_PROTO_NUMBER) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 55 | cifs_dbg(VFS, "Bad protocol string signature header %x\n", |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 56 | le32_to_cpu(shdr->ProtocolId)); |
Sachin Prabhu | 9235d09 | 2014-12-09 17:37:00 +0000 | [diff] [blame] | 57 | if (mid != wire_mid) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 58 | cifs_dbg(VFS, "Mids do not match: %llu and %llu\n", |
Sachin Prabhu | 9235d09 | 2014-12-09 17:37:00 +0000 | [diff] [blame] | 59 | mid, wire_mid); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 60 | } |
Sachin Prabhu | 9235d09 | 2014-12-09 17:37:00 +0000 | [diff] [blame] | 61 | cifs_dbg(VFS, "Bad SMB detected. The Mid=%llu\n", wire_mid); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 62 | return 1; |
| 63 | } |
| 64 | |
| 65 | /* |
| 66 | * The following table defines the expected "StructureSize" of SMB2 responses |
| 67 | * in order by SMB2 command. This is similar to "wct" in SMB/CIFS responses. |
| 68 | * |
| 69 | * Note that commands are defined in smb2pdu.h in le16 but the array below is |
| 70 | * indexed by command in host byte order |
| 71 | */ |
| 72 | static const __le16 smb2_rsp_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = { |
Fabian Frederick | bc09d14 | 2014-12-10 15:41:15 -0800 | [diff] [blame] | 73 | /* SMB2_NEGOTIATE */ cpu_to_le16(65), |
| 74 | /* SMB2_SESSION_SETUP */ cpu_to_le16(9), |
| 75 | /* SMB2_LOGOFF */ cpu_to_le16(4), |
| 76 | /* SMB2_TREE_CONNECT */ cpu_to_le16(16), |
| 77 | /* SMB2_TREE_DISCONNECT */ cpu_to_le16(4), |
| 78 | /* SMB2_CREATE */ cpu_to_le16(89), |
| 79 | /* SMB2_CLOSE */ cpu_to_le16(60), |
| 80 | /* SMB2_FLUSH */ cpu_to_le16(4), |
| 81 | /* SMB2_READ */ cpu_to_le16(17), |
| 82 | /* SMB2_WRITE */ cpu_to_le16(17), |
| 83 | /* SMB2_LOCK */ cpu_to_le16(4), |
| 84 | /* SMB2_IOCTL */ cpu_to_le16(49), |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 85 | /* BB CHECK this ... not listed in documentation */ |
Fabian Frederick | bc09d14 | 2014-12-10 15:41:15 -0800 | [diff] [blame] | 86 | /* SMB2_CANCEL */ cpu_to_le16(0), |
| 87 | /* SMB2_ECHO */ cpu_to_le16(4), |
| 88 | /* SMB2_QUERY_DIRECTORY */ cpu_to_le16(9), |
| 89 | /* SMB2_CHANGE_NOTIFY */ cpu_to_le16(9), |
| 90 | /* SMB2_QUERY_INFO */ cpu_to_le16(9), |
| 91 | /* SMB2_SET_INFO */ cpu_to_le16(2), |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 92 | /* BB FIXME can also be 44 for lease break */ |
Fabian Frederick | bc09d14 | 2014-12-10 15:41:15 -0800 | [diff] [blame] | 93 | /* SMB2_OPLOCK_BREAK */ cpu_to_le16(24) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 94 | }; |
| 95 | |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 96 | static __u32 get_neg_ctxt_len(struct smb2_sync_hdr *hdr, __u32 len, |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 97 | __u32 non_ctxlen) |
Steve French | 136ff1b | 2018-04-08 16:14:31 -0500 | [diff] [blame] | 98 | { |
| 99 | __u16 neg_count; |
| 100 | __u32 nc_offset, size_of_pad_before_neg_ctxts; |
| 101 | struct smb2_negotiate_rsp *pneg_rsp = (struct smb2_negotiate_rsp *)hdr; |
| 102 | |
| 103 | /* Negotiate contexts are only valid for latest dialect SMB3.11 */ |
| 104 | neg_count = le16_to_cpu(pneg_rsp->NegotiateContextCount); |
| 105 | if ((neg_count == 0) || |
| 106 | (pneg_rsp->DialectRevision != cpu_to_le16(SMB311_PROT_ID))) |
| 107 | return 0; |
| 108 | |
| 109 | /* Make sure that negotiate contexts start after gss security blob */ |
| 110 | nc_offset = le32_to_cpu(pneg_rsp->NegotiateContextOffset); |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 111 | if (nc_offset < non_ctxlen) { |
Steve French | 136ff1b | 2018-04-08 16:14:31 -0500 | [diff] [blame] | 112 | printk_once(KERN_WARNING "invalid negotiate context offset\n"); |
| 113 | return 0; |
| 114 | } |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 115 | size_of_pad_before_neg_ctxts = nc_offset - non_ctxlen; |
Steve French | 136ff1b | 2018-04-08 16:14:31 -0500 | [diff] [blame] | 116 | |
| 117 | /* Verify that at least minimal negotiate contexts fit within frame */ |
| 118 | if (len < nc_offset + (neg_count * sizeof(struct smb2_neg_context))) { |
| 119 | printk_once(KERN_WARNING "negotiate context goes beyond end\n"); |
| 120 | return 0; |
| 121 | } |
| 122 | |
| 123 | cifs_dbg(FYI, "length of negcontexts %d pad %d\n", |
| 124 | len - nc_offset, size_of_pad_before_neg_ctxts); |
| 125 | |
| 126 | /* length of negcontexts including pad from end of sec blob to them */ |
| 127 | return (len - nc_offset) + size_of_pad_before_neg_ctxts; |
| 128 | } |
Steve French | 136ff1b | 2018-04-08 16:14:31 -0500 | [diff] [blame] | 129 | |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 130 | int |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 131 | smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *srvr) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 132 | { |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 133 | struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 134 | struct smb2_sync_pdu *pdu = (struct smb2_sync_pdu *)shdr; |
Steve French | 373512e | 2015-12-18 13:05:30 -0600 | [diff] [blame] | 135 | __u64 mid; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 136 | __u32 clc_len; /* calculated length */ |
| 137 | int command; |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 138 | int pdu_size = sizeof(struct smb2_sync_pdu); |
| 139 | int hdr_size = sizeof(struct smb2_sync_hdr); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 140 | |
| 141 | /* |
| 142 | * Add function to do table lookup of StructureSize by command |
| 143 | * ie Validate the wct via smb2_struct_sizes table above |
| 144 | */ |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 145 | if (shdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) { |
Steve French | 373512e | 2015-12-18 13:05:30 -0600 | [diff] [blame] | 146 | struct smb2_transform_hdr *thdr = |
| 147 | (struct smb2_transform_hdr *)buf; |
| 148 | struct cifs_ses *ses = NULL; |
| 149 | struct list_head *tmp; |
| 150 | |
| 151 | /* decrypt frame now that it is completely read in */ |
| 152 | spin_lock(&cifs_tcp_ses_lock); |
| 153 | list_for_each(tmp, &srvr->smb_ses_list) { |
| 154 | ses = list_entry(tmp, struct cifs_ses, smb_ses_list); |
| 155 | if (ses->Suid == thdr->SessionId) |
| 156 | break; |
| 157 | |
| 158 | ses = NULL; |
| 159 | } |
| 160 | spin_unlock(&cifs_tcp_ses_lock); |
| 161 | if (ses == NULL) { |
| 162 | cifs_dbg(VFS, "no decryption - session id not found\n"); |
| 163 | return 1; |
| 164 | } |
| 165 | } |
| 166 | |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 167 | mid = le64_to_cpu(shdr->MessageId); |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 168 | if (len < pdu_size) { |
| 169 | if ((len >= hdr_size) |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 170 | && (shdr->Status != 0)) { |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 171 | pdu->StructureSize2 = 0; |
| 172 | /* |
| 173 | * As with SMB/CIFS, on some error cases servers may |
| 174 | * not return wct properly |
| 175 | */ |
| 176 | return 0; |
| 177 | } else { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 178 | cifs_dbg(VFS, "Length less than SMB header size\n"); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 179 | } |
| 180 | return 1; |
| 181 | } |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 182 | if (len > CIFSMaxBufSize + MAX_SMB2_HDR_SIZE) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 183 | cifs_dbg(VFS, "SMB length greater than maximum, mid=%llu\n", |
| 184 | mid); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 185 | return 1; |
| 186 | } |
| 187 | |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 188 | if (check_smb2_hdr(shdr, mid)) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 189 | return 1; |
| 190 | |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 191 | if (shdr->StructureSize != SMB2_HEADER_STRUCTURE_SIZE) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 192 | cifs_dbg(VFS, "Illegal structure size %u\n", |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 193 | le16_to_cpu(shdr->StructureSize)); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 194 | return 1; |
| 195 | } |
| 196 | |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 197 | command = le16_to_cpu(shdr->Command); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 198 | if (command >= NUMBER_OF_SMB2_COMMANDS) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 199 | cifs_dbg(VFS, "Illegal SMB2 command %d\n", command); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 200 | return 1; |
| 201 | } |
| 202 | |
| 203 | if (smb2_rsp_struct_sizes[command] != pdu->StructureSize2) { |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 204 | if (command != SMB2_OPLOCK_BREAK_HE && (shdr->Status == 0 || |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 205 | pdu->StructureSize2 != SMB2_ERROR_STRUCTURE_SIZE2)) { |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 206 | /* error packets have 9 byte structure size */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 207 | cifs_dbg(VFS, "Illegal response size %u for command %d\n", |
| 208 | le16_to_cpu(pdu->StructureSize2), command); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 209 | return 1; |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 210 | } else if (command == SMB2_OPLOCK_BREAK_HE |
| 211 | && (shdr->Status == 0) |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 212 | && (le16_to_cpu(pdu->StructureSize2) != 44) |
| 213 | && (le16_to_cpu(pdu->StructureSize2) != 36)) { |
| 214 | /* special case for SMB2.1 lease break message */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 215 | cifs_dbg(VFS, "Illegal response size %d for oplock break\n", |
| 216 | le16_to_cpu(pdu->StructureSize2)); |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 217 | return 1; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 218 | } |
| 219 | } |
| 220 | |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 221 | clc_len = smb2_calc_size(buf, srvr); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 222 | |
Steve French | 136ff1b | 2018-04-08 16:14:31 -0500 | [diff] [blame] | 223 | if (shdr->Command == SMB2_NEGOTIATE) |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 224 | clc_len += get_neg_ctxt_len(shdr, len, clc_len); |
Steve French | 0fdfef9 | 2018-06-28 19:30:23 -0500 | [diff] [blame] | 225 | |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 226 | if (len != clc_len) { |
| 227 | cifs_dbg(FYI, "Calculated size %u length %u mismatch mid %llu\n", |
| 228 | clc_len, len, mid); |
Pavel Shilovsky | b42bf88 | 2013-08-14 19:25:21 +0400 | [diff] [blame] | 229 | /* create failed on symlink */ |
| 230 | if (command == SMB2_CREATE_HE && |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 231 | shdr->Status == STATUS_STOPPED_ON_SYMLINK) |
Pavel Shilovsky | b42bf88 | 2013-08-14 19:25:21 +0400 | [diff] [blame] | 232 | return 0; |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 233 | /* Windows 7 server returns 24 bytes more */ |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 234 | if (clc_len + 24 == len && command == SMB2_OPLOCK_BREAK_HE) |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 235 | return 0; |
Steve French | 754789a | 2014-08-15 23:49:01 -0500 | [diff] [blame] | 236 | /* server can return one byte more due to implied bcc[0] */ |
Ronnie Sahlberg | 98170fb | 2018-05-31 07:43:34 +1000 | [diff] [blame] | 237 | if (clc_len == len + 1) |
Pavel Shilovsky | 7411286 | 2012-07-27 01:20:41 +0400 | [diff] [blame] | 238 | return 0; |
Steve French | 754789a | 2014-08-15 23:49:01 -0500 | [diff] [blame] | 239 | |
| 240 | /* |
Ronnie Sahlberg | e6c47dd | 2018-08-22 12:19:24 +1000 | [diff] [blame] | 241 | * Some windows servers (win2016) will pad also the final |
| 242 | * PDU in a compound to 8 bytes. |
| 243 | */ |
| 244 | if (((clc_len + 7) & ~7) == len) |
| 245 | return 0; |
| 246 | |
| 247 | /* |
Steve French | 754789a | 2014-08-15 23:49:01 -0500 | [diff] [blame] | 248 | * MacOS server pads after SMB2.1 write response with 3 bytes |
| 249 | * of junk. Other servers match RFC1001 len to actual |
| 250 | * SMB2/SMB3 frame length (header + smb2 response specific data) |
Steve French | 25f2573 | 2018-08-29 09:22:22 -0500 | [diff] [blame] | 251 | * Some windows servers also pad up to 8 bytes when compounding. |
Steve French | 754789a | 2014-08-15 23:49:01 -0500 | [diff] [blame] | 252 | */ |
Steve French | 037d050 | 2019-11-08 01:01:35 -0600 | [diff] [blame] | 253 | if (clc_len < len) |
Steve French | 754789a | 2014-08-15 23:49:01 -0500 | [diff] [blame] | 254 | return 0; |
Steve French | 037d050 | 2019-11-08 01:01:35 -0600 | [diff] [blame] | 255 | |
Steve French | 25f2573 | 2018-08-29 09:22:22 -0500 | [diff] [blame] | 256 | pr_warn_once( |
| 257 | "srv rsp too short, len %d not %d. cmd:%d mid:%llu\n", |
| 258 | len, clc_len, command, mid); |
Steve French | 754789a | 2014-08-15 23:49:01 -0500 | [diff] [blame] | 259 | |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 260 | return 1; |
| 261 | } |
| 262 | return 0; |
| 263 | } |
| 264 | |
| 265 | /* |
| 266 | * The size of the variable area depends on the offset and length fields |
| 267 | * located in different fields for various SMB2 responses. SMB2 responses |
| 268 | * with no variable length info, show an offset of zero for the offset field. |
| 269 | */ |
| 270 | static const bool has_smb2_data_area[NUMBER_OF_SMB2_COMMANDS] = { |
| 271 | /* SMB2_NEGOTIATE */ true, |
| 272 | /* SMB2_SESSION_SETUP */ true, |
| 273 | /* SMB2_LOGOFF */ false, |
| 274 | /* SMB2_TREE_CONNECT */ false, |
| 275 | /* SMB2_TREE_DISCONNECT */ false, |
| 276 | /* SMB2_CREATE */ true, |
| 277 | /* SMB2_CLOSE */ false, |
| 278 | /* SMB2_FLUSH */ false, |
| 279 | /* SMB2_READ */ true, |
| 280 | /* SMB2_WRITE */ false, |
| 281 | /* SMB2_LOCK */ false, |
| 282 | /* SMB2_IOCTL */ true, |
| 283 | /* SMB2_CANCEL */ false, /* BB CHECK this not listed in documentation */ |
| 284 | /* SMB2_ECHO */ false, |
| 285 | /* SMB2_QUERY_DIRECTORY */ true, |
| 286 | /* SMB2_CHANGE_NOTIFY */ true, |
| 287 | /* SMB2_QUERY_INFO */ true, |
| 288 | /* SMB2_SET_INFO */ false, |
| 289 | /* SMB2_OPLOCK_BREAK */ false |
| 290 | }; |
| 291 | |
| 292 | /* |
| 293 | * Returns the pointer to the beginning of the data area. Length of the data |
| 294 | * area and the offset to it (from the beginning of the smb are also returned. |
| 295 | */ |
Pavel Shilovsky | ec2e452 | 2011-12-27 16:12:43 +0400 | [diff] [blame] | 296 | char * |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 297 | smb2_get_data_area_len(int *off, int *len, struct smb2_sync_hdr *shdr) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 298 | { |
| 299 | *off = 0; |
| 300 | *len = 0; |
| 301 | |
| 302 | /* error responses do not have data area */ |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 303 | if (shdr->Status && shdr->Status != STATUS_MORE_PROCESSING_REQUIRED && |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 304 | (((struct smb2_err_rsp *)shdr)->StructureSize) == |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 305 | SMB2_ERROR_STRUCTURE_SIZE2) |
| 306 | return NULL; |
| 307 | |
| 308 | /* |
| 309 | * Following commands have data areas so we have to get the location |
| 310 | * of the data buffer offset and data buffer length for the particular |
| 311 | * command. |
| 312 | */ |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 313 | switch (shdr->Command) { |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 314 | case SMB2_NEGOTIATE: |
Pavel Shilovsky | ec2e452 | 2011-12-27 16:12:43 +0400 | [diff] [blame] | 315 | *off = le16_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 316 | ((struct smb2_negotiate_rsp *)shdr)->SecurityBufferOffset); |
Pavel Shilovsky | ec2e452 | 2011-12-27 16:12:43 +0400 | [diff] [blame] | 317 | *len = le16_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 318 | ((struct smb2_negotiate_rsp *)shdr)->SecurityBufferLength); |
Pavel Shilovsky | ec2e452 | 2011-12-27 16:12:43 +0400 | [diff] [blame] | 319 | break; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 320 | case SMB2_SESSION_SETUP: |
Pavel Shilovsky | 5478f9b | 2011-12-27 16:22:00 +0400 | [diff] [blame] | 321 | *off = le16_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 322 | ((struct smb2_sess_setup_rsp *)shdr)->SecurityBufferOffset); |
Pavel Shilovsky | 5478f9b | 2011-12-27 16:22:00 +0400 | [diff] [blame] | 323 | *len = le16_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 324 | ((struct smb2_sess_setup_rsp *)shdr)->SecurityBufferLength); |
Pavel Shilovsky | 5478f9b | 2011-12-27 16:22:00 +0400 | [diff] [blame] | 325 | break; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 326 | case SMB2_CREATE: |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 327 | *off = le32_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 328 | ((struct smb2_create_rsp *)shdr)->CreateContextsOffset); |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 329 | *len = le32_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 330 | ((struct smb2_create_rsp *)shdr)->CreateContextsLength); |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 331 | break; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 332 | case SMB2_QUERY_INFO: |
Pavel Shilovsky | be4cb9e | 2011-12-29 17:06:33 +0400 | [diff] [blame] | 333 | *off = le16_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 334 | ((struct smb2_query_info_rsp *)shdr)->OutputBufferOffset); |
Pavel Shilovsky | be4cb9e | 2011-12-29 17:06:33 +0400 | [diff] [blame] | 335 | *len = le32_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 336 | ((struct smb2_query_info_rsp *)shdr)->OutputBufferLength); |
Pavel Shilovsky | be4cb9e | 2011-12-29 17:06:33 +0400 | [diff] [blame] | 337 | break; |
| 338 | case SMB2_READ: |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 339 | /* TODO: is this a bug ? */ |
| 340 | *off = ((struct smb2_read_rsp *)shdr)->DataOffset; |
| 341 | *len = le32_to_cpu(((struct smb2_read_rsp *)shdr)->DataLength); |
Pavel Shilovsky | 09a4707 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 342 | break; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 343 | case SMB2_QUERY_DIRECTORY: |
Pavel Shilovsky | d324f08d | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 344 | *off = le16_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 345 | ((struct smb2_query_directory_rsp *)shdr)->OutputBufferOffset); |
Pavel Shilovsky | d324f08d | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 346 | *len = le32_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 347 | ((struct smb2_query_directory_rsp *)shdr)->OutputBufferLength); |
Pavel Shilovsky | d324f08d | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 348 | break; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 349 | case SMB2_IOCTL: |
Steve French | 4a72daf | 2013-06-25 00:20:49 -0500 | [diff] [blame] | 350 | *off = le32_to_cpu( |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 351 | ((struct smb2_ioctl_rsp *)shdr)->OutputOffset); |
| 352 | *len = le32_to_cpu( |
| 353 | ((struct smb2_ioctl_rsp *)shdr)->OutputCount); |
Steve French | 4a72daf | 2013-06-25 00:20:49 -0500 | [diff] [blame] | 354 | break; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 355 | case SMB2_CHANGE_NOTIFY: |
| 356 | default: |
| 357 | /* BB FIXME for unimplemented cases above */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 358 | cifs_dbg(VFS, "no length check for command\n"); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 359 | break; |
| 360 | } |
| 361 | |
| 362 | /* |
| 363 | * Invalid length or offset probably means data area is invalid, but |
| 364 | * we have little choice but to ignore the data area in this case. |
| 365 | */ |
| 366 | if (*off > 4096) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 367 | cifs_dbg(VFS, "offset %d too large, data area ignored\n", *off); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 368 | *len = 0; |
| 369 | *off = 0; |
| 370 | } else if (*off < 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 371 | cifs_dbg(VFS, "negative offset %d to data invalid ignore data area\n", |
| 372 | *off); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 373 | *off = 0; |
| 374 | *len = 0; |
| 375 | } else if (*len < 0) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 376 | cifs_dbg(VFS, "negative data length %d invalid, data area ignored\n", |
| 377 | *len); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 378 | *len = 0; |
| 379 | } else if (*len > 128 * 1024) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 380 | cifs_dbg(VFS, "data area larger than 128K: %d\n", *len); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 381 | *len = 0; |
| 382 | } |
| 383 | |
| 384 | /* return pointer to beginning of data area, ie offset from SMB start */ |
| 385 | if ((*off != 0) && (*len != 0)) |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 386 | return (char *)shdr + *off; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 387 | else |
| 388 | return NULL; |
| 389 | } |
| 390 | |
| 391 | /* |
| 392 | * Calculate the size of the SMB message based on the fixed header |
| 393 | * portion, the number of word parameters and the data portion of the message. |
| 394 | */ |
| 395 | unsigned int |
Ronnie Sahlberg | 9ec672b | 2018-04-22 15:30:12 -0600 | [diff] [blame] | 396 | smb2_calc_size(void *buf, struct TCP_Server_Info *srvr) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 397 | { |
Ronnie Sahlberg | 84f0cbf | 2018-06-01 10:53:04 +1000 | [diff] [blame] | 398 | struct smb2_sync_pdu *pdu = (struct smb2_sync_pdu *)buf; |
| 399 | struct smb2_sync_hdr *shdr = &pdu->sync_hdr; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 400 | int offset; /* the offset from the beginning of SMB to data area */ |
| 401 | int data_length; /* the length of the variable length data area */ |
| 402 | /* Structure Size has already been checked to make sure it is 64 */ |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 403 | int len = le16_to_cpu(shdr->StructureSize); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 404 | |
| 405 | /* |
| 406 | * StructureSize2, ie length of fixed parameter area has already |
| 407 | * been checked to make sure it is the correct length. |
| 408 | */ |
| 409 | len += le16_to_cpu(pdu->StructureSize2); |
| 410 | |
Pavel Shilovsky | 31473fc | 2016-10-24 15:33:04 -0700 | [diff] [blame] | 411 | if (has_smb2_data_area[le16_to_cpu(shdr->Command)] == false) |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 412 | goto calc_size_exit; |
| 413 | |
Ronnie Sahlberg | e4dc31f | 2018-06-01 10:53:05 +1000 | [diff] [blame] | 414 | smb2_get_data_area_len(&offset, &data_length, shdr); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 415 | cifs_dbg(FYI, "SMB2 data length %d offset %d\n", data_length, offset); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 416 | |
| 417 | if (data_length > 0) { |
| 418 | /* |
| 419 | * Check to make sure that data area begins after fixed area, |
| 420 | * Note that last byte of the fixed area is part of data area |
| 421 | * for some commands, typically those with odd StructureSize, |
Ronnie Sahlberg | 84f0cbf | 2018-06-01 10:53:04 +1000 | [diff] [blame] | 422 | * so we must add one to the calculation. |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 423 | */ |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 424 | if (offset + 1 < len) { |
| 425 | cifs_dbg(VFS, "data area offset %d overlaps SMB2 header %d\n", |
| 426 | offset + 1, len); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 427 | data_length = 0; |
| 428 | } else { |
Ronnie Sahlberg | 1fc6ad2 | 2018-06-01 10:53:07 +1000 | [diff] [blame] | 429 | len = offset + data_length; |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 430 | } |
| 431 | } |
| 432 | calc_size_exit: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 433 | cifs_dbg(FYI, "SMB2 len %d\n", len); |
Pavel Shilovsky | 093b2bd | 2011-06-08 15:51:07 +0400 | [diff] [blame] | 434 | return len; |
| 435 | } |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 436 | |
| 437 | /* Note: caller must free return buffer */ |
| 438 | __le16 * |
| 439 | cifs_convert_path_to_utf16(const char *from, struct cifs_sb_info *cifs_sb) |
| 440 | { |
| 441 | int len; |
| 442 | const char *start_of_path; |
| 443 | __le16 *to; |
Steve French | a4153cb | 2014-09-25 14:01:34 -0500 | [diff] [blame] | 444 | int map_type; |
| 445 | |
| 446 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR) |
| 447 | map_type = SFM_MAP_UNI_RSVD; |
| 448 | else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR) |
| 449 | map_type = SFU_MAP_UNI_RSVD; |
| 450 | else |
| 451 | map_type = NO_MAP_UNI_RSVD; |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 452 | |
| 453 | /* Windows doesn't allow paths beginning with \ */ |
| 454 | if (from[0] == '\\') |
| 455 | start_of_path = from + 1; |
Steve French | 0fdfef9 | 2018-06-28 19:30:23 -0500 | [diff] [blame] | 456 | |
Steve French | ce558b0 | 2018-05-31 19:16:54 -0500 | [diff] [blame] | 457 | /* SMB311 POSIX extensions paths do not include leading slash */ |
Aurelien Aptel | 8ddecf5 | 2018-06-04 22:29:35 +0200 | [diff] [blame] | 458 | else if (cifs_sb_master_tlink(cifs_sb) && |
Steve French | d819d29 | 2018-06-14 22:30:56 -0500 | [diff] [blame] | 459 | cifs_sb_master_tcon(cifs_sb)->posix_extensions && |
| 460 | (from[0] == '/')) { |
Steve French | ce558b0 | 2018-05-31 19:16:54 -0500 | [diff] [blame] | 461 | start_of_path = from + 1; |
Steve French | 0fdfef9 | 2018-06-28 19:30:23 -0500 | [diff] [blame] | 462 | } else |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 463 | start_of_path = from; |
Steve French | ce558b0 | 2018-05-31 19:16:54 -0500 | [diff] [blame] | 464 | |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 465 | to = cifs_strndup_to_utf16(start_of_path, PATH_MAX, &len, |
Steve French | a4153cb | 2014-09-25 14:01:34 -0500 | [diff] [blame] | 466 | cifs_sb->local_nls, map_type); |
Pavel Shilovsky | 2503a0d | 2011-12-26 22:58:46 +0400 | [diff] [blame] | 467 | return to; |
| 468 | } |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 469 | |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 470 | __le32 |
| 471 | smb2_get_lease_state(struct cifsInodeInfo *cinode) |
| 472 | { |
Pavel Shilovsky | 53ef101 | 2013-09-05 16:11:28 +0400 | [diff] [blame] | 473 | __le32 lease = 0; |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 474 | |
Pavel Shilovsky | 53ef101 | 2013-09-05 16:11:28 +0400 | [diff] [blame] | 475 | if (CIFS_CACHE_WRITE(cinode)) |
| 476 | lease |= SMB2_LEASE_WRITE_CACHING; |
| 477 | if (CIFS_CACHE_HANDLE(cinode)) |
| 478 | lease |= SMB2_LEASE_HANDLE_CACHING; |
| 479 | if (CIFS_CACHE_READ(cinode)) |
| 480 | lease |= SMB2_LEASE_READ_CACHING; |
| 481 | return lease; |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 482 | } |
| 483 | |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 484 | struct smb2_lease_break_work { |
| 485 | struct work_struct lease_break; |
| 486 | struct tcon_link *tlink; |
| 487 | __u8 lease_key[16]; |
| 488 | __le32 lease_state; |
| 489 | }; |
| 490 | |
| 491 | static void |
| 492 | cifs_ses_oplock_break(struct work_struct *work) |
| 493 | { |
| 494 | struct smb2_lease_break_work *lw = container_of(work, |
| 495 | struct smb2_lease_break_work, lease_break); |
Ronnie Sahlberg | a93864d | 2018-06-14 06:48:35 +1000 | [diff] [blame] | 496 | int rc = 0; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 497 | |
| 498 | rc = SMB2_lease_break(0, tlink_tcon(lw->tlink), lw->lease_key, |
| 499 | lw->lease_state); |
Ronnie Sahlberg | a93864d | 2018-06-14 06:48:35 +1000 | [diff] [blame] | 500 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 501 | cifs_dbg(FYI, "Lease release rc %d\n", rc); |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 502 | cifs_put_tlink(lw->tlink); |
| 503 | kfree(lw); |
| 504 | } |
| 505 | |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 506 | static bool |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 507 | smb2_tcon_has_lease(struct cifs_tcon *tcon, struct smb2_lease_break *rsp, |
| 508 | struct smb2_lease_break_work *lw) |
| 509 | { |
| 510 | bool found; |
| 511 | __u8 lease_state; |
| 512 | struct list_head *tmp; |
| 513 | struct cifsFileInfo *cfile; |
| 514 | struct cifs_pending_open *open; |
| 515 | struct cifsInodeInfo *cinode; |
| 516 | int ack_req = le32_to_cpu(rsp->Flags & |
| 517 | SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED); |
| 518 | |
Pavel Shilovsky | 53ef101 | 2013-09-05 16:11:28 +0400 | [diff] [blame] | 519 | lease_state = le32_to_cpu(rsp->NewLeaseState); |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 520 | |
| 521 | list_for_each(tmp, &tcon->openFileList) { |
| 522 | cfile = list_entry(tmp, struct cifsFileInfo, tlist); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 523 | cinode = CIFS_I(d_inode(cfile->dentry)); |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 524 | |
| 525 | if (memcmp(cinode->lease_key, rsp->LeaseKey, |
| 526 | SMB2_LEASE_KEY_SIZE)) |
| 527 | continue; |
| 528 | |
| 529 | cifs_dbg(FYI, "found in the open list\n"); |
Steve French | 59b04c5 | 2014-08-02 21:16:48 -0500 | [diff] [blame] | 530 | cifs_dbg(FYI, "lease key match, lease break 0x%x\n", |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 531 | le32_to_cpu(rsp->NewLeaseState)); |
| 532 | |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 533 | if (ack_req) |
| 534 | cfile->oplock_break_cancelled = false; |
| 535 | else |
| 536 | cfile->oplock_break_cancelled = true; |
| 537 | |
Pavel Shilovsky | 7b9b9ed | 2019-02-13 15:43:08 -0800 | [diff] [blame] | 538 | set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags); |
| 539 | |
| 540 | /* |
| 541 | * Set or clear flags depending on the lease state being READ. |
| 542 | * HANDLE caching flag should be added when the client starts |
| 543 | * to defer closing remote file handles with HANDLE leases. |
| 544 | */ |
| 545 | if (lease_state & SMB2_LEASE_READ_CACHING_HE) |
| 546 | set_bit(CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2, |
| 547 | &cinode->flags); |
| 548 | else |
| 549 | clear_bit(CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2, |
| 550 | &cinode->flags); |
| 551 | |
Aurelien Aptel | b98749c | 2019-03-29 10:49:12 +0100 | [diff] [blame] | 552 | cifs_queue_oplock_break(cfile); |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 553 | kfree(lw); |
| 554 | return true; |
| 555 | } |
| 556 | |
| 557 | found = false; |
| 558 | list_for_each_entry(open, &tcon->pending_opens, olist) { |
| 559 | if (memcmp(open->lease_key, rsp->LeaseKey, |
| 560 | SMB2_LEASE_KEY_SIZE)) |
| 561 | continue; |
| 562 | |
| 563 | if (!found && ack_req) { |
| 564 | found = true; |
| 565 | memcpy(lw->lease_key, open->lease_key, |
| 566 | SMB2_LEASE_KEY_SIZE); |
| 567 | lw->tlink = cifs_get_tlink(open->tlink); |
| 568 | queue_work(cifsiod_wq, &lw->lease_break); |
| 569 | } |
| 570 | |
| 571 | cifs_dbg(FYI, "found in the pending open list\n"); |
Steve French | 59b04c5 | 2014-08-02 21:16:48 -0500 | [diff] [blame] | 572 | cifs_dbg(FYI, "lease key match, lease break 0x%x\n", |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 573 | le32_to_cpu(rsp->NewLeaseState)); |
| 574 | |
| 575 | open->oplock = lease_state; |
| 576 | } |
Ronnie Sahlberg | a93864d | 2018-06-14 06:48:35 +1000 | [diff] [blame] | 577 | |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 578 | return found; |
| 579 | } |
| 580 | |
| 581 | static bool |
| 582 | smb2_is_valid_lease_break(char *buffer) |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 583 | { |
| 584 | struct smb2_lease_break *rsp = (struct smb2_lease_break *)buffer; |
| 585 | struct list_head *tmp, *tmp1, *tmp2; |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 586 | struct TCP_Server_Info *server; |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 587 | struct cifs_ses *ses; |
| 588 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 589 | struct smb2_lease_break_work *lw; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 590 | |
| 591 | lw = kmalloc(sizeof(struct smb2_lease_break_work), GFP_KERNEL); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 592 | if (!lw) |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 593 | return false; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 594 | |
| 595 | INIT_WORK(&lw->lease_break, cifs_ses_oplock_break); |
| 596 | lw->lease_state = rsp->NewLeaseState; |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 597 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 598 | cifs_dbg(FYI, "Checking for lease break\n"); |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 599 | |
| 600 | /* look up tcon based on tid & uid */ |
| 601 | spin_lock(&cifs_tcp_ses_lock); |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 602 | list_for_each(tmp, &cifs_tcp_ses_list) { |
| 603 | server = list_entry(tmp, struct TCP_Server_Info, tcp_ses_list); |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 604 | |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 605 | list_for_each(tmp1, &server->smb_ses_list) { |
| 606 | ses = list_entry(tmp1, struct cifs_ses, smb_ses_list); |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 607 | |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 608 | list_for_each(tmp2, &ses->tcon_list) { |
| 609 | tcon = list_entry(tmp2, struct cifs_tcon, |
| 610 | tcon_list); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 611 | spin_lock(&tcon->open_file_lock); |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 612 | cifs_stats_inc( |
| 613 | &tcon->stats.cifs_stats.num_oplock_brks); |
| 614 | if (smb2_tcon_has_lease(tcon, rsp, lw)) { |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 615 | spin_unlock(&tcon->open_file_lock); |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 616 | spin_unlock(&cifs_tcp_ses_lock); |
| 617 | return true; |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 618 | } |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 619 | spin_unlock(&tcon->open_file_lock); |
Ronnie Sahlberg | a93864d | 2018-06-14 06:48:35 +1000 | [diff] [blame] | 620 | |
| 621 | if (tcon->crfid.is_valid && |
| 622 | !memcmp(rsp->LeaseKey, |
| 623 | tcon->crfid.fid->lease_key, |
| 624 | SMB2_LEASE_KEY_SIZE)) { |
| 625 | INIT_WORK(&tcon->crfid.lease_break, |
| 626 | smb2_cached_lease_break); |
| 627 | queue_work(cifsiod_wq, |
| 628 | &tcon->crfid.lease_break); |
| 629 | spin_unlock(&cifs_tcp_ses_lock); |
| 630 | return true; |
| 631 | } |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 632 | } |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 633 | } |
| 634 | } |
| 635 | spin_unlock(&cifs_tcp_ses_lock); |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 636 | kfree(lw); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 637 | cifs_dbg(FYI, "Can not process lease break - no lease matched\n"); |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 638 | return false; |
| 639 | } |
| 640 | |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 641 | bool |
| 642 | smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *server) |
| 643 | { |
Ronnie Sahlberg | 0d5a288 | 2018-06-01 10:53:03 +1000 | [diff] [blame] | 644 | struct smb2_oplock_break *rsp = (struct smb2_oplock_break *)buffer; |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 645 | struct list_head *tmp, *tmp1, *tmp2; |
| 646 | struct cifs_ses *ses; |
| 647 | struct cifs_tcon *tcon; |
| 648 | struct cifsInodeInfo *cinode; |
| 649 | struct cifsFileInfo *cfile; |
| 650 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 651 | cifs_dbg(FYI, "Checking for oplock break\n"); |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 652 | |
Ronnie Sahlberg | 0d5a288 | 2018-06-01 10:53:03 +1000 | [diff] [blame] | 653 | if (rsp->sync_hdr.Command != SMB2_OPLOCK_BREAK) |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 654 | return false; |
| 655 | |
Steve French | 12e8a20 | 2012-09-19 09:19:39 -0700 | [diff] [blame] | 656 | if (rsp->StructureSize != |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 657 | smb2_rsp_struct_sizes[SMB2_OPLOCK_BREAK_HE]) { |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 658 | if (le16_to_cpu(rsp->StructureSize) == 44) |
Pavel Shilovsky | 933d4b3 | 2013-09-05 15:00:07 +0400 | [diff] [blame] | 659 | return smb2_is_valid_lease_break(buffer); |
Pavel Shilovsky | 0822f51 | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 660 | else |
| 661 | return false; |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Steve French | 59b04c5 | 2014-08-02 21:16:48 -0500 | [diff] [blame] | 664 | cifs_dbg(FYI, "oplock level 0x%x\n", rsp->OplockLevel); |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 665 | |
| 666 | /* look up tcon based on tid & uid */ |
| 667 | spin_lock(&cifs_tcp_ses_lock); |
| 668 | list_for_each(tmp, &server->smb_ses_list) { |
| 669 | ses = list_entry(tmp, struct cifs_ses, smb_ses_list); |
| 670 | list_for_each(tmp1, &ses->tcon_list) { |
| 671 | tcon = list_entry(tmp1, struct cifs_tcon, tcon_list); |
| 672 | |
| 673 | cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 674 | spin_lock(&tcon->open_file_lock); |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 675 | list_for_each(tmp2, &tcon->openFileList) { |
| 676 | cfile = list_entry(tmp2, struct cifsFileInfo, |
| 677 | tlist); |
| 678 | if (rsp->PersistentFid != |
| 679 | cfile->fid.persistent_fid || |
| 680 | rsp->VolatileFid != |
| 681 | cfile->fid.volatile_fid) |
| 682 | continue; |
| 683 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 684 | cifs_dbg(FYI, "file id match, oplock break\n"); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 685 | cinode = CIFS_I(d_inode(cfile->dentry)); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 686 | spin_lock(&cfile->file_info_lock); |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 687 | if (!CIFS_CACHE_WRITE(cinode) && |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 688 | rsp->OplockLevel == SMB2_OPLOCK_LEVEL_NONE) |
| 689 | cfile->oplock_break_cancelled = true; |
| 690 | else |
| 691 | cfile->oplock_break_cancelled = false; |
| 692 | |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 693 | set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, |
| 694 | &cinode->flags); |
| 695 | |
| 696 | /* |
| 697 | * Set flag if the server downgrades the oplock |
| 698 | * to L2 else clear. |
| 699 | */ |
| 700 | if (rsp->OplockLevel) |
| 701 | set_bit( |
| 702 | CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2, |
| 703 | &cinode->flags); |
| 704 | else |
| 705 | clear_bit( |
| 706 | CIFS_INODE_DOWNGRADE_OPLOCK_TO_L2, |
| 707 | &cinode->flags); |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 708 | spin_unlock(&cfile->file_info_lock); |
Aurelien Aptel | b98749c | 2019-03-29 10:49:12 +0100 | [diff] [blame] | 709 | |
| 710 | cifs_queue_oplock_break(cfile); |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 711 | |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 712 | spin_unlock(&tcon->open_file_lock); |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 713 | spin_unlock(&cifs_tcp_ses_lock); |
| 714 | return true; |
| 715 | } |
Steve French | 3afca26 | 2016-09-22 18:58:16 -0500 | [diff] [blame] | 716 | spin_unlock(&tcon->open_file_lock); |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 717 | spin_unlock(&cifs_tcp_ses_lock); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 718 | cifs_dbg(FYI, "No matching file for oplock break\n"); |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 719 | return true; |
| 720 | } |
| 721 | } |
| 722 | spin_unlock(&cifs_tcp_ses_lock); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 723 | cifs_dbg(FYI, "Can not process oplock break for non-existent connection\n"); |
Pavel Shilovsky | 983c88a | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 724 | return false; |
| 725 | } |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 726 | |
| 727 | void |
| 728 | smb2_cancelled_close_fid(struct work_struct *work) |
| 729 | { |
| 730 | struct close_cancelled_open *cancelled = container_of(work, |
| 731 | struct close_cancelled_open, work); |
Ronnie Sahlberg | 87bc237 | 2019-11-14 12:32:12 -0600 | [diff] [blame^] | 732 | struct cifs_tcon *tcon = cancelled->tcon; |
| 733 | int rc; |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 734 | |
Ronnie Sahlberg | 87bc237 | 2019-11-14 12:32:12 -0600 | [diff] [blame^] | 735 | if (cancelled->mid) |
| 736 | cifs_tcon_dbg(VFS, "Close unmatched open for MID:%llx\n", |
| 737 | cancelled->mid); |
| 738 | else |
| 739 | cifs_tcon_dbg(VFS, "Close interrupted close\n"); |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 740 | |
Ronnie Sahlberg | 87bc237 | 2019-11-14 12:32:12 -0600 | [diff] [blame^] | 741 | rc = SMB2_close(0, tcon, cancelled->fid.persistent_fid, |
| 742 | cancelled->fid.volatile_fid); |
| 743 | if (rc) |
| 744 | cifs_tcon_dbg(VFS, "Close cancelled mid failed rc:%d\n", rc); |
| 745 | |
| 746 | cifs_put_tcon(tcon); |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 747 | kfree(cancelled); |
| 748 | } |
| 749 | |
Ronnie Sahlberg | 87bc237 | 2019-11-14 12:32:12 -0600 | [diff] [blame^] | 750 | /* |
| 751 | * Caller should already has an extra reference to @tcon |
| 752 | * This function is used to queue work to close a handle to prevent leaks |
| 753 | * on the server. |
| 754 | * We handle two cases. If an open was interrupted after we sent the |
| 755 | * SMB2_CREATE to the server but before we processed the reply, and second |
| 756 | * if a close was interrupted before we sent the SMB2_CLOSE to the server. |
| 757 | */ |
Pavel Shilovsky | 9150c3a | 2019-11-21 11:35:12 -0800 | [diff] [blame] | 758 | static int |
Ronnie Sahlberg | 87bc237 | 2019-11-14 12:32:12 -0600 | [diff] [blame^] | 759 | __smb2_handle_cancelled_cmd(struct cifs_tcon *tcon, __u16 cmd, __u64 mid, |
| 760 | __u64 persistent_fid, __u64 volatile_fid) |
Pavel Shilovsky | 9150c3a | 2019-11-21 11:35:12 -0800 | [diff] [blame] | 761 | { |
| 762 | struct close_cancelled_open *cancelled; |
| 763 | |
| 764 | cancelled = kzalloc(sizeof(*cancelled), GFP_KERNEL); |
| 765 | if (!cancelled) |
| 766 | return -ENOMEM; |
| 767 | |
| 768 | cancelled->fid.persistent_fid = persistent_fid; |
| 769 | cancelled->fid.volatile_fid = volatile_fid; |
| 770 | cancelled->tcon = tcon; |
Ronnie Sahlberg | 87bc237 | 2019-11-14 12:32:12 -0600 | [diff] [blame^] | 771 | cancelled->cmd = cmd; |
| 772 | cancelled->mid = mid; |
Pavel Shilovsky | 9150c3a | 2019-11-21 11:35:12 -0800 | [diff] [blame] | 773 | INIT_WORK(&cancelled->work, smb2_cancelled_close_fid); |
| 774 | WARN_ON(queue_work(cifsiod_wq, &cancelled->work) == false); |
| 775 | |
| 776 | return 0; |
| 777 | } |
| 778 | |
| 779 | int |
| 780 | smb2_handle_cancelled_close(struct cifs_tcon *tcon, __u64 persistent_fid, |
| 781 | __u64 volatile_fid) |
| 782 | { |
| 783 | int rc; |
| 784 | |
| 785 | cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count); |
| 786 | spin_lock(&cifs_tcp_ses_lock); |
| 787 | tcon->tc_count++; |
| 788 | spin_unlock(&cifs_tcp_ses_lock); |
| 789 | |
Ronnie Sahlberg | 87bc237 | 2019-11-14 12:32:12 -0600 | [diff] [blame^] | 790 | rc = __smb2_handle_cancelled_cmd(tcon, SMB2_CLOSE_HE, 0, |
| 791 | persistent_fid, volatile_fid); |
Pavel Shilovsky | 9150c3a | 2019-11-21 11:35:12 -0800 | [diff] [blame] | 792 | if (rc) |
| 793 | cifs_put_tcon(tcon); |
| 794 | |
| 795 | return rc; |
| 796 | } |
| 797 | |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 798 | int |
| 799 | smb2_handle_cancelled_mid(char *buffer, struct TCP_Server_Info *server) |
| 800 | { |
Ronnie Sahlberg | 49f466b | 2018-06-01 10:53:06 +1000 | [diff] [blame] | 801 | struct smb2_sync_hdr *sync_hdr = (struct smb2_sync_hdr *)buffer; |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 802 | struct smb2_create_rsp *rsp = (struct smb2_create_rsp *)buffer; |
| 803 | struct cifs_tcon *tcon; |
Pavel Shilovsky | 9150c3a | 2019-11-21 11:35:12 -0800 | [diff] [blame] | 804 | int rc; |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 805 | |
| 806 | if (sync_hdr->Command != SMB2_CREATE || |
| 807 | sync_hdr->Status != STATUS_SUCCESS) |
| 808 | return 0; |
| 809 | |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 810 | tcon = smb2_find_smb_tcon(server, sync_hdr->SessionId, |
| 811 | sync_hdr->TreeId); |
Pavel Shilovsky | 9150c3a | 2019-11-21 11:35:12 -0800 | [diff] [blame] | 812 | if (!tcon) |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 813 | return -ENOENT; |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 814 | |
Ronnie Sahlberg | 87bc237 | 2019-11-14 12:32:12 -0600 | [diff] [blame^] | 815 | rc = __smb2_handle_cancelled_cmd(tcon, |
| 816 | le16_to_cpu(sync_hdr->Command), |
| 817 | le64_to_cpu(sync_hdr->MessageId), |
| 818 | rsp->PersistentFileId, |
| 819 | rsp->VolatileFileId); |
Pavel Shilovsky | 9150c3a | 2019-11-21 11:35:12 -0800 | [diff] [blame] | 820 | if (rc) |
| 821 | cifs_put_tcon(tcon); |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 822 | |
Pavel Shilovsky | 9150c3a | 2019-11-21 11:35:12 -0800 | [diff] [blame] | 823 | return rc; |
Sachin Prabhu | 38bd490 | 2017-03-03 15:41:38 -0800 | [diff] [blame] | 824 | } |
Aurelien Aptel | 8bd68c6 | 2018-02-16 19:19:29 +0100 | [diff] [blame] | 825 | |
Aurelien Aptel | 8bd68c6 | 2018-02-16 19:19:29 +0100 | [diff] [blame] | 826 | /** |
| 827 | * smb311_update_preauth_hash - update @ses hash with the packet data in @iov |
| 828 | * |
| 829 | * Assumes @iov does not contain the rfc1002 length and iov[0] has the |
| 830 | * SMB2 header. |
| 831 | */ |
| 832 | int |
| 833 | smb311_update_preauth_hash(struct cifs_ses *ses, struct kvec *iov, int nvec) |
| 834 | { |
| 835 | int i, rc; |
| 836 | struct sdesc *d; |
| 837 | struct smb2_sync_hdr *hdr; |
| 838 | |
| 839 | if (ses->server->tcpStatus == CifsGood) { |
| 840 | /* skip non smb311 connections */ |
| 841 | if (ses->server->dialect != SMB311_PROT_ID) |
| 842 | return 0; |
| 843 | |
| 844 | /* skip last sess setup response */ |
| 845 | hdr = (struct smb2_sync_hdr *)iov[0].iov_base; |
| 846 | if (hdr->Flags & SMB2_FLAGS_SIGNED) |
| 847 | return 0; |
| 848 | } |
| 849 | |
| 850 | rc = smb311_crypto_shash_allocate(ses->server); |
| 851 | if (rc) |
| 852 | return rc; |
| 853 | |
| 854 | d = ses->server->secmech.sdescsha512; |
| 855 | rc = crypto_shash_init(&d->shash); |
| 856 | if (rc) { |
| 857 | cifs_dbg(VFS, "%s: could not init sha512 shash\n", __func__); |
| 858 | return rc; |
| 859 | } |
| 860 | |
| 861 | rc = crypto_shash_update(&d->shash, ses->preauth_sha_hash, |
| 862 | SMB2_PREAUTH_HASH_SIZE); |
| 863 | if (rc) { |
| 864 | cifs_dbg(VFS, "%s: could not update sha512 shash\n", __func__); |
| 865 | return rc; |
| 866 | } |
| 867 | |
| 868 | for (i = 0; i < nvec; i++) { |
| 869 | rc = crypto_shash_update(&d->shash, |
| 870 | iov[i].iov_base, iov[i].iov_len); |
| 871 | if (rc) { |
| 872 | cifs_dbg(VFS, "%s: could not update sha512 shash\n", |
| 873 | __func__); |
| 874 | return rc; |
| 875 | } |
| 876 | } |
| 877 | |
| 878 | rc = crypto_shash_final(&d->shash, ses->preauth_sha_hash); |
| 879 | if (rc) { |
| 880 | cifs_dbg(VFS, "%s: could not finalize sha512 shash\n", |
| 881 | __func__); |
| 882 | return rc; |
| 883 | } |
| 884 | |
| 885 | return 0; |
| 886 | } |