blob: 85ebdaa210150f60d5ae4eafb8b8d390b3fc63ac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/readdir.c
3 *
4 * Directory search handling
Steve French6dc0f872007-07-06 23:13:06 +00005 *
Steve Frenchad7a2922008-02-07 23:25:02 +00006 * Copyright (C) International Business Machines Corp., 2004, 2008
Christoph Hellwigcda0ec62011-07-16 15:24:05 -04007 * Copyright (C) Red Hat, Inc., 2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Author(s): Steve French (sfrench@us.ibm.com)
9 *
10 * This library is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as published
12 * by the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
14 *
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
18 * the GNU Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this library; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24#include <linux/fs.h>
Dave Kleikamp273d81d2006-06-01 19:41:23 +000025#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "cifspdu.h"
29#include "cifsglob.h"
30#include "cifsproto.h"
31#include "cifs_unicode.h"
32#include "cifs_debug.h"
33#include "cifs_fs_sb.h"
34#include "cifsfs.h"
35
Jeff Laytonf5884162009-04-30 07:18:00 -040036/*
37 * To be safe - for UCS to UTF-8 with strings loaded with the rare long
38 * characters alloc more to account for such multibyte target UTF-8
39 * characters.
40 */
41#define UNICODE_NAME_MAX ((4 * NAME_MAX) + 2)
42
Steve French39798772006-05-31 22:40:51 +000043#ifdef CONFIG_CIFS_DEBUG2
44static void dump_cifs_file_struct(struct file *file, char *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Steve French6dc0f872007-07-06 23:13:06 +000046 struct cifsFileInfo *cf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Steve French4523cc32007-04-30 20:13:06 +000048 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 cf = file->private_data;
Steve French4523cc32007-04-30 20:13:06 +000050 if (cf == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -050051 cifs_dbg(FYI, "empty cifs private file data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return;
53 }
Steve Frenchad7a2922008-02-07 23:25:02 +000054 if (cf->invalidHandle)
Joe Perchesf96637b2013-05-04 22:12:25 -050055 cifs_dbg(FYI, "invalid handle\n");
Steve Frenchad7a2922008-02-07 23:25:02 +000056 if (cf->srch_inf.endOfSearch)
Joe Perchesf96637b2013-05-04 22:12:25 -050057 cifs_dbg(FYI, "end of search\n");
Steve Frenchad7a2922008-02-07 23:25:02 +000058 if (cf->srch_inf.emptyDir)
Joe Perchesf96637b2013-05-04 22:12:25 -050059 cifs_dbg(FYI, "empty dir\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 }
Steve French39798772006-05-31 22:40:51 +000061}
Steve French90c81e02008-02-12 20:32:36 +000062#else
63static inline void dump_cifs_file_struct(struct file *file, char *label)
64{
65}
Steve French39798772006-05-31 22:40:51 +000066#endif /* DEBUG2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jeff Laytoncc0bad72009-06-25 00:56:52 -040068/*
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -050069 * Attempt to preload the dcache with the results from the FIND_FIRST/NEXT
70 *
Jeff Laytoncc0bad72009-06-25 00:56:52 -040071 * Find the dentry that matches "name". If there isn't one, create one. If it's
72 * a negative dentry or the uniqueid changed, then drop it and recreate it.
73 */
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -050074static void
75cifs_prime_dcache(struct dentry *parent, struct qstr *name,
Jeff Laytoncc0bad72009-06-25 00:56:52 -040076 struct cifs_fattr *fattr)
77{
78 struct dentry *dentry, *alias;
79 struct inode *inode;
80 struct super_block *sb = parent->d_inode->i_sb;
Jeff Layton2f2591a2012-12-18 06:35:10 -050081 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Jeff Laytoncc0bad72009-06-25 00:56:52 -040082
Joe Perchesf96637b2013-05-04 22:12:25 -050083 cifs_dbg(FYI, "%s: for %s\n", __func__, name->name);
Jeff Laytoncc0bad72009-06-25 00:56:52 -040084
Al Viro4f522a22013-02-11 23:20:37 -050085 dentry = d_hash_and_lookup(parent, name);
86 if (unlikely(IS_ERR(dentry)))
87 return;
Jeff Layton05507fa2010-02-05 13:30:36 -050088
Jeff Laytoncc0bad72009-06-25 00:56:52 -040089 if (dentry) {
Al Viro0903a0c2012-11-29 22:11:06 -050090 int err;
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -050091
Jeff Laytoncd600422012-07-06 07:09:42 -040092 inode = dentry->d_inode;
Jeff Layton2f2591a2012-12-18 06:35:10 -050093 if (inode) {
94 /*
95 * If we're generating inode numbers, then we don't
96 * want to clobber the existing one with the one that
97 * the readdir code created.
98 */
99 if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM))
100 fattr->cf_uniqueid = CIFS_I(inode)->uniqueid;
101
102 /* update inode in place if i_ino didn't change */
103 if (CIFS_I(inode)->uniqueid == fattr->cf_uniqueid) {
104 cifs_fattr_to_inode(inode, fattr);
105 goto out;
106 }
Jeff Laytoncd600422012-07-06 07:09:42 -0400107 }
Al Viro0903a0c2012-11-29 22:11:06 -0500108 err = d_invalidate(dentry);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400109 dput(dentry);
Al Viro0903a0c2012-11-29 22:11:06 -0500110 if (err)
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500111 return;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400112 }
113
Jeff Laytond1e8adc2013-08-07 10:29:08 -0400114 /*
115 * If we know that the inode will need to be revalidated immediately,
116 * then don't create a new dentry for it. We'll end up doing an on
117 * the wire call either way and this spares us an invalidation.
118 */
119 if (fattr->cf_flags & CIFS_FATTR_NEED_REVAL)
120 return;
121
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400122 dentry = d_alloc(parent, name);
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500123 if (!dentry)
124 return;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400125
126 inode = cifs_iget(sb, fattr);
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500127 if (!inode)
128 goto out;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400129
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400130 alias = d_materialise_unique(dentry, inode);
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500131 if (alias && !IS_ERR(alias))
132 dput(alias);
133out:
134 dput(dentry);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400135}
136
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400137static void
138cifs_fill_common_info(struct cifs_fattr *fattr, struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400140 fattr->cf_uid = cifs_sb->mnt_uid;
141 fattr->cf_gid = cifs_sb->mnt_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400143 if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
144 fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode;
145 fattr->cf_dtype = DT_DIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 } else {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400147 fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode;
148 fattr->cf_dtype = DT_REG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400151 if (fattr->cf_cifsattrs & ATTR_READONLY)
152 fattr->cf_mode &= ~S_IWUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Jeff Laytonccb5c002012-11-25 08:00:40 -0500154 /*
155 * We of course don't get ACL info in FIND_FIRST/NEXT results, so
156 * mark it for revalidation so that "ls -l" will look right. It might
157 * be super-slow, but if we don't do this then the ownership of files
158 * may look wrong since the inodes may not have timed out by the time
159 * "ls" does a stat() call on them.
160 */
161 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
162 fattr->cf_flags |= CIFS_FATTR_NEED_REVAL;
163
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400164 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL &&
165 fattr->cf_cifsattrs & ATTR_SYSTEM) {
166 if (fattr->cf_eof == 0) {
167 fattr->cf_mode &= ~S_IFMT;
168 fattr->cf_mode |= S_IFIFO;
169 fattr->cf_dtype = DT_FIFO;
Steve French3020a1f2005-11-18 11:31:10 -0800170 } else {
Jeff Layton4468eb32008-05-22 09:31:40 -0400171 /*
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400172 * trying to get the type and mode via SFU can be slow,
173 * so just call those regular files for now, and mark
174 * for reval
Jeff Layton4468eb32008-05-22 09:31:40 -0400175 */
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400176 fattr->cf_flags |= CIFS_FATTR_NEED_REVAL;
Jeff Layton4468eb32008-05-22 09:31:40 -0400177 }
178 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400179}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500181void
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400182cifs_dir_info_to_fattr(struct cifs_fattr *fattr, FILE_DIRECTORY_INFO *info,
183 struct cifs_sb_info *cifs_sb)
184{
185 memset(fattr, 0, sizeof(*fattr));
186 fattr->cf_cifsattrs = le32_to_cpu(info->ExtFileAttributes);
187 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
188 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
Jeff Layton20054bd2011-01-07 11:30:27 -0500189 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400190 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
191 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
192 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400194 cifs_fill_common_info(fattr, cifs_sb);
195}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Steve French15dd4782009-09-25 02:24:45 +0000197static void
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400198cifs_std_info_to_fattr(struct cifs_fattr *fattr, FIND_FILE_STANDARD_INFO *info,
199 struct cifs_sb_info *cifs_sb)
200{
Jeff Layton0d424ad2010-09-20 16:01:35 -0700201 int offset = cifs_sb_master_tcon(cifs_sb)->ses->server->timeAdj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400203 memset(fattr, 0, sizeof(*fattr));
204 fattr->cf_atime = cnvrtDosUnixTm(info->LastAccessDate,
205 info->LastAccessTime, offset);
206 fattr->cf_ctime = cnvrtDosUnixTm(info->LastWriteDate,
207 info->LastWriteTime, offset);
208 fattr->cf_mtime = cnvrtDosUnixTm(info->LastWriteDate,
209 info->LastWriteTime, offset);
Steve Frenchf3f6ec42006-01-08 20:12:58 -0800210
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400211 fattr->cf_cifsattrs = le16_to_cpu(info->Attributes);
212 fattr->cf_bytes = le32_to_cpu(info->AllocationSize);
213 fattr->cf_eof = le32_to_cpu(info->DataSize);
Dave Kleikamp273d81d2006-06-01 19:41:23 +0000214
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400215 cifs_fill_common_info(fattr, cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Steve French0e0d2cf2009-05-01 05:27:32 +0000218/* BB eventually need to add the following helper function to
219 resolve NT_STATUS_STOPPED_ON_SYMLINK return code when
220 we try to do FindFirst on (NTFS) directory symlinks */
221/*
222int get_symlink_reparse_path(char *full_path, struct cifs_sb_info *cifs_sb,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400223 unsigned int xid)
Steve French0e0d2cf2009-05-01 05:27:32 +0000224{
225 __u16 fid;
226 int len;
227 int oplock = 0;
228 int rc;
Steve French96daf2b2011-05-27 04:34:02 +0000229 struct cifs_tcon *ptcon = cifs_sb_tcon(cifs_sb);
Steve French0e0d2cf2009-05-01 05:27:32 +0000230 char *tmpbuffer;
231
232 rc = CIFSSMBOpen(xid, ptcon, full_path, FILE_OPEN, GENERIC_READ,
233 OPEN_REPARSE_POINT, &fid, &oplock, NULL,
234 cifs_sb->local_nls,
235 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
236 if (!rc) {
237 tmpbuffer = kmalloc(maxpath);
238 rc = CIFSSMBQueryReparseLinkInfo(xid, ptcon, full_path,
239 tmpbuffer,
240 maxpath -1,
241 fid,
242 cifs_sb->local_nls);
243 if (CIFSSMBClose(xid, ptcon, fid)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500244 cifs_dbg(FYI, "Error closing temporary reparsepoint open\n");
Steve French0e0d2cf2009-05-01 05:27:32 +0000245 }
246 }
247}
248 */
249
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700250static int
251initiate_cifs_search(const unsigned int xid, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500253 __u16 search_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 int rc = 0;
Jeff Layton7ffec372010-09-29 19:51:11 -0400255 char *full_path = NULL;
Steve French38702532007-07-08 15:40:40 +0000256 struct cifsFileInfo *cifsFile;
Jeff Layton7ffec372010-09-29 19:51:11 -0400257 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Jeff Layton59c55ba2010-11-12 06:30:29 -0500258 struct tcon_link *tlink = NULL;
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400259 struct cifs_tcon *tcon;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700260 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Jeff Layton7ffec372010-09-29 19:51:11 -0400262 if (file->private_data == NULL) {
Jeff Layton59c55ba2010-11-12 06:30:29 -0500263 tlink = cifs_sb_tlink(cifs_sb);
264 if (IS_ERR(tlink))
265 return PTR_ERR(tlink);
266
267 cifsFile = kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL);
268 if (cifsFile == NULL) {
269 rc = -ENOMEM;
270 goto error_exit;
271 }
272 file->private_data = cifsFile;
273 cifsFile->tlink = cifs_get_tlink(tlink);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400274 tcon = tlink_tcon(tlink);
Jeff Layton59c55ba2010-11-12 06:30:29 -0500275 } else {
276 cifsFile = file->private_data;
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400277 tcon = tlink_tcon(cifsFile->tlink);
Jeff Layton7ffec372010-09-29 19:51:11 -0400278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700280 server = tcon->ses->server;
281
282 if (!server->ops->query_dir_first) {
283 rc = -ENOSYS;
284 goto error_exit;
285 }
286
Steve French4b18f2a2008-04-29 00:06:05 +0000287 cifsFile->invalidHandle = true;
288 cifsFile->srch_inf.endOfSearch = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800290 full_path = build_path_from_dentry(file->f_path.dentry);
Jeff Layton7ffec372010-09-29 19:51:11 -0400291 if (full_path == NULL) {
292 rc = -ENOMEM;
293 goto error_exit;
294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Joe Perchesf96637b2013-05-04 22:12:25 -0500296 cifs_dbg(FYI, "Full path: %s start at: %lld\n", full_path, file->f_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Steve French75cf6bd2005-04-28 22:41:04 -0700298ffirst_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* test for Unix extensions */
Steve Frenchc18c8422007-07-18 23:21:09 +0000300 /* but now check for them on the share/mount not on the SMB session */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400301 /* if (cap_unix(tcon->ses) { */
302 if (tcon->unix_ext)
Steve French5bafd762006-06-07 00:18:43 +0000303 cifsFile->srch_inf.info_level = SMB_FIND_FILE_UNIX;
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400304 else if ((tcon->ses->capabilities &
305 tcon->ses->server->vals->cap_nt_find) == 0) {
Steve French5bafd762006-06-07 00:18:43 +0000306 cifsFile->srch_inf.info_level = SMB_FIND_FILE_INFO_STANDARD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
308 cifsFile->srch_inf.info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO;
309 } else /* not srvinos - BB fixme add check for backlevel? */ {
310 cifsFile->srch_inf.info_level = SMB_FIND_FILE_DIRECTORY_INFO;
311 }
312
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500313 search_flags = CIFS_SEARCH_CLOSE_AT_END | CIFS_SEARCH_RETURN_RESUME;
314 if (backup_cred(cifs_sb))
315 search_flags |= CIFS_SEARCH_BACKUP_SEARCH;
316
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700317 rc = server->ops->query_dir_first(xid, tcon, full_path, cifs_sb,
318 &cifsFile->fid, search_flags,
319 &cifsFile->srch_inf);
320
Steve French4523cc32007-04-30 20:13:06 +0000321 if (rc == 0)
Steve French4b18f2a2008-04-29 00:06:05 +0000322 cifsFile->invalidHandle = false;
Steve Frenche836f012009-05-01 16:20:35 +0000323 /* BB add following call to handle readdir on new NTFS symlink errors
Steve French0e0d2cf2009-05-01 05:27:32 +0000324 else if STATUS_STOPPED_ON_SYMLINK
325 call get_symlink_reparse_path and retry with new path */
326 else if ((rc == -EOPNOTSUPP) &&
Steve French75cf6bd2005-04-28 22:41:04 -0700327 (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
328 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
329 goto ffirst_retry;
330 }
Jeff Layton7ffec372010-09-29 19:51:11 -0400331error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 kfree(full_path);
Jeff Layton7ffec372010-09-29 19:51:11 -0400333 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return rc;
335}
336
337/* return length of unicode string in bytes */
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400338static int cifs_unicode_bytelen(const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 int len;
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400341 const __le16 *ustr = (const __le16 *)str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Steve French38702532007-07-08 15:40:40 +0000343 for (len = 0; len <= PATH_MAX; len++) {
Steve French4523cc32007-04-30 20:13:06 +0000344 if (ustr[len] == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return len << 1;
346 }
Joe Perchesf96637b2013-05-04 22:12:25 -0500347 cifs_dbg(FYI, "Unicode string longer than PATH_MAX found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return len << 1;
349}
350
Steve French5bafd762006-06-07 00:18:43 +0000351static char *nxt_dir_entry(char *old_entry, char *end_of_smb, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Steve French38702532007-07-08 15:40:40 +0000353 char *new_entry;
Steve Frenchad7a2922008-02-07 23:25:02 +0000354 FILE_DIRECTORY_INFO *pDirInfo = (FILE_DIRECTORY_INFO *)old_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Steve French4523cc32007-04-30 20:13:06 +0000356 if (level == SMB_FIND_FILE_INFO_STANDARD) {
Steve Frenchad7a2922008-02-07 23:25:02 +0000357 FIND_FILE_STANDARD_INFO *pfData;
Steve French5bafd762006-06-07 00:18:43 +0000358 pfData = (FIND_FILE_STANDARD_INFO *)pDirInfo;
359
360 new_entry = old_entry + sizeof(FIND_FILE_STANDARD_INFO) +
361 pfData->FileNameLength;
362 } else
363 new_entry = old_entry + le32_to_cpu(pDirInfo->NextEntryOffset);
Joe Perchesf96637b2013-05-04 22:12:25 -0500364 cifs_dbg(FYI, "new entry %p old entry %p\n", new_entry, old_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /* validate that new_entry is not past end of SMB */
Steve French4523cc32007-04-30 20:13:06 +0000366 if (new_entry >= end_of_smb) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500367 cifs_dbg(VFS, "search entry %p began after end of SMB %p old entry %p\n",
368 new_entry, end_of_smb, old_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return NULL;
Steve French4523cc32007-04-30 20:13:06 +0000370 } else if (((level == SMB_FIND_FILE_INFO_STANDARD) &&
Steve French38702532007-07-08 15:40:40 +0000371 (new_entry + sizeof(FIND_FILE_STANDARD_INFO) > end_of_smb))
372 || ((level != SMB_FIND_FILE_INFO_STANDARD) &&
Steve French5bafd762006-06-07 00:18:43 +0000373 (new_entry + sizeof(FILE_DIRECTORY_INFO) > end_of_smb))) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500374 cifs_dbg(VFS, "search entry %p extends after end of SMB %p\n",
375 new_entry, end_of_smb);
Steve French09d1db52005-04-28 22:41:08 -0700376 return NULL;
Steve French38702532007-07-08 15:40:40 +0000377 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return new_entry;
379
380}
381
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400382struct cifs_dirent {
383 const char *name;
384 size_t namelen;
385 u32 resume_key;
386 u64 ino;
387};
388
389static void cifs_fill_dirent_unix(struct cifs_dirent *de,
390 const FILE_UNIX_INFO *info, bool is_unicode)
391{
392 de->name = &info->FileName[0];
393 if (is_unicode)
394 de->namelen = cifs_unicode_bytelen(de->name);
395 else
396 de->namelen = strnlen(de->name, PATH_MAX);
397 de->resume_key = info->ResumeKey;
398 de->ino = le64_to_cpu(info->basic.UniqueId);
399}
400
401static void cifs_fill_dirent_dir(struct cifs_dirent *de,
402 const FILE_DIRECTORY_INFO *info)
403{
404 de->name = &info->FileName[0];
405 de->namelen = le32_to_cpu(info->FileNameLength);
406 de->resume_key = info->FileIndex;
407}
408
409static void cifs_fill_dirent_full(struct cifs_dirent *de,
410 const FILE_FULL_DIRECTORY_INFO *info)
411{
412 de->name = &info->FileName[0];
413 de->namelen = le32_to_cpu(info->FileNameLength);
414 de->resume_key = info->FileIndex;
415}
416
417static void cifs_fill_dirent_search(struct cifs_dirent *de,
418 const SEARCH_ID_FULL_DIR_INFO *info)
419{
420 de->name = &info->FileName[0];
421 de->namelen = le32_to_cpu(info->FileNameLength);
422 de->resume_key = info->FileIndex;
423 de->ino = le64_to_cpu(info->UniqueId);
424}
425
426static void cifs_fill_dirent_both(struct cifs_dirent *de,
427 const FILE_BOTH_DIRECTORY_INFO *info)
428{
429 de->name = &info->FileName[0];
430 de->namelen = le32_to_cpu(info->FileNameLength);
431 de->resume_key = info->FileIndex;
432}
433
434static void cifs_fill_dirent_std(struct cifs_dirent *de,
435 const FIND_FILE_STANDARD_INFO *info)
436{
437 de->name = &info->FileName[0];
438 /* one byte length, no endianess conversion */
439 de->namelen = info->FileNameLength;
440 de->resume_key = info->ResumeKey;
441}
442
443static int cifs_fill_dirent(struct cifs_dirent *de, const void *info,
444 u16 level, bool is_unicode)
445{
446 memset(de, 0, sizeof(*de));
447
448 switch (level) {
449 case SMB_FIND_FILE_UNIX:
450 cifs_fill_dirent_unix(de, info, is_unicode);
451 break;
452 case SMB_FIND_FILE_DIRECTORY_INFO:
453 cifs_fill_dirent_dir(de, info);
454 break;
455 case SMB_FIND_FILE_FULL_DIRECTORY_INFO:
456 cifs_fill_dirent_full(de, info);
457 break;
458 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
459 cifs_fill_dirent_search(de, info);
460 break;
461 case SMB_FIND_FILE_BOTH_DIRECTORY_INFO:
462 cifs_fill_dirent_both(de, info);
463 break;
464 case SMB_FIND_FILE_INFO_STANDARD:
465 cifs_fill_dirent_std(de, info);
466 break;
467 default:
Joe Perchesf96637b2013-05-04 22:12:25 -0500468 cifs_dbg(FYI, "Unknown findfirst level %d\n", level);
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400469 return -EINVAL;
470 }
471
472 return 0;
473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475#define UNICODE_DOT cpu_to_le16(0x2e)
476
477/* return 0 if no match and 1 for . (current directory) and 2 for .. (parent) */
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400478static int cifs_entry_is_dot(struct cifs_dirent *de, bool is_unicode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400482 if (!de->name)
483 return 0;
484
485 if (is_unicode) {
486 __le16 *ufilename = (__le16 *)de->name;
487 if (de->namelen == 2) {
488 /* check for . */
489 if (ufilename[0] == UNICODE_DOT)
490 rc = 1;
491 } else if (de->namelen == 4) {
492 /* check for .. */
493 if (ufilename[0] == UNICODE_DOT &&
494 ufilename[1] == UNICODE_DOT)
495 rc = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400497 } else /* ASCII */ {
498 if (de->namelen == 1) {
499 if (de->name[0] == '.')
500 rc = 1;
501 } else if (de->namelen == 2) {
502 if (de->name[0] == '.' && de->name[1] == '.')
503 rc = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 }
506
507 return rc;
508}
509
Steve Frencheafe8702005-09-15 21:47:30 -0700510/* Check if directory that we are searching has changed so we can decide
511 whether we can use the cached search results from the previous search */
Steve French38702532007-07-08 15:40:40 +0000512static int is_dir_changed(struct file *file)
Steve Frencheafe8702005-09-15 21:47:30 -0700513{
Al Viro496ad9a2013-01-23 17:07:38 -0500514 struct inode *inode = file_inode(file);
Christoph Hellwigc33f8d32007-04-02 18:47:20 +0000515 struct cifsInodeInfo *cifsInfo = CIFS_I(inode);
Steve Frencheafe8702005-09-15 21:47:30 -0700516
Christoph Hellwigc33f8d32007-04-02 18:47:20 +0000517 if (cifsInfo->time == 0)
Steve Frencheafe8702005-09-15 21:47:30 -0700518 return 1; /* directory was changed, perhaps due to unlink */
519 else
520 return 0;
521
522}
523
Steve French0752f152008-10-07 20:03:33 +0000524static int cifs_save_resume_key(const char *current_entry,
Christoph Hellwigeaf35b12011-07-16 15:24:37 -0400525 struct cifsFileInfo *file_info)
Steve French0752f152008-10-07 20:03:33 +0000526{
Christoph Hellwigeaf35b12011-07-16 15:24:37 -0400527 struct cifs_dirent de;
528 int rc;
Steve French0752f152008-10-07 20:03:33 +0000529
Christoph Hellwigeaf35b12011-07-16 15:24:37 -0400530 rc = cifs_fill_dirent(&de, current_entry, file_info->srch_inf.info_level,
531 file_info->srch_inf.unicode);
532 if (!rc) {
533 file_info->srch_inf.presume_name = de.name;
534 file_info->srch_inf.resume_name_len = de.namelen;
535 file_info->srch_inf.resume_key = de.resume_key;
Steve French0752f152008-10-07 20:03:33 +0000536 }
Steve French0752f152008-10-07 20:03:33 +0000537 return rc;
538}
539
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700540/*
541 * Find the corresponding entry in the search. Note that the SMB server returns
542 * search entries for . and .. which complicates logic here if we choose to
543 * parse for them and we do not assume that they are located in the findfirst
544 * return buffer. We start counting in the buffer with entry 2 and increment for
545 * every entry (do not increment for . or .. entry).
546 */
547static int
548find_cifs_entry(const unsigned int xid, struct cifs_tcon *tcon,
549 struct file *file, char **current_entry, int *num_to_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500551 __u16 search_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int rc = 0;
553 int pos_in_buf = 0;
554 loff_t first_entry_in_buffer;
555 loff_t index_to_find = file->f_pos;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700556 struct cifsFileInfo *cfile = file->private_data;
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500557 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700558 struct TCP_Server_Info *server = tcon->ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /* check if index in the buffer */
Steve French50c2f752007-07-13 00:33:32 +0000560
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700561 if (!server->ops->query_dir_first || !server->ops->query_dir_next)
562 return -ENOSYS;
563
564 if ((cfile == NULL) || (current_entry == NULL) || (num_to_ret == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return -ENOENT;
Steve French50c2f752007-07-13 00:33:32 +0000566
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700567 *current_entry = NULL;
568 first_entry_in_buffer = cfile->srch_inf.index_of_last_entry -
569 cfile->srch_inf.entries_in_buffer;
Steve French60808232006-04-22 15:53:05 +0000570
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700571 /*
572 * If first entry in buf is zero then is first buffer
573 * in search response data which means it is likely . and ..
574 * will be in this buffer, although some servers do not return
575 * . and .. for the root of a drive and for those we need
576 * to start two entries earlier.
577 */
Steve French60808232006-04-22 15:53:05 +0000578
Steve French39798772006-05-31 22:40:51 +0000579 dump_cifs_file_struct(file, "In fce ");
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700580 if (((index_to_find < cfile->srch_inf.index_of_last_entry) &&
581 is_dir_changed(file)) || (index_to_find < first_entry_in_buffer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* close and restart search */
Joe Perchesf96637b2013-05-04 22:12:25 -0500583 cifs_dbg(FYI, "search backing up - close and restart search\n");
Jeff Layton44772882010-10-15 15:34:03 -0400584 spin_lock(&cifs_file_list_lock);
Pavel Shilovsky922798d2014-08-18 20:49:57 +0400585 if (server->ops->dir_needs_close(cfile)) {
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700586 cfile->invalidHandle = true;
Jeff Layton44772882010-10-15 15:34:03 -0400587 spin_unlock(&cifs_file_list_lock);
Pavel Shilovsky659c6392014-08-26 19:04:44 +0400588 if (server->ops->close_dir)
589 server->ops->close_dir(xid, tcon, &cfile->fid);
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000590 } else
Jeff Layton44772882010-10-15 15:34:03 -0400591 spin_unlock(&cifs_file_list_lock);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700592 if (cfile->srch_inf.ntwrk_buf_start) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500593 cifs_dbg(FYI, "freeing SMB ff cache buf on search rewind\n");
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700594 if (cfile->srch_inf.smallBuf)
595 cifs_small_buf_release(cfile->srch_inf.
Steve Frenchd47d7c12006-02-28 03:45:48 +0000596 ntwrk_buf_start);
597 else
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700598 cifs_buf_release(cfile->srch_inf.
Steve Frenchd47d7c12006-02-28 03:45:48 +0000599 ntwrk_buf_start);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700600 cfile->srch_inf.ntwrk_buf_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Steve French38702532007-07-08 15:40:40 +0000602 rc = initiate_cifs_search(xid, file);
Steve French4523cc32007-04-30 20:13:06 +0000603 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500604 cifs_dbg(FYI, "error %d reinitiating a search on rewind\n",
Joe Perchesb6b38f72010-04-21 03:50:45 +0000605 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return rc;
607 }
Jeff Layton70236762011-12-01 20:23:34 -0500608 /* FindFirst/Next set last_entry to NULL on malformed reply */
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700609 if (cfile->srch_inf.last_entry)
610 cifs_save_resume_key(cfile->srch_inf.last_entry, cfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500613 search_flags = CIFS_SEARCH_CLOSE_AT_END | CIFS_SEARCH_RETURN_RESUME;
614 if (backup_cred(cifs_sb))
615 search_flags |= CIFS_SEARCH_BACKUP_SEARCH;
616
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700617 while ((index_to_find >= cfile->srch_inf.index_of_last_entry) &&
618 (rc == 0) && !cfile->srch_inf.endOfSearch) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500619 cifs_dbg(FYI, "calling findnext2\n");
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700620 rc = server->ops->query_dir_next(xid, tcon, &cfile->fid,
621 search_flags,
622 &cfile->srch_inf);
Jeff Layton70236762011-12-01 20:23:34 -0500623 /* FindFirst/Next set last_entry to NULL on malformed reply */
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700624 if (cfile->srch_inf.last_entry)
625 cifs_save_resume_key(cfile->srch_inf.last_entry, cfile);
Steve French4523cc32007-04-30 20:13:06 +0000626 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return -ENOENT;
628 }
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700629 if (index_to_find < cfile->srch_inf.index_of_last_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* we found the buffer that contains the entry */
631 /* scan and find it */
632 int i;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700633 char *cur_ent;
634 char *end_of_smb = cfile->srch_inf.ntwrk_buf_start +
635 server->ops->calc_smb_size(
636 cfile->srch_inf.ntwrk_buf_start);
Steve French60808232006-04-22 15:53:05 +0000637
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700638 cur_ent = cfile->srch_inf.srch_entries_start;
639 first_entry_in_buffer = cfile->srch_inf.index_of_last_entry
640 - cfile->srch_inf.entries_in_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 pos_in_buf = index_to_find - first_entry_in_buffer;
Joe Perchesf96637b2013-05-04 22:12:25 -0500642 cifs_dbg(FYI, "found entry - pos_in_buf %d\n", pos_in_buf);
Steve French5bafd762006-06-07 00:18:43 +0000643
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700644 for (i = 0; (i < (pos_in_buf)) && (cur_ent != NULL); i++) {
Steve Frenchdfb75332005-06-22 17:13:47 -0700645 /* go entry by entry figuring out which is first */
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700646 cur_ent = nxt_dir_entry(cur_ent, end_of_smb,
647 cfile->srch_inf.info_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700649 if ((cur_ent == NULL) && (i < pos_in_buf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /* BB fixme - check if we should flag this error */
Joe Perchesf96637b2013-05-04 22:12:25 -0500651 cifs_dbg(VFS, "reached end of buf searching for pos in buf %d index to find %lld rc %d\n",
652 pos_in_buf, index_to_find, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654 rc = 0;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700655 *current_entry = cur_ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500657 cifs_dbg(FYI, "index not in buffer - could not findnext into it\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return 0;
659 }
660
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700661 if (pos_in_buf >= cfile->srch_inf.entries_in_buffer) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500662 cifs_dbg(FYI, "can not return entries pos_in_buf beyond last\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 *num_to_ret = 0;
664 } else
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700665 *num_to_ret = cfile->srch_inf.entries_in_buffer - pos_in_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 return rc;
668}
669
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400670static int cifs_filldir(char *find_entry, struct file *file, filldir_t filldir,
671 void *dirent, char *scratch_buf, unsigned int max_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400673 struct cifsFileInfo *file_info = file->private_data;
674 struct super_block *sb = file->f_path.dentry->d_sb;
675 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400676 struct cifs_dirent de = { NULL, };
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400677 struct cifs_fattr fattr;
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400678 struct qstr name;
679 int rc = 0;
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400680 ino_t ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400682 rc = cifs_fill_dirent(&de, find_entry, file_info->srch_inf.info_level,
683 file_info->srch_inf.unicode);
Steve French790fe572007-07-07 19:25:05 +0000684 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return rc;
686
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400687 if (de.namelen > max_len) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500688 cifs_dbg(VFS, "bad search response length %zd past smb end\n",
689 de.namelen);
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400690 return -EINVAL;
691 }
Jeff Layton132ac7b2009-02-10 07:33:57 -0500692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* skip . and .. since we added them first */
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400694 if (cifs_entry_is_dot(&de, file_info->srch_inf.unicode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return 0;
696
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400697 if (file_info->srch_inf.unicode) {
698 struct nls_table *nlt = cifs_sb->local_nls;
699
700 name.name = scratch_buf;
701 name.len =
Steve Frenchacbbb762012-01-18 22:32:33 -0600702 cifs_from_utf16((char *)name.name, (__le16 *)de.name,
703 UNICODE_NAME_MAX,
704 min_t(size_t, de.namelen,
705 (size_t)max_len), nlt,
706 cifs_sb->mnt_cifs_flags &
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400707 CIFS_MOUNT_MAP_SPECIAL_CHR);
708 name.len -= nls_nullsize(nlt);
709 } else {
710 name.name = de.name;
711 name.len = de.namelen;
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400714 switch (file_info->srch_inf.info_level) {
715 case SMB_FIND_FILE_UNIX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 cifs_unix_basic_to_fattr(&fattr,
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400717 &((FILE_UNIX_INFO *)find_entry)->basic,
718 cifs_sb);
719 break;
720 case SMB_FIND_FILE_INFO_STANDARD:
721 cifs_std_info_to_fattr(&fattr,
722 (FIND_FILE_STANDARD_INFO *)find_entry,
723 cifs_sb);
724 break;
725 default:
726 cifs_dir_info_to_fattr(&fattr,
727 (FILE_DIRECTORY_INFO *)find_entry,
728 cifs_sb);
729 break;
730 }
Steve French38702532007-07-08 15:40:40 +0000731
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400732 if (de.ino && (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
733 fattr.cf_uniqueid = de.ino;
Jeff Laytonec06aed2009-11-06 14:18:29 -0500734 } else {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400735 fattr.cf_uniqueid = iunique(sb, ROOT_I);
Jeff Laytonec06aed2009-11-06 14:18:29 -0500736 cifs_autodisable_serverino(cifs_sb);
737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200739 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) &&
740 CIFSCouldBeMFSymlink(&fattr))
741 /*
742 * trying to get the type and mode can be slow,
743 * so just call those regular files for now, and mark
744 * for reval
745 */
746 fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
747
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500748 cifs_prime_dcache(file->f_dentry, &name, &fattr);
Steve French50c2f752007-07-13 00:33:32 +0000749
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500750 ino = cifs_uniqueid_to_ino_t(fattr.cf_uniqueid);
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400751 rc = filldir(dirent, name.name, name.len, file->f_pos, ino,
752 fattr.cf_dtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return rc;
754}
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757int cifs_readdir(struct file *file, void *direntry, filldir_t filldir)
758{
759 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400760 unsigned int xid;
761 int i;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700762 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct cifsFileInfo *cifsFile = NULL;
Steve French38702532007-07-08 15:40:40 +0000764 char *current_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 int num_to_fill = 0;
Steve French38702532007-07-08 15:40:40 +0000766 char *tmp_buf = NULL;
Steve French50c2f752007-07-13 00:33:32 +0000767 char *end_of_smb;
Jeff Layton18295792009-04-30 20:45:45 -0400768 unsigned int max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400770 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Suresh Jayaraman6221ddd2010-10-01 21:23:33 +0530772 /*
773 * Ensure FindFirst doesn't fail before doing filldir() for '.' and
774 * '..'. Otherwise we won't be able to notify VFS in case of failure.
775 */
776 if (file->private_data == NULL) {
777 rc = initiate_cifs_search(xid, file);
Joe Perchesf96637b2013-05-04 22:12:25 -0500778 cifs_dbg(FYI, "initiate cifs search rc %d\n", rc);
Suresh Jayaraman6221ddd2010-10-01 21:23:33 +0530779 if (rc)
780 goto rddir2_exit;
781 }
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 switch ((int) file->f_pos) {
784 case 0:
Steve French60808232006-04-22 15:53:05 +0000785 if (filldir(direntry, ".", 1, file->f_pos,
Al Viro496ad9a2013-01-23 17:07:38 -0500786 file_inode(file)->i_ino, DT_DIR) < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500787 cifs_dbg(VFS, "Filldir for current dir failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 rc = -ENOMEM;
789 break;
790 }
Steve French60808232006-04-22 15:53:05 +0000791 file->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 case 1:
Steve French60808232006-04-22 15:53:05 +0000793 if (filldir(direntry, "..", 2, file->f_pos,
Al Virob85fd6b2011-07-17 11:19:44 -0400794 parent_ino(file->f_path.dentry), DT_DIR) < 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500795 cifs_dbg(VFS, "Filldir for parent dir failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 rc = -ENOMEM;
797 break;
798 }
Steve French60808232006-04-22 15:53:05 +0000799 file->f_pos++;
800 default:
Steve French38702532007-07-08 15:40:40 +0000801 /* 1) If search is active,
802 is in current search buffer?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if it before then restart search
804 if after then keep searching till find it */
805
Steve French790fe572007-07-07 19:25:05 +0000806 if (file->private_data == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 rc = -EINVAL;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400808 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return rc;
810 }
811 cifsFile = file->private_data;
812 if (cifsFile->srch_inf.endOfSearch) {
Steve French790fe572007-07-07 19:25:05 +0000813 if (cifsFile->srch_inf.emptyDir) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500814 cifs_dbg(FYI, "End of search, empty dir\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 rc = 0;
816 break;
817 }
818 } /* else {
Steve French4b18f2a2008-04-29 00:06:05 +0000819 cifsFile->invalidHandle = true;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700820 tcon->ses->server->close(xid, tcon, &cifsFile->fid);
Steve Frenchaaa9bbe2008-05-23 17:38:32 +0000821 } */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700823 tcon = tlink_tcon(cifsFile->tlink);
824 rc = find_cifs_entry(xid, tcon, file, &current_entry,
825 &num_to_fill);
Steve French790fe572007-07-07 19:25:05 +0000826 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500827 cifs_dbg(FYI, "fce error %d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto rddir2_exit;
829 } else if (current_entry != NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500830 cifs_dbg(FYI, "entry %lld found\n", file->f_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500832 cifs_dbg(FYI, "could not find entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 goto rddir2_exit;
834 }
Joe Perchesf96637b2013-05-04 22:12:25 -0500835 cifs_dbg(FYI, "loop through %d times filling dir for net buf %p\n",
836 num_to_fill, cifsFile->srch_inf.ntwrk_buf_start);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700837 max_len = tcon->ses->server->ops->calc_smb_size(
Steve French5bafd762006-06-07 00:18:43 +0000838 cifsFile->srch_inf.ntwrk_buf_start);
839 end_of_smb = cifsFile->srch_inf.ntwrk_buf_start + max_len;
840
Jeff Laytonf5884162009-04-30 07:18:00 -0400841 tmp_buf = kmalloc(UNICODE_NAME_MAX, GFP_KERNEL);
Kulikov Vasiliyf55fdcc2010-07-16 20:15:25 +0400842 if (tmp_buf == NULL) {
843 rc = -ENOMEM;
844 break;
845 }
846
Steve French790fe572007-07-07 19:25:05 +0000847 for (i = 0; (i < num_to_fill) && (rc == 0); i++) {
848 if (current_entry == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /* evaluate whether this case is an error */
Joe Perchesf96637b2013-05-04 22:12:25 -0500850 cifs_dbg(VFS, "past SMB end, num to fill %d i %d\n",
851 num_to_fill, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 break;
853 }
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700854 /*
855 * if buggy server returns . and .. late do we want to
856 * check for that here?
857 */
858 rc = cifs_filldir(current_entry, file, filldir,
859 direntry, tmp_buf, max_len);
Steve French790fe572007-07-07 19:25:05 +0000860 if (rc == -EOVERFLOW) {
Steve French7ca85ba2006-10-30 21:42:57 +0000861 rc = 0;
862 break;
863 }
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 file->f_pos++;
Steve French790fe572007-07-07 19:25:05 +0000866 if (file->f_pos ==
Steve French39798772006-05-31 22:40:51 +0000867 cifsFile->srch_inf.index_of_last_entry) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500868 cifs_dbg(FYI, "last entry in buf at pos %lld %s\n",
869 file->f_pos, tmp_buf);
Steve French790fe572007-07-07 19:25:05 +0000870 cifs_save_resume_key(current_entry, cifsFile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 break;
Steve French790fe572007-07-07 19:25:05 +0000872 } else
873 current_entry =
Steve French5bafd762006-06-07 00:18:43 +0000874 nxt_dir_entry(current_entry, end_of_smb,
875 cifsFile->srch_inf.info_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877 kfree(tmp_buf);
878 break;
879 } /* end switch */
880
881rddir2_exit:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400882 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return rc;
884}