1 /* selinux.h SELinux security check headers for D-BUS
3 * Author: Matthew Rickard <mjricka@epoch.ncsc.mil>
5 * Licensed under the Academic Free License version 2.1
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.
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.
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
26 #include <dbus/dbus-hash.h>
27 #include <dbus/dbus-connection.h>
30 dbus_bool_t bus_selinux_pre_init (void);
31 dbus_bool_t bus_selinux_full_init(void);
32 void bus_selinux_shutdown (void);
34 dbus_bool_t bus_selinux_enabled (void);
36 void bus_selinux_id_ref (BusSELinuxID *sid);
37 void bus_selinux_id_unref (BusSELinuxID *sid);
39 DBusHashTable* bus_selinux_id_table_new (void);
40 BusSELinuxID* bus_selinux_id_table_lookup (DBusHashTable *service_table,
41 const DBusString *service_name);
42 dbus_bool_t bus_selinux_id_table_insert (DBusHashTable *service_table,
43 const char *service_name,
44 const char *service_context);
45 void bus_selinux_id_table_print (DBusHashTable *service_table);
46 const char* bus_selinux_get_policy_root (void);
48 dbus_bool_t bus_selinux_append_context (DBusMessage *message,
49 BusSELinuxID *context,
52 dbus_bool_t bus_selinux_allows_acquire_service (DBusConnection *connection,
53 BusSELinuxID *service_sid,
54 const char *service_name,
57 dbus_bool_t bus_selinux_allows_send (DBusConnection *sender,
58 DBusConnection *proposed_recipient,
59 const char *msgtype, /* Supplementary audit data */
60 const char *interface,
62 const char *error_name,
63 const char *destination,
66 BusSELinuxID* bus_selinux_init_connection_id (DBusConnection *connection,
70 void bus_selinux_audit_init(void);
71 dbus_bool_t _dbus_change_to_daemon_user (const char *user,
74 #endif /* BUS_SELINUX_H */