bus: Assign a serial number for messages from the driver
[platform/upstream/dbus.git] / bus / selinux.h
1 /* selinux.h  SELinux security check headers for D-BUS
2  *
3  * Author: Matthew Rickard <mjricka@epoch.ncsc.mil>
4  *
5  * Licensed under the Academic Free License version 2.1
6  * 
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20  *
21  */
22
23 #ifndef BUS_SELINUX_H
24 #define BUS_SELINUX_H
25
26 #include <dbus/dbus-hash.h>
27 #include <dbus/dbus-connection.h>
28 #include "services.h"
29
30 dbus_bool_t bus_selinux_pre_init (void);
31 dbus_bool_t bus_selinux_full_init(void);
32 void        bus_selinux_shutdown (void);
33
34 dbus_bool_t bus_selinux_enabled  (void);
35
36 BusSELinuxID *bus_selinux_get_self (void);
37
38 DBusHashTable* bus_selinux_id_table_new    (void);
39 BusSELinuxID*  bus_selinux_id_table_lookup (DBusHashTable    *service_table,
40                                             const DBusString *service_name);
41 dbus_bool_t    bus_selinux_id_table_insert (DBusHashTable    *service_table,
42                                             const char       *service_name,
43                                             const char       *service_context);
44 void           bus_selinux_id_table_print  (DBusHashTable    *service_table);
45 const char*    bus_selinux_get_policy_root (void);
46
47 dbus_bool_t    bus_selinux_append_context      (DBusMessage    *message,
48                                                 BusSELinuxID   *context,
49                                                 DBusError      *error);
50
51 dbus_bool_t bus_selinux_allows_acquire_service (DBusConnection *connection,
52                                                 BusSELinuxID   *service_sid,
53                                                 const char     *service_name,
54                                                 DBusError      *error);
55
56 dbus_bool_t bus_selinux_allows_send            (DBusConnection *sender,
57                                                 DBusConnection *proposed_recipient,
58                                                 const char     *msgtype, /* Supplementary audit data */
59                                                 const char     *interface,
60                                                 const char     *member,
61                                                 const char     *error_name,
62                                                 const char     *destination,
63                                                 BusActivationEntry *activation_entry,
64                                                 DBusError      *error);
65
66 BusSELinuxID* bus_selinux_init_connection_id (DBusConnection *connection,
67                                               DBusError      *error);
68
69 #endif /* BUS_SELINUX_H */