sl@0
|
1 |
/* -*- mode: C; c-file-style: "gnu" -*- */
|
sl@0
|
2 |
/* bus.h message bus context object
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (C) 2003 Red Hat, Inc.
|
sl@0
|
5 |
* Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
6 |
* Licensed under the Academic Free License version 2.1
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* This program is free software; you can redistribute it and/or modify
|
sl@0
|
9 |
* it under the terms of the GNU General Public License as published by
|
sl@0
|
10 |
* the Free Software Foundation; either version 2 of the License, or
|
sl@0
|
11 |
* (at your option) any later version.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* This program is distributed in the hope that it will be useful,
|
sl@0
|
14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
sl@0
|
16 |
* GNU General Public License for more details.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
* You should have received a copy of the GNU General Public License
|
sl@0
|
19 |
* along with this program; if not, write to the Free Software
|
sl@0
|
20 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
sl@0
|
21 |
*
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef BUS_BUS_H
|
sl@0
|
25 |
#define BUS_BUS_H
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifndef __SYMBIAN32__
|
sl@0
|
28 |
#include <config.h>
|
sl@0
|
29 |
#else
|
sl@0
|
30 |
#include "config.h"
|
sl@0
|
31 |
#endif //__SYMBAIN32__
|
sl@0
|
32 |
|
sl@0
|
33 |
#include <dbus/dbus.h>
|
sl@0
|
34 |
#ifndef __SYMBIAN32__
|
sl@0
|
35 |
#include <dbus/dbus-string.h>
|
sl@0
|
36 |
#include <dbus/dbus-mainloop.h>
|
sl@0
|
37 |
#include <dbus/dbus-userdb.h>
|
sl@0
|
38 |
#else
|
sl@0
|
39 |
#include "dbus-string.h"
|
sl@0
|
40 |
#include "dbus-mainloop.h"
|
sl@0
|
41 |
#include "dbus-userdb.h"
|
sl@0
|
42 |
#endif //__SYMBAIN32__
|
sl@0
|
43 |
|
sl@0
|
44 |
typedef struct BusActivation BusActivation;
|
sl@0
|
45 |
typedef struct BusConnections BusConnections;
|
sl@0
|
46 |
typedef struct BusContext BusContext;
|
sl@0
|
47 |
typedef struct BusPolicy BusPolicy;
|
sl@0
|
48 |
typedef struct BusClientPolicy BusClientPolicy;
|
sl@0
|
49 |
typedef struct BusPolicyRule BusPolicyRule;
|
sl@0
|
50 |
typedef struct BusRegistry BusRegistry;
|
sl@0
|
51 |
typedef struct BusSELinuxID BusSELinuxID;
|
sl@0
|
52 |
typedef struct BusService BusService;
|
sl@0
|
53 |
typedef struct BusOwner BusOwner;
|
sl@0
|
54 |
typedef struct BusTransaction BusTransaction;
|
sl@0
|
55 |
typedef struct BusMatchmaker BusMatchmaker;
|
sl@0
|
56 |
typedef struct BusMatchRule BusMatchRule;
|
sl@0
|
57 |
|
sl@0
|
58 |
typedef struct
|
sl@0
|
59 |
{
|
sl@0
|
60 |
long max_incoming_bytes; /**< How many incoming message bytes for a single connection */
|
sl@0
|
61 |
long max_outgoing_bytes; /**< How many outgoing bytes can be queued for a single connection */
|
sl@0
|
62 |
long max_message_size; /**< Max size of a single message in bytes */
|
sl@0
|
63 |
int activation_timeout; /**< How long to wait for an activation to time out */
|
sl@0
|
64 |
int auth_timeout; /**< How long to wait for an authentication to time out */
|
sl@0
|
65 |
int max_completed_connections; /**< Max number of authorized connections */
|
sl@0
|
66 |
int max_incomplete_connections; /**< Max number of incomplete connections */
|
sl@0
|
67 |
int max_connections_per_user; /**< Max number of connections auth'd as same user */
|
sl@0
|
68 |
int max_pending_activations; /**< Max number of pending activations for the entire bus */
|
sl@0
|
69 |
int max_services_per_connection; /**< Max number of owned services for a single connection */
|
sl@0
|
70 |
int max_match_rules_per_connection; /**< Max number of match rules for a single connection */
|
sl@0
|
71 |
int max_replies_per_connection; /**< Max number of replies that can be pending for each connection */
|
sl@0
|
72 |
int reply_timeout; /**< How long to wait before timing out a reply */
|
sl@0
|
73 |
} BusLimits;
|
sl@0
|
74 |
|
sl@0
|
75 |
typedef enum
|
sl@0
|
76 |
{
|
sl@0
|
77 |
FORK_FOLLOW_CONFIG_FILE,
|
sl@0
|
78 |
FORK_ALWAYS,
|
sl@0
|
79 |
FORK_NEVER
|
sl@0
|
80 |
} ForceForkSetting;
|
sl@0
|
81 |
|
sl@0
|
82 |
BusContext* bus_context_new (const DBusString *config_file,
|
sl@0
|
83 |
ForceForkSetting force_fork,
|
sl@0
|
84 |
int print_addr_fd,
|
sl@0
|
85 |
int print_pid_fd,
|
sl@0
|
86 |
DBusError *error);
|
sl@0
|
87 |
dbus_bool_t bus_context_reload_config (BusContext *context,
|
sl@0
|
88 |
DBusError *error);
|
sl@0
|
89 |
void bus_context_shutdown (BusContext *context);
|
sl@0
|
90 |
BusContext* bus_context_ref (BusContext *context);
|
sl@0
|
91 |
void bus_context_unref (BusContext *context);
|
sl@0
|
92 |
const char* bus_context_get_type (BusContext *context);
|
sl@0
|
93 |
const char* bus_context_get_address (BusContext *context);
|
sl@0
|
94 |
BusRegistry* bus_context_get_registry (BusContext *context);
|
sl@0
|
95 |
BusConnections* bus_context_get_connections (BusContext *context);
|
sl@0
|
96 |
BusActivation* bus_context_get_activation (BusContext *context);
|
sl@0
|
97 |
BusMatchmaker* bus_context_get_matchmaker (BusContext *context);
|
sl@0
|
98 |
DBusLoop* bus_context_get_loop (BusContext *context);
|
sl@0
|
99 |
DBusUserDatabase* bus_context_get_user_database (BusContext *context);
|
sl@0
|
100 |
|
sl@0
|
101 |
dbus_bool_t bus_context_allow_user (BusContext *context,
|
sl@0
|
102 |
unsigned long uid);
|
sl@0
|
103 |
BusPolicy* bus_context_get_policy (BusContext *context);
|
sl@0
|
104 |
|
sl@0
|
105 |
BusClientPolicy* bus_context_create_client_policy (BusContext *context,
|
sl@0
|
106 |
DBusConnection *connection,
|
sl@0
|
107 |
DBusError *error);
|
sl@0
|
108 |
int bus_context_get_activation_timeout (BusContext *context);
|
sl@0
|
109 |
int bus_context_get_auth_timeout (BusContext *context);
|
sl@0
|
110 |
int bus_context_get_max_completed_connections (BusContext *context);
|
sl@0
|
111 |
int bus_context_get_max_incomplete_connections (BusContext *context);
|
sl@0
|
112 |
int bus_context_get_max_connections_per_user (BusContext *context);
|
sl@0
|
113 |
int bus_context_get_max_pending_activations (BusContext *context);
|
sl@0
|
114 |
int bus_context_get_max_services_per_connection (BusContext *context);
|
sl@0
|
115 |
int bus_context_get_max_match_rules_per_connection (BusContext *context);
|
sl@0
|
116 |
int bus_context_get_max_replies_per_connection (BusContext *context);
|
sl@0
|
117 |
int bus_context_get_reply_timeout (BusContext *context);
|
sl@0
|
118 |
dbus_bool_t bus_context_check_security_policy (BusContext *context,
|
sl@0
|
119 |
BusTransaction *transaction,
|
sl@0
|
120 |
DBusConnection *sender,
|
sl@0
|
121 |
DBusConnection *addressed_recipient,
|
sl@0
|
122 |
DBusConnection *proposed_recipient,
|
sl@0
|
123 |
DBusMessage *message,
|
sl@0
|
124 |
DBusError *error);
|
sl@0
|
125 |
|
sl@0
|
126 |
#endif /* BUS_BUS_H */
|