xattr.h 3.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
  File: linux/xattr.h

  Extended attributes handling.

  Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org>
  Copyright (c) 2001-2002 Silicon Graphics, Inc.  All Rights Reserved.
  Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
*/
#ifndef _LINUX_XATTR_H
#define _LINUX_XATTR_H

13

14
#include <linux/slab.h>
15
#include <linux/types.h>
16
#include <linux/spinlock.h>
17
#include <uapi/linux/xattr.h>
18

19 20
struct inode;
struct dentry;
L
Linus Torvalds 已提交
21

22 23 24 25 26
/*
 * struct xattr_handler: When @name is set, match attributes with exactly that
 * name.  When @prefix is set instead, match attributes with that prefix and
 * with a non-empty suffix.
 */
L
Linus Torvalds 已提交
27
struct xattr_handler {
28
	const char *name;
29
	const char *prefix;
A
Andreas Gruenbacher 已提交
30
	int flags;      /* fs private flags */
31
	bool (*list)(struct dentry *dentry);
A
Andreas Gruenbacher 已提交
32
	int (*get)(const struct xattr_handler *, struct dentry *dentry,
33 34
		   struct inode *inode, const char *name, void *buffer,
		   size_t size);
A
Andreas Gruenbacher 已提交
35
	int (*set)(const struct xattr_handler *, struct dentry *dentry,
36 37
		   struct inode *inode, const char *name, const void *buffer,
		   size_t size, int flags);
L
Linus Torvalds 已提交
38 39
};

A
Andreas Gruenbacher 已提交
40 41
const char *xattr_full_name(const struct xattr_handler *, const char *);

42
struct xattr {
43
	const char *name;
44 45 46 47
	void *value;
	size_t value_len;
};

48
ssize_t xattr_getsecurity(struct inode *, const char *, void *, size_t);
49
ssize_t __vfs_getxattr(struct dentry *, struct inode *, const char *, void *, size_t);
50
ssize_t vfs_getxattr(struct dentry *, const char *, void *, size_t);
B
Bill Nottingham 已提交
51
ssize_t vfs_listxattr(struct dentry *d, char *list, size_t size);
52
int __vfs_setxattr(struct dentry *, struct inode *, const char *, const void *, size_t, int);
53
int __vfs_setxattr_noperm(struct dentry *, const char *, const void *, size_t, int);
54
int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int);
55
int __vfs_removexattr(struct dentry *, const char *);
56
int vfs_removexattr(struct dentry *, const char *);
57

L
Linus Torvalds 已提交
58
ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size);
59 60
ssize_t vfs_getxattr_alloc(struct dentry *dentry, const char *name,
			   char **xattr_value, size_t size, gfp_t flags);
61

62 63 64 65 66
static inline const char *xattr_prefix(const struct xattr_handler *handler)
{
	return handler->prefix ?: handler->name;
}

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
struct simple_xattrs {
	struct list_head head;
	spinlock_t lock;
};

struct simple_xattr {
	struct list_head list;
	char *name;
	size_t size;
	char value[0];
};

/*
 * initialize the simple_xattrs structure
 */
static inline void simple_xattrs_init(struct simple_xattrs *xattrs)
{
	INIT_LIST_HEAD(&xattrs->head);
	spin_lock_init(&xattrs->lock);
}

/*
 * free all the xattrs
 */
static inline void simple_xattrs_free(struct simple_xattrs *xattrs)
{
	struct simple_xattr *xattr, *node;

	list_for_each_entry_safe(xattr, node, &xattrs->head, list) {
		kfree(xattr->name);
		kfree(xattr);
	}
}

struct simple_xattr *simple_xattr_alloc(const void *value, size_t size);
int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
		     void *buffer, size_t size);
int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
		     const void *value, size_t size, int flags);
106 107
ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs, char *buffer,
			  size_t size);
108 109 110
void simple_xattr_list_add(struct simple_xattrs *xattrs,
			   struct simple_xattr *new_xattr);

L
Linus Torvalds 已提交
111
#endif	/* _LINUX_XATTR_H */