1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* policy.h Bus security policy
4 * Copyright (C) 2003 Red Hat, Inc.
6 * Licensed under the Academic Free License version 1.2
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <dbus/dbus.h>
28 #include <dbus/dbus-string.h>
29 #include <dbus/dbus-sysdeps.h>
35 BUS_POLICY_RULE_RECEIVE,
41 /** determines whether the rule affects a connection, or some global item */
42 #define BUS_POLICY_RULE_IS_PER_CLIENT(rule) (!((rule)->type == BUS_POLICY_RULE_USER || \
43 (rule)->type == BUS_POLICY_RULE_GROUP))
49 BusPolicyRuleType type;
51 unsigned int allow : 1; /**< #TRUE if this allows, #FALSE if it denies */
57 /* either can be NULL meaning "any" */
64 /* either can be NULL meaning "any" */
71 /* can be NULL meaning "any" */
77 /* can be DBUS_UID_UNSET meaning "any" */
83 /* can be DBUS_GID_UNSET meaning "any" */
90 BusPolicyRule* bus_policy_rule_new (BusPolicyRuleType type,
92 void bus_policy_rule_ref (BusPolicyRule *rule);
93 void bus_policy_rule_unref (BusPolicyRule *rule);
95 BusPolicy* bus_policy_new (void);
96 void bus_policy_ref (BusPolicy *policy);
97 void bus_policy_unref (BusPolicy *policy);
98 BusClientPolicy* bus_policy_create_client_policy (BusPolicy *policy,
99 DBusConnection *connection,
101 dbus_bool_t bus_policy_allow_user (BusPolicy *policy,
102 DBusUserDatabase *user_database,
104 dbus_bool_t bus_policy_append_default_rule (BusPolicy *policy,
105 BusPolicyRule *rule);
106 dbus_bool_t bus_policy_append_mandatory_rule (BusPolicy *policy,
107 BusPolicyRule *rule);
108 dbus_bool_t bus_policy_append_user_rule (BusPolicy *policy,
110 BusPolicyRule *rule);
111 dbus_bool_t bus_policy_append_group_rule (BusPolicy *policy,
113 BusPolicyRule *rule);
114 dbus_bool_t bus_policy_merge (BusPolicy *policy,
115 BusPolicy *to_absorb);
117 BusClientPolicy* bus_client_policy_new (void);
118 void bus_client_policy_ref (BusClientPolicy *policy);
119 void bus_client_policy_unref (BusClientPolicy *policy);
120 dbus_bool_t bus_client_policy_check_can_send (BusClientPolicy *policy,
121 BusRegistry *registry,
122 DBusConnection *receiver,
123 DBusMessage *message);
124 dbus_bool_t bus_client_policy_check_can_receive (BusClientPolicy *policy,
125 BusRegistry *registry,
126 DBusConnection *sender,
127 DBusMessage *message);
128 dbus_bool_t bus_client_policy_check_can_own (BusClientPolicy *policy,
129 DBusConnection *connection,
130 const DBusString *service_name);
131 dbus_bool_t bus_client_policy_append_rule (BusClientPolicy *policy,
132 BusPolicyRule *rule);
133 void bus_client_policy_optimize (BusClientPolicy *policy);
136 #endif /* BUS_POLICY_H */