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., 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-list.h>
30 #include <dbus/dbus-sysdeps.h>
36 BUS_POLICY_RULE_RECEIVE,
42 /** determines whether the rule affects a connection, or some global item */
43 #define BUS_POLICY_RULE_IS_PER_CLIENT(rule) (!((rule)->type == BUS_POLICY_RULE_USER || \
44 (rule)->type == BUS_POLICY_RULE_GROUP))
50 BusPolicyRuleType type;
52 unsigned int allow : 1; /**< #TRUE if this allows, #FALSE if it denies */
58 /* message type can be DBUS_MESSAGE_TYPE_INVALID meaning "any" */
60 /* any of these can be NULL meaning "any" */
66 unsigned int eavesdrop : 1;
67 unsigned int requested_reply : 1;
72 /* message type can be DBUS_MESSAGE_TYPE_INVALID meaning "any" */
74 /* any of these can be NULL meaning "any" */
80 unsigned int eavesdrop : 1;
81 unsigned int requested_reply : 1;
86 /* can be NULL meaning "any" */
92 /* can be DBUS_UID_UNSET meaning "any" */
98 /* can be DBUS_GID_UNSET meaning "any" */
105 BusPolicyRule* bus_policy_rule_new (BusPolicyRuleType type,
107 BusPolicyRule* bus_policy_rule_ref (BusPolicyRule *rule);
108 void bus_policy_rule_unref (BusPolicyRule *rule);
110 BusPolicy* bus_policy_new (void);
111 BusPolicy* bus_policy_ref (BusPolicy *policy);
112 void bus_policy_unref (BusPolicy *policy);
113 BusClientPolicy* bus_policy_create_client_policy (BusPolicy *policy,
114 DBusConnection *connection,
116 dbus_bool_t bus_policy_allow_unix_user (BusPolicy *policy,
118 dbus_bool_t bus_policy_allow_windows_user (BusPolicy *policy,
119 const char *windows_sid);
120 dbus_bool_t bus_policy_append_default_rule (BusPolicy *policy,
121 BusPolicyRule *rule);
122 dbus_bool_t bus_policy_append_mandatory_rule (BusPolicy *policy,
123 BusPolicyRule *rule);
124 dbus_bool_t bus_policy_append_user_rule (BusPolicy *policy,
126 BusPolicyRule *rule);
127 dbus_bool_t bus_policy_append_group_rule (BusPolicy *policy,
129 BusPolicyRule *rule);
130 dbus_bool_t bus_policy_append_console_rule (BusPolicy *policy,
131 dbus_bool_t at_console,
132 BusPolicyRule *rule);
134 dbus_bool_t bus_policy_merge (BusPolicy *policy,
135 BusPolicy *to_absorb);
137 BusClientPolicy* bus_client_policy_new (void);
138 BusClientPolicy* bus_client_policy_ref (BusClientPolicy *policy);
139 void bus_client_policy_unref (BusClientPolicy *policy);
140 dbus_bool_t bus_client_policy_check_can_send (BusClientPolicy *policy,
141 BusRegistry *registry,
142 dbus_bool_t requested_reply,
143 DBusConnection *receiver,
144 DBusMessage *message);
145 dbus_bool_t bus_client_policy_check_can_receive (BusClientPolicy *policy,
146 BusRegistry *registry,
147 dbus_bool_t requested_reply,
148 DBusConnection *sender,
149 DBusConnection *addressed_recipient,
150 DBusConnection *proposed_recipient,
151 DBusMessage *message);
152 dbus_bool_t bus_client_policy_check_can_own (BusClientPolicy *policy,
153 DBusConnection *connection,
154 const DBusString *service_name);
155 dbus_bool_t bus_client_policy_append_rule (BusClientPolicy *policy,
156 BusPolicyRule *rule);
157 void bus_client_policy_optimize (BusClientPolicy *policy);
160 #endif /* BUS_POLICY_H */