chiark / gitweb /
util: unify getenv() logic for other PID
[elogind.git] / src / shared / label.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foolabelhfoo
4 #define foolabelhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2010 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU Lesser General Public License as published by
13   the Free Software Foundation; either version 2.1 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   Lesser General Public License for more details.
20
21   You should have received a copy of the GNU Lesser General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 #include <sys/types.h>
26 #include <stdbool.h>
27 #include <sys/socket.h>
28
29 int label_init(const char *prefix);
30 void label_finish(void);
31
32 int label_fix(const char *path, bool ignore_enoent);
33
34 int label_socket_set(const char *label);
35 void label_socket_clear(void);
36
37 int label_context_set(const char *path, mode_t mode);
38 void label_context_clear(void);
39
40 void label_free(const char *label);
41
42 int label_get_create_label_from_exe(const char *exe, char **label);
43
44 int label_mkdir(const char *path, mode_t mode);
45
46 void label_retest_selinux(void);
47
48 int label_bind(int fd, const struct sockaddr *addr, socklen_t addrlen);
49
50 #endif