Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/readdir.c |
| 3 | * |
| 4 | * Directory search handling |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 5 | * |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 6 | * Copyright (C) International Business Machines Corp., 2004, 2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 24 | #include <linux/pagemap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Jeff Layton | f588416 | 2009-04-30 07:18:00 -0400 | [diff] [blame^] | 34 | /* |
| 35 | * To be safe - for UCS to UTF-8 with strings loaded with the rare long |
| 36 | * characters alloc more to account for such multibyte target UTF-8 |
| 37 | * characters. |
| 38 | */ |
| 39 | #define UNICODE_NAME_MAX ((4 * NAME_MAX) + 2) |
| 40 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 41 | #ifdef CONFIG_CIFS_DEBUG2 |
| 42 | static void dump_cifs_file_struct(struct file *file, char *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 44 | struct cifsFileInfo *cf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 46 | if (file) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | cf = file->private_data; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 48 | if (cf == NULL) { |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 49 | cFYI(1, ("empty cifs private file data")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | return; |
| 51 | } |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 52 | if (cf->invalidHandle) |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 53 | cFYI(1, ("invalid handle")); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 54 | if (cf->srch_inf.endOfSearch) |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 55 | cFYI(1, ("end of search")); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 56 | if (cf->srch_inf.emptyDir) |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 57 | cFYI(1, ("empty dir")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 59 | } |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 60 | #else |
| 61 | static inline void dump_cifs_file_struct(struct file *file, char *label) |
| 62 | { |
| 63 | } |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 64 | #endif /* DEBUG2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 66 | /* Returns 1 if new inode created, 2 if both dentry and inode were */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | /* Might check in the future if inode number changed so we can rehash inode */ |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 68 | static int |
| 69 | construct_dentry(struct qstr *qstring, struct file *file, |
| 70 | struct inode **ptmp_inode, struct dentry **pnew_dentry, |
Jeff Layton | 950ec52 | 2009-02-11 08:08:26 -0500 | [diff] [blame] | 71 | __u64 *inum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 73 | struct dentry *tmp_dentry = NULL; |
| 74 | struct super_block *sb = file->f_path.dentry->d_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | int rc = 0; |
| 76 | |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 77 | cFYI(1, ("For %s", qstring->name)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | qstring->hash = full_name_hash(qstring->name, qstring->len); |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 80 | tmp_dentry = d_lookup(file->f_path.dentry, qstring); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | if (tmp_dentry) { |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 82 | /* BB: overwrite old name? i.e. tmp_dentry->d_name and |
| 83 | * tmp_dentry->d_name.len?? |
| 84 | */ |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 85 | cFYI(0, ("existing dentry with inode 0x%p", |
| 86 | tmp_dentry->d_inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | *ptmp_inode = tmp_dentry->d_inode; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 88 | if (*ptmp_inode == NULL) { |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 89 | *ptmp_inode = cifs_new_inode(sb, inum); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 90 | if (*ptmp_inode == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | return rc; |
| 92 | rc = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | } else { |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 95 | tmp_dentry = d_alloc(file->f_path.dentry, qstring); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 96 | if (tmp_dentry == NULL) { |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 97 | cERROR(1, ("Failed allocating dentry")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | *ptmp_inode = NULL; |
| 99 | return rc; |
| 100 | } |
| 101 | |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 102 | if (CIFS_SB(sb)->tcon->nocase) |
Steve French | b92327f | 2005-08-22 20:09:43 -0700 | [diff] [blame] | 103 | tmp_dentry->d_op = &cifs_ci_dentry_ops; |
| 104 | else |
| 105 | tmp_dentry->d_op = &cifs_dentry_ops; |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 106 | |
| 107 | *ptmp_inode = cifs_new_inode(sb, inum); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 108 | if (*ptmp_inode == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | return rc; |
Steve French | b835beb | 2006-09-06 22:02:22 +0000 | [diff] [blame] | 110 | rc = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | tmp_dentry->d_time = jiffies; |
| 114 | *pnew_dentry = tmp_dentry; |
| 115 | return rc; |
| 116 | } |
| 117 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 118 | static void AdjustForTZ(struct cifsTconInfo *tcon, struct inode *inode) |
Steve French | 533f90a | 2006-10-12 00:02:32 +0000 | [diff] [blame] | 119 | { |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 120 | if ((tcon) && (tcon->ses) && (tcon->ses->server)) { |
Steve French | ddae957 | 2006-10-12 01:23:29 +0000 | [diff] [blame] | 121 | inode->i_ctime.tv_sec += tcon->ses->server->timeAdj; |
| 122 | inode->i_mtime.tv_sec += tcon->ses->server->timeAdj; |
| 123 | inode->i_atime.tv_sec += tcon->ses->server->timeAdj; |
Steve French | 533f90a | 2006-10-12 00:02:32 +0000 | [diff] [blame] | 124 | } |
| 125 | return; |
| 126 | } |
| 127 | |
| 128 | |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 129 | static void fill_in_inode(struct inode *tmp_inode, int new_buf_type, |
Steve French | 2c2130e | 2007-10-12 19:10:28 +0000 | [diff] [blame] | 130 | char *buf, unsigned int *pobject_type, int isNewInode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 132 | loff_t local_size; |
| 133 | struct timespec local_mtime; |
| 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode); |
| 136 | struct cifs_sb_info *cifs_sb = CIFS_SB(tmp_inode->i_sb); |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 137 | __u32 attr; |
| 138 | __u64 allocation_size; |
| 139 | __u64 end_of_file; |
Jeff Layton | 4468eb3 | 2008-05-22 09:31:40 -0400 | [diff] [blame] | 140 | umode_t default_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 142 | /* save mtime and size */ |
| 143 | local_mtime = tmp_inode->i_mtime; |
| 144 | local_size = tmp_inode->i_size; |
| 145 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 146 | if (new_buf_type) { |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 147 | FILE_DIRECTORY_INFO *pfindData = (FILE_DIRECTORY_INFO *)buf; |
| 148 | |
| 149 | attr = le32_to_cpu(pfindData->ExtFileAttributes); |
| 150 | allocation_size = le64_to_cpu(pfindData->AllocationSize); |
| 151 | end_of_file = le64_to_cpu(pfindData->EndOfFile); |
| 152 | tmp_inode->i_atime = |
| 153 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastAccessTime)); |
| 154 | tmp_inode->i_mtime = |
| 155 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastWriteTime)); |
| 156 | tmp_inode->i_ctime = |
| 157 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->ChangeTime)); |
| 158 | } else { /* legacy, OS2 and DOS style */ |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 159 | /* struct timespec ts;*/ |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 160 | FIND_FILE_STANDARD_INFO *pfindData = |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 161 | (FIND_FILE_STANDARD_INFO *)buf; |
| 162 | |
Steve French | 268f3be | 2006-10-06 21:47:09 +0000 | [diff] [blame] | 163 | tmp_inode->i_mtime = cnvrtDosUnixTm( |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 164 | le16_to_cpu(pfindData->LastWriteDate), |
Steve French | 268f3be | 2006-10-06 21:47:09 +0000 | [diff] [blame] | 165 | le16_to_cpu(pfindData->LastWriteTime)); |
| 166 | tmp_inode->i_atime = cnvrtDosUnixTm( |
| 167 | le16_to_cpu(pfindData->LastAccessDate), |
| 168 | le16_to_cpu(pfindData->LastAccessTime)); |
Steve French | a850790 | 2007-02-06 20:43:30 +0000 | [diff] [blame] | 169 | tmp_inode->i_ctime = cnvrtDosUnixTm( |
| 170 | le16_to_cpu(pfindData->LastWriteDate), |
| 171 | le16_to_cpu(pfindData->LastWriteTime)); |
Steve French | 533f90a | 2006-10-12 00:02:32 +0000 | [diff] [blame] | 172 | AdjustForTZ(cifs_sb->tcon, tmp_inode); |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 173 | attr = le16_to_cpu(pfindData->Attributes); |
| 174 | allocation_size = le32_to_cpu(pfindData->AllocationSize); |
| 175 | end_of_file = le32_to_cpu(pfindData->DataSize); |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 176 | } |
| 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | /* Linux can not store file creation time unfortunately so ignore it */ |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 179 | |
| 180 | cifsInfo->cifsAttrs = attr; |
Steve French | a6f8de3 | 2007-11-08 23:10:32 +0000 | [diff] [blame] | 181 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 182 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) { |
| 183 | /* get more accurate mode via ACL - so force inode refresh */ |
| 184 | cifsInfo->time = 0; |
| 185 | } else |
| 186 | #endif /* CONFIG_CIFS_EXPERIMENTAL */ |
| 187 | cifsInfo->time = jiffies; |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | /* treat dos attribute of read-only as read-only mode bit e.g. 555? */ |
| 190 | /* 2767 perms - indicate mandatory locking */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 191 | /* BB fill in uid and gid here? with help from winbind? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | or retrieve from NTFS stream extended attribute */ |
| 193 | if (atomic_read(&cifsInfo->inUse) == 0) { |
| 194 | tmp_inode->i_uid = cifs_sb->mnt_uid; |
| 195 | tmp_inode->i_gid = cifs_sb->mnt_gid; |
Jeff Layton | 4468eb3 | 2008-05-22 09:31:40 -0400 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | if (attr & ATTR_DIRECTORY) |
| 199 | default_mode = cifs_sb->mnt_dir_mode; |
| 200 | else |
| 201 | default_mode = cifs_sb->mnt_file_mode; |
| 202 | |
| 203 | /* set initial permissions */ |
| 204 | if ((atomic_read(&cifsInfo->inUse) == 0) || |
| 205 | (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) == 0) |
| 206 | tmp_inode->i_mode = default_mode; |
| 207 | else { |
| 208 | /* just reenable write bits if !ATTR_READONLY */ |
| 209 | if ((tmp_inode->i_mode & S_IWUGO) == 0 && |
| 210 | (attr & ATTR_READONLY) == 0) |
| 211 | tmp_inode->i_mode |= (S_IWUGO & default_mode); |
| 212 | |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 213 | tmp_inode->i_mode &= ~S_IFMT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Jeff Layton | 4468eb3 | 2008-05-22 09:31:40 -0400 | [diff] [blame] | 216 | /* clear write bits if ATTR_READONLY is set */ |
| 217 | if (attr & ATTR_READONLY) |
| 218 | tmp_inode->i_mode &= ~S_IWUGO; |
| 219 | |
| 220 | /* set inode type */ |
| 221 | if ((attr & ATTR_SYSTEM) && |
| 222 | (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)) { |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 223 | if (end_of_file == 0) { |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 224 | tmp_inode->i_mode |= S_IFIFO; |
Jeff Layton | 4468eb3 | 2008-05-22 09:31:40 -0400 | [diff] [blame] | 225 | *pobject_type = DT_FIFO; |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 226 | } else { |
Jeff Layton | 4468eb3 | 2008-05-22 09:31:40 -0400 | [diff] [blame] | 227 | /* |
| 228 | * trying to get the type can be slow, so just call |
| 229 | * this a regular file for now, and mark for reval |
| 230 | */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 231 | tmp_inode->i_mode |= S_IFREG; |
Jeff Layton | 4468eb3 | 2008-05-22 09:31:40 -0400 | [diff] [blame] | 232 | *pobject_type = DT_REG; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 233 | cifsInfo->time = 0; |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 234 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } else { |
Jeff Layton | 4468eb3 | 2008-05-22 09:31:40 -0400 | [diff] [blame] | 236 | if (attr & ATTR_DIRECTORY) { |
| 237 | tmp_inode->i_mode |= S_IFDIR; |
| 238 | *pobject_type = DT_DIR; |
| 239 | } else { |
| 240 | tmp_inode->i_mode |= S_IFREG; |
| 241 | *pobject_type = DT_REG; |
| 242 | } |
| 243 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
| 245 | /* can not fill in nlink here as in qpathinfo version and Unx search */ |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 246 | if (atomic_read(&cifsInfo->inUse) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | atomic_set(&cifsInfo->inUse, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 249 | cifsInfo->server_eof = end_of_file; |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 250 | spin_lock(&tmp_inode->i_lock); |
Steve French | 7ba52631 | 2007-02-08 18:14:13 +0000 | [diff] [blame] | 251 | if (is_size_safe_to_change(cifsInfo, end_of_file)) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 252 | /* can not safely change the file size here if the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | client is writing to it due to potential races */ |
| 254 | i_size_write(tmp_inode, end_of_file); |
| 255 | |
| 256 | /* 512 bytes (2**9) is the fake blocksize that must be used */ |
| 257 | /* for this calculation, even though the reported blocksize is larger */ |
| 258 | tmp_inode->i_blocks = (512 - 1 + allocation_size) >> 9; |
| 259 | } |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 260 | spin_unlock(&tmp_inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
| 262 | if (allocation_size < end_of_file) |
| 263 | cFYI(1, ("May be sparse file, allocation less than file size")); |
Theodore Ts'o | ba52de1 | 2006-09-27 01:50:49 -0700 | [diff] [blame] | 264 | cFYI(1, ("File Size %ld and blocks %llu", |
Andrew Morton | 5515eff | 2006-03-26 01:37:53 -0800 | [diff] [blame] | 265 | (unsigned long)tmp_inode->i_size, |
Theodore Ts'o | ba52de1 | 2006-09-27 01:50:49 -0700 | [diff] [blame] | 266 | (unsigned long long)tmp_inode->i_blocks)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | if (S_ISREG(tmp_inode->i_mode)) { |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 268 | cFYI(1, ("File inode")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | tmp_inode->i_op = &cifs_file_inode_ops; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 270 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
| 271 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 272 | tmp_inode->i_fop = &cifs_file_direct_nobrl_ops; |
| 273 | else |
| 274 | tmp_inode->i_fop = &cifs_file_direct_ops; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 275 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 276 | tmp_inode->i_fop = &cifs_file_nobrl_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | else |
| 278 | tmp_inode->i_fop = &cifs_file_ops; |
Steve French | f3f6ec4 | 2006-01-08 20:12:58 -0800 | [diff] [blame] | 279 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 280 | if ((cifs_sb->tcon) && (cifs_sb->tcon->ses) && |
Steve French | bfa0d75 | 2005-08-31 21:50:37 -0700 | [diff] [blame] | 281 | (cifs_sb->tcon->ses->server->maxBuf < |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 282 | PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)) |
| 283 | tmp_inode->i_data.a_ops = &cifs_addr_ops_smallbuf; |
| 284 | else |
| 285 | tmp_inode->i_data.a_ops = &cifs_addr_ops; |
| 286 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 287 | if (isNewInode) |
Steve French | dfb7533 | 2005-06-22 17:13:47 -0700 | [diff] [blame] | 288 | return; /* No sense invalidating pages for new inode |
| 289 | since have not started caching readahead file |
| 290 | data yet */ |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 291 | |
| 292 | if (timespec_equal(&tmp_inode->i_mtime, &local_mtime) && |
| 293 | (local_size == tmp_inode->i_size)) { |
| 294 | cFYI(1, ("inode exists but unchanged")); |
| 295 | } else { |
| 296 | /* file may have changed on server */ |
| 297 | cFYI(1, ("invalidate inode, readdir detected change")); |
| 298 | invalidate_remote_inode(tmp_inode); |
| 299 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } else if (S_ISDIR(tmp_inode->i_mode)) { |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 301 | cFYI(1, ("Directory inode")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | tmp_inode->i_op = &cifs_dir_inode_ops; |
| 303 | tmp_inode->i_fop = &cifs_dir_ops; |
| 304 | } else if (S_ISLNK(tmp_inode->i_mode)) { |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 305 | cFYI(1, ("Symbolic Link inode")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | tmp_inode->i_op = &cifs_symlink_inode_ops; |
| 307 | } else { |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 308 | cFYI(1, ("Init special inode")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | init_special_inode(tmp_inode, tmp_inode->i_mode, |
| 310 | tmp_inode->i_rdev); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | static void unix_fill_in_inode(struct inode *tmp_inode, |
Steve French | 2c2130e | 2007-10-12 19:10:28 +0000 | [diff] [blame] | 315 | FILE_UNIX_INFO *pfindData, unsigned int *pobject_type, int isNewInode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | { |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 317 | loff_t local_size; |
| 318 | struct timespec local_mtime; |
| 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | struct cifsInodeInfo *cifsInfo = CIFS_I(tmp_inode); |
| 321 | struct cifs_sb_info *cifs_sb = CIFS_SB(tmp_inode->i_sb); |
| 322 | |
| 323 | __u32 type = le32_to_cpu(pfindData->Type); |
| 324 | __u64 num_of_bytes = le64_to_cpu(pfindData->NumOfBytes); |
| 325 | __u64 end_of_file = le64_to_cpu(pfindData->EndOfFile); |
| 326 | cifsInfo->time = jiffies; |
| 327 | atomic_inc(&cifsInfo->inUse); |
| 328 | |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 329 | /* save mtime and size */ |
| 330 | local_mtime = tmp_inode->i_mtime; |
| 331 | local_size = tmp_inode->i_size; |
| 332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | tmp_inode->i_atime = |
| 334 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastAccessTime)); |
| 335 | tmp_inode->i_mtime = |
| 336 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastModificationTime)); |
| 337 | tmp_inode->i_ctime = |
| 338 | cifs_NTtimeToUnix(le64_to_cpu(pfindData->LastStatusChange)); |
| 339 | |
| 340 | tmp_inode->i_mode = le64_to_cpu(pfindData->Permissions); |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 341 | /* since we set the inode type below we need to mask off type |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 342 | to avoid strange results if bits above were corrupt */ |
| 343 | tmp_inode->i_mode &= ~S_IFMT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | if (type == UNIX_FILE) { |
| 345 | *pobject_type = DT_REG; |
| 346 | tmp_inode->i_mode |= S_IFREG; |
| 347 | } else if (type == UNIX_SYMLINK) { |
| 348 | *pobject_type = DT_LNK; |
| 349 | tmp_inode->i_mode |= S_IFLNK; |
| 350 | } else if (type == UNIX_DIR) { |
| 351 | *pobject_type = DT_DIR; |
| 352 | tmp_inode->i_mode |= S_IFDIR; |
| 353 | } else if (type == UNIX_CHARDEV) { |
| 354 | *pobject_type = DT_CHR; |
| 355 | tmp_inode->i_mode |= S_IFCHR; |
| 356 | tmp_inode->i_rdev = MKDEV(le64_to_cpu(pfindData->DevMajor), |
| 357 | le64_to_cpu(pfindData->DevMinor) & MINORMASK); |
| 358 | } else if (type == UNIX_BLOCKDEV) { |
| 359 | *pobject_type = DT_BLK; |
| 360 | tmp_inode->i_mode |= S_IFBLK; |
| 361 | tmp_inode->i_rdev = MKDEV(le64_to_cpu(pfindData->DevMajor), |
| 362 | le64_to_cpu(pfindData->DevMinor) & MINORMASK); |
| 363 | } else if (type == UNIX_FIFO) { |
| 364 | *pobject_type = DT_FIFO; |
| 365 | tmp_inode->i_mode |= S_IFIFO; |
| 366 | } else if (type == UNIX_SOCKET) { |
| 367 | *pobject_type = DT_SOCK; |
| 368 | tmp_inode->i_mode |= S_IFSOCK; |
Steve French | 3020a1f | 2005-11-18 11:31:10 -0800 | [diff] [blame] | 369 | } else { |
| 370 | /* safest to just call it a file */ |
| 371 | *pobject_type = DT_REG; |
| 372 | tmp_inode->i_mode |= S_IFREG; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 373 | cFYI(1, ("unknown inode type %d", type)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 376 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID) |
| 377 | tmp_inode->i_uid = cifs_sb->mnt_uid; |
| 378 | else |
| 379 | tmp_inode->i_uid = le64_to_cpu(pfindData->Uid); |
| 380 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID) |
| 381 | tmp_inode->i_gid = cifs_sb->mnt_gid; |
| 382 | else |
| 383 | tmp_inode->i_gid = le64_to_cpu(pfindData->Gid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | tmp_inode->i_nlink = le64_to_cpu(pfindData->Nlinks); |
| 385 | |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 386 | cifsInfo->server_eof = end_of_file; |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 387 | spin_lock(&tmp_inode->i_lock); |
Steve French | 7ba52631 | 2007-02-08 18:14:13 +0000 | [diff] [blame] | 388 | if (is_size_safe_to_change(cifsInfo, end_of_file)) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 389 | /* can not safely change the file size here if the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | client is writing to it due to potential races */ |
Steve French | 7ba52631 | 2007-02-08 18:14:13 +0000 | [diff] [blame] | 391 | i_size_write(tmp_inode, end_of_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
| 393 | /* 512 bytes (2**9) is the fake blocksize that must be used */ |
| 394 | /* for this calculation, not the real blocksize */ |
| 395 | tmp_inode->i_blocks = (512 - 1 + num_of_bytes) >> 9; |
| 396 | } |
Steve French | 3677db1 | 2007-02-26 16:46:11 +0000 | [diff] [blame] | 397 | spin_unlock(&tmp_inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
| 399 | if (S_ISREG(tmp_inode->i_mode)) { |
| 400 | cFYI(1, ("File inode")); |
| 401 | tmp_inode->i_op = &cifs_file_inode_ops; |
Steve French | f3f6ec4 | 2006-01-08 20:12:58 -0800 | [diff] [blame] | 402 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 403 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) { |
| 404 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
Steve French | f3f6ec4 | 2006-01-08 20:12:58 -0800 | [diff] [blame] | 405 | tmp_inode->i_fop = &cifs_file_direct_nobrl_ops; |
| 406 | else |
| 407 | tmp_inode->i_fop = &cifs_file_direct_ops; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 408 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
Steve French | f3f6ec4 | 2006-01-08 20:12:58 -0800 | [diff] [blame] | 409 | tmp_inode->i_fop = &cifs_file_nobrl_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | else |
| 411 | tmp_inode->i_fop = &cifs_file_ops; |
Steve French | f3f6ec4 | 2006-01-08 20:12:58 -0800 | [diff] [blame] | 412 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 413 | if ((cifs_sb->tcon) && (cifs_sb->tcon->ses) && |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 414 | (cifs_sb->tcon->ses->server->maxBuf < |
Dave Kleikamp | 273d81d | 2006-06-01 19:41:23 +0000 | [diff] [blame] | 415 | PAGE_CACHE_SIZE + MAX_CIFS_HDR_SIZE)) |
| 416 | tmp_inode->i_data.a_ops = &cifs_addr_ops_smallbuf; |
| 417 | else |
| 418 | tmp_inode->i_data.a_ops = &cifs_addr_ops; |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 419 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 420 | if (isNewInode) |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 421 | return; /* No sense invalidating pages for new inode |
| 422 | since we have not started caching readahead |
| 423 | file data for it yet */ |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 424 | |
| 425 | if (timespec_equal(&tmp_inode->i_mtime, &local_mtime) && |
| 426 | (local_size == tmp_inode->i_size)) { |
| 427 | cFYI(1, ("inode exists but unchanged")); |
| 428 | } else { |
| 429 | /* file may have changed on server */ |
| 430 | cFYI(1, ("invalidate inode, readdir detected change")); |
| 431 | invalidate_remote_inode(tmp_inode); |
| 432 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } else if (S_ISDIR(tmp_inode->i_mode)) { |
| 434 | cFYI(1, ("Directory inode")); |
| 435 | tmp_inode->i_op = &cifs_dir_inode_ops; |
| 436 | tmp_inode->i_fop = &cifs_dir_ops; |
| 437 | } else if (S_ISLNK(tmp_inode->i_mode)) { |
| 438 | cFYI(1, ("Symbolic Link inode")); |
| 439 | tmp_inode->i_op = &cifs_symlink_inode_ops; |
| 440 | /* tmp_inode->i_fop = *//* do not need to set to anything */ |
| 441 | } else { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 442 | cFYI(1, ("Special inode")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | init_special_inode(tmp_inode, tmp_inode->i_mode, |
| 444 | tmp_inode->i_rdev); |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | static int initiate_cifs_search(const int xid, struct file *file) |
| 449 | { |
| 450 | int rc = 0; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 451 | char *full_path; |
| 452 | struct cifsFileInfo *cifsFile; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | struct cifs_sb_info *cifs_sb; |
| 454 | struct cifsTconInfo *pTcon; |
| 455 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 456 | if (file->private_data == NULL) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 457 | file->private_data = |
| 458 | kzalloc(sizeof(struct cifsFileInfo), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | } |
| 460 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 461 | if (file->private_data == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | cifsFile = file->private_data; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 464 | cifsFile->invalidHandle = true; |
| 465 | cifsFile->srch_inf.endOfSearch = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 467 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 468 | if (cifs_sb == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | return -EINVAL; |
| 470 | |
| 471 | pTcon = cifs_sb->tcon; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 472 | if (pTcon == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | return -EINVAL; |
| 474 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 475 | full_path = build_path_from_dentry(file->f_path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 477 | if (full_path == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 480 | cFYI(1, ("Full path: %s start at: %lld", full_path, file->f_pos)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | |
Steve French | 75cf6bd | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 482 | ffirst_retry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | /* test for Unix extensions */ |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 484 | /* but now check for them on the share/mount not on the SMB session */ |
| 485 | /* if (pTcon->ses->capabilities & CAP_UNIX) { */ |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 486 | if (pTcon->unix_ext) |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 487 | cifsFile->srch_inf.info_level = SMB_FIND_FILE_UNIX; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 488 | else if ((pTcon->ses->capabilities & |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 489 | (CAP_NT_SMBS | CAP_NT_FIND)) == 0) { |
| 490 | cifsFile->srch_inf.info_level = SMB_FIND_FILE_INFO_STANDARD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | } else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
| 492 | cifsFile->srch_inf.info_level = SMB_FIND_FILE_ID_FULL_DIR_INFO; |
| 493 | } else /* not srvinos - BB fixme add check for backlevel? */ { |
| 494 | cifsFile->srch_inf.info_level = SMB_FIND_FILE_DIRECTORY_INFO; |
| 495 | } |
| 496 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 497 | rc = CIFSFindFirst(xid, pTcon, full_path, cifs_sb->local_nls, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 498 | &cifsFile->netfid, &cifsFile->srch_inf, |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 499 | cifs_sb->mnt_cifs_flags & |
Steve French | eafe870 | 2005-09-15 21:47:30 -0700 | [diff] [blame] | 500 | CIFS_MOUNT_MAP_SPECIAL_CHR, CIFS_DIR_SEP(cifs_sb)); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 501 | if (rc == 0) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 502 | cifsFile->invalidHandle = false; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 503 | if ((rc == -EOPNOTSUPP) && |
Steve French | 75cf6bd | 2005-04-28 22:41:04 -0700 | [diff] [blame] | 504 | (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) { |
| 505 | cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM; |
| 506 | goto ffirst_retry; |
| 507 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | kfree(full_path); |
| 509 | return rc; |
| 510 | } |
| 511 | |
| 512 | /* return length of unicode string in bytes */ |
| 513 | static int cifs_unicode_bytelen(char *str) |
| 514 | { |
| 515 | int len; |
Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 516 | __le16 *ustr = (__le16 *)str; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 518 | for (len = 0; len <= PATH_MAX; len++) { |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 519 | if (ustr[len] == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | return len << 1; |
| 521 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 522 | cFYI(1, ("Unicode string longer than PATH_MAX found")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | return len << 1; |
| 524 | } |
| 525 | |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 526 | static char *nxt_dir_entry(char *old_entry, char *end_of_smb, int level) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 528 | char *new_entry; |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 529 | FILE_DIRECTORY_INFO *pDirInfo = (FILE_DIRECTORY_INFO *)old_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 531 | if (level == SMB_FIND_FILE_INFO_STANDARD) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 532 | FIND_FILE_STANDARD_INFO *pfData; |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 533 | pfData = (FIND_FILE_STANDARD_INFO *)pDirInfo; |
| 534 | |
| 535 | new_entry = old_entry + sizeof(FIND_FILE_STANDARD_INFO) + |
| 536 | pfData->FileNameLength; |
| 537 | } else |
| 538 | new_entry = old_entry + le32_to_cpu(pDirInfo->NextEntryOffset); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 539 | cFYI(1, ("new entry %p old entry %p", new_entry, old_entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | /* validate that new_entry is not past end of SMB */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 541 | if (new_entry >= end_of_smb) { |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 542 | cERROR(1, |
| 543 | ("search entry %p began after end of SMB %p old entry %p", |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 544 | new_entry, end_of_smb, old_entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | return NULL; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 546 | } else if (((level == SMB_FIND_FILE_INFO_STANDARD) && |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 547 | (new_entry + sizeof(FIND_FILE_STANDARD_INFO) > end_of_smb)) |
| 548 | || ((level != SMB_FIND_FILE_INFO_STANDARD) && |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 549 | (new_entry + sizeof(FILE_DIRECTORY_INFO) > end_of_smb))) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 550 | cERROR(1, ("search entry %p extends after end of SMB %p", |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 551 | new_entry, end_of_smb)); |
| 552 | return NULL; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 553 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | return new_entry; |
| 555 | |
| 556 | } |
| 557 | |
| 558 | #define UNICODE_DOT cpu_to_le16(0x2e) |
| 559 | |
| 560 | /* return 0 if no match and 1 for . (current directory) and 2 for .. (parent) */ |
| 561 | static int cifs_entry_is_dot(char *current_entry, struct cifsFileInfo *cfile) |
| 562 | { |
| 563 | int rc = 0; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 564 | char *filename = NULL; |
| 565 | int len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 567 | if (cfile->srch_inf.info_level == SMB_FIND_FILE_UNIX) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 568 | FILE_UNIX_INFO *pFindData = (FILE_UNIX_INFO *)current_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | filename = &pFindData->FileName[0]; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 570 | if (cfile->srch_inf.unicode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | len = cifs_unicode_bytelen(filename); |
| 572 | } else { |
| 573 | /* BB should we make this strnlen of PATH_MAX? */ |
| 574 | len = strnlen(filename, 5); |
| 575 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 576 | } else if (cfile->srch_inf.info_level == SMB_FIND_FILE_DIRECTORY_INFO) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 577 | FILE_DIRECTORY_INFO *pFindData = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | (FILE_DIRECTORY_INFO *)current_entry; |
| 579 | filename = &pFindData->FileName[0]; |
| 580 | len = le32_to_cpu(pFindData->FileNameLength); |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 581 | } else if (cfile->srch_inf.info_level == |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 582 | SMB_FIND_FILE_FULL_DIRECTORY_INFO) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 583 | FILE_FULL_DIRECTORY_INFO *pFindData = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | (FILE_FULL_DIRECTORY_INFO *)current_entry; |
| 585 | filename = &pFindData->FileName[0]; |
| 586 | len = le32_to_cpu(pFindData->FileNameLength); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 587 | } else if (cfile->srch_inf.info_level == |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 588 | SMB_FIND_FILE_ID_FULL_DIR_INFO) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 589 | SEARCH_ID_FULL_DIR_INFO *pFindData = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | (SEARCH_ID_FULL_DIR_INFO *)current_entry; |
| 591 | filename = &pFindData->FileName[0]; |
| 592 | len = le32_to_cpu(pFindData->FileNameLength); |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 593 | } else if (cfile->srch_inf.info_level == |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 594 | SMB_FIND_FILE_BOTH_DIRECTORY_INFO) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 595 | FILE_BOTH_DIRECTORY_INFO *pFindData = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | (FILE_BOTH_DIRECTORY_INFO *)current_entry; |
| 597 | filename = &pFindData->FileName[0]; |
| 598 | len = le32_to_cpu(pFindData->FileNameLength); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 599 | } else if (cfile->srch_inf.info_level == SMB_FIND_FILE_INFO_STANDARD) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 600 | FIND_FILE_STANDARD_INFO *pFindData = |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 601 | (FIND_FILE_STANDARD_INFO *)current_entry; |
| 602 | filename = &pFindData->FileName[0]; |
Steve French | 5ddaa68 | 2006-08-15 13:35:48 +0000 | [diff] [blame] | 603 | len = pFindData->FileNameLength; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } else { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 605 | cFYI(1, ("Unknown findfirst level %d", |
| 606 | cfile->srch_inf.info_level)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 609 | if (filename) { |
| 610 | if (cfile->srch_inf.unicode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | __le16 *ufilename = (__le16 *)filename; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 612 | if (len == 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | /* check for . */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 614 | if (ufilename[0] == UNICODE_DOT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | rc = 1; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 616 | } else if (len == 4) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /* check for .. */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 618 | if ((ufilename[0] == UNICODE_DOT) |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 619 | && (ufilename[1] == UNICODE_DOT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | rc = 2; |
| 621 | } |
| 622 | } else /* ASCII */ { |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 623 | if (len == 1) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 624 | if (filename[0] == '.') |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | rc = 1; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 626 | } else if (len == 2) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 627 | if ((filename[0] == '.') && (filename[1] == '.')) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | rc = 2; |
| 629 | } |
| 630 | } |
| 631 | } |
| 632 | |
| 633 | return rc; |
| 634 | } |
| 635 | |
Steve French | eafe870 | 2005-09-15 21:47:30 -0700 | [diff] [blame] | 636 | /* Check if directory that we are searching has changed so we can decide |
| 637 | whether we can use the cached search results from the previous search */ |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 638 | static int is_dir_changed(struct file *file) |
Steve French | eafe870 | 2005-09-15 21:47:30 -0700 | [diff] [blame] | 639 | { |
Christoph Hellwig | c33f8d3 | 2007-04-02 18:47:20 +0000 | [diff] [blame] | 640 | struct inode *inode = file->f_path.dentry->d_inode; |
| 641 | struct cifsInodeInfo *cifsInfo = CIFS_I(inode); |
Steve French | eafe870 | 2005-09-15 21:47:30 -0700 | [diff] [blame] | 642 | |
Christoph Hellwig | c33f8d3 | 2007-04-02 18:47:20 +0000 | [diff] [blame] | 643 | if (cifsInfo->time == 0) |
Steve French | eafe870 | 2005-09-15 21:47:30 -0700 | [diff] [blame] | 644 | return 1; /* directory was changed, perhaps due to unlink */ |
| 645 | else |
| 646 | return 0; |
| 647 | |
| 648 | } |
| 649 | |
Steve French | 0752f15 | 2008-10-07 20:03:33 +0000 | [diff] [blame] | 650 | static int cifs_save_resume_key(const char *current_entry, |
| 651 | struct cifsFileInfo *cifsFile) |
| 652 | { |
| 653 | int rc = 0; |
| 654 | unsigned int len = 0; |
| 655 | __u16 level; |
| 656 | char *filename; |
| 657 | |
| 658 | if ((cifsFile == NULL) || (current_entry == NULL)) |
| 659 | return -EINVAL; |
| 660 | |
| 661 | level = cifsFile->srch_inf.info_level; |
| 662 | |
| 663 | if (level == SMB_FIND_FILE_UNIX) { |
| 664 | FILE_UNIX_INFO *pFindData = (FILE_UNIX_INFO *)current_entry; |
| 665 | |
| 666 | filename = &pFindData->FileName[0]; |
| 667 | if (cifsFile->srch_inf.unicode) { |
| 668 | len = cifs_unicode_bytelen(filename); |
| 669 | } else { |
| 670 | /* BB should we make this strnlen of PATH_MAX? */ |
| 671 | len = strnlen(filename, PATH_MAX); |
| 672 | } |
| 673 | cifsFile->srch_inf.resume_key = pFindData->ResumeKey; |
| 674 | } else if (level == SMB_FIND_FILE_DIRECTORY_INFO) { |
| 675 | FILE_DIRECTORY_INFO *pFindData = |
| 676 | (FILE_DIRECTORY_INFO *)current_entry; |
| 677 | filename = &pFindData->FileName[0]; |
| 678 | len = le32_to_cpu(pFindData->FileNameLength); |
| 679 | cifsFile->srch_inf.resume_key = pFindData->FileIndex; |
| 680 | } else if (level == SMB_FIND_FILE_FULL_DIRECTORY_INFO) { |
| 681 | FILE_FULL_DIRECTORY_INFO *pFindData = |
| 682 | (FILE_FULL_DIRECTORY_INFO *)current_entry; |
| 683 | filename = &pFindData->FileName[0]; |
| 684 | len = le32_to_cpu(pFindData->FileNameLength); |
| 685 | cifsFile->srch_inf.resume_key = pFindData->FileIndex; |
| 686 | } else if (level == SMB_FIND_FILE_ID_FULL_DIR_INFO) { |
| 687 | SEARCH_ID_FULL_DIR_INFO *pFindData = |
| 688 | (SEARCH_ID_FULL_DIR_INFO *)current_entry; |
| 689 | filename = &pFindData->FileName[0]; |
| 690 | len = le32_to_cpu(pFindData->FileNameLength); |
| 691 | cifsFile->srch_inf.resume_key = pFindData->FileIndex; |
| 692 | } else if (level == SMB_FIND_FILE_BOTH_DIRECTORY_INFO) { |
| 693 | FILE_BOTH_DIRECTORY_INFO *pFindData = |
| 694 | (FILE_BOTH_DIRECTORY_INFO *)current_entry; |
| 695 | filename = &pFindData->FileName[0]; |
| 696 | len = le32_to_cpu(pFindData->FileNameLength); |
| 697 | cifsFile->srch_inf.resume_key = pFindData->FileIndex; |
| 698 | } else if (level == SMB_FIND_FILE_INFO_STANDARD) { |
| 699 | FIND_FILE_STANDARD_INFO *pFindData = |
| 700 | (FIND_FILE_STANDARD_INFO *)current_entry; |
| 701 | filename = &pFindData->FileName[0]; |
| 702 | /* one byte length, no name conversion */ |
| 703 | len = (unsigned int)pFindData->FileNameLength; |
| 704 | cifsFile->srch_inf.resume_key = pFindData->ResumeKey; |
| 705 | } else { |
| 706 | cFYI(1, ("Unknown findfirst level %d", level)); |
| 707 | return -EINVAL; |
| 708 | } |
| 709 | cifsFile->srch_inf.resume_name_len = len; |
| 710 | cifsFile->srch_inf.presume_name = filename; |
| 711 | return rc; |
| 712 | } |
| 713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | /* find the corresponding entry in the search */ |
| 715 | /* Note that the SMB server returns search entries for . and .. which |
| 716 | complicates logic here if we choose to parse for them and we do not |
| 717 | assume that they are located in the findfirst return buffer.*/ |
| 718 | /* We start counting in the buffer with entry 2 and increment for every |
| 719 | entry (do not increment for . or .. entry) */ |
| 720 | static int find_cifs_entry(const int xid, struct cifsTconInfo *pTcon, |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 721 | struct file *file, char **ppCurrentEntry, int *num_to_ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | { |
| 723 | int rc = 0; |
| 724 | int pos_in_buf = 0; |
| 725 | loff_t first_entry_in_buffer; |
| 726 | loff_t index_to_find = file->f_pos; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 727 | struct cifsFileInfo *cifsFile = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | /* check if index in the buffer */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 729 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 730 | if ((cifsFile == NULL) || (ppCurrentEntry == NULL) || |
Steve French | eafe870 | 2005-09-15 21:47:30 -0700 | [diff] [blame] | 731 | (num_to_ret == NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | return -ENOENT; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | *ppCurrentEntry = NULL; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 735 | first_entry_in_buffer = |
| 736 | cifsFile->srch_inf.index_of_last_entry - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | cifsFile->srch_inf.entries_in_buffer; |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 738 | |
| 739 | /* if first entry in buf is zero then is first buffer |
| 740 | in search response data which means it is likely . and .. |
| 741 | will be in this buffer, although some servers do not return |
| 742 | . and .. for the root of a drive and for those we need |
| 743 | to start two entries earlier */ |
| 744 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 745 | dump_cifs_file_struct(file, "In fce "); |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 746 | if (((index_to_find < cifsFile->srch_inf.index_of_last_entry) && |
| 747 | is_dir_changed(file)) || |
Steve French | eafe870 | 2005-09-15 21:47:30 -0700 | [diff] [blame] | 748 | (index_to_find < first_entry_in_buffer)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | /* close and restart search */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 750 | cFYI(1, ("search backing up - close and restart search")); |
Steve French | ddb4cbf | 2008-11-20 20:00:44 +0000 | [diff] [blame] | 751 | write_lock(&GlobalSMBSeslock); |
Steve French | 77c57ec | 2008-05-13 21:39:32 +0000 | [diff] [blame] | 752 | if (!cifsFile->srch_inf.endOfSearch && |
| 753 | !cifsFile->invalidHandle) { |
| 754 | cifsFile->invalidHandle = true; |
Steve French | ddb4cbf | 2008-11-20 20:00:44 +0000 | [diff] [blame] | 755 | write_unlock(&GlobalSMBSeslock); |
Steve French | 77c57ec | 2008-05-13 21:39:32 +0000 | [diff] [blame] | 756 | CIFSFindClose(xid, pTcon, cifsFile->netfid); |
Steve French | ddb4cbf | 2008-11-20 20:00:44 +0000 | [diff] [blame] | 757 | } else |
| 758 | write_unlock(&GlobalSMBSeslock); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 759 | if (cifsFile->srch_inf.ntwrk_buf_start) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 760 | cFYI(1, ("freeing SMB ff cache buf on search rewind")); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 761 | if (cifsFile->srch_inf.smallBuf) |
Steve French | d47d7c1 | 2006-02-28 03:45:48 +0000 | [diff] [blame] | 762 | cifs_small_buf_release(cifsFile->srch_inf. |
| 763 | ntwrk_buf_start); |
| 764 | else |
| 765 | cifs_buf_release(cifsFile->srch_inf. |
| 766 | ntwrk_buf_start); |
Shirish Pargaonkar | 76c510a | 2008-07-24 14:48:33 +0000 | [diff] [blame] | 767 | cifsFile->srch_inf.ntwrk_buf_start = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | } |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 769 | rc = initiate_cifs_search(xid, file); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 770 | if (rc) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 771 | cFYI(1, ("error %d reinitiating a search on rewind", |
| 772 | rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | return rc; |
| 774 | } |
Jeff Layton | a364bc0 | 2008-10-21 14:42:13 +0000 | [diff] [blame] | 775 | cifs_save_resume_key(cifsFile->srch_inf.last_entry, cifsFile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | } |
| 777 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 778 | while ((index_to_find >= cifsFile->srch_inf.index_of_last_entry) && |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 779 | (rc == 0) && !cifsFile->srch_inf.endOfSearch) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 780 | cFYI(1, ("calling findnext2")); |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 781 | rc = CIFSFindNext(xid, pTcon, cifsFile->netfid, |
Steve French | dfb7533 | 2005-06-22 17:13:47 -0700 | [diff] [blame] | 782 | &cifsFile->srch_inf); |
Jeff Layton | a364bc0 | 2008-10-21 14:42:13 +0000 | [diff] [blame] | 783 | cifs_save_resume_key(cifsFile->srch_inf.last_entry, cifsFile); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 784 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | return -ENOENT; |
| 786 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 787 | if (index_to_find < cifsFile->srch_inf.index_of_last_entry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | /* we found the buffer that contains the entry */ |
| 789 | /* scan and find it */ |
| 790 | int i; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 791 | char *current_entry; |
| 792 | char *end_of_smb = cifsFile->srch_inf.ntwrk_buf_start + |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | smbCalcSize((struct smb_hdr *) |
| 794 | cifsFile->srch_inf.ntwrk_buf_start); |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 795 | |
| 796 | current_entry = cifsFile->srch_inf.srch_entries_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | first_entry_in_buffer = cifsFile->srch_inf.index_of_last_entry |
| 798 | - cifsFile->srch_inf.entries_in_buffer; |
| 799 | pos_in_buf = index_to_find - first_entry_in_buffer; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 800 | cFYI(1, ("found entry - pos_in_buf %d", pos_in_buf)); |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 801 | |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 802 | for (i = 0; (i < (pos_in_buf)) && (current_entry != NULL); i++) { |
Steve French | dfb7533 | 2005-06-22 17:13:47 -0700 | [diff] [blame] | 803 | /* go entry by entry figuring out which is first */ |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 804 | current_entry = nxt_dir_entry(current_entry, end_of_smb, |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 805 | cifsFile->srch_inf.info_level); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 807 | if ((current_entry == NULL) && (i < pos_in_buf)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | /* BB fixme - check if we should flag this error */ |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 809 | cERROR(1, ("reached end of buf searching for pos in buf" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | " %d index to find %lld rc %d", |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 811 | pos_in_buf, index_to_find, rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | } |
| 813 | rc = 0; |
| 814 | *ppCurrentEntry = current_entry; |
| 815 | } else { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 816 | cFYI(1, ("index not in buffer - could not findnext into it")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | return 0; |
| 818 | } |
| 819 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 820 | if (pos_in_buf >= cifsFile->srch_inf.entries_in_buffer) { |
| 821 | cFYI(1, ("can not return entries pos_in_buf beyond last")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | *num_to_ret = 0; |
| 823 | } else |
| 824 | *num_to_ret = cifsFile->srch_inf.entries_in_buffer - pos_in_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
| 826 | return rc; |
| 827 | } |
| 828 | |
| 829 | /* inode num, inode type and filename returned */ |
| 830 | static int cifs_get_name_from_search_buf(struct qstr *pqst, |
| 831 | char *current_entry, __u16 level, unsigned int unicode, |
Jeff Layton | 950ec52 | 2009-02-11 08:08:26 -0500 | [diff] [blame] | 832 | struct cifs_sb_info *cifs_sb, int max_len, __u64 *pinum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | { |
| 834 | int rc = 0; |
| 835 | unsigned int len = 0; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 836 | char *filename; |
| 837 | struct nls_table *nlt = cifs_sb->local_nls; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | |
| 839 | *pinum = 0; |
| 840 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 841 | if (level == SMB_FIND_FILE_UNIX) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 842 | FILE_UNIX_INFO *pFindData = (FILE_UNIX_INFO *)current_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
| 844 | filename = &pFindData->FileName[0]; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 845 | if (unicode) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | len = cifs_unicode_bytelen(filename); |
| 847 | } else { |
| 848 | /* BB should we make this strnlen of PATH_MAX? */ |
| 849 | len = strnlen(filename, PATH_MAX); |
| 850 | } |
| 851 | |
Steve French | 85a6dac | 2009-04-01 05:22:00 +0000 | [diff] [blame] | 852 | *pinum = le64_to_cpu(pFindData->UniqueId); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 853 | } else if (level == SMB_FIND_FILE_DIRECTORY_INFO) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 854 | FILE_DIRECTORY_INFO *pFindData = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | (FILE_DIRECTORY_INFO *)current_entry; |
| 856 | filename = &pFindData->FileName[0]; |
| 857 | len = le32_to_cpu(pFindData->FileNameLength); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 858 | } else if (level == SMB_FIND_FILE_FULL_DIRECTORY_INFO) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 859 | FILE_FULL_DIRECTORY_INFO *pFindData = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | (FILE_FULL_DIRECTORY_INFO *)current_entry; |
| 861 | filename = &pFindData->FileName[0]; |
| 862 | len = le32_to_cpu(pFindData->FileNameLength); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 863 | } else if (level == SMB_FIND_FILE_ID_FULL_DIR_INFO) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 864 | SEARCH_ID_FULL_DIR_INFO *pFindData = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | (SEARCH_ID_FULL_DIR_INFO *)current_entry; |
| 866 | filename = &pFindData->FileName[0]; |
| 867 | len = le32_to_cpu(pFindData->FileNameLength); |
Steve French | 85a6dac | 2009-04-01 05:22:00 +0000 | [diff] [blame] | 868 | *pinum = le64_to_cpu(pFindData->UniqueId); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 869 | } else if (level == SMB_FIND_FILE_BOTH_DIRECTORY_INFO) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 870 | FILE_BOTH_DIRECTORY_INFO *pFindData = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | (FILE_BOTH_DIRECTORY_INFO *)current_entry; |
| 872 | filename = &pFindData->FileName[0]; |
| 873 | len = le32_to_cpu(pFindData->FileNameLength); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 874 | } else if (level == SMB_FIND_FILE_INFO_STANDARD) { |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 875 | FIND_FILE_STANDARD_INFO *pFindData = |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 876 | (FIND_FILE_STANDARD_INFO *)current_entry; |
| 877 | filename = &pFindData->FileName[0]; |
| 878 | /* one byte length, no name conversion */ |
| 879 | len = (unsigned int)pFindData->FileNameLength; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | } else { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 881 | cFYI(1, ("Unknown findfirst level %d", level)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | return -EINVAL; |
| 883 | } |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 884 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 885 | if (len > max_len) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 886 | cERROR(1, ("bad search response length %d past smb end", len)); |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 887 | return -EINVAL; |
| 888 | } |
| 889 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 890 | if (unicode) { |
Jeff Layton | f588416 | 2009-04-30 07:18:00 -0400 | [diff] [blame^] | 891 | pqst->len = cifs_from_ucs2((char *) pqst->name, |
| 892 | (__le16 *) filename, |
| 893 | UNICODE_NAME_MAX, max_len, nlt, |
| 894 | cifs_sb->mnt_cifs_flags & |
| 895 | CIFS_MOUNT_MAP_SPECIAL_CHR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | } else { |
| 897 | pqst->name = filename; |
| 898 | pqst->len = len; |
| 899 | } |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 900 | pqst->hash = full_name_hash(pqst->name, pqst->len); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 901 | /* cFYI(1, ("filldir on %s",pqst->name)); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | return rc; |
| 903 | } |
| 904 | |
| 905 | static int cifs_filldir(char *pfindEntry, struct file *file, |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 906 | filldir_t filldir, void *direntry, char *scratch_buf, int max_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | { |
| 908 | int rc = 0; |
| 909 | struct qstr qstring; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 910 | struct cifsFileInfo *pCifsF; |
Steve French | 2c2130e | 2007-10-12 19:10:28 +0000 | [diff] [blame] | 911 | unsigned int obj_type; |
Jeff Layton | 950ec52 | 2009-02-11 08:08:26 -0500 | [diff] [blame] | 912 | __u64 inum; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 913 | struct cifs_sb_info *cifs_sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | struct inode *tmp_inode; |
| 915 | struct dentry *tmp_dentry; |
| 916 | |
| 917 | /* get filename and len into qstring */ |
| 918 | /* get dentry */ |
| 919 | /* decide whether to create and populate ionde */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 920 | if ((direntry == NULL) || (file == NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | return -EINVAL; |
| 922 | |
| 923 | pCifsF = file->private_data; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 924 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 925 | if ((scratch_buf == NULL) || (pfindEntry == NULL) || (pCifsF == NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | return -ENOENT; |
| 927 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 928 | rc = cifs_entry_is_dot(pfindEntry, pCifsF); |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 929 | /* skip . and .. since we added them first */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 930 | if (rc != 0) |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 931 | return 0; |
| 932 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 933 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
| 935 | qstring.name = scratch_buf; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 936 | rc = cifs_get_name_from_search_buf(&qstring, pfindEntry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | pCifsF->srch_inf.info_level, |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 938 | pCifsF->srch_inf.unicode, cifs_sb, |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 939 | max_len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | &inum /* returned */); |
| 941 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 942 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | return rc; |
| 944 | |
Jeff Layton | 132ac7b | 2009-02-10 07:33:57 -0500 | [diff] [blame] | 945 | /* only these two infolevels return valid inode numbers */ |
| 946 | if (pCifsF->srch_inf.info_level == SMB_FIND_FILE_UNIX || |
| 947 | pCifsF->srch_inf.info_level == SMB_FIND_FILE_ID_FULL_DIR_INFO) |
| 948 | rc = construct_dentry(&qstring, file, &tmp_inode, &tmp_dentry, |
| 949 | &inum); |
| 950 | else |
| 951 | rc = construct_dentry(&qstring, file, &tmp_inode, &tmp_dentry, |
| 952 | NULL); |
| 953 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 954 | if ((tmp_inode == NULL) || (tmp_dentry == NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | return -ENOMEM; |
| 956 | |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 957 | /* we pass in rc below, indicating whether it is a new inode, |
| 958 | so we can figure out whether to invalidate the inode cached |
| 959 | data if the file has changed */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 960 | if (pCifsF->srch_inf.info_level == SMB_FIND_FILE_UNIX) |
Steve French | 966ca92 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 961 | unix_fill_in_inode(tmp_inode, |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 962 | (FILE_UNIX_INFO *)pfindEntry, |
| 963 | &obj_type, rc); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 964 | else if (pCifsF->srch_inf.info_level == SMB_FIND_FILE_INFO_STANDARD) |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 965 | fill_in_inode(tmp_inode, 0 /* old level 1 buffer type */, |
| 966 | pfindEntry, &obj_type, rc); |
| 967 | else |
| 968 | fill_in_inode(tmp_inode, 1 /* NT */, pfindEntry, &obj_type, rc); |
Steve French | b835beb | 2006-09-06 22:02:22 +0000 | [diff] [blame] | 969 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 970 | if (rc) /* new inode - needs to be tied to dentry */ { |
Steve French | b835beb | 2006-09-06 22:02:22 +0000 | [diff] [blame] | 971 | d_instantiate(tmp_dentry, tmp_inode); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 972 | if (rc == 2) |
Steve French | b835beb | 2006-09-06 22:02:22 +0000 | [diff] [blame] | 973 | d_rehash(tmp_dentry); |
| 974 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 975 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 976 | |
| 977 | rc = filldir(direntry, qstring.name, qstring.len, file->f_pos, |
| 978 | tmp_inode->i_ino, obj_type); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 979 | if (rc) { |
| 980 | cFYI(1, ("filldir rc = %d", rc)); |
Steve French | 7ca85ba | 2006-10-30 21:42:57 +0000 | [diff] [blame] | 981 | /* we can not return filldir errors to the caller |
| 982 | since they are "normal" when the stat blocksize |
| 983 | is too small - we return remapped error instead */ |
| 984 | rc = -EOVERFLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | dput(tmp_dentry); |
| 988 | return rc; |
| 989 | } |
| 990 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | |
| 992 | int cifs_readdir(struct file *file, void *direntry, filldir_t filldir) |
| 993 | { |
| 994 | int rc = 0; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 995 | int xid, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | struct cifs_sb_info *cifs_sb; |
| 997 | struct cifsTconInfo *pTcon; |
| 998 | struct cifsFileInfo *cifsFile = NULL; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 999 | char *current_entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | int num_to_fill = 0; |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 1001 | char *tmp_buf = NULL; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1002 | char *end_of_smb; |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 1003 | int max_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | |
| 1005 | xid = GetXid(); |
| 1006 | |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 1007 | cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | pTcon = cifs_sb->tcon; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1009 | if (pTcon == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | return -EINVAL; |
| 1011 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | switch ((int) file->f_pos) { |
| 1013 | case 0: |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1014 | if (filldir(direntry, ".", 1, file->f_pos, |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 1015 | file->f_path.dentry->d_inode->i_ino, DT_DIR) < 0) { |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1016 | cERROR(1, ("Filldir for current dir failed")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | rc = -ENOMEM; |
| 1018 | break; |
| 1019 | } |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1020 | file->f_pos++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | case 1: |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1022 | if (filldir(direntry, "..", 2, file->f_pos, |
Josef "Jeff" Sipek | e6a0029 | 2006-12-08 02:36:48 -0800 | [diff] [blame] | 1023 | file->f_path.dentry->d_parent->d_inode->i_ino, DT_DIR) < 0) { |
Steve French | 26a21b9 | 2006-05-31 18:05:34 +0000 | [diff] [blame] | 1024 | cERROR(1, ("Filldir for parent dir failed")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | rc = -ENOMEM; |
| 1026 | break; |
| 1027 | } |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1028 | file->f_pos++; |
| 1029 | default: |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 1030 | /* 1) If search is active, |
| 1031 | is in current search buffer? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | if it before then restart search |
| 1033 | if after then keep searching till find it */ |
| 1034 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1035 | if (file->private_data == NULL) { |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 1036 | rc = initiate_cifs_search(xid, file); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1037 | cFYI(1, ("initiate cifs search rc %d", rc)); |
| 1038 | if (rc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | FreeXid(xid); |
| 1040 | return rc; |
| 1041 | } |
| 1042 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1043 | if (file->private_data == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | rc = -EINVAL; |
| 1045 | FreeXid(xid); |
| 1046 | return rc; |
| 1047 | } |
| 1048 | cifsFile = file->private_data; |
| 1049 | if (cifsFile->srch_inf.endOfSearch) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1050 | if (cifsFile->srch_inf.emptyDir) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | cFYI(1, ("End of search, empty dir")); |
| 1052 | rc = 0; |
| 1053 | break; |
| 1054 | } |
| 1055 | } /* else { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1056 | cifsFile->invalidHandle = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | CIFSFindClose(xid, pTcon, cifsFile->netfid); |
Steve French | aaa9bbe | 2008-05-23 17:38:32 +0000 | [diff] [blame] | 1058 | } */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 1060 | rc = find_cifs_entry(xid, pTcon, file, |
| 1061 | ¤t_entry, &num_to_fill); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1062 | if (rc) { |
| 1063 | cFYI(1, ("fce error %d", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | goto rddir2_exit; |
| 1065 | } else if (current_entry != NULL) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1066 | cFYI(1, ("entry %lld found", file->f_pos)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | } else { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1068 | cFYI(1, ("could not find entry")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | goto rddir2_exit; |
| 1070 | } |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1071 | cFYI(1, ("loop through %d times filling dir for net buf %p", |
| 1072 | num_to_fill, cifsFile->srch_inf.ntwrk_buf_start)); |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 1073 | max_len = smbCalcSize((struct smb_hdr *) |
| 1074 | cifsFile->srch_inf.ntwrk_buf_start); |
| 1075 | end_of_smb = cifsFile->srch_inf.ntwrk_buf_start + max_len; |
| 1076 | |
Jeff Layton | f588416 | 2009-04-30 07:18:00 -0400 | [diff] [blame^] | 1077 | tmp_buf = kmalloc(UNICODE_NAME_MAX, GFP_KERNEL); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1078 | for (i = 0; (i < num_to_fill) && (rc == 0); i++) { |
| 1079 | if (current_entry == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | /* evaluate whether this case is an error */ |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1081 | cERROR(1, ("past SMB end, num to fill %d i %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | num_to_fill, i)); |
| 1083 | break; |
| 1084 | } |
Steve French | 6080823 | 2006-04-22 15:53:05 +0000 | [diff] [blame] | 1085 | /* if buggy server returns . and .. late do |
| 1086 | we want to check for that here? */ |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 1087 | rc = cifs_filldir(current_entry, file, |
| 1088 | filldir, direntry, tmp_buf, max_len); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1089 | if (rc == -EOVERFLOW) { |
Steve French | 7ca85ba | 2006-10-30 21:42:57 +0000 | [diff] [blame] | 1090 | rc = 0; |
| 1091 | break; |
| 1092 | } |
| 1093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | file->f_pos++; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1095 | if (file->f_pos == |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1096 | cifsFile->srch_inf.index_of_last_entry) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1097 | cFYI(1, ("last entry in buf at pos %lld %s", |
| 1098 | file->f_pos, tmp_buf)); |
| 1099 | cifs_save_resume_key(current_entry, cifsFile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | break; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 1101 | } else |
| 1102 | current_entry = |
Steve French | 5bafd76 | 2006-06-07 00:18:43 +0000 | [diff] [blame] | 1103 | nxt_dir_entry(current_entry, end_of_smb, |
| 1104 | cifsFile->srch_inf.info_level); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | } |
| 1106 | kfree(tmp_buf); |
| 1107 | break; |
| 1108 | } /* end switch */ |
| 1109 | |
| 1110 | rddir2_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | FreeXid(xid); |
| 1112 | return rc; |
| 1113 | } |