chiark / gitweb /
build-sys: add Mandriva distribution support
[elogind.git] / src / 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 General Public License as published by
13   the Free Software Foundation; either version 2 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   General Public License for more details.
20
21   You should have received a copy of the GNU 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
28 int label_init(void);
29 void label_finish(void);
30
31 int label_fix(const char *path, bool ignore_enoent);
32
33 int label_socket_set(const char *label);
34 void label_socket_clear(void);
35
36 int label_fifofile_set(const char *path);
37 int label_symlinkfile_set(const char *path);
38 void label_file_clear(void);
39
40 void label_free(const char *label);
41
42 int label_get_socket_label_from_exe(const char *exe, char **label);
43
44 int label_mkdir(const char *path, mode_t mode);
45
46 #endif