chiark / gitweb /
log: whitespace style fix
[elogind.git] / src / basic / smack-util.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2013 Intel Corporation
9
10   Author: Auke Kok <auke-jan.h.kok@intel.com>
11
12   systemd is free software; you can redistribute it and/or modify it
13   under the terms of the GNU Lesser General Public License as published by
14   the Free Software Foundation; either version 2.1 of the License, or
15   (at your option) any later version.
16
17   systemd is distributed in the hope that it will be useful, but
18   WITHOUT ANY WARRANTY; without even the implied warranty of
19   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20   Lesser General Public License for more details.
21
22   You should have received a copy of the GNU Lesser General Public License
23   along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 ***/
25
26 #include <stdbool.h>
27
28 #include "macro.h"
29
30 #define SMACK_FLOOR_LABEL "_"
31 #define SMACK_STAR_LABEL  "*"
32
33 /// UNNEEDED by elogind
34 #if 0
35 typedef enum SmackAttr {
36         SMACK_ATTR_ACCESS = 0,
37         SMACK_ATTR_EXEC = 1,
38         SMACK_ATTR_MMAP = 2,
39         SMACK_ATTR_TRANSMUTE = 3,
40         SMACK_ATTR_IPIN = 4,
41         SMACK_ATTR_IPOUT = 5,
42         _SMACK_ATTR_MAX,
43         _SMACK_ATTR_INVALID = -1,
44 } SmackAttr;
45 #endif // 0
46
47 bool mac_smack_use(void);
48
49 int mac_smack_fix(const char *path, bool ignore_enoent, bool ignore_erofs);
50
51 // UNNEEDED const char* smack_attr_to_string(SmackAttr i) _const_;
52 // UNNEEDED SmackAttr smack_attr_from_string(const char *s) _pure_;
53 // UNNEEDED int mac_smack_read(const char *path, SmackAttr attr, char **label);
54 // UNNEEDED int mac_smack_read_fd(int fd, SmackAttr attr, char **label);
55 // UNNEEDED int mac_smack_apply(const char *path, SmackAttr attr, const char *label);
56 // UNNEEDED int mac_smack_apply_fd(int fd, SmackAttr attr, const char *label);
57 // UNNEEDED int mac_smack_apply_pid(pid_t pid, const char *label);
58 // UNNEEDED int mac_smack_copy(const char *dest, const char *src);