D-Bus 1.15.8
Data Structures | Typedefs | Functions
DBusConnection implementation details

Implementation details of DBusConnection. More...

Data Structures

struct  DBusMessageFilter
 Internal struct representing a message filter function. More...
 
struct  DBusPreallocatedSend
 Internals of DBusPreallocatedSend. More...
 
struct  DBusConnection
 Implementation details of DBusConnection. More...
 

Typedefs

typedef struct DBusMessageFilter DBusMessageFilter
 Internal struct representing a message filter function. More...
 
typedef dbus_bool_t(* DBusWatchAddFunction) (DBusWatchList *list, DBusWatch *watch)
 Function to be called in protected_change_watch() with refcount held. More...
 
typedef void(* DBusWatchRemoveFunction) (DBusWatchList *list, DBusWatch *watch)
 Function to be called in protected_change_watch() with refcount held. More...
 
typedef void(* DBusWatchToggleFunction) (DBusWatchList *list, DBusWatch *watch, dbus_bool_t enabled)
 Function to be called in protected_change_watch() with refcount held. More...
 
typedef dbus_bool_t(* DBusTimeoutAddFunction) (DBusTimeoutList *list, DBusTimeout *timeout)
 Function to be called in protected_change_timeout() with refcount held. More...
 
typedef void(* DBusTimeoutRemoveFunction) (DBusTimeoutList *list, DBusTimeout *timeout)
 Function to be called in protected_change_timeout() with refcount held. More...
 
typedef void(* DBusTimeoutToggleFunction) (DBusTimeoutList *list, DBusTimeout *timeout, dbus_bool_t enabled)
 Function to be called in protected_change_timeout() with refcount held. More...
 

Functions

void _dbus_connection_lock (DBusConnection *connection)
 Acquires the connection lock. More...
 
void _dbus_connection_unlock (DBusConnection *connection)
 Releases the connection lock. More...
 
void _dbus_connection_queue_received_message_link (DBusConnection *connection, DBusList *link)
 Adds a message-containing list link to the incoming message queue, taking ownership of the link and the message's current refcount. More...
 
void _dbus_connection_queue_synthesized_message_link (DBusConnection *connection, DBusList *link)
 Adds a link + message to the incoming message queue. More...
 
dbus_bool_t _dbus_connection_has_messages_to_send_unlocked (DBusConnection *connection)
 Checks whether there are messages in the outgoing message queue. More...
 
dbus_bool_t dbus_connection_has_messages_to_send (DBusConnection *connection)
 Checks whether there are messages in the outgoing message queue. More...
 
DBusMessage_dbus_connection_get_message_to_send (DBusConnection *connection)
 Gets the next outgoing message. More...
 
void _dbus_connection_message_sent_unlocked (DBusConnection *connection, DBusMessage *message)
 Notifies the connection that a message has been sent, so the message can be removed from the outgoing queue. More...
 
dbus_bool_t _dbus_connection_add_watch_unlocked (DBusConnection *connection, DBusWatch *watch)
 Adds a watch using the connection's DBusAddWatchFunction if available. More...
 
void _dbus_connection_remove_watch_unlocked (DBusConnection *connection, DBusWatch *watch)
 Removes a watch using the connection's DBusRemoveWatchFunction if available. More...
 
void _dbus_connection_toggle_watch_unlocked (DBusConnection *connection, DBusWatch *watch, dbus_bool_t enabled)
 Toggles a watch and notifies app via connection's DBusWatchToggledFunction if available. More...
 
dbus_bool_t _dbus_connection_add_timeout_unlocked (DBusConnection *connection, DBusTimeout *timeout)
 Adds a timeout using the connection's DBusAddTimeoutFunction if available. More...
 
void _dbus_connection_remove_timeout_unlocked (DBusConnection *connection, DBusTimeout *timeout)
 Removes a timeout using the connection's DBusRemoveTimeoutFunction if available. More...
 
void _dbus_connection_toggle_timeout_unlocked (DBusConnection *connection, DBusTimeout *timeout, dbus_bool_t enabled)
 Toggles a timeout and notifies app via connection's DBusTimeoutToggledFunction if available. More...
 
void _dbus_connection_remove_pending_call (DBusConnection *connection, DBusPendingCall *pending)
 Removes a pending call from the connection, such that the pending reply will be ignored. More...
 
void _dbus_connection_do_iteration_unlocked (DBusConnection *connection, DBusPendingCall *pending, unsigned int flags, int timeout_milliseconds)
 Queues incoming messages and sends outgoing messages for this connection, optionally blocking in the process. More...
 
DBusConnection_dbus_connection_new_for_transport (DBusTransport *transport)
 Creates a new connection for the given transport. More...
 
DBusConnection_dbus_connection_ref_unlocked (DBusConnection *connection)
 Increments the reference count of a DBusConnection. More...
 
void _dbus_connection_unref_unlocked (DBusConnection *connection)
 Decrements the reference count of a DBusConnection. More...
 
dbus_uint32_t _dbus_connection_get_next_client_serial (DBusConnection *connection)
 Allocate and return the next non-zero serial number for outgoing messages. More...
 
dbus_bool_t _dbus_connection_handle_watch (DBusWatch *watch, unsigned int condition, void *data)
 A callback for use with dbus_watch_new() to create a DBusWatch. More...
 
void _dbus_connection_close_possibly_shared (DBusConnection *connection)
 Closes a shared OR private connection, while dbus_connection_close() can only be used on private connections. More...
 
dbus_bool_t _dbus_connection_send_and_unlock (DBusConnection *connection, DBusMessage *message, dbus_uint32_t *client_serial)
 Like dbus_connection_send(), but assumes the connection is already locked on function entry, and unlocks before returning. More...
 
void _dbus_connection_close_if_only_one_ref (DBusConnection *connection)
 Used internally to handle the semantics of dbus_server_set_new_connection_function(). More...
 
void _dbus_connection_block_pending_call (DBusPendingCall *pending)
 Blocks until a pending call times out or gets a reply. More...
 
int _dbus_connection_get_pending_fds_count (DBusConnection *connection)
 Return how many file descriptors are pending in the loader. More...
 
void _dbus_connection_set_pending_fds_function (DBusConnection *connection, DBusPendingFdsChangeFunction callback, void *data)
 Register a function to be called whenever the number of pending file descriptors in the loader change. More...
 

Detailed Description

Implementation details of DBusConnection.

Typedef Documentation

◆ DBusMessageFilter

Internal struct representing a message filter function.

Definition at line 225 of file dbus-connection.c.

◆ DBusTimeoutAddFunction

typedef dbus_bool_t(* DBusTimeoutAddFunction) (DBusTimeoutList *list, DBusTimeout *timeout)

Function to be called in protected_change_timeout() with refcount held.

Definition at line 798 of file dbus-connection.c.

◆ DBusTimeoutRemoveFunction

typedef void(* DBusTimeoutRemoveFunction) (DBusTimeoutList *list, DBusTimeout *timeout)

Function to be called in protected_change_timeout() with refcount held.

Definition at line 801 of file dbus-connection.c.

◆ DBusTimeoutToggleFunction

typedef void(* DBusTimeoutToggleFunction) (DBusTimeoutList *list, DBusTimeout *timeout, dbus_bool_t enabled)

Function to be called in protected_change_timeout() with refcount held.

Definition at line 804 of file dbus-connection.c.

◆ DBusWatchAddFunction

typedef dbus_bool_t(* DBusWatchAddFunction) (DBusWatchList *list, DBusWatch *watch)

Function to be called in protected_change_watch() with refcount held.

Definition at line 674 of file dbus-connection.c.

◆ DBusWatchRemoveFunction

typedef void(* DBusWatchRemoveFunction) (DBusWatchList *list, DBusWatch *watch)

Function to be called in protected_change_watch() with refcount held.

Definition at line 677 of file dbus-connection.c.

◆ DBusWatchToggleFunction

typedef void(* DBusWatchToggleFunction) (DBusWatchList *list, DBusWatch *watch, dbus_bool_t enabled)

Function to be called in protected_change_watch() with refcount held.

Definition at line 680 of file dbus-connection.c.

Function Documentation

◆ _dbus_connection_add_timeout_unlocked()

dbus_bool_t _dbus_connection_add_timeout_unlocked ( DBusConnection connection,
DBusTimeout timeout 
)

Adds a timeout using the connection's DBusAddTimeoutFunction if available.

Otherwise records the timeout to be added when said function is available. Also re-adds the timeout if the DBusAddTimeoutFunction changes. May fail due to lack of memory. The timeout will fire repeatedly until removed. Connection lock should be held when calling this.

Parameters
connectionthe connection.
timeoutthe timeout to add.
Returns
TRUE on success.

Definition at line 871 of file dbus-connection.c.

◆ _dbus_connection_add_watch_unlocked()

dbus_bool_t _dbus_connection_add_watch_unlocked ( DBusConnection connection,
DBusWatch watch 
)

Adds a watch using the connection's DBusAddWatchFunction if available.

Otherwise records the watch to be added when said function is available. Also re-adds the watch if the DBusAddWatchFunction changes. May fail due to lack of memory. Connection lock should be held when calling this.

Parameters
connectionthe connection.
watchthe watch to add.
Returns
TRUE on success.

Definition at line 747 of file dbus-connection.c.

◆ _dbus_connection_block_pending_call()

void _dbus_connection_block_pending_call ( DBusPendingCall pending)

Blocks until a pending call times out or gets a reply.

Does not re-enter the main loop or run filter/path-registered callbacks. The reply to the message will not be seen by filter callbacks.

Returns immediately if pending call already got a reply.

Parameters
pendingthe pending call we block for a reply on

Definition at line 2394 of file dbus-connection.c.

References _dbus_assert, _dbus_pending_call_get_connection_and_lock(), dbus_pending_call_get_completed(), dbus_pending_call_ref(), and NULL.

Referenced by dbus_pending_call_block().

◆ _dbus_connection_close_if_only_one_ref()

void _dbus_connection_close_if_only_one_ref ( DBusConnection connection)

Used internally to handle the semantics of dbus_server_set_new_connection_function().

If the new connection function does not ref the connection, we want to close it.

A bit of a hack, probably the new connection function should have returned a value for whether to close, or should have had to close the connection itself if it didn't want it.

But, this works OK as long as the new connection function doesn't do anything crazy like keep the connection around without ref'ing it.

We have to lock the connection across refcount check and close in case the new connection function spawns a thread that closes and unrefs. In that case, if the app thread closes and unrefs first, we'll harmlessly close again; if the app thread still has the ref, we'll close and then the app will close harmlessly. If the app unrefs without closing, the app is broken since if the app refs from the new connection function it is supposed to also close.

If we didn't atomically check the refcount and close with the lock held though, we could screw this up.

Parameters
connectionthe connection

Definition at line 2160 of file dbus-connection.c.

References _dbus_assert, _dbus_atomic_get(), CONNECTION_LOCK, and DBusConnection::refcount.

◆ _dbus_connection_close_possibly_shared()

void _dbus_connection_close_possibly_shared ( DBusConnection connection)

Closes a shared OR private connection, while dbus_connection_close() can only be used on private connections.

Should only be called by the dbus code that owns the connection - an owner must be known, the open/close state is like malloc/free, not like ref/unref.

Parameters
connectionthe connection

Definition at line 1962 of file dbus-connection.c.

References _dbus_assert, _dbus_current_generation, CONNECTION_LOCK, and NULL.

◆ _dbus_connection_do_iteration_unlocked()

void _dbus_connection_do_iteration_unlocked ( DBusConnection connection,
DBusPendingCall pending,
unsigned int  flags,
int  timeout_milliseconds 
)

Queues incoming messages and sends outgoing messages for this connection, optionally blocking in the process.

Each call to _dbus_connection_do_iteration_unlocked() will call select() or poll() one time and then read or write data if possible.

The purpose of this function is to be able to flush outgoing messages or queue up incoming messages without returning control to the application and causing reentrancy weirdness.

The flags parameter allows you to specify whether to read incoming messages, write outgoing messages, or both, and whether to block if no immediate action is possible.

The timeout_milliseconds parameter does nothing unless the iteration is blocking.

If there are no outgoing messages and DBUS_ITERATION_DO_READING wasn't specified, then it's impossible to block, even if you specify DBUS_ITERATION_BLOCK; in that case the function returns immediately.

If pending is not NULL then a check is made if the pending call is completed after the io path has been required. If the call has been completed nothing is done. This must be done since the _dbus_connection_acquire_io_path releases the connection lock for a while.

Called with connection lock held.

Parameters
connectionthe connection.
pendingthe pending call that should be checked or NULL
flagsiteration flags.
timeout_millisecondsmaximum blocking time, or -1 for no limit.

Definition at line 1202 of file dbus-connection.c.

References DBusConnection::n_outgoing.

◆ _dbus_connection_get_message_to_send()

DBusMessage * _dbus_connection_get_message_to_send ( DBusConnection connection)

Gets the next outgoing message.

The message remains in the queue, and the caller does not own a reference to it.

Parameters
connectionthe connection.
Returns
the message to be sent.

Definition at line 613 of file dbus-connection.c.

References _dbus_list_get_last(), and DBusConnection::outgoing_messages.

◆ _dbus_connection_get_next_client_serial()

dbus_uint32_t _dbus_connection_get_next_client_serial ( DBusConnection connection)

Allocate and return the next non-zero serial number for outgoing messages.

This method is only valid to call from single-threaded code, such as the dbus-daemon, or with the connection lock held.

Parameters
connectionthe connection
Returns
A suitable serial number for the next message to be sent on the connection.

Definition at line 1474 of file dbus-connection.c.

References DBusConnection::client_serial.

◆ _dbus_connection_get_pending_fds_count()

int _dbus_connection_get_pending_fds_count ( DBusConnection connection)

Return how many file descriptors are pending in the loader.

Parameters
connectionthe connection

Definition at line 2575 of file dbus-connection.c.

References _dbus_transport_get_pending_fds_count(), and DBusConnection::transport.

◆ _dbus_connection_handle_watch()

dbus_bool_t _dbus_connection_handle_watch ( DBusWatch watch,
unsigned int  condition,
void *  data 
)

A callback for use with dbus_watch_new() to create a DBusWatch.

Parameters
watchthe watch.
conditionthe current condition of the file descriptors being watched.
datamust be a pointer to a DBusConnection
Returns
FALSE if the IO condition may not have been fully handled due to lack of memory

Definition at line 1500 of file dbus-connection.c.

References CONNECTION_LOCK.

◆ _dbus_connection_has_messages_to_send_unlocked()

dbus_bool_t _dbus_connection_has_messages_to_send_unlocked ( DBusConnection connection)

Checks whether there are messages in the outgoing message queue.

Called with connection lock held.

Parameters
connectionthe connection.
Returns
TRUE if the outgoing queue is non-empty.

Definition at line 576 of file dbus-connection.c.

References NULL, and DBusConnection::outgoing_messages.

Referenced by dbus_connection_has_messages_to_send().

◆ _dbus_connection_lock()

void _dbus_connection_lock ( DBusConnection connection)

Acquires the connection lock.

Parameters
connectionthe connection.

Definition at line 392 of file dbus-connection.c.

References CONNECTION_LOCK.

◆ _dbus_connection_message_sent_unlocked()

void _dbus_connection_message_sent_unlocked ( DBusConnection connection,
DBusMessage message 
)

Notifies the connection that a message has been sent, so the message can be removed from the outgoing queue.

Called with the connection lock held.

Parameters
connectionthe connection.
messagethe message that was sent.

Definition at line 629 of file dbus-connection.c.

References _dbus_assert, _dbus_list_get_last_link(), _dbus_list_prepend_link(), _dbus_list_unlink(), _dbus_message_remove_counter(), DBusList::data, dbus_message_get_interface(), dbus_message_get_member(), dbus_message_get_path(), dbus_message_get_signature(), dbus_message_get_type(), dbus_message_type_to_string(), DBusConnection::expired_messages, DBusConnection::n_outgoing, NULL, DBusConnection::outgoing_counter, and DBusConnection::outgoing_messages.

◆ _dbus_connection_new_for_transport()

DBusConnection * _dbus_connection_new_for_transport ( DBusTransport transport)

Creates a new connection for the given transport.

A transport represents a message stream that uses some concrete mechanism, such as UNIX domain sockets. May return NULL if insufficient memory exists to create the connection.

Parameters
transportthe transport.
Returns
the new connection, or NULL on failure.

Definition at line 1253 of file dbus-connection.c.

References _dbus_hash_table_new(), _dbus_timeout_list_new(), _dbus_watch_list_new(), DBUS_HASH_INT, and NULL.

◆ _dbus_connection_queue_received_message_link()

void _dbus_connection_queue_received_message_link ( DBusConnection connection,
DBusList link 
)

◆ _dbus_connection_queue_synthesized_message_link()

void _dbus_connection_queue_synthesized_message_link ( DBusConnection connection,
DBusList link 
)

Adds a link + message to the incoming message queue.

Can't fail. Takes ownership of both link and message.

Parameters
connectionthe connection.
linkthe list node and message to queue.

Definition at line 549 of file dbus-connection.c.

References _dbus_list_append_link(), DBusConnection::incoming_messages, and DBusConnection::n_incoming.

Referenced by _dbus_pending_call_queue_timeout_error_unlocked().

◆ _dbus_connection_ref_unlocked()

DBusConnection * _dbus_connection_ref_unlocked ( DBusConnection connection)

Increments the reference count of a DBusConnection.

Requires that the caller already holds the connection lock.

Parameters
connectionthe connection.
Returns
the connection.

Definition at line 1424 of file dbus-connection.c.

References _dbus_assert, _dbus_atomic_inc(), _dbus_current_generation, NULL, and DBusConnection::refcount.

Referenced by _dbus_transport_try_to_authenticate().

◆ _dbus_connection_remove_pending_call()

void _dbus_connection_remove_pending_call ( DBusConnection connection,
DBusPendingCall pending 
)

Removes a pending call from the connection, such that the pending reply will be ignored.

May drop the last reference to the pending call.

Parameters
connectionthe connection
pendingthe pending call

Definition at line 1048 of file dbus-connection.c.

References CONNECTION_LOCK.

Referenced by dbus_pending_call_cancel().

◆ _dbus_connection_remove_timeout_unlocked()

void _dbus_connection_remove_timeout_unlocked ( DBusConnection connection,
DBusTimeout timeout 
)

Removes a timeout using the connection's DBusRemoveTimeoutFunction if available.

It's an error to call this function on a timeout that was not previously added. Connection lock should be held when calling this.

Parameters
connectionthe connection.
timeoutthe timeout to remove.

Definition at line 889 of file dbus-connection.c.

Referenced by _dbus_connection_queue_received_message_link().

◆ _dbus_connection_remove_watch_unlocked()

void _dbus_connection_remove_watch_unlocked ( DBusConnection connection,
DBusWatch watch 
)

Removes a watch using the connection's DBusRemoveWatchFunction if available.

It's an error to call this function on a watch that was not previously added. Connection lock should be held when calling this.

Parameters
connectionthe connection.
watchthe watch to remove.

Definition at line 765 of file dbus-connection.c.

◆ _dbus_connection_send_and_unlock()

dbus_bool_t _dbus_connection_send_and_unlock ( DBusConnection connection,
DBusMessage message,
dbus_uint32_t client_serial 
)

Like dbus_connection_send(), but assumes the connection is already locked on function entry, and unlocks before returning.

Parameters
connectionthe connection
messagethe message to send
client_serialreturn location for client serial of sent message
Returns
FALSE on out-of-memory

Definition at line 2112 of file dbus-connection.c.

References _dbus_assert, and NULL.

Referenced by dbus_connection_send().

◆ _dbus_connection_set_pending_fds_function()

void _dbus_connection_set_pending_fds_function ( DBusConnection connection,
DBusPendingFdsChangeFunction  callback,
void *  data 
)

Register a function to be called whenever the number of pending file descriptors in the loader change.

Parameters
connectionthe connection
callbackthe callback

Definition at line 2588 of file dbus-connection.c.

References _dbus_transport_set_pending_fds_function(), and DBusConnection::transport.

◆ _dbus_connection_toggle_timeout_unlocked()

void _dbus_connection_toggle_timeout_unlocked ( DBusConnection connection,
DBusTimeout timeout,
dbus_bool_t  enabled 
)

Toggles a timeout and notifies app via connection's DBusTimeoutToggledFunction if available.

It's an error to call this function on a timeout that was not previously added. Connection lock should be held when calling this.

Parameters
connectionthe connection.
timeoutthe timeout to toggle.
enabledwhether to enable or disable

Definition at line 909 of file dbus-connection.c.

◆ _dbus_connection_toggle_watch_unlocked()

void _dbus_connection_toggle_watch_unlocked ( DBusConnection connection,
DBusWatch watch,
dbus_bool_t  enabled 
)

Toggles a watch and notifies app via connection's DBusWatchToggledFunction if available.

It's an error to call this function on a watch that was not previously added. Connection lock should be held when calling this.

Parameters
connectionthe connection.
watchthe watch to toggle.
enabledwhether to enable or disable

Definition at line 785 of file dbus-connection.c.

References _dbus_assert, and NULL.

◆ _dbus_connection_unlock()

void _dbus_connection_unlock ( DBusConnection connection)

◆ _dbus_connection_unref_unlocked()

void _dbus_connection_unref_unlocked ( DBusConnection connection)

Decrements the reference count of a DBusConnection.

Requires that the caller already holds the connection lock.

Parameters
connectionthe connection.

Definition at line 1447 of file dbus-connection.c.

References _dbus_assert, _dbus_atomic_dec(), NULL, and DBusConnection::refcount.

Referenced by _dbus_transport_try_to_authenticate().

◆ dbus_connection_has_messages_to_send()

dbus_bool_t dbus_connection_has_messages_to_send ( DBusConnection connection)

Checks whether there are messages in the outgoing message queue.

Use dbus_connection_flush() to block until all outgoing messages have been written to the underlying transport (such as a socket).

Parameters
connectionthe connection.
Returns
TRUE if the outgoing queue is non-empty.

Definition at line 592 of file dbus-connection.c.

References _dbus_connection_has_messages_to_send_unlocked(), CONNECTION_LOCK, CONNECTION_UNLOCK, FALSE, and NULL.