1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* policy.h Bus security policy
4 * Copyright (C) 2003 Red Hat, Inc.
6 * Licensed under the Academic Free License version 2.1
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include <dbus/dbus.h>
28 #include <dbus/dbus-string.h>
29 #include <dbus/dbus-list.h>
30 #include <dbus/dbus-sysdeps.h>
36 BUS_POLICY_RULE_RECEIVE,
44 BUS_POLICY_RULE_ACCESS_DENY,
45 BUS_POLICY_RULE_ACCESS_ALLOW,
46 /** runtime check resulting in allow or deny */
47 BUS_POLICY_RULE_ACCESS_CHECK
48 } BusPolicyRuleAccess;
52 BUS_POLICY_TRISTATE_ANY = 0,
53 BUS_POLICY_TRISTATE_FALSE,
54 BUS_POLICY_TRISTATE_TRUE
57 /** determines whether the rule affects a connection, or some global item */
58 #define BUS_POLICY_RULE_IS_PER_CLIENT(rule) (!((rule)->type == BUS_POLICY_RULE_USER || \
59 (rule)->type == BUS_POLICY_RULE_GROUP))
65 BusPolicyRuleType type;
67 unsigned int access : 2; /**< BusPolicyRuleAccess */
68 unsigned int score : 30; /**< for keeping the importance of the rule */
69 char *privilege; /**< for BUS_POLICY_RULE_ACCESS_CHECK */
75 /* message type can be DBUS_MESSAGE_TYPE_INVALID meaning "any" */
77 /* any of these can be NULL meaning "any" */
85 unsigned int eavesdrop : 1;
86 unsigned int requested_reply : 1;
88 unsigned int destination_prefix : 1;
89 unsigned int broadcast : 2; /**< really a BusPolicyTristate */
94 /* message type can be DBUS_MESSAGE_TYPE_INVALID meaning "any" */
96 /* any of these can be NULL meaning "any" */
102 unsigned int max_fds;
103 unsigned int min_fds;
104 unsigned int eavesdrop : 1;
105 unsigned int requested_reply : 1;
110 /* can be NULL meaning "any" */
112 /* if prefix is set, any name starting with service_name can be owned */
113 unsigned int prefix : 1;
118 /* can be DBUS_UID_UNSET meaning "any" */
124 /* can be DBUS_GID_UNSET meaning "any" */
131 BusPolicyRule* bus_policy_rule_new (BusPolicyRuleType type,
132 BusPolicyRuleAccess access);
133 BusPolicyRule* bus_policy_rule_ref (BusPolicyRule *rule);
134 void bus_policy_rule_unref (BusPolicyRule *rule);
136 BusPolicy* bus_policy_new (void);
137 BusPolicy* bus_policy_ref (BusPolicy *policy);
138 void bus_policy_unref (BusPolicy *policy);
139 BusClientPolicy* bus_policy_create_client_policy (BusPolicy *policy,
140 DBusConnection *connection,
142 dbus_bool_t bus_policy_allow_unix_user (BusPolicy *policy,
144 dbus_bool_t bus_policy_allow_windows_user (BusPolicy *policy,
145 const char *windows_sid);
146 dbus_bool_t bus_policy_append_default_rule (BusPolicy *policy,
147 BusPolicyRule *rule);
148 dbus_bool_t bus_policy_append_mandatory_rule (BusPolicy *policy,
149 BusPolicyRule *rule);
150 dbus_bool_t bus_policy_append_user_rule (BusPolicy *policy,
152 BusPolicyRule *rule);
153 dbus_bool_t bus_policy_append_group_rule (BusPolicy *policy,
155 BusPolicyRule *rule);
156 dbus_bool_t bus_policy_append_console_rule (BusPolicy *policy,
157 dbus_bool_t at_console,
158 BusPolicyRule *rule);
160 dbus_bool_t bus_policy_merge (BusPolicy *policy,
161 BusPolicy *to_absorb);
163 BusClientPolicy* bus_client_policy_new (void);
164 BusClientPolicy* bus_client_policy_ref (BusClientPolicy *policy);
165 void bus_client_policy_unref (BusClientPolicy *policy);
166 BusResult bus_client_policy_check_can_send (DBusConnection *sender,
167 BusClientPolicy *policy,
168 BusRegistry *registry,
169 dbus_bool_t requested_reply,
170 DBusConnection *addressed_recipient,
171 DBusConnection *receiver,
172 DBusMessage *message,
173 dbus_int32_t *toggles,
175 const char **privilege_param,
176 BusDeferredMessage **deferred_message,
178 BusResult bus_client_policy_check_can_receive (BusClientPolicy *policy,
179 BusRegistry *registry,
180 dbus_bool_t requested_reply,
181 DBusConnection *sender,
182 DBusConnection *addressed_recipient,
183 DBusConnection *proposed_recipient,
184 DBusMessage *message,
185 dbus_int32_t *toggles,
186 const char **privilege_param,
187 BusDeferredMessage **deferred_message,
189 BusResult bus_client_policy_check_can_own (BusClientPolicy *policy,
190 const DBusString *service_name,
191 DBusConnection *connection,
192 DBusMessage *message);
194 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
195 dbus_bool_t bus_policy_check_can_own (BusPolicy *policy,
196 const DBusString *service_name);
199 #endif /* BUS_POLICY_H */