]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - fs/erofs/xattr.h
Merge patch "riscv: Fix build with CONFIG_CC_OPTIMIZE_FOR_SIZE=y"
[mirror_ubuntu-kernels.git] / fs / erofs / xattr.h
CommitLineData
29b24f6c
GX
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
b17500a0 3 * Copyright (C) 2017-2018 HUAWEI, Inc.
592e7cd0 4 * https://www.huawei.com/
b17500a0
GX
5 */
6#ifndef __EROFS_XATTR_H
7#define __EROFS_XATTR_H
8
9#include "internal.h"
10#include <linux/posix_acl_xattr.h>
11#include <linux/xattr.h>
12
13/* Attribute not found */
14#define ENOATTR ENODATA
15
e82a9a17 16static inline unsigned int inlinexattr_header_size(struct inode *inode)
b17500a0 17{
a5876e24
GX
18 return sizeof(struct erofs_xattr_ibody_header) +
19 sizeof(u32) * EROFS_I(inode)->xattr_shared_count;
b17500a0
GX
20}
21
e82a9a17
PS
22static inline erofs_blk_t xattrblock_addr(struct erofs_sb_info *sbi,
23 unsigned int xattr_id)
b17500a0
GX
24{
25#ifdef CONFIG_EROFS_FS_XATTR
26 return sbi->xattr_blkaddr +
27 xattr_id * sizeof(__u32) / EROFS_BLKSIZ;
28#else
29 return 0;
30#endif
31}
32
e82a9a17
PS
33static inline unsigned int xattrblock_offset(struct erofs_sb_info *sbi,
34 unsigned int xattr_id)
b17500a0
GX
35{
36 return (xattr_id * sizeof(__u32)) % EROFS_BLKSIZ;
37}
38
5734fa21 39#ifdef CONFIG_EROFS_FS_XATTR
b17500a0
GX
40extern const struct xattr_handler erofs_xattr_user_handler;
41extern const struct xattr_handler erofs_xattr_trusted_handler;
b17500a0 42extern const struct xattr_handler erofs_xattr_security_handler;
b17500a0 43
e82a9a17 44static inline const struct xattr_handler *erofs_xattr_handler(unsigned int idx)
b17500a0 45{
a55861c8
VZ
46 static const struct xattr_handler *xattr_handler_map[] = {
47 [EROFS_XATTR_INDEX_USER] = &erofs_xattr_user_handler,
b17500a0 48#ifdef CONFIG_EROFS_FS_POSIX_ACL
a55861c8
VZ
49 [EROFS_XATTR_INDEX_POSIX_ACL_ACCESS] =
50 &posix_acl_access_xattr_handler,
51 [EROFS_XATTR_INDEX_POSIX_ACL_DEFAULT] =
52 &posix_acl_default_xattr_handler,
b17500a0 53#endif
a55861c8 54 [EROFS_XATTR_INDEX_TRUSTED] = &erofs_xattr_trusted_handler,
b17500a0 55#ifdef CONFIG_EROFS_FS_SECURITY
a55861c8 56 [EROFS_XATTR_INDEX_SECURITY] = &erofs_xattr_security_handler,
b17500a0 57#endif
a55861c8 58 };
e82a9a17
PS
59
60 return idx && idx < ARRAY_SIZE(xattr_handler_map) ?
61 xattr_handler_map[idx] : NULL;
b17500a0
GX
62}
63
6af7b483
GX
64extern const struct xattr_handler *erofs_xattr_handlers[];
65
b17500a0
GX
66int erofs_getxattr(struct inode *, int, const char *, void *, size_t);
67ssize_t erofs_listxattr(struct dentry *, char *, size_t);
68#else
5734fa21
GX
69static inline int erofs_getxattr(struct inode *inode, int index,
70 const char *name, void *buffer,
71 size_t buffer_size)
b17500a0 72{
ff784a78 73 return -EOPNOTSUPP;
b17500a0
GX
74}
75
e7cda1ee
CX
76#define erofs_listxattr (NULL)
77#define erofs_xattr_handlers (NULL)
5734fa21 78#endif /* !CONFIG_EROFS_FS_XATTR */
b17500a0 79
516c115c 80#ifdef CONFIG_EROFS_FS_POSIX_ACL
0cad6246 81struct posix_acl *erofs_get_acl(struct inode *inode, int type, bool rcu);
516c115c
GX
82#else
83#define erofs_get_acl (NULL)
84#endif
85
b17500a0 86#endif