2 * linux/fs/hfsplus/ioctl.c
5 * Ethan Benson <erbenson@alaska.net>
6 * partially derived from linux/fs/ext2/ioctl.c
7 * Copyright (C) 1993, 1994, 1995
8 * Remy Card (card@masi.ibp.fr)
9 * Laboratoire MASI - Institut Blaise Pascal
10 * Universite Pierre et Marie Curie (Paris VI)
15 #include <linux/capability.h>
17 #include <linux/sched.h>
18 #include <linux/xattr.h>
19 #include <asm/uaccess.h>
20 #include "hfsplus_fs.h"
22 int hfsplus_ioctl(struct inode
*inode
, struct file
*filp
, unsigned int cmd
,
28 case HFSPLUS_IOC_EXT2_GETFLAGS
:
30 if (HFSPLUS_I(inode
).rootflags
& HFSPLUS_FLG_IMMUTABLE
)
31 flags
|= FS_IMMUTABLE_FL
; /* EXT2_IMMUTABLE_FL */
32 if (HFSPLUS_I(inode
).rootflags
& HFSPLUS_FLG_APPEND
)
33 flags
|= FS_APPEND_FL
; /* EXT2_APPEND_FL */
34 if (HFSPLUS_I(inode
).userflags
& HFSPLUS_FLG_NODUMP
)
35 flags
|= FS_NODUMP_FL
; /* EXT2_NODUMP_FL */
36 return put_user(flags
, (int __user
*)arg
);
37 case HFSPLUS_IOC_EXT2_SETFLAGS
: {
41 if ((current
->fsuid
!= inode
->i_uid
) && !capable(CAP_FOWNER
))
44 if (get_user(flags
, (int __user
*)arg
))
47 if (flags
& (FS_IMMUTABLE_FL
|FS_APPEND_FL
) ||
48 HFSPLUS_I(inode
).rootflags
& (HFSPLUS_FLG_IMMUTABLE
|HFSPLUS_FLG_APPEND
)) {
49 if (!capable(CAP_LINUX_IMMUTABLE
))
53 /* don't silently ignore unsupported ext2 flags */
54 if (flags
& ~(FS_IMMUTABLE_FL
|FS_APPEND_FL
|FS_NODUMP_FL
))
57 if (flags
& FS_IMMUTABLE_FL
) { /* EXT2_IMMUTABLE_FL */
58 inode
->i_flags
|= S_IMMUTABLE
;
59 HFSPLUS_I(inode
).rootflags
|= HFSPLUS_FLG_IMMUTABLE
;
61 inode
->i_flags
&= ~S_IMMUTABLE
;
62 HFSPLUS_I(inode
).rootflags
&= ~HFSPLUS_FLG_IMMUTABLE
;
64 if (flags
& FS_APPEND_FL
) { /* EXT2_APPEND_FL */
65 inode
->i_flags
|= S_APPEND
;
66 HFSPLUS_I(inode
).rootflags
|= HFSPLUS_FLG_APPEND
;
68 inode
->i_flags
&= ~S_APPEND
;
69 HFSPLUS_I(inode
).rootflags
&= ~HFSPLUS_FLG_APPEND
;
71 if (flags
& FS_NODUMP_FL
) /* EXT2_NODUMP_FL */
72 HFSPLUS_I(inode
).userflags
|= HFSPLUS_FLG_NODUMP
;
74 HFSPLUS_I(inode
).userflags
&= ~HFSPLUS_FLG_NODUMP
;
76 inode
->i_ctime
= CURRENT_TIME_SEC
;
77 mark_inode_dirty(inode
);
85 int hfsplus_setxattr(struct dentry
*dentry
, const char *name
,
86 const void *value
, size_t size
, int flags
)
88 struct inode
*inode
= dentry
->d_inode
;
89 struct hfs_find_data fd
;
90 hfsplus_cat_entry entry
;
91 struct hfsplus_cat_file
*file
;
94 if (!S_ISREG(inode
->i_mode
) || HFSPLUS_IS_RSRC(inode
))
97 res
= hfs_find_init(HFSPLUS_SB(inode
->i_sb
).cat_tree
, &fd
);
100 res
= hfsplus_find_cat(inode
->i_sb
, inode
->i_ino
, &fd
);
103 hfs_bnode_read(fd
.bnode
, &entry
, fd
.entryoffset
,
104 sizeof(struct hfsplus_cat_file
));
107 if (!strcmp(name
, "hfs.type")) {
109 memcpy(&file
->user_info
.fdType
, value
, 4);
112 } else if (!strcmp(name
, "hfs.creator")) {
114 memcpy(&file
->user_info
.fdCreator
, value
, 4);
120 hfs_bnode_write(fd
.bnode
, &entry
, fd
.entryoffset
,
121 sizeof(struct hfsplus_cat_file
));
127 ssize_t
hfsplus_getxattr(struct dentry
*dentry
, const char *name
,
128 void *value
, size_t size
)
130 struct inode
*inode
= dentry
->d_inode
;
131 struct hfs_find_data fd
;
132 hfsplus_cat_entry entry
;
133 struct hfsplus_cat_file
*file
;
136 if (!S_ISREG(inode
->i_mode
) || HFSPLUS_IS_RSRC(inode
))
140 res
= hfs_find_init(HFSPLUS_SB(inode
->i_sb
).cat_tree
, &fd
);
143 res
= hfsplus_find_cat(inode
->i_sb
, inode
->i_ino
, &fd
);
146 hfs_bnode_read(fd
.bnode
, &entry
, fd
.entryoffset
,
147 sizeof(struct hfsplus_cat_file
));
151 if (!strcmp(name
, "hfs.type")) {
153 memcpy(value
, &file
->user_info
.fdType
, 4);
156 res
= size
? -ERANGE
: 4;
157 } else if (!strcmp(name
, "hfs.creator")) {
159 memcpy(value
, &file
->user_info
.fdCreator
, 4);
162 res
= size
? -ERANGE
: 4;
171 #define HFSPLUS_ATTRLIST_SIZE (sizeof("hfs.creator")+sizeof("hfs.type"))
173 ssize_t
hfsplus_listxattr(struct dentry
*dentry
, char *buffer
, size_t size
)
175 struct inode
*inode
= dentry
->d_inode
;
177 if (!S_ISREG(inode
->i_mode
) || HFSPLUS_IS_RSRC(inode
))
180 if (!buffer
|| !size
)
181 return HFSPLUS_ATTRLIST_SIZE
;
182 if (size
< HFSPLUS_ATTRLIST_SIZE
)
184 strcpy(buffer
, "hfs.type");
185 strcpy(buffer
+ sizeof("hfs.type"), "hfs.creator");
187 return HFSPLUS_ATTRLIST_SIZE
;