remove the todo item I just did
[platform/upstream/dbus.git] / doc / TODO
1 Important for 1.0
2 ===
3
4  - Audit @todo and FIXME for security issues
5
6  - The convenience functions in dbus-bus.h should perhaps have
7    the signatures that they would have if they were autogenerated
8    stubs. e.g. the acquire service function. We should also evaluate 
9    which of these functions to include, in light of the fact that 
10    GLib/Qt native stubs will probably also exist.
11
12  - the "break loader" and valid/invalid message tests are all disabled;
13    they need to be fixed and re-enabled with the new message args stuff.
14    I think I want to drop the .message files thing and just have code
15    that generates messages, more like the tests for
16    dbus-marshal-recursive.c (this is mostly done now, just needs some
17    cleanup)
18
19  - need to define bus behavior if you send a message to 
20    yourself; is it an error, or allowed? If allowed, 
21    we need to have a test for it in the test suite.
22
23  - validate dict entry number of fields
24
25  - just before 1.0, try a HAVE_INT64=0 build and be sure it runs
26
27  - in dbus-keyring.c, enforce that the keyring dir is not 
28    world readable/writable
29
30  - Ping isn't handled
31
32  - fix introspection format to handle all signatures
33
34  - dbus-pending-call.c has some API and thread safety issues to review
35
36  - make dbus_connection_open() return a shared connection from a pool.
37    Add dbus_connection_open_private() that works like the current one.
38    To do this, each DBusServer could have a 128-bit GUID. This GUID
39    would be in the address from dbus_server_get_address(). On
40    connection to a server, the GUID would be provided as the first
41    thing in the auth protocol, and verified vs. the expected GUID if a
42    GUID was in the address used to connect. A hash from GUID to
43    connection would be kept, so attempts to connect to a GUID already
44    in the hash would return a shared existing connection.
45
46    The purpose of all this is to allow a dbus_g_proxy_to_string() that
47    would convert the proxy to an "IOR" and dbus_g_proxy_from_string()
48    that would decode; using these, dbus-glib users could avoid
49    DBusConnection entirely. Of course the same applies to other kinds
50    of binding.
51
52 Important for 1.0 GLib Bindings
53 ===
54
55  - finish dbus-glib-tool support for adding introspection 
56    data to GObject and autoexporting GObject using same
57
58  - Need to make sure that dbus-glib.h never returns any 
59    dbus_malloc() memory, only g_malloc(). 
60    dbus_g_proxy_end_call() is the major offender. 
61
62  - DBusGProxy doesn't emit "destroy" when it should
63
64 Might as Well for 1.0
65 ===
66
67  - add dbus_message_has_path(), maybe has_member/interface
68
69  - connection_open/connection_disconnect lacks symmetry, open/close
70    or connect/disconnect
71
72  - protocol version in each message is pretty silly
73
74 Can Be Post 1.0
75 ===
76
77  - DBusWatchList/TimeoutList duplicate a lot of code, as do
78    protected_change_watch/protected_change_timeout in dbus-connection.c
79    and dbus-server.c. This could all be mopped up, cut-and-paste 
80    fixed, code size reduced.
81
82  - change .service files to allow Names=list in addition to Name=string
83
84  - The message bus internal code still says "service" for 
85    "name", "base service" for "unique name", "activate" for 
86    "start"; would be nice to clean up.
87
88  - Property list feature on message bus (list of properties associated 
89    with a connection). May also include message matching rules 
90    that involve the properties of the source or destination
91    connection.
92
93  - Disconnecting the remote end on invalid UTF-8 is probably not a good 
94    idea. The definition of "valid" is slightly fuzzy. I think it might 
95    be better to just silently "fix" the UTF-8, or perhaps return an error.
96
97  - build and install the Doxygen manual in Makefile when --enable-docs
98
99  - if you send the same message to multiple connections, the serial number 
100    will only be right for one of them. Probably need to just write() the serial 
101    number, rather than putting it in the DBusMessage, or something.
102
103  - perhaps the bus driver should have properties that reflect attributes
104    of the session, such as hostname, architecture, operating system, 
105    etc. Could be useful for code that wants to special-case behavior 
106    for a particular host or class of hosts, for example.
107
108  - currently the security policy stuff for messages to/from 
109    the bus driver is kind of strange; basically it's hardcoded that 
110    you can always talk to the driver, but the default config file 
111    has rules for it anyway, or something. it's conceptually 
112    screwy at the moment.
113
114  - when making a method call, if the call serial were globally unique,
115    we could forward the call serial along with any method calls made
116    as a result of the first method call, and allow reentrancy that was
117    strictly part of the call stack of said method call. But I don't
118    really see how to do this without making the user pass around the
119    call serial to all method calls all the time, or disallowing 
120    async calls.
121
122    If done post 1.0 will probably be an optional/ugly-API type 
123    of thing.
124
125  - I don't want to introduce DBusObject, but refcounting and object
126    data could still be factored out into an internal "base class" 
127    perhaps.
128
129  - document the auth protocol as a set of states and transitions, and
130    then reimplement it in those terms
131
132  - recursive dispatch, see dbus_connection_dispatch()
133
134  - do we need per-display activation; if so I'd like to do this by setting a
135    "display ID" property on screen 0, with a GUID, and keying activation by 
136    said GUID. Otherwise you get all kinds of unrobust
137    string/hostname-based mess. per-screen is then done by appending screen number
138    to the display. If displays have a deterministic ID like this, you can 
139    do per-display by simply including GUID in the service name.
140
141  - optimization and profiling!