blob: 5c84af8c5f6fd7014439570a8d958f9b83eadecb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 File: linux/xattr.h
3
4 Extended attributes handling.
5
6 Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org>
7 Copyright (c) 2001-2002 Silicon Graphics, Inc. All Rights Reserved.
8 Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
9*/
10#ifndef _LINUX_XATTR_H
11#define _LINUX_XATTR_H
12
13#define XATTR_CREATE 0x1 /* set value, fail if attr already exists */
14#define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
15
Adrian Bunk5b0a2072007-02-10 01:46:24 -080016#ifdef __KERNEL__
17
18#include <linux/types.h>
19
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080020/* Namespaces */
21#define XATTR_OS2_PREFIX "os2."
22#define XATTR_OS2_PREFIX_LEN (sizeof (XATTR_OS2_PREFIX) - 1)
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define XATTR_SECURITY_PREFIX "security."
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080025#define XATTR_SECURITY_PREFIX_LEN (sizeof (XATTR_SECURITY_PREFIX) - 1)
26
27#define XATTR_SYSTEM_PREFIX "system."
28#define XATTR_SYSTEM_PREFIX_LEN (sizeof (XATTR_SYSTEM_PREFIX) - 1)
29
30#define XATTR_TRUSTED_PREFIX "trusted."
31#define XATTR_TRUSTED_PREFIX_LEN (sizeof (XATTR_TRUSTED_PREFIX) - 1)
32
33#define XATTR_USER_PREFIX "user."
34#define XATTR_USER_PREFIX_LEN (sizeof (XATTR_USER_PREFIX) - 1)
35
Adrian Bunk5b0a2072007-02-10 01:46:24 -080036struct inode;
37struct dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39struct xattr_handler {
40 char *prefix;
41 size_t (*list)(struct inode *inode, char *list, size_t list_size,
42 const char *name, size_t name_len);
43 int (*get)(struct inode *inode, const char *name, void *buffer,
44 size_t size);
45 int (*set)(struct inode *inode, const char *name, const void *buffer,
46 size_t size, int flags);
47};
48
David P. Quigley42492592008-02-04 22:29:39 -080049ssize_t xattr_getsecurity(struct inode *, const char *, void *, size_t);
David Howells8f0cfa52008-04-29 00:59:41 -070050ssize_t vfs_getxattr(struct dentry *, const char *, void *, size_t);
Bill Nottingham659564c2006-10-09 16:10:48 -040051ssize_t vfs_listxattr(struct dentry *d, char *list, size_t size);
David P. Quigleyb1ab7e42009-09-03 14:25:56 -040052int __vfs_setxattr_noperm(struct dentry *, const char *, const void *, size_t, int);
David Howells8f0cfa52008-04-29 00:59:41 -070053int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int);
54int vfs_removexattr(struct dentry *, const char *);
Christoph Hellwig5be196e2006-01-09 20:51:55 -080055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056ssize_t generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size);
57ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size);
58int generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags);
59int generic_removexattr(struct dentry *dentry, const char *name);
60
Adrian Bunk5b0a2072007-02-10 01:46:24 -080061#endif /* __KERNEL__ */
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#endif /* _LINUX_XATTR_H */