summaryrefslogtreecommitdiff
path: root/udev/udev_selinux.h
blob: 55bc91222a119aa248b5de7c86ecf296ec1501ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * Copyright (C) 2004 Daniel Walsh
 *
 *	This program is free software; you can redistribute it and/or modify it
 *	under the terms of the GNU General Public License as published by the
 *	Free Software Foundation version 2 of the License.
 * 
 *	This program is distributed in the hope that it will be useful, but
 *	WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *	General Public License for more details.
 * 
 *	You should have received a copy of the GNU General Public License along
 *	with this program; if not, write to the Free Software Foundation, Inc.,
 *	51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 */
#ifndef _UDEV_SELINUX_H
#define _UDEV_SELINUX_H

#ifdef USE_SELINUX
extern void selinux_setfilecon(struct udev *udev, const char *file, const char *devname, unsigned int mode);
extern void selinux_setfscreatecon(struct udev *udev, const char *file, const char *devname, unsigned int mode);
extern void selinux_resetfscreatecon(struct udev *udev);
extern void selinux_init(struct udev *udev);
extern void selinux_exit(struct udev *udev);
#else
static inline void selinux_setfilecon(struct udev *udev, const char *file, const char *devname, unsigned int mode) {}
static inline void selinux_setfscreatecon(struct udev *udev, const char *file, const char *devname, unsigned int mode) {}
static inline void selinux_resetfscreatecon(struct udev *udev) {}
static inline void selinux_init(struct udev *udev) {}
static inline void selinux_exit(struct udev *udev) {}
#endif

#endif