| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  linux/fs/hfs/dir.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 1995-1997  Paul H. Hargrove | 
					
						
							|  |  |  |  * (C) 2003 Ardis Technologies <roman@ardistech.com> | 
					
						
							|  |  |  |  * This file may be distributed under the terms of the GNU General Public License. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file contains directory-related functions independent of which | 
					
						
							|  |  |  |  * scheme is being used to represent forks. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Based on the minix file system code, (C) 1991, 1992 by Linus Torvalds | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "hfs_fs.h"
 | 
					
						
							|  |  |  | #include "btree.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * hfs_lookup() | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static struct dentry *hfs_lookup(struct inode *dir, struct dentry *dentry, | 
					
						
							| 
									
										
										
										
											2012-06-10 17:13:09 -04:00
										 |  |  | 				 unsigned int flags) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	hfs_cat_rec rec; | 
					
						
							|  |  |  | 	struct hfs_find_data fd; | 
					
						
							|  |  |  | 	struct inode *inode = NULL; | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:27:52 -07:00
										 |  |  | 	res = hfs_find_init(HFS_SB(dir->i_sb)->cat_tree, &fd); | 
					
						
							|  |  |  | 	if (res) | 
					
						
							|  |  |  | 		return ERR_PTR(res); | 
					
						
							| 
									
										
										
										
											2005-09-06 15:18:49 -07:00
										 |  |  | 	hfs_cat_build_key(dir->i_sb, fd.search_key, dir->i_ino, &dentry->d_name); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	res = hfs_brec_read(&fd, &rec, sizeof(rec)); | 
					
						
							|  |  |  | 	if (res) { | 
					
						
							|  |  |  | 		hfs_find_exit(&fd); | 
					
						
							|  |  |  | 		if (res == -ENOENT) { | 
					
						
							|  |  |  | 			/* No such entry */ | 
					
						
							|  |  |  | 			inode = NULL; | 
					
						
							|  |  |  | 			goto done; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return ERR_PTR(res); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	inode = hfs_iget(dir->i_sb, &fd.search_key->cat, &rec); | 
					
						
							|  |  |  | 	hfs_find_exit(&fd); | 
					
						
							|  |  |  | 	if (!inode) | 
					
						
							|  |  |  | 		return ERR_PTR(-EACCES); | 
					
						
							|  |  |  | done: | 
					
						
							|  |  |  | 	d_add(dentry, inode); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * hfs_readdir | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | static int hfs_readdir(struct file *file, struct dir_context *ctx) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 	struct inode *inode = file_inode(file); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct super_block *sb = inode->i_sb; | 
					
						
							|  |  |  | 	int len, err; | 
					
						
							| 
									
										
										
										
											2005-09-06 15:18:49 -07:00
										 |  |  | 	char strbuf[HFS_MAX_NAMELEN]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	union hfs_cat_rec entry; | 
					
						
							|  |  |  | 	struct hfs_find_data fd; | 
					
						
							|  |  |  | 	struct hfs_readdir_data *rd; | 
					
						
							|  |  |  | 	u16 type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 	if (ctx->pos >= inode->i_size) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:27:52 -07:00
										 |  |  | 	err = hfs_find_init(HFS_SB(sb)->cat_tree, &fd); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2005-09-06 15:18:49 -07:00
										 |  |  | 	hfs_cat_build_key(sb, fd.search_key, inode->i_ino, NULL); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	err = hfs_brec_find(&fd); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 	if (ctx->pos == 0) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		/* This is completely artificial... */ | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 		if (!dir_emit_dot(file, ctx)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			goto out; | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 		ctx->pos = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (ctx->pos == 1) { | 
					
						
							| 
									
										
										
										
											2009-12-14 17:57:37 -08:00
										 |  |  | 		if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) { | 
					
						
							|  |  |  | 			err = -EIO; | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, fd.entrylength); | 
					
						
							|  |  |  | 		if (entry.type != HFS_CDR_THD) { | 
					
						
							| 
									
										
										
										
											2013-04-30 15:27:55 -07:00
										 |  |  | 			pr_err("bad catalog folder thread\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			err = -EIO; | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		//if (fd.entrylength < HFS_MIN_THREAD_SZ) {
 | 
					
						
							| 
									
										
										
										
											2013-04-30 15:27:55 -07:00
										 |  |  | 		//	pr_err("truncated catalog thread\n");
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		//	err = -EIO;
 | 
					
						
							|  |  |  | 		//	goto out;
 | 
					
						
							|  |  |  | 		//}
 | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 		if (!dir_emit(ctx, "..", 2, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			    be32_to_cpu(entry.thread.ParID), DT_DIR)) | 
					
						
							|  |  |  | 			goto out; | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 		ctx->pos = 2; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 	if (ctx->pos >= inode->i_size) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	err = hfs_brec_goto(&fd, ctx->pos - 1); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (;;) { | 
					
						
							|  |  |  | 		if (be32_to_cpu(fd.key->cat.ParID) != inode->i_ino) { | 
					
						
							| 
									
										
										
										
											2013-04-30 15:27:55 -07:00
										 |  |  | 			pr_err("walked past end of dir\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			err = -EIO; | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-12-14 17:57:37 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) { | 
					
						
							|  |  |  | 			err = -EIO; | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, fd.entrylength); | 
					
						
							|  |  |  | 		type = entry.type; | 
					
						
							| 
									
										
										
										
											2005-09-06 15:18:49 -07:00
										 |  |  | 		len = hfs_mac2asc(sb, strbuf, &fd.key->cat.CName); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (type == HFS_CDR_DIR) { | 
					
						
							|  |  |  | 			if (fd.entrylength < sizeof(struct hfs_cat_dir)) { | 
					
						
							| 
									
										
										
										
											2013-04-30 15:27:55 -07:00
										 |  |  | 				pr_err("small dir entry\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				err = -EIO; | 
					
						
							|  |  |  | 				goto out; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 			if (!dir_emit(ctx, strbuf, len, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				    be32_to_cpu(entry.dir.DirID), DT_DIR)) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		} else if (type == HFS_CDR_FIL) { | 
					
						
							|  |  |  | 			if (fd.entrylength < sizeof(struct hfs_cat_file)) { | 
					
						
							| 
									
										
										
										
											2013-04-30 15:27:55 -07:00
										 |  |  | 				pr_err("small file entry\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				err = -EIO; | 
					
						
							|  |  |  | 				goto out; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 			if (!dir_emit(ctx, strbuf, len, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				    be32_to_cpu(entry.file.FlNum), DT_REG)) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2013-04-30 15:27:55 -07:00
										 |  |  | 			pr_err("bad catalog entry type %d\n", type); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			err = -EIO; | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 		ctx->pos++; | 
					
						
							|  |  |  | 		if (ctx->pos >= inode->i_size) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			goto out; | 
					
						
							|  |  |  | 		err = hfs_brec_goto(&fd, 1); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 	rd = file->private_data; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (!rd) { | 
					
						
							|  |  |  | 		rd = kmalloc(sizeof(struct hfs_readdir_data), GFP_KERNEL); | 
					
						
							|  |  |  | 		if (!rd) { | 
					
						
							|  |  |  | 			err = -ENOMEM; | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 		file->private_data = rd; | 
					
						
							|  |  |  | 		rd->file = file; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		list_add(&rd->list, &HFS_I(inode)->open_dir_list); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	memcpy(&rd->key, &fd.key, sizeof(struct hfs_cat_key)); | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	hfs_find_exit(&fd); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int hfs_dir_release(struct inode *inode, struct file *file) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct hfs_readdir_data *rd = file->private_data; | 
					
						
							|  |  |  | 	if (rd) { | 
					
						
							| 
									
										
										
										
											2013-05-05 20:20:25 -04:00
										 |  |  | 		mutex_lock(&inode->i_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		list_del(&rd->list); | 
					
						
							| 
									
										
										
										
											2013-05-05 20:20:25 -04:00
										 |  |  | 		mutex_unlock(&inode->i_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		kfree(rd); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * hfs_create() | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is the create() entry in the inode_operations structure for | 
					
						
							|  |  |  |  * regular HFS directories.  The purpose is to create a new file in | 
					
						
							|  |  |  |  * a directory and return a corresponding inode, given the inode for | 
					
						
							|  |  |  |  * the directory and the name (and its length) of the new file. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-07-26 01:42:34 -04:00
										 |  |  | static int hfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, | 
					
						
							| 
									
										
										
										
											2012-06-10 18:05:36 -04:00
										 |  |  | 		      bool excl) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct inode *inode; | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	inode = hfs_new_inode(dir, &dentry->d_name, mode); | 
					
						
							|  |  |  | 	if (!inode) | 
					
						
							|  |  |  | 		return -ENOSPC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res = hfs_cat_create(inode->i_ino, dir, &dentry->d_name, inode); | 
					
						
							|  |  |  | 	if (res) { | 
					
						
							| 
									
										
										
										
											2011-10-28 14:13:28 +02:00
										 |  |  | 		clear_nlink(inode); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		hfs_delete_inode(inode); | 
					
						
							|  |  |  | 		iput(inode); | 
					
						
							|  |  |  | 		return res; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	d_instantiate(dentry, inode); | 
					
						
							|  |  |  | 	mark_inode_dirty(inode); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * hfs_mkdir() | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is the mkdir() entry in the inode_operations structure for | 
					
						
							|  |  |  |  * regular HFS directories.  The purpose is to create a new directory | 
					
						
							|  |  |  |  * in a directory, given the inode for the parent directory and the | 
					
						
							|  |  |  |  * name (and its length) of the new directory. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-07-26 01:41:39 -04:00
										 |  |  | static int hfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct inode *inode; | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	inode = hfs_new_inode(dir, &dentry->d_name, S_IFDIR | mode); | 
					
						
							|  |  |  | 	if (!inode) | 
					
						
							|  |  |  | 		return -ENOSPC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res = hfs_cat_create(inode->i_ino, dir, &dentry->d_name, inode); | 
					
						
							|  |  |  | 	if (res) { | 
					
						
							| 
									
										
										
										
											2011-10-28 14:13:28 +02:00
										 |  |  | 		clear_nlink(inode); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		hfs_delete_inode(inode); | 
					
						
							|  |  |  | 		iput(inode); | 
					
						
							|  |  |  | 		return res; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	d_instantiate(dentry, inode); | 
					
						
							|  |  |  | 	mark_inode_dirty(inode); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  |  * hfs_remove() | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  |  * This serves as both unlink() and rmdir() in the inode_operations | 
					
						
							|  |  |  |  * structure for regular HFS directories.  The purpose is to delete | 
					
						
							|  |  |  |  * an existing child, given the inode for the parent directory and | 
					
						
							|  |  |  |  * the name (and its length) of the existing directory. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  |  * HFS does not have hardlinks, so both rmdir and unlink set the | 
					
						
							|  |  |  |  * link count to 0.  The only difference is the emptiness check. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  | static int hfs_remove(struct inode *dir, struct dentry *dentry) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  | 	struct inode *inode = dentry->d_inode; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  | 	if (S_ISDIR(inode->i_mode) && inode->i_size != 2) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -ENOTEMPTY; | 
					
						
							|  |  |  | 	res = hfs_cat_delete(inode->i_ino, dir, &dentry->d_name); | 
					
						
							|  |  |  | 	if (res) | 
					
						
							|  |  |  | 		return res; | 
					
						
							| 
									
										
										
										
											2006-09-30 23:29:06 -07:00
										 |  |  | 	clear_nlink(inode); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	inode->i_ctime = CURRENT_TIME_SEC; | 
					
						
							|  |  |  | 	hfs_delete_inode(inode); | 
					
						
							|  |  |  | 	mark_inode_dirty(inode); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * hfs_rename() | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is the rename() entry in the inode_operations structure for | 
					
						
							|  |  |  |  * regular HFS directories.  The purpose is to rename an existing | 
					
						
							|  |  |  |  * file or directory, given the inode for the current directory and | 
					
						
							|  |  |  |  * the name (and its length) of the existing file/directory and the | 
					
						
							|  |  |  |  * inode for the new directory and the name (and its length) of the | 
					
						
							|  |  |  |  * new file/directory. | 
					
						
							|  |  |  |  * XXX: how do you handle must_be dir? | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int hfs_rename(struct inode *old_dir, struct dentry *old_dentry, | 
					
						
							|  |  |  | 		      struct inode *new_dir, struct dentry *new_dentry) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Unlink destination if it already exists */ | 
					
						
							|  |  |  | 	if (new_dentry->d_inode) { | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  | 		res = hfs_remove(new_dir, new_dentry); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (res) | 
					
						
							|  |  |  | 			return res; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res = hfs_cat_move(old_dentry->d_inode->i_ino, | 
					
						
							|  |  |  | 			   old_dir, &old_dentry->d_name, | 
					
						
							|  |  |  | 			   new_dir, &new_dentry->d_name); | 
					
						
							|  |  |  | 	if (!res) | 
					
						
							| 
									
										
										
										
											2005-09-06 15:18:49 -07:00
										 |  |  | 		hfs_cat_build_key(old_dir->i_sb, | 
					
						
							|  |  |  | 				  (btree_key *)&HFS_I(old_dentry->d_inode)->cat_key, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				  new_dir->i_ino, &new_dentry->d_name); | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-28 01:56:42 -08:00
										 |  |  | const struct file_operations hfs_dir_operations = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.read		= generic_read_dir, | 
					
						
							| 
									
										
										
										
											2013-05-22 14:29:35 -04:00
										 |  |  | 	.iterate	= hfs_readdir, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.llseek		= generic_file_llseek, | 
					
						
							|  |  |  | 	.release	= hfs_dir_release, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-12 00:55:39 -08:00
										 |  |  | const struct inode_operations hfs_dir_inode_operations = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.create		= hfs_create, | 
					
						
							|  |  |  | 	.lookup		= hfs_lookup, | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  | 	.unlink		= hfs_remove, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.mkdir		= hfs_mkdir, | 
					
						
							| 
									
										
										
										
											2011-03-02 23:46:51 -05:00
										 |  |  | 	.rmdir		= hfs_remove, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.rename		= hfs_rename, | 
					
						
							|  |  |  | 	.setattr	= hfs_inode_setattr, | 
					
						
							|  |  |  | }; |