|
@@ -91,7 +91,8 @@ void hfsplus_cat_set_perms(struct inode *inode, struct hfsplus_perm *perms)
|
|
perms->dev = 0;
|
|
perms->dev = 0;
|
|
}
|
|
}
|
|
|
|
|
|
-static int hfsplus_cat_build_record(hfsplus_cat_entry *entry, u32 cnid, struct inode *inode)
|
|
|
|
|
|
+static int hfsplus_cat_build_record(hfsplus_cat_entry *entry,
|
|
|
|
+ u32 cnid, struct inode *inode)
|
|
{
|
|
{
|
|
struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
|
|
struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
|
|
|
|
|
|
@@ -128,20 +129,32 @@ static int hfsplus_cat_build_record(hfsplus_cat_entry *entry, u32 cnid, struct i
|
|
if (cnid == inode->i_ino) {
|
|
if (cnid == inode->i_ino) {
|
|
hfsplus_cat_set_perms(inode, &file->permissions);
|
|
hfsplus_cat_set_perms(inode, &file->permissions);
|
|
if (S_ISLNK(inode->i_mode)) {
|
|
if (S_ISLNK(inode->i_mode)) {
|
|
- file->user_info.fdType = cpu_to_be32(HFSP_SYMLINK_TYPE);
|
|
|
|
- file->user_info.fdCreator = cpu_to_be32(HFSP_SYMLINK_CREATOR);
|
|
|
|
|
|
+ file->user_info.fdType =
|
|
|
|
+ cpu_to_be32(HFSP_SYMLINK_TYPE);
|
|
|
|
+ file->user_info.fdCreator =
|
|
|
|
+ cpu_to_be32(HFSP_SYMLINK_CREATOR);
|
|
} else {
|
|
} else {
|
|
- file->user_info.fdType = cpu_to_be32(sbi->type);
|
|
|
|
- file->user_info.fdCreator = cpu_to_be32(sbi->creator);
|
|
|
|
|
|
+ file->user_info.fdType =
|
|
|
|
+ cpu_to_be32(sbi->type);
|
|
|
|
+ file->user_info.fdCreator =
|
|
|
|
+ cpu_to_be32(sbi->creator);
|
|
}
|
|
}
|
|
- if ((file->permissions.rootflags | file->permissions.userflags) & HFSPLUS_FLG_IMMUTABLE)
|
|
|
|
- file->flags |= cpu_to_be16(HFSPLUS_FILE_LOCKED);
|
|
|
|
|
|
+ if (HFSPLUS_FLG_IMMUTABLE &
|
|
|
|
+ (file->permissions.rootflags |
|
|
|
|
+ file->permissions.userflags))
|
|
|
|
+ file->flags |=
|
|
|
|
+ cpu_to_be16(HFSPLUS_FILE_LOCKED);
|
|
} else {
|
|
} else {
|
|
- file->user_info.fdType = cpu_to_be32(HFSP_HARDLINK_TYPE);
|
|
|
|
- file->user_info.fdCreator = cpu_to_be32(HFSP_HFSPLUS_CREATOR);
|
|
|
|
- file->user_info.fdFlags = cpu_to_be16(0x100);
|
|
|
|
- file->create_date = HFSPLUS_I(sbi->hidden_dir)->create_date;
|
|
|
|
- file->permissions.dev = cpu_to_be32(HFSPLUS_I(inode)->linkid);
|
|
|
|
|
|
+ file->user_info.fdType =
|
|
|
|
+ cpu_to_be32(HFSP_HARDLINK_TYPE);
|
|
|
|
+ file->user_info.fdCreator =
|
|
|
|
+ cpu_to_be32(HFSP_HFSPLUS_CREATOR);
|
|
|
|
+ file->user_info.fdFlags =
|
|
|
|
+ cpu_to_be16(0x100);
|
|
|
|
+ file->create_date =
|
|
|
|
+ HFSPLUS_I(sbi->hidden_dir)->create_date;
|
|
|
|
+ file->permissions.dev =
|
|
|
|
+ cpu_to_be32(HFSPLUS_I(inode)->linkid);
|
|
}
|
|
}
|
|
return sizeof(*file);
|
|
return sizeof(*file);
|
|
}
|
|
}
|
|
@@ -182,12 +195,14 @@ int hfsplus_find_cat(struct super_block *sb, u32 cnid,
|
|
return -EIO;
|
|
return -EIO;
|
|
}
|
|
}
|
|
|
|
|
|
- hfsplus_cat_build_key_uni(fd->search_key, be32_to_cpu(tmp.thread.parentID),
|
|
|
|
- &tmp.thread.nodeName);
|
|
|
|
|
|
+ hfsplus_cat_build_key_uni(fd->search_key,
|
|
|
|
+ be32_to_cpu(tmp.thread.parentID),
|
|
|
|
+ &tmp.thread.nodeName);
|
|
return hfs_brec_find(fd);
|
|
return hfs_brec_find(fd);
|
|
}
|
|
}
|
|
|
|
|
|
-int hfsplus_create_cat(u32 cnid, struct inode *dir, struct qstr *str, struct inode *inode)
|
|
|
|
|
|
+int hfsplus_create_cat(u32 cnid, struct inode *dir,
|
|
|
|
+ struct qstr *str, struct inode *inode)
|
|
{
|
|
{
|
|
struct super_block *sb = dir->i_sb;
|
|
struct super_block *sb = dir->i_sb;
|
|
struct hfs_find_data fd;
|
|
struct hfs_find_data fd;
|
|
@@ -195,13 +210,15 @@ int hfsplus_create_cat(u32 cnid, struct inode *dir, struct qstr *str, struct ino
|
|
int entry_size;
|
|
int entry_size;
|
|
int err;
|
|
int err;
|
|
|
|
|
|
- dprint(DBG_CAT_MOD, "create_cat: %s,%u(%d)\n", str->name, cnid, inode->i_nlink);
|
|
|
|
|
|
+ dprint(DBG_CAT_MOD, "create_cat: %s,%u(%d)\n",
|
|
|
|
+ str->name, cnid, inode->i_nlink);
|
|
hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
|
|
hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
|
|
|
|
|
|
hfsplus_cat_build_key(sb, fd.search_key, cnid, NULL);
|
|
hfsplus_cat_build_key(sb, fd.search_key, cnid, NULL);
|
|
- entry_size = hfsplus_fill_cat_thread(sb, &entry, S_ISDIR(inode->i_mode) ?
|
|
|
|
|
|
+ entry_size = hfsplus_fill_cat_thread(sb, &entry,
|
|
|
|
+ S_ISDIR(inode->i_mode) ?
|
|
HFSPLUS_FOLDER_THREAD : HFSPLUS_FILE_THREAD,
|
|
HFSPLUS_FOLDER_THREAD : HFSPLUS_FILE_THREAD,
|
|
- dir->i_ino, str);
|
|
|
|
|
|
+ dir->i_ino, str);
|
|
err = hfs_brec_find(&fd);
|
|
err = hfs_brec_find(&fd);
|
|
if (err != -ENOENT) {
|
|
if (err != -ENOENT) {
|
|
if (!err)
|
|
if (!err)
|
|
@@ -250,7 +267,8 @@ int hfsplus_delete_cat(u32 cnid, struct inode *dir, struct qstr *str)
|
|
int err, off;
|
|
int err, off;
|
|
u16 type;
|
|
u16 type;
|
|
|
|
|
|
- dprint(DBG_CAT_MOD, "delete_cat: %s,%u\n", str ? str->name : NULL, cnid);
|
|
|
|
|
|
+ dprint(DBG_CAT_MOD, "delete_cat: %s,%u\n",
|
|
|
|
+ str ? str->name : NULL, cnid);
|
|
hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
|
|
hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
|
|
|
|
|
|
if (!str) {
|
|
if (!str) {
|
|
@@ -261,11 +279,15 @@ int hfsplus_delete_cat(u32 cnid, struct inode *dir, struct qstr *str)
|
|
if (err)
|
|
if (err)
|
|
goto out;
|
|
goto out;
|
|
|
|
|
|
- off = fd.entryoffset + offsetof(struct hfsplus_cat_thread, nodeName);
|
|
|
|
|
|
+ off = fd.entryoffset +
|
|
|
|
+ offsetof(struct hfsplus_cat_thread, nodeName);
|
|
fd.search_key->cat.parent = cpu_to_be32(dir->i_ino);
|
|
fd.search_key->cat.parent = cpu_to_be32(dir->i_ino);
|
|
- hfs_bnode_read(fd.bnode, &fd.search_key->cat.name.length, off, 2);
|
|
|
|
|
|
+ hfs_bnode_read(fd.bnode,
|
|
|
|
+ &fd.search_key->cat.name.length, off, 2);
|
|
len = be16_to_cpu(fd.search_key->cat.name.length) * 2;
|
|
len = be16_to_cpu(fd.search_key->cat.name.length) * 2;
|
|
- hfs_bnode_read(fd.bnode, &fd.search_key->cat.name.unicode, off + 2, len);
|
|
|
|
|
|
+ hfs_bnode_read(fd.bnode,
|
|
|
|
+ &fd.search_key->cat.name.unicode,
|
|
|
|
+ off + 2, len);
|
|
fd.search_key->key_len = cpu_to_be16(6 + len);
|
|
fd.search_key->key_len = cpu_to_be16(6 + len);
|
|
} else
|
|
} else
|
|
hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino, str);
|
|
hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino, str);
|
|
@@ -282,7 +304,8 @@ int hfsplus_delete_cat(u32 cnid, struct inode *dir, struct qstr *str)
|
|
hfsplus_free_fork(sb, cnid, &fork, HFSPLUS_TYPE_DATA);
|
|
hfsplus_free_fork(sb, cnid, &fork, HFSPLUS_TYPE_DATA);
|
|
#endif
|
|
#endif
|
|
|
|
|
|
- off = fd.entryoffset + offsetof(struct hfsplus_cat_file, rsrc_fork);
|
|
|
|
|
|
+ off = fd.entryoffset +
|
|
|
|
+ offsetof(struct hfsplus_cat_file, rsrc_fork);
|
|
hfs_bnode_read(fd.bnode, &fork, off, sizeof(fork));
|
|
hfs_bnode_read(fd.bnode, &fork, off, sizeof(fork));
|
|
hfsplus_free_fork(sb, cnid, &fork, HFSPLUS_TYPE_RSRC);
|
|
hfsplus_free_fork(sb, cnid, &fork, HFSPLUS_TYPE_RSRC);
|
|
}
|
|
}
|
|
@@ -326,7 +349,8 @@ int hfsplus_rename_cat(u32 cnid,
|
|
int entry_size, type;
|
|
int entry_size, type;
|
|
int err = 0;
|
|
int err = 0;
|
|
|
|
|
|
- dprint(DBG_CAT_MOD, "rename_cat: %u - %lu,%s - %lu,%s\n", cnid, src_dir->i_ino, src_name->name,
|
|
|
|
|
|
+ dprint(DBG_CAT_MOD, "rename_cat: %u - %lu,%s - %lu,%s\n",
|
|
|
|
+ cnid, src_dir->i_ino, src_name->name,
|
|
dst_dir->i_ino, dst_name->name);
|
|
dst_dir->i_ino, dst_name->name);
|
|
hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &src_fd);
|
|
hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &src_fd);
|
|
dst_fd = src_fd;
|
|
dst_fd = src_fd;
|
|
@@ -378,7 +402,8 @@ int hfsplus_rename_cat(u32 cnid,
|
|
|
|
|
|
/* create new thread entry */
|
|
/* create new thread entry */
|
|
hfsplus_cat_build_key(sb, dst_fd.search_key, cnid, NULL);
|
|
hfsplus_cat_build_key(sb, dst_fd.search_key, cnid, NULL);
|
|
- entry_size = hfsplus_fill_cat_thread(sb, &entry, type, dst_dir->i_ino, dst_name);
|
|
|
|
|
|
+ entry_size = hfsplus_fill_cat_thread(sb, &entry, type,
|
|
|
|
+ dst_dir->i_ino, dst_name);
|
|
err = hfs_brec_find(&dst_fd);
|
|
err = hfs_brec_find(&dst_fd);
|
|
if (err != -ENOENT) {
|
|
if (err != -ENOENT) {
|
|
if (!err)
|
|
if (!err)
|