[PATCH] cifs: Add new mount parm mapchars
[safe/jmp/linux-2.6] / fs / cifs / readdir.c
1 /*
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 */
60 static 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
107 static 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
199 static 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
283 static 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
326 ffirst_retry:
327         /* 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;
340         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         }
345         kfree(full_path);
346         return rc;
347 }
348
349 /* return length of unicode string in bytes */
350 static 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
363 static 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) */
383 static 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) */
455 static 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 */
550 static 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 #ifdef CONFIG_CIFS_EXPERIMENTAL
604                 if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
605                         pqst->len = cifs_convertUCSpath((char *)pqst->name,
606                                         (__le16 *)filename, len/2, nlt);
607                 else
608 #endif /* CIFS_EXPERIMENTAL */
609                         pqst->len = cifs_strfromUCS_le((char *)pqst->name,
610                                         (wchar_t *)filename,len/2,nlt);
611         } else {
612                 pqst->name = filename;
613                 pqst->len = len;
614         }
615         pqst->hash = full_name_hash(pqst->name,pqst->len);
616 /*      cFYI(1,("filldir on %s",pqst->name));  */
617         return rc;
618 }
619
620 static int cifs_filldir(char *pfindEntry, struct file *file,
621         filldir_t filldir, void *direntry, char *scratch_buf)
622 {
623         int rc = 0;
624         struct qstr qstring;
625         struct cifsFileInfo * pCifsF;
626         unsigned obj_type;
627         ino_t  inum;
628         struct cifs_sb_info * cifs_sb;
629         struct inode *tmp_inode;
630         struct dentry *tmp_dentry;
631
632         /* get filename and len into qstring */
633         /* get dentry */
634         /* decide whether to create and populate ionde */
635         if((direntry == NULL) || (file == NULL))
636                 return -EINVAL;
637
638         pCifsF = file->private_data;
639         
640         if((scratch_buf == NULL) || (pfindEntry == NULL) || (pCifsF == NULL))
641                 return -ENOENT;
642
643         if(file->f_dentry == NULL)
644                 return -ENOENT;
645
646         cifs_sb = CIFS_SB(file->f_dentry->d_sb);
647
648         qstring.name = scratch_buf;
649         rc = cifs_get_name_from_search_buf(&qstring,pfindEntry,
650                         pCifsF->srch_inf.info_level,
651                         pCifsF->srch_inf.unicode,cifs_sb,
652                         &inum /* returned */);
653
654         if(rc)
655                 return rc;
656
657         rc = construct_dentry(&qstring,file,&tmp_inode, &tmp_dentry);
658         if((tmp_inode == NULL) || (tmp_dentry == NULL))
659                 return -ENOMEM;
660
661         if(rc) {
662                 /* inode created, we need to hash it with right inode number */
663                 if(inum != 0) {
664                         /* BB fixme - hash the 2 32 quantities bits together if necessary BB */
665                         tmp_inode->i_ino = inum;
666                 }
667                 insert_inode_hash(tmp_inode);
668         }
669
670         if(pCifsF->srch_inf.info_level == SMB_FIND_FILE_UNIX) {
671                 unix_fill_in_inode(tmp_inode,(FILE_UNIX_INFO *)pfindEntry,&obj_type);
672         } else {
673                 fill_in_inode(tmp_inode,(FILE_DIRECTORY_INFO *)pfindEntry,&obj_type);
674         }
675         
676         rc = filldir(direntry,qstring.name,qstring.len,file->f_pos,tmp_inode->i_ino,obj_type);
677         if(rc) {
678                 cFYI(1,("filldir rc = %d",rc));
679         }
680
681         dput(tmp_dentry);
682         return rc;
683 }
684
685 static int cifs_save_resume_key(const char *current_entry,
686         struct cifsFileInfo *cifsFile)
687 {
688         int rc = 0;
689         unsigned int len = 0;
690         __u16 level;
691         char * filename;
692
693         if((cifsFile == NULL) || (current_entry == NULL))
694                 return -EINVAL;
695
696         level = cifsFile->srch_inf.info_level;
697
698         if(level == SMB_FIND_FILE_UNIX) {
699                 FILE_UNIX_INFO * pFindData = (FILE_UNIX_INFO *)current_entry;
700
701                 filename = &pFindData->FileName[0];
702                 if(cifsFile->srch_inf.unicode) {
703                         len = cifs_unicode_bytelen(filename);
704                 } else {
705                         /* BB should we make this strnlen of PATH_MAX? */
706                         len = strnlen(filename, PATH_MAX);
707                 }
708                 cifsFile->srch_inf.resume_key = pFindData->ResumeKey;
709         } else if(level == SMB_FIND_FILE_DIRECTORY_INFO) {
710                 FILE_DIRECTORY_INFO * pFindData = 
711                         (FILE_DIRECTORY_INFO *)current_entry;
712                 filename = &pFindData->FileName[0];
713                 len = le32_to_cpu(pFindData->FileNameLength);
714                 cifsFile->srch_inf.resume_key = pFindData->FileIndex;
715         } else if(level == SMB_FIND_FILE_FULL_DIRECTORY_INFO) {
716                 FILE_FULL_DIRECTORY_INFO * pFindData = 
717                         (FILE_FULL_DIRECTORY_INFO *)current_entry;
718                 filename = &pFindData->FileName[0];
719                 len = le32_to_cpu(pFindData->FileNameLength);
720                 cifsFile->srch_inf.resume_key = pFindData->FileIndex;
721         } else if(level == SMB_FIND_FILE_ID_FULL_DIR_INFO) {
722                 SEARCH_ID_FULL_DIR_INFO * pFindData = 
723                         (SEARCH_ID_FULL_DIR_INFO *)current_entry;
724                 filename = &pFindData->FileName[0];
725                 len = le32_to_cpu(pFindData->FileNameLength);
726                 cifsFile->srch_inf.resume_key = pFindData->FileIndex;
727         } else if(level == SMB_FIND_FILE_BOTH_DIRECTORY_INFO) {
728                 FILE_BOTH_DIRECTORY_INFO * pFindData = 
729                         (FILE_BOTH_DIRECTORY_INFO *)current_entry;
730                 filename = &pFindData->FileName[0];
731                 len = le32_to_cpu(pFindData->FileNameLength);
732                 cifsFile->srch_inf.resume_key = pFindData->FileIndex;
733         } else {
734                 cFYI(1,("Unknown findfirst level %d",level));
735                 return -EINVAL;
736         }
737         cifsFile->srch_inf.resume_name_len = len;
738         cifsFile->srch_inf.presume_name = filename;
739         return rc;
740 }
741
742 int cifs_readdir(struct file *file, void *direntry, filldir_t filldir)
743 {
744         int rc = 0;
745         int xid,i;
746         struct cifs_sb_info *cifs_sb;
747         struct cifsTconInfo *pTcon;
748         struct cifsFileInfo *cifsFile = NULL;
749         char * current_entry;
750         int num_to_fill = 0;
751         char * tmp_buf = NULL;
752         char * end_of_smb;
753
754         xid = GetXid();
755
756         if(file->f_dentry == NULL) {
757                 FreeXid(xid);
758                 return -EIO;
759         }
760 /*      dump_cifs_file_struct(file, "Begin rdir "); */
761
762         cifs_sb = CIFS_SB(file->f_dentry->d_sb);
763         pTcon = cifs_sb->tcon;
764         if(pTcon == NULL)
765                 return -EINVAL;
766
767 /*      cFYI(1,("readdir2 pos: %lld",file->f_pos)); */
768
769         switch ((int) file->f_pos) {
770         case 0:
771                 /*if (filldir(direntry, ".", 1, file->f_pos,
772                      file->f_dentry->d_inode->i_ino, DT_DIR) < 0) {
773                         cERROR(1, ("Filldir for current dir failed "));
774                         rc = -ENOMEM;
775                         break;
776                 }
777                 file->f_pos++; */
778         case 1:
779                 /* if (filldir(direntry, "..", 2, file->f_pos,
780                      file->f_dentry->d_parent->d_inode->i_ino, DT_DIR) < 0) {
781                         cERROR(1, ("Filldir for parent dir failed "));
782                         rc = -ENOMEM;
783                         break;
784                 }
785                 file->f_pos++; */
786         case 2:
787                 /* 1) If search is active, 
788                         is in current search buffer? 
789                         if it before then restart search
790                         if after then keep searching till find it */
791
792                 if(file->private_data == NULL) {
793                         rc = initiate_cifs_search(xid,file);
794                         cFYI(1,("initiate cifs search rc %d",rc));
795                         if(rc) {
796                                 FreeXid(xid);
797                                 return rc;
798                         }
799                 }
800         default:
801                 if(file->private_data == NULL) {
802                         rc = -EINVAL;
803                         FreeXid(xid);
804                         return rc;
805                 }
806                 cifsFile = file->private_data;
807                 if (cifsFile->srch_inf.endOfSearch) {
808                         if(cifsFile->srch_inf.emptyDir) {
809                                 cFYI(1, ("End of search, empty dir"));
810                                 rc = 0;
811                                 break;
812                         }
813                 } /* else {
814                         cifsFile->invalidHandle = TRUE;
815                         CIFSFindClose(xid, pTcon, cifsFile->netfid);
816                 } 
817                 kfree(cifsFile->search_resume_name);
818                 cifsFile->search_resume_name = NULL; */
819
820                 /* BB account for . and .. in f_pos as special case */
821                 /* dump_cifs_file_struct(file, "rdir after default ");*/
822
823                 rc = find_cifs_entry(xid,pTcon, file,
824                                 &current_entry,&num_to_fill);
825                 if(rc) {
826                         cFYI(1,("fce error %d",rc)); 
827                         goto rddir2_exit;
828                 } else if (current_entry != NULL) {
829                         cFYI(1,("entry %lld found",file->f_pos));
830                 } else {
831                         cFYI(1,("could not find entry"));
832                         goto rddir2_exit;
833                 }
834                 cFYI(1,("loop through %d times filling dir for net buf %p",
835                         num_to_fill,cifsFile->srch_inf.ntwrk_buf_start)); 
836                 end_of_smb = cifsFile->srch_inf.ntwrk_buf_start +
837                         smbCalcSize((struct smb_hdr *)
838                                     cifsFile->srch_inf.ntwrk_buf_start);
839                 /* To be safe - for UCS to UTF-8 with strings loaded
840                 with the rare long characters alloc more to account for
841                 such multibyte target UTF-8 characters. cifs_unicode.c,
842                 which actually does the conversion, has the same limit */
843                 tmp_buf = kmalloc((2 * NAME_MAX) + 4, GFP_KERNEL);
844                 for(i=0;(i<num_to_fill) && (rc == 0);i++) {
845                         if(current_entry == NULL) {
846                                 /* evaluate whether this case is an error */
847                                 cERROR(1,("past end of SMB num to fill %d i %d",
848                                           num_to_fill, i));
849                                 break;
850                         }
851
852                         /* BB FIXME - need to enable the below code BB */
853
854                 /* if((!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) ||
855                            (cifsFile->srch_inf.info_level != 
856                                    something that supports server inodes)) {
857                                 create dentry
858                                 create inode
859                                 fill in inode new_inode (getting local i_ino)
860                         }
861                         also create local inode for performance reasons (so we 
862                         have a cache of inode metadata) unless this new mount 
863                         parm says otherwise */
864
865                         rc = cifs_filldir(current_entry, file, 
866                                         filldir, direntry,tmp_buf);
867                         file->f_pos++;
868                         if(file->f_pos == cifsFile->srch_inf.index_of_last_entry) {
869                                 cFYI(1,("last entry in buf at pos %lld %s",
870                                         file->f_pos,tmp_buf)); /* BB removeme BB */
871                                 cifs_save_resume_key(current_entry,cifsFile);
872                                 break;
873                         } else 
874                                 current_entry = nxt_dir_entry(current_entry,end_of_smb);
875                 }
876                 kfree(tmp_buf);
877                 break;
878         } /* end switch */
879
880 rddir2_exit:
881         /* dump_cifs_file_struct(file, "end rdir ");  */
882         FreeXid(xid);
883         return rc;
884 }