blob: 7b5513ed3b386da1d49337139e658bd967849aaa [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 File: fs/ext4/xattr.h
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003
Mingming Cao617ba132006-10-11 01:20:53 -07004 On-disk format of extended attributes for the ext4 filesystem.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005
6 (C) 2001 Andreas Gruenbacher, <a.gruenbacher@computer.org>
7*/
8
9#include <linux/xattr.h>
10
11/* Magic value in attribute blocks */
Mingming Cao617ba132006-10-11 01:20:53 -070012#define EXT4_XATTR_MAGIC 0xEA020000
Dave Kleikampac27a0e2006-10-11 01:20:50 -070013
14/* Maximum number of references to one attribute block */
Mingming Cao617ba132006-10-11 01:20:53 -070015#define EXT4_XATTR_REFCOUNT_MAX 1024
Dave Kleikampac27a0e2006-10-11 01:20:50 -070016
17/* Name indexes */
Mingming Cao617ba132006-10-11 01:20:53 -070018#define EXT4_XATTR_INDEX_USER 1
19#define EXT4_XATTR_INDEX_POSIX_ACL_ACCESS 2
20#define EXT4_XATTR_INDEX_POSIX_ACL_DEFAULT 3
21#define EXT4_XATTR_INDEX_TRUSTED 4
22#define EXT4_XATTR_INDEX_LUSTRE 5
23#define EXT4_XATTR_INDEX_SECURITY 6
Tao Ma67cf5b02012-12-10 14:04:46 -050024#define EXT4_XATTR_INDEX_SYSTEM 7
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025
Mingming Cao617ba132006-10-11 01:20:53 -070026struct ext4_xattr_header {
Dave Kleikampac27a0e2006-10-11 01:20:50 -070027 __le32 h_magic; /* magic number for identification */
28 __le32 h_refcount; /* reference count */
29 __le32 h_blocks; /* number of disk blocks used */
30 __le32 h_hash; /* hash value of all attributes */
Darrick J. Wonge6153912012-04-29 18:23:10 -040031 __le32 h_checksum; /* crc32c(uuid+id+xattrblock) */
32 /* id = inum if refcount=1, blknum otherwise */
33 __u32 h_reserved[3]; /* zero right now */
Dave Kleikampac27a0e2006-10-11 01:20:50 -070034};
35
Mingming Cao617ba132006-10-11 01:20:53 -070036struct ext4_xattr_ibody_header {
Dave Kleikampac27a0e2006-10-11 01:20:50 -070037 __le32 h_magic; /* magic number for identification */
38};
39
Mingming Cao617ba132006-10-11 01:20:53 -070040struct ext4_xattr_entry {
Dave Kleikampac27a0e2006-10-11 01:20:50 -070041 __u8 e_name_len; /* length of name */
42 __u8 e_name_index; /* attribute name index */
43 __le16 e_value_offs; /* offset in disk block of value */
44 __le32 e_value_block; /* disk block attribute is stored on (n/i) */
45 __le32 e_value_size; /* size of attribute value */
46 __le32 e_hash; /* hash value of name and value */
47 char e_name[0]; /* attribute name */
48};
49
Mingming Cao617ba132006-10-11 01:20:53 -070050#define EXT4_XATTR_PAD_BITS 2
51#define EXT4_XATTR_PAD (1<<EXT4_XATTR_PAD_BITS)
52#define EXT4_XATTR_ROUND (EXT4_XATTR_PAD-1)
53#define EXT4_XATTR_LEN(name_len) \
54 (((name_len) + EXT4_XATTR_ROUND + \
55 sizeof(struct ext4_xattr_entry)) & ~EXT4_XATTR_ROUND)
56#define EXT4_XATTR_NEXT(entry) \
Theodore Ts'oaf5bc922008-09-08 22:25:24 -040057 ((struct ext4_xattr_entry *)( \
58 (char *)(entry) + EXT4_XATTR_LEN((entry)->e_name_len)))
Mingming Cao617ba132006-10-11 01:20:53 -070059#define EXT4_XATTR_SIZE(size) \
60 (((size) + EXT4_XATTR_ROUND) & ~EXT4_XATTR_ROUND)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070061
Kalpak Shah6dd4ee72007-07-18 09:19:57 -040062#define IHDR(inode, raw_inode) \
63 ((struct ext4_xattr_ibody_header *) \
64 ((void *)raw_inode + \
65 EXT4_GOOD_OLD_INODE_SIZE + \
66 EXT4_I(inode)->i_extra_isize))
67#define IFIRST(hdr) ((struct ext4_xattr_entry *)((hdr)+1))
68
Tao Ma879b3822012-12-05 10:28:46 -050069#define BHDR(bh) ((struct ext4_xattr_header *)((bh)->b_data))
70#define ENTRY(ptr) ((struct ext4_xattr_entry *)(ptr))
71#define BFIRST(bh) ENTRY(BHDR(bh)+1)
72#define IS_LAST_ENTRY(entry) (*(__u32 *)(entry) == 0)
73
74
75struct ext4_xattr_info {
76 int name_index;
77 const char *name;
78 const void *value;
79 size_t value_len;
80};
81
82struct ext4_xattr_search {
83 struct ext4_xattr_entry *first;
84 void *base;
85 void *end;
86 struct ext4_xattr_entry *here;
87 int not_found;
88};
89
90struct ext4_xattr_ibody_find {
91 struct ext4_xattr_search s;
92 struct ext4_iloc iloc;
93};
94
Stephen Hemminger11e27522010-05-13 17:53:18 -070095extern const struct xattr_handler ext4_xattr_user_handler;
96extern const struct xattr_handler ext4_xattr_trusted_handler;
97extern const struct xattr_handler ext4_xattr_acl_access_handler;
98extern const struct xattr_handler ext4_xattr_acl_default_handler;
99extern const struct xattr_handler ext4_xattr_security_handler;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700100
Mingming Cao617ba132006-10-11 01:20:53 -0700101extern ssize_t ext4_listxattr(struct dentry *, char *, size_t);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700102
Mingming Cao617ba132006-10-11 01:20:53 -0700103extern int ext4_xattr_get(struct inode *, int, const char *, void *, size_t);
Mingming Cao617ba132006-10-11 01:20:53 -0700104extern int ext4_xattr_set(struct inode *, int, const char *, const void *, size_t, int);
105extern int ext4_xattr_set_handle(handle_t *, struct inode *, int, const char *, const void *, size_t, int);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700106
Mingming Cao617ba132006-10-11 01:20:53 -0700107extern void ext4_xattr_delete_inode(handle_t *, struct inode *);
108extern void ext4_xattr_put_super(struct super_block *);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700109
Kalpak Shah6dd4ee72007-07-18 09:19:57 -0400110extern int ext4_expand_extra_isize_ea(struct inode *inode, int new_extra_isize,
111 struct ext4_inode *raw_inode, handle_t *handle);
112
Theodore Ts'o5dabfc72010-10-27 21:30:14 -0400113extern int __init ext4_init_xattr(void);
114extern void ext4_exit_xattr(void);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700115
Stephen Hemminger11e27522010-05-13 17:53:18 -0700116extern const struct xattr_handler *ext4_xattr_handlers[];
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700117
Tao Ma879b3822012-12-05 10:28:46 -0500118extern int ext4_xattr_ibody_find(struct inode *inode, struct ext4_xattr_info *i,
119 struct ext4_xattr_ibody_find *is);
120extern int ext4_xattr_ibody_get(struct inode *inode, int name_index,
121 const char *name,
122 void *buffer, size_t buffer_size);
Tao Ma0d812f72012-12-10 14:06:02 -0500123extern int ext4_xattr_ibody_inline_set(handle_t *handle, struct inode *inode,
124 struct ext4_xattr_info *i,
125 struct ext4_xattr_ibody_find *is);
Tao Ma879b3822012-12-05 10:28:46 -0500126
Tao Ma67cf5b02012-12-10 14:04:46 -0500127extern int ext4_has_inline_data(struct inode *inode);
128extern int ext4_get_inline_size(struct inode *inode);
129extern int ext4_get_max_inline_size(struct inode *inode);
130extern int ext4_find_inline_data_nolock(struct inode *inode);
131extern void ext4_write_inline_data(struct inode *inode,
132 struct ext4_iloc *iloc,
133 void *buffer, loff_t pos,
134 unsigned int len);
135extern int ext4_prepare_inline_data(handle_t *handle, struct inode *inode,
136 unsigned int len);
137extern int ext4_init_inline_data(handle_t *handle, struct inode *inode,
138 unsigned int len);
139extern int ext4_destroy_inline_data(handle_t *handle, struct inode *inode);
Tao Ma46c7f252012-12-10 14:04:52 -0500140
141extern int ext4_readpage_inline(struct inode *inode, struct page *page);
Tao Maf19d5872012-12-10 14:05:51 -0500142extern int ext4_try_to_write_inline_data(struct address_space *mapping,
143 struct inode *inode,
144 loff_t pos, unsigned len,
145 unsigned flags,
146 struct page **pagep);
147extern int ext4_write_inline_data_end(struct inode *inode,
148 loff_t pos, unsigned len,
149 unsigned copied,
150 struct page *page);
Tao Ma3fdcfb62012-12-10 14:05:57 -0500151extern struct buffer_head *
152ext4_journalled_write_inline_data(struct inode *inode,
153 unsigned len,
154 struct page *page);
Tao Ma9c3569b2012-12-10 14:05:57 -0500155extern int ext4_da_write_inline_data_begin(struct address_space *mapping,
156 struct inode *inode,
157 loff_t pos, unsigned len,
158 unsigned flags,
159 struct page **pagep,
160 void **fsdata);
161extern int ext4_da_write_inline_data_end(struct inode *inode, loff_t pos,
162 unsigned len, unsigned copied,
163 struct page *page);
Tao Ma3c47d542012-12-10 14:05:59 -0500164extern int ext4_try_add_inline_entry(handle_t *handle, struct dentry *dentry,
165 struct inode *inode);
166extern int ext4_try_create_inline_dir(handle_t *handle,
167 struct inode *parent,
168 struct inode *inode);
Tao Ma65d165d2012-12-10 14:05:59 -0500169extern int ext4_read_inline_dir(struct file *filp,
170 void *dirent, filldir_t filldir,
171 int *has_inline_data);
Tao Mae8e948e2012-12-10 14:06:00 -0500172extern struct buffer_head *ext4_find_inline_entry(struct inode *dir,
173 const struct qstr *d_name,
174 struct ext4_dir_entry_2 **res_dir,
175 int *has_inline_data);
Tao Ma9f40fe52012-12-10 14:06:00 -0500176extern int ext4_delete_inline_entry(handle_t *handle,
177 struct inode *dir,
178 struct ext4_dir_entry_2 *de_del,
179 struct buffer_head *bh,
180 int *has_inline_data);
Tao Ma61f86632012-12-10 14:06:01 -0500181extern int empty_inline_dir(struct inode *dir, int *has_inline_data);
Tao Ma32f7f222012-12-10 14:06:01 -0500182extern struct buffer_head *ext4_get_first_inline_block(struct inode *inode,
183 struct ext4_dir_entry_2 **parent_de,
184 int *retval);
Tao Ma94191982012-12-10 14:06:02 -0500185extern int ext4_inline_data_fiemap(struct inode *inode,
186 struct fiemap_extent_info *fieinfo,
187 int *has_inline);
Tao Ma0d812f72012-12-10 14:06:02 -0500188extern int ext4_try_to_evict_inline_data(handle_t *handle,
189 struct inode *inode,
190 int needed);
Tao Maaef1c852012-12-10 14:06:02 -0500191extern void ext4_inline_data_truncate(struct inode *inode, int *has_inline);
192
Tao Ma0c8d4142012-12-10 14:06:03 -0500193extern int ext4_convert_inline_data(struct inode *inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700194
Theodore Ts'o03010a32008-10-10 20:02:48 -0400195#ifdef CONFIG_EXT4_FS_SECURITY
Mingming Cao617ba132006-10-11 01:20:53 -0700196extern int ext4_init_security(handle_t *handle, struct inode *inode,
Eric Paris2a7dba32011-02-01 11:05:39 -0500197 struct inode *dir, const struct qstr *qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700198#else
Mingming Cao617ba132006-10-11 01:20:53 -0700199static inline int ext4_init_security(handle_t *handle, struct inode *inode,
Eric Paris2a7dba32011-02-01 11:05:39 -0500200 struct inode *dir, const struct qstr *qstr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700201{
202 return 0;
203}
204#endif