Todo List

Member _dbus_atomic_dec ( DBusAtomic *atomic)

implement arch-specific faster atomic ops

Member _dbus_atomic_inc ( DBusAtomic *atomic)

implement arch-specific faster atomic ops

Member _dbus_auth_decode_data (DBusAuth *auth, const DBusString *encoded, DBusString *plaintext)

1.0? We need to be able to distinguish "out of memory" error from "the data is hosed" error.

Member _dbus_concat_dir_and_file ( DBusString *dir, const DBusString *next_component)

it might be cute to collapse multiple '/' such as "foo//" concat "//bar"

Member _dbus_connection_block_pending_call (DBusPendingCall *pending)

could use performance improvements (it keeps scanning the whole message queue for example)

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

This is basically a hack - we could delete _dbus_transport_handle_watch() and the virtual handle_watch in DBusTransport if we got rid of it. The reason this is some work is threading, see the _dbus_connection_handle_watch() implementation.

Member _dbus_error_from_errno (int error_number)

should cover more errnos, specifically those from open() .

Member _dbus_full_duplex_pipe (int *fd1, int *fd2, dbus_bool_t blocking, DBusError *error)

libdbus only uses this for the debug-pipe server, so in principle it could be in dbus-sysdeps-util.c, except that dbus-sysdeps-util.c isn't in libdbus when tests are enabled and the debug-pipe server is used.

Member _dbus_keyring_validate_context (const DBusString *context)

this is the most inefficient implementation imaginable.

Member _dbus_message_loader_get_buffer ( DBusMessageLoader *loader, DBusString **buffer)

this function can be a lot more clever. For example it can probably always return a buffer size to read exactly the body of the next message, thus avoiding any memory wastage or reallocs.

we need to enforce a max length on strings in header fields.

Member _dbus_message_loader_queue_messages ( DBusMessageLoader *loader)

we need to check that the proper named header fields exist for each message type.

If a message has unknown type, we should probably eat it right here rather than passing it out to applications. However it's not an error to see messages of unknown type.

Member _dbus_object_tree_dispatch_and_unlock (DBusObjectTree *tree, DBusMessage *message)

thread problems

Member _dbus_open_tcp_socket (int *fd, DBusError *error)
Use for the file descriptors a struct
  • struct DBusSocket{ int d; }; - instead of int to get type-safety which will be checked by the compiler.

Member _dbus_string_equal (const DBusString *a, const DBusString *b)

memcmp is probably faster

Member _dbus_string_equal_substring (const DBusString *a, int a_start, int a_len, const DBusString *b, int b_start)

write a unit test

memcmp is probably faster

Member _dbus_string_move_len ( DBusString *source, int start, int len, DBusString *dest, int insert_at)

this doesn't do anything with max_length field. we should probably just kill the max_length field though.

Member _dbus_string_pop_line ( DBusString *source, DBusString *dest)

owen correctly notes that this is a stupid function (it was written purely for test code, e.g. dbus-message-builder.c). Probably should be enforced as test code only with ifdef DBUS_BUILD_TESTS

Member _dbus_string_replace_len (const DBusString *source, int start, int len, DBusString *dest, int replace_at, int replace_len)

optimize the case where the two lengths are the same, and avoid memmoving the data in the trailing part of the string twice.

avoid inserting the source into dest, then deleting the replaced chunk of dest (which creates a potentially large intermediate string). Instead, extend the replaced chunk of dest with padding to the same size as the source chunk, then copy in the source bytes.

Member _dbus_string_validate_ascii (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

Member _dbus_string_validate_nul (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

Member _dbus_string_validate_utf8 (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

Member _dbus_transport_get_is_authenticated ( DBusTransport *transport)

we drop connection->mutex when calling the unix_user_function, which may not be safe really.

Member _dbus_transport_new_for_domain_socket (const char *path, dbus_bool_t abstract, DBusError *error)

once we add a way to escape paths in a dbus address, this function needs to do escaping.

Member _dbus_type_reader_delete ( DBusTypeReader *reader, const DBusTypeReader *realign_root)

for now this does not delete the typecodes associated with the value, so this function should only be used for array elements.

Member _dbus_type_reader_set_basic ( DBusTypeReader *reader, const void *value, const DBusTypeReader *realign_root)

DBusTypeReader currently takes "const" versions of the type and value strings, and this function modifies those strings by casting away the const, which is of course bad if we want to get picky. (To be truly clean you'd have an object which contained the type and value strings and set_basic would be a method on that object... this would also make DBusTypeReader the same thing as DBusTypeMark. But since DBusMessage is effectively that object for D-Bus it doesn't seem worth creating some random object.)

optimize this by only rewriting until the old and new values are at the same alignment. Frequently this should result in only replacing the value that's immediately at hand.

Member _dbus_validate_bus_name (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

Member _dbus_validate_error_name (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

Member _dbus_validate_interface (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

Member _dbus_validate_member (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

Member _dbus_validate_path (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

change spec to disallow more things, such as spaces in the path name

Member _dbus_validate_signature (const DBusString *str, int start, int len)

this is inconsistent with most of DBusString in that it allows a start,len range that extends past the string end.

Member _dbus_watch_set_handler (DBusWatch *watch, DBusWatchHandler handler, void *data, DBusFreeFunction free_data_function)

this function only exists because of the weird way connection watches are done, see the note in docs for _dbus_connection_handle_watch() .

Member dbus_connection_add_filter (DBusConnection *connection, DBusHandleMessageFunction function, void *user_data, DBusFreeFunction free_data_function)

we don't run filters on messages while blocking without entering the main loop, since filters are run as part of dbus_connection_dispatch() . This is probably a feature, as filters could create arbitrary reentrancy. But kind of sucks if you're trying to filter METHOD_RETURN for some reason.

Member dbus_connection_dispatch (DBusConnection *connection)

some FIXME in here about handling DBUS_HANDLER_RESULT_NEED_MEMORY

Member dbus_connection_set_unix_user_function (DBusConnection *connection, DBusAllowUnixUserFunction function, void *data, DBusFreeFunction free_data_function)

add a Windows API analogous to dbus_connection_set_unix_user_function()

Member dbus_connection_set_watch_functions (DBusConnection *connection, DBusAddWatchFunction add_function, DBusRemoveWatchFunction remove_function, DBusWatchToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function)

We need to drop the lock when we call the add/remove/toggled functions which can be a side effect of setting the watch functions.

Member dbus_message_append_args ( DBusMessage *message, int first_arg_type,...)

support DBUS_TYPE_STRUCT and DBUS_TYPE_VARIANT and complex arrays

If this fails due to lack of memory, the message is hosed and you have to start over building the whole message.

Member dbus_message_append_args_valist ( DBusMessage *message, int first_arg_type, va_list var_args)

for now, if this function fails due to OOM it will leave the message half-written and you have to discard the message and start over.

Member dbus_message_get_args ( DBusMessage *message, DBusError *error, int first_arg_type,...)

support DBUS_TYPE_STRUCT and DBUS_TYPE_VARIANT and complex arrays

Member dbus_message_get_path_decomposed ( DBusMessage *message, char ***path)

this could be optimized by using the len from the message instead of calling strlen() again

Member dbus_message_iter_append_basic ( DBusMessageIter *iter, int type, const void *value)

If this fails due to lack of memory, the message is hosed and you have to start over building the whole message.

Member dbus_message_iter_append_fixed_array ( DBusMessageIter *iter, int element_type, const void *value, int n_elements)

If this fails due to lack of memory, the message is hosed and you have to start over building the whole message.

Member dbus_message_iter_close_container ( DBusMessageIter *iter, DBusMessageIter *sub)

If this fails due to lack of memory, the message is hosed and you have to start over building the whole message.

Member dbus_message_iter_get_array_len ( DBusMessageIter *iter) DBUS_GNUC_DEPRECATED

introduce a variant of this get_n_elements that returns the number of elements, though with a non-fixed array it will not be very efficient, so maybe it's not good.

Member dbus_message_iter_init_append ( DBusMessage *message, DBusMessageIter *iter)

If appending any of the arguments fails due to lack of memory, the message is hosed and you have to start over building the whole message.

Member dbus_message_iter_open_container ( DBusMessageIter *iter, int type, const char *contained_signature, DBusMessageIter *sub)

If this fails due to lack of memory, the message is hosed and you have to start over building the whole message.

Member dbus_message_new_error_printf ( DBusMessage *reply_to, const char *error_name, const char *error_format,...)

add _DBUS_GNUC_PRINTF to this (requires moving _DBUS_GNUC_PRINTF to public header, see DBUS_GNUC_DEPRECATED for an example)

Member dbus_pending_call_block (DBusPendingCall *pending)

when you start blocking, the timeout is reset, but it should really only use time remaining since the pending call was created. This requires storing timestamps instead of intervals in the timeout

Group DBusAuth

some SASL profiles require sending the empty string as a challenge/response, but we don't currently allow that in our protocol.

right now sometimes both ends will block waiting for input from the other end, e.g. if there's an error during DBUS_COOKIE_SHA1.

the cookie keyring needs to be cached globally not just per-auth (which raises threadsafety issues too)

grep FIXME in dbus-auth.c

Group DBusBus

right now the default address of the system bus is hardcoded, so if you change it in the global config file suddenly you have to set DBUS_SYSTEM_BUS_ADDRESS env variable. Might be nice if the client lib somehow read the config file, or if the bus on startup somehow wrote out its address to a well-known spot, but might also not be worth it.

Member DBusGUID

rename to UUID instead of GUID

Group DBusKeyring

there's a memory leak on some codepath in here, I saw it once when running make check - probably some specific initial cookies present in the cookie file, then depending on what we do with them.

Member DBusMessageLoader

write tests for break-loader that a) randomly delete header fields and b) set string fields to zero-length and other funky values.

Group DBusServer

Thread safety hasn't been tested much for DBusServer

Need notification to apps of disconnection, may matter for some transports

Group DBusString

DBusString needs a lot of cleaning up; some of the API is no longer used, and the API is pretty inconsistent. In particular all the "append" APIs, especially those involving alignment but probably lots of them, are no longer used by the marshaling code which always does "inserts" now.

Member INITIAL_LOADER_DATA_LEN

this should be based on min header size plus some average body size, or something. Or rather, the min header size only, if we want to try to read only the header, store that in a DBusMessage , then read only the body and store that, etc., depends on how we optimize _dbus_message_loader_get_buffer() and what the exact message format is.

Member socket_do_iteration ( DBusTransport *transport, unsigned int flags, int timeout_milliseconds)

We need to have a way to wake up the select sleep if a new iteration request comes in with a flag (read/write) that we're not currently serving. Otherwise a call that just reads could block a write call forever (if there are no incoming messages).