]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/hfsplus/dir.c | |
3 | * | |
4 | * Copyright (C) 2001 | |
5 | * Brad Boyer ([email protected]) | |
6 | * (C) 2003 Ardis Technologies <[email protected]> | |
7 | * | |
8 | * Handling of directories | |
9 | */ | |
10 | ||
11 | #include <linux/errno.h> | |
12 | #include <linux/fs.h> | |
1da177e4 LT |
13 | #include <linux/slab.h> |
14 | #include <linux/random.h> | |
1da177e4 LT |
15 | |
16 | #include "hfsplus_fs.h" | |
17 | #include "hfsplus_raw.h" | |
18 | ||
19 | static inline void hfsplus_instantiate(struct dentry *dentry, | |
20 | struct inode *inode, u32 cnid) | |
21 | { | |
22 | dentry->d_fsdata = (void *)(unsigned long)cnid; | |
23 | d_instantiate(dentry, inode); | |
24 | } | |
25 | ||
26 | /* Find the entry inside dir named dentry->d_name */ | |
27 | static struct dentry *hfsplus_lookup(struct inode *dir, struct dentry *dentry, | |
28 | struct nameidata *nd) | |
29 | { | |
30 | struct inode *inode = NULL; | |
31 | struct hfs_find_data fd; | |
32 | struct super_block *sb; | |
33 | hfsplus_cat_entry entry; | |
34 | int err; | |
35 | u32 cnid, linkid = 0; | |
36 | u16 type; | |
37 | ||
38 | sb = dir->i_sb; | |
d45bce8f | 39 | |
1da177e4 | 40 | dentry->d_fsdata = NULL; |
5bd9d99d AK |
41 | err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd); |
42 | if (err) | |
43 | return ERR_PTR(err); | |
1da177e4 LT |
44 | hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino, &dentry->d_name); |
45 | again: | |
46 | err = hfs_brec_read(&fd, &entry, sizeof(entry)); | |
47 | if (err) { | |
48 | if (err == -ENOENT) { | |
49 | hfs_find_exit(&fd); | |
50 | /* No such entry */ | |
51 | inode = NULL; | |
52 | goto out; | |
53 | } | |
54 | goto fail; | |
55 | } | |
56 | type = be16_to_cpu(entry.type); | |
57 | if (type == HFSPLUS_FOLDER) { | |
58 | if (fd.entrylength < sizeof(struct hfsplus_cat_folder)) { | |
59 | err = -EIO; | |
60 | goto fail; | |
61 | } | |
62 | cnid = be32_to_cpu(entry.folder.id); | |
63 | dentry->d_fsdata = (void *)(unsigned long)cnid; | |
64 | } else if (type == HFSPLUS_FILE) { | |
65 | if (fd.entrylength < sizeof(struct hfsplus_cat_file)) { | |
66 | err = -EIO; | |
67 | goto fail; | |
68 | } | |
69 | cnid = be32_to_cpu(entry.file.id); | |
2753cc28 AS |
70 | if (entry.file.user_info.fdType == |
71 | cpu_to_be32(HFSP_HARDLINK_TYPE) && | |
72 | entry.file.user_info.fdCreator == | |
73 | cpu_to_be32(HFSP_HFSPLUS_CREATOR) && | |
74 | (entry.file.create_date == | |
75 | HFSPLUS_I(HFSPLUS_SB(sb)->hidden_dir)-> | |
76 | create_date || | |
77 | entry.file.create_date == | |
78 | HFSPLUS_I(sb->s_root->d_inode)-> | |
79 | create_date) && | |
80 | HFSPLUS_SB(sb)->hidden_dir) { | |
1da177e4 LT |
81 | struct qstr str; |
82 | char name[32]; | |
83 | ||
84 | if (dentry->d_fsdata) { | |
af8c85bb RZ |
85 | /* |
86 | * We found a link pointing to another link, | |
87 | * so ignore it and treat it as regular file. | |
88 | */ | |
89 | cnid = (unsigned long)dentry->d_fsdata; | |
90 | linkid = 0; | |
91 | } else { | |
92 | dentry->d_fsdata = (void *)(unsigned long)cnid; | |
2753cc28 AS |
93 | linkid = |
94 | be32_to_cpu(entry.file.permissions.dev); | |
af8c85bb RZ |
95 | str.len = sprintf(name, "iNode%d", linkid); |
96 | str.name = name; | |
dd73a01a | 97 | hfsplus_cat_build_key(sb, fd.search_key, |
2753cc28 AS |
98 | HFSPLUS_SB(sb)->hidden_dir->i_ino, |
99 | &str); | |
af8c85bb | 100 | goto again; |
1da177e4 | 101 | } |
1da177e4 LT |
102 | } else if (!dentry->d_fsdata) |
103 | dentry->d_fsdata = (void *)(unsigned long)cnid; | |
104 | } else { | |
634725a9 | 105 | printk(KERN_ERR "hfs: invalid catalog entry type in lookup\n"); |
1da177e4 LT |
106 | err = -EIO; |
107 | goto fail; | |
108 | } | |
109 | hfs_find_exit(&fd); | |
63525391 DH |
110 | inode = hfsplus_iget(dir->i_sb, cnid); |
111 | if (IS_ERR(inode)) | |
112 | return ERR_CAST(inode); | |
1da177e4 | 113 | if (S_ISREG(inode->i_mode)) |
f6089ff8 | 114 | HFSPLUS_I(inode)->linkid = linkid; |
1da177e4 LT |
115 | out: |
116 | d_add(dentry, inode); | |
117 | return NULL; | |
118 | fail: | |
119 | hfs_find_exit(&fd); | |
120 | return ERR_PTR(err); | |
121 | } | |
122 | ||
123 | static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir) | |
124 | { | |
f44ea031 | 125 | struct inode *inode = filp->f_path.dentry->d_inode; |
1da177e4 LT |
126 | struct super_block *sb = inode->i_sb; |
127 | int len, err; | |
128 | char strbuf[HFSPLUS_MAX_STRLEN + 1]; | |
129 | hfsplus_cat_entry entry; | |
130 | struct hfs_find_data fd; | |
131 | struct hfsplus_readdir_data *rd; | |
132 | u16 type; | |
133 | ||
134 | if (filp->f_pos >= inode->i_size) | |
135 | return 0; | |
136 | ||
5bd9d99d AK |
137 | err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd); |
138 | if (err) | |
139 | return err; | |
1da177e4 LT |
140 | hfsplus_cat_build_key(sb, fd.search_key, inode->i_ino, NULL); |
141 | err = hfs_brec_find(&fd); | |
142 | if (err) | |
143 | goto out; | |
144 | ||
145 | switch ((u32)filp->f_pos) { | |
146 | case 0: | |
147 | /* This is completely artificial... */ | |
148 | if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR)) | |
149 | goto out; | |
150 | filp->f_pos++; | |
151 | /* fall through */ | |
152 | case 1: | |
2753cc28 AS |
153 | hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, |
154 | fd.entrylength); | |
1da177e4 | 155 | if (be16_to_cpu(entry.type) != HFSPLUS_FOLDER_THREAD) { |
634725a9 | 156 | printk(KERN_ERR "hfs: bad catalog folder thread\n"); |
1da177e4 LT |
157 | err = -EIO; |
158 | goto out; | |
159 | } | |
160 | if (fd.entrylength < HFSPLUS_MIN_THREAD_SZ) { | |
634725a9 | 161 | printk(KERN_ERR "hfs: truncated catalog thread\n"); |
1da177e4 LT |
162 | err = -EIO; |
163 | goto out; | |
164 | } | |
165 | if (filldir(dirent, "..", 2, 1, | |
166 | be32_to_cpu(entry.thread.parentID), DT_DIR)) | |
167 | goto out; | |
168 | filp->f_pos++; | |
169 | /* fall through */ | |
170 | default: | |
171 | if (filp->f_pos >= inode->i_size) | |
172 | goto out; | |
173 | err = hfs_brec_goto(&fd, filp->f_pos - 1); | |
174 | if (err) | |
175 | goto out; | |
176 | } | |
177 | ||
178 | for (;;) { | |
179 | if (be32_to_cpu(fd.key->cat.parent) != inode->i_ino) { | |
634725a9 | 180 | printk(KERN_ERR "hfs: walked past end of dir\n"); |
1da177e4 LT |
181 | err = -EIO; |
182 | goto out; | |
183 | } | |
2753cc28 AS |
184 | hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, |
185 | fd.entrylength); | |
1da177e4 LT |
186 | type = be16_to_cpu(entry.type); |
187 | len = HFSPLUS_MAX_STRLEN; | |
188 | err = hfsplus_uni2asc(sb, &fd.key->cat.name, strbuf, &len); | |
189 | if (err) | |
190 | goto out; | |
191 | if (type == HFSPLUS_FOLDER) { | |
2753cc28 AS |
192 | if (fd.entrylength < |
193 | sizeof(struct hfsplus_cat_folder)) { | |
634725a9 | 194 | printk(KERN_ERR "hfs: small dir entry\n"); |
1da177e4 LT |
195 | err = -EIO; |
196 | goto out; | |
197 | } | |
dd73a01a CH |
198 | if (HFSPLUS_SB(sb)->hidden_dir && |
199 | HFSPLUS_SB(sb)->hidden_dir->i_ino == | |
200 | be32_to_cpu(entry.folder.id)) | |
1da177e4 LT |
201 | goto next; |
202 | if (filldir(dirent, strbuf, len, filp->f_pos, | |
203 | be32_to_cpu(entry.folder.id), DT_DIR)) | |
204 | break; | |
205 | } else if (type == HFSPLUS_FILE) { | |
206 | if (fd.entrylength < sizeof(struct hfsplus_cat_file)) { | |
634725a9 | 207 | printk(KERN_ERR "hfs: small file entry\n"); |
1da177e4 LT |
208 | err = -EIO; |
209 | goto out; | |
210 | } | |
211 | if (filldir(dirent, strbuf, len, filp->f_pos, | |
212 | be32_to_cpu(entry.file.id), DT_REG)) | |
213 | break; | |
214 | } else { | |
634725a9 | 215 | printk(KERN_ERR "hfs: bad catalog entry type\n"); |
1da177e4 LT |
216 | err = -EIO; |
217 | goto out; | |
218 | } | |
20b7643d | 219 | next: |
1da177e4 LT |
220 | filp->f_pos++; |
221 | if (filp->f_pos >= inode->i_size) | |
222 | goto out; | |
223 | err = hfs_brec_goto(&fd, 1); | |
224 | if (err) | |
225 | goto out; | |
226 | } | |
227 | rd = filp->private_data; | |
228 | if (!rd) { | |
229 | rd = kmalloc(sizeof(struct hfsplus_readdir_data), GFP_KERNEL); | |
230 | if (!rd) { | |
231 | err = -ENOMEM; | |
232 | goto out; | |
233 | } | |
234 | filp->private_data = rd; | |
235 | rd->file = filp; | |
6af502de | 236 | list_add(&rd->list, &HFSPLUS_I(inode)->open_dir_list); |
1da177e4 LT |
237 | } |
238 | memcpy(&rd->key, fd.key, sizeof(struct hfsplus_cat_key)); | |
239 | out: | |
240 | hfs_find_exit(&fd); | |
241 | return err; | |
242 | } | |
243 | ||
244 | static int hfsplus_dir_release(struct inode *inode, struct file *file) | |
245 | { | |
246 | struct hfsplus_readdir_data *rd = file->private_data; | |
247 | if (rd) { | |
89755dca | 248 | mutex_lock(&inode->i_mutex); |
1da177e4 | 249 | list_del(&rd->list); |
89755dca | 250 | mutex_unlock(&inode->i_mutex); |
1da177e4 LT |
251 | kfree(rd); |
252 | } | |
253 | return 0; | |
254 | } | |
255 | ||
1da177e4 LT |
256 | static int hfsplus_link(struct dentry *src_dentry, struct inode *dst_dir, |
257 | struct dentry *dst_dentry) | |
258 | { | |
dd73a01a | 259 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dst_dir->i_sb); |
1da177e4 LT |
260 | struct inode *inode = src_dentry->d_inode; |
261 | struct inode *src_dir = src_dentry->d_parent->d_inode; | |
262 | struct qstr str; | |
263 | char name[32]; | |
264 | u32 cnid, id; | |
265 | int res; | |
266 | ||
267 | if (HFSPLUS_IS_RSRC(inode)) | |
268 | return -EPERM; | |
f6089ff8 CH |
269 | if (!S_ISREG(inode->i_mode)) |
270 | return -EPERM; | |
1da177e4 | 271 | |
7ac9fb9c | 272 | mutex_lock(&sbi->vh_mutex); |
1da177e4 LT |
273 | if (inode->i_ino == (u32)(unsigned long)src_dentry->d_fsdata) { |
274 | for (;;) { | |
275 | get_random_bytes(&id, sizeof(cnid)); | |
276 | id &= 0x3fffffff; | |
277 | str.name = name; | |
278 | str.len = sprintf(name, "iNode%d", id); | |
279 | res = hfsplus_rename_cat(inode->i_ino, | |
280 | src_dir, &src_dentry->d_name, | |
dd73a01a | 281 | sbi->hidden_dir, &str); |
1da177e4 LT |
282 | if (!res) |
283 | break; | |
284 | if (res != -EEXIST) | |
7ac9fb9c | 285 | goto out; |
1da177e4 | 286 | } |
f6089ff8 | 287 | HFSPLUS_I(inode)->linkid = id; |
dd73a01a | 288 | cnid = sbi->next_cnid++; |
1da177e4 | 289 | src_dentry->d_fsdata = (void *)(unsigned long)cnid; |
2753cc28 AS |
290 | res = hfsplus_create_cat(cnid, src_dir, |
291 | &src_dentry->d_name, inode); | |
1da177e4 LT |
292 | if (res) |
293 | /* panic? */ | |
7ac9fb9c | 294 | goto out; |
dd73a01a | 295 | sbi->file_count++; |
1da177e4 | 296 | } |
dd73a01a | 297 | cnid = sbi->next_cnid++; |
1da177e4 LT |
298 | res = hfsplus_create_cat(cnid, dst_dir, &dst_dentry->d_name, inode); |
299 | if (res) | |
7ac9fb9c | 300 | goto out; |
1da177e4 | 301 | |
d8c76e6f | 302 | inc_nlink(inode); |
1da177e4 | 303 | hfsplus_instantiate(dst_dentry, inode, cnid); |
7de9c6ee | 304 | ihold(inode); |
1da177e4 LT |
305 | inode->i_ctime = CURRENT_TIME_SEC; |
306 | mark_inode_dirty(inode); | |
dd73a01a CH |
307 | sbi->file_count++; |
308 | dst_dir->i_sb->s_dirt = 1; | |
7ac9fb9c CH |
309 | out: |
310 | mutex_unlock(&sbi->vh_mutex); | |
311 | return res; | |
1da177e4 LT |
312 | } |
313 | ||
314 | static int hfsplus_unlink(struct inode *dir, struct dentry *dentry) | |
315 | { | |
dd73a01a | 316 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
1da177e4 LT |
317 | struct inode *inode = dentry->d_inode; |
318 | struct qstr str; | |
319 | char name[32]; | |
320 | u32 cnid; | |
321 | int res; | |
322 | ||
323 | if (HFSPLUS_IS_RSRC(inode)) | |
324 | return -EPERM; | |
325 | ||
7ac9fb9c | 326 | mutex_lock(&sbi->vh_mutex); |
1da177e4 LT |
327 | cnid = (u32)(unsigned long)dentry->d_fsdata; |
328 | if (inode->i_ino == cnid && | |
6af502de | 329 | atomic_read(&HFSPLUS_I(inode)->opencnt)) { |
1da177e4 LT |
330 | str.name = name; |
331 | str.len = sprintf(name, "temp%lu", inode->i_ino); | |
332 | res = hfsplus_rename_cat(inode->i_ino, | |
333 | dir, &dentry->d_name, | |
dd73a01a | 334 | sbi->hidden_dir, &str); |
85b8fe8c | 335 | if (!res) { |
1da177e4 | 336 | inode->i_flags |= S_DEAD; |
85b8fe8c CH |
337 | drop_nlink(inode); |
338 | } | |
7ac9fb9c | 339 | goto out; |
1da177e4 LT |
340 | } |
341 | res = hfsplus_delete_cat(cnid, dir, &dentry->d_name); | |
342 | if (res) | |
7ac9fb9c | 343 | goto out; |
1da177e4 | 344 | |
af8c85bb | 345 | if (inode->i_nlink > 0) |
9a53c3a7 | 346 | drop_nlink(inode); |
76b0c26a RZ |
347 | if (inode->i_ino == cnid) |
348 | clear_nlink(inode); | |
349 | if (!inode->i_nlink) { | |
350 | if (inode->i_ino != cnid) { | |
dd73a01a | 351 | sbi->file_count--; |
6af502de | 352 | if (!atomic_read(&HFSPLUS_I(inode)->opencnt)) { |
76b0c26a | 353 | res = hfsplus_delete_cat(inode->i_ino, |
dd73a01a | 354 | sbi->hidden_dir, |
76b0c26a RZ |
355 | NULL); |
356 | if (!res) | |
357 | hfsplus_delete_inode(inode); | |
358 | } else | |
359 | inode->i_flags |= S_DEAD; | |
1da177e4 | 360 | } else |
76b0c26a | 361 | hfsplus_delete_inode(inode); |
af8c85bb | 362 | } else |
dd73a01a | 363 | sbi->file_count--; |
1da177e4 LT |
364 | inode->i_ctime = CURRENT_TIME_SEC; |
365 | mark_inode_dirty(inode); | |
7ac9fb9c CH |
366 | out: |
367 | mutex_unlock(&sbi->vh_mutex); | |
1da177e4 LT |
368 | return res; |
369 | } | |
370 | ||
1da177e4 LT |
371 | static int hfsplus_rmdir(struct inode *dir, struct dentry *dentry) |
372 | { | |
7ac9fb9c CH |
373 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
374 | struct inode *inode = dentry->d_inode; | |
1da177e4 LT |
375 | int res; |
376 | ||
1da177e4 LT |
377 | if (inode->i_size != 2) |
378 | return -ENOTEMPTY; | |
7ac9fb9c CH |
379 | |
380 | mutex_lock(&sbi->vh_mutex); | |
1da177e4 LT |
381 | res = hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name); |
382 | if (res) | |
7ac9fb9c | 383 | goto out; |
ce71ec36 | 384 | clear_nlink(inode); |
1da177e4 LT |
385 | inode->i_ctime = CURRENT_TIME_SEC; |
386 | hfsplus_delete_inode(inode); | |
387 | mark_inode_dirty(inode); | |
7ac9fb9c CH |
388 | out: |
389 | mutex_unlock(&sbi->vh_mutex); | |
390 | return res; | |
1da177e4 LT |
391 | } |
392 | ||
393 | static int hfsplus_symlink(struct inode *dir, struct dentry *dentry, | |
394 | const char *symname) | |
395 | { | |
7ac9fb9c | 396 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
1da177e4 | 397 | struct inode *inode; |
7ac9fb9c | 398 | int res = -ENOSPC; |
1da177e4 | 399 | |
7ac9fb9c | 400 | mutex_lock(&sbi->vh_mutex); |
f17c89bf | 401 | inode = hfsplus_new_inode(dir->i_sb, S_IFLNK | S_IRWXUGO); |
1da177e4 | 402 | if (!inode) |
7ac9fb9c | 403 | goto out; |
1da177e4 LT |
404 | |
405 | res = page_symlink(inode, symname, strlen(symname) + 1); | |
f17c89bf CH |
406 | if (res) |
407 | goto out_err; | |
1da177e4 | 408 | |
1da177e4 | 409 | res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode); |
f17c89bf CH |
410 | if (res) |
411 | goto out_err; | |
1da177e4 | 412 | |
f17c89bf CH |
413 | hfsplus_instantiate(dentry, inode, inode->i_ino); |
414 | mark_inode_dirty(inode); | |
7ac9fb9c | 415 | goto out; |
1da177e4 | 416 | |
f17c89bf | 417 | out_err: |
6d6b77f1 | 418 | clear_nlink(inode); |
f17c89bf CH |
419 | hfsplus_delete_inode(inode); |
420 | iput(inode); | |
7ac9fb9c CH |
421 | out: |
422 | mutex_unlock(&sbi->vh_mutex); | |
1da177e4 LT |
423 | return res; |
424 | } | |
425 | ||
426 | static int hfsplus_mknod(struct inode *dir, struct dentry *dentry, | |
427 | int mode, dev_t rdev) | |
428 | { | |
7ac9fb9c | 429 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
1da177e4 | 430 | struct inode *inode; |
7ac9fb9c | 431 | int res = -ENOSPC; |
1da177e4 | 432 | |
7ac9fb9c | 433 | mutex_lock(&sbi->vh_mutex); |
30d3abbe | 434 | inode = hfsplus_new_inode(dir->i_sb, mode); |
1da177e4 | 435 | if (!inode) |
7ac9fb9c | 436 | goto out; |
1da177e4 | 437 | |
90e61690 CH |
438 | if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISFIFO(mode) || S_ISSOCK(mode)) |
439 | init_special_inode(inode, mode, rdev); | |
440 | ||
1da177e4 LT |
441 | res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode); |
442 | if (res) { | |
6d6b77f1 | 443 | clear_nlink(inode); |
1da177e4 LT |
444 | hfsplus_delete_inode(inode); |
445 | iput(inode); | |
7ac9fb9c | 446 | goto out; |
1da177e4 | 447 | } |
30d3abbe | 448 | |
1da177e4 LT |
449 | hfsplus_instantiate(dentry, inode, inode->i_ino); |
450 | mark_inode_dirty(inode); | |
7ac9fb9c CH |
451 | out: |
452 | mutex_unlock(&sbi->vh_mutex); | |
453 | return res; | |
1da177e4 LT |
454 | } |
455 | ||
30d3abbe CH |
456 | static int hfsplus_create(struct inode *dir, struct dentry *dentry, int mode, |
457 | struct nameidata *nd) | |
458 | { | |
459 | return hfsplus_mknod(dir, dentry, mode, 0); | |
460 | } | |
461 | ||
462 | static int hfsplus_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |
463 | { | |
464 | return hfsplus_mknod(dir, dentry, mode | S_IFDIR, 0); | |
465 | } | |
466 | ||
1da177e4 LT |
467 | static int hfsplus_rename(struct inode *old_dir, struct dentry *old_dentry, |
468 | struct inode *new_dir, struct dentry *new_dentry) | |
469 | { | |
470 | int res; | |
471 | ||
472 | /* Unlink destination if it already exists */ | |
473 | if (new_dentry->d_inode) { | |
e3911785 | 474 | if (S_ISDIR(new_dentry->d_inode->i_mode)) |
40de9a7c | 475 | res = hfsplus_rmdir(new_dir, new_dentry); |
e3911785 | 476 | else |
40de9a7c | 477 | res = hfsplus_unlink(new_dir, new_dentry); |
1da177e4 LT |
478 | if (res) |
479 | return res; | |
480 | } | |
481 | ||
482 | res = hfsplus_rename_cat((u32)(unsigned long)old_dentry->d_fsdata, | |
483 | old_dir, &old_dentry->d_name, | |
484 | new_dir, &new_dentry->d_name); | |
485 | if (!res) | |
486 | new_dentry->d_fsdata = old_dentry->d_fsdata; | |
487 | return res; | |
488 | } | |
489 | ||
92e1d5be | 490 | const struct inode_operations hfsplus_dir_inode_operations = { |
1da177e4 LT |
491 | .lookup = hfsplus_lookup, |
492 | .create = hfsplus_create, | |
493 | .link = hfsplus_link, | |
494 | .unlink = hfsplus_unlink, | |
495 | .mkdir = hfsplus_mkdir, | |
496 | .rmdir = hfsplus_rmdir, | |
497 | .symlink = hfsplus_symlink, | |
498 | .mknod = hfsplus_mknod, | |
499 | .rename = hfsplus_rename, | |
500 | }; | |
501 | ||
4b6f5d20 | 502 | const struct file_operations hfsplus_dir_operations = { |
eb29d66d | 503 | .fsync = hfsplus_file_fsync, |
1da177e4 LT |
504 | .read = generic_read_dir, |
505 | .readdir = hfsplus_readdir, | |
7cc4bcc6 | 506 | .unlocked_ioctl = hfsplus_ioctl, |
1da177e4 LT |
507 | .llseek = generic_file_llseek, |
508 | .release = hfsplus_dir_release, | |
509 | }; |