4 * Copyright (C) 1995-1997 Paul H. Hargrove
6 * This file may be distributed under the terms of the GNU General Public License.
8 * This file contains directory-related functions independent of which
9 * scheme is being used to represent forks.
11 * Based on the minix file system code, (C) 1991, 1992 by Linus Torvalds
20 static struct dentry *hfs_lookup(struct inode *dir, struct dentry *dentry,
24 struct hfs_find_data fd;
25 struct inode *inode = NULL;
28 dentry->d_op = &hfs_dentry_operations;
30 hfs_find_init(HFS_SB(dir->i_sb)->cat_tree, &fd);
31 hfs_cat_build_key(dir->i_sb, fd.search_key, dir->i_ino, &dentry->d_name);
32 res = hfs_brec_read(&fd, &rec, sizeof(rec));
42 inode = hfs_iget(dir->i_sb, &fd.search_key->cat, &rec);
45 return ERR_PTR(-EACCES);
54 static int hfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
56 struct inode *inode = filp->f_path.dentry->d_inode;
57 struct super_block *sb = inode->i_sb;
59 char strbuf[HFS_MAX_NAMELEN];
60 union hfs_cat_rec entry;
61 struct hfs_find_data fd;
62 struct hfs_readdir_data *rd;
65 if (filp->f_pos >= inode->i_size)
68 hfs_find_init(HFS_SB(sb)->cat_tree, &fd);
69 hfs_cat_build_key(sb, fd.search_key, inode->i_ino, NULL);
70 err = hfs_brec_find(&fd);
74 switch ((u32)filp->f_pos) {
76 /* This is completely artificial... */
77 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR))
82 if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) {
87 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, fd.entrylength);
88 if (entry.type != HFS_CDR_THD) {
89 printk(KERN_ERR "hfs: bad catalog folder thread\n");
93 //if (fd.entrylength < HFS_MIN_THREAD_SZ) {
94 // printk(KERN_ERR "hfs: truncated catalog thread\n");
98 if (filldir(dirent, "..", 2, 1,
99 be32_to_cpu(entry.thread.ParID), DT_DIR))
104 if (filp->f_pos >= inode->i_size)
106 err = hfs_brec_goto(&fd, filp->f_pos - 1);
112 if (be32_to_cpu(fd.key->cat.ParID) != inode->i_ino) {
113 printk(KERN_ERR "hfs: walked past end of dir\n");
118 if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) {
123 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, fd.entrylength);
125 len = hfs_mac2asc(sb, strbuf, &fd.key->cat.CName);
126 if (type == HFS_CDR_DIR) {
127 if (fd.entrylength < sizeof(struct hfs_cat_dir)) {
128 printk(KERN_ERR "hfs: small dir entry\n");
132 if (filldir(dirent, strbuf, len, filp->f_pos,
133 be32_to_cpu(entry.dir.DirID), DT_DIR))
135 } else if (type == HFS_CDR_FIL) {
136 if (fd.entrylength < sizeof(struct hfs_cat_file)) {
137 printk(KERN_ERR "hfs: small file entry\n");
141 if (filldir(dirent, strbuf, len, filp->f_pos,
142 be32_to_cpu(entry.file.FlNum), DT_REG))
145 printk(KERN_ERR "hfs: bad catalog entry type %d\n", type);
150 if (filp->f_pos >= inode->i_size)
152 err = hfs_brec_goto(&fd, 1);
156 rd = filp->private_data;
158 rd = kmalloc(sizeof(struct hfs_readdir_data), GFP_KERNEL);
163 filp->private_data = rd;
165 list_add(&rd->list, &HFS_I(inode)->open_dir_list);
167 memcpy(&rd->key, &fd.key, sizeof(struct hfs_cat_key));
173 static int hfs_dir_release(struct inode *inode, struct file *file)
175 struct hfs_readdir_data *rd = file->private_data;
186 * This is the create() entry in the inode_operations structure for
187 * regular HFS directories. The purpose is to create a new file in
188 * a directory and return a corresponding inode, given the inode for
189 * the directory and the name (and its length) of the new file.
191 static int hfs_create(struct inode *dir, struct dentry *dentry, int mode,
192 struct nameidata *nd)
197 inode = hfs_new_inode(dir, &dentry->d_name, mode);
201 res = hfs_cat_create(inode->i_ino, dir, &dentry->d_name, inode);
204 hfs_delete_inode(inode);
208 d_instantiate(dentry, inode);
209 mark_inode_dirty(inode);
216 * This is the mkdir() entry in the inode_operations structure for
217 * regular HFS directories. The purpose is to create a new directory
218 * in a directory, given the inode for the parent directory and the
219 * name (and its length) of the new directory.
221 static int hfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
226 inode = hfs_new_inode(dir, &dentry->d_name, S_IFDIR | mode);
230 res = hfs_cat_create(inode->i_ino, dir, &dentry->d_name, inode);
233 hfs_delete_inode(inode);
237 d_instantiate(dentry, inode);
238 mark_inode_dirty(inode);
245 * This is the unlink() entry in the inode_operations structure for
246 * regular HFS directories. The purpose is to delete an existing
247 * file, given the inode for the parent directory and the name
248 * (and its length) of the existing file.
250 static int hfs_unlink(struct inode *dir, struct dentry *dentry)
255 inode = dentry->d_inode;
256 res = hfs_cat_delete(inode->i_ino, dir, &dentry->d_name);
261 hfs_delete_inode(inode);
262 inode->i_ctime = CURRENT_TIME_SEC;
263 mark_inode_dirty(inode);
271 * This is the rmdir() entry in the inode_operations structure for
272 * regular HFS directories. The purpose is to delete an existing
273 * directory, given the inode for the parent directory and the name
274 * (and its length) of the existing directory.
276 static int hfs_rmdir(struct inode *dir, struct dentry *dentry)
281 inode = dentry->d_inode;
282 if (inode->i_size != 2)
284 res = hfs_cat_delete(inode->i_ino, dir, &dentry->d_name);
288 inode->i_ctime = CURRENT_TIME_SEC;
289 hfs_delete_inode(inode);
290 mark_inode_dirty(inode);
297 * This is the rename() entry in the inode_operations structure for
298 * regular HFS directories. The purpose is to rename an existing
299 * file or directory, given the inode for the current directory and
300 * the name (and its length) of the existing file/directory and the
301 * inode for the new directory and the name (and its length) of the
302 * new file/directory.
303 * XXX: how do you handle must_be dir?
305 static int hfs_rename(struct inode *old_dir, struct dentry *old_dentry,
306 struct inode *new_dir, struct dentry *new_dentry)
310 /* Unlink destination if it already exists */
311 if (new_dentry->d_inode) {
312 res = hfs_unlink(new_dir, new_dentry);
317 res = hfs_cat_move(old_dentry->d_inode->i_ino,
318 old_dir, &old_dentry->d_name,
319 new_dir, &new_dentry->d_name);
321 hfs_cat_build_key(old_dir->i_sb,
322 (btree_key *)&HFS_I(old_dentry->d_inode)->cat_key,
323 new_dir->i_ino, &new_dentry->d_name);
327 const struct file_operations hfs_dir_operations = {
328 .read = generic_read_dir,
329 .readdir = hfs_readdir,
330 .llseek = generic_file_llseek,
331 .release = hfs_dir_release,
334 const struct inode_operations hfs_dir_inode_operations = {
335 .create = hfs_create,
336 .lookup = hfs_lookup,
337 .unlink = hfs_unlink,
340 .rename = hfs_rename,
341 .setattr = hfs_inode_setattr,