First public contribution.
1 /* selinux.h SELinux security check headers for D-BUS
2 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
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
29 #include <dbus/dbus-hash.h>
31 #include "dbus-hash.h"
32 #endif //__SYMBIAN32__
33 #include <dbus/dbus-connection.h>
36 dbus_bool_t bus_selinux_pre_init (void);
37 dbus_bool_t bus_selinux_full_init(void);
38 void bus_selinux_shutdown (void);
40 dbus_bool_t bus_selinux_enabled (void);
42 void bus_selinux_id_ref (BusSELinuxID *sid);
43 void bus_selinux_id_unref (BusSELinuxID *sid);
45 DBusHashTable* bus_selinux_id_table_new (void);
46 BusSELinuxID* bus_selinux_id_table_lookup (DBusHashTable *service_table,
47 const DBusString *service_name);
48 dbus_bool_t bus_selinux_id_table_insert (DBusHashTable *service_table,
49 const char *service_name,
50 const char *service_context);
51 void bus_selinux_id_table_print (DBusHashTable *service_table);
52 const char* bus_selinux_get_policy_root (void);
54 dbus_bool_t bus_selinux_append_context (DBusMessage *message,
55 BusSELinuxID *context,
58 dbus_bool_t bus_selinux_allows_acquire_service (DBusConnection *connection,
59 BusSELinuxID *service_sid,
60 const char *service_name,
63 dbus_bool_t bus_selinux_allows_send (DBusConnection *sender,
64 DBusConnection *proposed_recipient,
65 const char *msgtype, /* Supplementary audit data */
66 const char *interface,
68 const char *error_name,
69 const char *destination,
72 BusSELinuxID* bus_selinux_init_connection_id (DBusConnection *connection,
77 #endif /* BUS_SELINUX_H */