Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux-block.git] / fs / cifs / readdir.c
CommitLineData
1da177e4
LT
1/*
2 * fs/cifs/readdir.c
3 *
4 * Directory search handling
6dc0f87e 5 *
ad7a2926 6 * Copyright (C) International Business Machines Corp., 2004, 2008
cda0ec6a 7 * Copyright (C) Red Hat, Inc., 2011
1da177e4
LT
8 * 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>
273d81d6 25#include <linux/pagemap.h>
5a0e3ad6 26#include <linux/slab.h>
1da177e4 27#include <linux/stat.h>
1da177e4
LT
28#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
f5884166
JL
36/*
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
3979877e
SF
43#ifdef CONFIG_CIFS_DEBUG2
44static void dump_cifs_file_struct(struct file *file, char *label)
1da177e4 45{
6dc0f87e 46 struct cifsFileInfo *cf;
1da177e4 47
4523cc30 48 if (file) {
1da177e4 49 cf = file->private_data;
4523cc30 50 if (cf == NULL) {
b6b38f70 51 cFYI(1, "empty cifs private file data");
1da177e4
LT
52 return;
53 }
ad7a2926 54 if (cf->invalidHandle)
b6b38f70 55 cFYI(1, "invalid handle");
ad7a2926 56 if (cf->srch_inf.endOfSearch)
b6b38f70 57 cFYI(1, "end of search");
ad7a2926 58 if (cf->srch_inf.emptyDir)
b6b38f70 59 cFYI(1, "empty dir");
1da177e4 60 }
3979877e 61}
90c81e0b
SF
62#else
63static inline void dump_cifs_file_struct(struct file *file, char *label)
64{
65}
3979877e 66#endif /* DEBUG2 */
1da177e4 67
cc0bad75 68/*
eb1b3fa5
JL
69 * Attempt to preload the dcache with the results from the FIND_FIRST/NEXT
70 *
cc0bad75
JL
71 * 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 */
eb1b3fa5
JL
74static void
75cifs_prime_dcache(struct dentry *parent, struct qstr *name,
cc0bad75
JL
76 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
eb1b3fa5 82 cFYI(1, "%s: for %s", __func__, name->name);
cc0bad75 83
05507fa2 84 if (parent->d_op && parent->d_op->d_hash)
b1e6a015 85 parent->d_op->d_hash(parent, parent->d_inode, name);
05507fa2
JL
86 else
87 name->hash = full_name_hash(name->name, name->len);
88
cc0bad75
JL
89 dentry = d_lookup(parent, name);
90 if (dentry) {
0903a0c8 91 int err;
eb1b3fa5 92
cd60042c
JL
93 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);
eb1b3fa5 97 goto out;
cd60042c 98 }
0903a0c8 99 err = d_invalidate(dentry);
cc0bad75 100 dput(dentry);
0903a0c8 101 if (err)
eb1b3fa5 102 return;
cc0bad75
JL
103 }
104
105 dentry = d_alloc(parent, name);
eb1b3fa5
JL
106 if (!dentry)
107 return;
cc0bad75
JL
108
109 inode = cifs_iget(sb, fattr);
eb1b3fa5
JL
110 if (!inode)
111 goto out;
cc0bad75 112
cc0bad75 113 alias = d_materialise_unique(dentry, inode);
eb1b3fa5
JL
114 if (alias && !IS_ERR(alias))
115 dput(alias);
116out:
117 dput(dentry);
cc0bad75
JL
118}
119
0b8f18e3
JL
120static void
121cifs_fill_common_info(struct cifs_fattr *fattr, struct cifs_sb_info *cifs_sb)
1da177e4 122{
0b8f18e3
JL
123 fattr->cf_uid = cifs_sb->mnt_uid;
124 fattr->cf_gid = cifs_sb->mnt_gid;
1da177e4 125
0b8f18e3
JL
126 if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
127 fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode;
128 fattr->cf_dtype = DT_DIR;
1da177e4 129 } else {
0b8f18e3
JL
130 fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode;
131 fattr->cf_dtype = DT_REG;
1da177e4
LT
132 }
133
0b8f18e3
JL
134 if (fattr->cf_cifsattrs & ATTR_READONLY)
135 fattr->cf_mode &= ~S_IWUGO;
5bafd765 136
ccb5c001
JL
137 /*
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
0b8f18e3
JL
147 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;
3020a1f5 153 } else {
4468eb3f 154 /*
0b8f18e3
JL
155 * 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
4468eb3f 158 */
0b8f18e3 159 fattr->cf_flags |= CIFS_FATTR_NEED_REVAL;
4468eb3f
JL
160 }
161 }
0b8f18e3 162}
1da177e4 163
c052e2b4 164void
0b8f18e3
JL
165cifs_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);
20054bd6 172 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
0b8f18e3
JL
173 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
174 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
175 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
176
177 cifs_fill_common_info(fattr, cifs_sb);
178}
1da177e4 179
15dd4781 180static void
0b8f18e3
JL
181cifs_std_info_to_fattr(struct cifs_fattr *fattr, FIND_FILE_STANDARD_INFO *info,
182 struct cifs_sb_info *cifs_sb)
183{
0d424ad0 184 int offset = cifs_sb_master_tcon(cifs_sb)->ses->server->timeAdj;
1da177e4 185
0b8f18e3
JL
186 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);
193
194 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);
197
198 cifs_fill_common_info(fattr, cifs_sb);
1da177e4
LT
199}
200
0e0d2cf3
SF
201/* 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,
6d5786a3 206 unsigned int xid)
0e0d2cf3
SF
207{
208 __u16 fid;
209 int len;
210 int oplock = 0;
211 int rc;
96daf2b0 212 struct cifs_tcon *ptcon = cifs_sb_tcon(cifs_sb);
0e0d2cf3
SF
213 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)) {
b6b38f70 227 cFYI(1, "Error closing temporary reparsepoint open");
0e0d2cf3
SF
228 }
229 }
230}
231 */
232
92fc65a7
PS
233static int
234initiate_cifs_search(const unsigned int xid, struct file *file)
1da177e4 235{
2608bee7 236 __u16 search_flags;
1da177e4 237 int rc = 0;
7ffec372 238 char *full_path = NULL;
3870253e 239 struct cifsFileInfo *cifsFile;
7ffec372 240 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
59c55ba1 241 struct tcon_link *tlink = NULL;
29e20f9c 242 struct cifs_tcon *tcon;
92fc65a7 243 struct TCP_Server_Info *server;
1da177e4 244
7ffec372 245 if (file->private_data == NULL) {
59c55ba1
JL
246 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);
29e20f9c 257 tcon = tlink_tcon(tlink);
59c55ba1
JL
258 } else {
259 cifsFile = file->private_data;
29e20f9c 260 tcon = tlink_tcon(cifsFile->tlink);
7ffec372 261 }
1da177e4 262
92fc65a7
PS
263 server = tcon->ses->server;
264
265 if (!server->ops->query_dir_first) {
266 rc = -ENOSYS;
267 goto error_exit;
268 }
269
4b18f2a9
SF
270 cifsFile->invalidHandle = true;
271 cifsFile->srch_inf.endOfSearch = false;
1da177e4 272
e6a00296 273 full_path = build_path_from_dentry(file->f_path.dentry);
7ffec372
JL
274 if (full_path == NULL) {
275 rc = -ENOMEM;
276 goto error_exit;
277 }
1da177e4 278
b6b38f70 279 cFYI(1, "Full path: %s start at: %lld", full_path, file->f_pos);
1da177e4 280
75cf6bdc 281ffirst_retry:
1da177e4 282 /* test for Unix extensions */
c18c842b 283 /* but now check for them on the share/mount not on the SMB session */
29e20f9c
PS
284 /* if (cap_unix(tcon->ses) { */
285 if (tcon->unix_ext)
5bafd765 286 cifsFile->srch_inf.info_level = SMB_FIND_FILE_UNIX;
29e20f9c
PS
287 else if ((tcon->ses->capabilities &
288 tcon->ses->server->vals->cap_nt_find) == 0) {
5bafd765 289 cifsFile->srch_inf.info_level = SMB_FIND_FILE_INFO_STANDARD;
1da177e4
LT
290 } 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
2608bee7
SP
296 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
92fc65a7
PS
300 rc = server->ops->query_dir_first(xid, tcon, full_path, cifs_sb,
301 &cifsFile->fid, search_flags,
302 &cifsFile->srch_inf);
303
4523cc30 304 if (rc == 0)
4b18f2a9 305 cifsFile->invalidHandle = false;
e836f015 306 /* BB add following call to handle readdir on new NTFS symlink errors
0e0d2cf3
SF
307 else if STATUS_STOPPED_ON_SYMLINK
308 call get_symlink_reparse_path and retry with new path */
309 else if ((rc == -EOPNOTSUPP) &&
75cf6bdc
SF
310 (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
311 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
312 goto ffirst_retry;
313 }
7ffec372 314error_exit:
1da177e4 315 kfree(full_path);
7ffec372 316 cifs_put_tlink(tlink);
1da177e4
LT
317 return rc;
318}
319
320/* return length of unicode string in bytes */
cda0ec6a 321static int cifs_unicode_bytelen(const char *str)
1da177e4
LT
322{
323 int len;
cda0ec6a 324 const __le16 *ustr = (const __le16 *)str;
1da177e4 325
3870253e 326 for (len = 0; len <= PATH_MAX; len++) {
4523cc30 327 if (ustr[len] == 0)
1da177e4
LT
328 return len << 1;
329 }
b6b38f70 330 cFYI(1, "Unicode string longer than PATH_MAX found");
1da177e4
LT
331 return len << 1;
332}
333
5bafd765 334static char *nxt_dir_entry(char *old_entry, char *end_of_smb, int level)
1da177e4 335{
3870253e 336 char *new_entry;
ad7a2926 337 FILE_DIRECTORY_INFO *pDirInfo = (FILE_DIRECTORY_INFO *)old_entry;
1da177e4 338
4523cc30 339 if (level == SMB_FIND_FILE_INFO_STANDARD) {
ad7a2926 340 FIND_FILE_STANDARD_INFO *pfData;
5bafd765
SF
341 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);
b6b38f70 347 cFYI(1, "new entry %p old entry %p", new_entry, old_entry);
1da177e4 348 /* validate that new_entry is not past end of SMB */
4523cc30 349 if (new_entry >= end_of_smb) {
b6b38f70
JP
350 cERROR(1, "search entry %p began after end of SMB %p old entry %p",
351 new_entry, end_of_smb, old_entry);
1da177e4 352 return NULL;
4523cc30 353 } else if (((level == SMB_FIND_FILE_INFO_STANDARD) &&
3870253e
SF
354 (new_entry + sizeof(FIND_FILE_STANDARD_INFO) > end_of_smb))
355 || ((level != SMB_FIND_FILE_INFO_STANDARD) &&
5bafd765 356 (new_entry + sizeof(FILE_DIRECTORY_INFO) > end_of_smb))) {
b6b38f70
JP
357 cERROR(1, "search entry %p extends after end of SMB %p",
358 new_entry, end_of_smb);
09d1db5c 359 return NULL;
3870253e 360 } else
1da177e4
LT
361 return new_entry;
362
363}
364
cda0ec6a
CH
365struct 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
1da177e4
LT
458#define UNICODE_DOT cpu_to_le16(0x2e)
459
460/* return 0 if no match and 1 for . (current directory) and 2 for .. (parent) */
cda0ec6a 461static int cifs_entry_is_dot(struct cifs_dirent *de, bool is_unicode)
1da177e4
LT
462{
463 int rc = 0;
1da177e4 464
cda0ec6a
CH
465 if (!de->name)
466 return 0;
1da177e4 467
cda0ec6a
CH
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;
479 }
480 } 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;
1da177e4
LT
487 }
488 }
489
490 return rc;
491}
492
eafe8701
SF
493/* 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 */
3870253e 495static int is_dir_changed(struct file *file)
eafe8701 496{
c33f8d32
CH
497 struct inode *inode = file->f_path.dentry->d_inode;
498 struct cifsInodeInfo *cifsInfo = CIFS_I(inode);
eafe8701 499
c33f8d32 500 if (cifsInfo->time == 0)
eafe8701
SF
501 return 1; /* directory was changed, perhaps due to unlink */
502 else
503 return 0;
504
505}
506
0752f152 507static int cifs_save_resume_key(const char *current_entry,
eaf35b1e 508 struct cifsFileInfo *file_info)
0752f152 509{
eaf35b1e
CH
510 struct cifs_dirent de;
511 int rc;
0752f152 512
eaf35b1e
CH
513 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;
0752f152 519 }
0752f152
SF
520 return rc;
521}
522
92fc65a7
PS
523/*
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)
1da177e4 533{
2608bee7 534 __u16 search_flags;
1da177e4
LT
535 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;
92fc65a7 539 struct cifsFileInfo *cfile = file->private_data;
2608bee7 540 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
92fc65a7 541 struct TCP_Server_Info *server = tcon->ses->server;
1da177e4 542 /* check if index in the buffer */
50c2f753 543
92fc65a7
PS
544 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))
1da177e4 548 return -ENOENT;
50c2f753 549
92fc65a7
PS
550 *current_entry = NULL;
551 first_entry_in_buffer = cfile->srch_inf.index_of_last_entry -
552 cfile->srch_inf.entries_in_buffer;
60808233 553
92fc65a7
PS
554 /*
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 */
60808233 561
3979877e 562 dump_cifs_file_struct(file, "In fce ");
92fc65a7
PS
563 if (((index_to_find < cfile->srch_inf.index_of_last_entry) &&
564 is_dir_changed(file)) || (index_to_find < first_entry_in_buffer)) {
1da177e4 565 /* close and restart search */
b6b38f70 566 cFYI(1, "search backing up - close and restart search");
4477288a 567 spin_lock(&cifs_file_list_lock);
92fc65a7
PS
568 if (!cfile->srch_inf.endOfSearch && !cfile->invalidHandle) {
569 cfile->invalidHandle = true;
4477288a 570 spin_unlock(&cifs_file_list_lock);
92fc65a7
PS
571 if (server->ops->close)
572 server->ops->close(xid, tcon, &cfile->fid);
ddb4cbfc 573 } else
4477288a 574 spin_unlock(&cifs_file_list_lock);
92fc65a7 575 if (cfile->srch_inf.ntwrk_buf_start) {
b6b38f70 576 cFYI(1, "freeing SMB ff cache buf on search rewind");
92fc65a7
PS
577 if (cfile->srch_inf.smallBuf)
578 cifs_small_buf_release(cfile->srch_inf.
d47d7c1a
SF
579 ntwrk_buf_start);
580 else
92fc65a7 581 cifs_buf_release(cfile->srch_inf.
d47d7c1a 582 ntwrk_buf_start);
92fc65a7 583 cfile->srch_inf.ntwrk_buf_start = NULL;
1da177e4 584 }
3870253e 585 rc = initiate_cifs_search(xid, file);
4523cc30 586 if (rc) {
b6b38f70
JP
587 cFYI(1, "error %d reinitiating a search on rewind",
588 rc);
1da177e4
LT
589 return rc;
590 }
7023676f 591 /* FindFirst/Next set last_entry to NULL on malformed reply */
92fc65a7
PS
592 if (cfile->srch_inf.last_entry)
593 cifs_save_resume_key(cfile->srch_inf.last_entry, cfile);
1da177e4
LT
594 }
595
2608bee7
SP
596 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
92fc65a7
PS
600 while ((index_to_find >= cfile->srch_inf.index_of_last_entry) &&
601 (rc == 0) && !cfile->srch_inf.endOfSearch) {
b6b38f70 602 cFYI(1, "calling findnext2");
92fc65a7
PS
603 rc = server->ops->query_dir_next(xid, tcon, &cfile->fid,
604 search_flags,
605 &cfile->srch_inf);
7023676f 606 /* FindFirst/Next set last_entry to NULL on malformed reply */
92fc65a7
PS
607 if (cfile->srch_inf.last_entry)
608 cifs_save_resume_key(cfile->srch_inf.last_entry, cfile);
4523cc30 609 if (rc)
1da177e4
LT
610 return -ENOENT;
611 }
92fc65a7 612 if (index_to_find < cfile->srch_inf.index_of_last_entry) {
1da177e4
LT
613 /* we found the buffer that contains the entry */
614 /* scan and find it */
615 int i;
92fc65a7
PS
616 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);
620
621 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;
1da177e4 624 pos_in_buf = index_to_find - first_entry_in_buffer;
b6b38f70 625 cFYI(1, "found entry - pos_in_buf %d", pos_in_buf);
5bafd765 626
92fc65a7 627 for (i = 0; (i < (pos_in_buf)) && (cur_ent != NULL); i++) {
dfb7533b 628 /* go entry by entry figuring out which is first */
92fc65a7
PS
629 cur_ent = nxt_dir_entry(cur_ent, end_of_smb,
630 cfile->srch_inf.info_level);
1da177e4 631 }
92fc65a7 632 if ((cur_ent == NULL) && (i < pos_in_buf)) {
1da177e4 633 /* BB fixme - check if we should flag this error */
b6b38f70 634 cERROR(1, "reached end of buf searching for pos in buf"
92fc65a7
PS
635 " %d index to find %lld rc %d", pos_in_buf,
636 index_to_find, rc);
1da177e4
LT
637 }
638 rc = 0;
92fc65a7 639 *current_entry = cur_ent;
1da177e4 640 } else {
b6b38f70 641 cFYI(1, "index not in buffer - could not findnext into it");
1da177e4
LT
642 return 0;
643 }
644
92fc65a7 645 if (pos_in_buf >= cfile->srch_inf.entries_in_buffer) {
b6b38f70 646 cFYI(1, "can not return entries pos_in_buf beyond last");
1da177e4
LT
647 *num_to_ret = 0;
648 } else
92fc65a7 649 *num_to_ret = cfile->srch_inf.entries_in_buffer - pos_in_buf;
1da177e4
LT
650
651 return rc;
652}
653
9feed6f8
CH
654static int cifs_filldir(char *find_entry, struct file *file, filldir_t filldir,
655 void *dirent, char *scratch_buf, unsigned int max_len)
1da177e4 656{
9feed6f8
CH
657 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);
cda0ec6a 660 struct cifs_dirent de = { NULL, };
cc0bad75 661 struct cifs_fattr fattr;
9feed6f8 662 struct qstr name;
1da177e4 663 int rc = 0;
9feed6f8 664 ino_t ino;
1da177e4 665
cda0ec6a
CH
666 rc = cifs_fill_dirent(&de, find_entry, file_info->srch_inf.info_level,
667 file_info->srch_inf.unicode);
668 if (rc)
669 return rc;
5bafd765 670
f16d59b4
CH
671 if (de.namelen > max_len) {
672 cERROR(1, "bad search response length %zd past smb end",
673 de.namelen);
5bafd765
SF
674 return -EINVAL;
675 }
676
60808233 677 /* skip . and .. since we added them first */
cda0ec6a 678 if (cifs_entry_is_dot(&de, file_info->srch_inf.unicode))
60808233
SF
679 return 0;
680
f16d59b4
CH
681 if (file_info->srch_inf.unicode) {
682 struct nls_table *nlt = cifs_sb->local_nls;
1da177e4 683
f16d59b4
CH
684 name.name = scratch_buf;
685 name.len =
acbbb76a
SF
686 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 &
f16d59b4
CH
691 CIFS_MOUNT_MAP_SPECIAL_CHR);
692 name.len -= nls_nullsize(nlt);
693 } else {
694 name.name = de.name;
695 name.len = de.namelen;
696 }
1da177e4 697
9feed6f8
CH
698 switch (file_info->srch_inf.info_level) {
699 case SMB_FIND_FILE_UNIX:
cc0bad75 700 cifs_unix_basic_to_fattr(&fattr,
9feed6f8
CH
701 &((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 }
b835bebe 715
f16d59b4
CH
716 if (de.ino && (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
717 fattr.cf_uniqueid = de.ino;
ec06aedd 718 } else {
0b8f18e3 719 fattr.cf_uniqueid = iunique(sb, ROOT_I);
ec06aedd
JL
720 cifs_autodisable_serverino(cifs_sb);
721 }
50c2f753 722
1b12b9c1
SM
723 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
eb1b3fa5 732 cifs_prime_dcache(file->f_dentry, &name, &fattr);
3870253e 733
eb1b3fa5 734 ino = cifs_uniqueid_to_ino_t(fattr.cf_uniqueid);
9feed6f8
CH
735 rc = filldir(dirent, name.name, name.len, file->f_pos, ino,
736 fattr.cf_dtype);
1da177e4
LT
737 return rc;
738}
739
1da177e4
LT
740
741int cifs_readdir(struct file *file, void *direntry, filldir_t filldir)
742{
743 int rc = 0;
6d5786a3
PS
744 unsigned int xid;
745 int i;
92fc65a7 746 struct cifs_tcon *tcon;
1da177e4 747 struct cifsFileInfo *cifsFile = NULL;
3870253e 748 char *current_entry;
1da177e4 749 int num_to_fill = 0;
3870253e 750 char *tmp_buf = NULL;
50c2f753 751 char *end_of_smb;
18295796 752 unsigned int max_len;
1da177e4 753
6d5786a3 754 xid = get_xid();
1da177e4 755
6221ddd0
SJ
756 /*
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
1da177e4
LT
767 switch ((int) file->f_pos) {
768 case 0:
60808233 769 if (filldir(direntry, ".", 1, file->f_pos,
e6a00296 770 file->f_path.dentry->d_inode->i_ino, DT_DIR) < 0) {
b6b38f70 771 cERROR(1, "Filldir for current dir failed");
1da177e4
LT
772 rc = -ENOMEM;
773 break;
774 }
60808233 775 file->f_pos++;
1da177e4 776 case 1:
60808233 777 if (filldir(direntry, "..", 2, file->f_pos,
b85fd6bd 778 parent_ino(file->f_path.dentry), DT_DIR) < 0) {
b6b38f70 779 cERROR(1, "Filldir for parent dir failed");
1da177e4
LT
780 rc = -ENOMEM;
781 break;
782 }
60808233
SF
783 file->f_pos++;
784 default:
3870253e
SF
785 /* 1) If search is active,
786 is in current search buffer?
1da177e4
LT
787 if it before then restart search
788 if after then keep searching till find it */
789
790fe579 790 if (file->private_data == NULL) {
1da177e4 791 rc = -EINVAL;
6d5786a3 792 free_xid(xid);
1da177e4
LT
793 return rc;
794 }
795 cifsFile = file->private_data;
796 if (cifsFile->srch_inf.endOfSearch) {
790fe579 797 if (cifsFile->srch_inf.emptyDir) {
b6b38f70 798 cFYI(1, "End of search, empty dir");
1da177e4
LT
799 rc = 0;
800 break;
801 }
802 } /* else {
4b18f2a9 803 cifsFile->invalidHandle = true;
92fc65a7 804 tcon->ses->server->close(xid, tcon, &cifsFile->fid);
aaa9bbe0 805 } */
1da177e4 806
92fc65a7
PS
807 tcon = tlink_tcon(cifsFile->tlink);
808 rc = find_cifs_entry(xid, tcon, file, &current_entry,
809 &num_to_fill);
790fe579 810 if (rc) {
b6b38f70 811 cFYI(1, "fce error %d", rc);
1da177e4
LT
812 goto rddir2_exit;
813 } else if (current_entry != NULL) {
b6b38f70 814 cFYI(1, "entry %lld found", file->f_pos);
1da177e4 815 } else {
b6b38f70 816 cFYI(1, "could not find entry");
1da177e4
LT
817 goto rddir2_exit;
818 }
b6b38f70
JP
819 cFYI(1, "loop through %d times filling dir for net buf %p",
820 num_to_fill, cifsFile->srch_inf.ntwrk_buf_start);
92fc65a7 821 max_len = tcon->ses->server->ops->calc_smb_size(
5bafd765
SF
822 cifsFile->srch_inf.ntwrk_buf_start);
823 end_of_smb = cifsFile->srch_inf.ntwrk_buf_start + max_len;
824
f5884166 825 tmp_buf = kmalloc(UNICODE_NAME_MAX, GFP_KERNEL);
f55fdcca
KV
826 if (tmp_buf == NULL) {
827 rc = -ENOMEM;
828 break;
829 }
830
790fe579
SF
831 for (i = 0; (i < num_to_fill) && (rc == 0); i++) {
832 if (current_entry == NULL) {
1da177e4 833 /* evaluate whether this case is an error */
b6b38f70
JP
834 cERROR(1, "past SMB end, num to fill %d i %d",
835 num_to_fill, i);
1da177e4
LT
836 break;
837 }
92fc65a7
PS
838 /*
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);
790fe579 844 if (rc == -EOVERFLOW) {
7ca85ba7
SF
845 rc = 0;
846 break;
847 }
848
1da177e4 849 file->f_pos++;
790fe579 850 if (file->f_pos ==
3979877e 851 cifsFile->srch_inf.index_of_last_entry) {
b6b38f70
JP
852 cFYI(1, "last entry in buf at pos %lld %s",
853 file->f_pos, tmp_buf);
790fe579 854 cifs_save_resume_key(current_entry, cifsFile);
1da177e4 855 break;
790fe579
SF
856 } else
857 current_entry =
5bafd765
SF
858 nxt_dir_entry(current_entry, end_of_smb,
859 cifsFile->srch_inf.info_level);
1da177e4
LT
860 }
861 kfree(tmp_buf);
862 break;
863 } /* end switch */
864
865rddir2_exit:
6d5786a3 866 free_xid(xid);
1da177e4
LT
867 return rc;
868}