blob: 06a5c69dcf8b1052d3dd8177d19a90198b9e284c [file] [log] [blame]
KaiGai Kohei652ecc22006-05-13 15:18:27 +09001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09003 *
KaiGai Kohei652ecc22006-05-13 15:18:27 +09004 * Copyright (C) 2006 NEC Corporation
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09005 *
KaiGai Kohei652ecc22006-05-13 15:18:27 +09006 * Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
10 */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090011#ifndef _JFFS2_FS_XATTR_H_
12#define _JFFS2_FS_XATTR_H_
13
14#include <linux/xattr.h>
KaiGai Kohei4470d042006-05-13 15:17:11 +090015#include <linux/list.h>
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090016
17#define JFFS2_XFLAGS_HOT (0x01) /* This datum is HOT */
18#define JFFS2_XFLAGS_BIND (0x02) /* This datum is not reclaimed */
KaiGai Kohei8a136952006-06-24 09:14:13 +090019#define JFFS2_XFLAGS_DEAD (0x40) /* This datum is already dead */
KaiGai Koheic9f700f2006-06-11 10:35:15 +090020#define JFFS2_XFLAGS_INVALID (0x80) /* This datum contains crc error */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090021
22struct jffs2_xattr_datum
23{
24 void *always_null;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090025 struct jffs2_raw_node_ref *node;
David Woodhouse987d47b2006-05-22 16:32:05 +010026 uint8_t class;
27 uint8_t flags;
KaiGai Koheic9f700f2006-06-11 10:35:15 +090028 uint16_t xprefix; /* see JFFS2_XATTR_PREFIX_* */
David Woodhouse987d47b2006-05-22 16:32:05 +010029
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090030 struct list_head xindex; /* chained from c->xattrindex[n] */
KaiGai Kohei2c887e22006-06-24 09:16:50 +090031 atomic_t refcnt; /* # of xattr_ref refers this */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090032 uint32_t xid;
33 uint32_t version;
34
35 uint32_t data_crc;
36 uint32_t hashkey;
37 char *xname; /* XATTR name without prefix */
38 uint32_t name_len; /* length of xname */
39 char *xvalue; /* XATTR value */
40 uint32_t value_len; /* length of xvalue */
41};
42
KaiGai Koheiee886b52006-05-13 15:19:03 +090043struct jffs2_inode_cache;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090044struct jffs2_xattr_ref
45{
46 void *always_null;
David Woodhouse987d47b2006-05-22 16:32:05 +010047 struct jffs2_raw_node_ref *node;
48 uint8_t class;
49 uint8_t flags; /* Currently unused */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090050 u16 unused;
51
KaiGai Koheic9f700f2006-06-11 10:35:15 +090052 uint32_t xseqno;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090053 union {
54 struct jffs2_inode_cache *ic; /* reference to jffs2_inode_cache */
55 uint32_t ino; /* only used in scanning/building */
56 };
57 union {
58 struct jffs2_xattr_datum *xd; /* reference to jffs2_xattr_datum */
59 uint32_t xid; /* only used in sccanning/building */
60 };
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +090061 struct jffs2_xattr_ref *next; /* chained from ic->xref_list */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090062};
63
KaiGai Koheic9f700f2006-06-11 10:35:15 +090064#define XREF_DELETE_MARKER (0x00000001)
KaiGai Koheic9f700f2006-06-11 10:35:15 +090065static inline int is_xattr_ref_dead(struct jffs2_xattr_ref *ref)
66{
67 return ((ref->xseqno & XREF_DELETE_MARKER) != 0);
68}
69
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090070#ifdef CONFIG_JFFS2_FS_XATTR
71
72extern void jffs2_init_xattr_subsystem(struct jffs2_sb_info *c);
73extern void jffs2_build_xattr_subsystem(struct jffs2_sb_info *c);
74extern void jffs2_clear_xattr_subsystem(struct jffs2_sb_info *c);
75
76extern struct jffs2_xattr_datum *jffs2_setup_xattr_datum(struct jffs2_sb_info *c,
77 uint32_t xid, uint32_t version);
78
79extern void jffs2_xattr_delete_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic);
80extern void jffs2_xattr_free_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic);
81
KaiGai Koheic9f700f2006-06-11 10:35:15 +090082extern int jffs2_garbage_collect_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd,
83 struct jffs2_raw_node_ref *raw);
84extern int jffs2_garbage_collect_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref,
85 struct jffs2_raw_node_ref *raw);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090086extern int jffs2_verify_xattr(struct jffs2_sb_info *c);
KaiGai Koheic9f700f2006-06-11 10:35:15 +090087extern void jffs2_release_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd);
88extern void jffs2_release_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090089
90extern int do_jffs2_getxattr(struct inode *inode, int xprefix, const char *xname,
91 char *buffer, size_t size);
92extern int do_jffs2_setxattr(struct inode *inode, int xprefix, const char *xname,
93 const char *buffer, size_t size, int flags);
94
95extern struct xattr_handler *jffs2_xattr_handlers[];
96extern struct xattr_handler jffs2_user_xattr_handler;
97extern struct xattr_handler jffs2_trusted_xattr_handler;
98
99extern ssize_t jffs2_listxattr(struct dentry *, char *, size_t);
100#define jffs2_getxattr generic_getxattr
101#define jffs2_setxattr generic_setxattr
102#define jffs2_removexattr generic_removexattr
103
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900104#else
105
106#define jffs2_init_xattr_subsystem(c)
107#define jffs2_build_xattr_subsystem(c)
108#define jffs2_clear_xattr_subsystem(c)
109
110#define jffs2_xattr_delete_inode(c, ic)
111#define jffs2_xattr_free_inode(c, ic)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900112#define jffs2_verify_xattr(c) (1)
113
114#define jffs2_xattr_handlers NULL
115#define jffs2_listxattr NULL
116#define jffs2_getxattr NULL
117#define jffs2_setxattr NULL
118#define jffs2_removexattr NULL
119
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900120#endif /* CONFIG_JFFS2_FS_XATTR */
121
122#ifdef CONFIG_JFFS2_FS_SECURITY
123extern int jffs2_init_security(struct inode *inode, struct inode *dir);
124extern struct xattr_handler jffs2_security_xattr_handler;
125#else
126#define jffs2_init_security(inode,dir) (0)
127#endif /* CONFIG_JFFS2_FS_SECURITY */
128
129#endif /* _JFFS2_FS_XATTR_H_ */