2 * SMB1 (CIFS) version specific operations
4 * Copyright (c) 2012, Jeff Layton <jlayton@redhat.com>
6 * This library is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License v2 as published
8 * by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/pagemap.h>
21 #include <linux/vfs.h>
23 #include "cifsproto.h"
24 #include "cifs_debug.h"
28 * An NT cancel request header looks just like the original request except:
30 * The Command is SMB_COM_NT_CANCEL
31 * The WordCount is zeroed out
32 * The ByteCount is zeroed out
34 * This function mangles an existing request buffer into a
35 * SMB_COM_NT_CANCEL request and then sends it.
38 send_nt_cancel(struct TCP_Server_Info
*server
, void *buf
,
39 struct mid_q_entry
*mid
)
42 struct smb_hdr
*in_buf
= (struct smb_hdr
*)buf
;
44 /* -4 for RFC1001 length and +2 for BCC field */
45 in_buf
->smb_buf_length
= cpu_to_be32(sizeof(struct smb_hdr
) - 4 + 2);
46 in_buf
->Command
= SMB_COM_NT_CANCEL
;
47 in_buf
->WordCount
= 0;
50 mutex_lock(&server
->srv_mutex
);
51 rc
= cifs_sign_smb(in_buf
, server
, &mid
->sequence_number
);
53 mutex_unlock(&server
->srv_mutex
);
58 * The response to this call was already factored into the sequence
59 * number when the call went out, so we must adjust it back downward
62 --server
->sequence_number
;
63 rc
= smb_send(server
, in_buf
, be32_to_cpu(in_buf
->smb_buf_length
));
64 mutex_unlock(&server
->srv_mutex
);
66 cFYI(1, "issued NT_CANCEL for mid %u, rc = %d",
73 cifs_compare_fids(struct cifsFileInfo
*ob1
, struct cifsFileInfo
*ob2
)
75 return ob1
->fid
.netfid
== ob2
->fid
.netfid
;
79 cifs_read_data_offset(char *buf
)
81 READ_RSP
*rsp
= (READ_RSP
*)buf
;
82 return le16_to_cpu(rsp
->DataOffset
);
86 cifs_read_data_length(char *buf
)
88 READ_RSP
*rsp
= (READ_RSP
*)buf
;
89 return (le16_to_cpu(rsp
->DataLengthHigh
) << 16) +
90 le16_to_cpu(rsp
->DataLength
);
93 static struct mid_q_entry
*
94 cifs_find_mid(struct TCP_Server_Info
*server
, char *buffer
)
96 struct smb_hdr
*buf
= (struct smb_hdr
*)buffer
;
97 struct mid_q_entry
*mid
;
99 spin_lock(&GlobalMid_Lock
);
100 list_for_each_entry(mid
, &server
->pending_mid_q
, qhead
) {
101 if (mid
->mid
== buf
->Mid
&&
102 mid
->mid_state
== MID_REQUEST_SUBMITTED
&&
103 le16_to_cpu(mid
->command
) == buf
->Command
) {
104 spin_unlock(&GlobalMid_Lock
);
108 spin_unlock(&GlobalMid_Lock
);
113 cifs_add_credits(struct TCP_Server_Info
*server
, const unsigned int add
,
116 spin_lock(&server
->req_lock
);
117 server
->credits
+= add
;
119 spin_unlock(&server
->req_lock
);
120 wake_up(&server
->request_q
);
124 cifs_set_credits(struct TCP_Server_Info
*server
, const int val
)
126 spin_lock(&server
->req_lock
);
127 server
->credits
= val
;
128 server
->oplocks
= val
> 1 ? enable_oplocks
: false;
129 spin_unlock(&server
->req_lock
);
133 cifs_get_credits_field(struct TCP_Server_Info
*server
, const int optype
)
135 return &server
->credits
;
139 cifs_get_credits(struct mid_q_entry
*mid
)
145 * Find a free multiplex id (SMB mid). Otherwise there could be
146 * mid collisions which might cause problems, demultiplexing the
147 * wrong response to this request. Multiplex ids could collide if
148 * one of a series requests takes much longer than the others, or
149 * if a very large number of long lived requests (byte range
150 * locks or FindNotify requests) are pending. No more than
151 * 64K-1 requests can be outstanding at one time. If no
152 * mids are available, return zero. A future optimization
153 * could make the combination of mids and uid the key we use
154 * to demultiplex on (rather than mid alone).
155 * In addition to the above check, the cifs demultiplex
156 * code already used the command code as a secondary
157 * check of the frame and if signing is negotiated the
158 * response would be discarded if the mid were the same
159 * but the signature was wrong. Since the mid is not put in the
160 * pending queue until later (when it is about to be dispatched)
161 * we do have to limit the number of outstanding requests
162 * to somewhat less than 64K-1 although it is hard to imagine
163 * so many threads being in the vfs at one time.
166 cifs_get_next_mid(struct TCP_Server_Info
*server
)
169 __u16 last_mid
, cur_mid
;
172 spin_lock(&GlobalMid_Lock
);
174 /* mid is 16 bit only for CIFS/SMB */
175 cur_mid
= (__u16
)((server
->CurrentMid
) & 0xffff);
176 /* we do not want to loop forever */
181 * This nested loop looks more expensive than it is.
182 * In practice the list of pending requests is short,
183 * fewer than 50, and the mids are likely to be unique
184 * on the first pass through the loop unless some request
185 * takes longer than the 64 thousand requests before it
186 * (and it would also have to have been a request that
189 while (cur_mid
!= last_mid
) {
190 struct mid_q_entry
*mid_entry
;
191 unsigned int num_mids
;
198 list_for_each_entry(mid_entry
, &server
->pending_mid_q
, qhead
) {
200 if (mid_entry
->mid
== cur_mid
&&
201 mid_entry
->mid_state
== MID_REQUEST_SUBMITTED
) {
202 /* This mid is in use, try a different one */
209 * if we have more than 32k mids in the list, then something
210 * is very wrong. Possibly a local user is trying to DoS the
211 * box by issuing long-running calls and SIGKILL'ing them. If
212 * we get to 2^16 mids then we're in big trouble as this
213 * function could loop forever.
215 * Go ahead and assign out the mid in this situation, but force
216 * an eventual reconnect to clean out the pending_mid_q.
218 if (num_mids
> 32768)
219 server
->tcpStatus
= CifsNeedReconnect
;
222 mid
= (__u64
)cur_mid
;
223 server
->CurrentMid
= mid
;
228 spin_unlock(&GlobalMid_Lock
);
234 0 not a transact2, or all data present
235 >0 transact2 with that much data missing
236 -EINVAL invalid transact2
239 check2ndT2(char *buf
)
241 struct smb_hdr
*pSMB
= (struct smb_hdr
*)buf
;
242 struct smb_t2_rsp
*pSMBt
;
244 __u16 total_data_size
, data_in_this_rsp
;
246 if (pSMB
->Command
!= SMB_COM_TRANSACTION2
)
249 /* check for plausible wct, bcc and t2 data and parm sizes */
250 /* check for parm and data offset going beyond end of smb */
251 if (pSMB
->WordCount
!= 10) { /* coalesce_t2 depends on this */
252 cFYI(1, "invalid transact2 word count");
256 pSMBt
= (struct smb_t2_rsp
*)pSMB
;
258 total_data_size
= get_unaligned_le16(&pSMBt
->t2_rsp
.TotalDataCount
);
259 data_in_this_rsp
= get_unaligned_le16(&pSMBt
->t2_rsp
.DataCount
);
261 if (total_data_size
== data_in_this_rsp
)
263 else if (total_data_size
< data_in_this_rsp
) {
264 cFYI(1, "total data %d smaller than data in frame %d",
265 total_data_size
, data_in_this_rsp
);
269 remaining
= total_data_size
- data_in_this_rsp
;
271 cFYI(1, "missing %d bytes from transact2, check next response",
273 if (total_data_size
> CIFSMaxBufSize
) {
274 cERROR(1, "TotalDataSize %d is over maximum buffer %d",
275 total_data_size
, CIFSMaxBufSize
);
282 coalesce_t2(char *second_buf
, struct smb_hdr
*target_hdr
)
284 struct smb_t2_rsp
*pSMBs
= (struct smb_t2_rsp
*)second_buf
;
285 struct smb_t2_rsp
*pSMBt
= (struct smb_t2_rsp
*)target_hdr
;
286 char *data_area_of_tgt
;
287 char *data_area_of_src
;
289 unsigned int byte_count
, total_in_tgt
;
290 __u16 tgt_total_cnt
, src_total_cnt
, total_in_src
;
292 src_total_cnt
= get_unaligned_le16(&pSMBs
->t2_rsp
.TotalDataCount
);
293 tgt_total_cnt
= get_unaligned_le16(&pSMBt
->t2_rsp
.TotalDataCount
);
295 if (tgt_total_cnt
!= src_total_cnt
)
296 cFYI(1, "total data count of primary and secondary t2 differ "
297 "source=%hu target=%hu", src_total_cnt
, tgt_total_cnt
);
299 total_in_tgt
= get_unaligned_le16(&pSMBt
->t2_rsp
.DataCount
);
301 remaining
= tgt_total_cnt
- total_in_tgt
;
304 cFYI(1, "Server sent too much data. tgt_total_cnt=%hu "
305 "total_in_tgt=%hu", tgt_total_cnt
, total_in_tgt
);
309 if (remaining
== 0) {
310 /* nothing to do, ignore */
311 cFYI(1, "no more data remains");
315 total_in_src
= get_unaligned_le16(&pSMBs
->t2_rsp
.DataCount
);
316 if (remaining
< total_in_src
)
317 cFYI(1, "transact2 2nd response contains too much data");
319 /* find end of first SMB data area */
320 data_area_of_tgt
= (char *)&pSMBt
->hdr
.Protocol
+
321 get_unaligned_le16(&pSMBt
->t2_rsp
.DataOffset
);
323 /* validate target area */
324 data_area_of_src
= (char *)&pSMBs
->hdr
.Protocol
+
325 get_unaligned_le16(&pSMBs
->t2_rsp
.DataOffset
);
327 data_area_of_tgt
+= total_in_tgt
;
329 total_in_tgt
+= total_in_src
;
330 /* is the result too big for the field? */
331 if (total_in_tgt
> USHRT_MAX
) {
332 cFYI(1, "coalesced DataCount too large (%u)", total_in_tgt
);
335 put_unaligned_le16(total_in_tgt
, &pSMBt
->t2_rsp
.DataCount
);
338 byte_count
= get_bcc(target_hdr
);
339 byte_count
+= total_in_src
;
340 /* is the result too big for the field? */
341 if (byte_count
> USHRT_MAX
) {
342 cFYI(1, "coalesced BCC too large (%u)", byte_count
);
345 put_bcc(byte_count
, target_hdr
);
347 byte_count
= be32_to_cpu(target_hdr
->smb_buf_length
);
348 byte_count
+= total_in_src
;
349 /* don't allow buffer to overflow */
350 if (byte_count
> CIFSMaxBufSize
+ MAX_CIFS_HDR_SIZE
- 4) {
351 cFYI(1, "coalesced BCC exceeds buffer size (%u)", byte_count
);
354 target_hdr
->smb_buf_length
= cpu_to_be32(byte_count
);
356 /* copy second buffer into end of first buffer */
357 memcpy(data_area_of_tgt
, data_area_of_src
, total_in_src
);
359 if (remaining
!= total_in_src
) {
360 /* more responses to go */
361 cFYI(1, "waiting for more secondary responses");
366 cFYI(1, "found the last secondary response");
371 cifs_check_trans2(struct mid_q_entry
*mid
, struct TCP_Server_Info
*server
,
372 char *buf
, int malformed
)
376 if (check2ndT2(buf
) <= 0)
378 mid
->multiRsp
= true;
380 /* merge response - fix up 1st*/
381 malformed
= coalesce_t2(buf
, mid
->resp_buf
);
384 /* All parts received or packet is malformed. */
385 mid
->multiEnd
= true;
386 dequeue_mid(mid
, malformed
);
389 if (!server
->large_buf
) {
390 /*FIXME: switch to already allocated largebuf?*/
391 cERROR(1, "1st trans2 resp needs bigbuf");
393 /* Have first buffer */
395 mid
->large_buf
= true;
396 server
->bigbuf
= NULL
;
402 cifs_need_neg(struct TCP_Server_Info
*server
)
404 return server
->maxBuf
== 0;
408 cifs_negotiate(const unsigned int xid
, struct cifs_ses
*ses
)
411 rc
= CIFSSMBNegotiate(xid
, ses
);
413 /* retry only once on 1st time connection */
414 set_credits(ses
->server
, 1);
415 rc
= CIFSSMBNegotiate(xid
, ses
);
423 cifs_negotiate_wsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
425 __u64 unix_cap
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
426 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
429 /* start with specified wsize, or default */
430 if (volume_info
->wsize
)
431 wsize
= volume_info
->wsize
;
432 else if (tcon
->unix_ext
&& (unix_cap
& CIFS_UNIX_LARGE_WRITE_CAP
))
433 wsize
= CIFS_DEFAULT_IOSIZE
;
435 wsize
= CIFS_DEFAULT_NON_POSIX_WSIZE
;
437 /* can server support 24-bit write sizes? (via UNIX extensions) */
438 if (!tcon
->unix_ext
|| !(unix_cap
& CIFS_UNIX_LARGE_WRITE_CAP
))
439 wsize
= min_t(unsigned int, wsize
, CIFS_MAX_RFC1002_WSIZE
);
442 * no CAP_LARGE_WRITE_X or is signing enabled without CAP_UNIX set?
443 * Limit it to max buffer offered by the server, minus the size of the
444 * WRITEX header, not including the 4 byte RFC1001 length.
446 if (!(server
->capabilities
& CAP_LARGE_WRITE_X
) ||
447 (!(server
->capabilities
& CAP_UNIX
) &&
448 (server
->sec_mode
& (SECMODE_SIGN_ENABLED
|SECMODE_SIGN_REQUIRED
))))
449 wsize
= min_t(unsigned int, wsize
,
450 server
->maxBuf
- sizeof(WRITE_REQ
) + 4);
452 /* hard limit of CIFS_MAX_WSIZE */
453 wsize
= min_t(unsigned int, wsize
, CIFS_MAX_WSIZE
);
459 cifs_negotiate_rsize(struct cifs_tcon
*tcon
, struct smb_vol
*volume_info
)
461 __u64 unix_cap
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
462 struct TCP_Server_Info
*server
= tcon
->ses
->server
;
463 unsigned int rsize
, defsize
;
466 * Set default value...
468 * HACK alert! Ancient servers have very small buffers. Even though
469 * MS-CIFS indicates that servers are only limited by the client's
470 * bufsize for reads, testing against win98se shows that it throws
471 * INVALID_PARAMETER errors if you try to request too large a read.
472 * OS/2 just sends back short reads.
474 * If the server doesn't advertise CAP_LARGE_READ_X, then assume that
475 * it can't handle a read request larger than its MaxBufferSize either.
477 if (tcon
->unix_ext
&& (unix_cap
& CIFS_UNIX_LARGE_READ_CAP
))
478 defsize
= CIFS_DEFAULT_IOSIZE
;
479 else if (server
->capabilities
& CAP_LARGE_READ_X
)
480 defsize
= CIFS_DEFAULT_NON_POSIX_RSIZE
;
482 defsize
= server
->maxBuf
- sizeof(READ_RSP
);
484 rsize
= volume_info
->rsize
? volume_info
->rsize
: defsize
;
487 * no CAP_LARGE_READ_X? Then MS-CIFS states that we must limit this to
488 * the client's MaxBufferSize.
490 if (!(server
->capabilities
& CAP_LARGE_READ_X
))
491 rsize
= min_t(unsigned int, CIFSMaxBufSize
, rsize
);
493 /* hard limit of CIFS_MAX_RSIZE */
494 rsize
= min_t(unsigned int, rsize
, CIFS_MAX_RSIZE
);
500 cifs_qfs_tcon(const unsigned int xid
, struct cifs_tcon
*tcon
)
502 CIFSSMBQFSDeviceInfo(xid
, tcon
);
503 CIFSSMBQFSAttributeInfo(xid
, tcon
);
507 cifs_is_path_accessible(const unsigned int xid
, struct cifs_tcon
*tcon
,
508 struct cifs_sb_info
*cifs_sb
, const char *full_path
)
511 FILE_ALL_INFO
*file_info
;
513 file_info
= kmalloc(sizeof(FILE_ALL_INFO
), GFP_KERNEL
);
514 if (file_info
== NULL
)
517 rc
= CIFSSMBQPathInfo(xid
, tcon
, full_path
, file_info
,
518 0 /* not legacy */, cifs_sb
->local_nls
,
519 cifs_sb
->mnt_cifs_flags
&
520 CIFS_MOUNT_MAP_SPECIAL_CHR
);
522 if (rc
== -EOPNOTSUPP
|| rc
== -EINVAL
)
523 rc
= SMBQueryInformation(xid
, tcon
, full_path
, file_info
,
524 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
525 CIFS_MOUNT_MAP_SPECIAL_CHR
);
531 cifs_query_path_info(const unsigned int xid
, struct cifs_tcon
*tcon
,
532 struct cifs_sb_info
*cifs_sb
, const char *full_path
,
533 FILE_ALL_INFO
*data
, bool *adjustTZ
)
537 /* could do find first instead but this returns more info */
538 rc
= CIFSSMBQPathInfo(xid
, tcon
, full_path
, data
, 0 /* not legacy */,
539 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
540 CIFS_MOUNT_MAP_SPECIAL_CHR
);
542 * BB optimize code so we do not make the above call when server claims
543 * no NT SMB support and the above call failed at least once - set flag
546 if ((rc
== -EOPNOTSUPP
) || (rc
== -EINVAL
)) {
547 rc
= SMBQueryInformation(xid
, tcon
, full_path
, data
,
549 cifs_sb
->mnt_cifs_flags
&
550 CIFS_MOUNT_MAP_SPECIAL_CHR
);
557 cifs_get_srv_inum(const unsigned int xid
, struct cifs_tcon
*tcon
,
558 struct cifs_sb_info
*cifs_sb
, const char *full_path
,
559 u64
*uniqueid
, FILE_ALL_INFO
*data
)
562 * We can not use the IndexNumber field by default from Windows or
563 * Samba (in ALL_INFO buf) but we can request it explicitly. The SNIA
564 * CIFS spec claims that this value is unique within the scope of a
565 * share, and the windows docs hint that it's actually unique
568 * There may be higher info levels that work but are there Windows
569 * server or network appliances for which IndexNumber field is not
572 return CIFSGetSrvInodeNumber(xid
, tcon
, full_path
, uniqueid
,
574 cifs_sb
->mnt_cifs_flags
&
575 CIFS_MOUNT_MAP_SPECIAL_CHR
);
579 cifs_query_file_info(const unsigned int xid
, struct cifs_tcon
*tcon
,
580 struct cifs_fid
*fid
, FILE_ALL_INFO
*data
)
582 return CIFSSMBQFileInfo(xid
, tcon
, fid
->netfid
, data
);
586 cifs_clear_stats(struct cifs_tcon
*tcon
)
588 #ifdef CONFIG_CIFS_STATS
589 atomic_set(&tcon
->stats
.cifs_stats
.num_writes
, 0);
590 atomic_set(&tcon
->stats
.cifs_stats
.num_reads
, 0);
591 atomic_set(&tcon
->stats
.cifs_stats
.num_flushes
, 0);
592 atomic_set(&tcon
->stats
.cifs_stats
.num_oplock_brks
, 0);
593 atomic_set(&tcon
->stats
.cifs_stats
.num_opens
, 0);
594 atomic_set(&tcon
->stats
.cifs_stats
.num_posixopens
, 0);
595 atomic_set(&tcon
->stats
.cifs_stats
.num_posixmkdirs
, 0);
596 atomic_set(&tcon
->stats
.cifs_stats
.num_closes
, 0);
597 atomic_set(&tcon
->stats
.cifs_stats
.num_deletes
, 0);
598 atomic_set(&tcon
->stats
.cifs_stats
.num_mkdirs
, 0);
599 atomic_set(&tcon
->stats
.cifs_stats
.num_rmdirs
, 0);
600 atomic_set(&tcon
->stats
.cifs_stats
.num_renames
, 0);
601 atomic_set(&tcon
->stats
.cifs_stats
.num_t2renames
, 0);
602 atomic_set(&tcon
->stats
.cifs_stats
.num_ffirst
, 0);
603 atomic_set(&tcon
->stats
.cifs_stats
.num_fnext
, 0);
604 atomic_set(&tcon
->stats
.cifs_stats
.num_fclose
, 0);
605 atomic_set(&tcon
->stats
.cifs_stats
.num_hardlinks
, 0);
606 atomic_set(&tcon
->stats
.cifs_stats
.num_symlinks
, 0);
607 atomic_set(&tcon
->stats
.cifs_stats
.num_locks
, 0);
608 atomic_set(&tcon
->stats
.cifs_stats
.num_acl_get
, 0);
609 atomic_set(&tcon
->stats
.cifs_stats
.num_acl_set
, 0);
614 cifs_print_stats(struct seq_file
*m
, struct cifs_tcon
*tcon
)
616 #ifdef CONFIG_CIFS_STATS
617 seq_printf(m
, " Oplocks breaks: %d",
618 atomic_read(&tcon
->stats
.cifs_stats
.num_oplock_brks
));
619 seq_printf(m
, "\nReads: %d Bytes: %llu",
620 atomic_read(&tcon
->stats
.cifs_stats
.num_reads
),
621 (long long)(tcon
->bytes_read
));
622 seq_printf(m
, "\nWrites: %d Bytes: %llu",
623 atomic_read(&tcon
->stats
.cifs_stats
.num_writes
),
624 (long long)(tcon
->bytes_written
));
625 seq_printf(m
, "\nFlushes: %d",
626 atomic_read(&tcon
->stats
.cifs_stats
.num_flushes
));
627 seq_printf(m
, "\nLocks: %d HardLinks: %d Symlinks: %d",
628 atomic_read(&tcon
->stats
.cifs_stats
.num_locks
),
629 atomic_read(&tcon
->stats
.cifs_stats
.num_hardlinks
),
630 atomic_read(&tcon
->stats
.cifs_stats
.num_symlinks
));
631 seq_printf(m
, "\nOpens: %d Closes: %d Deletes: %d",
632 atomic_read(&tcon
->stats
.cifs_stats
.num_opens
),
633 atomic_read(&tcon
->stats
.cifs_stats
.num_closes
),
634 atomic_read(&tcon
->stats
.cifs_stats
.num_deletes
));
635 seq_printf(m
, "\nPosix Opens: %d Posix Mkdirs: %d",
636 atomic_read(&tcon
->stats
.cifs_stats
.num_posixopens
),
637 atomic_read(&tcon
->stats
.cifs_stats
.num_posixmkdirs
));
638 seq_printf(m
, "\nMkdirs: %d Rmdirs: %d",
639 atomic_read(&tcon
->stats
.cifs_stats
.num_mkdirs
),
640 atomic_read(&tcon
->stats
.cifs_stats
.num_rmdirs
));
641 seq_printf(m
, "\nRenames: %d T2 Renames %d",
642 atomic_read(&tcon
->stats
.cifs_stats
.num_renames
),
643 atomic_read(&tcon
->stats
.cifs_stats
.num_t2renames
));
644 seq_printf(m
, "\nFindFirst: %d FNext %d FClose %d",
645 atomic_read(&tcon
->stats
.cifs_stats
.num_ffirst
),
646 atomic_read(&tcon
->stats
.cifs_stats
.num_fnext
),
647 atomic_read(&tcon
->stats
.cifs_stats
.num_fclose
));
652 cifs_mkdir_setinfo(struct inode
*inode
, const char *full_path
,
653 struct cifs_sb_info
*cifs_sb
, struct cifs_tcon
*tcon
,
654 const unsigned int xid
)
656 FILE_BASIC_INFO info
;
657 struct cifsInodeInfo
*cifsInode
;
661 memset(&info
, 0, sizeof(info
));
662 cifsInode
= CIFS_I(inode
);
663 dosattrs
= cifsInode
->cifsAttrs
|ATTR_READONLY
;
664 info
.Attributes
= cpu_to_le32(dosattrs
);
665 rc
= CIFSSMBSetPathInfo(xid
, tcon
, full_path
, &info
, cifs_sb
->local_nls
,
666 cifs_sb
->mnt_cifs_flags
&
667 CIFS_MOUNT_MAP_SPECIAL_CHR
);
669 cifsInode
->cifsAttrs
= dosattrs
;
673 cifs_open_file(const unsigned int xid
, struct cifs_tcon
*tcon
, const char *path
,
674 int disposition
, int desired_access
, int create_options
,
675 struct cifs_fid
*fid
, __u32
*oplock
, FILE_ALL_INFO
*buf
,
676 struct cifs_sb_info
*cifs_sb
)
678 if (!(tcon
->ses
->capabilities
& CAP_NT_SMBS
))
679 return SMBLegacyOpen(xid
, tcon
, path
, disposition
,
680 desired_access
, create_options
,
681 &fid
->netfid
, oplock
, buf
,
682 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
683 & CIFS_MOUNT_MAP_SPECIAL_CHR
);
684 return CIFSSMBOpen(xid
, tcon
, path
, disposition
, desired_access
,
685 create_options
, &fid
->netfid
, oplock
, buf
,
686 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
687 CIFS_MOUNT_MAP_SPECIAL_CHR
);
691 cifs_set_fid(struct cifsFileInfo
*cfile
, struct cifs_fid
*fid
, __u32 oplock
)
693 struct cifsInodeInfo
*cinode
= CIFS_I(cfile
->dentry
->d_inode
);
694 cfile
->fid
.netfid
= fid
->netfid
;
695 cifs_set_oplock_level(cinode
, oplock
);
696 cinode
->can_cache_brlcks
= cinode
->clientCanCacheAll
;
700 cifs_close_file(const unsigned int xid
, struct cifs_tcon
*tcon
,
701 struct cifs_fid
*fid
)
703 CIFSSMBClose(xid
, tcon
, fid
->netfid
);
707 cifs_flush_file(const unsigned int xid
, struct cifs_tcon
*tcon
,
708 struct cifs_fid
*fid
)
710 return CIFSSMBFlush(xid
, tcon
, fid
->netfid
);
714 cifs_sync_read(const unsigned int xid
, struct cifsFileInfo
*cfile
,
715 struct cifs_io_parms
*parms
, unsigned int *bytes_read
,
716 char **buf
, int *buf_type
)
718 parms
->netfid
= cfile
->fid
.netfid
;
719 return CIFSSMBRead(xid
, parms
, bytes_read
, buf
, buf_type
);
723 cifs_sync_write(const unsigned int xid
, struct cifsFileInfo
*cfile
,
724 struct cifs_io_parms
*parms
, unsigned int *written
,
725 struct kvec
*iov
, unsigned long nr_segs
)
728 parms
->netfid
= cfile
->fid
.netfid
;
729 return CIFSSMBWrite2(xid
, parms
, written
, iov
, nr_segs
);
733 smb_set_file_info(struct inode
*inode
, const char *full_path
,
734 FILE_BASIC_INFO
*buf
, const unsigned int xid
)
740 struct cifsFileInfo
*open_file
;
741 struct cifsInodeInfo
*cinode
= CIFS_I(inode
);
742 struct cifs_sb_info
*cifs_sb
= CIFS_SB(inode
->i_sb
);
743 struct tcon_link
*tlink
= NULL
;
744 struct cifs_tcon
*tcon
;
746 /* if the file is already open for write, just use that fileid */
747 open_file
= find_writable_file(cinode
, true);
749 netfid
= open_file
->fid
.netfid
;
750 netpid
= open_file
->pid
;
751 tcon
= tlink_tcon(open_file
->tlink
);
752 goto set_via_filehandle
;
755 tlink
= cifs_sb_tlink(cifs_sb
);
761 tcon
= tlink_tcon(tlink
);
764 * NT4 apparently returns success on this call, but it doesn't really
767 if (!(tcon
->ses
->flags
& CIFS_SES_NT4
)) {
768 rc
= CIFSSMBSetPathInfo(xid
, tcon
, full_path
, buf
,
770 cifs_sb
->mnt_cifs_flags
&
771 CIFS_MOUNT_MAP_SPECIAL_CHR
);
773 cinode
->cifsAttrs
= le32_to_cpu(buf
->Attributes
);
775 } else if (rc
!= -EOPNOTSUPP
&& rc
!= -EINVAL
)
779 cFYI(1, "calling SetFileInfo since SetPathInfo for times not supported "
781 rc
= CIFSSMBOpen(xid
, tcon
, full_path
, FILE_OPEN
,
782 SYNCHRONIZE
| FILE_WRITE_ATTRIBUTES
, CREATE_NOT_DIR
,
783 &netfid
, &oplock
, NULL
, cifs_sb
->local_nls
,
784 cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_MAP_SPECIAL_CHR
);
792 netpid
= current
->tgid
;
795 rc
= CIFSSMBSetFileInfo(xid
, tcon
, buf
, netfid
, netpid
);
797 cinode
->cifsAttrs
= le32_to_cpu(buf
->Attributes
);
799 if (open_file
== NULL
)
800 CIFSSMBClose(xid
, tcon
, netfid
);
802 cifsFileInfo_put(open_file
);
805 cifs_put_tlink(tlink
);
810 cifs_query_dir_first(const unsigned int xid
, struct cifs_tcon
*tcon
,
811 const char *path
, struct cifs_sb_info
*cifs_sb
,
812 struct cifs_fid
*fid
, __u16 search_flags
,
813 struct cifs_search_info
*srch_inf
)
815 return CIFSFindFirst(xid
, tcon
, path
, cifs_sb
,
816 &fid
->netfid
, search_flags
, srch_inf
, true);
820 cifs_query_dir_next(const unsigned int xid
, struct cifs_tcon
*tcon
,
821 struct cifs_fid
*fid
, __u16 search_flags
,
822 struct cifs_search_info
*srch_inf
)
824 return CIFSFindNext(xid
, tcon
, fid
->netfid
, search_flags
, srch_inf
);
828 cifs_close_dir(const unsigned int xid
, struct cifs_tcon
*tcon
,
829 struct cifs_fid
*fid
)
831 return CIFSFindClose(xid
, tcon
, fid
->netfid
);
835 cifs_oplock_response(struct cifs_tcon
*tcon
, struct cifs_fid
*fid
,
836 struct cifsInodeInfo
*cinode
)
838 return CIFSSMBLock(0, tcon
, fid
->netfid
, current
->tgid
, 0, 0, 0, 0,
839 LOCKING_ANDX_OPLOCK_RELEASE
, false,
840 cinode
->clientCanCacheRead
? 1 : 0);
844 cifs_queryfs(const unsigned int xid
, struct cifs_tcon
*tcon
,
847 int rc
= -EOPNOTSUPP
;
849 buf
->f_type
= CIFS_MAGIC_NUMBER
;
852 * We could add a second check for a QFS Unix capability bit
854 if ((tcon
->ses
->capabilities
& CAP_UNIX
) &&
855 (CIFS_POSIX_EXTENSIONS
& le64_to_cpu(tcon
->fsUnixInfo
.Capability
)))
856 rc
= CIFSSMBQFSPosixInfo(xid
, tcon
, buf
);
859 * Only need to call the old QFSInfo if failed on newer one,
862 if (rc
&& (tcon
->ses
->capabilities
& CAP_NT_SMBS
))
863 rc
= CIFSSMBQFSInfo(xid
, tcon
, buf
);
866 * Some old Windows servers also do not support level 103, retry with
867 * older level one if old server failed the previous call or we
868 * bypassed it because we detected that this was an older LANMAN sess
871 rc
= SMBOldQFSInfo(xid
, tcon
, buf
);
876 cifs_mand_lock(const unsigned int xid
, struct cifsFileInfo
*cfile
, __u64 offset
,
877 __u64 length
, __u32 type
, int lock
, int unlock
, bool wait
)
879 return CIFSSMBLock(xid
, tlink_tcon(cfile
->tlink
), cfile
->fid
.netfid
,
880 current
->tgid
, length
, offset
, unlock
, lock
,
881 (__u8
)type
, wait
, 0);
884 struct smb_version_operations smb1_operations
= {
885 .send_cancel
= send_nt_cancel
,
886 .compare_fids
= cifs_compare_fids
,
887 .setup_request
= cifs_setup_request
,
888 .setup_async_request
= cifs_setup_async_request
,
889 .check_receive
= cifs_check_receive
,
890 .add_credits
= cifs_add_credits
,
891 .set_credits
= cifs_set_credits
,
892 .get_credits_field
= cifs_get_credits_field
,
893 .get_credits
= cifs_get_credits
,
894 .get_next_mid
= cifs_get_next_mid
,
895 .read_data_offset
= cifs_read_data_offset
,
896 .read_data_length
= cifs_read_data_length
,
897 .map_error
= map_smb_to_linux_error
,
898 .find_mid
= cifs_find_mid
,
899 .check_message
= checkSMB
,
900 .dump_detail
= cifs_dump_detail
,
901 .clear_stats
= cifs_clear_stats
,
902 .print_stats
= cifs_print_stats
,
903 .is_oplock_break
= is_valid_oplock_break
,
904 .check_trans2
= cifs_check_trans2
,
905 .need_neg
= cifs_need_neg
,
906 .negotiate
= cifs_negotiate
,
907 .negotiate_wsize
= cifs_negotiate_wsize
,
908 .negotiate_rsize
= cifs_negotiate_rsize
,
909 .sess_setup
= CIFS_SessSetup
,
910 .logoff
= CIFSSMBLogoff
,
911 .tree_connect
= CIFSTCon
,
912 .tree_disconnect
= CIFSSMBTDis
,
913 .get_dfs_refer
= CIFSGetDFSRefer
,
914 .qfs_tcon
= cifs_qfs_tcon
,
915 .is_path_accessible
= cifs_is_path_accessible
,
916 .query_path_info
= cifs_query_path_info
,
917 .query_file_info
= cifs_query_file_info
,
918 .get_srv_inum
= cifs_get_srv_inum
,
919 .set_path_size
= CIFSSMBSetEOF
,
920 .set_file_size
= CIFSSMBSetFileSize
,
921 .set_file_info
= smb_set_file_info
,
923 .mkdir
= CIFSSMBMkDir
,
924 .mkdir_setinfo
= cifs_mkdir_setinfo
,
925 .rmdir
= CIFSSMBRmDir
,
926 .unlink
= CIFSSMBDelFile
,
927 .rename_pending_delete
= cifs_rename_pending_delete
,
928 .rename
= CIFSSMBRename
,
929 .create_hardlink
= CIFSCreateHardLink
,
930 .open
= cifs_open_file
,
931 .set_fid
= cifs_set_fid
,
932 .close
= cifs_close_file
,
933 .flush
= cifs_flush_file
,
934 .async_readv
= cifs_async_readv
,
935 .async_writev
= cifs_async_writev
,
936 .sync_read
= cifs_sync_read
,
937 .sync_write
= cifs_sync_write
,
938 .query_dir_first
= cifs_query_dir_first
,
939 .query_dir_next
= cifs_query_dir_next
,
940 .close_dir
= cifs_close_dir
,
941 .calc_smb_size
= smbCalcSize
,
942 .oplock_response
= cifs_oplock_response
,
943 .queryfs
= cifs_queryfs
,
944 .mand_lock
= cifs_mand_lock
,
945 .mand_unlock_range
= cifs_unlock_range
,
946 .push_mand_locks
= cifs_push_mandatory_locks
,
949 struct smb_version_values smb1_values
= {
950 .version_string
= SMB1_VERSION_STRING
,
951 .large_lock_type
= LOCKING_ANDX_LARGE_FILES
,
952 .exclusive_lock_type
= 0,
953 .shared_lock_type
= LOCKING_ANDX_SHARED_LOCK
,
954 .unlock_lock_type
= 0,
955 .header_size
= sizeof(struct smb_hdr
),
956 .max_header_size
= MAX_CIFS_HDR_SIZE
,
957 .read_rsp_size
= sizeof(READ_RSP
),
958 .lock_cmd
= cpu_to_le16(SMB_COM_LOCKING_ANDX
),
959 .cap_unix
= CAP_UNIX
,
960 .cap_nt_find
= CAP_NT_SMBS
| CAP_NT_FIND
,
961 .cap_large_files
= CAP_LARGE_FILES
,
962 .oplock_read
= OPLOCK_READ
,