1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ofdbus/dbus/bus/selinux.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,77 @@
1.4 +/* selinux.h SELinux security check headers for D-BUS
1.5 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
1.6 + * Author: Matthew Rickard <mjricka@epoch.ncsc.mil>
1.7 + *
1.8 + * Licensed under the Academic Free License version 2.1
1.9 + *
1.10 + * This program is free software; you can redistribute it and/or modify
1.11 + * it under the terms of the GNU General Public License as published by
1.12 + * the Free Software Foundation; either version 2 of the License, or
1.13 + * (at your option) any later version.
1.14 + *
1.15 + * This program is distributed in the hope that it will be useful,
1.16 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.17 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.18 + * GNU General Public License for more details.
1.19 + *
1.20 + * You should have received a copy of the GNU General Public License
1.21 + * along with this program; if not, write to the Free Software
1.22 + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1.23 + *
1.24 + */
1.25 +
1.26 +
1.27 +
1.28 +#ifndef BUS_SELINUX_H
1.29 +#define BUS_SELINUX_H
1.30 +
1.31 +#ifndef __SYMBIAN32__
1.32 +#include <dbus/dbus-hash.h>
1.33 +#else
1.34 +#include "dbus-hash.h"
1.35 +#endif //__SYMBIAN32__
1.36 +#include <dbus/dbus-connection.h>
1.37 +#include "services.h"
1.38 +
1.39 +dbus_bool_t bus_selinux_pre_init (void);
1.40 +dbus_bool_t bus_selinux_full_init(void);
1.41 +void bus_selinux_shutdown (void);
1.42 +
1.43 +dbus_bool_t bus_selinux_enabled (void);
1.44 +
1.45 +void bus_selinux_id_ref (BusSELinuxID *sid);
1.46 +void bus_selinux_id_unref (BusSELinuxID *sid);
1.47 +
1.48 +DBusHashTable* bus_selinux_id_table_new (void);
1.49 +BusSELinuxID* bus_selinux_id_table_lookup (DBusHashTable *service_table,
1.50 + const DBusString *service_name);
1.51 +dbus_bool_t bus_selinux_id_table_insert (DBusHashTable *service_table,
1.52 + const char *service_name,
1.53 + const char *service_context);
1.54 +void bus_selinux_id_table_print (DBusHashTable *service_table);
1.55 +const char* bus_selinux_get_policy_root (void);
1.56 +
1.57 +dbus_bool_t bus_selinux_append_context (DBusMessage *message,
1.58 + BusSELinuxID *context,
1.59 + DBusError *error);
1.60 +
1.61 +dbus_bool_t bus_selinux_allows_acquire_service (DBusConnection *connection,
1.62 + BusSELinuxID *service_sid,
1.63 + const char *service_name,
1.64 + DBusError *error);
1.65 +
1.66 +dbus_bool_t bus_selinux_allows_send (DBusConnection *sender,
1.67 + DBusConnection *proposed_recipient,
1.68 + const char *msgtype, /* Supplementary audit data */
1.69 + const char *interface,
1.70 + const char *member,
1.71 + const char *error_name,
1.72 + const char *destination,
1.73 + DBusError *error);
1.74 +
1.75 +BusSELinuxID* bus_selinux_init_connection_id (DBusConnection *connection,
1.76 + DBusError *error);
1.77 +
1.78 +
1.79 +
1.80 +#endif /* BUS_SELINUX_H */