blob: 4fdf02f26a3af56dece3c7019b8e688e57e2f12f [file] [log] [blame]
John Johansen63e2b422010-07-29 14:48:03 -07001/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor filesystem definitions.
5 *
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
12 * License.
13 */
14
15#ifndef __AA_APPARMORFS_H
16#define __AA_APPARMORFS_H
17
Kees Cook9acd4942012-01-26 16:29:20 -080018enum aa_fs_type {
19 AA_FS_TYPE_FOPS,
20 AA_FS_TYPE_DIR,
21};
22
23struct aa_fs_entry;
24
25struct aa_fs_entry {
26 const char *name;
27 struct dentry *dentry;
28 umode_t mode;
29 enum aa_fs_type v_type;
30 union {
31 struct aa_fs_entry *files;
32 } v;
33 const struct file_operations *file_ops;
34};
35
36#define AA_FS_FILE_FOPS(_name, _mode, _fops) \
37 { .name = (_name), .v_type = AA_FS_TYPE_FOPS, \
38 .mode = (_mode), .file_ops = (_fops) }
39#define AA_FS_DIR(_name, _value) \
40 { .name = (_name), .v_type = AA_FS_TYPE_DIR, .v.files = (_value) }
41
John Johansen63e2b422010-07-29 14:48:03 -070042extern void __init aa_destroy_aafs(void);
43
44#endif /* __AA_APPARMORFS_H */