]> git.ipfire.org Git - thirdparty/linux.git/blame - fs/cifs/readdir.c
CIFS: Implement follow_link for SMB2
[thirdparty/linux.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) {
f96637be 51 cifs_dbg(FYI, "empty cifs private file data\n");
1da177e4
LT
52 return;
53 }
ad7a2926 54 if (cf->invalidHandle)
f96637be 55 cifs_dbg(FYI, "invalid handle\n");
ad7a2926 56 if (cf->srch_inf.endOfSearch)
f96637be 57 cifs_dbg(FYI, "end of search\n");
ad7a2926 58 if (cf->srch_inf.emptyDir)
f96637be 59 cifs_dbg(FYI, "empty dir\n");
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;
2f2591a3 81 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
cc0bad75 82
f96637be 83 cifs_dbg(FYI, "%s: for %s\n", __func__, name->name);
cc0bad75 84
4f522a24
AV
85 dentry = d_hash_and_lookup(parent, name);
86 if (unlikely(IS_ERR(dentry)))
87 return;
05507fa2 88
cc0bad75 89 if (dentry) {
0903a0c8 90 int err;
eb1b3fa5 91
cd60042c 92 inode = dentry->d_inode;
2f2591a3
JL
93 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 }
cd60042c 107 }
0903a0c8 108 err = d_invalidate(dentry);
cc0bad75 109 dput(dentry);
0903a0c8 110 if (err)
eb1b3fa5 111 return;
cc0bad75
JL
112 }
113
757c4f62
JL
114 /*
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
cc0bad75 122 dentry = d_alloc(parent, name);
eb1b3fa5
JL
123 if (!dentry)
124 return;
cc0bad75
JL
125
126 inode = cifs_iget(sb, fattr);
eb1b3fa5
JL
127 if (!inode)
128 goto out;
cc0bad75 129
cc0bad75 130 alias = d_materialise_unique(dentry, inode);
eb1b3fa5
JL
131 if (alias && !IS_ERR(alias))
132 dput(alias);
133out:
134 dput(dentry);
cc0bad75
JL
135}
136
2a2c41c0
JL
137/*
138 * Is it possible that this directory might turn out to be a DFS referral
139 * once we go to try and use it?
140 */
141static bool
142cifs_dfs_is_possible(struct cifs_sb_info *cifs_sb)
143{
144#ifdef CONFIG_CIFS_DFS_UPCALL
145 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
146
147 if (tcon->Flags & SMB_SHARE_IS_IN_DFS)
148 return true;
149#endif
150 return false;
151}
152
0b8f18e3
JL
153static void
154cifs_fill_common_info(struct cifs_fattr *fattr, struct cifs_sb_info *cifs_sb)
1da177e4 155{
0b8f18e3
JL
156 fattr->cf_uid = cifs_sb->mnt_uid;
157 fattr->cf_gid = cifs_sb->mnt_gid;
1da177e4 158
0b8f18e3
JL
159 if (fattr->cf_cifsattrs & ATTR_DIRECTORY) {
160 fattr->cf_mode = S_IFDIR | cifs_sb->mnt_dir_mode;
161 fattr->cf_dtype = DT_DIR;
2a2c41c0
JL
162 /*
163 * Windows CIFS servers generally make DFS referrals look
164 * like directories in FIND_* responses with the reparse
165 * attribute flag also set (since DFS junctions are
166 * reparse points). We must revalidate at least these
167 * directory inodes before trying to use them (if
168 * they are DFS we will get PATH_NOT_COVERED back
169 * when queried directly and can then try to connect
170 * to the DFS target)
171 */
172 if (cifs_dfs_is_possible(cifs_sb) &&
173 (fattr->cf_cifsattrs & ATTR_REPARSE))
174 fattr->cf_flags |= CIFS_FATTR_NEED_REVAL;
b42bf888
PS
175 } else if (fattr->cf_cifsattrs & ATTR_REPARSE) {
176 fattr->cf_mode = S_IFLNK;
177 fattr->cf_dtype = DT_LNK;
1da177e4 178 } else {
0b8f18e3
JL
179 fattr->cf_mode = S_IFREG | cifs_sb->mnt_file_mode;
180 fattr->cf_dtype = DT_REG;
1da177e4
LT
181 }
182
0b8f18e3
JL
183 if (fattr->cf_cifsattrs & ATTR_READONLY)
184 fattr->cf_mode &= ~S_IWUGO;
5bafd765 185
ccb5c001
JL
186 /*
187 * We of course don't get ACL info in FIND_FIRST/NEXT results, so
188 * mark it for revalidation so that "ls -l" will look right. It might
189 * be super-slow, but if we don't do this then the ownership of files
190 * may look wrong since the inodes may not have timed out by the time
191 * "ls" does a stat() call on them.
192 */
193 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
194 fattr->cf_flags |= CIFS_FATTR_NEED_REVAL;
195
0b8f18e3
JL
196 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL &&
197 fattr->cf_cifsattrs & ATTR_SYSTEM) {
198 if (fattr->cf_eof == 0) {
199 fattr->cf_mode &= ~S_IFMT;
200 fattr->cf_mode |= S_IFIFO;
201 fattr->cf_dtype = DT_FIFO;
3020a1f5 202 } else {
4468eb3f 203 /*
0b8f18e3
JL
204 * trying to get the type and mode via SFU can be slow,
205 * so just call those regular files for now, and mark
206 * for reval
4468eb3f 207 */
0b8f18e3 208 fattr->cf_flags |= CIFS_FATTR_NEED_REVAL;
4468eb3f
JL
209 }
210 }
0b8f18e3 211}
1da177e4 212
c052e2b4 213void
0b8f18e3
JL
214cifs_dir_info_to_fattr(struct cifs_fattr *fattr, FILE_DIRECTORY_INFO *info,
215 struct cifs_sb_info *cifs_sb)
216{
217 memset(fattr, 0, sizeof(*fattr));
218 fattr->cf_cifsattrs = le32_to_cpu(info->ExtFileAttributes);
219 fattr->cf_eof = le64_to_cpu(info->EndOfFile);
220 fattr->cf_bytes = le64_to_cpu(info->AllocationSize);
20054bd6 221 fattr->cf_createtime = le64_to_cpu(info->CreationTime);
0b8f18e3
JL
222 fattr->cf_atime = cifs_NTtimeToUnix(info->LastAccessTime);
223 fattr->cf_ctime = cifs_NTtimeToUnix(info->ChangeTime);
224 fattr->cf_mtime = cifs_NTtimeToUnix(info->LastWriteTime);
225
226 cifs_fill_common_info(fattr, cifs_sb);
227}
1da177e4 228
15dd4781 229static void
0b8f18e3
JL
230cifs_std_info_to_fattr(struct cifs_fattr *fattr, FIND_FILE_STANDARD_INFO *info,
231 struct cifs_sb_info *cifs_sb)
232{
0d424ad0 233 int offset = cifs_sb_master_tcon(cifs_sb)->ses->server->timeAdj;
1da177e4 234
0b8f18e3
JL
235 memset(fattr, 0, sizeof(*fattr));
236 fattr->cf_atime = cnvrtDosUnixTm(info->LastAccessDate,
237 info->LastAccessTime, offset);
238 fattr->cf_ctime = cnvrtDosUnixTm(info->LastWriteDate,
239 info->LastWriteTime, offset);
240 fattr->cf_mtime = cnvrtDosUnixTm(info->LastWriteDate,
241 info->LastWriteTime, offset);
242
243 fattr->cf_cifsattrs = le16_to_cpu(info->Attributes);
244 fattr->cf_bytes = le32_to_cpu(info->AllocationSize);
245 fattr->cf_eof = le32_to_cpu(info->DataSize);
246
247 cifs_fill_common_info(fattr, cifs_sb);
1da177e4
LT
248}
249
0e0d2cf3
SF
250/* BB eventually need to add the following helper function to
251 resolve NT_STATUS_STOPPED_ON_SYMLINK return code when
252 we try to do FindFirst on (NTFS) directory symlinks */
253/*
254int get_symlink_reparse_path(char *full_path, struct cifs_sb_info *cifs_sb,
6d5786a3 255 unsigned int xid)
0e0d2cf3
SF
256{
257 __u16 fid;
258 int len;
259 int oplock = 0;
260 int rc;
96daf2b0 261 struct cifs_tcon *ptcon = cifs_sb_tcon(cifs_sb);
0e0d2cf3
SF
262 char *tmpbuffer;
263
264 rc = CIFSSMBOpen(xid, ptcon, full_path, FILE_OPEN, GENERIC_READ,
265 OPEN_REPARSE_POINT, &fid, &oplock, NULL,
266 cifs_sb->local_nls,
267 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
268 if (!rc) {
269 tmpbuffer = kmalloc(maxpath);
270 rc = CIFSSMBQueryReparseLinkInfo(xid, ptcon, full_path,
271 tmpbuffer,
272 maxpath -1,
273 fid,
274 cifs_sb->local_nls);
275 if (CIFSSMBClose(xid, ptcon, fid)) {
f96637be 276 cifs_dbg(FYI, "Error closing temporary reparsepoint open\n");
0e0d2cf3
SF
277 }
278 }
279}
280 */
281
92fc65a7
PS
282static int
283initiate_cifs_search(const unsigned int xid, struct file *file)
1da177e4 284{
2608bee7 285 __u16 search_flags;
1da177e4 286 int rc = 0;
7ffec372 287 char *full_path = NULL;
3870253e 288 struct cifsFileInfo *cifsFile;
7ffec372 289 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
59c55ba1 290 struct tcon_link *tlink = NULL;
29e20f9c 291 struct cifs_tcon *tcon;
92fc65a7 292 struct TCP_Server_Info *server;
1da177e4 293
7ffec372 294 if (file->private_data == NULL) {
59c55ba1
JL
295 tlink = cifs_sb_tlink(cifs_sb);
296 if (IS_ERR(tlink))
297 return PTR_ERR(tlink);
298
299 cifsFile = kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL);
300 if (cifsFile == NULL) {
301 rc = -ENOMEM;
302 goto error_exit;
303 }
304 file->private_data = cifsFile;
305 cifsFile->tlink = cifs_get_tlink(tlink);
29e20f9c 306 tcon = tlink_tcon(tlink);
59c55ba1
JL
307 } else {
308 cifsFile = file->private_data;
29e20f9c 309 tcon = tlink_tcon(cifsFile->tlink);
7ffec372 310 }
1da177e4 311
92fc65a7
PS
312 server = tcon->ses->server;
313
314 if (!server->ops->query_dir_first) {
315 rc = -ENOSYS;
316 goto error_exit;
317 }
318
4b18f2a9
SF
319 cifsFile->invalidHandle = true;
320 cifsFile->srch_inf.endOfSearch = false;
1da177e4 321
e6a00296 322 full_path = build_path_from_dentry(file->f_path.dentry);
7ffec372
JL
323 if (full_path == NULL) {
324 rc = -ENOMEM;
325 goto error_exit;
326 }
1da177e4 327
f96637be 328 cifs_dbg(FYI, "Full path: %s start at: %lld\n", full_path, file->f_pos);
1da177e4 329
75cf6bdc 330ffirst_retry:
1da177e4 331 /* test for Unix extensions */
c18c842b 332 /* but now check for them on the share/mount not on the SMB session */
29e20f9c
PS
333 /* if (cap_unix(tcon->ses) { */
334 if (tcon->unix_ext)
5bafd765 335 cifsFile->srch_inf.info_level = SMB_FIND_FILE_UNIX;
29e20f9c
PS
336 else if ((tcon->ses->capabilities &
337 tcon->ses->server->vals->cap_nt_find) == 0) {
5bafd765 338 cifsFile->srch_inf.info_level = SMB_FIND_FILE_INFO_STANDARD;
1da177e4
LT
339 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
340 cifsFile->srch_inf.info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO;
341 } else /* not srvinos - BB fixme add check for backlevel? */ {
342 cifsFile->srch_inf.info_level = SMB_FIND_FILE_DIRECTORY_INFO;
343 }
344
2608bee7
SP
345 search_flags = CIFS_SEARCH_CLOSE_AT_END | CIFS_SEARCH_RETURN_RESUME;
346 if (backup_cred(cifs_sb))
347 search_flags |= CIFS_SEARCH_BACKUP_SEARCH;
348
92fc65a7
PS
349 rc = server->ops->query_dir_first(xid, tcon, full_path, cifs_sb,
350 &cifsFile->fid, search_flags,
351 &cifsFile->srch_inf);
352
4523cc30 353 if (rc == 0)
4b18f2a9 354 cifsFile->invalidHandle = false;
e836f015 355 /* BB add following call to handle readdir on new NTFS symlink errors
0e0d2cf3
SF
356 else if STATUS_STOPPED_ON_SYMLINK
357 call get_symlink_reparse_path and retry with new path */
358 else if ((rc == -EOPNOTSUPP) &&
75cf6bdc
SF
359 (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
360 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
361 goto ffirst_retry;
362 }
7ffec372 363error_exit:
1da177e4 364 kfree(full_path);
7ffec372 365 cifs_put_tlink(tlink);
1da177e4
LT
366 return rc;
367}
368
369/* return length of unicode string in bytes */
cda0ec6a 370static int cifs_unicode_bytelen(const char *str)
1da177e4
LT
371{
372 int len;
cda0ec6a 373 const __le16 *ustr = (const __le16 *)str;
1da177e4 374
3870253e 375 for (len = 0; len <= PATH_MAX; len++) {
4523cc30 376 if (ustr[len] == 0)
1da177e4
LT
377 return len << 1;
378 }
f96637be 379 cifs_dbg(FYI, "Unicode string longer than PATH_MAX found\n");
1da177e4
LT
380 return len << 1;
381}
382
5bafd765 383static char *nxt_dir_entry(char *old_entry, char *end_of_smb, int level)
1da177e4 384{
3870253e 385 char *new_entry;
ad7a2926 386 FILE_DIRECTORY_INFO *pDirInfo = (FILE_DIRECTORY_INFO *)old_entry;
1da177e4 387
4523cc30 388 if (level == SMB_FIND_FILE_INFO_STANDARD) {
ad7a2926 389 FIND_FILE_STANDARD_INFO *pfData;
5bafd765
SF
390 pfData = (FIND_FILE_STANDARD_INFO *)pDirInfo;
391
392 new_entry = old_entry + sizeof(FIND_FILE_STANDARD_INFO) +
393 pfData->FileNameLength;
394 } else
395 new_entry = old_entry + le32_to_cpu(pDirInfo->NextEntryOffset);
f96637be 396 cifs_dbg(FYI, "new entry %p old entry %p\n", new_entry, old_entry);
1da177e4 397 /* validate that new_entry is not past end of SMB */
4523cc30 398 if (new_entry >= end_of_smb) {
f96637be
JP
399 cifs_dbg(VFS, "search entry %p began after end of SMB %p old entry %p\n",
400 new_entry, end_of_smb, old_entry);
1da177e4 401 return NULL;
4523cc30 402 } else if (((level == SMB_FIND_FILE_INFO_STANDARD) &&
3870253e
SF
403 (new_entry + sizeof(FIND_FILE_STANDARD_INFO) > end_of_smb))
404 || ((level != SMB_FIND_FILE_INFO_STANDARD) &&
5bafd765 405 (new_entry + sizeof(FILE_DIRECTORY_INFO) > end_of_smb))) {
f96637be
JP
406 cifs_dbg(VFS, "search entry %p extends after end of SMB %p\n",
407 new_entry, end_of_smb);
09d1db5c 408 return NULL;
3870253e 409 } else
1da177e4
LT
410 return new_entry;
411
412}
413
cda0ec6a
CH
414struct cifs_dirent {
415 const char *name;
416 size_t namelen;
417 u32 resume_key;
418 u64 ino;
419};
420
421static void cifs_fill_dirent_unix(struct cifs_dirent *de,
422 const FILE_UNIX_INFO *info, bool is_unicode)
423{
424 de->name = &info->FileName[0];
425 if (is_unicode)
426 de->namelen = cifs_unicode_bytelen(de->name);
427 else
428 de->namelen = strnlen(de->name, PATH_MAX);
429 de->resume_key = info->ResumeKey;
430 de->ino = le64_to_cpu(info->basic.UniqueId);
431}
432
433static void cifs_fill_dirent_dir(struct cifs_dirent *de,
434 const FILE_DIRECTORY_INFO *info)
435{
436 de->name = &info->FileName[0];
437 de->namelen = le32_to_cpu(info->FileNameLength);
438 de->resume_key = info->FileIndex;
439}
440
441static void cifs_fill_dirent_full(struct cifs_dirent *de,
442 const FILE_FULL_DIRECTORY_INFO *info)
443{
444 de->name = &info->FileName[0];
445 de->namelen = le32_to_cpu(info->FileNameLength);
446 de->resume_key = info->FileIndex;
447}
448
449static void cifs_fill_dirent_search(struct cifs_dirent *de,
450 const SEARCH_ID_FULL_DIR_INFO *info)
451{
452 de->name = &info->FileName[0];
453 de->namelen = le32_to_cpu(info->FileNameLength);
454 de->resume_key = info->FileIndex;
455 de->ino = le64_to_cpu(info->UniqueId);
456}
457
458static void cifs_fill_dirent_both(struct cifs_dirent *de,
459 const FILE_BOTH_DIRECTORY_INFO *info)
460{
461 de->name = &info->FileName[0];
462 de->namelen = le32_to_cpu(info->FileNameLength);
463 de->resume_key = info->FileIndex;
464}
465
466static void cifs_fill_dirent_std(struct cifs_dirent *de,
467 const FIND_FILE_STANDARD_INFO *info)
468{
469 de->name = &info->FileName[0];
470 /* one byte length, no endianess conversion */
471 de->namelen = info->FileNameLength;
472 de->resume_key = info->ResumeKey;
473}
474
475static int cifs_fill_dirent(struct cifs_dirent *de, const void *info,
476 u16 level, bool is_unicode)
477{
478 memset(de, 0, sizeof(*de));
479
480 switch (level) {
481 case SMB_FIND_FILE_UNIX:
482 cifs_fill_dirent_unix(de, info, is_unicode);
483 break;
484 case SMB_FIND_FILE_DIRECTORY_INFO:
485 cifs_fill_dirent_dir(de, info);
486 break;
487 case SMB_FIND_FILE_FULL_DIRECTORY_INFO:
488 cifs_fill_dirent_full(de, info);
489 break;
490 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
491 cifs_fill_dirent_search(de, info);
492 break;
493 case SMB_FIND_FILE_BOTH_DIRECTORY_INFO:
494 cifs_fill_dirent_both(de, info);
495 break;
496 case SMB_FIND_FILE_INFO_STANDARD:
497 cifs_fill_dirent_std(de, info);
498 break;
499 default:
f96637be 500 cifs_dbg(FYI, "Unknown findfirst level %d\n", level);
cda0ec6a
CH
501 return -EINVAL;
502 }
503
504 return 0;
505}
506
1da177e4
LT
507#define UNICODE_DOT cpu_to_le16(0x2e)
508
509/* return 0 if no match and 1 for . (current directory) and 2 for .. (parent) */
cda0ec6a 510static int cifs_entry_is_dot(struct cifs_dirent *de, bool is_unicode)
1da177e4
LT
511{
512 int rc = 0;
1da177e4 513
cda0ec6a
CH
514 if (!de->name)
515 return 0;
1da177e4 516
cda0ec6a
CH
517 if (is_unicode) {
518 __le16 *ufilename = (__le16 *)de->name;
519 if (de->namelen == 2) {
520 /* check for . */
521 if (ufilename[0] == UNICODE_DOT)
522 rc = 1;
523 } else if (de->namelen == 4) {
524 /* check for .. */
525 if (ufilename[0] == UNICODE_DOT &&
526 ufilename[1] == UNICODE_DOT)
527 rc = 2;
528 }
529 } else /* ASCII */ {
530 if (de->namelen == 1) {
531 if (de->name[0] == '.')
532 rc = 1;
533 } else if (de->namelen == 2) {
534 if (de->name[0] == '.' && de->name[1] == '.')
535 rc = 2;
1da177e4
LT
536 }
537 }
538
539 return rc;
540}
541
eafe8701
SF
542/* Check if directory that we are searching has changed so we can decide
543 whether we can use the cached search results from the previous search */
3870253e 544static int is_dir_changed(struct file *file)
eafe8701 545{
496ad9aa 546 struct inode *inode = file_inode(file);
c33f8d32 547 struct cifsInodeInfo *cifsInfo = CIFS_I(inode);
eafe8701 548
c33f8d32 549 if (cifsInfo->time == 0)
eafe8701
SF
550 return 1; /* directory was changed, perhaps due to unlink */
551 else
552 return 0;
553
554}
555
0752f152 556static int cifs_save_resume_key(const char *current_entry,
eaf35b1e 557 struct cifsFileInfo *file_info)
0752f152 558{
eaf35b1e
CH
559 struct cifs_dirent de;
560 int rc;
0752f152 561
eaf35b1e
CH
562 rc = cifs_fill_dirent(&de, current_entry, file_info->srch_inf.info_level,
563 file_info->srch_inf.unicode);
564 if (!rc) {
565 file_info->srch_inf.presume_name = de.name;
566 file_info->srch_inf.resume_name_len = de.namelen;
567 file_info->srch_inf.resume_key = de.resume_key;
0752f152 568 }
0752f152
SF
569 return rc;
570}
571
92fc65a7
PS
572/*
573 * Find the corresponding entry in the search. Note that the SMB server returns
574 * search entries for . and .. which complicates logic here if we choose to
575 * parse for them and we do not assume that they are located in the findfirst
576 * return buffer. We start counting in the buffer with entry 2 and increment for
577 * every entry (do not increment for . or .. entry).
578 */
579static int
be4ccdcc 580find_cifs_entry(const unsigned int xid, struct cifs_tcon *tcon, loff_t pos,
92fc65a7 581 struct file *file, char **current_entry, int *num_to_ret)
1da177e4 582{
2608bee7 583 __u16 search_flags;
1da177e4
LT
584 int rc = 0;
585 int pos_in_buf = 0;
586 loff_t first_entry_in_buffer;
be4ccdcc 587 loff_t index_to_find = pos;
92fc65a7 588 struct cifsFileInfo *cfile = file->private_data;
2608bee7 589 struct cifs_sb_info *cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
92fc65a7 590 struct TCP_Server_Info *server = tcon->ses->server;
1da177e4 591 /* check if index in the buffer */
50c2f753 592
92fc65a7
PS
593 if (!server->ops->query_dir_first || !server->ops->query_dir_next)
594 return -ENOSYS;
595
596 if ((cfile == NULL) || (current_entry == NULL) || (num_to_ret == NULL))
1da177e4 597 return -ENOENT;
50c2f753 598
92fc65a7
PS
599 *current_entry = NULL;
600 first_entry_in_buffer = cfile->srch_inf.index_of_last_entry -
601 cfile->srch_inf.entries_in_buffer;
60808233 602
92fc65a7
PS
603 /*
604 * If first entry in buf is zero then is first buffer
605 * in search response data which means it is likely . and ..
606 * will be in this buffer, although some servers do not return
607 * . and .. for the root of a drive and for those we need
608 * to start two entries earlier.
609 */
60808233 610
3979877e 611 dump_cifs_file_struct(file, "In fce ");
92fc65a7
PS
612 if (((index_to_find < cfile->srch_inf.index_of_last_entry) &&
613 is_dir_changed(file)) || (index_to_find < first_entry_in_buffer)) {
1da177e4 614 /* close and restart search */
f96637be 615 cifs_dbg(FYI, "search backing up - close and restart search\n");
4477288a 616 spin_lock(&cifs_file_list_lock);
92fc65a7
PS
617 if (!cfile->srch_inf.endOfSearch && !cfile->invalidHandle) {
618 cfile->invalidHandle = true;
4477288a 619 spin_unlock(&cifs_file_list_lock);
92fc65a7
PS
620 if (server->ops->close)
621 server->ops->close(xid, tcon, &cfile->fid);
ddb4cbfc 622 } else
4477288a 623 spin_unlock(&cifs_file_list_lock);
92fc65a7 624 if (cfile->srch_inf.ntwrk_buf_start) {
f96637be 625 cifs_dbg(FYI, "freeing SMB ff cache buf on search rewind\n");
92fc65a7
PS
626 if (cfile->srch_inf.smallBuf)
627 cifs_small_buf_release(cfile->srch_inf.
d47d7c1a
SF
628 ntwrk_buf_start);
629 else
92fc65a7 630 cifs_buf_release(cfile->srch_inf.
d47d7c1a 631 ntwrk_buf_start);
92fc65a7 632 cfile->srch_inf.ntwrk_buf_start = NULL;
1da177e4 633 }
3870253e 634 rc = initiate_cifs_search(xid, file);
4523cc30 635 if (rc) {
f96637be 636 cifs_dbg(FYI, "error %d reinitiating a search on rewind\n",
b6b38f70 637 rc);
1da177e4
LT
638 return rc;
639 }
7023676f 640 /* FindFirst/Next set last_entry to NULL on malformed reply */
92fc65a7
PS
641 if (cfile->srch_inf.last_entry)
642 cifs_save_resume_key(cfile->srch_inf.last_entry, cfile);
1da177e4
LT
643 }
644
2608bee7
SP
645 search_flags = CIFS_SEARCH_CLOSE_AT_END | CIFS_SEARCH_RETURN_RESUME;
646 if (backup_cred(cifs_sb))
647 search_flags |= CIFS_SEARCH_BACKUP_SEARCH;
648
92fc65a7
PS
649 while ((index_to_find >= cfile->srch_inf.index_of_last_entry) &&
650 (rc == 0) && !cfile->srch_inf.endOfSearch) {
f96637be 651 cifs_dbg(FYI, "calling findnext2\n");
92fc65a7
PS
652 rc = server->ops->query_dir_next(xid, tcon, &cfile->fid,
653 search_flags,
654 &cfile->srch_inf);
7023676f 655 /* FindFirst/Next set last_entry to NULL on malformed reply */
92fc65a7
PS
656 if (cfile->srch_inf.last_entry)
657 cifs_save_resume_key(cfile->srch_inf.last_entry, cfile);
4523cc30 658 if (rc)
1da177e4
LT
659 return -ENOENT;
660 }
92fc65a7 661 if (index_to_find < cfile->srch_inf.index_of_last_entry) {
1da177e4
LT
662 /* we found the buffer that contains the entry */
663 /* scan and find it */
664 int i;
92fc65a7
PS
665 char *cur_ent;
666 char *end_of_smb = cfile->srch_inf.ntwrk_buf_start +
667 server->ops->calc_smb_size(
668 cfile->srch_inf.ntwrk_buf_start);
669
670 cur_ent = cfile->srch_inf.srch_entries_start;
671 first_entry_in_buffer = cfile->srch_inf.index_of_last_entry
672 - cfile->srch_inf.entries_in_buffer;
1da177e4 673 pos_in_buf = index_to_find - first_entry_in_buffer;
f96637be 674 cifs_dbg(FYI, "found entry - pos_in_buf %d\n", pos_in_buf);
5bafd765 675
92fc65a7 676 for (i = 0; (i < (pos_in_buf)) && (cur_ent != NULL); i++) {
dfb7533b 677 /* go entry by entry figuring out which is first */
92fc65a7
PS
678 cur_ent = nxt_dir_entry(cur_ent, end_of_smb,
679 cfile->srch_inf.info_level);
1da177e4 680 }
92fc65a7 681 if ((cur_ent == NULL) && (i < pos_in_buf)) {
1da177e4 682 /* BB fixme - check if we should flag this error */
f96637be
JP
683 cifs_dbg(VFS, "reached end of buf searching for pos in buf %d index to find %lld rc %d\n",
684 pos_in_buf, index_to_find, rc);
1da177e4
LT
685 }
686 rc = 0;
92fc65a7 687 *current_entry = cur_ent;
1da177e4 688 } else {
f96637be 689 cifs_dbg(FYI, "index not in buffer - could not findnext into it\n");
1da177e4
LT
690 return 0;
691 }
692
92fc65a7 693 if (pos_in_buf >= cfile->srch_inf.entries_in_buffer) {
f96637be 694 cifs_dbg(FYI, "can not return entries pos_in_buf beyond last\n");
1da177e4
LT
695 *num_to_ret = 0;
696 } else
92fc65a7 697 *num_to_ret = cfile->srch_inf.entries_in_buffer - pos_in_buf;
1da177e4
LT
698
699 return rc;
700}
701
be4ccdcc
AV
702static int cifs_filldir(char *find_entry, struct file *file,
703 struct dir_context *ctx,
704 char *scratch_buf, unsigned int max_len)
1da177e4 705{
9feed6f8
CH
706 struct cifsFileInfo *file_info = file->private_data;
707 struct super_block *sb = file->f_path.dentry->d_sb;
708 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
cda0ec6a 709 struct cifs_dirent de = { NULL, };
cc0bad75 710 struct cifs_fattr fattr;
9feed6f8 711 struct qstr name;
1da177e4 712 int rc = 0;
9feed6f8 713 ino_t ino;
1da177e4 714
cda0ec6a
CH
715 rc = cifs_fill_dirent(&de, find_entry, file_info->srch_inf.info_level,
716 file_info->srch_inf.unicode);
717 if (rc)
718 return rc;
5bafd765 719
f16d59b4 720 if (de.namelen > max_len) {
f96637be
JP
721 cifs_dbg(VFS, "bad search response length %zd past smb end\n",
722 de.namelen);
5bafd765
SF
723 return -EINVAL;
724 }
725
60808233 726 /* skip . and .. since we added them first */
cda0ec6a 727 if (cifs_entry_is_dot(&de, file_info->srch_inf.unicode))
60808233
SF
728 return 0;
729
f16d59b4
CH
730 if (file_info->srch_inf.unicode) {
731 struct nls_table *nlt = cifs_sb->local_nls;
1da177e4 732
f16d59b4
CH
733 name.name = scratch_buf;
734 name.len =
acbbb76a
SF
735 cifs_from_utf16((char *)name.name, (__le16 *)de.name,
736 UNICODE_NAME_MAX,
737 min_t(size_t, de.namelen,
738 (size_t)max_len), nlt,
739 cifs_sb->mnt_cifs_flags &
f16d59b4
CH
740 CIFS_MOUNT_MAP_SPECIAL_CHR);
741 name.len -= nls_nullsize(nlt);
742 } else {
743 name.name = de.name;
744 name.len = de.namelen;
745 }
1da177e4 746
9feed6f8
CH
747 switch (file_info->srch_inf.info_level) {
748 case SMB_FIND_FILE_UNIX:
cc0bad75 749 cifs_unix_basic_to_fattr(&fattr,
9feed6f8
CH
750 &((FILE_UNIX_INFO *)find_entry)->basic,
751 cifs_sb);
752 break;
753 case SMB_FIND_FILE_INFO_STANDARD:
754 cifs_std_info_to_fattr(&fattr,
755 (FIND_FILE_STANDARD_INFO *)find_entry,
756 cifs_sb);
757 break;
758 default:
759 cifs_dir_info_to_fattr(&fattr,
760 (FILE_DIRECTORY_INFO *)find_entry,
761 cifs_sb);
762 break;
763 }
b835bebe 764
f16d59b4
CH
765 if (de.ino && (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
766 fattr.cf_uniqueid = de.ino;
ec06aedd 767 } else {
0b8f18e3 768 fattr.cf_uniqueid = iunique(sb, ROOT_I);
ec06aedd
JL
769 cifs_autodisable_serverino(cifs_sb);
770 }
50c2f753 771
1b12b9c1
SM
772 if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) &&
773 CIFSCouldBeMFSymlink(&fattr))
774 /*
775 * trying to get the type and mode can be slow,
776 * so just call those regular files for now, and mark
777 * for reval
778 */
779 fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
780
eb1b3fa5 781 cifs_prime_dcache(file->f_dentry, &name, &fattr);
3870253e 782
eb1b3fa5 783 ino = cifs_uniqueid_to_ino_t(fattr.cf_uniqueid);
be4ccdcc 784 return !dir_emit(ctx, name.name, name.len, ino, fattr.cf_dtype);
1da177e4
LT
785}
786
1da177e4 787
be4ccdcc 788int cifs_readdir(struct file *file, struct dir_context *ctx)
1da177e4
LT
789{
790 int rc = 0;
6d5786a3
PS
791 unsigned int xid;
792 int i;
92fc65a7 793 struct cifs_tcon *tcon;
1da177e4 794 struct cifsFileInfo *cifsFile = NULL;
3870253e 795 char *current_entry;
1da177e4 796 int num_to_fill = 0;
3870253e 797 char *tmp_buf = NULL;
50c2f753 798 char *end_of_smb;
18295796 799 unsigned int max_len;
1da177e4 800
6d5786a3 801 xid = get_xid();
1da177e4 802
6221ddd0
SJ
803 /*
804 * Ensure FindFirst doesn't fail before doing filldir() for '.' and
805 * '..'. Otherwise we won't be able to notify VFS in case of failure.
806 */
807 if (file->private_data == NULL) {
808 rc = initiate_cifs_search(xid, file);
f96637be 809 cifs_dbg(FYI, "initiate cifs search rc %d\n", rc);
6221ddd0
SJ
810 if (rc)
811 goto rddir2_exit;
812 }
813
be4ccdcc
AV
814 if (!dir_emit_dots(file, ctx))
815 goto rddir2_exit;
1da177e4 816
be4ccdcc
AV
817 /* 1) If search is active,
818 is in current search buffer?
819 if it before then restart search
820 if after then keep searching till find it */
821
822 if (file->private_data == NULL) {
823 rc = -EINVAL;
824 goto rddir2_exit;
825 }
826 cifsFile = file->private_data;
827 if (cifsFile->srch_inf.endOfSearch) {
828 if (cifsFile->srch_inf.emptyDir) {
829 cifs_dbg(FYI, "End of search, empty dir\n");
830 rc = 0;
1da177e4
LT
831 goto rddir2_exit;
832 }
be4ccdcc
AV
833 } /* else {
834 cifsFile->invalidHandle = true;
835 tcon->ses->server->close(xid, tcon, &cifsFile->fid);
836 } */
837
838 tcon = tlink_tcon(cifsFile->tlink);
839 rc = find_cifs_entry(xid, tcon, ctx->pos, file, &current_entry,
840 &num_to_fill);
841 if (rc) {
842 cifs_dbg(FYI, "fce error %d\n", rc);
843 goto rddir2_exit;
844 } else if (current_entry != NULL) {
845 cifs_dbg(FYI, "entry %lld found\n", ctx->pos);
846 } else {
847 cifs_dbg(FYI, "could not find entry\n");
848 goto rddir2_exit;
849 }
850 cifs_dbg(FYI, "loop through %d times filling dir for net buf %p\n",
851 num_to_fill, cifsFile->srch_inf.ntwrk_buf_start);
852 max_len = tcon->ses->server->ops->calc_smb_size(
853 cifsFile->srch_inf.ntwrk_buf_start);
854 end_of_smb = cifsFile->srch_inf.ntwrk_buf_start + max_len;
855
856 tmp_buf = kmalloc(UNICODE_NAME_MAX, GFP_KERNEL);
857 if (tmp_buf == NULL) {
858 rc = -ENOMEM;
859 goto rddir2_exit;
860 }
861
862 for (i = 0; i < num_to_fill; i++) {
863 if (current_entry == NULL) {
864 /* evaluate whether this case is an error */
865 cifs_dbg(VFS, "past SMB end, num to fill %d i %d\n",
866 num_to_fill, i);
f55fdcca
KV
867 break;
868 }
be4ccdcc
AV
869 /*
870 * if buggy server returns . and .. late do we want to
871 * check for that here?
872 */
873 rc = cifs_filldir(current_entry, file, ctx,
874 tmp_buf, max_len);
875 if (rc) {
876 if (rc > 0)
7ca85ba7 877 rc = 0;
be4ccdcc 878 break;
1da177e4 879 }
be4ccdcc
AV
880
881 ctx->pos++;
882 if (ctx->pos ==
883 cifsFile->srch_inf.index_of_last_entry) {
884 cifs_dbg(FYI, "last entry in buf at pos %lld %s\n",
885 ctx->pos, tmp_buf);
886 cifs_save_resume_key(current_entry, cifsFile);
887 break;
888 } else
889 current_entry =
890 nxt_dir_entry(current_entry, end_of_smb,
891 cifsFile->srch_inf.info_level);
892 }
893 kfree(tmp_buf);
1da177e4
LT
894
895rddir2_exit:
6d5786a3 896 free_xid(xid);
1da177e4
LT
897 return rc;
898}