1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-server.c DBusServer object
4 * Copyright (C) 2002 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
23 #include "dbus-server.h"
24 #include "dbus-server-unix.h"
25 #ifdef DBUS_BUILD_TESTS
26 #include "dbus-server-debug.h"
28 #include "dbus-address.h"
31 * @defgroup DBusServer DBusServer
33 * @brief Server that listens for new connections.
35 * Types and functions related to DBusServer.
36 * A DBusServer represents a server that other applications
37 * can connect to. Each connection from another application
38 * is represented by a DBusConnection.
42 * @defgroup DBusServerInternals DBusServer implementation details
43 * @ingroup DBusInternals
44 * @brief Implementation details of DBusServer
50 * Initializes the members of the DBusServer base class.
51 * Chained up to by subclass constructors.
53 * @param server the server.
54 * @param vtable the vtable for the subclass.
55 * @returns #TRUE on success.
58 _dbus_server_init_base (DBusServer *server,
59 const DBusServerVTable *vtable)
61 server->vtable = vtable;
64 server->watches = _dbus_watch_list_new ();
65 if (server->watches == NULL)
68 server->timeouts = _dbus_timeout_list_new ();
69 if (server->timeouts == NULL)
71 _dbus_watch_list_free (server->watches);
72 server->watches = NULL;
76 server->connection_counter = _dbus_counter_new ();
77 if (server->connection_counter == NULL)
79 _dbus_watch_list_free (server->watches);
80 server->watches = NULL;
81 _dbus_timeout_list_free (server->timeouts);
82 server->timeouts = NULL;
87 server->max_connections = 256; /* same as an X server, seems like a nice default */
93 * Finalizes the members of the DBusServer base class.
94 * Chained up to by subclass finalizers.
96 * @param server the server.
99 _dbus_server_finalize_base (DBusServer *server)
101 dbus_server_set_new_connection_function (server, NULL, NULL, NULL);
103 if (!server->disconnected)
104 dbus_server_disconnect (server);
106 _dbus_watch_list_free (server->watches);
107 _dbus_timeout_list_free (server->timeouts);
108 _dbus_counter_unref (server->connection_counter);
112 * Adds a watch for this server, chaining out to application-provided
115 * @param server the server.
116 * @param watch the watch to add.
119 _dbus_server_add_watch (DBusServer *server,
122 return _dbus_watch_list_add_watch (server->watches, watch);
126 * Removes a watch previously added with _dbus_server_remove_watch().
128 * @param server the server.
129 * @param watch the watch to remove.
132 _dbus_server_remove_watch (DBusServer *server,
135 _dbus_watch_list_remove_watch (server->watches, watch);
139 * Adds a timeout for this server, chaining out to application-provided
142 * @param server the server.
143 * @param timeout the timeout to add.
146 _dbus_server_add_timeout (DBusServer *server,
147 DBusTimeout *timeout)
149 return _dbus_timeout_list_add_timeout (server->timeouts, timeout);
153 * Removes a timeout previously added with _dbus_server_add_timeout().
155 * @param server the server.
156 * @param timeout the timeout to remove.
159 _dbus_server_remove_timeout (DBusServer *server,
160 DBusTimeout *timeout)
162 _dbus_timeout_list_remove_timeout (server->timeouts, timeout);
168 * @addtogroup DBusServer
175 * @typedef DBusServer
177 * An opaque object representing a server that listens for
178 * connections from other applications. Each time a connection
179 * is made, a new DBusConnection is created and made available
180 * via an application-provided DBusNewConnectionFunction.
181 * The DBusNewConnectionFunction is provided with
182 * dbus_server_set_new_connection_function().
187 * Listens for new connections on the given address.
188 * Returns #NULL if listening fails for any reason.
189 * Otherwise returns a new #DBusServer.
190 * dbus_server_set_new_connection_function() and
191 * dbus_server_set_watch_functions() should be called
192 * immediately to render the server fully functional.
194 * @todo error messages on bad address could really be better.
195 * DBusResultCode is a bit limiting here.
197 * @param address the address of this server.
198 * @param result location to store rationale for failure.
199 * @returns a new DBusServer, or #NULL on failure.
203 dbus_server_listen (const char *address,
204 DBusResultCode *result)
207 DBusAddressEntry **entries;
210 if (!dbus_parse_address (address, &entries, &len, result))
215 for (i = 0; i < len; i++)
217 const char *method = dbus_address_entry_get_method (entries[i]);
219 if (strcmp (method, "unix") == 0)
221 const char *path = dbus_address_entry_get_value (entries[i], "path");
226 server = _dbus_server_new_for_domain_socket (path, result);
231 #ifdef DBUS_BUILD_TESTS
232 else if (strcmp (method, "debug") == 0)
234 const char *name = dbus_address_entry_get_value (entries[i], "name");
239 server = _dbus_server_debug_new (name, result);
249 dbus_address_entries_free (entries);
253 dbus_address_entries_free (entries);
254 dbus_set_result (result, DBUS_RESULT_BAD_ADDRESS);
260 * Increments the reference count of a DBusServer.
262 * @param server the server.
265 dbus_server_ref (DBusServer *server)
267 server->refcount += 1;
271 * Decrements the reference count of a DBusServer. Finalizes the
272 * server if the reference count reaches zero. The server connection
273 * will be closed as with dbus_server_disconnect() when the server is
276 * @param server the server.
279 dbus_server_unref (DBusServer *server)
281 _dbus_assert (server != NULL);
282 _dbus_assert (server->refcount > 0);
284 server->refcount -= 1;
285 if (server->refcount == 0)
287 _dbus_assert (server->vtable->finalize != NULL);
289 (* server->vtable->finalize) (server);
294 * Releases the server's address and stops listening for
295 * new clients. If called more than once, only the first
296 * call has an effect. Does not modify the server's
299 * @param server the server.
302 dbus_server_disconnect (DBusServer *server)
304 _dbus_assert (server->vtable->disconnect != NULL);
306 if (server->disconnected)
309 (* server->vtable->disconnect) (server);
310 server->disconnected = TRUE;
314 * Returns #TRUE if the server is still listening for new connections.
316 * @param server the server.
319 dbus_server_get_is_connected (DBusServer *server)
321 return !server->disconnected;
325 * Sets a function to be used for handling new connections. The given
326 * function is passed each new connection as the connection is
327 * created. If the new connection function increments the connection's
328 * reference count, the connection will stay alive. Otherwise, the
329 * connection will be unreferenced and closed.
331 * @param server the server.
332 * @param function a function to handle new connections.
333 * @param data data to pass to the new connection handler.
334 * @param free_data_function function to free the data.
337 dbus_server_set_new_connection_function (DBusServer *server,
338 DBusNewConnectionFunction function,
340 DBusFreeFunction free_data_function)
342 if (server->new_connection_free_data_function != NULL)
343 (* server->new_connection_free_data_function) (server->new_connection_data);
345 server->new_connection_function = function;
346 server->new_connection_data = data;
347 server->new_connection_free_data_function = free_data_function;
351 * Sets the watch functions for the connection. These functions are
352 * responsible for making the application's main loop aware of file
353 * descriptors that need to be monitored for events.
355 * This function behaves exactly like dbus_connection_set_watch_functions();
356 * see the documentation for that routine.
358 * @param server the server.
359 * @param add_function function to begin monitoring a new descriptor.
360 * @param remove_function function to stop monitoring a descriptor.
361 * @param data data to pass to add_function and remove_function.
362 * @param free_data_function function to be called to free the data.
365 dbus_server_set_watch_functions (DBusServer *server,
366 DBusAddWatchFunction add_function,
367 DBusRemoveWatchFunction remove_function,
369 DBusFreeFunction free_data_function)
371 _dbus_watch_list_set_functions (server->watches,
379 * Sets the timeout functions for the connection. These functions are
380 * responsible for making the application's main loop aware of timeouts.
382 * This function behaves exactly like dbus_connection_set_timeout_functions();
383 * see the documentation for that routine.
385 * @param server the server.
386 * @param add_function function to add a timeout.
387 * @param remove_function function to remove a timeout.
388 * @param data data to pass to add_function and remove_function.
389 * @param free_data_function function to be called to free the data.
392 dbus_server_set_timeout_functions (DBusServer *server,
393 DBusAddTimeoutFunction add_function,
394 DBusRemoveTimeoutFunction remove_function,
396 DBusFreeFunction free_data_function)
398 _dbus_timeout_list_set_functions (server->timeouts,
399 add_function, remove_function,
400 data, free_data_function);
404 * Called to notify the server when a previously-added watch
405 * is ready for reading or writing, or has an exception such
408 * @param server the server.
409 * @param watch the watch.
410 * @param condition the current condition of the file descriptors being watched.
413 dbus_server_handle_watch (DBusServer *server,
415 unsigned int condition)
417 _dbus_assert (server->vtable->handle_watch != NULL);
419 _dbus_watch_sanitize_condition (watch, &condition);
421 (* server->vtable->handle_watch) (server, watch, condition);
425 * Sets the maximum number of connections that can be open at one
426 * time for this server. If the maximum is reached, and another
427 * client tries to connect, then the oldest unauthenticated client
428 * will be dropped. If no unauthenticated client exists, then
429 * the new connection will be refused.
431 * If the maximum is set to a number lower than the current
432 * number of connections, no current connections are
435 * @todo honoring max_connections has not been implemented
436 * yet. The only real work involved is keeping a list
437 * of live connections on the DBusServer so the oldest
438 * unauthenticated client can be located when required.
440 * @todo for a systemwide daemon, we need a max number of connections
441 * per user, since any user can authenticate a bunch of connections
444 * @todo a single process might listen on multiple mechanisms
445 * (multiple DBusServer) and might want the max connections
446 * value to span all those servers. Should consider
447 * changing the API accordingly, though I'm inclined to
448 * punt this to the app that wants to do it instead of
449 * putting it in the library.
451 * @param server the server
452 * @param max_connections maximum number of connections allowed
455 dbus_server_set_max_connections (DBusServer *server,
458 server->max_connections = max_connections;
462 * Gets the maximum number of connections that can be active
463 * at a time for this server.
465 * @param server the server
466 * @returns maximum number of connections at once
469 dbus_server_get_max_connections (DBusServer *server)
471 return server->max_connections;
475 * Gets the number of #DBusConnection to this server that
476 * have not yet been finalized. i.e. all #DBusConnection that
477 * were passed to #DBusNewConnectionFunction and have not yet been
478 * finalized will count in this total.
480 * @param server the server
481 * @returns the number of connections
484 dbus_server_get_n_connections (DBusServer *server)
486 return _dbus_counter_get_value (server->connection_counter);