blob: 07838a5ba3a1778572a0266335f92a677c347709 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/readdir.c
3 *
4 * Directory search handling
5 *
6 * Copyright (C) International Business Machines Corp., 2004
7 * Author(s): Steve French (sfrench@us.ibm.com)
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23#include <linux/fs.h>
24#include <linux/stat.h>
25#include <linux/smp_lock.h>
26#include "cifspdu.h"
27#include "cifsglob.h"
28#include "cifsproto.h"
29#include "cifs_unicode.h"
30#include "cifs_debug.h"
31#include "cifs_fs_sb.h"
32#include "cifsfs.h"
33
34/* BB fixme - add debug wrappers around this function to disable it fixme BB */
35/* static void dump_cifs_file_struct(struct file *file, char *label)
36{
37 struct cifsFileInfo * cf;
38
39 if(file) {
40 cf = file->private_data;
41 if(cf == NULL) {
42 cFYI(1,("empty cifs private file data"));
43 return;
44 }
45 if(cf->invalidHandle) {
46 cFYI(1,("invalid handle"));
47 }
48 if(cf->srch_inf.endOfSearch) {
49 cFYI(1,("end of search"));
50 }
51 if(cf->srch_inf.emptyDir) {
52 cFYI(1,("empty dir"));
53 }
54
55 }
56} */
57
58/* Returns one if new inode created (which therefore needs to be hashed) */
59/* Might check in the future if inode number changed so we can rehash inode */
60static int construct_dentry(struct qstr *qstring, struct file *file,
61 struct inode **ptmp_inode, struct dentry **pnew_dentry)
62{
63 struct dentry *tmp_dentry;
64 struct cifs_sb_info *cifs_sb;
65 struct cifsTconInfo *pTcon;
66 int rc = 0;
67
68 cFYI(1, ("For %s ", qstring->name));
69 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
70 pTcon = cifs_sb->tcon;
71
72 qstring->hash = full_name_hash(qstring->name, qstring->len);
73 tmp_dentry = d_lookup(file->f_dentry, qstring);
74 if (tmp_dentry) {
75 cFYI(0, (" existing dentry with inode 0x%p", tmp_dentry->d_inode));
76 *ptmp_inode = tmp_dentry->d_inode;
77/* BB overwrite old name? i.e. tmp_dentry->d_name and tmp_dentry->d_name.len??*/
78 if(*ptmp_inode == NULL) {
79 *ptmp_inode = new_inode(file->f_dentry->d_sb);
80 if(*ptmp_inode == NULL)
81 return rc;
82 rc = 1;
83 d_instantiate(tmp_dentry, *ptmp_inode);
84 }
85 } else {
86 tmp_dentry = d_alloc(file->f_dentry, qstring);
87 if(tmp_dentry == NULL) {
88 cERROR(1,("Failed allocating dentry"));
89 *ptmp_inode = NULL;
90 return rc;
91 }
92
93 *ptmp_inode = new_inode(file->f_dentry->d_sb);
94 tmp_dentry->d_op = &cifs_dentry_ops;
95 if(*ptmp_inode == NULL)
96 return rc;
97 rc = 1;
98 d_instantiate(tmp_dentry, *ptmp_inode);
99 d_rehash(tmp_dentry);
100 }
101
102 tmp_dentry->d_time = jiffies;
103 *pnew_dentry = tmp_dentry;
104 return rc;
105}
106
107static void fill_in_inode(struct inode *tmp_inode,
108 FILE_DIRECTORY_INFO *pfindData, int *pobject_type)
109{
110 struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode);
111 struct cifs_sb_info *cifs_sb = CIFS_SB(tmp_inode->i_sb);
112 __u32 attr = le32_to_cpu(pfindData->ExtFileAttributes);
113 __u64 allocation_size = le64_to_cpu(pfindData->AllocationSize);
114 __u64 end_of_file = le64_to_cpu(pfindData->EndOfFile);
115
116 cifsInfo->cifsAttrs = attr;
117 cifsInfo->time = jiffies;
118
119 /* Linux can not store file creation time unfortunately so ignore it */
120 tmp_inode->i_atime =
121 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastAccessTime));
122 tmp_inode->i_mtime =
123 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastWriteTime));
124 tmp_inode->i_ctime =
125 cifs_NTtimeToUnix(le64_to_cpu(pfindData->ChangeTime));
126 /* treat dos attribute of read-only as read-only mode bit e.g. 555? */
127 /* 2767 perms - indicate mandatory locking */
128 /* BB fill in uid and gid here? with help from winbind?
129 or retrieve from NTFS stream extended attribute */
130 if (atomic_read(&cifsInfo->inUse) == 0) {
131 tmp_inode->i_uid = cifs_sb->mnt_uid;
132 tmp_inode->i_gid = cifs_sb->mnt_gid;
133 /* set default mode. will override for dirs below */
134 tmp_inode->i_mode = cifs_sb->mnt_file_mode;
135 }
136
137 cFYI(0,("CIFS FFIRST: Attributes came in as 0x%x",attr));
138 if (attr & ATTR_DIRECTORY) {
139 *pobject_type = DT_DIR;
140 /* override default perms since we do not lock dirs */
141 if(atomic_read(&cifsInfo->inUse) == 0) {
142 tmp_inode->i_mode = cifs_sb->mnt_dir_mode;
143 }
144 tmp_inode->i_mode |= S_IFDIR;
145/* we no longer mark these because we could not follow them */
146/* } else if (attr & ATTR_REPARSE) {
147 *pobject_type = DT_LNK;
148 tmp_inode->i_mode |= S_IFLNK; */
149 } else {
150 *pobject_type = DT_REG;
151 tmp_inode->i_mode |= S_IFREG;
152 if (attr & ATTR_READONLY)
153 tmp_inode->i_mode &= ~(S_IWUGO);
154 } /* could add code here - to validate if device or weird share type? */
155
156 /* can not fill in nlink here as in qpathinfo version and Unx search */
157 if (atomic_read(&cifsInfo->inUse) == 0) {
158 atomic_set(&cifsInfo->inUse, 1);
159 }
160
161 if (is_size_safe_to_change(cifsInfo)) {
162 /* can not safely change the file size here if the
163 client is writing to it due to potential races */
164 i_size_write(tmp_inode, end_of_file);
165
166 /* 512 bytes (2**9) is the fake blocksize that must be used */
167 /* for this calculation, even though the reported blocksize is larger */
168 tmp_inode->i_blocks = (512 - 1 + allocation_size) >> 9;
169 }
170
171 if (allocation_size < end_of_file)
172 cFYI(1, ("May be sparse file, allocation less than file size"));
173 cFYI(1,
174 ("File Size %ld and blocks %ld and blocksize %ld",
175 (unsigned long)tmp_inode->i_size, tmp_inode->i_blocks,
176 tmp_inode->i_blksize));
177 if (S_ISREG(tmp_inode->i_mode)) {
178 cFYI(1, (" File inode "));
179 tmp_inode->i_op = &cifs_file_inode_ops;
180 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO)
181 tmp_inode->i_fop = &cifs_file_direct_ops;
182 else
183 tmp_inode->i_fop = &cifs_file_ops;
184 tmp_inode->i_data.a_ops = &cifs_addr_ops;
185 } else if (S_ISDIR(tmp_inode->i_mode)) {
186 cFYI(1, (" Directory inode"));
187 tmp_inode->i_op = &cifs_dir_inode_ops;
188 tmp_inode->i_fop = &cifs_dir_ops;
189 } else if (S_ISLNK(tmp_inode->i_mode)) {
190 cFYI(1, (" Symbolic Link inode "));
191 tmp_inode->i_op = &cifs_symlink_inode_ops;
192 } else {
193 cFYI(1, (" Init special inode "));
194 init_special_inode(tmp_inode, tmp_inode->i_mode,
195 tmp_inode->i_rdev);
196 }
197}
198
199static void unix_fill_in_inode(struct inode *tmp_inode,
200 FILE_UNIX_INFO *pfindData, int *pobject_type)
201{
202 struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode);
203 struct cifs_sb_info *cifs_sb = CIFS_SB(tmp_inode->i_sb);
204
205 __u32 type = le32_to_cpu(pfindData->Type);
206 __u64 num_of_bytes = le64_to_cpu(pfindData->NumOfBytes);
207 __u64 end_of_file = le64_to_cpu(pfindData->EndOfFile);
208 cifsInfo->time = jiffies;
209 atomic_inc(&cifsInfo->inUse);
210
211 tmp_inode->i_atime =
212 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastAccessTime));
213 tmp_inode->i_mtime =
214 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastModificationTime));
215 tmp_inode->i_ctime =
216 cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastStatusChange));
217
218 tmp_inode->i_mode = le64_to_cpu(pfindData->Permissions);
219 if (type == UNIX_FILE) {
220 *pobject_type = DT_REG;
221 tmp_inode->i_mode |= S_IFREG;
222 } else if (type == UNIX_SYMLINK) {
223 *pobject_type = DT_LNK;
224 tmp_inode->i_mode |= S_IFLNK;
225 } else if (type == UNIX_DIR) {
226 *pobject_type = DT_DIR;
227 tmp_inode->i_mode |= S_IFDIR;
228 } else if (type == UNIX_CHARDEV) {
229 *pobject_type = DT_CHR;
230 tmp_inode->i_mode |= S_IFCHR;
231 tmp_inode->i_rdev = MKDEV(le64_to_cpu(pfindData->DevMajor),
232 le64_to_cpu(pfindData->DevMinor) & MINORMASK);
233 } else if (type == UNIX_BLOCKDEV) {
234 *pobject_type = DT_BLK;
235 tmp_inode->i_mode |= S_IFBLK;
236 tmp_inode->i_rdev = MKDEV(le64_to_cpu(pfindData->DevMajor),
237 le64_to_cpu(pfindData->DevMinor) & MINORMASK);
238 } else if (type == UNIX_FIFO) {
239 *pobject_type = DT_FIFO;
240 tmp_inode->i_mode |= S_IFIFO;
241 } else if (type == UNIX_SOCKET) {
242 *pobject_type = DT_SOCK;
243 tmp_inode->i_mode |= S_IFSOCK;
244 }
245
246 tmp_inode->i_uid = le64_to_cpu(pfindData->Uid);
247 tmp_inode->i_gid = le64_to_cpu(pfindData->Gid);
248 tmp_inode->i_nlink = le64_to_cpu(pfindData->Nlinks);
249
250 if (is_size_safe_to_change(cifsInfo)) {
251 /* can not safely change the file size here if the
252 client is writing to it due to potential races */
253 i_size_write(tmp_inode,end_of_file);
254
255 /* 512 bytes (2**9) is the fake blocksize that must be used */
256 /* for this calculation, not the real blocksize */
257 tmp_inode->i_blocks = (512 - 1 + num_of_bytes) >> 9;
258 }
259
260 if (S_ISREG(tmp_inode->i_mode)) {
261 cFYI(1, ("File inode"));
262 tmp_inode->i_op = &cifs_file_inode_ops;
263 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO)
264 tmp_inode->i_fop = &cifs_file_direct_ops;
265 else
266 tmp_inode->i_fop = &cifs_file_ops;
267 tmp_inode->i_data.a_ops = &cifs_addr_ops;
268 } else if (S_ISDIR(tmp_inode->i_mode)) {
269 cFYI(1, ("Directory inode"));
270 tmp_inode->i_op = &cifs_dir_inode_ops;
271 tmp_inode->i_fop = &cifs_dir_ops;
272 } else if (S_ISLNK(tmp_inode->i_mode)) {
273 cFYI(1, ("Symbolic Link inode"));
274 tmp_inode->i_op = &cifs_symlink_inode_ops;
275/* tmp_inode->i_fop = *//* do not need to set to anything */
276 } else {
277 cFYI(1, ("Special inode"));
278 init_special_inode(tmp_inode, tmp_inode->i_mode,
279 tmp_inode->i_rdev);
280 }
281}
282
283static int initiate_cifs_search(const int xid, struct file *file)
284{
285 int rc = 0;
286 char * full_path;
287 struct cifsFileInfo * cifsFile;
288 struct cifs_sb_info *cifs_sb;
289 struct cifsTconInfo *pTcon;
290
291 if(file->private_data == NULL) {
292 file->private_data =
293 kmalloc(sizeof(struct cifsFileInfo),GFP_KERNEL);
294 }
295
296 if(file->private_data == NULL) {
297 return -ENOMEM;
298 } else {
299 memset(file->private_data,0,sizeof(struct cifsFileInfo));
300 }
301 cifsFile = file->private_data;
302 cifsFile->invalidHandle = TRUE;
303 cifsFile->srch_inf.endOfSearch = FALSE;
304
305 if(file->f_dentry == NULL)
306 return -ENOENT;
307
308 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
309 if(cifs_sb == NULL)
310 return -EINVAL;
311
312 pTcon = cifs_sb->tcon;
313 if(pTcon == NULL)
314 return -EINVAL;
315
316 down(&file->f_dentry->d_sb->s_vfs_rename_sem);
317 full_path = build_wildcard_path_from_dentry(file->f_dentry);
318 up(&file->f_dentry->d_sb->s_vfs_rename_sem);
319
320 if(full_path == NULL) {
321 return -ENOMEM;
322 }
323
324 cFYI(1, ("Full path: %s start at: %lld ", full_path, file->f_pos));
325
Steve French75cf6bd2005-04-28 22:41:04 -0700326ffirst_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /* test for Unix extensions */
328 if (pTcon->ses->capabilities & CAP_UNIX) {
329 cifsFile->srch_inf.info_level = SMB_FIND_FILE_UNIX;
330 } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
331 cifsFile->srch_inf.info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO;
332 } else /* not srvinos - BB fixme add check for backlevel? */ {
333 cifsFile->srch_inf.info_level = SMB_FIND_FILE_DIRECTORY_INFO;
334 }
335
336 rc = CIFSFindFirst(xid, pTcon,full_path,cifs_sb->local_nls,
337 &cifsFile->netfid, &cifsFile->srch_inf);
338 if(rc == 0)
339 cifsFile->invalidHandle = FALSE;
Steve French75cf6bd2005-04-28 22:41:04 -0700340 if((rc == -EOPNOTSUPP) &&
341 (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
342 cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
343 goto ffirst_retry;
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 kfree(full_path);
346 return rc;
347}
348
349/* return length of unicode string in bytes */
350static int cifs_unicode_bytelen(char *str)
351{
352 int len;
353 __le16 * ustr = (__le16 *)str;
354
355 for(len=0;len <= PATH_MAX;len++) {
356 if(ustr[len] == 0)
357 return len << 1;
358 }
359 cFYI(1,("Unicode string longer than PATH_MAX found"));
360 return len << 1;
361}
362
363static char *nxt_dir_entry(char *old_entry, char *end_of_smb)
364{
365 char * new_entry;
366 FILE_DIRECTORY_INFO * pDirInfo = (FILE_DIRECTORY_INFO *)old_entry;
367
368 new_entry = old_entry + le32_to_cpu(pDirInfo->NextEntryOffset);
369 cFYI(1,("new entry %p old entry %p",new_entry,old_entry));
370 /* validate that new_entry is not past end of SMB */
371 if(new_entry >= end_of_smb) {
372 cFYI(1,("search entry %p began after end of SMB %p old entry %p",
373 new_entry,end_of_smb,old_entry));
374 return NULL;
375 } else
376 return new_entry;
377
378}
379
380#define UNICODE_DOT cpu_to_le16(0x2e)
381
382/* return 0 if no match and 1 for . (current directory) and 2 for .. (parent) */
383static int cifs_entry_is_dot(char *current_entry, struct cifsFileInfo *cfile)
384{
385 int rc = 0;
386 char * filename = NULL;
387 int len = 0;
388
389 if(cfile->srch_inf.info_level == 0x202) {
390 FILE_UNIX_INFO * pFindData = (FILE_UNIX_INFO *)current_entry;
391 filename = &pFindData->FileName[0];
392 if(cfile->srch_inf.unicode) {
393 len = cifs_unicode_bytelen(filename);
394 } else {
395 /* BB should we make this strnlen of PATH_MAX? */
396 len = strnlen(filename, 5);
397 }
398 } else if(cfile->srch_inf.info_level == 0x101) {
399 FILE_DIRECTORY_INFO * pFindData =
400 (FILE_DIRECTORY_INFO *)current_entry;
401 filename = &pFindData->FileName[0];
402 len = le32_to_cpu(pFindData->FileNameLength);
403 } else if(cfile->srch_inf.info_level == 0x102) {
404 FILE_FULL_DIRECTORY_INFO * pFindData =
405 (FILE_FULL_DIRECTORY_INFO *)current_entry;
406 filename = &pFindData->FileName[0];
407 len = le32_to_cpu(pFindData->FileNameLength);
408 } else if(cfile->srch_inf.info_level == 0x105) {
409 SEARCH_ID_FULL_DIR_INFO * pFindData =
410 (SEARCH_ID_FULL_DIR_INFO *)current_entry;
411 filename = &pFindData->FileName[0];
412 len = le32_to_cpu(pFindData->FileNameLength);
413 } else if(cfile->srch_inf.info_level == 0x104) {
414 FILE_BOTH_DIRECTORY_INFO * pFindData =
415 (FILE_BOTH_DIRECTORY_INFO *)current_entry;
416 filename = &pFindData->FileName[0];
417 len = le32_to_cpu(pFindData->FileNameLength);
418 } else {
419 cFYI(1,("Unknown findfirst level %d",cfile->srch_inf.info_level));
420 }
421
422 if(filename) {
423 if(cfile->srch_inf.unicode) {
424 __le16 *ufilename = (__le16 *)filename;
425 if(len == 2) {
426 /* check for . */
427 if(ufilename[0] == UNICODE_DOT)
428 rc = 1;
429 } else if(len == 4) {
430 /* check for .. */
431 if((ufilename[0] == UNICODE_DOT)
432 &&(ufilename[1] == UNICODE_DOT))
433 rc = 2;
434 }
435 } else /* ASCII */ {
436 if(len == 1) {
437 if(filename[0] == '.')
438 rc = 1;
439 } else if(len == 2) {
440 if((filename[0] == '.') && (filename[1] == '.'))
441 rc = 2;
442 }
443 }
444 }
445
446 return rc;
447}
448
449/* find the corresponding entry in the search */
450/* Note that the SMB server returns search entries for . and .. which
451 complicates logic here if we choose to parse for them and we do not
452 assume that they are located in the findfirst return buffer.*/
453/* We start counting in the buffer with entry 2 and increment for every
454 entry (do not increment for . or .. entry) */
455static int find_cifs_entry(const int xid, struct cifsTconInfo *pTcon,
456 struct file *file, char **ppCurrentEntry, int *num_to_ret)
457{
458 int rc = 0;
459 int pos_in_buf = 0;
460 loff_t first_entry_in_buffer;
461 loff_t index_to_find = file->f_pos;
462 struct cifsFileInfo * cifsFile = file->private_data;
463 /* check if index in the buffer */
464
465 if((cifsFile == NULL) || (ppCurrentEntry == NULL) || (num_to_ret == NULL))
466 return -ENOENT;
467
468 *ppCurrentEntry = NULL;
469 first_entry_in_buffer =
470 cifsFile->srch_inf.index_of_last_entry -
471 cifsFile->srch_inf.entries_in_buffer;
472/* dump_cifs_file_struct(file, "In fce ");*/
473 if(index_to_find < first_entry_in_buffer) {
474 /* close and restart search */
475 cFYI(1,("search backing up - close and restart search"));
476 cifsFile->invalidHandle = TRUE;
477 CIFSFindClose(xid, pTcon, cifsFile->netfid);
478 kfree(cifsFile->search_resume_name);
479 cifsFile->search_resume_name = NULL;
480 if(cifsFile->srch_inf.ntwrk_buf_start) {
481 cFYI(1,("freeing SMB ff cache buf on search rewind"));
482 cifs_buf_release(cifsFile->srch_inf.ntwrk_buf_start);
483 }
484 rc = initiate_cifs_search(xid,file);
485 if(rc) {
486 cFYI(1,("error %d reinitiating a search on rewind",rc));
487 return rc;
488 }
489 }
490
491 while((index_to_find >= cifsFile->srch_inf.index_of_last_entry) &&
492 (rc == 0) && (cifsFile->srch_inf.endOfSearch == FALSE)){
493 cFYI(1,("calling findnext2"));
494 rc = CIFSFindNext(xid,pTcon,cifsFile->netfid, &cifsFile->srch_inf);
495 if(rc)
496 return -ENOENT;
497 }
498 if(index_to_find < cifsFile->srch_inf.index_of_last_entry) {
499 /* we found the buffer that contains the entry */
500 /* scan and find it */
501 int i;
502 char * current_entry;
503 char * end_of_smb = cifsFile->srch_inf.ntwrk_buf_start +
504 smbCalcSize((struct smb_hdr *)
505 cifsFile->srch_inf.ntwrk_buf_start);
506/* dump_cifs_file_struct(file,"found entry in fce "); */
507 first_entry_in_buffer = cifsFile->srch_inf.index_of_last_entry
508 - cifsFile->srch_inf.entries_in_buffer;
509 pos_in_buf = index_to_find - first_entry_in_buffer;
510 cFYI(1,("found entry - pos_in_buf %d",pos_in_buf));
511 current_entry = cifsFile->srch_inf.srch_entries_start;
512 for(i=0;(i<(pos_in_buf)) && (current_entry != NULL);i++) {
513 /* go entry to next entry figuring out which we need to start with */
514 /* if( . or ..)
515 skip */
516 rc = cifs_entry_is_dot(current_entry,cifsFile);
517 if(rc == 1) /* is . or .. so skip */ {
518 cFYI(1,("Entry is .")); /* BB removeme BB */
519 /* continue; */
520 } else if (rc == 2 ) {
521 cFYI(1,("Entry is ..")); /* BB removeme BB */
522 /* continue; */
523 }
524 current_entry = nxt_dir_entry(current_entry,end_of_smb);
525 }
526 if((current_entry == NULL) && (i < pos_in_buf)) {
527 /* BB fixme - check if we should flag this error */
528 cERROR(1,("reached end of buf searching for pos in buf"
529 " %d index to find %lld rc %d",
530 pos_in_buf,index_to_find,rc));
531 }
532 rc = 0;
533 *ppCurrentEntry = current_entry;
534 } else {
535 cFYI(1,("index not in buffer - could not findnext into it"));
536 return 0;
537 }
538
539 if(pos_in_buf >= cifsFile->srch_inf.entries_in_buffer) {
540 cFYI(1,("can not return entries when pos_in_buf beyond last entry"));
541 *num_to_ret = 0;
542 } else
543 *num_to_ret = cifsFile->srch_inf.entries_in_buffer - pos_in_buf;
544/* dump_cifs_file_struct(file, "end fce ");*/
545
546 return rc;
547}
548
549/* inode num, inode type and filename returned */
550static int cifs_get_name_from_search_buf(struct qstr *pqst,
551 char *current_entry, __u16 level, unsigned int unicode,
552 struct cifs_sb_info * cifs_sb, ino_t *pinum)
553{
554 int rc = 0;
555 unsigned int len = 0;
556 char * filename;
557 struct nls_table * nlt = cifs_sb->local_nls;
558
559 *pinum = 0;
560
561 if(level == SMB_FIND_FILE_UNIX) {
562 FILE_UNIX_INFO * pFindData = (FILE_UNIX_INFO *)current_entry;
563
564 filename = &pFindData->FileName[0];
565 if(unicode) {
566 len = cifs_unicode_bytelen(filename);
567 } else {
568 /* BB should we make this strnlen of PATH_MAX? */
569 len = strnlen(filename, PATH_MAX);
570 }
571
572 /* BB fixme - hash low and high 32 bits if not 64 bit arch BB fixme */
573 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
574 *pinum = pFindData->UniqueId;
575 } else if(level == SMB_FIND_FILE_DIRECTORY_INFO) {
576 FILE_DIRECTORY_INFO * pFindData =
577 (FILE_DIRECTORY_INFO *)current_entry;
578 filename = &pFindData->FileName[0];
579 len = le32_to_cpu(pFindData->FileNameLength);
580 } else if(level == SMB_FIND_FILE_FULL_DIRECTORY_INFO) {
581 FILE_FULL_DIRECTORY_INFO * pFindData =
582 (FILE_FULL_DIRECTORY_INFO *)current_entry;
583 filename = &pFindData->FileName[0];
584 len = le32_to_cpu(pFindData->FileNameLength);
585 } else if(level == SMB_FIND_FILE_ID_FULL_DIR_INFO) {
586 SEARCH_ID_FULL_DIR_INFO * pFindData =
587 (SEARCH_ID_FULL_DIR_INFO *)current_entry;
588 filename = &pFindData->FileName[0];
589 len = le32_to_cpu(pFindData->FileNameLength);
590 *pinum = pFindData->UniqueId;
591 } else if(level == SMB_FIND_FILE_BOTH_DIRECTORY_INFO) {
592 FILE_BOTH_DIRECTORY_INFO * pFindData =
593 (FILE_BOTH_DIRECTORY_INFO *)current_entry;
594 filename = &pFindData->FileName[0];
595 len = le32_to_cpu(pFindData->FileNameLength);
596 } else {
597 cFYI(1,("Unknown findfirst level %d",level));
598 return -EINVAL;
599 }
600 if(unicode) {
601 /* BB fixme - test with long names */
602 /* Note converted filename can be longer than in unicode */
603 pqst->len = cifs_strfromUCS_le((char *)pqst->name,(wchar_t *)filename,len/2,nlt);
604 } else {
605 pqst->name = filename;
606 pqst->len = len;
607 }
608 pqst->hash = full_name_hash(pqst->name,pqst->len);
609/* cFYI(1,("filldir on %s",pqst->name)); */
610 return rc;
611}
612
613static int cifs_filldir(char *pfindEntry, struct file *file,
614 filldir_t filldir, void *direntry, char *scratch_buf)
615{
616 int rc = 0;
617 struct qstr qstring;
618 struct cifsFileInfo * pCifsF;
619 unsigned obj_type;
620 ino_t inum;
621 struct cifs_sb_info * cifs_sb;
622 struct inode *tmp_inode;
623 struct dentry *tmp_dentry;
624
625 /* get filename and len into qstring */
626 /* get dentry */
627 /* decide whether to create and populate ionde */
628 if((direntry == NULL) || (file == NULL))
629 return -EINVAL;
630
631 pCifsF = file->private_data;
632
633 if((scratch_buf == NULL) || (pfindEntry == NULL) || (pCifsF == NULL))
634 return -ENOENT;
635
636 if(file->f_dentry == NULL)
637 return -ENOENT;
638
639 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
640
641 qstring.name = scratch_buf;
642 rc = cifs_get_name_from_search_buf(&qstring,pfindEntry,
643 pCifsF->srch_inf.info_level,
644 pCifsF->srch_inf.unicode,cifs_sb,
645 &inum /* returned */);
646
647 if(rc)
648 return rc;
649
650 rc = construct_dentry(&qstring,file,&tmp_inode, &tmp_dentry);
651 if((tmp_inode == NULL) || (tmp_dentry == NULL))
652 return -ENOMEM;
653
654 if(rc) {
655 /* inode created, we need to hash it with right inode number */
656 if(inum != 0) {
657 /* BB fixme - hash the 2 32 quantities bits together if necessary BB */
658 tmp_inode->i_ino = inum;
659 }
660 insert_inode_hash(tmp_inode);
661 }
662
663 if(pCifsF->srch_inf.info_level == SMB_FIND_FILE_UNIX) {
664 unix_fill_in_inode(tmp_inode,(FILE_UNIX_INFO *)pfindEntry,&obj_type);
665 } else {
666 fill_in_inode(tmp_inode,(FILE_DIRECTORY_INFO *)pfindEntry,&obj_type);
667 }
668
669 rc = filldir(direntry,qstring.name,qstring.len,file->f_pos,tmp_inode->i_ino,obj_type);
670 if(rc) {
671 cFYI(1,("filldir rc = %d",rc));
672 }
673
674 dput(tmp_dentry);
675 return rc;
676}
677
678static int cifs_save_resume_key(const char *current_entry,
679 struct cifsFileInfo *cifsFile)
680{
681 int rc = 0;
682 unsigned int len = 0;
683 __u16 level;
684 char * filename;
685
686 if((cifsFile == NULL) || (current_entry == NULL))
687 return -EINVAL;
688
689 level = cifsFile->srch_inf.info_level;
690
691 if(level == SMB_FIND_FILE_UNIX) {
692 FILE_UNIX_INFO * pFindData = (FILE_UNIX_INFO *)current_entry;
693
694 filename = &pFindData->FileName[0];
695 if(cifsFile->srch_inf.unicode) {
696 len = cifs_unicode_bytelen(filename);
697 } else {
698 /* BB should we make this strnlen of PATH_MAX? */
699 len = strnlen(filename, PATH_MAX);
700 }
701 cifsFile->srch_inf.resume_key = pFindData->ResumeKey;
702 } else if(level == SMB_FIND_FILE_DIRECTORY_INFO) {
703 FILE_DIRECTORY_INFO * pFindData =
704 (FILE_DIRECTORY_INFO *)current_entry;
705 filename = &pFindData->FileName[0];
706 len = le32_to_cpu(pFindData->FileNameLength);
707 cifsFile->srch_inf.resume_key = pFindData->FileIndex;
708 } else if(level == SMB_FIND_FILE_FULL_DIRECTORY_INFO) {
709 FILE_FULL_DIRECTORY_INFO * pFindData =
710 (FILE_FULL_DIRECTORY_INFO *)current_entry;
711 filename = &pFindData->FileName[0];
712 len = le32_to_cpu(pFindData->FileNameLength);
713 cifsFile->srch_inf.resume_key = pFindData->FileIndex;
714 } else if(level == SMB_FIND_FILE_ID_FULL_DIR_INFO) {
715 SEARCH_ID_FULL_DIR_INFO * pFindData =
716 (SEARCH_ID_FULL_DIR_INFO *)current_entry;
717 filename = &pFindData->FileName[0];
718 len = le32_to_cpu(pFindData->FileNameLength);
719 cifsFile->srch_inf.resume_key = pFindData->FileIndex;
720 } else if(level == SMB_FIND_FILE_BOTH_DIRECTORY_INFO) {
721 FILE_BOTH_DIRECTORY_INFO * pFindData =
722 (FILE_BOTH_DIRECTORY_INFO *)current_entry;
723 filename = &pFindData->FileName[0];
724 len = le32_to_cpu(pFindData->FileNameLength);
725 cifsFile->srch_inf.resume_key = pFindData->FileIndex;
726 } else {
727 cFYI(1,("Unknown findfirst level %d",level));
728 return -EINVAL;
729 }
730 cifsFile->srch_inf.resume_name_len = len;
731 cifsFile->srch_inf.presume_name = filename;
732 return rc;
733}
734
735int cifs_readdir(struct file *file, void *direntry, filldir_t filldir)
736{
737 int rc = 0;
738 int xid,i;
739 struct cifs_sb_info *cifs_sb;
740 struct cifsTconInfo *pTcon;
741 struct cifsFileInfo *cifsFile = NULL;
742 char * current_entry;
743 int num_to_fill = 0;
744 char * tmp_buf = NULL;
745 char * end_of_smb;
746
747 xid = GetXid();
748
749 if(file->f_dentry == NULL) {
750 FreeXid(xid);
751 return -EIO;
752 }
753/* dump_cifs_file_struct(file, "Begin rdir "); */
754
755 cifs_sb = CIFS_SB(file->f_dentry->d_sb);
756 pTcon = cifs_sb->tcon;
757 if(pTcon == NULL)
758 return -EINVAL;
759
760/* cFYI(1,("readdir2 pos: %lld",file->f_pos)); */
761
762 switch ((int) file->f_pos) {
763 case 0:
764 /*if (filldir(direntry, ".", 1, file->f_pos,
765 file->f_dentry->d_inode->i_ino, DT_DIR) < 0) {
766 cERROR(1, ("Filldir for current dir failed "));
767 rc = -ENOMEM;
768 break;
769 }
770 file->f_pos++; */
771 case 1:
772 /* if (filldir(direntry, "..", 2, file->f_pos,
773 file->f_dentry->d_parent->d_inode->i_ino, DT_DIR) < 0) {
774 cERROR(1, ("Filldir for parent dir failed "));
775 rc = -ENOMEM;
776 break;
777 }
778 file->f_pos++; */
779 case 2:
780 /* 1) If search is active,
781 is in current search buffer?
782 if it before then restart search
783 if after then keep searching till find it */
784
785 if(file->private_data == NULL) {
786 rc = initiate_cifs_search(xid,file);
787 cFYI(1,("initiate cifs search rc %d",rc));
788 if(rc) {
789 FreeXid(xid);
790 return rc;
791 }
792 }
793 default:
794 if(file->private_data == NULL) {
795 rc = -EINVAL;
796 FreeXid(xid);
797 return rc;
798 }
799 cifsFile = file->private_data;
800 if (cifsFile->srch_inf.endOfSearch) {
801 if(cifsFile->srch_inf.emptyDir) {
802 cFYI(1, ("End of search, empty dir"));
803 rc = 0;
804 break;
805 }
806 } /* else {
807 cifsFile->invalidHandle = TRUE;
808 CIFSFindClose(xid, pTcon, cifsFile->netfid);
809 }
810 kfree(cifsFile->search_resume_name);
811 cifsFile->search_resume_name = NULL; */
812
813 /* BB account for . and .. in f_pos as special case */
814 /* dump_cifs_file_struct(file, "rdir after default ");*/
815
816 rc = find_cifs_entry(xid,pTcon, file,
817 &current_entry,&num_to_fill);
818 if(rc) {
819 cFYI(1,("fce error %d",rc));
820 goto rddir2_exit;
821 } else if (current_entry != NULL) {
822 cFYI(1,("entry %lld found",file->f_pos));
823 } else {
824 cFYI(1,("could not find entry"));
825 goto rddir2_exit;
826 }
827 cFYI(1,("loop through %d times filling dir for net buf %p",
828 num_to_fill,cifsFile->srch_inf.ntwrk_buf_start));
829 end_of_smb = cifsFile->srch_inf.ntwrk_buf_start +
830 smbCalcSize((struct smb_hdr *)
831 cifsFile->srch_inf.ntwrk_buf_start);
832 tmp_buf = kmalloc(NAME_MAX+1,GFP_KERNEL);
833 for(i=0;(i<num_to_fill) && (rc == 0);i++) {
834 if(current_entry == NULL) {
835 /* evaluate whether this case is an error */
836 cERROR(1,("past end of SMB num to fill %d i %d",
837 num_to_fill, i));
838 break;
839 }
840
841 /* BB FIXME - need to enable the below code BB */
842
843 /* if((!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) ||
844 (cifsFile->srch_inf.info_level !=
845 something that supports server inodes)) {
846 create dentry
847 create inode
848 fill in inode new_inode (getting local i_ino)
849 }
850 also create local inode for performance reasons (so we
851 have a cache of inode metadata) unless this new mount
852 parm says otherwise */
853
854 rc = cifs_filldir(current_entry, file,
855 filldir, direntry,tmp_buf);
856 file->f_pos++;
857 if(file->f_pos == cifsFile->srch_inf.index_of_last_entry) {
858 cFYI(1,("last entry in buf at pos %lld %s",
859 file->f_pos,tmp_buf)); /* BB removeme BB */
860 cifs_save_resume_key(current_entry,cifsFile);
861 break;
862 } else
863 current_entry = nxt_dir_entry(current_entry,end_of_smb);
864 }
865 kfree(tmp_buf);
866 break;
867 } /* end switch */
868
869rddir2_exit:
870 /* dump_cifs_file_struct(file, "end rdir "); */
871 FreeXid(xid);
872 return rc;
873}