blob: 6002fdc920ae402dabad902e623b875288fa988e [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 Perchesb6b38f72010-04-21 03:50:45 +000051 cFYI(1, "empty cifs private file data");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return;
53 }
Steve Frenchad7a2922008-02-07 23:25:02 +000054 if (cf->invalidHandle)
Joe Perchesb6b38f72010-04-21 03:50:45 +000055 cFYI(1, "invalid handle");
Steve Frenchad7a2922008-02-07 23:25:02 +000056 if (cf->srch_inf.endOfSearch)
Joe Perchesb6b38f72010-04-21 03:50:45 +000057 cFYI(1, "end of search");
Steve Frenchad7a2922008-02-07 23:25:02 +000058 if (cf->srch_inf.emptyDir)
Joe Perchesb6b38f72010-04-21 03:50:45 +000059 cFYI(1, "empty dir");
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;
81
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -050082 cFYI(1, "%s: for %s", __func__, name->name);
Jeff Laytoncc0bad72009-06-25 00:56:52 -040083
Jeff Layton05507fa2010-02-05 13:30:36 -050084 if (parent->d_op && parent->d_op->d_hash)
Nick Pigginb1e6a012011-01-07 17:49:28 +110085 parent->d_op->d_hash(parent, parent->d_inode, name);
Jeff Layton05507fa2010-02-05 13:30:36 -050086 else
87 name->hash = full_name_hash(name->name, name->len);
88
Jeff Laytoncc0bad72009-06-25 00:56:52 -040089 dentry = d_lookup(parent, name);
90 if (dentry) {
Al Viro0903a0c2012-11-29 22:11:06 -050091 int err;
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -050092
Jeff Laytoncd600422012-07-06 07:09:42 -040093 inode = dentry->d_inode;
94 /* update inode in place if i_ino didn't change */
95 if (inode && CIFS_I(inode)->uniqueid == fattr->cf_uniqueid) {
96 cifs_fattr_to_inode(inode, fattr);
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -050097 goto out;
Jeff Laytoncd600422012-07-06 07:09:42 -040098 }
Al Viro0903a0c2012-11-29 22:11:06 -050099 err = d_invalidate(dentry);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400100 dput(dentry);
Al Viro0903a0c2012-11-29 22:11:06 -0500101 if (err)
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500102 return;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400103 }
104
105 dentry = d_alloc(parent, name);
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500106 if (!dentry)
107 return;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400108
109 inode = cifs_iget(sb, fattr);
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500110 if (!inode)
111 goto out;
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400112
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400113 alias = d_materialise_unique(dentry, inode);
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500114 if (alias && !IS_ERR(alias))
115 dput(alias);
116out:
117 dput(dentry);
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400118}
119
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400120static void
121cifs_fill_common_info(struct cifs_fattr *fattr, struct cifs_sb_info *cifs_sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400123 fattr->cf_uid = cifs_sb->mnt_uid;
124 fattr->cf_gid = cifs_sb->mnt_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400126 if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
127 fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode;
128 fattr->cf_dtype = DT_DIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 } else {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400130 fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode;
131 fattr->cf_dtype = DT_REG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400134 if (fattr->cf_cifsattrs & ATTR_READONLY)
135 fattr->cf_mode &= ~S_IWUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Jeff Laytonccb5c002012-11-25 08:00:40 -0500137 /*
138 * We of course don't get ACL info in FIND_FIRST/NEXT results, so
139 * mark it for revalidation so that "ls -l" will look right. It might
140 * be super-slow, but if we don't do this then the ownership of files
141 * may look wrong since the inodes may not have timed out by the time
142 * "ls" does a stat() call on them.
143 */
144 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
145 fattr->cf_flags |= CIFS_FATTR_NEED_REVAL;
146
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400147 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL &&
148 fattr->cf_cifsattrs & ATTR_SYSTEM) {
149 if (fattr->cf_eof == 0) {
150 fattr->cf_mode &= ~S_IFMT;
151 fattr->cf_mode |= S_IFIFO;
152 fattr->cf_dtype = DT_FIFO;
Steve French3020a1f2005-11-18 11:31:10 -0800153 } else {
Jeff Layton4468eb32008-05-22 09:31:40 -0400154 /*
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400155 * trying to get the type and mode via SFU can be slow,
156 * so just call those regular files for now, and mark
157 * for reval
Jeff Layton4468eb32008-05-22 09:31:40 -0400158 */
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400159 fattr->cf_flags |= CIFS_FATTR_NEED_REVAL;
Jeff Layton4468eb32008-05-22 09:31:40 -0400160 }
161 }
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400162}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Shirish Pargaonkarc052e2b2012-09-28 12:21:14 -0500164void
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400165cifs_dir_info_to_fattr(struct cifs_fattr *fattr, FILE_DIRECTORY_INFO *info,
166 struct cifs_sb_info *cifs_sb)
167{
168 memset(fattr, 0, sizeof(*fattr));
169 fattr->cf_cifsattrs = le32_to_cpu(info->ExtFileAttributes);
170 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
171 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
Jeff Layton20054bd2011-01-07 11:30:27 -0500172 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400173 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
174 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
175 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400177 cifs_fill_common_info(fattr, cifs_sb);
178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Steve French15dd4782009-09-25 02:24:45 +0000180static void
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400181cifs_std_info_to_fattr(struct cifs_fattr *fattr, FIND_FILE_STANDARD_INFO *info,
182 struct cifs_sb_info *cifs_sb)
183{
Jeff Layton0d424ad2010-09-20 16:01:35 -0700184 int offset = cifs_sb_master_tcon(cifs_sb)->ses->server->timeAdj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400186 memset(fattr, 0, sizeof(*fattr));
187 fattr->cf_atime = cnvrtDosUnixTm(info->LastAccessDate,
188 info->LastAccessTime, offset);
189 fattr->cf_ctime = cnvrtDosUnixTm(info->LastWriteDate,
190 info->LastWriteTime, offset);
191 fattr->cf_mtime = cnvrtDosUnixTm(info->LastWriteDate,
192 info->LastWriteTime, offset);
Steve Frenchf3f6ec42006-01-08 20:12:58 -0800193
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400194 fattr->cf_cifsattrs = le16_to_cpu(info->Attributes);
195 fattr->cf_bytes = le32_to_cpu(info->AllocationSize);
196 fattr->cf_eof = le32_to_cpu(info->DataSize);
Dave Kleikamp273d81d2006-06-01 19:41:23 +0000197
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400198 cifs_fill_common_info(fattr, cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Steve French0e0d2cf2009-05-01 05:27:32 +0000201/* BB eventually need to add the following helper function to
202 resolve NT_STATUS_STOPPED_ON_SYMLINK return code when
203 we try to do FindFirst on (NTFS) directory symlinks */
204/*
205int get_symlink_reparse_path(char *full_path, struct cifs_sb_info *cifs_sb,
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400206 unsigned int xid)
Steve French0e0d2cf2009-05-01 05:27:32 +0000207{
208 __u16 fid;
209 int len;
210 int oplock = 0;
211 int rc;
Steve French96daf2b2011-05-27 04:34:02 +0000212 struct cifs_tcon *ptcon = cifs_sb_tcon(cifs_sb);
Steve French0e0d2cf2009-05-01 05:27:32 +0000213 char *tmpbuffer;
214
215 rc = CIFSSMBOpen(xid, ptcon, full_path, FILE_OPEN, GENERIC_READ,
216 OPEN_REPARSE_POINT, &fid, &oplock, NULL,
217 cifs_sb->local_nls,
218 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
219 if (!rc) {
220 tmpbuffer = kmalloc(maxpath);
221 rc = CIFSSMBQueryReparseLinkInfo(xid, ptcon, full_path,
222 tmpbuffer,
223 maxpath -1,
224 fid,
225 cifs_sb->local_nls);
226 if (CIFSSMBClose(xid, ptcon, fid)) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000227 cFYI(1, "Error closing temporary reparsepoint open");
Steve French0e0d2cf2009-05-01 05:27:32 +0000228 }
229 }
230}
231 */
232
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700233static int
234initiate_cifs_search(const unsigned int xid, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500236 __u16 search_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 int rc = 0;
Jeff Layton7ffec372010-09-29 19:51:11 -0400238 char *full_path = NULL;
Steve French38702532007-07-08 15:40:40 +0000239 struct cifsFileInfo *cifsFile;
Jeff Layton7ffec372010-09-29 19:51:11 -0400240 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Jeff Layton59c55ba2010-11-12 06:30:29 -0500241 struct tcon_link *tlink = NULL;
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400242 struct cifs_tcon *tcon;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700243 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Jeff Layton7ffec372010-09-29 19:51:11 -0400245 if (file->private_data == NULL) {
Jeff Layton59c55ba2010-11-12 06:30:29 -0500246 tlink = cifs_sb_tlink(cifs_sb);
247 if (IS_ERR(tlink))
248 return PTR_ERR(tlink);
249
250 cifsFile = kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL);
251 if (cifsFile == NULL) {
252 rc = -ENOMEM;
253 goto error_exit;
254 }
255 file->private_data = cifsFile;
256 cifsFile->tlink = cifs_get_tlink(tlink);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400257 tcon = tlink_tcon(tlink);
Jeff Layton59c55ba2010-11-12 06:30:29 -0500258 } else {
259 cifsFile = file->private_data;
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400260 tcon = tlink_tcon(cifsFile->tlink);
Jeff Layton7ffec372010-09-29 19:51:11 -0400261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700263 server = tcon->ses->server;
264
265 if (!server->ops->query_dir_first) {
266 rc = -ENOSYS;
267 goto error_exit;
268 }
269
Steve French4b18f2a2008-04-29 00:06:05 +0000270 cifsFile->invalidHandle = true;
271 cifsFile->srch_inf.endOfSearch = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800273 full_path = build_path_from_dentry(file->f_path.dentry);
Jeff Layton7ffec372010-09-29 19:51:11 -0400274 if (full_path == NULL) {
275 rc = -ENOMEM;
276 goto error_exit;
277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Joe Perchesb6b38f72010-04-21 03:50:45 +0000279 cFYI(1, "Full path: %s start at: %lld", full_path, file->f_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Steve French75cf6bd2005-04-28 22:41:04 -0700281ffirst_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* test for Unix extensions */
Steve Frenchc18c8422007-07-18 23:21:09 +0000283 /* but now check for them on the share/mount not on the SMB session */
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400284 /* if (cap_unix(tcon->ses) { */
285 if (tcon->unix_ext)
Steve French5bafd762006-06-07 00:18:43 +0000286 cifsFile->srch_inf.info_level = SMB_FIND_FILE_UNIX;
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400287 else if ((tcon->ses->capabilities &
288 tcon->ses->server->vals->cap_nt_find) == 0) {
Steve French5bafd762006-06-07 00:18:43 +0000289 cifsFile->srch_inf.info_level = SMB_FIND_FILE_INFO_STANDARD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
291 cifsFile->srch_inf.info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO;
292 } else /* not srvinos - BB fixme add check for backlevel? */ {
293 cifsFile->srch_inf.info_level = SMB_FIND_FILE_DIRECTORY_INFO;
294 }
295
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500296 search_flags = CIFS_SEARCH_CLOSE_AT_END | CIFS_SEARCH_RETURN_RESUME;
297 if (backup_cred(cifs_sb))
298 search_flags |= CIFS_SEARCH_BACKUP_SEARCH;
299
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700300 rc = server->ops->query_dir_first(xid, tcon, full_path, cifs_sb,
301 &cifsFile->fid, search_flags,
302 &cifsFile->srch_inf);
303
Steve French4523cc32007-04-30 20:13:06 +0000304 if (rc == 0)
Steve French4b18f2a2008-04-29 00:06:05 +0000305 cifsFile->invalidHandle = false;
Steve Frenche836f012009-05-01 16:20:35 +0000306 /* BB add following call to handle readdir on new NTFS symlink errors
Steve French0e0d2cf2009-05-01 05:27:32 +0000307 else if STATUS_STOPPED_ON_SYMLINK
308 call get_symlink_reparse_path and retry with new path */
309 else if ((rc == -EOPNOTSUPP) &&
Steve French75cf6bd2005-04-28 22:41:04 -0700310 (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
311 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
312 goto ffirst_retry;
313 }
Jeff Layton7ffec372010-09-29 19:51:11 -0400314error_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 kfree(full_path);
Jeff Layton7ffec372010-09-29 19:51:11 -0400316 cifs_put_tlink(tlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return rc;
318}
319
320/* return length of unicode string in bytes */
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400321static int cifs_unicode_bytelen(const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int len;
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400324 const __le16 *ustr = (const __le16 *)str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Steve French38702532007-07-08 15:40:40 +0000326 for (len = 0; len <= PATH_MAX; len++) {
Steve French4523cc32007-04-30 20:13:06 +0000327 if (ustr[len] == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return len << 1;
329 }
Joe Perchesb6b38f72010-04-21 03:50:45 +0000330 cFYI(1, "Unicode string longer than PATH_MAX found");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return len << 1;
332}
333
Steve French5bafd762006-06-07 00:18:43 +0000334static char *nxt_dir_entry(char *old_entry, char *end_of_smb, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Steve French38702532007-07-08 15:40:40 +0000336 char *new_entry;
Steve Frenchad7a2922008-02-07 23:25:02 +0000337 FILE_DIRECTORY_INFO *pDirInfo = (FILE_DIRECTORY_INFO *)old_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Steve French4523cc32007-04-30 20:13:06 +0000339 if (level == SMB_FIND_FILE_INFO_STANDARD) {
Steve Frenchad7a2922008-02-07 23:25:02 +0000340 FIND_FILE_STANDARD_INFO *pfData;
Steve French5bafd762006-06-07 00:18:43 +0000341 pfData = (FIND_FILE_STANDARD_INFO *)pDirInfo;
342
343 new_entry = old_entry + sizeof(FIND_FILE_STANDARD_INFO) +
344 pfData->FileNameLength;
345 } else
346 new_entry = old_entry + le32_to_cpu(pDirInfo->NextEntryOffset);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000347 cFYI(1, "new entry %p old entry %p", new_entry, old_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /* validate that new_entry is not past end of SMB */
Steve French4523cc32007-04-30 20:13:06 +0000349 if (new_entry >= end_of_smb) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000350 cERROR(1, "search entry %p began after end of SMB %p old entry %p",
351 new_entry, end_of_smb, old_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return NULL;
Steve French4523cc32007-04-30 20:13:06 +0000353 } else if (((level == SMB_FIND_FILE_INFO_STANDARD) &&
Steve French38702532007-07-08 15:40:40 +0000354 (new_entry + sizeof(FIND_FILE_STANDARD_INFO) > end_of_smb))
355 || ((level != SMB_FIND_FILE_INFO_STANDARD) &&
Steve French5bafd762006-06-07 00:18:43 +0000356 (new_entry + sizeof(FILE_DIRECTORY_INFO) > end_of_smb))) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000357 cERROR(1, "search entry %p extends after end of SMB %p",
358 new_entry, end_of_smb);
Steve French09d1db52005-04-28 22:41:08 -0700359 return NULL;
Steve French38702532007-07-08 15:40:40 +0000360 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return new_entry;
362
363}
364
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400365struct cifs_dirent {
366 const char *name;
367 size_t namelen;
368 u32 resume_key;
369 u64 ino;
370};
371
372static void cifs_fill_dirent_unix(struct cifs_dirent *de,
373 const FILE_UNIX_INFO *info, bool is_unicode)
374{
375 de->name = &info->FileName[0];
376 if (is_unicode)
377 de->namelen = cifs_unicode_bytelen(de->name);
378 else
379 de->namelen = strnlen(de->name, PATH_MAX);
380 de->resume_key = info->ResumeKey;
381 de->ino = le64_to_cpu(info->basic.UniqueId);
382}
383
384static void cifs_fill_dirent_dir(struct cifs_dirent *de,
385 const FILE_DIRECTORY_INFO *info)
386{
387 de->name = &info->FileName[0];
388 de->namelen = le32_to_cpu(info->FileNameLength);
389 de->resume_key = info->FileIndex;
390}
391
392static void cifs_fill_dirent_full(struct cifs_dirent *de,
393 const FILE_FULL_DIRECTORY_INFO *info)
394{
395 de->name = &info->FileName[0];
396 de->namelen = le32_to_cpu(info->FileNameLength);
397 de->resume_key = info->FileIndex;
398}
399
400static void cifs_fill_dirent_search(struct cifs_dirent *de,
401 const SEARCH_ID_FULL_DIR_INFO *info)
402{
403 de->name = &info->FileName[0];
404 de->namelen = le32_to_cpu(info->FileNameLength);
405 de->resume_key = info->FileIndex;
406 de->ino = le64_to_cpu(info->UniqueId);
407}
408
409static void cifs_fill_dirent_both(struct cifs_dirent *de,
410 const FILE_BOTH_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_std(struct cifs_dirent *de,
418 const FIND_FILE_STANDARD_INFO *info)
419{
420 de->name = &info->FileName[0];
421 /* one byte length, no endianess conversion */
422 de->namelen = info->FileNameLength;
423 de->resume_key = info->ResumeKey;
424}
425
426static int cifs_fill_dirent(struct cifs_dirent *de, const void *info,
427 u16 level, bool is_unicode)
428{
429 memset(de, 0, sizeof(*de));
430
431 switch (level) {
432 case SMB_FIND_FILE_UNIX:
433 cifs_fill_dirent_unix(de, info, is_unicode);
434 break;
435 case SMB_FIND_FILE_DIRECTORY_INFO:
436 cifs_fill_dirent_dir(de, info);
437 break;
438 case SMB_FIND_FILE_FULL_DIRECTORY_INFO:
439 cifs_fill_dirent_full(de, info);
440 break;
441 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
442 cifs_fill_dirent_search(de, info);
443 break;
444 case SMB_FIND_FILE_BOTH_DIRECTORY_INFO:
445 cifs_fill_dirent_both(de, info);
446 break;
447 case SMB_FIND_FILE_INFO_STANDARD:
448 cifs_fill_dirent_std(de, info);
449 break;
450 default:
451 cFYI(1, "Unknown findfirst level %d", level);
452 return -EINVAL;
453 }
454
455 return 0;
456}
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458#define UNICODE_DOT cpu_to_le16(0x2e)
459
460/* return 0 if no match and 1 for . (current directory) and 2 for .. (parent) */
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400461static int cifs_entry_is_dot(struct cifs_dirent *de, bool is_unicode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400465 if (!de->name)
466 return 0;
467
468 if (is_unicode) {
469 __le16 *ufilename = (__le16 *)de->name;
470 if (de->namelen == 2) {
471 /* check for . */
472 if (ufilename[0] == UNICODE_DOT)
473 rc = 1;
474 } else if (de->namelen == 4) {
475 /* check for .. */
476 if (ufilename[0] == UNICODE_DOT &&
477 ufilename[1] == UNICODE_DOT)
478 rc = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400480 } else /* ASCII */ {
481 if (de->namelen == 1) {
482 if (de->name[0] == '.')
483 rc = 1;
484 } else if (de->namelen == 2) {
485 if (de->name[0] == '.' && de->name[1] == '.')
486 rc = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488 }
489
490 return rc;
491}
492
Steve Frencheafe8702005-09-15 21:47:30 -0700493/* Check if directory that we are searching has changed so we can decide
494 whether we can use the cached search results from the previous search */
Steve French38702532007-07-08 15:40:40 +0000495static int is_dir_changed(struct file *file)
Steve Frencheafe8702005-09-15 21:47:30 -0700496{
Christoph Hellwigc33f8d32007-04-02 18:47:20 +0000497 struct inode *inode = file->f_path.dentry->d_inode;
498 struct cifsInodeInfo *cifsInfo = CIFS_I(inode);
Steve Frencheafe8702005-09-15 21:47:30 -0700499
Christoph Hellwigc33f8d32007-04-02 18:47:20 +0000500 if (cifsInfo->time == 0)
Steve Frencheafe8702005-09-15 21:47:30 -0700501 return 1; /* directory was changed, perhaps due to unlink */
502 else
503 return 0;
504
505}
506
Steve French0752f152008-10-07 20:03:33 +0000507static int cifs_save_resume_key(const char *current_entry,
Christoph Hellwigeaf35b12011-07-16 15:24:37 -0400508 struct cifsFileInfo *file_info)
Steve French0752f152008-10-07 20:03:33 +0000509{
Christoph Hellwigeaf35b12011-07-16 15:24:37 -0400510 struct cifs_dirent de;
511 int rc;
Steve French0752f152008-10-07 20:03:33 +0000512
Christoph Hellwigeaf35b12011-07-16 15:24:37 -0400513 rc = cifs_fill_dirent(&de, current_entry, file_info->srch_inf.info_level,
514 file_info->srch_inf.unicode);
515 if (!rc) {
516 file_info->srch_inf.presume_name = de.name;
517 file_info->srch_inf.resume_name_len = de.namelen;
518 file_info->srch_inf.resume_key = de.resume_key;
Steve French0752f152008-10-07 20:03:33 +0000519 }
Steve French0752f152008-10-07 20:03:33 +0000520 return rc;
521}
522
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700523/*
524 * Find the corresponding entry in the search. Note that the SMB server returns
525 * search entries for . and .. which complicates logic here if we choose to
526 * parse for them and we do not assume that they are located in the findfirst
527 * return buffer. We start counting in the buffer with entry 2 and increment for
528 * every entry (do not increment for . or .. entry).
529 */
530static int
531find_cifs_entry(const unsigned int xid, struct cifs_tcon *tcon,
532 struct file *file, char **current_entry, int *num_to_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500534 __u16 search_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 int rc = 0;
536 int pos_in_buf = 0;
537 loff_t first_entry_in_buffer;
538 loff_t index_to_find = file->f_pos;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700539 struct cifsFileInfo *cfile = file->private_data;
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500540 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700541 struct TCP_Server_Info *server = tcon->ses->server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* check if index in the buffer */
Steve French50c2f752007-07-13 00:33:32 +0000543
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700544 if (!server->ops->query_dir_first || !server->ops->query_dir_next)
545 return -ENOSYS;
546
547 if ((cfile == NULL) || (current_entry == NULL) || (num_to_ret == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return -ENOENT;
Steve French50c2f752007-07-13 00:33:32 +0000549
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700550 *current_entry = NULL;
551 first_entry_in_buffer = cfile->srch_inf.index_of_last_entry -
552 cfile->srch_inf.entries_in_buffer;
Steve French60808232006-04-22 15:53:05 +0000553
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700554 /*
555 * If first entry in buf is zero then is first buffer
556 * in search response data which means it is likely . and ..
557 * will be in this buffer, although some servers do not return
558 * . and .. for the root of a drive and for those we need
559 * to start two entries earlier.
560 */
Steve French60808232006-04-22 15:53:05 +0000561
Steve French39798772006-05-31 22:40:51 +0000562 dump_cifs_file_struct(file, "In fce ");
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700563 if (((index_to_find < cfile->srch_inf.index_of_last_entry) &&
564 is_dir_changed(file)) || (index_to_find < first_entry_in_buffer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /* close and restart search */
Joe Perchesb6b38f72010-04-21 03:50:45 +0000566 cFYI(1, "search backing up - close and restart search");
Jeff Layton44772882010-10-15 15:34:03 -0400567 spin_lock(&cifs_file_list_lock);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700568 if (!cfile->srch_inf.endOfSearch && !cfile->invalidHandle) {
569 cfile->invalidHandle = true;
Jeff Layton44772882010-10-15 15:34:03 -0400570 spin_unlock(&cifs_file_list_lock);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700571 if (server->ops->close)
572 server->ops->close(xid, tcon, &cfile->fid);
Steve Frenchddb4cbf2008-11-20 20:00:44 +0000573 } else
Jeff Layton44772882010-10-15 15:34:03 -0400574 spin_unlock(&cifs_file_list_lock);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700575 if (cfile->srch_inf.ntwrk_buf_start) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000576 cFYI(1, "freeing SMB ff cache buf on search rewind");
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700577 if (cfile->srch_inf.smallBuf)
578 cifs_small_buf_release(cfile->srch_inf.
Steve Frenchd47d7c12006-02-28 03:45:48 +0000579 ntwrk_buf_start);
580 else
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700581 cifs_buf_release(cfile->srch_inf.
Steve Frenchd47d7c12006-02-28 03:45:48 +0000582 ntwrk_buf_start);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700583 cfile->srch_inf.ntwrk_buf_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Steve French38702532007-07-08 15:40:40 +0000585 rc = initiate_cifs_search(xid, file);
Steve French4523cc32007-04-30 20:13:06 +0000586 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000587 cFYI(1, "error %d reinitiating a search on rewind",
588 rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return rc;
590 }
Jeff Layton70236762011-12-01 20:23:34 -0500591 /* FindFirst/Next set last_entry to NULL on malformed reply */
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700592 if (cfile->srch_inf.last_entry)
593 cifs_save_resume_key(cfile->srch_inf.last_entry, cfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595
Shirish Pargaonkar2608bee2012-05-15 10:19:16 -0500596 search_flags = CIFS_SEARCH_CLOSE_AT_END | CIFS_SEARCH_RETURN_RESUME;
597 if (backup_cred(cifs_sb))
598 search_flags |= CIFS_SEARCH_BACKUP_SEARCH;
599
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700600 while ((index_to_find >= cfile->srch_inf.index_of_last_entry) &&
601 (rc == 0) && !cfile->srch_inf.endOfSearch) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000602 cFYI(1, "calling findnext2");
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700603 rc = server->ops->query_dir_next(xid, tcon, &cfile->fid,
604 search_flags,
605 &cfile->srch_inf);
Jeff Layton70236762011-12-01 20:23:34 -0500606 /* FindFirst/Next set last_entry to NULL on malformed reply */
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700607 if (cfile->srch_inf.last_entry)
608 cifs_save_resume_key(cfile->srch_inf.last_entry, cfile);
Steve French4523cc32007-04-30 20:13:06 +0000609 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return -ENOENT;
611 }
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700612 if (index_to_find < cfile->srch_inf.index_of_last_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* we found the buffer that contains the entry */
614 /* scan and find it */
615 int i;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700616 char *cur_ent;
617 char *end_of_smb = cfile->srch_inf.ntwrk_buf_start +
618 server->ops->calc_smb_size(
619 cfile->srch_inf.ntwrk_buf_start);
Steve French60808232006-04-22 15:53:05 +0000620
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700621 cur_ent = cfile->srch_inf.srch_entries_start;
622 first_entry_in_buffer = cfile->srch_inf.index_of_last_entry
623 - cfile->srch_inf.entries_in_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 pos_in_buf = index_to_find - first_entry_in_buffer;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000625 cFYI(1, "found entry - pos_in_buf %d", pos_in_buf);
Steve French5bafd762006-06-07 00:18:43 +0000626
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700627 for (i = 0; (i < (pos_in_buf)) && (cur_ent != NULL); i++) {
Steve Frenchdfb75332005-06-22 17:13:47 -0700628 /* go entry by entry figuring out which is first */
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700629 cur_ent = nxt_dir_entry(cur_ent, end_of_smb,
630 cfile->srch_inf.info_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700632 if ((cur_ent == NULL) && (i < pos_in_buf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* BB fixme - check if we should flag this error */
Joe Perchesb6b38f72010-04-21 03:50:45 +0000634 cERROR(1, "reached end of buf searching for pos in buf"
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700635 " %d index to find %lld rc %d", pos_in_buf,
636 index_to_find, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638 rc = 0;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700639 *current_entry = cur_ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 } else {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000641 cFYI(1, "index not in buffer - could not findnext into it");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
643 }
644
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700645 if (pos_in_buf >= cfile->srch_inf.entries_in_buffer) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000646 cFYI(1, "can not return entries pos_in_buf beyond last");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 *num_to_ret = 0;
648 } else
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700649 *num_to_ret = cfile->srch_inf.entries_in_buffer - pos_in_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 return rc;
652}
653
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400654static int cifs_filldir(char *find_entry, struct file *file, filldir_t filldir,
655 void *dirent, char *scratch_buf, unsigned int max_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400657 struct cifsFileInfo *file_info = file->private_data;
658 struct super_block *sb = file->f_path.dentry->d_sb;
659 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400660 struct cifs_dirent de = { NULL, };
Jeff Laytoncc0bad72009-06-25 00:56:52 -0400661 struct cifs_fattr fattr;
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400662 struct qstr name;
663 int rc = 0;
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400664 ino_t ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400666 rc = cifs_fill_dirent(&de, find_entry, file_info->srch_inf.info_level,
667 file_info->srch_inf.unicode);
Steve French790fe572007-07-07 19:25:05 +0000668 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return rc;
670
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400671 if (de.namelen > max_len) {
672 cERROR(1, "bad search response length %zd past smb end",
673 de.namelen);
674 return -EINVAL;
675 }
Jeff Layton132ac7b2009-02-10 07:33:57 -0500676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /* skip . and .. since we added them first */
Christoph Hellwigcda0ec62011-07-16 15:24:05 -0400678 if (cifs_entry_is_dot(&de, file_info->srch_inf.unicode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return 0;
680
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400681 if (file_info->srch_inf.unicode) {
682 struct nls_table *nlt = cifs_sb->local_nls;
683
684 name.name = scratch_buf;
685 name.len =
Steve Frenchacbbb762012-01-18 22:32:33 -0600686 cifs_from_utf16((char *)name.name, (__le16 *)de.name,
687 UNICODE_NAME_MAX,
688 min_t(size_t, de.namelen,
689 (size_t)max_len), nlt,
690 cifs_sb->mnt_cifs_flags &
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400691 CIFS_MOUNT_MAP_SPECIAL_CHR);
692 name.len -= nls_nullsize(nlt);
693 } else {
694 name.name = de.name;
695 name.len = de.namelen;
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400698 switch (file_info->srch_inf.info_level) {
699 case SMB_FIND_FILE_UNIX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 cifs_unix_basic_to_fattr(&fattr,
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400701 &((FILE_UNIX_INFO *)find_entry)->basic,
702 cifs_sb);
703 break;
704 case SMB_FIND_FILE_INFO_STANDARD:
705 cifs_std_info_to_fattr(&fattr,
706 (FIND_FILE_STANDARD_INFO *)find_entry,
707 cifs_sb);
708 break;
709 default:
710 cifs_dir_info_to_fattr(&fattr,
711 (FILE_DIRECTORY_INFO *)find_entry,
712 cifs_sb);
713 break;
714 }
Steve French38702532007-07-08 15:40:40 +0000715
Christoph Hellwigf16d59b2011-07-16 15:24:22 -0400716 if (de.ino && (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
717 fattr.cf_uniqueid = de.ino;
Jeff Laytonec06aed2009-11-06 14:18:29 -0500718 } else {
Jeff Layton0b8f18e2009-07-09 01:46:37 -0400719 fattr.cf_uniqueid = iunique(sb, ROOT_I);
Jeff Laytonec06aed2009-11-06 14:18:29 -0500720 cifs_autodisable_serverino(cifs_sb);
721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Stefan Metzmacher1b12b9c2010-08-05 21:19:56 +0200723 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) &&
724 CIFSCouldBeMFSymlink(&fattr))
725 /*
726 * trying to get the type and mode can be slow,
727 * so just call those regular files for now, and mark
728 * for reval
729 */
730 fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
731
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500732 cifs_prime_dcache(file->f_dentry, &name, &fattr);
Steve French50c2f752007-07-13 00:33:32 +0000733
Jeff Laytoneb1b3fa2012-12-03 06:05:37 -0500734 ino = cifs_uniqueid_to_ino_t(fattr.cf_uniqueid);
Christoph Hellwig9feed6f2011-07-16 15:23:49 -0400735 rc = filldir(dirent, name.name, name.len, file->f_pos, ino,
736 fattr.cf_dtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return rc;
738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741int cifs_readdir(struct file *file, void *direntry, filldir_t filldir)
742{
743 int rc = 0;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400744 unsigned int xid;
745 int i;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700746 struct cifs_tcon *tcon;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 struct cifsFileInfo *cifsFile = NULL;
Steve French38702532007-07-08 15:40:40 +0000748 char *current_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 int num_to_fill = 0;
Steve French38702532007-07-08 15:40:40 +0000750 char *tmp_buf = NULL;
Steve French50c2f752007-07-13 00:33:32 +0000751 char *end_of_smb;
Jeff Layton18295792009-04-30 20:45:45 -0400752 unsigned int max_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400754 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Suresh Jayaraman6221ddd2010-10-01 21:23:33 +0530756 /*
757 * Ensure FindFirst doesn't fail before doing filldir() for '.' and
758 * '..'. Otherwise we won't be able to notify VFS in case of failure.
759 */
760 if (file->private_data == NULL) {
761 rc = initiate_cifs_search(xid, file);
762 cFYI(1, "initiate cifs search rc %d", rc);
763 if (rc)
764 goto rddir2_exit;
765 }
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 switch ((int) file->f_pos) {
768 case 0:
Steve French60808232006-04-22 15:53:05 +0000769 if (filldir(direntry, ".", 1, file->f_pos,
Josef "Jeff" Sipeke6a00292006-12-08 02:36:48 -0800770 file->f_path.dentry->d_inode->i_ino, DT_DIR) < 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000771 cERROR(1, "Filldir for current dir failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 rc = -ENOMEM;
773 break;
774 }
Steve French60808232006-04-22 15:53:05 +0000775 file->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 case 1:
Steve French60808232006-04-22 15:53:05 +0000777 if (filldir(direntry, "..", 2, file->f_pos,
Al Virob85fd6b2011-07-17 11:19:44 -0400778 parent_ino(file->f_path.dentry), DT_DIR) < 0) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000779 cERROR(1, "Filldir for parent dir failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 rc = -ENOMEM;
781 break;
782 }
Steve French60808232006-04-22 15:53:05 +0000783 file->f_pos++;
784 default:
Steve French38702532007-07-08 15:40:40 +0000785 /* 1) If search is active,
786 is in current search buffer?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if it before then restart search
788 if after then keep searching till find it */
789
Steve French790fe572007-07-07 19:25:05 +0000790 if (file->private_data == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 rc = -EINVAL;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400792 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return rc;
794 }
795 cifsFile = file->private_data;
796 if (cifsFile->srch_inf.endOfSearch) {
Steve French790fe572007-07-07 19:25:05 +0000797 if (cifsFile->srch_inf.emptyDir) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000798 cFYI(1, "End of search, empty dir");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 rc = 0;
800 break;
801 }
802 } /* else {
Steve French4b18f2a2008-04-29 00:06:05 +0000803 cifsFile->invalidHandle = true;
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700804 tcon->ses->server->close(xid, tcon, &cifsFile->fid);
Steve Frenchaaa9bbe2008-05-23 17:38:32 +0000805 } */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700807 tcon = tlink_tcon(cifsFile->tlink);
808 rc = find_cifs_entry(xid, tcon, file, &current_entry,
809 &num_to_fill);
Steve French790fe572007-07-07 19:25:05 +0000810 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000811 cFYI(1, "fce error %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 goto rddir2_exit;
813 } else if (current_entry != NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000814 cFYI(1, "entry %lld found", file->f_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 } else {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000816 cFYI(1, "could not find entry");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 goto rddir2_exit;
818 }
Joe Perchesb6b38f72010-04-21 03:50:45 +0000819 cFYI(1, "loop through %d times filling dir for net buf %p",
820 num_to_fill, cifsFile->srch_inf.ntwrk_buf_start);
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700821 max_len = tcon->ses->server->ops->calc_smb_size(
Steve French5bafd762006-06-07 00:18:43 +0000822 cifsFile->srch_inf.ntwrk_buf_start);
823 end_of_smb = cifsFile->srch_inf.ntwrk_buf_start + max_len;
824
Jeff Laytonf5884162009-04-30 07:18:00 -0400825 tmp_buf = kmalloc(UNICODE_NAME_MAX, GFP_KERNEL);
Kulikov Vasiliyf55fdcc2010-07-16 20:15:25 +0400826 if (tmp_buf == NULL) {
827 rc = -ENOMEM;
828 break;
829 }
830
Steve French790fe572007-07-07 19:25:05 +0000831 for (i = 0; (i < num_to_fill) && (rc == 0); i++) {
832 if (current_entry == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /* evaluate whether this case is an error */
Joe Perchesb6b38f72010-04-21 03:50:45 +0000834 cERROR(1, "past SMB end, num to fill %d i %d",
835 num_to_fill, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 break;
837 }
Pavel Shilovsky92fc65a2012-09-18 16:20:32 -0700838 /*
839 * if buggy server returns . and .. late do we want to
840 * check for that here?
841 */
842 rc = cifs_filldir(current_entry, file, filldir,
843 direntry, tmp_buf, max_len);
Steve French790fe572007-07-07 19:25:05 +0000844 if (rc == -EOVERFLOW) {
Steve French7ca85ba2006-10-30 21:42:57 +0000845 rc = 0;
846 break;
847 }
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 file->f_pos++;
Steve French790fe572007-07-07 19:25:05 +0000850 if (file->f_pos ==
Steve French39798772006-05-31 22:40:51 +0000851 cifsFile->srch_inf.index_of_last_entry) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000852 cFYI(1, "last entry in buf at pos %lld %s",
853 file->f_pos, tmp_buf);
Steve French790fe572007-07-07 19:25:05 +0000854 cifs_save_resume_key(current_entry, cifsFile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 break;
Steve French790fe572007-07-07 19:25:05 +0000856 } else
857 current_entry =
Steve French5bafd762006-06-07 00:18:43 +0000858 nxt_dir_entry(current_entry, end_of_smb,
859 cifsFile->srch_inf.info_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861 kfree(tmp_buf);
862 break;
863 } /* end switch */
864
865rddir2_exit:
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400866 free_xid(xid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return rc;
868}