xref: /linux/security/apparmor/include/path.h (revision 8fefe68784ae1606e11a5c65c04167c3b95051a0)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * AppArmor security module
4  *
5  * This file contains AppArmor basic path manipulation function definitions.
6  *
7  * Copyright (C) 1998-2008 Novell/SUSE
8  * Copyright 2009-2010 Canonical Ltd.
9  */
10 
11 #ifndef __AA_PATH_H
12 #define __AA_PATH_H
13 
14 #include <linux/path.h>
15 #include <linux/types.h>
16 
17 enum path_flags {
18 	PATH_IS_DIR = 0x1,		/* path is a directory */
19 	PATH_SOCK_COND = 0x2,
20 	PATH_CONNECT_PATH = 0x4,	/* connect disconnected paths to / */
21 	PATH_CHROOT_REL = 0x8,		/* do path lookup relative to chroot */
22 	PATH_CHROOT_NSCONNECT = 0x10,	/* connect paths that are at ns root */
23 
24 	PATH_DELEGATE_DELETED = 0x10000, /* delegate deleted files */
25 	PATH_MEDIATE_DELETED = 0x20000,	 /* mediate deleted paths */
26 };
27 
28 int aa_path_name(const struct path *path, int flags, char *buffer,
29 		 const char **name, const char **info,
30 		 const char *disconnected);
31 
32 #define IN_ATOMIC true
33 char *aa_get_buffer(bool in_atomic);
34 void aa_put_buffer(char *buf);
35 
36 #endif /* __AA_PATH_H */
37