mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
2261306f4a
As is typical with LSMs, IPE uses securityfs as its interface with userspace. for a complete list of the interfaces and the respective inputs/outputs, please see the documentation under admin-guide/LSM/ipe.rst Signed-off-by: Deven Bowers <deven.desai@linux.microsoft.com> Signed-off-by: Fan Wu <wufan@linux.microsoft.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
17 lines
351 B
C
17 lines
351 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2020-2024 Microsoft Corporation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _IPE_FS_H
|
|
#define _IPE_FS_H
|
|
|
|
#include "policy.h"
|
|
|
|
extern struct dentry *policy_root __ro_after_init;
|
|
|
|
int ipe_new_policyfs_node(struct ipe_policy *p);
|
|
void ipe_del_policyfs_node(struct ipe_policy *p);
|
|
|
|
#endif /* _IPE_FS_H */
|