1 // SPDX-License-Identifier: LGPL-2.1
4 * Copyright (C) International Business Machines Corp., 2002,2008
9 #include <linux/slab.h>
10 #include <linux/ctype.h>
11 #include <linux/mempool.h>
12 #include <linux/vmalloc.h>
15 #include "cifsproto.h"
16 #include "cifs_debug.h"
19 #include "cifs_unicode.h"
22 #ifdef CONFIG_CIFS_DFS_UPCALL
23 #include "dns_resolve.h"
25 #include "fs_context.h"
27 extern mempool_t *cifs_sm_req_poolp;
28 extern mempool_t *cifs_req_poolp;
30 /* The xid serves as a useful identifier for each incoming vfs request,
31 in a similar way to the mid which is useful to track each sent smb,
32 and CurrentXid can also provide a running counter (although it
33 will eventually wrap past zero) of the total vfs operations handled
34 since the cifs fs was mounted */
41 spin_lock(&GlobalMid_Lock);
42 GlobalTotalActiveXid++;
44 /* keep high water mark for number of simultaneous ops in filesystem */
45 if (GlobalTotalActiveXid > GlobalMaxActiveXid)
46 GlobalMaxActiveXid = GlobalTotalActiveXid;
47 if (GlobalTotalActiveXid > 65000)
48 cifs_dbg(FYI, "warning: more than 65000 requests active\n");
49 xid = GlobalCurrentXid++;
50 spin_unlock(&GlobalMid_Lock);
55 _free_xid(unsigned int xid)
57 spin_lock(&GlobalMid_Lock);
58 /* if (GlobalTotalActiveXid == 0)
60 GlobalTotalActiveXid--;
61 spin_unlock(&GlobalMid_Lock);
67 struct cifs_ses *ret_buf;
69 ret_buf = kzalloc(sizeof(struct cifs_ses), GFP_KERNEL);
71 atomic_inc(&sesInfoAllocCount);
72 ret_buf->status = CifsNew;
74 INIT_LIST_HEAD(&ret_buf->smb_ses_list);
75 INIT_LIST_HEAD(&ret_buf->tcon_list);
76 mutex_init(&ret_buf->session_mutex);
77 spin_lock_init(&ret_buf->iface_lock);
83 sesInfoFree(struct cifs_ses *buf_to_free)
85 if (buf_to_free == NULL) {
86 cifs_dbg(FYI, "Null buffer passed to sesInfoFree\n");
90 atomic_dec(&sesInfoAllocCount);
91 kfree(buf_to_free->serverOS);
92 kfree(buf_to_free->serverDomain);
93 kfree(buf_to_free->serverNOS);
94 kfree_sensitive(buf_to_free->password);
95 kfree(buf_to_free->user_name);
96 kfree(buf_to_free->domainName);
97 kfree_sensitive(buf_to_free->auth_key.response);
98 kfree(buf_to_free->iface_list);
99 kfree_sensitive(buf_to_free);
105 struct cifs_tcon *ret_buf;
107 ret_buf = kzalloc(sizeof(*ret_buf), GFP_KERNEL);
110 ret_buf->crfid.fid = kzalloc(sizeof(*ret_buf->crfid.fid), GFP_KERNEL);
111 if (!ret_buf->crfid.fid) {
116 atomic_inc(&tconInfoAllocCount);
117 ret_buf->tidStatus = CifsNew;
119 INIT_LIST_HEAD(&ret_buf->openFileList);
120 INIT_LIST_HEAD(&ret_buf->tcon_list);
121 spin_lock_init(&ret_buf->open_file_lock);
122 mutex_init(&ret_buf->crfid.fid_mutex);
123 spin_lock_init(&ret_buf->stat_lock);
124 atomic_set(&ret_buf->num_local_opens, 0);
125 atomic_set(&ret_buf->num_remote_opens, 0);
131 tconInfoFree(struct cifs_tcon *buf_to_free)
133 if (buf_to_free == NULL) {
134 cifs_dbg(FYI, "Null buffer passed to tconInfoFree\n");
137 atomic_dec(&tconInfoAllocCount);
138 kfree(buf_to_free->nativeFileSystem);
139 kfree_sensitive(buf_to_free->password);
140 kfree(buf_to_free->crfid.fid);
141 #ifdef CONFIG_CIFS_DFS_UPCALL
142 kfree(buf_to_free->dfs_path);
150 struct smb_hdr *ret_buf = NULL;
152 * SMB2 header is bigger than CIFS one - no problems to clean some
153 * more bytes for CIFS.
155 size_t buf_size = sizeof(struct smb2_sync_hdr);
158 * We could use negotiated size instead of max_msgsize -
159 * but it may be more efficient to always alloc same size
160 * albeit slightly larger than necessary and maxbuffersize
161 * defaults to this and can not be bigger.
163 ret_buf = mempool_alloc(cifs_req_poolp, GFP_NOFS);
165 /* clear the first few header bytes */
166 /* for most paths, more is cleared in header_assemble */
167 memset(ret_buf, 0, buf_size + 3);
168 atomic_inc(&bufAllocCount);
169 #ifdef CONFIG_CIFS_STATS2
170 atomic_inc(&totBufAllocCount);
171 #endif /* CONFIG_CIFS_STATS2 */
177 cifs_buf_release(void *buf_to_free)
179 if (buf_to_free == NULL) {
180 /* cifs_dbg(FYI, "Null buffer passed to cifs_buf_release\n");*/
183 mempool_free(buf_to_free, cifs_req_poolp);
185 atomic_dec(&bufAllocCount);
190 cifs_small_buf_get(void)
192 struct smb_hdr *ret_buf = NULL;
194 /* We could use negotiated size instead of max_msgsize -
195 but it may be more efficient to always alloc same size
196 albeit slightly larger than necessary and maxbuffersize
197 defaults to this and can not be bigger */
198 ret_buf = mempool_alloc(cifs_sm_req_poolp, GFP_NOFS);
199 /* No need to clear memory here, cleared in header assemble */
200 /* memset(ret_buf, 0, sizeof(struct smb_hdr) + 27);*/
201 atomic_inc(&smBufAllocCount);
202 #ifdef CONFIG_CIFS_STATS2
203 atomic_inc(&totSmBufAllocCount);
204 #endif /* CONFIG_CIFS_STATS2 */
210 cifs_small_buf_release(void *buf_to_free)
213 if (buf_to_free == NULL) {
214 cifs_dbg(FYI, "Null buffer passed to cifs_small_buf_release\n");
217 mempool_free(buf_to_free, cifs_sm_req_poolp);
219 atomic_dec(&smBufAllocCount);
224 free_rsp_buf(int resp_buftype, void *rsp)
226 if (resp_buftype == CIFS_SMALL_BUFFER)
227 cifs_small_buf_release(rsp);
228 else if (resp_buftype == CIFS_LARGE_BUFFER)
229 cifs_buf_release(rsp);
232 /* NB: MID can not be set if treeCon not passed in, in that
233 case it is responsbility of caller to set the mid */
235 header_assemble(struct smb_hdr *buffer, char smb_command /* command */ ,
236 const struct cifs_tcon *treeCon, int word_count
237 /* length of fixed section (word count) in two byte units */)
239 char *temp = (char *) buffer;
241 memset(temp, 0, 256); /* bigger than MAX_CIFS_HDR_SIZE */
243 buffer->smb_buf_length = cpu_to_be32(
244 (2 * word_count) + sizeof(struct smb_hdr) -
245 4 /* RFC 1001 length field does not count */ +
246 2 /* for bcc field itself */) ;
248 buffer->Protocol[0] = 0xFF;
249 buffer->Protocol[1] = 'S';
250 buffer->Protocol[2] = 'M';
251 buffer->Protocol[3] = 'B';
252 buffer->Command = smb_command;
253 buffer->Flags = 0x00; /* case sensitive */
254 buffer->Flags2 = SMBFLG2_KNOWS_LONG_NAMES;
255 buffer->Pid = cpu_to_le16((__u16)current->tgid);
256 buffer->PidHigh = cpu_to_le16((__u16)(current->tgid >> 16));
258 buffer->Tid = treeCon->tid;
260 if (treeCon->ses->capabilities & CAP_UNICODE)
261 buffer->Flags2 |= SMBFLG2_UNICODE;
262 if (treeCon->ses->capabilities & CAP_STATUS32)
263 buffer->Flags2 |= SMBFLG2_ERR_STATUS;
265 /* Uid is not converted */
266 buffer->Uid = treeCon->ses->Suid;
267 buffer->Mid = get_next_mid(treeCon->ses->server);
269 if (treeCon->Flags & SMB_SHARE_IS_IN_DFS)
270 buffer->Flags2 |= SMBFLG2_DFS;
272 buffer->Flags |= SMBFLG_CASELESS;
273 if ((treeCon->ses) && (treeCon->ses->server))
274 if (treeCon->ses->server->sign)
275 buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
278 /* endian conversion of flags is now done just before sending */
279 buffer->WordCount = (char) word_count;
284 check_smb_hdr(struct smb_hdr *smb)
286 /* does it have the right SMB "signature" ? */
287 if (*(__le32 *) smb->Protocol != cpu_to_le32(0x424d53ff)) {
288 cifs_dbg(VFS, "Bad protocol string signature header 0x%x\n",
289 *(unsigned int *)smb->Protocol);
293 /* if it's a response then accept */
294 if (smb->Flags & SMBFLG_RESPONSE)
297 /* only one valid case where server sends us request */
298 if (smb->Command == SMB_COM_LOCKING_ANDX)
301 cifs_dbg(VFS, "Server sent request, not response. mid=%u\n",
307 checkSMB(char *buf, unsigned int total_read, struct TCP_Server_Info *server)
309 struct smb_hdr *smb = (struct smb_hdr *)buf;
310 __u32 rfclen = be32_to_cpu(smb->smb_buf_length);
311 __u32 clc_len; /* calculated length */
312 cifs_dbg(FYI, "checkSMB Length: 0x%x, smb_buf_length: 0x%x\n",
315 /* is this frame too small to even get to a BCC? */
316 if (total_read < 2 + sizeof(struct smb_hdr)) {
317 if ((total_read >= sizeof(struct smb_hdr) - 1)
318 && (smb->Status.CifsError != 0)) {
319 /* it's an error return */
321 /* some error cases do not return wct and bcc */
323 } else if ((total_read == sizeof(struct smb_hdr) + 1) &&
324 (smb->WordCount == 0)) {
325 char *tmp = (char *)smb;
326 /* Need to work around a bug in two servers here */
327 /* First, check if the part of bcc they sent was zero */
328 if (tmp[sizeof(struct smb_hdr)] == 0) {
329 /* some servers return only half of bcc
330 * on simple responses (wct, bcc both zero)
331 * in particular have seen this on
332 * ulogoffX and FindClose. This leaves
333 * one byte of bcc potentially unitialized
335 /* zero rest of bcc */
336 tmp[sizeof(struct smb_hdr)+1] = 0;
339 cifs_dbg(VFS, "rcvd invalid byte count (bcc)\n");
341 cifs_dbg(VFS, "Length less than smb header size\n");
346 /* otherwise, there is enough to get to the BCC */
347 if (check_smb_hdr(smb))
349 clc_len = smbCalcSize(smb, server);
351 if (4 + rfclen != total_read) {
352 cifs_dbg(VFS, "Length read does not match RFC1001 length %d\n",
357 if (4 + rfclen != clc_len) {
358 __u16 mid = get_mid(smb);
359 /* check if bcc wrapped around for large read responses */
360 if ((rfclen > 64 * 1024) && (rfclen > clc_len)) {
361 /* check if lengths match mod 64K */
362 if (((4 + rfclen) & 0xFFFF) == (clc_len & 0xFFFF))
363 return 0; /* bcc wrapped */
365 cifs_dbg(FYI, "Calculated size %u vs length %u mismatch for mid=%u\n",
366 clc_len, 4 + rfclen, mid);
368 if (4 + rfclen < clc_len) {
369 cifs_dbg(VFS, "RFC1001 size %u smaller than SMB for mid=%u\n",
372 } else if (rfclen > clc_len + 512) {
374 * Some servers (Windows XP in particular) send more
375 * data than the lengths in the SMB packet would
376 * indicate on certain calls (byte range locks and
377 * trans2 find first calls in particular). While the
378 * client can handle such a frame by ignoring the
379 * trailing data, we choose limit the amount of extra
382 cifs_dbg(VFS, "RFC1001 size %u more than 512 bytes larger than SMB for mid=%u\n",
391 is_valid_oplock_break(char *buffer, struct TCP_Server_Info *srv)
393 struct smb_hdr *buf = (struct smb_hdr *)buffer;
394 struct smb_com_lock_req *pSMB = (struct smb_com_lock_req *)buf;
395 struct list_head *tmp, *tmp1, *tmp2;
396 struct cifs_ses *ses;
397 struct cifs_tcon *tcon;
398 struct cifsInodeInfo *pCifsInode;
399 struct cifsFileInfo *netfile;
401 cifs_dbg(FYI, "Checking for oplock break or dnotify response\n");
402 if ((pSMB->hdr.Command == SMB_COM_NT_TRANSACT) &&
403 (pSMB->hdr.Flags & SMBFLG_RESPONSE)) {
404 struct smb_com_transaction_change_notify_rsp *pSMBr =
405 (struct smb_com_transaction_change_notify_rsp *)buf;
406 struct file_notify_information *pnotify;
407 __u32 data_offset = 0;
408 size_t len = srv->total_read - sizeof(pSMBr->hdr.smb_buf_length);
410 if (get_bcc(buf) > sizeof(struct file_notify_information)) {
411 data_offset = le32_to_cpu(pSMBr->DataOffset);
414 len - sizeof(struct file_notify_information)) {
415 cifs_dbg(FYI, "Invalid data_offset %u\n",
419 pnotify = (struct file_notify_information *)
420 ((char *)&pSMBr->hdr.Protocol + data_offset);
421 cifs_dbg(FYI, "dnotify on %s Action: 0x%x\n",
422 pnotify->FileName, pnotify->Action);
423 /* cifs_dump_mem("Rcvd notify Data: ",buf,
424 sizeof(struct smb_hdr)+60); */
427 if (pSMBr->hdr.Status.CifsError) {
428 cifs_dbg(FYI, "notify err 0x%x\n",
429 pSMBr->hdr.Status.CifsError);
434 if (pSMB->hdr.Command != SMB_COM_LOCKING_ANDX)
436 if (pSMB->hdr.Flags & SMBFLG_RESPONSE) {
437 /* no sense logging error on invalid handle on oplock
438 break - harmless race between close request and oplock
439 break response is expected from time to time writing out
440 large dirty files cached on the client */
441 if ((NT_STATUS_INVALID_HANDLE) ==
442 le32_to_cpu(pSMB->hdr.Status.CifsError)) {
443 cifs_dbg(FYI, "Invalid handle on oplock break\n");
445 } else if (ERRbadfid ==
446 le16_to_cpu(pSMB->hdr.Status.DosError.Error)) {
449 return false; /* on valid oplock brk we get "request" */
452 if (pSMB->hdr.WordCount != 8)
455 cifs_dbg(FYI, "oplock type 0x%x level 0x%x\n",
456 pSMB->LockType, pSMB->OplockLevel);
457 if (!(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE))
460 /* look up tcon based on tid & uid */
461 spin_lock(&cifs_tcp_ses_lock);
462 list_for_each(tmp, &srv->smb_ses_list) {
463 ses = list_entry(tmp, struct cifs_ses, smb_ses_list);
464 list_for_each(tmp1, &ses->tcon_list) {
465 tcon = list_entry(tmp1, struct cifs_tcon, tcon_list);
466 if (tcon->tid != buf->Tid)
469 cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks);
470 spin_lock(&tcon->open_file_lock);
471 list_for_each(tmp2, &tcon->openFileList) {
472 netfile = list_entry(tmp2, struct cifsFileInfo,
474 if (pSMB->Fid != netfile->fid.netfid)
477 cifs_dbg(FYI, "file id match, oplock break\n");
478 pCifsInode = CIFS_I(d_inode(netfile->dentry));
480 set_bit(CIFS_INODE_PENDING_OPLOCK_BREAK,
483 netfile->oplock_epoch = 0;
484 netfile->oplock_level = pSMB->OplockLevel;
485 netfile->oplock_break_cancelled = false;
486 cifs_queue_oplock_break(netfile);
488 spin_unlock(&tcon->open_file_lock);
489 spin_unlock(&cifs_tcp_ses_lock);
492 spin_unlock(&tcon->open_file_lock);
493 spin_unlock(&cifs_tcp_ses_lock);
494 cifs_dbg(FYI, "No matching file for oplock break\n");
498 spin_unlock(&cifs_tcp_ses_lock);
499 cifs_dbg(FYI, "Can not process oplock break for non-existent connection\n");
504 dump_smb(void *buf, int smb_buf_length)
509 print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_NONE, 8, 2, buf,
510 smb_buf_length, true);
514 cifs_autodisable_serverino(struct cifs_sb_info *cifs_sb)
516 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
517 struct cifs_tcon *tcon = NULL;
519 if (cifs_sb->master_tlink)
520 tcon = cifs_sb_master_tcon(cifs_sb);
522 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
523 cifs_sb->mnt_cifs_serverino_autodisabled = true;
524 cifs_dbg(VFS, "Autodisabling the use of server inode numbers on %s\n",
525 tcon ? tcon->treeName : "new server");
526 cifs_dbg(VFS, "The server doesn't seem to support them properly or the files might be on different servers (DFS)\n");
527 cifs_dbg(VFS, "Hardlinks will not be recognized on this mount. Consider mounting with the \"noserverino\" option to silence this message.\n");
532 void cifs_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock)
536 if (oplock == OPLOCK_EXCLUSIVE) {
537 cinode->oplock = CIFS_CACHE_WRITE_FLG | CIFS_CACHE_READ_FLG;
538 cifs_dbg(FYI, "Exclusive Oplock granted on inode %p\n",
540 } else if (oplock == OPLOCK_READ) {
541 cinode->oplock = CIFS_CACHE_READ_FLG;
542 cifs_dbg(FYI, "Level II Oplock granted on inode %p\n",
549 * We wait for oplock breaks to be processed before we attempt to perform
552 int cifs_get_writer(struct cifsInodeInfo *cinode)
557 rc = wait_on_bit(&cinode->flags, CIFS_INODE_PENDING_OPLOCK_BREAK,
562 spin_lock(&cinode->writers_lock);
563 if (!cinode->writers)
564 set_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
566 /* Check to see if we have started servicing an oplock break */
567 if (test_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags)) {
569 if (cinode->writers == 0) {
570 clear_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
571 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS);
573 spin_unlock(&cinode->writers_lock);
576 spin_unlock(&cinode->writers_lock);
580 void cifs_put_writer(struct cifsInodeInfo *cinode)
582 spin_lock(&cinode->writers_lock);
584 if (cinode->writers == 0) {
585 clear_bit(CIFS_INODE_PENDING_WRITERS, &cinode->flags);
586 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_WRITERS);
588 spin_unlock(&cinode->writers_lock);
592 * cifs_queue_oplock_break - queue the oplock break handler for cfile
594 * This function is called from the demultiplex thread when it
595 * receives an oplock break for @cfile.
597 * Assumes the tcon->open_file_lock is held.
598 * Assumes cfile->file_info_lock is NOT held.
600 void cifs_queue_oplock_break(struct cifsFileInfo *cfile)
603 * Bump the handle refcount now while we hold the
604 * open_file_lock to enforce the validity of it for the oplock
605 * break handler. The matching put is done at the end of the
608 cifsFileInfo_get(cfile);
610 queue_work(cifsoplockd_wq, &cfile->oplock_break);
613 void cifs_done_oplock_break(struct cifsInodeInfo *cinode)
615 clear_bit(CIFS_INODE_PENDING_OPLOCK_BREAK, &cinode->flags);
616 wake_up_bit(&cinode->flags, CIFS_INODE_PENDING_OPLOCK_BREAK);
620 backup_cred(struct cifs_sb_info *cifs_sb)
622 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID) {
623 if (uid_eq(cifs_sb->ctx->backupuid, current_fsuid()))
626 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID) {
627 if (in_group_p(cifs_sb->ctx->backupgid))
635 cifs_del_pending_open(struct cifs_pending_open *open)
637 spin_lock(&tlink_tcon(open->tlink)->open_file_lock);
638 list_del(&open->olist);
639 spin_unlock(&tlink_tcon(open->tlink)->open_file_lock);
643 cifs_add_pending_open_locked(struct cifs_fid *fid, struct tcon_link *tlink,
644 struct cifs_pending_open *open)
646 memcpy(open->lease_key, fid->lease_key, SMB2_LEASE_KEY_SIZE);
647 open->oplock = CIFS_OPLOCK_NO_CHANGE;
649 fid->pending_open = open;
650 list_add_tail(&open->olist, &tlink_tcon(tlink)->pending_opens);
654 cifs_add_pending_open(struct cifs_fid *fid, struct tcon_link *tlink,
655 struct cifs_pending_open *open)
657 spin_lock(&tlink_tcon(tlink)->open_file_lock);
658 cifs_add_pending_open_locked(fid, tlink, open);
659 spin_unlock(&tlink_tcon(open->tlink)->open_file_lock);
663 * Critical section which runs after acquiring deferred_lock.
664 * As there is no reference count on cifs_deferred_close, pdclose
665 * should not be used outside deferred_lock.
668 cifs_is_deferred_close(struct cifsFileInfo *cfile, struct cifs_deferred_close **pdclose)
670 struct cifs_deferred_close *dclose;
672 list_for_each_entry(dclose, &CIFS_I(d_inode(cfile->dentry))->deferred_closes, dlist) {
673 if ((dclose->netfid == cfile->fid.netfid) &&
674 (dclose->persistent_fid == cfile->fid.persistent_fid) &&
675 (dclose->volatile_fid == cfile->fid.volatile_fid)) {
684 * Critical section which runs after acquiring deferred_lock.
687 cifs_add_deferred_close(struct cifsFileInfo *cfile, struct cifs_deferred_close *dclose)
689 bool is_deferred = false;
690 struct cifs_deferred_close *pdclose;
692 is_deferred = cifs_is_deferred_close(cfile, &pdclose);
698 dclose->tlink = cfile->tlink;
699 dclose->netfid = cfile->fid.netfid;
700 dclose->persistent_fid = cfile->fid.persistent_fid;
701 dclose->volatile_fid = cfile->fid.volatile_fid;
702 list_add_tail(&dclose->dlist, &CIFS_I(d_inode(cfile->dentry))->deferred_closes);
706 * Critical section which runs after acquiring deferred_lock.
709 cifs_del_deferred_close(struct cifsFileInfo *cfile)
711 bool is_deferred = false;
712 struct cifs_deferred_close *dclose;
714 is_deferred = cifs_is_deferred_close(cfile, &dclose);
717 list_del(&dclose->dlist);
722 cifs_close_deferred_file(struct cifsInodeInfo *cifs_inode)
724 struct cifsFileInfo *cfile = NULL;
725 struct file_list *tmp_list, *tmp_next_list;
726 struct list_head file_head;
728 if (cifs_inode == NULL)
731 INIT_LIST_HEAD(&file_head);
732 spin_lock(&cifs_inode->open_file_lock);
733 list_for_each_entry(cfile, &cifs_inode->openFileList, flist) {
734 if (delayed_work_pending(&cfile->deferred)) {
735 if (cancel_delayed_work(&cfile->deferred)) {
736 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
737 if (tmp_list == NULL)
739 tmp_list->cfile = cfile;
740 list_add_tail(&tmp_list->list, &file_head);
744 spin_unlock(&cifs_inode->open_file_lock);
746 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
747 _cifsFileInfo_put(tmp_list->cfile, true, false);
748 list_del(&tmp_list->list);
754 cifs_close_all_deferred_files(struct cifs_tcon *tcon)
756 struct cifsFileInfo *cfile;
757 struct list_head *tmp;
758 struct file_list *tmp_list, *tmp_next_list;
759 struct list_head file_head;
761 INIT_LIST_HEAD(&file_head);
762 spin_lock(&tcon->open_file_lock);
763 list_for_each(tmp, &tcon->openFileList) {
764 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
765 if (delayed_work_pending(&cfile->deferred)) {
766 if (cancel_delayed_work(&cfile->deferred)) {
767 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
768 if (tmp_list == NULL)
770 tmp_list->cfile = cfile;
771 list_add_tail(&tmp_list->list, &file_head);
775 spin_unlock(&tcon->open_file_lock);
777 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
778 _cifsFileInfo_put(tmp_list->cfile, true, false);
779 list_del(&tmp_list->list);
784 cifs_close_deferred_file_under_dentry(struct cifs_tcon *tcon, const char *path)
786 struct cifsFileInfo *cfile;
787 struct list_head *tmp;
788 struct file_list *tmp_list, *tmp_next_list;
789 struct list_head file_head;
791 const char *full_path;
793 INIT_LIST_HEAD(&file_head);
794 page = alloc_dentry_path();
795 spin_lock(&tcon->open_file_lock);
796 list_for_each(tmp, &tcon->openFileList) {
797 cfile = list_entry(tmp, struct cifsFileInfo, tlist);
798 full_path = build_path_from_dentry(cfile->dentry, page);
799 if (strstr(full_path, path)) {
800 if (delayed_work_pending(&cfile->deferred)) {
801 if (cancel_delayed_work(&cfile->deferred)) {
802 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC);
803 if (tmp_list == NULL)
805 tmp_list->cfile = cfile;
806 list_add_tail(&tmp_list->list, &file_head);
811 spin_unlock(&tcon->open_file_lock);
813 list_for_each_entry_safe(tmp_list, tmp_next_list, &file_head, list) {
814 _cifsFileInfo_put(tmp_list->cfile, true, false);
815 list_del(&tmp_list->list);
818 free_dentry_path(page);
821 /* parses DFS refferal V3 structure
822 * caller is responsible for freeing target_nodes
825 * - on failure - errno
828 parse_dfs_referrals(struct get_dfs_referral_rsp *rsp, u32 rsp_size,
829 unsigned int *num_of_nodes,
830 struct dfs_info3_param **target_nodes,
831 const struct nls_table *nls_codepage, int remap,
832 const char *searchName, bool is_unicode)
836 struct dfs_referral_level_3 *ref;
838 *num_of_nodes = le16_to_cpu(rsp->NumberOfReferrals);
840 if (*num_of_nodes < 1) {
841 cifs_dbg(VFS, "num_referrals: must be at least > 0, but we get num_referrals = %d\n",
844 goto parse_DFS_referrals_exit;
847 ref = (struct dfs_referral_level_3 *) &(rsp->referrals);
848 if (ref->VersionNumber != cpu_to_le16(3)) {
849 cifs_dbg(VFS, "Referrals of V%d version are not supported, should be V3\n",
850 le16_to_cpu(ref->VersionNumber));
852 goto parse_DFS_referrals_exit;
855 /* get the upper boundary of the resp buffer */
856 data_end = (char *)rsp + rsp_size;
858 cifs_dbg(FYI, "num_referrals: %d dfs flags: 0x%x ...\n",
859 *num_of_nodes, le32_to_cpu(rsp->DFSFlags));
861 *target_nodes = kcalloc(*num_of_nodes, sizeof(struct dfs_info3_param),
863 if (*target_nodes == NULL) {
865 goto parse_DFS_referrals_exit;
868 /* collect necessary data from referrals */
869 for (i = 0; i < *num_of_nodes; i++) {
872 struct dfs_info3_param *node = (*target_nodes)+i;
874 node->flags = le32_to_cpu(rsp->DFSFlags);
876 __le16 *tmp = kmalloc(strlen(searchName)*2 + 2,
880 goto parse_DFS_referrals_exit;
882 cifsConvertToUTF16((__le16 *) tmp, searchName,
883 PATH_MAX, nls_codepage, remap);
884 node->path_consumed = cifs_utf16_bytes(tmp,
885 le16_to_cpu(rsp->PathConsumed),
889 node->path_consumed = le16_to_cpu(rsp->PathConsumed);
891 node->server_type = le16_to_cpu(ref->ServerType);
892 node->ref_flag = le16_to_cpu(ref->ReferralEntryFlags);
895 temp = (char *)ref + le16_to_cpu(ref->DfsPathOffset);
896 max_len = data_end - temp;
897 node->path_name = cifs_strndup_from_utf16(temp, max_len,
898 is_unicode, nls_codepage);
899 if (!node->path_name) {
901 goto parse_DFS_referrals_exit;
904 /* copy link target UNC */
905 temp = (char *)ref + le16_to_cpu(ref->NetworkAddressOffset);
906 max_len = data_end - temp;
907 node->node_name = cifs_strndup_from_utf16(temp, max_len,
908 is_unicode, nls_codepage);
909 if (!node->node_name) {
911 goto parse_DFS_referrals_exit;
914 node->ttl = le32_to_cpu(ref->TimeToLive);
919 parse_DFS_referrals_exit:
921 free_dfs_info_array(*target_nodes, *num_of_nodes);
922 *target_nodes = NULL;
928 struct cifs_aio_ctx *
929 cifs_aio_ctx_alloc(void)
931 struct cifs_aio_ctx *ctx;
934 * Must use kzalloc to initialize ctx->bv to NULL and ctx->direct_io
935 * to false so that we know when we have to unreference pages within
936 * cifs_aio_ctx_release()
938 ctx = kzalloc(sizeof(struct cifs_aio_ctx), GFP_KERNEL);
942 INIT_LIST_HEAD(&ctx->list);
943 mutex_init(&ctx->aio_mutex);
944 init_completion(&ctx->done);
945 kref_init(&ctx->refcount);
950 cifs_aio_ctx_release(struct kref *refcount)
952 struct cifs_aio_ctx *ctx = container_of(refcount,
953 struct cifs_aio_ctx, refcount);
955 cifsFileInfo_put(ctx->cfile);
958 * ctx->bv is only set if setup_aio_ctx_iter() was call successfuly
959 * which means that iov_iter_get_pages() was a success and thus that
960 * we have taken reference on pages.
965 for (i = 0; i < ctx->npages; i++) {
966 if (ctx->should_dirty)
967 set_page_dirty(ctx->bv[i].bv_page);
968 put_page(ctx->bv[i].bv_page);
976 #define CIFS_AIO_KMALLOC_LIMIT (1024 * 1024)
979 setup_aio_ctx_iter(struct cifs_aio_ctx *ctx, struct iov_iter *iter, int rw)
982 unsigned int cur_npages;
983 unsigned int npages = 0;
986 size_t count = iov_iter_count(iter);
987 unsigned int saved_len;
989 unsigned int max_pages = iov_iter_npages(iter, INT_MAX);
990 struct page **pages = NULL;
991 struct bio_vec *bv = NULL;
993 if (iov_iter_is_kvec(iter)) {
994 memcpy(&ctx->iter, iter, sizeof(*iter));
996 iov_iter_advance(iter, count);
1000 if (array_size(max_pages, sizeof(*bv)) <= CIFS_AIO_KMALLOC_LIMIT)
1001 bv = kmalloc_array(max_pages, sizeof(*bv), GFP_KERNEL);
1004 bv = vmalloc(array_size(max_pages, sizeof(*bv)));
1009 if (array_size(max_pages, sizeof(*pages)) <= CIFS_AIO_KMALLOC_LIMIT)
1010 pages = kmalloc_array(max_pages, sizeof(*pages), GFP_KERNEL);
1013 pages = vmalloc(array_size(max_pages, sizeof(*pages)));
1022 while (count && npages < max_pages) {
1023 rc = iov_iter_get_pages(iter, pages, count, max_pages, &start);
1025 cifs_dbg(VFS, "Couldn't get user pages (rc=%zd)\n", rc);
1030 cifs_dbg(VFS, "get pages rc=%zd more than %zu\n", rc,
1035 iov_iter_advance(iter, rc);
1038 cur_npages = DIV_ROUND_UP(rc, PAGE_SIZE);
1040 if (npages + cur_npages > max_pages) {
1041 cifs_dbg(VFS, "out of vec array capacity (%u vs %u)\n",
1042 npages + cur_npages, max_pages);
1046 for (i = 0; i < cur_npages; i++) {
1047 len = rc > PAGE_SIZE ? PAGE_SIZE : rc;
1048 bv[npages + i].bv_page = pages[i];
1049 bv[npages + i].bv_offset = start;
1050 bv[npages + i].bv_len = len - start;
1055 npages += cur_npages;
1060 ctx->len = saved_len - count;
1061 ctx->npages = npages;
1062 iov_iter_bvec(&ctx->iter, rw, ctx->bv, npages, ctx->len);
1067 * cifs_alloc_hash - allocate hash and hash context together
1069 * The caller has to make sure @sdesc is initialized to either NULL or
1070 * a valid context. Both can be freed via cifs_free_hash().
1073 cifs_alloc_hash(const char *name,
1074 struct crypto_shash **shash, struct sdesc **sdesc)
1082 *shash = crypto_alloc_shash(name, 0, 0);
1083 if (IS_ERR(*shash)) {
1084 cifs_dbg(VFS, "Could not allocate crypto %s\n", name);
1085 rc = PTR_ERR(*shash);
1091 size = sizeof(struct shash_desc) + crypto_shash_descsize(*shash);
1092 *sdesc = kmalloc(size, GFP_KERNEL);
1093 if (*sdesc == NULL) {
1094 cifs_dbg(VFS, "no memory left to allocate crypto %s\n", name);
1095 crypto_free_shash(*shash);
1100 (*sdesc)->shash.tfm = *shash;
1105 * cifs_free_hash - free hash and hash context together
1107 * Freeing a NULL hash or context is safe.
1110 cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc)
1115 crypto_free_shash(*shash);
1120 * rqst_page_get_length - obtain the length and offset for a page in smb_rqst
1121 * Input: rqst - a smb_rqst, page - a page index for rqst
1122 * Output: *len - the length for this page, *offset - the offset for this page
1124 void rqst_page_get_length(struct smb_rqst *rqst, unsigned int page,
1125 unsigned int *len, unsigned int *offset)
1127 *len = rqst->rq_pagesz;
1128 *offset = (page == 0) ? rqst->rq_offset : 0;
1130 if (rqst->rq_npages == 1 || page == rqst->rq_npages-1)
1131 *len = rqst->rq_tailsz;
1133 *len = rqst->rq_pagesz - rqst->rq_offset;
1136 void extract_unc_hostname(const char *unc, const char **h, size_t *len)
1140 /* skip initial slashes */
1141 while (*unc && (*unc == '\\' || *unc == '/'))
1146 while (*end && !(*end == '\\' || *end == '/'))
1154 * copy_path_name - copy src path to dst, possibly truncating
1156 * returns number of bytes written (including trailing nul)
1158 int copy_path_name(char *dst, const char *src)
1163 * PATH_MAX includes nul, so if strlen(src) >= PATH_MAX it
1164 * will truncate and strlen(dst) will be PATH_MAX-1
1166 name_len = strscpy(dst, src, PATH_MAX);
1167 if (WARN_ON_ONCE(name_len < 0))
1168 name_len = PATH_MAX-1;
1170 /* we count the trailing nul */
1175 struct super_cb_data {
1177 struct super_block *sb;
1180 static void tcp_super_cb(struct super_block *sb, void *arg)
1182 struct super_cb_data *sd = arg;
1183 struct TCP_Server_Info *server = sd->data;
1184 struct cifs_sb_info *cifs_sb;
1185 struct cifs_tcon *tcon;
1190 cifs_sb = CIFS_SB(sb);
1191 tcon = cifs_sb_master_tcon(cifs_sb);
1192 if (tcon->ses->server == server)
1196 static struct super_block *__cifs_get_super(void (*f)(struct super_block *, void *),
1199 struct super_cb_data sd = {
1204 iterate_supers_type(&cifs_fs_type, f, &sd);
1207 return ERR_PTR(-EINVAL);
1209 * Grab an active reference in order to prevent automounts (DFS links)
1210 * of expiring and then freeing up our cifs superblock pointer while
1211 * we're doing failover.
1213 cifs_sb_active(sd.sb);
1217 static void __cifs_put_super(struct super_block *sb)
1219 if (!IS_ERR_OR_NULL(sb))
1220 cifs_sb_deactive(sb);
1223 struct super_block *cifs_get_tcp_super(struct TCP_Server_Info *server)
1225 return __cifs_get_super(tcp_super_cb, server);
1228 void cifs_put_tcp_super(struct super_block *sb)
1230 __cifs_put_super(sb);
1233 #ifdef CONFIG_CIFS_DFS_UPCALL
1234 int match_target_ip(struct TCP_Server_Info *server,
1235 const char *share, size_t share_len,
1239 char *target, *tip = NULL;
1240 struct sockaddr tipaddr;
1244 target = kzalloc(share_len + 3, GFP_KERNEL);
1250 scnprintf(target, share_len + 3, "\\\\%.*s", (int)share_len, share);
1252 cifs_dbg(FYI, "%s: target name: %s\n", __func__, target + 2);
1254 rc = dns_resolve_server_name_to_ip(target, &tip, NULL);
1258 cifs_dbg(FYI, "%s: target ip: %s\n", __func__, tip);
1260 if (!cifs_convert_address(&tipaddr, tip, strlen(tip))) {
1261 cifs_dbg(VFS, "%s: failed to convert target ip address\n",
1267 *result = cifs_match_ipaddr((struct sockaddr *)&server->dstaddr,
1269 cifs_dbg(FYI, "%s: ip addresses match: %u\n", __func__, *result);
1279 static void tcon_super_cb(struct super_block *sb, void *arg)
1281 struct super_cb_data *sd = arg;
1282 struct cifs_tcon *tcon = sd->data;
1283 struct cifs_sb_info *cifs_sb;
1288 cifs_sb = CIFS_SB(sb);
1289 if (tcon->dfs_path && cifs_sb->origin_fullpath &&
1290 !strcasecmp(tcon->dfs_path, cifs_sb->origin_fullpath))
1294 static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
1296 return __cifs_get_super(tcon_super_cb, tcon);
1299 static inline void cifs_put_tcon_super(struct super_block *sb)
1301 __cifs_put_super(sb);
1304 static inline struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon)
1306 return ERR_PTR(-EOPNOTSUPP);
1309 static inline void cifs_put_tcon_super(struct super_block *sb)
1314 int update_super_prepath(struct cifs_tcon *tcon, char *prefix)
1316 struct super_block *sb;
1317 struct cifs_sb_info *cifs_sb;
1320 sb = cifs_get_tcon_super(tcon);
1324 cifs_sb = CIFS_SB(sb);
1326 kfree(cifs_sb->prepath);
1328 if (prefix && *prefix) {
1329 cifs_sb->prepath = kstrdup(prefix, GFP_ATOMIC);
1330 if (!cifs_sb->prepath) {
1335 convert_delimiter(cifs_sb->prepath, CIFS_DIR_SEP(cifs_sb));
1337 cifs_sb->prepath = NULL;
1339 cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH;
1342 cifs_put_tcon_super(sb);