mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
2c323f2c56
This makes it harder for accidental or malicious changes to hfsplus_xattr_handlers at runtime. Signed-off-by: Wedson Almeida Filho <walmeida@microsoft.com> Link: https://lore.kernel.org/r/20230930050033.41174-15-wedsonaf@gmail.com Signed-off-by: Christian Brauner <brauner@kernel.org>
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* linux/fs/hfsplus/xattr.h
|
|
*
|
|
* Vyacheslav Dubeyko <slava@dubeyko.com>
|
|
*
|
|
* Logic of processing extended attributes
|
|
*/
|
|
|
|
#ifndef _LINUX_HFSPLUS_XATTR_H
|
|
#define _LINUX_HFSPLUS_XATTR_H
|
|
|
|
#include <linux/xattr.h>
|
|
|
|
extern const struct xattr_handler hfsplus_xattr_osx_handler;
|
|
extern const struct xattr_handler hfsplus_xattr_user_handler;
|
|
extern const struct xattr_handler hfsplus_xattr_trusted_handler;
|
|
extern const struct xattr_handler hfsplus_xattr_security_handler;
|
|
|
|
extern const struct xattr_handler * const hfsplus_xattr_handlers[];
|
|
|
|
int __hfsplus_setxattr(struct inode *inode, const char *name,
|
|
const void *value, size_t size, int flags);
|
|
|
|
int hfsplus_setxattr(struct inode *inode, const char *name,
|
|
const void *value, size_t size, int flags,
|
|
const char *prefix, size_t prefixlen);
|
|
|
|
ssize_t __hfsplus_getxattr(struct inode *inode, const char *name,
|
|
void *value, size_t size);
|
|
|
|
ssize_t hfsplus_getxattr(struct inode *inode, const char *name,
|
|
void *value, size_t size,
|
|
const char *prefix, size_t prefixlen);
|
|
|
|
ssize_t hfsplus_listxattr(struct dentry *dentry, char *buffer, size_t size);
|
|
|
|
int hfsplus_init_security(struct inode *inode, struct inode *dir,
|
|
const struct qstr *qstr);
|
|
|
|
#endif
|