blob: a53e2053ae9df9699ebfc1e85cf9ed5c69f4197c [file] [log] [blame]
Steve French1080ef72011-02-24 18:07:19 +00001/*
2 * SMB2 version specific operations
3 *
4 * Copyright (c) 2012, Jeff Layton <jlayton@redhat.com>
5 *
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.
9 *
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.
14 *
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
18 */
19
Pavel Shilovsky3a3bab52012-09-18 16:20:28 -070020#include <linux/pagemap.h>
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -070021#include <linux/vfs.h>
Steve French1080ef72011-02-24 18:07:19 +000022#include "cifsglob.h"
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040023#include "smb2pdu.h"
24#include "smb2proto.h"
Pavel Shilovsky28ea5292012-05-23 16:18:00 +040025#include "cifsproto.h"
26#include "cifs_debug.h"
Pavel Shilovskyb42bf882013-08-14 19:25:21 +040027#include "cifs_unicode.h"
Pavel Shilovsky2e44b282012-09-18 16:20:33 -070028#include "smb2status.h"
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -070029#include "smb2glob.h"
Pavel Shilovsky28ea5292012-05-23 16:18:00 +040030
31static int
32change_conf(struct TCP_Server_Info *server)
33{
34 server->credits += server->echo_credits + server->oplock_credits;
35 server->oplock_credits = server->echo_credits = 0;
36 switch (server->credits) {
37 case 0:
38 return -1;
39 case 1:
40 server->echoes = false;
41 server->oplocks = false;
Joe Perchesf96637b2013-05-04 22:12:25 -050042 cifs_dbg(VFS, "disabling echoes and oplocks\n");
Pavel Shilovsky28ea5292012-05-23 16:18:00 +040043 break;
44 case 2:
45 server->echoes = true;
46 server->oplocks = false;
47 server->echo_credits = 1;
Joe Perchesf96637b2013-05-04 22:12:25 -050048 cifs_dbg(FYI, "disabling oplocks\n");
Pavel Shilovsky28ea5292012-05-23 16:18:00 +040049 break;
50 default:
51 server->echoes = true;
52 server->oplocks = true;
53 server->echo_credits = 1;
54 server->oplock_credits = 1;
55 }
56 server->credits -= server->echo_credits + server->oplock_credits;
57 return 0;
58}
59
60static void
61smb2_add_credits(struct TCP_Server_Info *server, const unsigned int add,
62 const int optype)
63{
64 int *val, rc = 0;
65 spin_lock(&server->req_lock);
66 val = server->ops->get_credits_field(server, optype);
67 *val += add;
68 server->in_flight--;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040069 if (server->in_flight == 0 && (optype & CIFS_OP_MASK) != CIFS_NEG_OP)
Pavel Shilovsky28ea5292012-05-23 16:18:00 +040070 rc = change_conf(server);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -070071 /*
72 * Sometimes server returns 0 credits on oplock break ack - we need to
73 * rebalance credits in this case.
74 */
75 else if (server->in_flight > 0 && server->oplock_credits == 0 &&
76 server->oplocks) {
77 if (server->credits > 1) {
78 server->credits--;
79 server->oplock_credits++;
80 }
81 }
Pavel Shilovsky28ea5292012-05-23 16:18:00 +040082 spin_unlock(&server->req_lock);
83 wake_up(&server->request_q);
84 if (rc)
85 cifs_reconnect(server);
86}
87
88static void
89smb2_set_credits(struct TCP_Server_Info *server, const int val)
90{
91 spin_lock(&server->req_lock);
92 server->credits = val;
93 spin_unlock(&server->req_lock);
94}
95
96static int *
97smb2_get_credits_field(struct TCP_Server_Info *server, const int optype)
98{
99 switch (optype) {
100 case CIFS_ECHO_OP:
101 return &server->echo_credits;
102 case CIFS_OBREAK_OP:
103 return &server->oplock_credits;
104 default:
105 return &server->credits;
106 }
107}
108
109static unsigned int
110smb2_get_credits(struct mid_q_entry *mid)
111{
112 return le16_to_cpu(((struct smb2_hdr *)mid->resp_buf)->CreditRequest);
113}
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400114
115static __u64
116smb2_get_next_mid(struct TCP_Server_Info *server)
117{
118 __u64 mid;
119 /* for SMB2 we need the current value */
120 spin_lock(&GlobalMid_Lock);
121 mid = server->CurrentMid++;
122 spin_unlock(&GlobalMid_Lock);
123 return mid;
124}
Steve French1080ef72011-02-24 18:07:19 +0000125
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400126static struct mid_q_entry *
127smb2_find_mid(struct TCP_Server_Info *server, char *buf)
128{
129 struct mid_q_entry *mid;
130 struct smb2_hdr *hdr = (struct smb2_hdr *)buf;
131
132 spin_lock(&GlobalMid_Lock);
133 list_for_each_entry(mid, &server->pending_mid_q, qhead) {
134 if ((mid->mid == hdr->MessageId) &&
135 (mid->mid_state == MID_REQUEST_SUBMITTED) &&
136 (mid->command == hdr->Command)) {
137 spin_unlock(&GlobalMid_Lock);
138 return mid;
139 }
140 }
141 spin_unlock(&GlobalMid_Lock);
142 return NULL;
143}
144
145static void
146smb2_dump_detail(void *buf)
147{
148#ifdef CONFIG_CIFS_DEBUG2
149 struct smb2_hdr *smb = (struct smb2_hdr *)buf;
150
Joe Perchesf96637b2013-05-04 22:12:25 -0500151 cifs_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Mid: %llu Pid: %d\n",
152 smb->Command, smb->Status, smb->Flags, smb->MessageId,
153 smb->ProcessId);
154 cifs_dbg(VFS, "smb buf %p len %u\n", smb, smb2_calc_size(smb));
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400155#endif
156}
157
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400158static bool
159smb2_need_neg(struct TCP_Server_Info *server)
160{
161 return server->max_read == 0;
162}
163
164static int
165smb2_negotiate(const unsigned int xid, struct cifs_ses *ses)
166{
167 int rc;
168 ses->server->CurrentMid = 0;
169 rc = SMB2_negotiate(xid, ses);
170 /* BB we probably don't need to retry with modern servers */
171 if (rc == -EAGAIN)
172 rc = -EHOSTDOWN;
173 return rc;
174}
175
Pavel Shilovsky3a3bab52012-09-18 16:20:28 -0700176static unsigned int
177smb2_negotiate_wsize(struct cifs_tcon *tcon, struct smb_vol *volume_info)
178{
179 struct TCP_Server_Info *server = tcon->ses->server;
180 unsigned int wsize;
181
182 /* start with specified wsize, or default */
183 wsize = volume_info->wsize ? volume_info->wsize : CIFS_DEFAULT_IOSIZE;
184 wsize = min_t(unsigned int, wsize, server->max_write);
185 /*
186 * limit write size to 2 ** 16, because we don't support multicredit
187 * requests now.
188 */
189 wsize = min_t(unsigned int, wsize, 2 << 15);
190
Pavel Shilovsky3a3bab52012-09-18 16:20:28 -0700191 return wsize;
192}
193
194static unsigned int
195smb2_negotiate_rsize(struct cifs_tcon *tcon, struct smb_vol *volume_info)
196{
197 struct TCP_Server_Info *server = tcon->ses->server;
198 unsigned int rsize;
199
200 /* start with specified rsize, or default */
201 rsize = volume_info->rsize ? volume_info->rsize : CIFS_DEFAULT_IOSIZE;
202 rsize = min_t(unsigned int, rsize, server->max_read);
203 /*
204 * limit write size to 2 ** 16, because we don't support multicredit
205 * requests now.
206 */
207 rsize = min_t(unsigned int, rsize, 2 << 15);
208
Pavel Shilovsky3a3bab52012-09-18 16:20:28 -0700209 return rsize;
210}
211
Steve French34f62642013-10-09 02:07:00 -0500212static void
213smb2_qfs_tcon(const unsigned int xid, struct cifs_tcon *tcon)
214{
215 int rc;
216 __le16 srch_path = 0; /* Null - open root of share */
217 u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
218 struct cifs_open_parms oparms;
219 struct cifs_fid fid;
220
221 oparms.tcon = tcon;
222 oparms.desired_access = FILE_READ_ATTRIBUTES;
223 oparms.disposition = FILE_OPEN;
224 oparms.create_options = 0;
225 oparms.fid = &fid;
226 oparms.reconnect = false;
227
228 rc = SMB2_open(xid, &oparms, &srch_path, &oplock, NULL, NULL);
229 if (rc)
230 return;
231
232 SMB2_QFS_attr(xid, tcon, fid.persistent_fid, fid.volatile_fid);
233 SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid);
234 return;
235}
236
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400237static int
238smb2_is_path_accessible(const unsigned int xid, struct cifs_tcon *tcon,
239 struct cifs_sb_info *cifs_sb, const char *full_path)
240{
241 int rc;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400242 __le16 *utf16_path;
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700243 __u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400244 struct cifs_open_parms oparms;
245 struct cifs_fid fid;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400246
247 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb);
248 if (!utf16_path)
249 return -ENOMEM;
250
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400251 oparms.tcon = tcon;
252 oparms.desired_access = FILE_READ_ATTRIBUTES;
253 oparms.disposition = FILE_OPEN;
254 oparms.create_options = 0;
255 oparms.fid = &fid;
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +0400256 oparms.reconnect = false;
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400257
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400258 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400259 if (rc) {
260 kfree(utf16_path);
261 return rc;
262 }
263
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400264 rc = SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400265 kfree(utf16_path);
266 return rc;
267}
268
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400269static int
270smb2_get_srv_inum(const unsigned int xid, struct cifs_tcon *tcon,
271 struct cifs_sb_info *cifs_sb, const char *full_path,
272 u64 *uniqueid, FILE_ALL_INFO *data)
273{
274 *uniqueid = le64_to_cpu(data->IndexNumber);
275 return 0;
276}
277
Pavel Shilovskyb7546bc2012-09-18 16:20:27 -0700278static int
279smb2_query_file_info(const unsigned int xid, struct cifs_tcon *tcon,
280 struct cifs_fid *fid, FILE_ALL_INFO *data)
281{
282 int rc;
283 struct smb2_file_all_info *smb2_data;
284
285 smb2_data = kzalloc(sizeof(struct smb2_file_all_info) + MAX_NAME * 2,
286 GFP_KERNEL);
287 if (smb2_data == NULL)
288 return -ENOMEM;
289
290 rc = SMB2_query_info(xid, tcon, fid->persistent_fid, fid->volatile_fid,
291 smb2_data);
292 if (!rc)
293 move_smb2_info_to_cifs(data, smb2_data);
294 kfree(smb2_data);
295 return rc;
296}
297
Pavel Shilovsky9094fad2012-07-12 18:30:44 +0400298static bool
299smb2_can_echo(struct TCP_Server_Info *server)
300{
301 return server->echoes;
302}
303
Pavel Shilovskyd60622e2012-05-28 15:19:39 +0400304static void
305smb2_clear_stats(struct cifs_tcon *tcon)
306{
307#ifdef CONFIG_CIFS_STATS
308 int i;
309 for (i = 0; i < NUMBER_OF_SMB2_COMMANDS; i++) {
310 atomic_set(&tcon->stats.smb2_stats.smb2_com_sent[i], 0);
311 atomic_set(&tcon->stats.smb2_stats.smb2_com_failed[i], 0);
312 }
313#endif
314}
315
316static void
Steve French769ee6a2013-06-19 14:15:30 -0500317smb2_dump_share_caps(struct seq_file *m, struct cifs_tcon *tcon)
318{
319 seq_puts(m, "\n\tShare Capabilities:");
320 if (tcon->capabilities & SMB2_SHARE_CAP_DFS)
321 seq_puts(m, " DFS,");
322 if (tcon->capabilities & SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY)
323 seq_puts(m, " CONTINUOUS AVAILABILITY,");
324 if (tcon->capabilities & SMB2_SHARE_CAP_SCALEOUT)
325 seq_puts(m, " SCALEOUT,");
326 if (tcon->capabilities & SMB2_SHARE_CAP_CLUSTER)
327 seq_puts(m, " CLUSTER,");
328 if (tcon->capabilities & SMB2_SHARE_CAP_ASYMMETRIC)
329 seq_puts(m, " ASYMMETRIC,");
330 if (tcon->capabilities == 0)
331 seq_puts(m, " None");
332 seq_printf(m, "\tShare Flags: 0x%x", tcon->share_flags);
333}
334
335static void
Pavel Shilovskyd60622e2012-05-28 15:19:39 +0400336smb2_print_stats(struct seq_file *m, struct cifs_tcon *tcon)
337{
338#ifdef CONFIG_CIFS_STATS
339 atomic_t *sent = tcon->stats.smb2_stats.smb2_com_sent;
340 atomic_t *failed = tcon->stats.smb2_stats.smb2_com_failed;
341 seq_printf(m, "\nNegotiates: %d sent %d failed",
342 atomic_read(&sent[SMB2_NEGOTIATE_HE]),
343 atomic_read(&failed[SMB2_NEGOTIATE_HE]));
344 seq_printf(m, "\nSessionSetups: %d sent %d failed",
345 atomic_read(&sent[SMB2_SESSION_SETUP_HE]),
346 atomic_read(&failed[SMB2_SESSION_SETUP_HE]));
Pavel Shilovskyd60622e2012-05-28 15:19:39 +0400347 seq_printf(m, "\nLogoffs: %d sent %d failed",
348 atomic_read(&sent[SMB2_LOGOFF_HE]),
349 atomic_read(&failed[SMB2_LOGOFF_HE]));
350 seq_printf(m, "\nTreeConnects: %d sent %d failed",
351 atomic_read(&sent[SMB2_TREE_CONNECT_HE]),
352 atomic_read(&failed[SMB2_TREE_CONNECT_HE]));
353 seq_printf(m, "\nTreeDisconnects: %d sent %d failed",
354 atomic_read(&sent[SMB2_TREE_DISCONNECT_HE]),
355 atomic_read(&failed[SMB2_TREE_DISCONNECT_HE]));
356 seq_printf(m, "\nCreates: %d sent %d failed",
357 atomic_read(&sent[SMB2_CREATE_HE]),
358 atomic_read(&failed[SMB2_CREATE_HE]));
359 seq_printf(m, "\nCloses: %d sent %d failed",
360 atomic_read(&sent[SMB2_CLOSE_HE]),
361 atomic_read(&failed[SMB2_CLOSE_HE]));
362 seq_printf(m, "\nFlushes: %d sent %d failed",
363 atomic_read(&sent[SMB2_FLUSH_HE]),
364 atomic_read(&failed[SMB2_FLUSH_HE]));
365 seq_printf(m, "\nReads: %d sent %d failed",
366 atomic_read(&sent[SMB2_READ_HE]),
367 atomic_read(&failed[SMB2_READ_HE]));
368 seq_printf(m, "\nWrites: %d sent %d failed",
369 atomic_read(&sent[SMB2_WRITE_HE]),
370 atomic_read(&failed[SMB2_WRITE_HE]));
371 seq_printf(m, "\nLocks: %d sent %d failed",
372 atomic_read(&sent[SMB2_LOCK_HE]),
373 atomic_read(&failed[SMB2_LOCK_HE]));
374 seq_printf(m, "\nIOCTLs: %d sent %d failed",
375 atomic_read(&sent[SMB2_IOCTL_HE]),
376 atomic_read(&failed[SMB2_IOCTL_HE]));
377 seq_printf(m, "\nCancels: %d sent %d failed",
378 atomic_read(&sent[SMB2_CANCEL_HE]),
379 atomic_read(&failed[SMB2_CANCEL_HE]));
380 seq_printf(m, "\nEchos: %d sent %d failed",
381 atomic_read(&sent[SMB2_ECHO_HE]),
382 atomic_read(&failed[SMB2_ECHO_HE]));
383 seq_printf(m, "\nQueryDirectories: %d sent %d failed",
384 atomic_read(&sent[SMB2_QUERY_DIRECTORY_HE]),
385 atomic_read(&failed[SMB2_QUERY_DIRECTORY_HE]));
386 seq_printf(m, "\nChangeNotifies: %d sent %d failed",
387 atomic_read(&sent[SMB2_CHANGE_NOTIFY_HE]),
388 atomic_read(&failed[SMB2_CHANGE_NOTIFY_HE]));
389 seq_printf(m, "\nQueryInfos: %d sent %d failed",
390 atomic_read(&sent[SMB2_QUERY_INFO_HE]),
391 atomic_read(&failed[SMB2_QUERY_INFO_HE]));
392 seq_printf(m, "\nSetInfos: %d sent %d failed",
393 atomic_read(&sent[SMB2_SET_INFO_HE]),
394 atomic_read(&failed[SMB2_SET_INFO_HE]));
395 seq_printf(m, "\nOplockBreaks: %d sent %d failed",
396 atomic_read(&sent[SMB2_OPLOCK_BREAK_HE]),
397 atomic_read(&failed[SMB2_OPLOCK_BREAK_HE]));
398#endif
399}
400
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700401static void
402smb2_set_fid(struct cifsFileInfo *cfile, struct cifs_fid *fid, __u32 oplock)
403{
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700404 struct cifsInodeInfo *cinode = CIFS_I(cfile->dentry->d_inode);
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400405 struct TCP_Server_Info *server = tlink_tcon(cfile->tlink)->ses->server;
406
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700407 cfile->fid.persistent_fid = fid->persistent_fid;
408 cfile->fid.volatile_fid = fid->volatile_fid;
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400409 server->ops->set_oplock_level(cinode, oplock, fid->epoch,
410 &fid->purge_cache);
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400411 cinode->can_cache_brlcks = CIFS_CACHE_WRITE(cinode);
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700412}
413
Pavel Shilovsky760ad0c2012-09-25 11:00:07 +0400414static void
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700415smb2_close_file(const unsigned int xid, struct cifs_tcon *tcon,
416 struct cifs_fid *fid)
417{
Pavel Shilovsky760ad0c2012-09-25 11:00:07 +0400418 SMB2_close(xid, tcon, fid->persistent_fid, fid->volatile_fid);
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700419}
420
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -0700421static int
422smb2_flush_file(const unsigned int xid, struct cifs_tcon *tcon,
423 struct cifs_fid *fid)
424{
425 return SMB2_flush(xid, tcon, fid->persistent_fid, fid->volatile_fid);
426}
427
Pavel Shilovsky09a47072012-09-18 16:20:29 -0700428static unsigned int
429smb2_read_data_offset(char *buf)
430{
431 struct smb2_read_rsp *rsp = (struct smb2_read_rsp *)buf;
432 return rsp->DataOffset;
433}
434
435static unsigned int
436smb2_read_data_length(char *buf)
437{
438 struct smb2_read_rsp *rsp = (struct smb2_read_rsp *)buf;
439 return le32_to_cpu(rsp->DataLength);
440}
441
Pavel Shilovskyd8e05032012-09-18 16:20:30 -0700442
443static int
444smb2_sync_read(const unsigned int xid, struct cifsFileInfo *cfile,
445 struct cifs_io_parms *parms, unsigned int *bytes_read,
446 char **buf, int *buf_type)
447{
448 parms->persistent_fid = cfile->fid.persistent_fid;
449 parms->volatile_fid = cfile->fid.volatile_fid;
450 return SMB2_read(xid, parms, bytes_read, buf, buf_type);
451}
452
Pavel Shilovsky009d3442012-09-18 16:20:30 -0700453static int
454smb2_sync_write(const unsigned int xid, struct cifsFileInfo *cfile,
455 struct cifs_io_parms *parms, unsigned int *written,
456 struct kvec *iov, unsigned long nr_segs)
457{
458
459 parms->persistent_fid = cfile->fid.persistent_fid;
460 parms->volatile_fid = cfile->fid.volatile_fid;
461 return SMB2_write(xid, parms, written, iov, nr_segs);
462}
463
Pavel Shilovskyc839ff22012-09-18 16:20:32 -0700464static int
465smb2_set_file_size(const unsigned int xid, struct cifs_tcon *tcon,
466 struct cifsFileInfo *cfile, __u64 size, bool set_alloc)
467{
468 __le64 eof = cpu_to_le64(size);
469 return SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid,
470 cfile->fid.volatile_fid, cfile->pid, &eof);
471}
472
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700473static int
Steve French64a5cfa2013-10-14 15:31:32 -0500474smb2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
475 struct cifsFileInfo *cfile)
476{
477 return SMB2_set_compression(xid, tcon, cfile->fid.persistent_fid,
478 cfile->fid.volatile_fid);
479}
480
481static int
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700482smb2_query_dir_first(const unsigned int xid, struct cifs_tcon *tcon,
483 const char *path, struct cifs_sb_info *cifs_sb,
484 struct cifs_fid *fid, __u16 search_flags,
485 struct cifs_search_info *srch_inf)
486{
487 __le16 *utf16_path;
488 int rc;
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700489 __u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400490 struct cifs_open_parms oparms;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700491
492 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb);
493 if (!utf16_path)
494 return -ENOMEM;
495
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400496 oparms.tcon = tcon;
497 oparms.desired_access = FILE_READ_ATTRIBUTES | FILE_READ_DATA;
498 oparms.disposition = FILE_OPEN;
499 oparms.create_options = 0;
500 oparms.fid = fid;
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +0400501 oparms.reconnect = false;
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400502
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400503 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700504 kfree(utf16_path);
505 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500506 cifs_dbg(VFS, "open dir failed\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700507 return rc;
508 }
509
510 srch_inf->entries_in_buffer = 0;
511 srch_inf->index_of_last_entry = 0;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700512
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400513 rc = SMB2_query_directory(xid, tcon, fid->persistent_fid,
514 fid->volatile_fid, 0, srch_inf);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700515 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500516 cifs_dbg(VFS, "query directory failed\n");
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400517 SMB2_close(xid, tcon, fid->persistent_fid, fid->volatile_fid);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -0700518 }
519 return rc;
520}
521
522static int
523smb2_query_dir_next(const unsigned int xid, struct cifs_tcon *tcon,
524 struct cifs_fid *fid, __u16 search_flags,
525 struct cifs_search_info *srch_inf)
526{
527 return SMB2_query_directory(xid, tcon, fid->persistent_fid,
528 fid->volatile_fid, 0, srch_inf);
529}
530
531static int
532smb2_close_dir(const unsigned int xid, struct cifs_tcon *tcon,
533 struct cifs_fid *fid)
534{
535 return SMB2_close(xid, tcon, fid->persistent_fid, fid->volatile_fid);
536}
537
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700538/*
539* If we negotiate SMB2 protocol and get STATUS_PENDING - update
540* the number of credits and return true. Otherwise - return false.
541*/
542static bool
543smb2_is_status_pending(char *buf, struct TCP_Server_Info *server, int length)
544{
545 struct smb2_hdr *hdr = (struct smb2_hdr *)buf;
546
Steve French12e8a202012-09-19 09:19:39 -0700547 if (hdr->Status != STATUS_PENDING)
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700548 return false;
549
550 if (!length) {
551 spin_lock(&server->req_lock);
552 server->credits += le16_to_cpu(hdr->CreditRequest);
553 spin_unlock(&server->req_lock);
554 wake_up(&server->request_q);
555 }
556
557 return true;
558}
559
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700560static int
561smb2_oplock_response(struct cifs_tcon *tcon, struct cifs_fid *fid,
562 struct cifsInodeInfo *cinode)
563{
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700564 if (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LEASING)
565 return SMB2_lease_break(0, tcon, cinode->lease_key,
566 smb2_get_lease_state(cinode));
567
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700568 return SMB2_oplock_break(0, tcon, fid->persistent_fid,
569 fid->volatile_fid,
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400570 CIFS_CACHE_READ(cinode) ? 1 : 0);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700571}
572
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -0700573static int
574smb2_queryfs(const unsigned int xid, struct cifs_tcon *tcon,
575 struct kstatfs *buf)
576{
577 int rc;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -0700578 __le16 srch_path = 0; /* Null - open root of share */
579 u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400580 struct cifs_open_parms oparms;
581 struct cifs_fid fid;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -0700582
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400583 oparms.tcon = tcon;
584 oparms.desired_access = FILE_READ_ATTRIBUTES;
585 oparms.disposition = FILE_OPEN;
586 oparms.create_options = 0;
587 oparms.fid = &fid;
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +0400588 oparms.reconnect = false;
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400589
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400590 rc = SMB2_open(xid, &oparms, &srch_path, &oplock, NULL, NULL);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -0700591 if (rc)
592 return rc;
593 buf->f_type = SMB2_MAGIC_NUMBER;
Pavel Shilovsky064f6042013-07-09 18:20:30 +0400594 rc = SMB2_QFS_info(xid, tcon, fid.persistent_fid, fid.volatile_fid,
595 buf);
596 SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -0700597 return rc;
598}
599
Pavel Shilovsky027e8ee2012-09-19 06:22:43 -0700600static bool
601smb2_compare_fids(struct cifsFileInfo *ob1, struct cifsFileInfo *ob2)
602{
603 return ob1->fid.persistent_fid == ob2->fid.persistent_fid &&
604 ob1->fid.volatile_fid == ob2->fid.volatile_fid;
605}
606
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -0700607static int
608smb2_mand_lock(const unsigned int xid, struct cifsFileInfo *cfile, __u64 offset,
609 __u64 length, __u32 type, int lock, int unlock, bool wait)
610{
611 if (unlock && !lock)
612 type = SMB2_LOCKFLAG_UNLOCK;
613 return SMB2_lock(xid, tlink_tcon(cfile->tlink),
614 cfile->fid.persistent_fid, cfile->fid.volatile_fid,
615 current->tgid, length, offset, type, wait);
616}
617
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700618static void
619smb2_get_lease_key(struct inode *inode, struct cifs_fid *fid)
620{
621 memcpy(fid->lease_key, CIFS_I(inode)->lease_key, SMB2_LEASE_KEY_SIZE);
622}
623
624static void
625smb2_set_lease_key(struct inode *inode, struct cifs_fid *fid)
626{
627 memcpy(CIFS_I(inode)->lease_key, fid->lease_key, SMB2_LEASE_KEY_SIZE);
628}
629
630static void
631smb2_new_lease_key(struct cifs_fid *fid)
632{
633 get_random_bytes(fid->lease_key, SMB2_LEASE_KEY_SIZE);
634}
635
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400636static int
637smb2_query_symlink(const unsigned int xid, struct cifs_tcon *tcon,
638 const char *full_path, char **target_path,
639 struct cifs_sb_info *cifs_sb)
640{
641 int rc;
642 __le16 *utf16_path;
643 __u8 oplock = SMB2_OPLOCK_LEVEL_NONE;
644 struct cifs_open_parms oparms;
645 struct cifs_fid fid;
646 struct smb2_err_rsp *err_buf = NULL;
647 struct smb2_symlink_err_rsp *symlink;
648 unsigned int sub_len, sub_offset;
649
650 cifs_dbg(FYI, "%s: path: %s\n", __func__, full_path);
651
652 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb);
653 if (!utf16_path)
654 return -ENOMEM;
655
656 oparms.tcon = tcon;
657 oparms.desired_access = FILE_READ_ATTRIBUTES;
658 oparms.disposition = FILE_OPEN;
659 oparms.create_options = 0;
660 oparms.fid = &fid;
661 oparms.reconnect = false;
662
663 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, &err_buf);
664
665 if (!rc || !err_buf) {
666 kfree(utf16_path);
667 return -ENOENT;
668 }
669 /* open must fail on symlink - reset rc */
670 rc = 0;
671 symlink = (struct smb2_symlink_err_rsp *)err_buf->ErrorData;
672 sub_len = le16_to_cpu(symlink->SubstituteNameLength);
673 sub_offset = le16_to_cpu(symlink->SubstituteNameOffset);
674 *target_path = cifs_strndup_from_utf16(
675 (char *)symlink->PathBuffer + sub_offset,
676 sub_len, true, cifs_sb->local_nls);
677 if (!(*target_path)) {
678 kfree(utf16_path);
679 return -ENOMEM;
680 }
681 convert_delimiter(*target_path, '/');
682 cifs_dbg(FYI, "%s: target path: %s\n", __func__, *target_path);
683 kfree(utf16_path);
684 return rc;
685}
686
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400687static void
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400688smb2_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock,
689 unsigned int epoch, bool *purge_cache)
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400690{
691 oplock &= 0xFF;
692 if (oplock == SMB2_OPLOCK_LEVEL_NOCHANGE)
693 return;
694 if (oplock == SMB2_OPLOCK_LEVEL_BATCH) {
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400695 cinode->oplock = CIFS_CACHE_RHW_FLG;
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400696 cifs_dbg(FYI, "Batch Oplock granted on inode %p\n",
697 &cinode->vfs_inode);
698 } else if (oplock == SMB2_OPLOCK_LEVEL_EXCLUSIVE) {
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400699 cinode->oplock = CIFS_CACHE_RW_FLG;
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400700 cifs_dbg(FYI, "Exclusive Oplock granted on inode %p\n",
701 &cinode->vfs_inode);
702 } else if (oplock == SMB2_OPLOCK_LEVEL_II) {
703 cinode->oplock = CIFS_CACHE_READ_FLG;
704 cifs_dbg(FYI, "Level II Oplock granted on inode %p\n",
705 &cinode->vfs_inode);
706 } else
707 cinode->oplock = 0;
708}
709
710static void
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400711smb21_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock,
712 unsigned int epoch, bool *purge_cache)
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400713{
714 char message[5] = {0};
715
716 oplock &= 0xFF;
717 if (oplock == SMB2_OPLOCK_LEVEL_NOCHANGE)
718 return;
719
720 cinode->oplock = 0;
721 if (oplock & SMB2_LEASE_READ_CACHING_HE) {
722 cinode->oplock |= CIFS_CACHE_READ_FLG;
723 strcat(message, "R");
724 }
725 if (oplock & SMB2_LEASE_HANDLE_CACHING_HE) {
726 cinode->oplock |= CIFS_CACHE_HANDLE_FLG;
727 strcat(message, "H");
728 }
729 if (oplock & SMB2_LEASE_WRITE_CACHING_HE) {
730 cinode->oplock |= CIFS_CACHE_WRITE_FLG;
731 strcat(message, "W");
732 }
733 if (!cinode->oplock)
734 strcat(message, "None");
735 cifs_dbg(FYI, "%s Lease granted on inode %p\n", message,
736 &cinode->vfs_inode);
737}
738
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400739static void
740smb3_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock,
741 unsigned int epoch, bool *purge_cache)
742{
743 unsigned int old_oplock = cinode->oplock;
744
745 smb21_set_oplock_level(cinode, oplock, epoch, purge_cache);
746
747 if (purge_cache) {
748 *purge_cache = false;
749 if (old_oplock == CIFS_CACHE_READ_FLG) {
750 if (cinode->oplock == CIFS_CACHE_READ_FLG &&
751 (epoch - cinode->epoch > 0))
752 *purge_cache = true;
753 else if (cinode->oplock == CIFS_CACHE_RH_FLG &&
754 (epoch - cinode->epoch > 1))
755 *purge_cache = true;
756 else if (cinode->oplock == CIFS_CACHE_RHW_FLG &&
757 (epoch - cinode->epoch > 1))
758 *purge_cache = true;
759 else if (cinode->oplock == 0 &&
760 (epoch - cinode->epoch > 0))
761 *purge_cache = true;
762 } else if (old_oplock == CIFS_CACHE_RH_FLG) {
763 if (cinode->oplock == CIFS_CACHE_RH_FLG &&
764 (epoch - cinode->epoch > 0))
765 *purge_cache = true;
766 else if (cinode->oplock == CIFS_CACHE_RHW_FLG &&
767 (epoch - cinode->epoch > 1))
768 *purge_cache = true;
769 }
770 cinode->epoch = epoch;
771 }
772}
773
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400774static bool
775smb2_is_read_op(__u32 oplock)
776{
777 return oplock == SMB2_OPLOCK_LEVEL_II;
778}
779
780static bool
781smb21_is_read_op(__u32 oplock)
782{
783 return (oplock & SMB2_LEASE_READ_CACHING_HE) &&
784 !(oplock & SMB2_LEASE_WRITE_CACHING_HE);
785}
786
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400787static __le32
788map_oplock_to_lease(u8 oplock)
789{
790 if (oplock == SMB2_OPLOCK_LEVEL_EXCLUSIVE)
791 return SMB2_LEASE_WRITE_CACHING | SMB2_LEASE_READ_CACHING;
792 else if (oplock == SMB2_OPLOCK_LEVEL_II)
793 return SMB2_LEASE_READ_CACHING;
794 else if (oplock == SMB2_OPLOCK_LEVEL_BATCH)
795 return SMB2_LEASE_HANDLE_CACHING | SMB2_LEASE_READ_CACHING |
796 SMB2_LEASE_WRITE_CACHING;
797 return 0;
798}
799
Pavel Shilovskya41a28b2013-09-04 13:07:41 +0400800static char *
801smb2_create_lease_buf(u8 *lease_key, u8 oplock)
802{
803 struct create_lease *buf;
804
805 buf = kzalloc(sizeof(struct create_lease), GFP_KERNEL);
806 if (!buf)
807 return NULL;
808
809 buf->lcontext.LeaseKeyLow = cpu_to_le64(*((u64 *)lease_key));
810 buf->lcontext.LeaseKeyHigh = cpu_to_le64(*((u64 *)(lease_key + 8)));
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400811 buf->lcontext.LeaseState = map_oplock_to_lease(oplock);
Pavel Shilovskya41a28b2013-09-04 13:07:41 +0400812
813 buf->ccontext.DataOffset = cpu_to_le16(offsetof
814 (struct create_lease, lcontext));
815 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct lease_context));
816 buf->ccontext.NameOffset = cpu_to_le16(offsetof
817 (struct create_lease, Name));
818 buf->ccontext.NameLength = cpu_to_le16(4);
819 buf->Name[0] = 'R';
820 buf->Name[1] = 'q';
821 buf->Name[2] = 'L';
822 buf->Name[3] = 's';
823 return (char *)buf;
824}
825
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400826static char *
827smb3_create_lease_buf(u8 *lease_key, u8 oplock)
828{
829 struct create_lease_v2 *buf;
830
831 buf = kzalloc(sizeof(struct create_lease_v2), GFP_KERNEL);
832 if (!buf)
833 return NULL;
834
835 buf->lcontext.LeaseKeyLow = cpu_to_le64(*((u64 *)lease_key));
836 buf->lcontext.LeaseKeyHigh = cpu_to_le64(*((u64 *)(lease_key + 8)));
837 buf->lcontext.LeaseState = map_oplock_to_lease(oplock);
838
839 buf->ccontext.DataOffset = cpu_to_le16(offsetof
840 (struct create_lease_v2, lcontext));
841 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct lease_context_v2));
842 buf->ccontext.NameOffset = cpu_to_le16(offsetof
843 (struct create_lease_v2, Name));
844 buf->ccontext.NameLength = cpu_to_le16(4);
845 buf->Name[0] = 'R';
846 buf->Name[1] = 'q';
847 buf->Name[2] = 'L';
848 buf->Name[3] = 's';
849 return (char *)buf;
850}
851
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +0400852static __u8
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400853smb2_parse_lease_buf(void *buf, unsigned int *epoch)
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +0400854{
855 struct create_lease *lc = (struct create_lease *)buf;
856
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400857 *epoch = 0; /* not used */
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +0400858 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS)
859 return SMB2_OPLOCK_LEVEL_NOCHANGE;
860 return le32_to_cpu(lc->lcontext.LeaseState);
861}
862
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400863static __u8
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400864smb3_parse_lease_buf(void *buf, unsigned int *epoch)
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400865{
866 struct create_lease_v2 *lc = (struct create_lease_v2 *)buf;
867
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400868 *epoch = le16_to_cpu(lc->lcontext.Epoch);
Pavel Shilovskyf0473902013-09-04 13:44:05 +0400869 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS)
870 return SMB2_OPLOCK_LEVEL_NOCHANGE;
871 return le32_to_cpu(lc->lcontext.LeaseState);
872}
873
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400874struct smb_version_operations smb20_operations = {
875 .compare_fids = smb2_compare_fids,
876 .setup_request = smb2_setup_request,
877 .setup_async_request = smb2_setup_async_request,
878 .check_receive = smb2_check_receive,
879 .add_credits = smb2_add_credits,
880 .set_credits = smb2_set_credits,
881 .get_credits_field = smb2_get_credits_field,
882 .get_credits = smb2_get_credits,
883 .get_next_mid = smb2_get_next_mid,
884 .read_data_offset = smb2_read_data_offset,
885 .read_data_length = smb2_read_data_length,
886 .map_error = map_smb2_to_linux_error,
887 .find_mid = smb2_find_mid,
888 .check_message = smb2_check_message,
889 .dump_detail = smb2_dump_detail,
890 .clear_stats = smb2_clear_stats,
891 .print_stats = smb2_print_stats,
892 .is_oplock_break = smb2_is_valid_oplock_break,
893 .need_neg = smb2_need_neg,
894 .negotiate = smb2_negotiate,
895 .negotiate_wsize = smb2_negotiate_wsize,
896 .negotiate_rsize = smb2_negotiate_rsize,
897 .sess_setup = SMB2_sess_setup,
898 .logoff = SMB2_logoff,
899 .tree_connect = SMB2_tcon,
900 .tree_disconnect = SMB2_tdis,
Steve French34f62642013-10-09 02:07:00 -0500901 .qfs_tcon = smb2_qfs_tcon,
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400902 .is_path_accessible = smb2_is_path_accessible,
903 .can_echo = smb2_can_echo,
904 .echo = SMB2_echo,
905 .query_path_info = smb2_query_path_info,
906 .get_srv_inum = smb2_get_srv_inum,
907 .query_file_info = smb2_query_file_info,
908 .set_path_size = smb2_set_path_size,
909 .set_file_size = smb2_set_file_size,
910 .set_file_info = smb2_set_file_info,
Steve French64a5cfa2013-10-14 15:31:32 -0500911 .set_compression = smb2_set_compression,
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400912 .mkdir = smb2_mkdir,
913 .mkdir_setinfo = smb2_mkdir_setinfo,
914 .rmdir = smb2_rmdir,
915 .unlink = smb2_unlink,
916 .rename = smb2_rename_path,
917 .create_hardlink = smb2_create_hardlink,
918 .query_symlink = smb2_query_symlink,
919 .open = smb2_open_file,
920 .set_fid = smb2_set_fid,
921 .close = smb2_close_file,
922 .flush = smb2_flush_file,
923 .async_readv = smb2_async_readv,
924 .async_writev = smb2_async_writev,
925 .sync_read = smb2_sync_read,
926 .sync_write = smb2_sync_write,
927 .query_dir_first = smb2_query_dir_first,
928 .query_dir_next = smb2_query_dir_next,
929 .close_dir = smb2_close_dir,
930 .calc_smb_size = smb2_calc_size,
931 .is_status_pending = smb2_is_status_pending,
932 .oplock_response = smb2_oplock_response,
933 .queryfs = smb2_queryfs,
934 .mand_lock = smb2_mand_lock,
935 .mand_unlock_range = smb2_unlock_range,
936 .push_mand_locks = smb2_push_mandatory_locks,
937 .get_lease_key = smb2_get_lease_key,
938 .set_lease_key = smb2_set_lease_key,
939 .new_lease_key = smb2_new_lease_key,
940 .calc_signature = smb2_calc_signature,
941 .is_read_op = smb2_is_read_op,
942 .set_oplock_level = smb2_set_oplock_level,
Pavel Shilovskya41a28b2013-09-04 13:07:41 +0400943 .create_lease_buf = smb2_create_lease_buf,
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +0400944 .parse_lease_buf = smb2_parse_lease_buf,
Pavel Shilovsky53ef1012013-09-05 16:11:28 +0400945};
946
Steve French1080ef72011-02-24 18:07:19 +0000947struct smb_version_operations smb21_operations = {
Pavel Shilovsky027e8ee2012-09-19 06:22:43 -0700948 .compare_fids = smb2_compare_fids,
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400949 .setup_request = smb2_setup_request,
Pavel Shilovskyc95b8ee2012-07-11 14:45:28 +0400950 .setup_async_request = smb2_setup_async_request,
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400951 .check_receive = smb2_check_receive,
Pavel Shilovsky28ea5292012-05-23 16:18:00 +0400952 .add_credits = smb2_add_credits,
953 .set_credits = smb2_set_credits,
954 .get_credits_field = smb2_get_credits_field,
955 .get_credits = smb2_get_credits,
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400956 .get_next_mid = smb2_get_next_mid,
Pavel Shilovsky09a47072012-09-18 16:20:29 -0700957 .read_data_offset = smb2_read_data_offset,
958 .read_data_length = smb2_read_data_length,
959 .map_error = map_smb2_to_linux_error,
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +0400960 .find_mid = smb2_find_mid,
961 .check_message = smb2_check_message,
962 .dump_detail = smb2_dump_detail,
Pavel Shilovskyd60622e2012-05-28 15:19:39 +0400963 .clear_stats = smb2_clear_stats,
964 .print_stats = smb2_print_stats,
Pavel Shilovsky983c88a2012-09-18 16:20:33 -0700965 .is_oplock_break = smb2_is_valid_oplock_break,
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400966 .need_neg = smb2_need_neg,
967 .negotiate = smb2_negotiate,
Pavel Shilovsky3a3bab52012-09-18 16:20:28 -0700968 .negotiate_wsize = smb2_negotiate_wsize,
969 .negotiate_rsize = smb2_negotiate_rsize,
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400970 .sess_setup = SMB2_sess_setup,
971 .logoff = SMB2_logoff,
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400972 .tree_connect = SMB2_tcon,
973 .tree_disconnect = SMB2_tdis,
Steve French34f62642013-10-09 02:07:00 -0500974 .qfs_tcon = smb2_qfs_tcon,
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400975 .is_path_accessible = smb2_is_path_accessible,
Pavel Shilovsky9094fad2012-07-12 18:30:44 +0400976 .can_echo = smb2_can_echo,
977 .echo = SMB2_echo,
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +0400978 .query_path_info = smb2_query_path_info,
979 .get_srv_inum = smb2_get_srv_inum,
Pavel Shilovskyb7546bc2012-09-18 16:20:27 -0700980 .query_file_info = smb2_query_file_info,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -0700981 .set_path_size = smb2_set_path_size,
982 .set_file_size = smb2_set_file_size,
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -0700983 .set_file_info = smb2_set_file_info,
Steve French64a5cfa2013-10-14 15:31:32 -0500984 .set_compression = smb2_set_compression,
Pavel Shilovskya0e73182011-07-19 12:56:37 +0400985 .mkdir = smb2_mkdir,
986 .mkdir_setinfo = smb2_mkdir_setinfo,
Pavel Shilovsky1a500f02012-07-10 16:14:38 +0400987 .rmdir = smb2_rmdir,
Pavel Shilovskycbe6f432012-09-18 16:20:25 -0700988 .unlink = smb2_unlink,
Pavel Shilovsky35143eb2012-09-18 16:20:31 -0700989 .rename = smb2_rename_path,
Pavel Shilovsky568798c2012-09-18 16:20:31 -0700990 .create_hardlink = smb2_create_hardlink,
Pavel Shilovskyb42bf882013-08-14 19:25:21 +0400991 .query_symlink = smb2_query_symlink,
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700992 .open = smb2_open_file,
993 .set_fid = smb2_set_fid,
994 .close = smb2_close_file,
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -0700995 .flush = smb2_flush_file,
Pavel Shilovsky09a47072012-09-18 16:20:29 -0700996 .async_readv = smb2_async_readv,
Pavel Shilovsky33319142012-09-18 16:20:29 -0700997 .async_writev = smb2_async_writev,
Pavel Shilovskyd8e05032012-09-18 16:20:30 -0700998 .sync_read = smb2_sync_read,
Pavel Shilovsky009d3442012-09-18 16:20:30 -0700999 .sync_write = smb2_sync_write,
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001000 .query_dir_first = smb2_query_dir_first,
1001 .query_dir_next = smb2_query_dir_next,
1002 .close_dir = smb2_close_dir,
1003 .calc_smb_size = smb2_calc_size,
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001004 .is_status_pending = smb2_is_status_pending,
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07001005 .oplock_response = smb2_oplock_response,
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07001006 .queryfs = smb2_queryfs,
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07001007 .mand_lock = smb2_mand_lock,
1008 .mand_unlock_range = smb2_unlock_range,
Pavel Shilovskyb1407992012-09-19 06:22:44 -07001009 .push_mand_locks = smb2_push_mandatory_locks,
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001010 .get_lease_key = smb2_get_lease_key,
1011 .set_lease_key = smb2_set_lease_key,
1012 .new_lease_key = smb2_new_lease_key,
Steve French38107d42012-12-08 22:08:06 -06001013 .calc_signature = smb2_calc_signature,
Pavel Shilovsky53ef1012013-09-05 16:11:28 +04001014 .is_read_op = smb21_is_read_op,
1015 .set_oplock_level = smb21_set_oplock_level,
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001016 .create_lease_buf = smb2_create_lease_buf,
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001017 .parse_lease_buf = smb2_parse_lease_buf,
Steve French38107d42012-12-08 22:08:06 -06001018};
1019
Steve French38107d42012-12-08 22:08:06 -06001020struct smb_version_operations smb30_operations = {
1021 .compare_fids = smb2_compare_fids,
1022 .setup_request = smb2_setup_request,
1023 .setup_async_request = smb2_setup_async_request,
1024 .check_receive = smb2_check_receive,
1025 .add_credits = smb2_add_credits,
1026 .set_credits = smb2_set_credits,
1027 .get_credits_field = smb2_get_credits_field,
1028 .get_credits = smb2_get_credits,
1029 .get_next_mid = smb2_get_next_mid,
1030 .read_data_offset = smb2_read_data_offset,
1031 .read_data_length = smb2_read_data_length,
1032 .map_error = map_smb2_to_linux_error,
1033 .find_mid = smb2_find_mid,
1034 .check_message = smb2_check_message,
1035 .dump_detail = smb2_dump_detail,
1036 .clear_stats = smb2_clear_stats,
1037 .print_stats = smb2_print_stats,
Steve French769ee6a2013-06-19 14:15:30 -05001038 .dump_share_caps = smb2_dump_share_caps,
Steve French38107d42012-12-08 22:08:06 -06001039 .is_oplock_break = smb2_is_valid_oplock_break,
1040 .need_neg = smb2_need_neg,
1041 .negotiate = smb2_negotiate,
1042 .negotiate_wsize = smb2_negotiate_wsize,
1043 .negotiate_rsize = smb2_negotiate_rsize,
1044 .sess_setup = SMB2_sess_setup,
1045 .logoff = SMB2_logoff,
1046 .tree_connect = SMB2_tcon,
1047 .tree_disconnect = SMB2_tdis,
Steve French34f62642013-10-09 02:07:00 -05001048 .qfs_tcon = smb2_qfs_tcon,
Steve French38107d42012-12-08 22:08:06 -06001049 .is_path_accessible = smb2_is_path_accessible,
1050 .can_echo = smb2_can_echo,
1051 .echo = SMB2_echo,
1052 .query_path_info = smb2_query_path_info,
1053 .get_srv_inum = smb2_get_srv_inum,
1054 .query_file_info = smb2_query_file_info,
1055 .set_path_size = smb2_set_path_size,
1056 .set_file_size = smb2_set_file_size,
1057 .set_file_info = smb2_set_file_info,
Steve French64a5cfa2013-10-14 15:31:32 -05001058 .set_compression = smb2_set_compression,
Steve French38107d42012-12-08 22:08:06 -06001059 .mkdir = smb2_mkdir,
1060 .mkdir_setinfo = smb2_mkdir_setinfo,
1061 .rmdir = smb2_rmdir,
1062 .unlink = smb2_unlink,
1063 .rename = smb2_rename_path,
1064 .create_hardlink = smb2_create_hardlink,
Pavel Shilovskyb42bf882013-08-14 19:25:21 +04001065 .query_symlink = smb2_query_symlink,
Steve French38107d42012-12-08 22:08:06 -06001066 .open = smb2_open_file,
1067 .set_fid = smb2_set_fid,
1068 .close = smb2_close_file,
1069 .flush = smb2_flush_file,
1070 .async_readv = smb2_async_readv,
1071 .async_writev = smb2_async_writev,
1072 .sync_read = smb2_sync_read,
1073 .sync_write = smb2_sync_write,
1074 .query_dir_first = smb2_query_dir_first,
1075 .query_dir_next = smb2_query_dir_next,
1076 .close_dir = smb2_close_dir,
1077 .calc_smb_size = smb2_calc_size,
1078 .is_status_pending = smb2_is_status_pending,
1079 .oplock_response = smb2_oplock_response,
1080 .queryfs = smb2_queryfs,
1081 .mand_lock = smb2_mand_lock,
1082 .mand_unlock_range = smb2_unlock_range,
1083 .push_mand_locks = smb2_push_mandatory_locks,
1084 .get_lease_key = smb2_get_lease_key,
1085 .set_lease_key = smb2_set_lease_key,
1086 .new_lease_key = smb2_new_lease_key,
Steve Frenche65a5cb2013-06-27 01:06:50 -05001087 .generate_signingkey = generate_smb3signingkey,
Steve French38107d42012-12-08 22:08:06 -06001088 .calc_signature = smb3_calc_signature,
Pavel Shilovsky53ef1012013-09-05 16:11:28 +04001089 .is_read_op = smb21_is_read_op,
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001090 .set_oplock_level = smb3_set_oplock_level,
Pavel Shilovskyf0473902013-09-04 13:44:05 +04001091 .create_lease_buf = smb3_create_lease_buf,
1092 .parse_lease_buf = smb3_parse_lease_buf,
Steve French1080ef72011-02-24 18:07:19 +00001093};
1094
Steve Frenchdd446b12012-11-28 23:21:06 -06001095struct smb_version_values smb20_values = {
1096 .version_string = SMB20_VERSION_STRING,
1097 .protocol_id = SMB20_PROT_ID,
1098 .req_capabilities = 0, /* MBZ */
1099 .large_lock_type = 0,
1100 .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK,
1101 .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK,
1102 .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK,
1103 .header_size = sizeof(struct smb2_hdr),
1104 .max_header_size = MAX_SMB2_HDR_SIZE,
1105 .read_rsp_size = sizeof(struct smb2_read_rsp) - 1,
1106 .lock_cmd = SMB2_LOCK,
1107 .cap_unix = 0,
1108 .cap_nt_find = SMB2_NT_FIND,
1109 .cap_large_files = SMB2_LARGE_FILES,
Jeff Layton50285882013-06-27 12:45:00 -04001110 .signing_enabled = SMB2_NEGOTIATE_SIGNING_ENABLED | SMB2_NEGOTIATE_SIGNING_REQUIRED,
1111 .signing_required = SMB2_NEGOTIATE_SIGNING_REQUIRED,
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001112 .create_lease_size = sizeof(struct create_lease),
Steve Frenchdd446b12012-11-28 23:21:06 -06001113};
1114
Steve French1080ef72011-02-24 18:07:19 +00001115struct smb_version_values smb21_values = {
1116 .version_string = SMB21_VERSION_STRING,
Steve Frenche4aa25e2012-10-01 12:26:22 -05001117 .protocol_id = SMB21_PROT_ID,
1118 .req_capabilities = 0, /* MBZ on negotiate req until SMB3 dialect */
1119 .large_lock_type = 0,
1120 .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK,
1121 .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK,
1122 .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK,
1123 .header_size = sizeof(struct smb2_hdr),
1124 .max_header_size = MAX_SMB2_HDR_SIZE,
1125 .read_rsp_size = sizeof(struct smb2_read_rsp) - 1,
1126 .lock_cmd = SMB2_LOCK,
1127 .cap_unix = 0,
1128 .cap_nt_find = SMB2_NT_FIND,
1129 .cap_large_files = SMB2_LARGE_FILES,
Jeff Layton50285882013-06-27 12:45:00 -04001130 .signing_enabled = SMB2_NEGOTIATE_SIGNING_ENABLED | SMB2_NEGOTIATE_SIGNING_REQUIRED,
1131 .signing_required = SMB2_NEGOTIATE_SIGNING_REQUIRED,
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001132 .create_lease_size = sizeof(struct create_lease),
Steve Frenche4aa25e2012-10-01 12:26:22 -05001133};
1134
1135struct smb_version_values smb30_values = {
1136 .version_string = SMB30_VERSION_STRING,
1137 .protocol_id = SMB30_PROT_ID,
1138 .req_capabilities = SMB2_GLOBAL_CAP_DFS | SMB2_GLOBAL_CAP_LEASING | SMB2_GLOBAL_CAP_LARGE_MTU,
Pavel Shilovsky027e8ee2012-09-19 06:22:43 -07001139 .large_lock_type = 0,
1140 .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK,
1141 .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK,
1142 .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK,
Pavel Shilovsky093b2bd2011-06-08 15:51:07 +04001143 .header_size = sizeof(struct smb2_hdr),
1144 .max_header_size = MAX_SMB2_HDR_SIZE,
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001145 .read_rsp_size = sizeof(struct smb2_read_rsp) - 1,
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +04001146 .lock_cmd = SMB2_LOCK,
Pavel Shilovsky29e20f92012-07-13 13:58:14 +04001147 .cap_unix = 0,
1148 .cap_nt_find = SMB2_NT_FIND,
1149 .cap_large_files = SMB2_LARGE_FILES,
Jeff Layton50285882013-06-27 12:45:00 -04001150 .signing_enabled = SMB2_NEGOTIATE_SIGNING_ENABLED | SMB2_NEGOTIATE_SIGNING_REQUIRED,
1151 .signing_required = SMB2_NEGOTIATE_SIGNING_REQUIRED,
Pavel Shilovskyf0473902013-09-04 13:44:05 +04001152 .create_lease_size = sizeof(struct create_lease_v2),
Steve French1080ef72011-02-24 18:07:19 +00001153};
Steve French20b6d8b2013-06-12 22:48:41 -05001154
1155struct smb_version_values smb302_values = {
1156 .version_string = SMB302_VERSION_STRING,
1157 .protocol_id = SMB302_PROT_ID,
1158 .req_capabilities = SMB2_GLOBAL_CAP_DFS | SMB2_GLOBAL_CAP_LEASING | SMB2_GLOBAL_CAP_LARGE_MTU,
1159 .large_lock_type = 0,
1160 .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK,
1161 .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK,
1162 .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK,
1163 .header_size = sizeof(struct smb2_hdr),
1164 .max_header_size = MAX_SMB2_HDR_SIZE,
1165 .read_rsp_size = sizeof(struct smb2_read_rsp) - 1,
1166 .lock_cmd = SMB2_LOCK,
1167 .cap_unix = 0,
1168 .cap_nt_find = SMB2_NT_FIND,
1169 .cap_large_files = SMB2_LARGE_FILES,
Jeff Layton50285882013-06-27 12:45:00 -04001170 .signing_enabled = SMB2_NEGOTIATE_SIGNING_ENABLED | SMB2_NEGOTIATE_SIGNING_REQUIRED,
1171 .signing_required = SMB2_NEGOTIATE_SIGNING_REQUIRED,
Pavel Shilovskyf0473902013-09-04 13:44:05 +04001172 .create_lease_size = sizeof(struct create_lease_v2),
Steve French20b6d8b2013-06-12 22:48:41 -05001173};