1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#include "cifsglob.h"
21#include "cifsproto.h"
22#include "cifs_debug.h"
23#include "cifspdu.h"
24
25
26
27
28
29
30
31
32
33
34
35static int
36send_nt_cancel(struct TCP_Server_Info *server, void *buf,
37 struct mid_q_entry *mid)
38{
39 int rc = 0;
40 struct smb_hdr *in_buf = (struct smb_hdr *)buf;
41
42
43 in_buf->smb_buf_length = cpu_to_be32(sizeof(struct smb_hdr) - 4 + 2);
44 in_buf->Command = SMB_COM_NT_CANCEL;
45 in_buf->WordCount = 0;
46 put_bcc(0, in_buf);
47
48 mutex_lock(&server->srv_mutex);
49 rc = cifs_sign_smb(in_buf, server, &mid->sequence_number);
50 if (rc) {
51 mutex_unlock(&server->srv_mutex);
52 return rc;
53 }
54 rc = smb_send(server, in_buf, be32_to_cpu(in_buf->smb_buf_length));
55 mutex_unlock(&server->srv_mutex);
56
57 cFYI(1, "issued NT_CANCEL for mid %u, rc = %d",
58 in_buf->Mid, rc);
59
60 return rc;
61}
62
63static bool
64cifs_compare_fids(struct cifsFileInfo *ob1, struct cifsFileInfo *ob2)
65{
66 return ob1->netfid == ob2->netfid;
67}
68
69static unsigned int
70cifs_read_data_offset(char *buf)
71{
72 READ_RSP *rsp = (READ_RSP *)buf;
73 return le16_to_cpu(rsp->DataOffset);
74}
75
76static unsigned int
77cifs_read_data_length(char *buf)
78{
79 READ_RSP *rsp = (READ_RSP *)buf;
80 return (le16_to_cpu(rsp->DataLengthHigh) << 16) +
81 le16_to_cpu(rsp->DataLength);
82}
83
84static struct mid_q_entry *
85cifs_find_mid(struct TCP_Server_Info *server, char *buffer)
86{
87 struct smb_hdr *buf = (struct smb_hdr *)buffer;
88 struct mid_q_entry *mid;
89
90 spin_lock(&GlobalMid_Lock);
91 list_for_each_entry(mid, &server->pending_mid_q, qhead) {
92 if (mid->mid == buf->Mid &&
93 mid->mid_state == MID_REQUEST_SUBMITTED &&
94 le16_to_cpu(mid->command) == buf->Command) {
95 spin_unlock(&GlobalMid_Lock);
96 return mid;
97 }
98 }
99 spin_unlock(&GlobalMid_Lock);
100 return NULL;
101}
102
103static void
104cifs_add_credits(struct TCP_Server_Info *server, const unsigned int add,
105 const int optype)
106{
107 spin_lock(&server->req_lock);
108 server->credits += add;
109 server->in_flight--;
110 spin_unlock(&server->req_lock);
111 wake_up(&server->request_q);
112}
113
114static void
115cifs_set_credits(struct TCP_Server_Info *server, const int val)
116{
117 spin_lock(&server->req_lock);
118 server->credits = val;
119 server->oplocks = val > 1 ? enable_oplocks : false;
120 spin_unlock(&server->req_lock);
121}
122
123static int *
124cifs_get_credits_field(struct TCP_Server_Info *server, const int optype)
125{
126 return &server->credits;
127}
128
129static unsigned int
130cifs_get_credits(struct mid_q_entry *mid)
131{
132 return 1;
133}
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156static __u64
157cifs_get_next_mid(struct TCP_Server_Info *server)
158{
159 __u64 mid = 0;
160 __u16 last_mid, cur_mid;
161 bool collision;
162
163 spin_lock(&GlobalMid_Lock);
164
165
166 cur_mid = (__u16)((server->CurrentMid) & 0xffff);
167
168 last_mid = cur_mid;
169 cur_mid++;
170
171
172
173
174
175
176
177
178
179
180 while (cur_mid != last_mid) {
181 struct mid_q_entry *mid_entry;
182 unsigned int num_mids;
183
184 collision = false;
185 if (cur_mid == 0)
186 cur_mid++;
187
188 num_mids = 0;
189 list_for_each_entry(mid_entry, &server->pending_mid_q, qhead) {
190 ++num_mids;
191 if (mid_entry->mid == cur_mid &&
192 mid_entry->mid_state == MID_REQUEST_SUBMITTED) {
193
194 collision = true;
195 break;
196 }
197 }
198
199
200
201
202
203
204
205
206
207
208
209 if (num_mids > 32768)
210 server->tcpStatus = CifsNeedReconnect;
211
212 if (!collision) {
213 mid = (__u64)cur_mid;
214 server->CurrentMid = mid;
215 break;
216 }
217 cur_mid++;
218 }
219 spin_unlock(&GlobalMid_Lock);
220 return mid;
221}
222
223
224
225
226
227
228
229static int
230check2ndT2(char *buf)
231{
232 struct smb_hdr *pSMB = (struct smb_hdr *)buf;
233 struct smb_t2_rsp *pSMBt;
234 int remaining;
235 __u16 total_data_size, data_in_this_rsp;
236
237 if (pSMB->Command != SMB_COM_TRANSACTION2)
238 return 0;
239
240
241
242 if (pSMB->WordCount != 10) {
243 cFYI(1, "invalid transact2 word count");
244 return -EINVAL;
245 }
246
247 pSMBt = (struct smb_t2_rsp *)pSMB;
248
249 total_data_size = get_unaligned_le16(&pSMBt->t2_rsp.TotalDataCount);
250 data_in_this_rsp = get_unaligned_le16(&pSMBt->t2_rsp.DataCount);
251
252 if (total_data_size == data_in_this_rsp)
253 return 0;
254 else if (total_data_size < data_in_this_rsp) {
255 cFYI(1, "total data %d smaller than data in frame %d",
256 total_data_size, data_in_this_rsp);
257 return -EINVAL;
258 }
259
260 remaining = total_data_size - data_in_this_rsp;
261
262 cFYI(1, "missing %d bytes from transact2, check next response",
263 remaining);
264 if (total_data_size > CIFSMaxBufSize) {
265 cERROR(1, "TotalDataSize %d is over maximum buffer %d",
266 total_data_size, CIFSMaxBufSize);
267 return -EINVAL;
268 }
269 return remaining;
270}
271
272static int
273coalesce_t2(char *second_buf, struct smb_hdr *target_hdr)
274{
275 struct smb_t2_rsp *pSMBs = (struct smb_t2_rsp *)second_buf;
276 struct smb_t2_rsp *pSMBt = (struct smb_t2_rsp *)target_hdr;
277 char *data_area_of_tgt;
278 char *data_area_of_src;
279 int remaining;
280 unsigned int byte_count, total_in_tgt;
281 __u16 tgt_total_cnt, src_total_cnt, total_in_src;
282
283 src_total_cnt = get_unaligned_le16(&pSMBs->t2_rsp.TotalDataCount);
284 tgt_total_cnt = get_unaligned_le16(&pSMBt->t2_rsp.TotalDataCount);
285
286 if (tgt_total_cnt != src_total_cnt)
287 cFYI(1, "total data count of primary and secondary t2 differ "
288 "source=%hu target=%hu", src_total_cnt, tgt_total_cnt);
289
290 total_in_tgt = get_unaligned_le16(&pSMBt->t2_rsp.DataCount);
291
292 remaining = tgt_total_cnt - total_in_tgt;
293
294 if (remaining < 0) {
295 cFYI(1, "Server sent too much data. tgt_total_cnt=%hu "
296 "total_in_tgt=%hu", tgt_total_cnt, total_in_tgt);
297 return -EPROTO;
298 }
299
300 if (remaining == 0) {
301
302 cFYI(1, "no more data remains");
303 return 0;
304 }
305
306 total_in_src = get_unaligned_le16(&pSMBs->t2_rsp.DataCount);
307 if (remaining < total_in_src)
308 cFYI(1, "transact2 2nd response contains too much data");
309
310
311 data_area_of_tgt = (char *)&pSMBt->hdr.Protocol +
312 get_unaligned_le16(&pSMBt->t2_rsp.DataOffset);
313
314
315 data_area_of_src = (char *)&pSMBs->hdr.Protocol +
316 get_unaligned_le16(&pSMBs->t2_rsp.DataOffset);
317
318 data_area_of_tgt += total_in_tgt;
319
320 total_in_tgt += total_in_src;
321
322 if (total_in_tgt > USHRT_MAX) {
323 cFYI(1, "coalesced DataCount too large (%u)", total_in_tgt);
324 return -EPROTO;
325 }
326 put_unaligned_le16(total_in_tgt, &pSMBt->t2_rsp.DataCount);
327
328
329 byte_count = get_bcc(target_hdr);
330 byte_count += total_in_src;
331
332 if (byte_count > USHRT_MAX) {
333 cFYI(1, "coalesced BCC too large (%u)", byte_count);
334 return -EPROTO;
335 }
336 put_bcc(byte_count, target_hdr);
337
338 byte_count = be32_to_cpu(target_hdr->smb_buf_length);
339 byte_count += total_in_src;
340
341 if (byte_count > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
342 cFYI(1, "coalesced BCC exceeds buffer size (%u)", byte_count);
343 return -ENOBUFS;
344 }
345 target_hdr->smb_buf_length = cpu_to_be32(byte_count);
346
347
348 memcpy(data_area_of_tgt, data_area_of_src, total_in_src);
349
350 if (remaining != total_in_src) {
351
352 cFYI(1, "waiting for more secondary responses");
353 return 1;
354 }
355
356
357 cFYI(1, "found the last secondary response");
358 return 0;
359}
360
361static bool
362cifs_check_trans2(struct mid_q_entry *mid, struct TCP_Server_Info *server,
363 char *buf, int malformed)
364{
365 if (malformed)
366 return false;
367 if (check2ndT2(buf) <= 0)
368 return false;
369 mid->multiRsp = true;
370 if (mid->resp_buf) {
371
372 malformed = coalesce_t2(buf, mid->resp_buf);
373 if (malformed > 0)
374 return true;
375
376 mid->multiEnd = true;
377 dequeue_mid(mid, malformed);
378 return true;
379 }
380 if (!server->large_buf) {
381
382 cERROR(1, "1st trans2 resp needs bigbuf");
383 } else {
384
385 mid->resp_buf = buf;
386 mid->large_buf = true;
387 server->bigbuf = NULL;
388 }
389 return true;
390}
391
392static bool
393cifs_need_neg(struct TCP_Server_Info *server)
394{
395 return server->maxBuf == 0;
396}
397
398static int
399cifs_negotiate(const unsigned int xid, struct cifs_ses *ses)
400{
401 int rc;
402 rc = CIFSSMBNegotiate(xid, ses);
403 if (rc == -EAGAIN) {
404
405 set_credits(ses->server, 1);
406 rc = CIFSSMBNegotiate(xid, ses);
407 if (rc == -EAGAIN)
408 rc = -EHOSTDOWN;
409 }
410 return rc;
411}
412
413static void
414cifs_qfs_tcon(const unsigned int xid, struct cifs_tcon *tcon)
415{
416 CIFSSMBQFSDeviceInfo(xid, tcon);
417 CIFSSMBQFSAttributeInfo(xid, tcon);
418}
419
420static int
421cifs_is_path_accessible(const unsigned int xid, struct cifs_tcon *tcon,
422 struct cifs_sb_info *cifs_sb, const char *full_path)
423{
424 int rc;
425 FILE_ALL_INFO *file_info;
426
427 file_info = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL);
428 if (file_info == NULL)
429 return -ENOMEM;
430
431 rc = CIFSSMBQPathInfo(xid, tcon, full_path, file_info,
432 0 , cifs_sb->local_nls,
433 cifs_sb->mnt_cifs_flags &
434 CIFS_MOUNT_MAP_SPECIAL_CHR);
435
436 if (rc == -EOPNOTSUPP || rc == -EINVAL)
437 rc = SMBQueryInformation(xid, tcon, full_path, file_info,
438 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
439 CIFS_MOUNT_MAP_SPECIAL_CHR);
440 kfree(file_info);
441 return rc;
442}
443
444static int
445cifs_query_path_info(const unsigned int xid, struct cifs_tcon *tcon,
446 struct cifs_sb_info *cifs_sb, const char *full_path,
447 FILE_ALL_INFO *data, bool *adjustTZ)
448{
449 int rc;
450
451
452 rc = CIFSSMBQPathInfo(xid, tcon, full_path, data, 0 ,
453 cifs_sb->local_nls, cifs_sb->mnt_cifs_flags &
454 CIFS_MOUNT_MAP_SPECIAL_CHR);
455
456
457
458
459
460 if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) {
461 rc = SMBQueryInformation(xid, tcon, full_path, data,
462 cifs_sb->local_nls,
463 cifs_sb->mnt_cifs_flags &
464 CIFS_MOUNT_MAP_SPECIAL_CHR);
465 *adjustTZ = true;
466 }
467 return rc;
468}
469
470static int
471cifs_get_srv_inum(const unsigned int xid, struct cifs_tcon *tcon,
472 struct cifs_sb_info *cifs_sb, const char *full_path,
473 u64 *uniqueid, FILE_ALL_INFO *data)
474{
475
476
477
478
479
480
481
482
483
484
485
486 return CIFSGetSrvInodeNumber(xid, tcon, full_path, uniqueid,
487 cifs_sb->local_nls,
488 cifs_sb->mnt_cifs_flags &
489 CIFS_MOUNT_MAP_SPECIAL_CHR);
490}
491
492static char *
493cifs_build_path_to_root(struct smb_vol *vol, struct cifs_sb_info *cifs_sb,
494 struct cifs_tcon *tcon)
495{
496 int pplen = vol->prepath ? strlen(vol->prepath) : 0;
497 int dfsplen;
498 char *full_path = NULL;
499
500
501 if (pplen == 0) {
502 full_path = kzalloc(1, GFP_KERNEL);
503 return full_path;
504 }
505
506 if (tcon->Flags & SMB_SHARE_IS_IN_DFS)
507 dfsplen = strnlen(tcon->treeName, MAX_TREE_SIZE + 1);
508 else
509 dfsplen = 0;
510
511 full_path = kmalloc(dfsplen + pplen + 1, GFP_KERNEL);
512 if (full_path == NULL)
513 return full_path;
514
515 if (dfsplen)
516 strncpy(full_path, tcon->treeName, dfsplen);
517 strncpy(full_path + dfsplen, vol->prepath, pplen);
518 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb));
519 full_path[dfsplen + pplen] = 0;
520 return full_path;
521}
522
523static void
524cifs_clear_stats(struct cifs_tcon *tcon)
525{
526#ifdef CONFIG_CIFS_STATS
527 atomic_set(&tcon->stats.cifs_stats.num_writes, 0);
528 atomic_set(&tcon->stats.cifs_stats.num_reads, 0);
529 atomic_set(&tcon->stats.cifs_stats.num_flushes, 0);
530 atomic_set(&tcon->stats.cifs_stats.num_oplock_brks, 0);
531 atomic_set(&tcon->stats.cifs_stats.num_opens, 0);
532 atomic_set(&tcon->stats.cifs_stats.num_posixopens, 0);
533 atomic_set(&tcon->stats.cifs_stats.num_posixmkdirs, 0);
534 atomic_set(&tcon->stats.cifs_stats.num_closes, 0);
535 atomic_set(&tcon->stats.cifs_stats.num_deletes, 0);
536 atomic_set(&tcon->stats.cifs_stats.num_mkdirs, 0);
537 atomic_set(&tcon->stats.cifs_stats.num_rmdirs, 0);
538 atomic_set(&tcon->stats.cifs_stats.num_renames, 0);
539 atomic_set(&tcon->stats.cifs_stats.num_t2renames, 0);
540 atomic_set(&tcon->stats.cifs_stats.num_ffirst, 0);
541 atomic_set(&tcon->stats.cifs_stats.num_fnext, 0);
542 atomic_set(&tcon->stats.cifs_stats.num_fclose, 0);
543 atomic_set(&tcon->stats.cifs_stats.num_hardlinks, 0);
544 atomic_set(&tcon->stats.cifs_stats.num_symlinks, 0);
545 atomic_set(&tcon->stats.cifs_stats.num_locks, 0);
546 atomic_set(&tcon->stats.cifs_stats.num_acl_get, 0);
547 atomic_set(&tcon->stats.cifs_stats.num_acl_set, 0);
548#endif
549}
550
551static void
552cifs_print_stats(struct seq_file *m, struct cifs_tcon *tcon)
553{
554#ifdef CONFIG_CIFS_STATS
555 seq_printf(m, " Oplocks breaks: %d",
556 atomic_read(&tcon->stats.cifs_stats.num_oplock_brks));
557 seq_printf(m, "\nReads: %d Bytes: %llu",
558 atomic_read(&tcon->stats.cifs_stats.num_reads),
559 (long long)(tcon->bytes_read));
560 seq_printf(m, "\nWrites: %d Bytes: %llu",
561 atomic_read(&tcon->stats.cifs_stats.num_writes),
562 (long long)(tcon->bytes_written));
563 seq_printf(m, "\nFlushes: %d",
564 atomic_read(&tcon->stats.cifs_stats.num_flushes));
565 seq_printf(m, "\nLocks: %d HardLinks: %d Symlinks: %d",
566 atomic_read(&tcon->stats.cifs_stats.num_locks),
567 atomic_read(&tcon->stats.cifs_stats.num_hardlinks),
568 atomic_read(&tcon->stats.cifs_stats.num_symlinks));
569 seq_printf(m, "\nOpens: %d Closes: %d Deletes: %d",
570 atomic_read(&tcon->stats.cifs_stats.num_opens),
571 atomic_read(&tcon->stats.cifs_stats.num_closes),
572 atomic_read(&tcon->stats.cifs_stats.num_deletes));
573 seq_printf(m, "\nPosix Opens: %d Posix Mkdirs: %d",
574 atomic_read(&tcon->stats.cifs_stats.num_posixopens),
575 atomic_read(&tcon->stats.cifs_stats.num_posixmkdirs));
576 seq_printf(m, "\nMkdirs: %d Rmdirs: %d",
577 atomic_read(&tcon->stats.cifs_stats.num_mkdirs),
578 atomic_read(&tcon->stats.cifs_stats.num_rmdirs));
579 seq_printf(m, "\nRenames: %d T2 Renames %d",
580 atomic_read(&tcon->stats.cifs_stats.num_renames),
581 atomic_read(&tcon->stats.cifs_stats.num_t2renames));
582 seq_printf(m, "\nFindFirst: %d FNext %d FClose %d",
583 atomic_read(&tcon->stats.cifs_stats.num_ffirst),
584 atomic_read(&tcon->stats.cifs_stats.num_fnext),
585 atomic_read(&tcon->stats.cifs_stats.num_fclose));
586#endif
587}
588
589static void
590cifs_mkdir_setinfo(struct inode *inode, const char *full_path,
591 struct cifs_sb_info *cifs_sb, struct cifs_tcon *tcon,
592 const unsigned int xid)
593{
594 FILE_BASIC_INFO info;
595 struct cifsInodeInfo *cifsInode;
596 u32 dosattrs;
597 int rc;
598
599 memset(&info, 0, sizeof(info));
600 cifsInode = CIFS_I(inode);
601 dosattrs = cifsInode->cifsAttrs|ATTR_READONLY;
602 info.Attributes = cpu_to_le32(dosattrs);
603 rc = CIFSSMBSetPathInfo(xid, tcon, full_path, &info, cifs_sb->local_nls,
604 cifs_sb->mnt_cifs_flags &
605 CIFS_MOUNT_MAP_SPECIAL_CHR);
606 if (rc == 0)
607 cifsInode->cifsAttrs = dosattrs;
608}
609
610struct smb_version_operations smb1_operations = {
611 .send_cancel = send_nt_cancel,
612 .compare_fids = cifs_compare_fids,
613 .setup_request = cifs_setup_request,
614 .setup_async_request = cifs_setup_async_request,
615 .check_receive = cifs_check_receive,
616 .add_credits = cifs_add_credits,
617 .set_credits = cifs_set_credits,
618 .get_credits_field = cifs_get_credits_field,
619 .get_credits = cifs_get_credits,
620 .get_next_mid = cifs_get_next_mid,
621 .read_data_offset = cifs_read_data_offset,
622 .read_data_length = cifs_read_data_length,
623 .map_error = map_smb_to_linux_error,
624 .find_mid = cifs_find_mid,
625 .check_message = checkSMB,
626 .dump_detail = cifs_dump_detail,
627 .clear_stats = cifs_clear_stats,
628 .print_stats = cifs_print_stats,
629 .is_oplock_break = is_valid_oplock_break,
630 .check_trans2 = cifs_check_trans2,
631 .need_neg = cifs_need_neg,
632 .negotiate = cifs_negotiate,
633 .sess_setup = CIFS_SessSetup,
634 .logoff = CIFSSMBLogoff,
635 .tree_connect = CIFSTCon,
636 .tree_disconnect = CIFSSMBTDis,
637 .get_dfs_refer = CIFSGetDFSRefer,
638 .qfs_tcon = cifs_qfs_tcon,
639 .is_path_accessible = cifs_is_path_accessible,
640 .query_path_info = cifs_query_path_info,
641 .get_srv_inum = cifs_get_srv_inum,
642 .build_path_to_root = cifs_build_path_to_root,
643 .echo = CIFSSMBEcho,
644 .mkdir = CIFSSMBMkDir,
645 .mkdir_setinfo = cifs_mkdir_setinfo,
646 .rmdir = CIFSSMBRmDir,
647};
648
649struct smb_version_values smb1_values = {
650 .version_string = SMB1_VERSION_STRING,
651 .large_lock_type = LOCKING_ANDX_LARGE_FILES,
652 .exclusive_lock_type = 0,
653 .shared_lock_type = LOCKING_ANDX_SHARED_LOCK,
654 .unlock_lock_type = 0,
655 .header_size = sizeof(struct smb_hdr),
656 .max_header_size = MAX_CIFS_HDR_SIZE,
657 .read_rsp_size = sizeof(READ_RSP),
658 .lock_cmd = cpu_to_le16(SMB_COM_LOCKING_ANDX),
659 .cap_unix = CAP_UNIX,
660 .cap_nt_find = CAP_NT_SMBS | CAP_NT_FIND,
661 .cap_large_files = CAP_LARGE_FILES,
662};
663