2005-06-14 David Zeuthen <davidz@redhat.com>
[platform/upstream/dbus.git] / ChangeLog
1 2005-06-14  David Zeuthen  <davidz@redhat.com>
2
3         * bus/bus.c (process_config_every_time): Drop existing conf-dir
4         watches (if applicable) and add new watches
5
6         * bus/main.c (signal_handler): Handle SIGIO if using D_NOTIFY
7         (main): Setup SIGIO signal handler if using D_NOTIFY
8
9         * bus/config-parser.h: Add prototype bus_config_parser_get_conf_dirs
10
11         * bus/config-parser.c (struct BusConfigParser): Add conf_dirs list
12         (merge_included): Also merge conf_dirs list
13         (bus_config_parser_unref): Clear conf_dirs list
14         (include_dir): Add directory to conf_dirs list
15         (bus_config_parser_get_conf_dirs): New function
16
17         * bus/dir-watch.[ch]: New files
18
19         * bus/Makefile.am (BUS_SOURCES): Add dir-watch.[ch]
20
21         * configure.in: Add checks for D_NOTIFY on Linux
22
23 2005-06-14  Colin Walters  <walters@verbum.org>
24
25         * glib/dbus-binding-tool-glib.c:
26         * glib/dbus-gobject.c:
27         * glib/dbus-gvalue.c: Fix indentation and brace style.
28         
29 2005-06-14  Ross Burton <ross@burtonini.com>.
30
31         * glib/dbus-glib.h: Make DBusGMethodInvocation
32         a private structure.  Rearrange prototypes a bit.
33         
34         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): Add
35         documentation for first_arg_type.
36         
37         * glib/dbus-gobject.c: Move DBusGMethodInvocation
38         here, add documentation.  Move dbus_g_method_return
39         and dbus_g_method_return_error into public API
40         section.
41
42 2005-06-14  Colin Walters  <walters@verbum.org>
43
44         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller):
45         Add missing return statements, noticed by Ross Burton.
46         
47 2005-06-13  Ross Burton <ross@burtonini.com>.
48
49         * glib/dbus-gobject.c: Handle errors on message
50         demarshalling by sending error message back.
51         * glib/dbus-gvalue.c: Initialize return variables.
52
53 2005-06-13  Colin Walters  <walters@verbum.org>
54
55         * glib/Makefile.am: Fix thinko in last patch.
56
57 2005-06-13  Colin Walters  <walters@verbum.org>
58
59         * glib/Makefile.am: Move dbus-gtype-specialized.c
60         and dbus-gtype-specialized.h into a _HEADERS variable,
61         install them.
62
63 2005-06-12  Colin Walters  <walters@verbum.org>
64
65         Async signals and various bugfixes and testing by
66         Ross Burton <ross@burtonini.com>.
67
68         * glib/dbus-gvalue.h: (struct DBusBasicGValue): Delete.
69         (dbus_gvalue_genmarshal_name_from_type)
70         (dbus_gvalue_ctype_from_type): Moved to dbus-binding-tool-glib.c.
71         (dbus_gtype_to_dbus_type): Renamed to dbus_gtype_from_signature.
72         (dbus_g_value_types_init, dbus_gtype_from_signature)
73         (dbus_gtype_from_signature_iter, dbus_gtype_to_signature)
74         (dbus_gtypes_from_arg_signature): New function prototypes.
75         (dbus_gvalue_demarshal): Take context and error arguments.
76         (dbus_gvalue_demarshal_variant): New function.
77         (dbus_gvalue_demarshal_message): New function.
78         (dbus_gvalue_store): Delete.
79
80         * glib/dbus-gvalue.c:
81
82         File has been almost entirely rewritten; now we special-case
83         more types such as DBUS_TYPE_SIGNATURE, handle arrays and
84         hash tables correctly, etc.  Full support for recursive values
85         is not yet complete.
86
87         * glib/dbus-gproxy.c (dbus_g_proxy_class_init): Change last
88         argument of signal to G_TYPE_POINTER since we now pass a
89         structure.
90         (lookup_g_marshaller): Delete in favor of
91         _dbus_gobject_lookup_marshaller.
92         (marshal_dbus_message_to_g_marshaller): Use
93         _dbus_gobject_lookup_marshaller and dbus_gvalue_demarshal_message
94         to handle remote signal callbacks.
95         (dbus_g_proxy_new_from_proxy): New function; creates a new
96         DBusGProxy by copying an existing one.
97         (dbus_g_proxy_get_interface, dbus_g_proxy_set_interface)
98         (dbus_g_proxy_get_path): New functions.
99         (dbus_g_proxy_marshal_args_to_message): New function;
100         factored out of existing code.
101         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Collect all arguments
102         from a varargs array.
103         (dbus_g_proxy_begin_call_internal): New function.
104         (dbus_g_proxy_end_call_internal): New function.
105         (dbus_g_proxy_begin_call): Take GTypes instead of DBus types
106         as arguments; simply invoke dbus_g_proxy_begin_call_internal
107         after collecting args into value array.
108         (dbus_g_proxy_end_call): Take GTypes instead of DBus types;
109         invoke dbus_g_proxy_end_call_internal.
110         (dbus_g_proxy_invoke): Simply invoke begin_call_interanl and
111         end_call_internal.
112         (dbus_g_proxy_call_no_reply): Take GTypes instead of DBus
113         types.
114         (array_free_all): New function.
115         (dbus_g_proxy_add_signal): Take GTypes.
116
117         * glib/dbus-gobject.h:
118         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
119         (_dbus_gobject_get_path, _dbus_gobject_lookup_marshaller):
120         Prototype.
121
122         * glib/dbus-gobject.c: Add a global marshal_table hash which
123         stores mappings from type signatures to marshallers.  Change lots
124         of invocations of dbus_gtype_to_dbus_type to
125         dbus_gtype_to_signature.
126         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
127         (introspect_signals): Fix test for query.return_type.
128         (set_object_property): Update invocation of dbus_gvalue_demarshal.
129         (invoke_object_method): Many changes.  Handle asynchronous
130         invocations.  Convert arguments with
131         dbus_gvalue_demarshal_message.  Handle errors.  Use
132         DBusSignatureIter instead of strlen on args. Handle all arguments
133         generically.  Special-case variants.
134         (dbus_g_method_return, dbus_g_method_return_error): New function.
135         (DBusGSignalClosure): New structure, closes over signal
136         information.
137         (dbus_g_signal_closure_new): New function.
138         (dbus_g_signal_closure_finalize): New function.
139         (signal_emitter_marshaller): New function; is special marshaller
140         which emits signals on bus.
141         (export_signals): New function; introspects object signals and
142         connects to them.
143         (dbus_g_object_type_install_info): Take GType instead of
144         GObjectClass.
145         (dbus_g_connection_register_g_object): Invoke export_signals.
146         (dbus_g_connection_lookup_g_object): New function.
147         (DBusGFuncSignature) New structure; used for mapping type
148         signatures to marshallers.
149         (funcsig_hash): New function; hashes DBusGFuncSignature.
150         (funcsig_equal): New function; compares DBusGFuncSignature.
151         (_dbus_gobject_lookup_marshaller): New function.
152         (dbus_g_object_register_marshaller): New function; used to
153         register a marshaller at runtime for a particular signature.
154
155         * glib/dbus-gmain.c (_dbus_gmain_test): Add various tests.
156
157         * glib/dbus-binding-tool-glib.h: Add DBUS_GLIB_ANNOTATION_ASYNC
158         which notes a server method implementation should be
159         asynchronous.
160
161         * glib/dbus-binding-tool-glib.c
162         (dbus_binding_tool_output_glib_server): Call
163         dbus_g_value_types_init.
164         (write_formal_parameters): Use dbus_gtype_from_signature.  Handle
165         variants specially.
166         (dbus_g_type_get_lookup_function): Turn GType into an invocation
167         of a lookup function.
168         (write_args_for_direction): Use dbus_g_type_get_lookup_function.
169         (write_untyped_out_args): New method; write output arguments.
170         (write_formal_declarations_for_direction): Function for
171         writing prototypes.
172         (write_formal_parameters_for_direction): Function for
173         writing implementations.
174         (write_typed_args_for_direction): Function for writing
175         arguments prefixed with GTypes.
176         (write_async_method_client): Write out async version
177         of method.
178
179         * glib/dbus-binding-tool-glib.c: Include dbus-gvalue-utils.h.
180         (dbus_g_type_get_marshal_name): Move mapping from GType
181         to marshal name into here.
182         (dbus_g_type_get_c_name): Move into here.
183         (compute_marshaller): Convert signature to type with
184         dbus_gtype_from_signature, use dbus_g_type_get_marshal_name.
185         (compute_marshaller_name): Ditto.
186         (compute_marshaller): Handle async signal annotations.
187         (gather_marshallers): Return if we don't have a known
188         prefix.
189         (generate_glue): Collect introspection blob here, and
190         write all of the blob at the end.  This allows an object
191         with multiple interfaces to work.
192         Mark async methods in introspection blob.
193
194         * glib/Makefile.am (libdbus_glib_1_la_SOURCES): Add
195         dbus-gtype-specialized.c, dbus-gtype-specialized.h,
196         dbus-gvalue-utils.h, dbus-gvalue-utils.c.
197
198         * dbus/dbus-glib.h: Don't include dbus-protocol.h; this
199         avoids people accidentally using DBUS_TYPE_* which should
200         not be necessary anymore.
201         Do include dbus-gtype-specialized.h, which are utilities
202         for GLib container types.
203         Add various #defines for types such as
204         DBUS_TYPE_G_BOOLEAN_ARRAY.
205         (DBusGValueIterator, DBusGValue): Define, not fully used
206         yet.
207         (dbus_g_value_get_g_type): Type for recursive value.
208         (dbus_g_value_open, dbus_g_value_iterator_get_value)
209         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
210         (dbus_g_value_free): Prototypes.
211         (dbus_g_object_register_marshaller, dbus_g_proxy_new_from_proxy): Prototype.
212         (dbus_g_proxy_set_interface): Prototype.
213         (dbus_g_proxy_begin_call, dbus_g_proxy_end_call)
214         (dbus_g_proxy_call_no_reply): Take GLib types instead of DBus
215         types.
216         (dbus_g_proxy_get_path, dbus_g_proxy_get_interface):
217         Accessors.
218         (DBusGAsyncData, DBusGMethodInvocation): Structures for
219         doing async invocations.
220         (dbus_g_method_return, dbus_g_method_return_error):
221         Prototypes.
222         * doc/dbus-tutorial.xml: Update GLib section.
223         
224         * tools/dbus-viewer.c (load_child_nodes): Update
225         for new invocation type of dbus_g_proxy_end_call.
226         (load_from_service_thread_func): Ditto.
227
228         * tools/print-introspect.c (main): Ditto.
229
230         * tools/dbus-names-model.c (have_names_notify)
231         (names_model_reload, names_model_set_connection)
232         Use GTypes.
233
234         * python/Makefile.am (INCLUDES): Define DBUS_COMPILATION,
235         needed since Python bindings use GLib bindings.
236
237         * test/glib/Makefile.am (INCLUDES): Define DBUS_COMPILATION.
238         Add --prefix argument.
239
240         * tools/Makefile.am: Define DBUS_COMPILATION.  Remove
241         unneeded --ignore-unsupported arg.
242         
243         * test/glib/test-service-glib.c: 
244         * test/glib/test-service-glib.xml:
245         * test/glib/test-dbus-glib.c: Add many more tests.
246
247 2005-06-06  David Zeuthen  <davidz@redhat.com>
248
249         * doc/TODO: Add item about need to remove deprecated functions.
250
251         * dbus/dbus-connection.h: Add prototype for dbus_connection_disconnect
252
253         * dbus/dbus-connection.c (dbus_connection_disconnect): New function
254         to repair the ABI which was broken with the last commit.
255
256 2005-06-02  John (J5) Palmieri <johnp@redhat.com>
257
258         *  dbus/dbus-connection.c, dbus/dbus-connection.h 
259         (dbus_connection_disconnect): renamed to dbus_connection_close 
260         for API symmetry with dbus_connection_open
261         (_dbus_connection_open_internal): 
262         s/dbus_connection_disconnect/dbus_connection_close
263
264         * dbus/dbus-bus.c (dbus_bus_get):
265         s/dbus_connection_disconnect/dbus_connection_close
266
267         * bus/connection.c (bus_connections_unref, 
268         bus_connections_setup_connection, bus_connections_expire_incomplete):
269         s/dbus_connection_disconnect/dbus_connection_close
270
271         * bus/dispatch.c (bus_dispatch, kill_client_connection, 
272         kill_client_connection_unchecked, check_hello_connection):
273         s/dbus_connection_disconnect/dbus_connection_close
274
275         * bus/bus.c (new_connection_callback):
276         s/dbus_connection_disconnect/dbus_connection_close
277
278         * tools/dbus-send.c (main):
279         s/dbus_connection_disconnect/dbus_connection_close
280
281         * test/glib/test-profile.c (no_bus_thread_func, with_bus_thread_func):
282         s/dbus_connection_disconnect/dbus_connection_close
283         
284         * test/test-service.c (path_message_func, filter_func):
285         s/dbus_connection_disconnect/dbus_connection_close
286         
287         * doc/TODO: remove connection_open/connection_disconnect lacks symmetry         item that was just fixed
288         
289 2005-05-25  Colin Walters  <walters@verbum.org>
290
291         * dbus/dbus-protocol.h: Move various bus service #defines such
292           as DBUS_SERVICE_DBUS and DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT to
293           dbus/dbus-shared.h.
294         * dbus/dbus-shared.h: Various defines moved here.
295         * dbus/dbus-marshal-header.c: Include dbus-shared.h.
296
297 2005-05-25  John (J5) Palmieri  <johnp@redhat.com>
298
299         * python/__init__.py: Python bindings deserve a minor version
300         update.  Upped to (0, 40, 2)
301
302 2005-05-24  John (J5) Palmieri  <johnp@redhat.com>
303
304         * python/decorators.py: add explicitly_pass_message decorator
305         for passing in the dbus message as keyword for edge case signal
306         handling
307
308         * python/matchrules.py (SignalMatchRule.__repr__): fix output
309         to conform with what dbus expects for match rules
310         (SignalMatchRule.execute): add the dbus message as a keyword
311         if the signal handler has requested it
312
313         * python/examples/example/signal-recipient.py: added some more
314         examples on how to hook up to signals
315
316 2005-05-23  John (J5) Palmieri  <johnp@redhat.com>
317
318         * python/decorators.py: import dbus_bindings
319
320         * python/matchrules.py (SignalMatchRule, SignalMatchTree, 
321         SignalMatchNode): new classes that implement wildcard signal
322         callback matching using a tree lookup. Heavily modified from a
323         patch sent by Celso Pinto (fd.o bug #3241)
324
325         * _dbus.py (add_signal_receiver, remove_signal_receiver, _signal_func):
326         use new match classes to handle signals.
327
328 2005-05-19  John (J5) Palmieri  <johnp@redhat.com>
329         
330         * python/dbus_bindings.pyx.in: s/TYPE_PATH/TYPE_OBJECT_PATH
331
332 2005-05-18  Havoc Pennington  <hp@redhat.com>
333
334         * configure.in: use GLIB_GNU_GETTEXT to get INTLLIBS and require
335         gettext. Not really worth requiring yet perhaps, but any
336         production quality 1.0 would require it so we should go ahead and
337         get things set up. We do have a couple token calls to
338         bindtextdomain in the code already.
339
340 2005-05-16  John (J5) Palmieri  <johnp@redhat.com>
341
342         * glib/dbus-gmain.c (io_handler_dispatch): fix deadlock
343         when using recursive g_main_loops
344
345         * python/_dbus.py (class Bus): add the ProxyObjectClass
346         alias for ProxyObject to make it easier for the Twisted 
347         networking framework to integrate dbus.
348
349         * python/proxies.py (class ProxyObject): add the ProxyMethodClass
350         alias for ProxyMethod to make it easier for the Twisted 
351         networking framework to integrate dbus. 
352
353 2005-05-11  Ross Burton  <ross@burtonini.com>
354
355         * glib/dbus-glib-tool.c: Add --prefix argument.
356         * glib/dbus-binding-tool-glib.h: Add prefix argument.
357         * glib/dbus-binding-tool-glib.c (compute_marshaller_name):
358         Add prefix argument.
359         (generate_glue): Pass prefix argument down.
360         (dbus_binding_tool_output_glib_server): Pass prefix to
361         glib-genmarshal.
362         
363 2005-05-11  Colin Walters  <walters@verbum.org>
364
365         * tools/dbus-send.c (append_array): New function.
366         (append_arg): Broken out from main.
367         (main): Add cheesy hack to send arrays and variants.
368         (usage): Update.
369         * tools/dbus-print-message.c (print_iter): Broken out
370         from main.
371
372 2005-05-11  Colin Walters  <walters@verbum.org>
373
374         * dbus/dbus-signature.c (dbus_signature_iter_get_signature):
375         New function, returns signature string for signature iter.
376         * dbus/dbus-signature.h: Prototype it.
377         * dbus/dbus-message.c (dbus_message_iter_get_signature):
378         New function, returns signature string for message iter.
379         (dbus_message_iter_get_array_len): New function, returns
380         length of array.
381         (dbus_message_iter_get_fixed_array): Fix assertion; this
382         function should be used when the iter is pointing to the
383         contents of an array
384         * dbus/dbus-message.h: Prototypes.
385         * dbus/dbus-marshal-recursive.c (_dbus_type_reader_get_array_length):
386         New function; returns length of an array.
387         * dbus/dbus-marshal-recursive.h: Prototype it.
388         
389 2005-05-11  Colin Walters  <walters@verbum.org>
390
391         * dbus/dbus-sysdeps-util.c <!HAVE_POSIX_GETPWNAM_R>: Fix
392         compilation error.
393         
394 2005-05-08  Havoc Pennington  <hp@redhat.com>
395
396         * dbus/dbus-sysdeps-util.c (_dbus_become_daemon): write the
397         daemon's pid, not the parent's pid, to the file descriptor.
398         Reported by Taj Morton.
399
400 2005-05-05  Havoc Pennington  <hp@redhat.com>
401
402         * configure.in (LT_*): add notes on how the libtool versioning
403         works to save thinking. Increment soname to indicate protocol
404         breakage (though really the library interface hasn't changed I
405         guess)
406
407         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
408         verify the GUID received from server matches what we were
409         expecting, if we had an expectation
410
411         * dbus/dbus-auth.c (send_ok): send GUID along with the OK command
412         (_dbus_auth_get_guid_from_server): new function
413         (send_begin): parse the OK args
414
415         * doc/dbus-specification.xml: add GUID to the auth protocol
416
417 2005-05-05  John (J5) Palmieri  <johnp@redhat.com>
418
419         * Fix my name in previous changelog ;)
420
421         * python/proxies.py (ProxyObject.__getattr__): add further patch
422         from Anthony Baxter to throw an AttributeError when python 
423         __special__ functions are called instead of marshling them over 
424         the bus (Bug#1685 comment 3).
425
426 2005-05-04  John (J5) Palmieri  <johnp@redhat.com>
427
428         * python/Makefile.am: changed to use pyexecdir for the binding
429         shared libraries (Bug#2494)
430
431         * python/exceptions.py: bring exceptions over from the bindings
432         so they can be used in applications (Bug#2036)
433         Make all exceptions derive from DBusException
434
435         * python/_dbus.py, python/proxies.py: implement __repr__ in a couple
436         of classes so that print obj doesn't throw an exception (Bug #1685)
437
438 2005-05-03  Ross Burton  <ross@burtonini.com>
439
440         * glib/dbus-gobject.c (dbus_g_connection_register_g_object):
441         Return if we get an error during registration.  Set up a
442         weak reference on object to unregister if object is destroyed.
443         (unregister_gobject): New function.
444         
445 2005-05-01  John (J5) Palmieri  <johnp@redhat.com>
446
447         * python/dbus_bindings.pyx.in: 
448         - added new type classes for hinting to the marashaler what type 
449         to send over the wire
450         - added int16 and uint16 marshalers
451         - Fixed a bug in the type constants that caused int32 to go out
452         as uint16 over the wire
453         * python/dbus.py: split up into different files and renamed _dbus.py
454         * python/__init__.py, python/_util.py, python/decorators.py, 
455         python/exceptions.py, python/proxies.py, python/services.py,
456         python/types.py: new files split off from dbus.py
457         * python/Makefile.am: Add new files, remove dbus.py and 
458         install all python files to <python module dir>/dbus
459         * python/examples/*: Added #!/usr/bin/env python to the top of
460         every example.  Patch provided by Tatavarty Kalyan
461
462 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
463
464         * NEWS: Update to 0.33
465
466 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
467
468         * python/dbus_bindings.pyx.in (send_with_reply_handlers): New send
469         method for doing async calls
470         (_pending_call_notification): New C function for handling pendning call
471         callbacks
472         (set_notify): New method for setting pending call notification
473         
474         * python/dbus.py: new version tuple "version" is set at (0, 40, 0)
475         Async capabilities added to remote method calls
476         (Sender): class removed
477         (RemoteService): class removed
478         (ObjectTree): class removed for now
479         (RemoteObject): Renamed to ProxyObject
480         (RemoteMethod): Renamed to ProxyMethod
481         (method): Decorator added for decorating python methods as dbus methods
482         (signal): Decorator added for decorating python methods as signal emitters
483         (ObjectType): Metaclass added for generating introspection data and the
484         method callback vtable
485         (Interface): Wrapper class added to wrap objects in a dbus interface
486         (Object): Uses ObjectType as its metaclass and exports Introspect
487         of the org.freedesktop.DBus.Introspectable interface
488         (ValidationException, UnknownMethodException): new exceptions
489
490         * python/examples/*: Modified to fit with the new bindings
491
492 2005-04-23  Havoc Pennington  <hp@redhat.com>
493
494         * dbus/dbus-message.c (dbus_message_append_args): fix doc comment,
495         reported by Tony Houghton
496
497         * test/test-service.c (main): test
498         dbus_connection_get_object_path_data()
499
500         * dbus/dbus-object-tree.c (find_handler): be sure we always init
501         the exact_match
502         (_dbus_object_tree_get_user_data_unlocked): new function used by
503         dbus_connection_get_object_path_data()
504         (do_register): add assertion test for get_user_data_unlocked
505         (object_tree_test_iteration): more tests
506
507         * dbus/dbus-connection.c (dbus_connection_get_object_path_data):
508         new function from Dan Reed to let you get the user data from 
509         dbus_connection_register_object_path()
510
511 2005-04-23  John (J5) Palmieri  <johnp@redhat.com>
512
513         * dbus/dbus-marshal-recursive-util.c: Fixed buffer overflow
514         in numerous places that did not account for the NULL terminator
515         (signature_from_seed): changed the manual string copy loop to 
516         just use strcpy instead
517         make check should now pass
518
519 2005-04-19  John (J5) Palmieri  <johnp@redhat.com>
520
521         * dbus/dbus-marshal-header.c (_dbus_header_create): Fix assert
522         so that it allows messages that are not signals to pass in 
523         NULL as the interface.
524
525 2005-04-18  David Zeuthen  <davidz@redhat.com>
526
527         * glib/dbus-gmain.c (io_handler_destroy_source): 
528         (timeout_handler_destroy_source, connection_setup_free): 
529         Also unref the source to avoid memory leaks.
530
531 2005-04-13  David Zeuthen  <davidz@redhat.com>
532
533         * bus/config-parser.c (bus_config_parser_new): Bump this to a
534         more reasonable, yet still totally arbitrary, value :-). 
535
536 2005-04-13  David Zeuthen  <davidz@redhat.com>
537
538         * doc/TODO: Added an "important for 1.0" item about selinux
539         allow/deny messages
540
541 2005-04-13  David Zeuthen  <davidz@redhat.com>
542
543         * bus/selinux.c: Add c-file-style to top of file
544         (log_audit_callback): Don't free the data here anymore
545         (bus_selinux_check): Don't take spid and tpid since appending
546         that to auxdata may OOM.
547         (bus_selinux_allows_acquire_service): Handle OOM and signal back
548         to the caller if we are OOM by taking an error object.
549         (bus_selinux_allows_send): -do-
550
551         * bus/selinux.h: Fix prototypes for bus_selinux_allows_acquire_service
552         and bus_selinux_allows_send
553
554         * bus/bus.c (bus_context_check_security_policy): Pass error and
555         pass on OOM thrown by bus_selinux_allows_send()
556
557         * bus/services.c (bus_registry_acquire_service): Pass error and
558         pass on OOM thrown by bus_selinux_allows_acquire_service()
559
560 2005-04-13  Havoc Pennington  <hp@redhat.com>
561
562         * glib/dbus-gmain.c (message_queue_dispatch): only dispatch one
563         message at a time to avoid monopolizing the main loop, bug 
564         #2953 from Benjamin Otte
565
566 2005-04-09  Havoc Pennington  <hp@redhat.com>
567
568         * dbus/dbus-string.c (copy): change a memcpy to memmove due to
569         possible overlap, fix from Daniel Reed
570         (fixup_alignment): fix signedness warnings
571         (_dbus_string_append_unichar): ditto
572
573 2005-04-09  Havoc Pennington  <hp@redhat.com>
574
575         * dbus/dbus-message-util.c (_dbus_message_test): fix signedness warning
576
577         * glib/dbus-glib-tool.c (main): fix warning
578
579         * glib/dbus-binding-tool-glib.c (generate_glue): fix warning
580
581         * dbus/dbus-connection.c (dbus_connection_read_write_dispatch):
582         add a new function that can be used in simple applications that
583         don't have a main loop and are willing to block
584
585 2005-04-05  David Zeuthen  <davidz@redhat.com>
586
587         Fix https://bugs.freedesktop.org/show_bug.cgi?id=2889
588
589         * glib/dbus-gmain.c:
590         (io_handler_destroy_source): Remove from list of IO handlers
591         of the ConnectionSetup object
592         (timeout_handler_destroy_source): -do- for timeout handlers
593         (io_handler_source_finalized): Don't remove from list since
594         we now do that in io_handler_destroy_source(). Renamed from
595         io_handler_source_destroyed
596         (timeout_handler_source_destroyed): -do- for timeout handlers
597         (connection_setup_free): It is now safe to iterate over all
598         IO and timeout handlers as the _destroy_source removes them
599         from the list synchronously
600
601 2005-03-30  Havoc Pennington  <hp@redhat.com>
602
603         * configure.in: change check to gtk 2.4
604
605         * tools/dbus-viewer.c (name_combo_changed_callback): remove
606         gtk_combo_box_get_active_text() usage to decrement GTK requirement
607         to 2.4
608
609 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
610
611         * News: Update 0.32
612
613         * HACKING: Fixed realease instructions.  configure.in should be updated to
614           the next release by the person who made the last release.
615
616 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
617
618         * python/lvalue_cast_post_process.py - removed.  Patch has been
619           submitted to Pyrex maintainers that fixes gcc4.0 errors
620
621         * python/Makefile.am: removed refrences to lvalue_cast_post_process.py
622
623 2005-03-24  Daniel Reed  <n@ml.org>
624
625         * tools/Makefile.am: Make print-introspect and
626         dbus-bus-introspect.xml building conditional on HAVE_GLIB.
627
628 2005-03-22  John (J5) Palmieri  <johnp@redhat.com>
629
630         * tools/Makefile.am: Patch by Colin Walters that fixes distcheck
631
632         * dbus/dbus-userdb.c, dbus/dbus-userdb-util.c: Add patch we have 
633           had in Red Hat packages for a while but for some reason never 
634           got merged upstream
635           (_dbus_is_a_number): New checks if a string
636           can be converted to a number and does the conversion if it can
637           (_dbus_user_database_lookup): Add check to see if the given username
638           is a udi.  This allows udi's to be used instead of usernames in the
639           config file.
640           (_dbus_user_database_lookup_group): Add check to see if the given groupname
641           is a gdi.  This allows gdi's to be used instead of groupnames in the
642           config file.
643
644 2005-03-21  John (J5) Palmieri  <johnp@redhat.com>
645
646         * python/lvalue_cast_post_process.py - added post processor to fix Pyrex
647           code so that it compiles with gcc4.0
648
649         * python/Makefile.am: Added lvalue_cast_post_process.py to EXTRA_DIST
650           run dbus_bindings.c through lvalue_cast_post_process.py and copy the
651           results back to dbus_binding.c
652
653 2005-03-20  Colin Walters  <walters@verbum.org>
654
655         Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.
656
657         * configure.in: Require GTK+ 2.6.
658         
659 2005-03-20  Colin Walters  <walters@verbum.org>
660
661         * Makefile.am (SUBDIRS, DIST_SUBDIRS): Build tools before test.
662
663 2005-03-17  Tom Parker  <palfrey@tevp.net>
664
665         * dbus/dbus-userdb.c (_dbus_user_database_lookup): Don't
666         print DBUS_UID_UNSET; instead print passed username.  Also
667         be sure to actually use gid looked up in cache.
668         
669         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group): Ditto
670         for DBUS_GID_UNSET and groupname.
671
672 2005-03-17  Colin Walters  <walters@verbum.org>
673
674         * bus/print-introspect.c: Move to tools/.
675         * bus/run-with-tmp-session-bus.sh: Ditto.
676         
677         * glib/Makefile.am (dbus-glib-bindings.h): Move
678         generation to tools/Makefile.am.
679
680         * test/glib/run-test.sh: Update to handle move
681         of run-with-tmp-session-bus.sh.
682
683         * test/glib/test-service-glib.c: Update to handle
684         move of dbus-glib-bindings.h.
685
686         * tools/print-introspect.c: Moved here
687         from bus/, and ported to GLib bindings.
688
689         * tools/run-with-tmp-session-bus.sh: Moved here
690         from bus/.
691
692         * tools/Makefile.am: Generate dbus-glib-bindings.h
693         and dbus-bus-introspect.xml here.
694
695         * tools/.cvsignore, glib/.cvsignore, bus/.cvsignore:
696         Update.
697
698 2005-03-17  Colin Walters  <walters@verbum.org>
699
700         * bus/driver.c (write_args_for_direction): Use
701         _dbus_string_get_const_data to retrieve string;
702         _dbus_string_get_const_data_len doesn't actually return
703         a NULL-terminated substring.
704
705         * test/glib/test-service-glib.c: Include dbus-glib-bindings.h.
706         (main): Change to use org_freedesktop_DBus_request_name
707         instead of using g_proxy_begin_call/end_call.
708
709 2005-03-15  Joe Shaw  <joeshaw@novell.com>
710
711         * mono/ProxyBuilder.cs (BuildFinalizer): Fix some invalid IL when
712         generating the finalizer.  Fixes from Ben Maurer.
713
714 2005-03-12  Joe Shaw  <joeshaw@novell.com>
715
716         * mono/BusDriver.cs: Update method names: ListServices
717         becomes ListNames; GetOwner becomes GetNameOwner.
718
719         * mono/ProxyBuilder.cs (BuildFinalizer): Need to load arg 0
720         onto the eval stack when removing the delegate.
721
722 2005-03-12  Joe Shaw  <joeshaw@novell.com>
723
724         * mono/dbus-sharp.dll.config.in: Don't hardcode 0 for
725         LT_CURRENT.  Set it to the autoconf variable.
726                                                                                 
727         * mono/ProxyBuilder.cs: Add a finalizer to the generated proxy
728         classes that disconnects the signal handler delegate from the
729         service object.  Fixes a big leak of proxy objects on the
730         client side of things.  Patch from Ben Maurer
731         <bmaurer@ximian.com>
732
733 2005-03-12  Colin Walters  <walters@verbum.org>
734
735         * bus/driver.c (write_args_for_direction): New function,
736         parses a type signature into arguments and outputs to
737         XML.
738         (bus_driver_handle_introspect): Use it instead of
739         hardcoding XML for certain signatures.
740         
741         * bus/Makefile.am (dbus-bus-introspect.xml): Add
742         dependency on dbus-daemon.
743
744         * glib/dbus-glib-tool.c (main): Parse ignore_unsupported
745         argument, pass it to dbus_binding_tool_output_glib_client.
746
747         * glib/dbus-binding-tool-glib.c
748         (generate_client_glue): Protect against multiple inclusion.
749         (dbus_binding_tool_output_glib_client): Add
750         G_BEGIN_DECLS/G_END_DECLS.
751
752         * glib/dbus-binding-tool-glib.c (compute_client_method_name):
753         Change to just take iface prefix directly.
754         (write_formal_parameters): Clarify error message.
755         (check_supported_parameters): New function; checks to see type
756         signatures of method parameters are supported.
757         (generate_client_glue): Handle ignore_unsupported flag.
758         (dbus_binding_tool_output_glib_client): Handle ignore_unsupported
759         parameter.
760
761         * glib/Makefile.am (dbus-glib-bindings.h): Pass
762         --ignore-unsupported by default until glib bindings
763         support arrays.
764
765 2005-03-11  Colin Walters  <walters@verbum.org>
766
767         * glib/Makefile.am: Generate dbus-glib-bindings.h and
768         install it.
769
770         * bus/print-introspect.c: New file; prints introspection
771         data for a given name and object path.
772
773         * bus/run-with-tmp-session-bus.sh: New file, refactored
774         from test/glib/run-test.sh.  Creates a temporary session
775         bus and runs another program.
776
777         * test/glib/run-test.sh: Refactor to invoke
778         run-with-tmp-session-bus.sh.
779
780         * bus/driver.c (bus_driver_handle_introspect): Fix to print new
781         introspection format.  Also change to use DBUS_TYPE_x_AS_STRING
782         macros instead of hardcoding.
783
784         * glib/.cvsignore, bus/.cvsignore, test/glib/.cvsignore: Update.
785
786 2005-03-11  Joe Shaw  <joeshaw@novell.com>
787
788         * dbus/dbus-connection.c (dbus_connection_send_with_reply): Remove
789         this unref; it doesn't match up evenly in some codepaths.
790         (_dbus_connection_block_pending_call): Unref at every exitpoint;
791         this evenly matches with the ref near the top of this function.
792
793 2005-03-09  Joe Shaw  <joeshaw@novell.com>
794
795         * dbus/dbus-object-tree.c
796         (_dbus_object_tree_unregister_and_unlock): If checks are enabled
797         and we try to unregister a path that's not registered, still go
798         through the process of unlocking and don't just return.
799
800 2005-03-09  Colin Walters  <walters@verbum.org>
801
802         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): New method; calls
803         to this are generated for client-side wrappers.  Invokes a
804         D-BUS method and returns reply values.  
805
806         * glib/dbus-binding-tool-glib.c (write_args_sig_for_direction): New
807         function; writes signature string for argument direction.
808         (write_args_for_direction): Change to pass input values directly
809         instead of via address, and fix indentation.
810         (generate_client_glue): Change to invoke dbus_g_proxy_invoke.  Also
811         make generated wrappers inlineable.
812
813         * dbus/dbus-message.c (dbus_message_iter_get_fixed_array): Add
814         note about using dbus_type_is_fixed.
815
816         * dbus/dbus-marshal-basic.c (_dbus_type_is_fixed): Moved to
817         dbus/dbus-signature.c as dbus_type_is_fixed.
818
819         All callers updated.
820
821         * dbus/dbus-signature.c (dbus_type_is_fixed): Moved here
822         from dbus/dbus-marshal-basic.c:_dbus_type_is_fixed.
823
824         * dbus/dbus-signature.h: Prototype.
825
826         * glib/dbus-binding-tool-glib.c (compute_marshaller_name): Fix
827         error printf code.
828
829         * test/glib/test-dbus-glib.c (main): Be sure to clear error as
830         appropriate instead of just freeing it.
831         (main): Free returned strings using g_free.
832
833         * test/glib/Makefile.am (test-service-glib-glue.h)
834         (test-service-glib-bindings.h): Add dependency on dbus-binding-tool.
835
836         * glib/dbus-gvalue.c (MAP_BASIC): Refactored from MAP_BASIC_INIT;
837         simply maps a simple D-BUS type to GType.
838         (dbus_dbus_type_to_gtype): Function which maps D-BUS type to
839         GType.
840         (dbus_gvalue_init): Just invoke dbus_dbus_type_to_gtype and
841         initialize the value with it.
842         (dbus_gvalue_binding_type_from_type): Unused, delete.
843         (dbus_gvalue_demarshal): Switch to hardcoding demarshalling for
844         various types instead of unmarshalling to value data directly.
845         Remove can_convert boolean.
846         (dbus_gvalue_marshal): Remove duplicate initialization; switch to
847         returning directly instead of using can_convert boolean.
848         (dbus_gvalue_store): New function; not related to D-BUS per-se.
849         Stores a GValue in a pointer to a value of its corresponding C
850         type.
851
852         * glib/dbus-gvalue.h: Remove dbus_gvalue_binding_type_from_type,
853         add dbus_gvalue_store.
854
855 2005-03-08  Joe Shaw  <joeshaw@novell.com>
856
857         Fix a bunch of lifecycle and memory management problems
858         in the mono bindings.
859
860         * mono/Arguments.cs (Arguments): Implement IDisposable
861
862         * mono/Bus.cs (Bus): Don't allow public instantiation.  This is
863         strictly a static class.
864
865         * mono/Connection.cs: Move the DBusObjectPathVTable and associated
866         delegates into this file.
867         (Connection): Implement IDisposable.
868         (Dispose): Disconnect the connection and set the raw connection
869         pointer to IntPtr.Zero.
870         (~Connection): Call Dispose().
871         (RegisterObjectPath): Added.  Manages the registration of object
872         paths so we can cleanly disconnect them at dispose/finalize time.
873         (UnregisterObjectPath): Ditto.
874         (set_RawConnection): Unregister all of the object paths when
875         changing the underlying DBusConnection.  Add them back onto the
876         new connection, if any.
877
878         * mono/Handler.cs: Don't implement IDisposable; it doesn't use any
879         more unmanaged resources anymore, so it's not necessary.  Move all
880         the DBusObjectPathVTable stuff out of here.
881         (Handler): Save references to our delegates so that they don't get
882         finalized.  Call Connection.RegisterObjectPath() instead of
883         dbus_connection_register_object_path() directly.
884         (Message_Called): Dispose the message after we're finished with
885         it.
886
887         * mono/Message.cs (Message): Implement IDisposable.
888         (Dispose): Dispose the Arguments, and set the RawMessage to
889         IntPtr.Zero.
890         (SendWithReplyAndBlock): We own the ref to the reply that comes
891         back from dbus_connection_send_with_reply_and_block() so add a
892         comment about that and unref it after we've constructed a managed
893         MethodReturn class around it.  Fixes a big, big leak.
894
895         * mono/ProxyBuilder.cs: Reflect into Message to get the Dispose
896         method.
897         (BuildSignalHandler): After we've sent the Signal message, dispose
898         of it.
899         (BuildMethod): Dispose of the method call and reply messages after
900         we've sent the message and extracted the data we want from the
901         reply.
902
903         * mono/Service.cs (UnregisterObject): Don't call handler.Dispose()
904         anymore.
905         (Service_FilterCalled): Dispose of the message after we're
906         finished with it.
907
908 2005-03-08  Joe Shaw  <joeshaw@novell.com>
909
910         * dbus/dbus-connection.c (dbus_connection_send_with_reply):
911         After we attach our pending call to the connection, unref
912         it.  Fixes a leak.
913  
914         * mono/Connection.cs (set_RawConnection): Disconnect our
915         filter and match callbacks from the old connection and
916         reconnect them to the new connection, if any.
917
918         * mono/DBusType/Array.cs: "Code" is a static member, so
919         don't use "this" to refer to it.  Fix for stricter checking
920         in Mono 1.1.4.
921  
922         * mono/DBusType/ObjectPath.cs (Append): Don't leak the
923         object path that we pass into unmanaged code.
924  
925         * mono/DBusType/String.cs (Append): Don't leak the string
926         that we pass into unmanged code.
927
928 2005-03-07  John (J5) Palmieri  <johnp@redhat.com>
929         * NEWS: Update for 0.31
930
931         * configure.in: Release 0.31
932         add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping
933
934         * qt/Makefile.am: fixed build
935
936         * dbus/Makefile.am: soname bump for libdbus
937
938         * glib/Makefile.am: soname bump for libdbus-glib
939
940 2005-03-05  Havoc Pennington  <hp@redhat.com>
941
942         * dbus/dbus-sysdeps.c:
943         (pseudorandom_generate_random_bytes_buffer): fix to have no return
944         value
945         (_dbus_generate_random_bytes_buffer): fix return value
946
947         * dbus/dbus-sysdeps-util.c: s/GETPWNAME/GETPWNAM/ so configure
948         checks actually work, from Tom Parker <fdo@tevp.net>
949
950 2005-03-01  Colin Walters  <walters@verbum.org>
951
952         * test/glib/test-dbus-glib.c (lose, lose_gerror): Utility
953         functions copied from dbus-glib-tool.c.
954         (main): Convert lots of error code to use them.
955         Also add some testing for introspection bits.
956
957 2005-03-01  Colin Walters  <walters@verbum.org>
958         
959         * doc/TODO: Remove introspection signature TODO.
960
961 2005-02-27  Colin Walters  <walters@verbum.org>
962
963         * glib/dbus-gidl.c (property_info_get_type, arg_info_get_type):
964         Change return value to const char * instead of int so we can do
965         full signatures.
966         (struct PropertyInfo, struct ArgInfo): Store char *.
967         (property_info_new, arg_info_new): Update parameters, strdup.
968         (property_info_unref, arg_info_unref): Free.
969
970         * glib/dbus-gidl.h: Update prototypes.
971
972         * glib/dbus-gparser.c (basic_type_from_string): Delete.
973         (validate_signature): New function, just validates signature and
974         sets GError.
975         (parse_property, parse_arg): Invoke validate_signature.  Store
976         signature instead of just type code.
977
978         * glib/dbus-gvalue.c (base_type_from_signature): New utility
979         function to return a primary type for a signature, dropping
980         information about types in container types.
981         (dbus_gvalue_genmarshal_name_from_type)
982         (dbus_gvalue_binding_type_from_type)
983         (dbus_gvalue_ctype_from_type): Update to take full signature
984          instead of type code.
985         (dbus_gtype_to_dbus_type): Moved here from glib/dbus-gobject.c.
986
987         * glib/dbus-gvalue.h: Update prototypes for above.
988
989         * glib/dbus-gobject.c (gtype_to_dbus_type): Moved to
990         glib/dbus-gvalue.c as dbus_gtype_to_dbus_type.
991         (introspect_properties, introspect_signals, write_interface):
992         Update to handle signatures, and remove usage of
993         _dbus_gutils_type_to_string.
994         (handle_introspect): Print out type codes instead of e.g. "string"
995         in hardcoded introspection XML; also use x_AS_STRING constants
996         instead of hardcoding in string.
997
998         * glib/dbus-glib-tool.c (pretty_print): Handle signature change
999         to string.  Remove usage of _dbus_gutils_type_to_string.
1000
1001         * glib/dbus-gutils.c (_dbus_gutils_type_to_string): Delete.
1002
1003         * glib/dbus-gutils.h (_dbus_gutils_type_to_string): Update for
1004         deletion.
1005         
1006         * glib/dbus-binding-tool-glib.c (compute_marshaller)
1007         (compute_marshaller_name, generate_glue): Handle signature change
1008         to string.
1009         (write_formal_parameters, write_args_for_direction): Ditto, and
1010         remove FIXME.
1011
1012         * tools/dbus-tree-view.c (type_to_string): Delete.
1013         (info_set_func_text): Update to print full signatures.
1014
1015         * test/glib/test-service-glib.xml: Change types to new
1016         introspection format.
1017
1018 2005-02-26  Havoc Pennington  <hp@redhat.com>
1019
1020         * doc/TODO: remove the "guid" item
1021
1022         * test/glib/test-profile.c (no_bus_thread_func): use open_private
1023         (with_bus_thread_func): use open_private
1024
1025         * dbus/dbus-connection.c (dbus_connection_open_private): new
1026         function that works like the old dbus_connection_open()
1027         (dbus_connection_open): now returns an existing connection if
1028         possible
1029
1030         * dbus/dbus-server-unix.c (handle_new_client_fd_and_unlock): pass
1031         through the GUID to the transport
1032
1033         * dbus/dbus-server.c (_dbus_server_init_base): keep around the
1034         GUID in hex-encoded form.
1035
1036         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
1037         pass GUID argument in to the transport
1038
1039         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): add
1040         guid argument
1041
1042         * dbus/dbus-transport.c (_dbus_transport_init_base): add guid argument
1043
1044         * dbus/dbus-auth.c (_dbus_auth_server_new): add guid argument
1045
1046 2005-02-25  Havoc Pennington  <hp@redhat.com>
1047
1048         * doc/dbus-specification.xml: document the GUID thing
1049
1050         * dbus/dbus-server.c (_dbus_server_init_base): initialize a
1051         globally unique ID for the server, and put a "guid=hexencoded"
1052         field in the address
1053
1054         * dbus/dbus-bus.c: fix missing #include of dbus-threads-internal.h
1055
1056         * dbus/dbus-message.c: ditto
1057
1058         * dbus/dbus-dataslot.c: ditto
1059
1060         * dbus/dbus-list.c: ditto
1061
1062         * dbus/dbus-internals.h: wait, just include
1063         dbus-threads-internal.h here
1064         
1065         * dbus/dbus-string.c (_dbus_string_copy_to_buffer): move back for
1066         use in main library
1067
1068         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes_buffer): new function
1069
1070 2005-02-24  Colin Walters  <walters@verbum.org>
1071
1072         * test/glib/Makefile.am (EXTRA_DIST): Add test-service-glib.xml
1073
1074 2005-02-24  John (J5) Palmieir  <johnp@redhat.com>
1075
1076         * glib/Makefile.am: added dbus-gobject.h to sources list
1077         so distcheck doesn't fail
1078         
1079 2005-02-24  Havoc Pennington  <hp@redhat.com>
1080
1081         * dbus/dbus-server.c, dbus/dbus-server-unix.c: change semantics so
1082         you must disconnect before unref, since locking and other things
1083         are screwed up otherwise. Fix assorted other locking stuff.
1084
1085         * dbus/dbus-signature.c (dbus_signature_iter_get_element_type):
1086         fix compilation
1087
1088         * dbus/dbus-threads-internal.h: move the mutex/condvar wrappers
1089         into a private header and don't export from the library
1090
1091         * throughout - call _dbus_thread_stuff vs. dbus_thread_stuff
1092
1093 2005-02-24  Colin Walters  <walters@verbum.org>
1094         
1095         * dbus/dbus-signature.c: New file; implements various functions
1096         related to type signatures.  Includes an interator for parsing,
1097         validation functions.
1098         (dbus_type_is_basic): Moved here from
1099         dbus-marshal-basic.c:_dbus_type_is_basic.
1100         (dbus_type_is_container): Moved here from
1101         dbus-marshal-basic.c:_dbus_type_is_container.
1102
1103         All callers of _dbus_type_is_container and _dbus_type_is_basic
1104         updated, and include dbus-signature.h.
1105
1106         * dbus/dbus-signature.h: New file; prototypes for the above.
1107
1108         * dbus/Makefile.am (DBUS_LIB_SOURCES): Add dbus-signature.c,
1109         dbus-signature.h.
1110
1111         * dbus/dbus-marshal-basic.c (map_type_char_to_type): New utility
1112         function factored out of _dbus_first_type_in_signature.
1113         (_dbus_first_type_in_signature_c_str): New function; returns first
1114         type code for a type signature character.
1115
1116         * dbus/dbus-marshal-basic.h: Prototype _dbus_first_type_in_signature_c_str,
1117         handle function moves.
1118
1119         * dbus/dbus-marshal-recursive.h: Export _dbus_type_signature_next.
1120
1121         * dbus/dbus-marshal-recursive.c (_dbus_type_signature_next): New
1122         function; skips to next complete type in type signature.
1123         Implemented using previous skip_one_complete_type.  Now
1124         skip_one_complete_type just delegates to
1125         _dbus_type_signature_next.
1126
1127         * dbus/dbus-marshal-basic.c (_dbus_type_is_basic): Moved
1128         to dbus-signature.c
1129         (_dbus_type_is_container): Ditto.
1130
1131         * doc/dbus-specification.xml: Update introspection sample to
1132         use real type signatures.
1133
1134         * dbus/dbus-test.h: Prototype signature test.
1135
1136         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Run
1137         signature tests.
1138
1139         * dbus/dbus-protocol.h (DBUS_ERROR_INVALID_SIGNATURE): New error.
1140
1141 2005-02-23  John (J5) Palmieri  <johnp@redhat.com>
1142
1143         * python/dbus_bindings.pyx.in (PendingCall::get_reply):
1144         s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
1145
1146 2005-02-21  Colin Walters  <walters@verbum.org>
1147
1148         * dbus/dbus-test-main.c (main): Take optional specific test
1149         argument.
1150
1151         * dbus/dbus-test.c (run_test): New function, runs a test function
1152         with no data directory.
1153         (run_data_test): Like above, but takes data directory.
1154         (dbus_internal_do_not_use_run_tests): Take
1155         specific test argument.  Replace lots of cut n' paste code
1156         with run_test and run_data_test.
1157
1158         * dbus/dbus-test.h: Update prototype for
1159         dbus_internal_do_not_use_run_tests.
1160
1161 2005-02-20  Havoc Pennington  <hp@redhat.com>
1162
1163         Fix bugs reported by Daniel P. Berrange
1164         
1165         * dbus/dbus-server.c (_dbus_server_unref_unlocked): new function
1166         (protected_change_watch): new function
1167         (_dbus_server_toggle_watch, _dbus_server_remove_watch)
1168         (_dbus_server_add_watch): change to work like the
1169         dbus-connection.c equivalents; like those, probably kind of
1170         busted, but should at least mostly work for now
1171         (dbus_server_disconnect): drop the lock if we were already
1172         disconnected, patch from Daniel P. Berrange
1173
1174         * dbus/dbus-server.c (_dbus_server_toggle_timeout) 
1175         (_dbus_server_remove_timeout, _dbus_server_add_timeout): all the
1176         same stuff
1177
1178         * doc/TODO: todo about unscrewing this mess
1179
1180 2005-02-19  Colin Walters  <walters@verbum.org>
1181
1182         * glib/dbus-binding-tool-glib.c
1183         (dbus_binding_tool_output_glib_server): Fix iochannel refcounting.
1184
1185         * glib/dbus-glib-tool.c: Include dbus-glib-tool.h, as well
1186         as errno.h and sys/stat.h.
1187         (lose): New function, prints error with
1188         newline and exits.
1189         (lose_gerror): Similar, but takes GError for message.
1190         (main): Add --output argument to specify output file to write to,
1191         instead of always printing to stdout.  In this mode, determine
1192         timestamps on source files to see whether any are newer than the
1193         target file.  If not, exit.  Also convert a number of error
1194         messages to use lose (since it's shorter), and switch to using
1195         g_io_channel_shutdown.
1196
1197 2005-02-19  Havoc Pennington  <hp@redhat.com>
1198
1199         * glib/dbus-gobject.c
1200         (_dbus_glib_marshal_dbus_message_to_gvalue_array): add docs
1201
1202         * glib/dbus-glib.c: fix doxygen warnings
1203
1204         * glib/dbus-gparser.c (parse_annotation): error if an annotation
1205         is found on an <arg>
1206
1207 2005-02-17  Colin Walters  <walters@verbum.org>
1208
1209         * glib/dbus-gobject.h: Don't export
1210         _dbus_glib_marshal_dbus_message_to_gvalue_array.
1211         
1212         * glib/dbus-gobject.c (_dbus_glib_marshal_dbus_message_to_gvalue_array): Do rename.
1213         (invoke_object_method): Handle it.
1214
1215         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
1216         Handle rename.
1217         
1218 2005-02-17  Colin Walters  <walters@verbum.org>
1219
1220         * bus/.cvsignore, doc/.cvsignore
1221         * test/data/valid-service-files/.cvsignore, test/glib/.cvsignore:
1222         Update.
1223
1224 2005-02-17  Colin Walters  <walters@verbum.org>
1225         
1226         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_DBUS):
1227         Rename to DBUS_SERVICE_DBUS.
1228         (DBUS_PATH_ORG_FREEDESKTOP_DBUS): Rename to DBUS_PATH_DBUS.
1229         (DBUS_PATH_ORG_FREEDESKTOP_LOCAL): Rename to DBUS_PATH_LOCAL.
1230         Change the value from "org.freedesktop.Local"
1231         to "org.freedesktop.DBus.Local".
1232         (DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS): Rename to DBUS_INTERFACE_DBUS.
1233         (DBUS_INTERFACE_ORG_FREEDESKTOP_INTROSPECTABLE): Rename to
1234         DBUS_INTERFACE_INTROSPECTABLE.
1235         Change the value from "org.freedesktop.Introspectable"
1236         to "org.freedesktop.DBus.Introspectable".
1237         (DBUS_INTERFACE_ORG_FREEDESKTOP_PROPERTIES): Rename to
1238         DBUS_INTERFACE_PROPERTIES.
1239         Change the value from "org.freedesktop.Properties"
1240         to "org.freedesktop.DBus.Properties".
1241         (DBUS_INTERFACE_ORG_FREEDESKTOP_PEER): Rename to
1242         DBUS_INTERFACE_PEER.
1243         Change the value from "org.freedesktop.Peer"
1244         to "org.freedesktop.DBus.Peer".
1245         (DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL): 
1246         DBUS_INTERFACE_LOCAL.
1247         Change the value from "org.freedesktop.Local"
1248         to "org.freedesktop.DBus.Local".
1249
1250         All other users of those constants have been changed.
1251
1252         * bus/driver.c (bus_driver_handle_introspect): Use constants.
1253
1254         * glib/dbus-gobject.c (handle_introspect): Use constants.
1255
1256         * doc/dbus-faq.xml, doc/dbus-specification.xml: Update for rename.
1257
1258 2005-02-17  Colin Walters  <walters@verbum.org>
1259
1260         * glib/dbus-gparser.c (struct Parser): Add in_annotation boolean.
1261         (parse_node, parse_interface, parse_method, parse_signal)
1262         (parse_property, parse_annotation): Lose if we're currently in an
1263         annotation.
1264         (parse_annotation): New function.
1265         (parser_start_element, parser_end_element): Handle annotation.
1266         (parse_method, parse_interface): Remove support for c_name attribute,
1267         switch to annotations.
1268
1269         * glib/dbus-gidl.h (interface_info_get_binding_names)
1270         (method_info_get_binding_names)
1271         (interface_info_get_binding_name, method_info_get_binding_name)
1272         (interface_info_set_binding_name, method_info_set_binding_name):
1273         Remove.
1274         (interface_info_get_annotations, method_info_get_annotations)
1275         (interface_info_get_annotation, method_info_get_annotation)
1276         (interface_info_add_annotation, method_info_add_annotation):
1277         Prototype.
1278
1279         * glib/dbus-gidl.c (struct InterfaceInfo): Substitute "annotations"
1280         for "bindings".
1281         (struct MethodInfo): Ditto.
1282         Straightfoward conversion of binding methods into annotation methods
1283         as prototyped.
1284
1285         * glib/dbus-glib-tool.c (pretty_print): Print annotations.
1286
1287         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_C_SYMBOL): Define.
1288
1289         * glib/dbus-binding-tool-glib.c (gather_marshallers, generate_glue):
1290         Use new annotation API.
1291
1292         * doc/introspect.dtd: Fix a number of DTD syntax errors.  Add
1293         annotation element.
1294         
1295         * doc/dbus-specification.xml: Discuss introspection annotations,
1296         include list of well-known annotations.
1297
1298         * test/glib/test-service-glib.xml: Make validate against new DTD.
1299
1300 2005-02-17  Colin Walters  <walters@verbum.org>
1301
1302         This patch is based on initial work from
1303         Paul Kuliniewicz <kuliniew@purdue.edu>.
1304
1305         * glib/dbus-gvalue.c (dbus_gvalue_init): New function; move
1306         initialization of GValue from dbus type to here.
1307         (dbus_gvalue_genmarshal_name_from_type): New function; generates a string
1308         for the "glib-genmarshal" program from a DBus type.
1309         (dbus_gvalue_binding_type_from_type): New function; turns a DBus type
1310         into the C name for it we use in the glib bindings.
1311         (dbus_gvalue_ctype_from_type): New function; maps a DBus type into a
1312         glib C type (not GValue).
1313         (dbus_gvalue_demarshal): invoke dbus_gvalue_init.
1314
1315         * glib/dbus-gutils.c (_dbus_gutils_wincaps_to_uscore): Moved here
1316         from dbus-gobject.c.
1317
1318         * glib/dbus-gutils.h: Prototype it.
1319
1320         * glib/dbus-gproxy.c: Include new dbus-gobject.h.
1321         (marshal_dbus_message_to_g_marshaller): Use new shared function
1322         dbus_glib_marshal_dbus_message_to_gvalue_array.
1323
1324         * glib/dbus-gparser.c (parse_interface, parse_method): Handle c_name attribute.
1325         Will be changed once we have annotations.
1326
1327         * glib/dbus-gobject.c: Change info_hash_mutex from GStaticMutex to
1328         GStaticRWLock.  Callers updated.
1329         (wincaps_to_uscore): Move to dbus-gutils.c.  Callers updated.
1330         (string_table_next): New function for iterating over zero-terminated
1331         string value array.
1332         (string_table_lookup): New function; retrieves specific entry in
1333         array.
1334         (get_method_data): New function; look up method data in object data chunk.
1335         (object_error_domain_prefix_from_object_info)
1336         (object_error_code_from_object_info): New functions, but not implemented yet.
1337         (method_interface_from_object_info): New function; retrieve interface name.
1338         (method_name_from_object_info): New function; retrieve method name.
1339         (method_arg_info_from_object_info): New function; retrieve argument data.
1340         (arg_iterate): New function; iterates over serialized argument data.
1341         (method_dir_signature_from_object_info): New function; returns a
1342         GString holding type signature for arguments for just one
1343         direction (input or output).
1344         (method_input_signature_from_object_info)
1345         (method_output_signature_from_object_info): New functions.
1346         (dbus_glib_marshal_dbus_message_to_gvalue_array): New shared function;
1347         converts dbus message arguments into a GValue array.  Used for both
1348         signal handling and method invocation.
1349         (struct DBusGlibWriteIterfaceData): New utility structure.
1350         (write_interface): New function; generate introspection XML for
1351         an interface.
1352         (introspect_interfaces): New function; gathers all interface->methods,
1353         generates introspection XML for them.
1354         (handle_introspect): Invoke introspect_interfaces.
1355         (get_object_property): Be sure to zero-initalize stack-allocated GValue.
1356         (lookup_object_and_method): New function; examines an incoming message
1357         and attempts to match it up (via interface, method name, and argument
1358         signature) with a known object and method.
1359         (gerror_domaincode_to_dbus_error_name): New function; converts a
1360         GError domain and code into a DBus error name.  Needs GError data
1361         added to object introspection to work well.
1362         (gerror_to_dbus_error_message): Creates a DBusMessage error return from
1363         GError.
1364         (invoke_object_method): New function to invoke an object method
1365         looked up via lookup_object_and_method.  Parses the incoming
1366         message, turns it into a GValue array, then invokes the marshaller
1367         specified in the DBusGMethodInfo.  Creates a new message with
1368         either return values or error message as appropriate.
1369         (gobject_message_function): Invoke lookup_object_and_method and
1370         invoke_object_method.
1371
1372         * glib/dbus-glib-tool.c: Include dbus-binding-tool-glib.h.
1373         (enum DBusBindingOutputMode): New enum for binding output modes.
1374         (pretty_print): Print binding names.
1375         (dbus_binding_tool_error_quark): GError bits.
1376         (version): Fix typo.
1377         (main): Create GIOChannel for output.  Parse new --mode argument,
1378         possible values are "pretty-print", "glib-server", "glib-client".
1379         Use mode to invoke appropriate function.
1380         
1381         * glib/dbus-gobject.h: Prototype dbus_glib_marshal_dbus_message_to_gvalue_array.
1382
1383         * glib/dbus-glib-tool.h: New header, just includes GError bits
1384         for now.
1385
1386         * glib/dbus-gidl.c (struct InterfaceInfo): Add bindings hashtable;
1387         maps binding style to name.
1388         (struct MethodInfo): Ditto.
1389         (get_hash_keys, get_hash_key): Utility function, returns keys for
1390         a GHashTable.
1391         (interface_info_new, method_info_new): Initialize bindings.
1392         (interface_info_unref, method_info_unref): Destroy bindings.
1393         (method_info_get_binding_names, method_info_get_binding_name)
1394         (interface_info_get_binding_names, interface_info_get_binding_name):
1395         Functions for retrieving binding names.
1396         (method_info_set_binding_name, interface_info_set_binding_name):
1397         Functions for setting binding names.
1398
1399         * glib/dbus-binding-tool-glib.h: New file, has prototypes
1400         for glib binding generation.
1401
1402         * glib/dbus-binding-tool-glib.c: New file, implements server-side
1403         and client-side glib glue generation.
1404
1405         * glib/Makefile.am (dbus_binding_tool_SOURCES): Add
1406         dbus-binding-tool-glib.c, dbus-binding-tool-glib.h,
1407         dbus-glib-tool.h.
1408
1409         * dbus/dbus-glib.h (struct DBusGMethodMarshaller): Remove in favor
1410         of using GClosureMarshal directly.
1411         (struct DBusGObjectInfo): Add n_infos member.
1412
1413         * test/glib/test-service-glib.xml: New file; contains introspection data
1414         for MyTestObject used in test-service-glib.c.
1415
1416         * test/glib/test-service-glib.c (enum MyObjectError): New GError enum.
1417         (my_object_do_nothing, my_object_increment, my_object_throw_error)
1418         (my_object_uppercase, my_object_many_args): New test methods.
1419         (main): Use dbus_g_object_class_install_info to include generated object
1420         info.
1421
1422         * test/glib/Makefile.am: Generate server-side glue for test-service-glib.c,
1423         as well as client-side bindings.
1424
1425         * test/glib/test-dbus-glib.c: Include test-service-glib-bindings.h.
1426         (main): Activate TestSuiteGLibService; test invoke a bunch of its methods
1427         using both the dbus_gproxy stuff directly as well as the generated bindings.
1428
1429 2005-02-15  Havoc Pennington  <hp@redhat.com>
1430
1431         * dbus/dbus-connection.c (dbus_connection_dispatch): always
1432         complete a pending call, don't run filters first.
1433
1434         * glib/dbus-gproxy.c (dbus_g_proxy_end_call): change to use
1435         dbus_pending_call_steal_reply
1436
1437         * dbus/dbus-pending-call.c (dbus_pending_call_block): just call
1438         _dbus_connection_block_pending_call
1439         (dbus_pending_call_get_reply): change to steal_reply and return a
1440         ref
1441
1442         * dbus/dbus-connection.c
1443         (dbus_connection_send_with_reply_and_block): port to work in terms
1444         of DBusPendingCall
1445         (_dbus_connection_block_pending_call): replace block_for_reply
1446         with this
1447
1448 2005-02-14  Havoc Pennington  <hp@redhat.com>
1449
1450         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group):
1451         properly handle looking up group information by name; fix 
1452         from j@bootlab.org
1453
1454 2005-02-13  Havoc Pennington  <hp@redhat.com>
1455
1456         * dbus/dbus-connection.c (dbus_connection_return_message) 
1457         (dbus_connection_borrow_message): hold dispatch lock while message
1458         is outstanding
1459         (_dbus_connection_block_for_reply): hold dispatch lock while we
1460         block for the reply, so nobody steals our reply
1461         (dbus_connection_pop_message): hold the dispatch lock while we
1462         pluck the message
1463
1464 2005-02-13  Havoc Pennington  <hp@redhat.com>
1465
1466         * dbus/dbus-connection.c (_dbus_connection_acquire_dispatch)
1467         (_dbus_connection_release_dispatch)
1468         (_dbus_connection_acquire_io_path)
1469         (_dbus_connection_release_io_path): make the mutex and condvar
1470         control access to the "acquired" flag. Drop the connection lock
1471         while waiting on the condvar. Hopefully these are baby steps in
1472         roughly the right direction.
1473
1474 2005-02-13  Havoc Pennington  <hp@redhat.com>
1475
1476         * dbus/dbus-connection.c: use separate mutexes for the condition
1477         variables; this is some kind of baseline for sanity, but the
1478         condition variables still aren't used correctly afaict
1479
1480 2005-02-13  Havoc Pennington  <hp@redhat.com>
1481
1482         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
1483         fix a double-unlock
1484
1485         * dbus/dbus-connection.c
1486         (_dbus_connection_detach_pending_call_unlocked): add this
1487
1488         Initial semi-correct pass through to fix thread locking; there are
1489         still some issues with the condition variable paths I'm pretty
1490         sure
1491         
1492         * dbus/dbus-server.c: add a mutex on DBusServer and appropriate
1493         lock/unlock calls
1494
1495         * dbus/dbus-connection.c (_dbus_connection_do_iteration_unlocked):
1496         rename to add _unlocked
1497         (struct DBusConnection): move "dispatch_acquired" and
1498         "io_path_acquired" to use only one bit each.
1499         (CONNECTION_LOCK, CONNECTION_UNLOCK): add checks with !DBUS_DISABLE_CHECKS
1500         (dbus_connection_set_watch_functions): hacky fix to reentrancy
1501         (_dbus_connection_add_watch, _dbus_connection_remove_watch) 
1502         (_dbus_connection_toggle_watch, _dbus_connection_add_timeout) 
1503         (_dbus_connection_remove_timeout) 
1504         (_dbus_connection_toggle_timeout): drop lock when calling out to
1505         user functions; done in a hacky/bad way.
1506         (_dbus_connection_send_and_unlock): add a missing unlock
1507         (_dbus_connection_block_for_reply): add a missing unlock
1508
1509         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
1510         drop lock in a hacky probably unsafe way to call out to user
1511         function
1512
1513 2005-02-12  Havoc Pennington  <hp@redhat.com>
1514
1515         * tools/dbus-tree-view.c (info_set_func_text): display more
1516         details on args
1517
1518         * bus/driver.c (bus_driver_handle_list_services): list the bus
1519         driver
1520
1521         * glib/dbus-gparser.c (parse_arg): generate an arg name if none is supplied
1522
1523         * glib/dbus-gidl.c (signal_info_get_n_args): new function
1524         (method_info_get_n_args): new function
1525
1526 2005-02-12  Havoc Pennington  <hp@redhat.com>
1527
1528         * bus/driver.c (bus_driver_handle_introspect): add introspection
1529         for bus driver
1530
1531 2005-02-12  Havoc Pennington  <hp@redhat.com>
1532
1533         * bus/driver.c: put the signature of each bus driver method in the
1534         table of handlers and check it on incoming calls; this isn't
1535         really useful, but going to add introspect support in a minute.
1536
1537 2005-02-11  Joe Shaw  <joeshaw@novell.com>
1538
1539         * mono/Connection.cs: The unpredictability of finalizers in mono
1540         prevents us from deterministically disconnecting the filters from
1541         the Service class's finalizer, so move tracking of filters and
1542         matches here.  Add API for that.
1543
1544         * mono/Service.cs: Remove the code, add code which calls the
1545         methods now on the Connection class.
1546
1547 2005-02-11  John (J5) Palmieri  <johnp@redhat.com>
1548
1549         * python/dbus.py (class Sender): added to support dbus signals better
1550         (Bus::add_signal_receiver): added expand_args parameter which defaults
1551         to True.  When expand args is True the signal handler will pass the 
1552         message arguments as parameters to the signal handler.  If False
1553         revert to previous behavior where the signal handler must get the
1554         argument list from the message.  This is to help port applications
1555         like HAL that have a tendancy to send variable length argument lists.
1556         self._match_rule_to_receivers is now a dict of dicts.
1557         (Bus::remove_signal_receiver): pop handler off the dict intead of 
1558         removing it from a list
1559         (Bus::_signal_func): change signal handlers so that interface,
1560         signal_name, service, path and message are packed into a Sender
1561         object and that is passed to the handler.  If expand_args is True
1562         extract the args list from the message and append it to the parameter
1563         list
1564         
1565         * python/dbus_bindings.pyx.in (class Signature): added to support 
1566         signiature types
1567         (MessageIter::__init__): changed iteration limit to match D-BUS
1568         (MessageIter::get*): added INT16, UINT16, SIGNATURE, DICT_ENTRY, 
1569         STRUCT and VARIENT type support
1570         (MessageIter::python_value_to_dbus_sig): made recursive to support
1571         recursive types
1572         (MessageIter::append*): added Signature, dict, tuple 
1573         support
1574
1575         * python/examples/example-client.py: added examples of getting tuples
1576         and dicts
1577
1578         * python/examples/example-service.py: added examples of sending tuples
1579         and dicts
1580
1581         * python/examples/example-signal-recipient.py: Fixed to handle new
1582         signal callback format
1583
1584 2005-02-10  Havoc Pennington  <hp@redhat.com>
1585
1586         * test/glib/test-dbus-glib.c (main): fix so this test doesn't fail
1587         (call dbus_g_proxy_add_signal)
1588
1589         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
1590         escape the hostname
1591         (_dbus_server_new_for_domain_socket): escape the path
1592
1593         * dbus/dbus-address.c (dbus_address_escape_value): new
1594         (dbus_address_unescape_value): new
1595         (dbus_parse_address): unescape values
1596
1597         * dbus/dbus-string.c (_dbus_string_append_byte_as_hex): new function
1598
1599         * doc/dbus-specification.xml: explain how to escape values in
1600         addresses
1601
1602 2005-02-10  Havoc Pennington  <hp@redhat.com>
1603
1604         * dbus/dbus-message-factory.c (generate_special): modify test to
1605         avoid using a non-basic dict key
1606
1607         * dbus/dbus-marshal-validate-util.c: add test for the below
1608
1609         * doc/dbus-specification.xml: require that dict keys are a basic
1610         type
1611
1612         * dbus/dbus-marshal-validate.c
1613         (_dbus_validate_signature_with_reason): require that dict key is a
1614         basic type
1615
1616 2005-02-10  Havoc Pennington  <hp@redhat.com>
1617
1618         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
1619         change to be _and_unlock instead of _unlocked
1620
1621         * dbus/dbus-connection.c
1622         (_dbus_connection_send_preallocated_unlocked_no_update): rename to
1623         have no_update so we can find this bug quickly in future
1624
1625 2005-02-10  Havoc Pennington  <hp@redhat.com>
1626
1627         * dbus/dbus-message-util.c (verify_test_message): tests for string
1628         array
1629
1630         * dbus/dbus-message.c (dbus_message_append_args_valist): add
1631         support for arrays of string/signature/path
1632
1633 2005-02-10  Joe Shaw  <joeshaw@novell.com>
1634
1635         * dbus/dbus-connection.c
1636         (_dbus_connection_queue_received_message_link,
1637         _dbus_connection_message_sent): Add the path to
1638         the verbose output.
1639         (_dbus_connection_send_preallocated_and_unlock): Added.  Calls
1640         _dbus_connection_send_preallocated_unlocked(), updated the
1641         dispatch status, and unlocks.  Fixes a bug where certain
1642         situations (like a broken pipe) could cause a Disconnect message
1643         to not be sent, tricking the bus into thinking a service was still
1644         there when the process had quit.
1645         (_dbus_connection_send_preallocated): Call
1646         _dbus_connection_send_preallocated_and_unlock().
1647         (_dbus_connection_send_and_unlock): Added.  Calls
1648         _dbus_connection_send_preallocated_and_unlock().
1649         (dbus_connection_send): Call _dbus_connection_send_and_unlock().
1650         (dbus_connection_send_with_reply): Update the dispatch status and
1651         unlock.
1652
1653         * mono/Service.cs (~Service): Added.  Removes the filter so that
1654         we don't get unmanaged code calling back into a GCed delegate.
1655         (RemoveFilter); Added.
1656
1657 2005-02-09  John (J5) Palmieri  <johnp@redhat.com>
1658
1659         * dbus/dbus-message.c (dbus_message_iter_open_container):
1660         - Removed check for iterator type being an array because
1661         get_arg_type does not work with writer iterators
1662         - Pass NULL to _dbus_type_writer_recurse if signiture is NULL
1663
1664 2005-02-07  Havoc Pennington  <hp@redhat.com>
1665
1666         * doc/dbus-specification.xml: some more language cleanups; add
1667         stuff about how to deal with invalid protocol and extension
1668         points; add _ to allowed chars in auth commands; add EXTENSION_
1669         auth command prefix
1670
1671 2005-02-06  Havoc Pennington  <hp@redhat.com>
1672
1673         * s/expected/required/ in a couple places for clarity
1674
1675 2005-02-07  Colin Walters  <walters@verbum.org>
1676
1677         * bus/selinux.c (bus_selinux_allows_send): Handle NULL for
1678         sender or proposed_recipient.
1679
1680 2005-02-06  Havoc Pennington  <hp@redhat.com>
1681
1682         * dbus/dbus-message-factory.c (generate_special): more tests
1683
1684         * dbus/dbus-marshal-validate.c (validate_body_helper): detect
1685         array length that exceeds the maximum
1686
1687 2005-02-05  Havoc Pennington  <hp@redhat.com>
1688
1689         * dbus/dbus-message-factory.c (generate_special): more test cases,
1690         increasing coverage
1691
1692         * dbus/dbus-marshal-validate.c (validate_body_helper): return the
1693         reason why a signature was invalid
1694
1695         * dbus/dbus-marshal-header.c (load_and_validate_field): fix to
1696         skip the length of the string before we look at it in validation
1697
1698         * dbus/dbus-string-util.c (_dbus_string_test): add tests for
1699         equal_substring
1700
1701         * dbus/dbus-message.c (_dbus_message_loader_new): default
1702         max_message_length to DBUS_MAXIMUM_MESSAGE_LENGTH
1703
1704 2005-02-05  Havoc Pennington  <hp@redhat.com>
1705
1706         * dbus/dbus-marshal-validate.c (validate_body_helper): fix crash
1707         if the signature of a variant was empty
1708         (_dbus_validate_signature_with_reason): catch "(a)" (array inside
1709         struct with no element type)
1710
1711         * dbus/dbus-message-factory.c (generate_uint32_changed): add more
1712         mangled messages to break things
1713
1714 2005-02-04  Havoc Pennington  <hp@redhat.com>
1715
1716         * glib/dbus-gproxy.c (dbus_g_proxy_disconnect_signal): use
1717         g_quark_try_string() so it actually can return 0
1718         (dbus_g_proxy_connect_signal): ditto
1719
1720 2005-02-04  Havoc Pennington  <hp@redhat.com>
1721
1722         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): fix a
1723         bogus warning
1724         (tristring_from_message): assert cleanly on null path/interface
1725         (should not be possible though I decided later)
1726         (dbus_g_proxy_dispose): move proxy manager unregistration here
1727         (DBUS_G_PROXY_DESTROYED): add this macro, and use it in a bunch of
1728         g_return_if_fail() checks
1729
1730 2005-02-04  Havoc Pennington  <hp@redhat.com>
1731
1732         * doc/Makefile.am (EXTRA_DIST): add DTDs to makefile
1733
1734         * doc/introspect.dtd: add introspect.dtd from David A. Wheeler
1735         (with some minor changes)
1736
1737         * doc/dbus-specification.xml: add deprecated attribute to
1738         introspection format
1739
1740 2005-01-31  Havoc Pennington  <hp@redhat.com>
1741
1742         * glib/dbus-gproxy.c: rewrite how signals work again, this time I
1743         think it's sort of right
1744
1745 2005-01-30  Havoc Pennington  <hp@redhat.com>
1746
1747         * tools/dbus-viewer.c: kind of half-ass hook up the option menu.
1748
1749 2005-01-30  Havoc Pennington  <hp@redhat.com>
1750
1751         * tools/dbus-names-model.c: dynamically watch NameOwnerChanged
1752
1753         * autogen.sh: change to autotools 1.9
1754
1755         * glib/dbus-gproxy.c: completely change how signals work
1756         (dbus_g_proxy_add_signal): new function to specify signature of a
1757         signal
1758         (dbus_g_proxy_emit_received): marshal the dbus message to GValues,
1759         and g_warning if the incoming message has the wrong signature.
1760
1761 2005-01-30  Havoc Pennington  <hp@redhat.com>
1762
1763         * tools/dbus-names-model.c (have_names_notify): fix this
1764
1765         * dbus/dbus-message.c (_dbus_message_iter_get_args_valist): clean
1766         up the string array handling a bit 
1767
1768 2005-01-30  Havoc Pennington  <hp@redhat.com>
1769
1770         * glib/dbus-glib.c (dbus_g_pending_call_set_notify): new function
1771         (dbus_g_pending_call_cancel): new function
1772
1773         * dbus/dbus-glib.h: move GType decls for connection/message here;
1774         * dbus/dbus-glib.c: move all the g_type and ref/unref stuff in
1775         here, just kind of rationalizing how we handle all that
1776
1777         * tools/dbus-names-model.c: new file for a tree model listing the
1778         services on a bus
1779
1780         * tools/dbus-tree-view.c (model_new): use proper typing on the
1781         model rows
1782
1783 2005-01-30  Havoc Pennington  <hp@redhat.com>
1784
1785         * glib/dbus-gmain.c: add a custom GSource back that just checks
1786         whether the message queue has anything in it; otherwise, there are 
1787         cases where we won't see messages in the queue since there was no 
1788         IO visible to the glib main loop
1789
1790         * dbus/dbus-connection-internal.h (_DBUS_DEFAULT_TIMEOUT_VALUE):
1791         increase default message timeout to 25 seconds
1792
1793 2005-01-30  Havoc Pennington  <hp@redhat.com>
1794
1795         * test/glib/test-profile.c (no_bus_stop_server): remove the
1796         warning about the g_warning that I just fixed
1797
1798         * glib/dbus-gmain.c: rewrite the main loop stuff to avoid the
1799         custom source, seems to be a lot easier to understand and work
1800         better.
1801
1802 2005-01-30  Havoc Pennington  <hp@redhat.com>
1803
1804         I think this main loop thing is conceptually broken, but here are 
1805         some band aids. I'll maybe rewrite it in a minute.
1806         
1807         * glib/dbus-gmain.c (add_timeout): timeout stuff doesn't use the
1808         custom GSource, so don't pass it in; confusing
1809         (gsource_server_finalize, gsource_connection_finalize): add
1810         finalize handlers that remove all the watches.  
1811
1812 2005-01-30  Havoc Pennington  <hp@redhat.com>
1813
1814         * glib/dbus-gobject.c (introspect_properties): fix the XML
1815         generated
1816
1817         * dbus/dbus-message.c (dbus_message_unref): add an in_cache flag
1818         which effectively detects the use of freed messages
1819
1820         * glib/dbus-gobject.c (handle_introspect): modify and return the
1821         reply message instead of the incoming message
1822
1823         * dbus/dbus-object-tree.c (handle_default_introspect_unlocked):
1824         gee, maybe it should SEND THE XML instead of just making a string
1825         and freeing it again ;-)
1826
1827         * tools/dbus-print-message.c (print_message): improve printing of
1828         messages
1829
1830         * configure.in: add debug-glib.service to the output
1831
1832 2005-01-30  Havoc Pennington  <hp@redhat.com>
1833
1834         dbus-viewer introspected and displayed the bus driver
1835         
1836         * dbus/dbus-object-tree.c 
1837         (object_tree_test_iteration): add tests for a handler registered on "/"
1838
1839         * dbus/dbus-object-tree.c
1840         (_dbus_decompose_path): fix to handle path "/" properly
1841         (run_decompose_tests): add tests for path decomposition
1842         
1843         * glib/dbus-gutils.c (_dbus_gutils_split_path): fix to handle "/"
1844         properly
1845
1846         * glib/dbus-gobject.c (handle_introspect): fix quotes
1847
1848         * test/glib/run-test.sh: support launching the bus, then running
1849         dbus-viewer
1850
1851         * test/glib/test-service-glib.c (main): put in a trivial gobject
1852         subclass and register it on the connection
1853
1854         * bus/driver.c (bus_driver_handle_introspect): implement
1855         introspection of the bus driver service
1856
1857         * dbus/dbus-protocol.h: add #defines for the XML namespace,
1858         identifiers, doctype decl
1859
1860         * bus/driver.c (bus_driver_handle_get_service_owner): handle
1861         attempts to get owner of DBUS_SERVICE_ORG_FREEDESKTOP_DBUS by 
1862         returning the service unchanged.
1863         (bus_driver_handle_message): remove old check for reply_serial in
1864         method calls, now the message type deals with that
1865         (bus_driver_handle_message): handle NULL interface
1866
1867         * glib/dbus-gproxy.c (dbus_g_proxy_get_bus_name): new function
1868
1869         * glib/dbus-gloader-expat.c (description_load_from_string): allow
1870         -1 for len
1871
1872         * tools/dbus-viewer.c: add support for introspecting a service on
1873         a bus
1874
1875         * glib/dbus-gproxy.c (dbus_g_pending_call_ref): add
1876         (dbus_g_pending_call_unref): add
1877
1878 2005-01-29  Havoc Pennington  <hp@redhat.com>
1879
1880         * tools/dbus-tree-view.c: add support for displaying properties.
1881         (run dbus-viewer with an introspect xml file as arg, then resize
1882         the window so the tree elements show up, not sure what that is)
1883
1884         * glib/dbus-gobject.c (handle_introspect): return
1885         org.freedesktop.Properties and org.freedesktop.Introspectable
1886         interfaces when we are introspected.
1887
1888         * doc/dbus-specification.xml: allow empty interface name when 
1889         Get/Set a property
1890
1891 2005-01-29  Havoc Pennington  <hp@redhat.com>
1892
1893         * glib/Makefile.am: rename dbus-glib-tool to dbus-binding-tool;
1894         though it uses glib, it could be extended for any binding in
1895         principle
1896
1897         * glib/dbus-gobject.c (gobject_message_function): change to the
1898         new way properties work
1899
1900         * dbus/dbus-protocol.h: add the new interfaces
1901
1902         * doc/dbus-specification.xml: document the introspection format,
1903         Introspectable interface, and add an org.freedesktop.Properties
1904         interface.
1905
1906         * glib/dbus-gparser.c: add support for a <property> element
1907
1908         * glib/dbus-gidl.c: add PropertyInfo
1909
1910         * glib/dbus-gobject.c (handle_introspect): put the outermost
1911         <node> outside the signal and property descriptions.
1912         (introspect_properties): export properties as <property> rather
1913         than as method calls
1914
1915 2005-01-28  Havoc Pennington  <hp@redhat.com>
1916
1917         * doc/TODO, doc/dbus-specification.xml: spec and TODO tweaks
1918         related to authentication protocol
1919
1920 2005-01-28  John (J5) Palmieri  <johnp@redhat.com>
1921
1922         * python/dbus_bindings.pyx.in: Updated to handle new D-BUS type system
1923                 - BUS_ACTIVATION -> BUS_STARTER
1924                 - DBUS_BUS_ACTIVATION -> DBUS_BUS_STARTER
1925                 - class MessageIter (__init__): Added recursion checking 
1926                 so we throw a nice error instead of just disconnecting from the
1927                 bus.
1928                 (get): Added arg_type parameter for recursion.
1929                 Removed the nil type
1930                 Added signiture type placeholder (not implemented)
1931                 Added struct type placeholder (not implemented)
1932                 Added varient type placeholder (not implemented)
1933                 Commented out dict type for now     
1934                 (get_element_type): renamed from get_array_type
1935                 (get_*): changed to use the dbus_message_iter_get_basic API
1936                 (get_*_array): removed in favor of recursive get_array method
1937                 (get_array): new recursive method which calls get to marshal
1938                 the elements of the array
1939                 (value_to_dbus_sig): New method returns the corrasponding
1940                 dbus signiture to a python value
1941                 (append): Comment out dict handling for now
1942                 Handle lists with the new recursive API
1943                 Comment out None handling for now
1944                 (append_nil): removed
1945                 (append_*): changed to use dbus_message_iter_append_basic API
1946                 (append_*_array): removed in favor of recursive append_array 
1947                 method
1948                 (__str__): Make it easier to print out recursive iterators
1949                 for debugging
1950                 - class Message (__str__): moved type inspection to the
1951                 MessageIter class' __str__ method
1952                 (get_iter): Added an append parameter wich defaults to False
1953                 If True use the new API's to create an append iterator
1954
1955         * python/dbus.py: Update to use new bindings API
1956                 - TYPE_ACTIVATION -> TYPE_STARTER
1957                 - class Bus (_get_match_rule): GetServiceOwner -> GetNameOwner
1958                 - class ActivationBus -> class StarterBus
1959                 - class RemoteObject (__call__): get an append iterator
1960                 - (_dispatch_dbus_method_call): get an append iterator
1961                 - class Object (emit_signal): get an append iterator
1962
1963         * python/examples/: Fixed up the examples to work with the new API
1964                 
1965 2005-01-28  Joe Shaw  <joeshaw@novell.com>
1966
1967         * configure.in: Bump version up to 0.30.
1968
1969         * HACKING: Add a release item to bump the version number up after 
1970         a release.
1971
1972 2005-01-28  Havoc Pennington  <hp@redhat.com>
1973
1974         * doc/dbus-specification.xml: update to describe 16-bit types and
1975         dict entries
1976
1977         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint16): fix broken
1978         assertion
1979
1980         * dbus/dbus-protocol.h (DBUS_TYPE_DICT_ENTRY): add DICT_ENTRY as a
1981         type
1982
1983         * dbus/dbus-marshal-recursive.c: implement
1984
1985 2005-01-27  Havoc Pennington  <hp@redhat.com>
1986
1987         * dbus/dbus-arch-deps.h.in: add 16/32-bit types
1988
1989         * configure.in: find the right type for 16 and 32 bit ints as well
1990         as 64
1991
1992         * dbus/dbus-protocol.h (DBUS_TYPE_INT16, DBUS_TYPE_UINT16): add
1993         the 16-bit types so people don't have to stuff them in 32-bit or
1994         byte arrays.
1995
1996 2005-01-27  Havoc Pennington  <hp@redhat.com>
1997
1998         * dbus/dbus-message.c: byteswap the message if you init an
1999         iterator to read/write from it
2000         
2001         * dbus/dbus-marshal-byteswap.c: new file implementing 
2002         _dbus_marshal_byteswap()
2003
2004         * dbus/dbus-marshal-basic.c: add _dbus_swap_array()
2005
2006 2005-01-26  Havoc Pennington  <hp@redhat.com>
2007         
2008         * dbus/dbus-marshal-validate-util.c: break this out (and fix
2009         build, apparently - nobody noticed?)
2010         
2011 2005-01-26  Havoc Pennington  <hp@redhat.com>
2012
2013         * dbus/dbus-marshal-recursive.h: remove todo comment
2014
2015 2005-01-25  Joe Shaw  <joeshaw@novell.com>
2016
2017         * Land the mono binding changes to conform to the new APIs.
2018
2019         * mono/Makefile.am: Remove Custom.cs, DBusType/Custom.cs,
2020         DBusType/Dict.cs, and DBusType/Nil.cs from the build.
2021
2022         * mono/Arguments.cs (GetCodeAsString): Added.  Returns the dbus
2023         type code as a string.
2024         (InitAppending): Rename dbus_message_append_iter_init() to
2025         dbus_message_iter_init_append().
2026
2027         * mono/BusDriver.cs: Rename ServiceEventHandler to
2028         NameOwnerChangedHandler.  Rename GetServiceOwner to GetOwner.
2029         Rename ServiceOwnerChanged to NameOwnerChanged.
2030
2031         * mono/Connection.cs: Rename BaseService to UniqueName, and the
2032         underlying C call.
2033
2034         * mono/Custom.cs: Removed.  The CUSTOM type has been removed.
2035
2036         * mono/Service.cs: Rename Exists to HasOwner, internally rename
2037         dbus_bus_acquire_service() to dbus_bus_request_name().
2038
2039         * mono/DBusType/Array.cs (ctor): Use Type.GetElementType() instead
2040         of Type.UnderlyingSystemType to get the correct element type for
2041         the array.
2042         (ctor): Update code for new APIs: use dbus_message_iter_recurse(),
2043         dbus_message_get_{element|arg}_type() instead of
2044         dbus_message_iter_init_array_iterator().
2045         (Append): Replace dbus_message_iter_append_array() with
2046         dbus_message_iter_open_container() and
2047         dbus_message_iter_close_container().
2048
2049         * mono/DBusType/Custom.cs, mono/DBusType/Nil.cs: Removed.  These
2050         types have been removed.
2051         
2052         * mono/DBusType/*.cs: Replace calls of
2053         dbus_message_iter_get_[type]() to dbus_message_iter_get_basic(),
2054         but specify the type in the DllImport extern declaration.  Ditto
2055         for dbus_message_iter_append_[type]() ->
2056         dbus_message_iter_append_basic().
2057
2058         * mono/example/BusListener.cs: Update for ServiceEventHandler ->
2059         NameOwnerChangedHandler.
2060
2061 2005-01-25  John (J5) Palmieri  <johnp@redhat.com>
2062
2063         * python/dbus_bindings.pyx.in: Rename of methods and bindings
2064                 - get_base_service -> get_unique_name
2065                 - bus_get_base_service -> bus_get_unique_name
2066                 - dbus_bus_get_base_service -> dbus_bus_get_unique_name
2067                 - ACTIVATION_REPLY_ACTIVATED -> DBUS_START_REPLY_SUCCESS 
2068                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> DBUS_START_REPLY_ALREADY_RUNNING
2069                 - bus_activate_service -> bus_start_service_by_name
2070                 - dbus_bus_activate_service -> dbus_bus_start_service_by_name
2071                 - bus_acquire_service -> bus_request_name
2072                 - dbus_bus_acquire_service -> dbus_bus_request_name
2073                 - bus_service_exists -> bus_name_has_owner
2074                 - dbus_bus_service_exists -> dbus_bus_name_has_owner
2075
2076         * python/dbus.py: Rename of methods
2077                 - activate_service -> start_service_by_name
2078                 - bus_acquire_service -> bus_request_name
2079                 - ACTIVATION_REPLY_ACTIVATED -> START_REPLY_SUCCESS 
2080                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> START_REPLY_ALREADY_RUNNING
2081
2082         
2083 2005-01-24  Joe Shaw  <joeshaw@novell.com>
2084
2085         * dbus/dbus-connection.c (dbus_connection_dispatch): Print out the
2086         signature for the method that can't be found.
2087
2088         * dbus/dbus-message.c (dbus_message_iter_init): To check to see if
2089         the message has any arguments, we need to call
2090         _dbus_type_reader_get_current_type(), not
2091         _dbus_type_reader_has_next().
2092
2093 2005-01-24  Havoc Pennington  <hp@redhat.com>
2094
2095         * dbus/dbus-message-factory.c: more testing of message validation
2096
2097         * dbus/dbus-protocol.h (DBUS_MINIMUM_HEADER_SIZE): move to this
2098         header
2099
2100 2005-01-23  Havoc Pennington  <hp@redhat.com>
2101
2102         * dbus/dbus-message-factory.c, dbus/dbus-message-util.c: 
2103         get this all working, not many tests in the framework yet though
2104
2105 2005-01-22  Havoc Pennington  <hp@redhat.com>
2106
2107         * doc/dbus-faq.xml, doc/dbus-tutorial: add a FAQ and update
2108         tutorial, based on work from David Wheeler.
2109
2110 2005-01-21  Havoc Pennington  <hp@redhat.com>
2111
2112         * dbus/dbus-bus.c: add more return_if_fail checks
2113
2114         * dbus/dbus-message.c (load_message): have the "no validation"
2115         mode (have to edit the code to toggle the mode for now though)
2116
2117         * dbus/dbus-marshal-header.c (_dbus_header_load): have a mode that
2118         skips all validation; I want to use this at least for benchmark
2119         baseline, I'm not sure if it should be a publicly-available switch.
2120
2121 2005-01-21  Havoc Pennington  <hp@redhat.com>
2122
2123         * glib/dbus-gmain.c: don't put the GLib bindings in the same
2124         toplevel doxygen group as the low-level API stuff
2125
2126         * dbus/dbus.h: note that libdbus is the low-level API
2127
2128 2005-01-20  Havoc Pennington  <hp@redhat.com>
2129
2130         * update-dbus-docs.sh: script to update docs on the web site, only
2131         works for me though. neener.
2132
2133 2005-01-20  Havoc Pennington  <hp@redhat.com>
2134
2135         * dbus/dbus-sysdeps.c (_dbus_poll): amazingly, trying to compile
2136         code can reveal bugs in it
2137
2138 2005-01-20  Havoc Pennington  <hp@redhat.com>
2139
2140         * dbus/dbus-sysdeps.c (_dbus_poll): fix several bugs in the
2141         select() version, patches from Tor Lillqvist
2142
2143 2005-01-20  Havoc Pennington  <hp@redhat.com>
2144
2145         * doc/dbus-tutorial.xml: replace > with &gt;
2146
2147         * bus/services.c (bus_registry_acquire_service): validate the name
2148         and return a better error if it's no good.
2149
2150         * doc/dbus-specification.xml: note NO_AUTO_START change
2151
2152         * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change
2153         from AUTO_START, we're toggling the default
2154
2155         * bus/dispatch.c: adapt the tests to change of auto-start default
2156
2157 2005-01-18  Havoc Pennington  <hp@redhat.com>
2158
2159         * rename dbus-daemon-1 to dbus-daemon throughout
2160
2161 2005-01-18  Havoc Pennington  <hp@redhat.com>
2162
2163         * Throughout, grand renaming to strip out the use of "service",
2164         just say "name" instead (or "bus name" when ambiguous).  Did not
2165         change the internal code of the message bus itself, only the
2166         programmer-facing API and messages.
2167         
2168         * doc/dbus-specification.xml: further update the message bus section
2169         
2170         * bus/config-parser.c (all_are_equiv): fix bug using freed string
2171         in error case
2172
2173 2005-01-17  Havoc Pennington  <hp@redhat.com>
2174
2175         * dbus/dbus-types.h: remove 16-bit types since we don't use them
2176         ever
2177
2178         * dbus/dbus-marshal-validate.c (_dbus_validate_path): disallow any
2179         "invalid name character" not only non-ASCII
2180
2181         * doc/dbus-specification.xml: further update spec, message bus 
2182         parts are still out-of-date but the marshaling etc. stuff is now
2183         accurate-ish
2184
2185 2005-01-17  Havoc Pennington  <hp@redhat.com>
2186
2187         * doc/dbus-specification.xml: partially update spec
2188
2189 2005-01-17  Havoc Pennington  <hp@redhat.com>
2190
2191         * Throughout, align variant bodies according to the contained
2192         type, rather than always to 8. Should save a fair bit of space in
2193         message headers.
2194         
2195         * dbus/dbus-marshal-validate.c (_dbus_validate_body_with_reason):
2196         fix handling of case where p == end
2197
2198         * doc/TODO: remove the dbus_bool_t item and variant alignment items
2199
2200 2005-01-17  Havoc Pennington  <hp@redhat.com>
2201
2202         * dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits
2203
2204         * Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
2205         of an 8-bit type. Now dbus_bool_t is the type to use whenever you 
2206         are marshaling/unmarshaling a boolean.
2207
2208 2005-01-16  Havoc Pennington  <hp@redhat.com>
2209
2210         This is about it on what can be disabled/deleted from libdbus
2211         easily, back below 150K anyhow. Deeper cuts are more work than 
2212         just turning the code off as I've done here.
2213         
2214         * dbus/dbus-marshal-basic.c (_dbus_pack_int32): we don't need the
2215         signed int convenience funcs
2216
2217         * dbus/dbus-internals.c (_dbus_verbose_real): omit when not in
2218         verbose mode
2219
2220         * dbus/dbus-string-util.c, dbus/dbus-string.c: more breaking
2221         things out of libdbus
2222
2223         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-util.c: same
2224         
2225         * dbus/dbus-hash.c: purge the TWO_STRINGS crap (well, make it
2226         tests-enabled-only, though it should probably be deleted)
2227
2228         * dbus/dbus-message-util.c: same stuff
2229
2230         * dbus/dbus-auth-util.c: same stuff
2231
2232 2005-01-16  Havoc Pennington  <hp@redhat.com>
2233
2234         * dbus/dbus-userdb-util.c: split out part of dbus-userdb.c
2235
2236         * dbus/dbus-sysdeps.c (_dbus_uid_from_string): move here to pave
2237         way for stripping down dbus-userdb.c stuff included in libdbus.
2238         Rename _dbus_parse_uid for consistency.
2239
2240 2005-01-16  Havoc Pennington  <hp@redhat.com>
2241
2242         * dbus/dbus-internals.c (_dbus_real_assert): print the function
2243         name the assertion failed in
2244
2245         * dbus/dbus-internals.h (_dbus_return_if_fail) 
2246         (_dbus_return_val_if_fail): assert that the name of the function
2247         containing the check doesn't start with '_', since we only want to 
2248         use checks on public functions
2249         
2250         * dbus/dbus-connection.c (_dbus_connection_ref_unlocked): change
2251         checks to assertions
2252
2253         * dbus/dbus-marshal-header.c (_dbus_header_set_field_basic):
2254         change checks to asserts for private function
2255
2256         * dbus/dbus-message.c (_dbus_message_set_serial): checks
2257         to asserts for private function
2258
2259         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): remove
2260         broken assertion that was breaking make check
2261         (_dbus_type_reader_array_is_empty): remove this rather than fix
2262         it, was only used in assertions
2263
2264 2005-01-16  Havoc Pennington  <hp@redhat.com>
2265
2266         * test/unused-code-gc.py: hacky script to find code that's used
2267         only by the bus (not libdbus) or used only by tests or not used at
2268         all. It has some false alarms, but looks like we can clean up a
2269         lot of size from libdbus.
2270
2271         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-utils.c,
2272         dbus/Makefile.am: initially move 10K of binary size out of libdbus
2273         
2274 2005-01-16  Havoc Pennington  <hp@redhat.com>
2275
2276         * Add and fix docs according to Doxygen warnings throughout
2277         source.
2278         
2279         * dbus/dbus-marshal-recursive.c
2280         (_dbus_type_reader_array_is_empty): change this to just call
2281         array_reader_get_array_len() and make it static
2282
2283         * dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
2284         from get_array_type
2285         (dbus_message_iter_init_append): rename from append_iter_init
2286
2287         * dbus/dbus-marshal-recursive.c
2288         (_dbus_type_reader_get_element_type): rename from
2289         _dbus_type_reader_get_array_type
2290
2291 2005-01-15  Havoc Pennington  <hp@redhat.com>
2292
2293         * test/glib/test-profile.c (with_bus_server_filter): fix crash
2294
2295         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint32): inline as macro
2296         when DBUS_DISABLE_ASSERT
2297         (_dbus_marshal_set_basic): be sure we align for the string length
2298
2299         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): make
2300         this look faster
2301
2302         * dbus/dbus-string.c (_dbus_string_get_const_data_len): add an
2303         inline macro version
2304         (_dbus_string_set_byte): provide inline macro version
2305
2306 2005-01-15  Havoc Pennington  <hp@redhat.com>
2307
2308         * Land the new message args API and type system.
2309
2310         This patch is huge, but the public API change is not 
2311         really large. The set of D-BUS types has changed somewhat, 
2312         and the arg "getters" are more geared toward language bindings;
2313         they don't make a copy, etc.
2314
2315         There are also some known issues. See these emails for details
2316         on this huge patch:
2317         http://lists.freedesktop.org/archives/dbus/2004-December/001836.html
2318         http://lists.freedesktop.org/archives/dbus/2005-January/001922.html
2319         
2320         * dbus/dbus-marshal-*: all the new stuff
2321
2322         * dbus/dbus-message.c: basically rewritten
2323
2324         * dbus/dbus-memory.c (check_guards): with "guards" enabled, init
2325         freed blocks to be all non-nul bytes so using freed memory is less
2326         likely to work right
2327
2328         * dbus/dbus-internals.c (_dbus_test_oom_handling): add
2329         DBUS_FAIL_MALLOC=N environment variable, so you can do
2330         DBUS_FAIL_MALLOC=0 to skip the out-of-memory checking, or
2331         DBUS_FAIL_MALLOC=10 to make it really, really, really slow and
2332         thorough.
2333
2334         * qt/message.cpp: port to the new message args API
2335         (operator<<): use str.utf8() rather than str.unicode()
2336         (pretty sure this is right from the Qt docs?)
2337
2338         * glib/dbus-gvalue.c: port to the new message args API
2339
2340         * bus/dispatch.c, bus/driver.c: port to the new message args API
2341
2342         * dbus/dbus-string.c (_dbus_string_init_const_len): initialize the
2343         "locked" flag to TRUE and align_offset to 0; I guess we never
2344         looked at these anyhow, but seems cleaner.
2345
2346         * dbus/dbus-string.h (_DBUS_STRING_ALLOCATION_PADDING):
2347         move allocation padding macro to this header; use it to implement
2348         (_DBUS_STRING_STATIC): ability to declare a static string.
2349
2350         * dbus/dbus-message.c (_dbus_message_has_type_interface_member):
2351         change to return TRUE if the interface is not set.
2352
2353         * dbus/dbus-string.[hc]: move the D-BUS specific validation stuff
2354         to dbus-marshal-validate.[hc]
2355
2356         * dbus/dbus-marshal-basic.c (_dbus_type_to_string): move here from
2357         dbus-internals.c
2358
2359         * dbus/Makefile.am: cut over from dbus-marshal.[hc]
2360         to dbus-marshal-*.[hc]
2361
2362         * dbus/dbus-object-tree.c (_dbus_decompose_path): move this
2363         function here from dbus-marshal.c
2364
2365 2005-01-12  Joe Shaw  <joeshaw@novell.com>
2366
2367         * NEWS: Update for 0.23.
2368
2369         * configure.in: Release 0.23.
2370
2371 2005-01-12  Joe Shaw  <joeshaw@novell.com>
2372
2373         * mono/Makefile.am, mono/example/Makefile.am: Always build the 
2374         dbus DLL with --debug.  Clean up after the .mdb files this leaves
2375         behind.
2376
2377         * mono/doc/Makefile.am: Need to uninstall the docs on "make
2378         uninstall"
2379
2380         * mono/Arguments.cs (GetDBusTypeConstructor): If the type
2381         is an enum, get the enum's underlying type.  Another mono
2382         1.1.3 fix.
2383
2384 2005-01-11  Joe Shaw  <joeshaw@novell.com>
2385
2386         Patch from Sjoerd Simons <sjoerd@luon.net>
2387
2388         * mono/Makefile.am, mono/example/Makefile.am: Don't redefine
2389         DESTDIR.  It breaks stuff.
2390
2391 2005-01-11  Joe Shaw  <joeshaw@novell.com>
2392
2393         Patch from Tambet Ingo <tambet@ximian.com>
2394
2395         * mono/DBusType/Array.cs (Get): Get the underlying element type by
2396         calling type.GetElementType().  The code previously depended on
2397         broken Mono behavior, which was fixed in Mono 1.1.3.
2398
2399         * mono/DBusType/Dict.cs (constructor): Fix the parameters for
2400         Activator.CreateInstance() so that the class's constructor is
2401         called with the right parameters.
2402
2403 2005-01-11  Joe Shaw  <joeshaw@novell.com>
2404
2405         Patch from Timo Teräs <ext-timo.teras@nokia.com>
2406
2407         * dbus/dbus-connection.c
2408         (_dbus_connection_queue_received_message_link): Call
2409         _dbus_connection_remove_timeout() instead of the _locked()
2410         variant, since it's always called from
2411         _dbus_connection_handle_watch(), which handles the locking.
2412         Removed the _locked() variant since it's no longer used.
2413
2414 2005-01-03  Havoc Pennington  <hp@redhat.com>
2415
2416         * dbus/dbus-internals.h: I'm an idiot, _dbus_assert certainly can
2417         return
2418         
2419 2004-12-26  Havoc Pennington  <hp@redhat.com>
2420
2421         * dbus/dbus-internals.h: add _DBUS_GNUC_NORETURN to _dbus_assert
2422
2423 2005-01-03  Havoc Pennington  <hp@redhat.com>
2424
2425         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): fix using == on
2426         floating point
2427
2428         * dbus/dbus-string.c (_dbus_string_insert_alignment): new function
2429
2430 2005-01-02  Havoc Pennington  <hp@redhat.com>
2431
2432         * dbus/dbus-internals.h (_DBUS_ALIGN_OFFSET): new macro
2433
2434 2005-01-01  Havoc Pennington  <hp@redhat.com>
2435
2436         * configure.in: add -Wfloat-equal
2437
2438 2005-01-01  Havoc Pennington  <hp@redhat.com>
2439
2440         * dbus/dbus-sysdeps.h: add _DBUS_DOUBLES_BITWISE_EQUAL macro, 
2441         for a variety of reasons '==' doesn't do this.
2442
2443 2004-12-31  Havoc Pennington  <hp@redhat.com>
2444
2445         * dbus/dbus-string.c (_dbus_string_equal_substrings): new function
2446         I keep wishing I had
2447
2448 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
2449
2450         * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED
2451
2452 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
2453
2454         * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
2455         and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
2456         dbus-protocol.h.  Because they are defines and not enums they are not
2457         autogenerated.
2458
2459 2004-12-26  John (J5) Palmieri  <johnp@redhat.com>
2460
2461         * python/dbus_bindings.pyx.in (bus_activate_service): Bind
2462         dbus_bus_activate_service
2463
2464         * python/dbus.py (Bus.activate_service): activate a service on the
2465         bus.
2466
2467 2004-12-24  Havoc Pennington  <hp@redhat.com>
2468
2469         * test/decode-gcov.c: change to use .gcno and .gcda files, but the
2470         file format has also changed and I haven't adapted to that yet
2471         
2472         * Makefile.am: load .gcno files from latest gcc
2473
2474 2004-12-23  John (J5) Palmieri  <johnp@redhat.com>
2475         * Patch from Rob Taylor <robtaylor@fastmail.fm>
2476
2477         * python/dbus_bindings.pyx.in (bus_get_unix_user): New
2478         lowlevel binding
2479
2480         * python/dbus.py (get_unix_user): Added binding to 
2481         call dbus_bindings.bus_get_unix_user
2482
2483         * python/extract.py: Modified the proto_pat regex to
2484         handle unsigned long
2485
2486 2004-12-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
2487
2488         * dbus/make-dbus-glib-error-enum.sh: omit the function keyword for
2489         better POSIX compliance.
2490
2491 2004-12-19  Havoc Pennington  <hp@redhat.com>
2492
2493         * dbus/dbus-string.c (_dbus_string_insert_4_aligned) 
2494         (_dbus_string_insert_8_aligned): new functions
2495
2496         * dbus/dbus-string.c (_dbus_string_alloc_space): new function
2497
2498 2004-12-18  Havoc Pennington  <hp@redhat.com>
2499
2500         * dbus/dbus-string.c (_dbus_string_validate_ascii): use ISASCII
2501         macro
2502
2503         * dbus/dbus-message.c: fix a comment, and add a still-unused
2504         not-implemented function
2505
2506         * dbus/dbus-marshal.h: fix comment
2507
2508         * dbus/dbus-internals.h (_DBUS_ISASCII): new macro
2509
2510 2004-12-17  Joe Shaw  <joeshaw@novell.com>
2511
2512         * mono/DBusType/Byte.cs, mono/DBusType/Int32.cs,
2513         mono/DBusType/Int64.cs, mono/DBusType/UInt32.cs,
2514         mono/DBusType/UInt64.cs: Use Enum.GetUnderlyingType() instead of
2515         Type.UnderlyingSystemType to get the actual system type
2516         underneath.  This code previously depended on the broken Mono
2517         behavior, which was fixed in 1.1.3.
2518
2519 2004-11-27  Havoc Pennington  <hp@redhat.com>
2520
2521         * dbus/dbus-string.h (_dbus_string_get_byte): inline when asserts
2522         are disabled
2523         (_dbus_string_get_const_data): inline when asserts are disabled
2524
2525         * dbus/dbus-message.c: record the _dbus_current_generation of
2526         creation so we can complain if dbus_shutdown() is used improperly.
2527         Do this only if checks are enabled.
2528
2529         * dbus/dbus-connection.c: ditto
2530         
2531 2004-11-26  Havoc Pennington  <hp@redhat.com>
2532
2533         * test/glib/test-profile.c: add with_bus mode to profile echoes
2534         that go through the bus.
2535
2536         * test/glib/run-test.sh: add ability to run test-profile
2537
2538         * bus/dbus-daemon-1.1.in: fix to say that SIGHUP causes partial
2539         config file reload.
2540
2541 2004-11-26  Havoc Pennington  <hp@redhat.com>
2542
2543         * test/glib/test-profile.c: clean up how the fake_malloc_overhead
2544         thing was implemented
2545
2546 2004-11-26  Havoc Pennington  <hp@redhat.com>
2547
2548         * test/glib/test-profile.c: tweak a bit, add support for some
2549         made-up minimal malloc overhead with plain sockets, since in 
2550         real life some sort of buffers are unavoidable thus we could 
2551         count them in the theoretical best case
2552
2553 2004-11-26  Havoc Pennington  <hp@redhat.com>
2554
2555         * dbus/dbus-message.c (dbus_message_cache_or_finalize): fix bug
2556         where I was trying to cache one too many messages
2557
2558 2004-11-26  Havoc Pennington  <hp@redhat.com>
2559
2560         * dbus/dbus-message.c: reimplement message cache as an array which 
2561         makes the cache about twice as fast and saves maybe 1.5% overall
2562
2563 2004-11-26  Havoc Pennington  <hp@redhat.com>
2564
2565         * dbus/dbus-threads.c (init_global_locks): forgot to put the
2566         message cache lock here
2567
2568 2004-11-26  Havoc Pennington  <hp@redhat.com>
2569
2570         * dbus/dbus-message.c (struct DBusMessage): put the locked bit and
2571         the "char byte_order" next to each other to save 4 bytes
2572         (dbus_message_new_empty_header): reduce preallocation, since the
2573         message cache should achieve a similar effect
2574         (dbus_message_cache_or_finalize, dbus_message_get_cached): add a
2575         message cache that keeps a few DBusMessage around in a pool,
2576         another 8% speedup or so.
2577
2578         * dbus/dbus-dataslot.c (_dbus_data_slot_list_clear): new function
2579
2580 2004-11-25  Havoc Pennington  <hp@redhat.com>
2581
2582         * dbus/dbus-transport-unix.c (unix_do_iteration): if we're going
2583         to write, without reading or blocking, try it before the poll()
2584         and skip the poll() if nothing remains to write. This is about a
2585         3% speedup in the echo client/server
2586
2587 2004-11-25  Havoc Pennington  <hp@redhat.com>
2588
2589         The primary change here is to always write() once before adding
2590         the write watch, which gives us about a 10% performance increase.
2591         
2592         * dbus/dbus-transport-unix.c: a number of modifications to cope
2593         with removing messages_pending
2594         (check_write_watch): properly handle
2595         DBUS_AUTH_STATE_WAITING_FOR_MEMORY; adapt to removal of
2596         messages_pending stuff
2597         (check_read_watch): properly handle WAITING_FOR_MEMORY and
2598         AUTHENTICATED cases
2599         (unix_handle_watch): after writing, see if the write watch can be
2600         removed
2601         (unix_do_iteration): assert that write_watch/read_watch are
2602         non-NULL rather than testing that they aren't, since they 
2603         aren't allowed to be NULL. check_write_watch() at the end so 
2604         we add the watch if we did not finish writing (e.g. got EAGAIN)
2605
2606         * dbus/dbus-transport-protected.h: remove messages_pending call,
2607         since it resulted in too much inefficient watch adding/removing; 
2608         instead we now require that the transport user does an iteration 
2609         after queueing outgoing messages, and after trying the first
2610         write() we add a write watch if we got EAGAIN or exceeded our 
2611         max bytes to write per iteration setting
2612
2613         * dbus/dbus-string.c (_dbus_string_validate_signature): add this
2614         function
2615
2616         * dbus/dbus-server-unix.c (unix_finalize): the socket name was
2617         freed and then accessed, valgrind flagged this bug, fix it
2618
2619         * dbus/dbus-message.c: fix several bugs where HEADER_FIELD_LAST was taken
2620         as the last valid field plus 1, where really it is equal to the
2621         last valid field. Corrects some message corruption issues.
2622
2623         * dbus/dbus-mainloop.c: verbosity changes
2624
2625         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): handle OOM
2626         instead of aborting in one of the test codepaths
2627
2628         * dbus/dbus-internals.c (_dbus_verbose_real): fix a bug that
2629         caused not printing the pid ever again if a verbose was missing
2630         the newline at the end
2631         (_dbus_header_field_to_string): add HEADER_FIELD_SIGNATURE
2632
2633         * dbus/dbus-connection.c: verbosity changes; 
2634         (dbus_connection_has_messages_to_send): new function
2635         (_dbus_connection_message_sent): no longer call transport->messages_pending
2636         (_dbus_connection_send_preallocated_unlocked): do one iteration to
2637         try to write() immediately, so we can avoid the write watch. This
2638         is the core purpose of this patchset
2639         (_dbus_connection_get_dispatch_status_unlocked): if disconnected,
2640         dump the outgoing message queue, so nobody will get confused
2641         trying to send them or thinking stuff is pending to be sent
2642
2643         * bus/test.c: verbosity changes
2644
2645         * bus/driver.c: verbosity/assertion changes
2646
2647         * bus/dispatch.c: a bunch of little tweaks to get it working again
2648         because this patchset changes when/where you need to block.
2649
2650 2004-11-23  Havoc Pennington  <hp@redhat.com>
2651
2652         * test/glib/test-profile.c: modify to accept a plain_sockets
2653         argument in which case it will bench plain sockets instead of
2654         libdbus, for comparison purposes.
2655
2656 2004-11-22  Havoc Pennington  <hp@redhat.com>
2657
2658         * test/glib/test-profile.c (N_CLIENT_THREADS): run multiple
2659         threads for more time, so sysprof can get a grip on it.
2660
2661         * dbus/dbus-string.c (_dbus_string_validate_utf8): remove
2662         pointless variable
2663
2664 2004-11-13  Havoc Pennington  <hp@redhat.com>
2665
2666         * test/glib/test-profile.c: fix this thing up a bit
2667
2668         * dbus/dbus-message.c (dbus_message_new_empty_header): increase
2669         preallocation sizes by a fair bit; not sure if this will be an
2670         overall performance win or not, but it does reduce reallocs.
2671
2672         * dbus/dbus-string.c (set_length, reallocate_for_length): ignore
2673         the test hack that forced constant realloc if asserts are
2674         disabled, so we can profile sanely. Sprinkle in some
2675         _DBUS_UNLIKELY() which are probably pointless, but before I
2676         noticed the real performance problem I put them in.
2677         (_dbus_string_validate_utf8): micro-optimize this thing a little
2678         bit, though callgrind says it didn't help; then special-case
2679         ascii, which did help a lot; then be sure we detect nul bytes as
2680         invalid, which is a bugfix.
2681         (align_length_then_lengthen): add some more _DBUS_UNLIKELY
2682         superstition; use memset to nul the padding instead of a manual
2683         loop.
2684         (_dbus_string_get_length): inline this as a
2685         macro; it showed up in the profile because it's used for loop
2686         tests and so forth
2687
2688 2004-11-10  Colin Walters  <walters@verbum.org>
2689
2690         * dbus/dbus-spawn.c (check_babysit_events): Handle EINTR,
2691         for extra paranoia.
2692
2693 2004-11-09  Colin Walters  <walters@verbum.org>
2694
2695         * dbus/dbus-string.c (_dbus_string_get_length): New
2696         function, writes DBusString to C buffer.
2697
2698         * dbus/dbus-string.h: Prototype it.
2699
2700         * dbus/dbus-message.c (dbus_message_type_to_string): New
2701         function, converts message type into C string.
2702
2703         * dbus/dbus-message.h: Prototype it.
2704
2705         * bus/selinux.c (bus_selinux_check): Take source pid,
2706         target pid, and audit data.  Pass audit data to
2707         avc_has_perm.
2708         (log_audit_callback): New function, appends extra
2709         audit information.
2710         (bus_selinux_allows_acquire_service): Also take
2711         service name, add it to audit data.
2712         (bus_selinux_allows_send): Also take message
2713         type, interface, method member, error name,
2714         and destination, and add them to audit data.
2715         (log_cb): Initialize func_audit.
2716         
2717         * bus/selinux.h (bus_selinux_allows_acquire_service)
2718         (bus_selinux_allows_send): Update prototypes 
2719
2720         * bus/services.c (bus_registry_acquire_service): Pass
2721         service name to bus_selinux_allows_acquire_service.
2722
2723         * bus/bus.c (bus_context_check_security_policy): Pass
2724         additional audit data.  Move assignment of dest
2725         to its own line.
2726
2727 2004-11-07  Colin Walters  <walters@verbum.org>
2728
2729         * dbus/dbus-transport-unix.c (do_authentication): Always
2730         initialize auth_completed.
2731         
2732 2004-11-07  Colin Walters  <walters@verbum.org>
2733
2734         * bus/bus.c (load_config): Break into three
2735         separate functions: process_config_first_time_only,
2736         process_config_every_time, and process_config_postinit.
2737         (process_config_every_time): Move call of
2738         bus_registry_set_service_context_table into
2739         process_config_postinit.
2740         (process_config_postinit): New function, does
2741         any processing that needs to happen late
2742         in initialization (and also on reload).
2743         (bus_context_new): Instead of calling load_config,
2744         open config parser here and call process_config_first_time_only
2745         and process_config_every_time directly.  Later, after
2746         we have forked but before changing UID,
2747         invoke bus_selinux_full_init, and then call
2748         process_config_postinit.
2749         (bus_context_reload_config): As in bus_context_new,
2750         load parse file inside here, and call process_config_every_time
2751         and process_config_postinit.
2752
2753         * bus/services.h, bus/services.c
2754         (bus_registry_set_service_context_table): Rename
2755         from bus_registry_set_sid_table.  Take string hash from config
2756         parser, and convert them here into SIDs.
2757
2758         * bus/config-parser.c (struct BusConfigParser): Have
2759         config parser only store a mapping of service->context
2760         string.
2761         (merge_service_context_hash): New function.
2762         (merge_included): Merge context string hashes instead
2763         of using bus_selinux_id_table_union.
2764         (bus_config_parser_new): Don't use bus_selinux_id_table_new;
2765         simply create a new string hash.
2766         (bus_config_parser_unref): Unref it.
2767         (start_selinux_child): Simply insert strings into hash,
2768         don't call bus_selinux_id_table_copy_over.
2769
2770         * bus/selinux.h, bus/selinux.c (bus_selinux_id_table_union)
2771         (bus_selinux_id_table_copy_over): Delete.
2772
2773 2004-11-03  Colin Walters  <walters@verbum.org>
2774
2775         * bus/selinux.c (bus_selinux_pre_init): Kill some unused
2776         variables.
2777         
2778 2004-11-03  Colin Walters  <walters@verbum.org>
2779
2780         * bus/test-main.c (test_pre_hook): Fix test logic,
2781         thanks Joerg Barfurth <Joerg.Barfurth@Sun.COM>.
2782
2783 2004-11-02  Colin Walters  <walters@redhat.com>
2784
2785         * bus/selinux.c (bus_selinux_init): Split into two functions,
2786         bus_selinux_pre_init and bus_selinux_post_init.
2787         (bus_selinux_pre_init): Just determine whether SELinux is
2788         enabled.
2789         (bus_selinux_post_init): Do everything else.
2790
2791         * bus/main.c (main): Call bus_selinux_pre_init before parsing
2792         config file, and bus_selinux_post_init after.  This ensures that
2793         we don't lose the policyreload notification thread that
2794         bus_selinux_init created before forking previously.
2795         
2796         * bus/test-main.c (test_pre_hook): Update for split.
2797
2798 2004-10-31  Owen Fraser-Green  <owen@discobabe.net>
2799
2800         Patch from Johan Fischer <linux@fischaz.com>
2801         
2802         * mono/doc/Makefile.am (install-data-local): Added directory
2803         install for DESTDIR
2804
2805 2004-10-29  Colin Walters  <walters@redhat.com>
2806
2807         * dbus/dbus-sysdeps.h (_dbus_become_daemon): Also take
2808         parameter for fd to write pid to.       
2809
2810         * dbus/dbus-sysdeps.c (_dbus_become_daemon): Implement it.
2811         
2812         * bus/bus.c (bus_context_new): Pass print_pid_fd
2813         to _dbus_become_daemon (bug #1720)
2814
2815 2004-10-29  Colin Walters  <walters@redhat.com>
2816
2817         Patch from Ed Catmur <ed@catmur.co.uk>
2818
2819         * mono/doc/Makefile.am (install-data-local): Handle
2820         DESTDIR.
2821
2822 2004-10-29  Colin Walters  <walters@redhat.com>
2823
2824         * bus/.cvsignore, qt/.cvsignore: Update.
2825
2826 2004-10-29  Colin Walters  <walters@redhat.com>
2827
2828         Patch from Kristof Vansant <de_lupus@pandora.be>
2829
2830         * configure.in: Detect Slackware.
2831         * bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
2832         * bus/rc.messagebus.in: New file.
2833
2834 2004-10-29  Colin Walters  <walters@redhat.com>
2835
2836         * tools/dbus-monitor.c (filter_func): Return
2837         DBUS_HANDLER_RESULT_HANDLED in filter function
2838         for now.  See:
2839         http://freedesktop.org/pipermail/dbus/2004-August/001433.html
2840
2841 2004-10-29  Colin Walters  <walters@redhat.com>
2842
2843         Patch from Matthew Rickard <mjricka@epoch.ncsc.mil>
2844
2845         * bus/services.c (bus_registry_acquire_service): 
2846         Correctly retrieve service name from DBusString
2847         for printing.
2848
2849 2004-10-29  Colin Walters  <walters@redhat.com>
2850
2851         * dbus/dbus-glib.h: Update documentation to not
2852         refer to internal APIs.
2853
2854 2004-10-27  Joe Shaw  <joeshaw@novell.com>
2855
2856         * mono/Arguments.cs (GetDBusTypeConstructor):
2857         type.UnderlyingSystemType will return "System.Byte" if you do it
2858         on "byte[]", which is not what we want.  So check the type.IsArray
2859         property and use System.Array instead.
2860
2861 2004-10-25  John (J5) Palmieri  <johnp@redhat.com>
2862
2863         * dbus/dbus-sysdeps.c (fill_user_info): On errors do not free
2864         the DBusUserInfo structure since this is passed into the function.
2865         This would cause a double free when the function that allocated
2866         the structure would try to free it when an error occured.
2867
2868         * (bus/session.conf.in, bus/Makefile.am, dbus/configure.in):
2869         use /usr/share/dbus-1/services instead of /usr/lib/dbus-1.0/services
2870         for service activation to avoid 32bit/64bit parallel install issues
2871
2872 2004-10-21  Colin Walters  <walters@verbum.org>
2873
2874         * AUTHORS: Fix my email address, the @gnu.org one
2875         has been bouncing for some time.  Also add J5.
2876         
2877 2004-10-21  Colin Walters  <walters@verbum.org>
2878
2879         * dbus/dbus-transport-unix.c (do_authentication): Return
2880         authentication status to callers.
2881         (unix_handle_watch): If we completed authentication this round,
2882         don't do another read.  Instead wait until the next iteration,
2883         after we've read any pending data in the auth buffer.
2884         (unix_do_iteration): Ditto.
2885         (unix_handle_watch): Updated for new do_authentication prototype.
2886
2887 2004-10-18  Colin Walters  <walters@verbum.org>
2888
2889         * bus/selinux.c (bus_selinux_enabled): Handle
2890         --disable-selinux case.
2891         
2892 2004-10-18  Colin Walters  <walters@verbum.org>
2893
2894         * bus/selinux.h: Add bus_selinux_enabled.
2895         
2896         * bus/selinux.c (bus_selinux_enabled): Implement it.
2897         
2898         * bus/config-parser.c (struct include): Add
2899         if_selinux_enabled member.
2900         (start_busconfig_child): Parse if_selinux_enabled
2901         attribute for include.
2902         (bus_config_parser_content): Handle it.
2903
2904         * bus/session.conf.in, bus/system.conf.in: Add
2905         inclusion of context mapping to default config files;
2906         conditional on SELinux being enabled.
2907         
2908         * doc/busconfig.dtd: Add to if_selinux_enabled to default DTD.
2909         
2910         * test/data/invalid-config-files/badselinux-1.conf, 
2911         test/data/invalid-config-files/badselinux-2.conf:
2912         Test files for bad syntax.
2913         
2914 2004-10-17  Colin Walters  <walters@verbum.org>
2915
2916         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug, check_guards)
2917         (dbus_malloc, dbus_malloc0, dbus_realloc): Fix up printf
2918         format specifier mismatches.
2919
2920 2004-10-07  Olivier Andrieu  <oliv__a@users.sourceforge.net>
2921
2922         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): fix an incorrect
2923         format string.
2924
2925         * glib/dbus-dbus-gmain.c (dbus_g_bus_get): do not mangle NULL
2926         pointer (bug #1540, Leonardo Boiko).
2927
2928 2004-09-28  Jon Trowbridge  <trow@ximian.com>
2929
2930         * mono/BusDriver.cs: Changed BusDriver struct to remove
2931         the ServiceCreated and ServiceDeleted events and replace them
2932         with the new ServiceOwnerChanged event.
2933
2934         * mono/example/BusListener.cs: Added a new example program,
2935         which listens for and reports any ServiceOwnerChanged events
2936         on the bus driver.
2937
2938         * mono/example/Makefile.am (DESTDIR): Build changes for the
2939         new BusListener.cs example.
2940
2941 2004-09-27  Olivier Andrieu  <oliv__a@users.sourceforge.net>
2942
2943         * bus/signals.c (bus_match_rule_parse): validate the components of
2944         match rules (bug #1439).
2945
2946         * dbus/dbus-bus.c (dbus_bus_add_match): add a missing OOM test.
2947
2948 2004-09-24  Olivier Andrieu  <oliv__a@users.sourceforge.net>
2949
2950         * doc/dbus-specification.xml: document ServiceOwnerChanged
2951         signal.
2952         
2953         * bus/driver.c, bus/driver.h, bus/services.c: Use
2954         ServiceOwnerChanged signal instead of ServiceCreated and
2955         ServiceDeleted.
2956         
2957         * bus/dispatch.c: update testcase for the new signal.
2958
2959 2004-09-20  Jon Trowbridge  <trow@ximian.com>
2960
2961         Patch from Nat Friedman <nat@novell.com>
2962
2963         * mono/Makefile.am: A number of small build fixes to allow "make
2964         distcheck" to succeed.
2965
2966         * mono/example/Makefile.am: "make distcheck" fixes.
2967
2968         * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
2969         key in @srcdir@.
2970
2971         * test/Makefile.am: "make distcheck" fixes.
2972
2973 2004-09-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
2974
2975         * dbus/dbus-sysdeps.c (_dbus_user_at_console): fix memleak in OOM.
2976
2977         * doc/busconfig.dtd: update the DTD for the at_console attribute.
2978
2979         * bus/driver.c (bus_driver_handle_hello): correctly handle Hello
2980         messages after the first one (bug #1389).
2981         
2982         * bus/dispatch.c (check_double_hello_message): add a test case for
2983         the double hello message bug.
2984         (check_existent_service_activation): fix check of spawning error.
2985         
2986 2004-09-16  David Zeuthen  <david@fubar.dk>
2987
2988         * python/dbus_bindings.pyx.in: Add support for int64 and uint64
2989
2990 2004-09-12  David Zeuthen  <david@fubar.dk>
2991
2992         Patch from Kay Sievers <kay.sievers@vrfy.org>
2993
2994         * bus/bus.c (bus_context_new):
2995         * bus/bus.h:
2996         * bus/main.c (usage)
2997         (main):
2998         Add commandline option --nofork to override configuration file
2999         setting.
3000
3001 2004-09-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3002
3003         * dbus/dbus-*.h: remove the ; after DBUS_(BEGIN|END)_DECLS. Some C
3004         compilers don't like it (bug #974).
3005
3006 2004-09-04  Harald Fernengel  <harry@kdevelop.org>
3007
3008         * qt/connection.*: Applied patch by Jérôme Lodewyck
3009         <lodewyck@clipper.ens.fr> to integrate an existing
3010         connection into the Qt eventloop
3011
3012 2004-08-30  Jon Trowbridge  <trow@ximian.com>
3013
3014         * mono/BusDriver.cs: Added.  This is a class for interacting with
3015         the org.freedesktop.DBus service.
3016
3017         * mono/Message.cs: Added a mechanism to expose the message that is
3018         currently being dispatched via the static Message.Current
3019         property.  Added Message.Sender and Message.Destination
3020         properties.
3021
3022         * mono/Handler.cs: Expose the dispatched message via
3023         Message.Current when handling method calls.
3024
3025         * mono/Service.cs: Expose the dispatched message via
3026         Message.Current when handling signal emissions.
3027         
3028         * mono/Connection.cs: Bind dbus_bus_get_base_service via the
3029         Connection.BaseService property.
3030
3031 2004-08-28  Havoc Pennington  <hp@redhat.com>
3032
3033         * dbus/dbus-userdb.c (_dbus_is_console_user): remove unused variable
3034
3035         More fixes from Steve Grubb
3036         
3037         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix fd leak
3038         (_dbus_listen_tcp_socket): fix fd leak
3039
3040         * dbus/dbus-spawn.c (read_pid, read_ints): move the "again:" for
3041         EINTR to a bit lower in the code
3042
3043 2004-08-26  Jon Trowbridge  <trow@ximian.com>
3044
3045         * bus/driver.c (bus_driver_handle_service_exists): Respond with
3046         TRUE if we are inquiring about the existence of the built-in
3047         org.freedesktop.DBus service.
3048
3049 2004-08-25  John Palmieri  <johnp@redhat.com>
3050         * bus/config-parser.c:
3051         (struct PolicyType): Add POLICY_CONSOLE
3052         (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
3053         (start_busconfig_child): Sets up console element when
3054         <policy at_console=""> is encountered in a policy file
3055         (append_rule_from_element): Convert console elements to console
3056         rules.
3057
3058         * bus/policy.c: 
3059         (bus_policy_create_client_policy): Add console rules to the client
3060         policy based on if the client is at the console
3061         (bus_policy_append_console_rule): New function for adding a
3062         console rule to a policy
3063         (bus_policy_merge): Handle console rule merging
3064
3065         * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
3066         where we check for console user files
3067         
3068         * dbus/dbus-sysdeps.c:
3069         (_dbus_file_exists): New function which checks if the given
3070         file exists
3071         (_dbus_user_at_console): New function which does the system
3072         specific process of checking if the user is at the console
3073
3074         * dbus/dbus-userdb.c:
3075         (_dbus_is_console_user): New function converts a UID to user name
3076         and then calls the system specific _dbus_user_at_console to 
3077         see if the user is at the console and therefor a console user
3078
3079 2004-08-25  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3080
3081         * bus/config-parser.c (set_limit):
3082         * bus/dbus-daemon-1.1.in:
3083         * test/data/valid-config-files/many-rules.conf: set the
3084         max_match_rules_per_connection limt from the config file. 
3085
3086         * doc/busconfig.dtd: update the DTD.
3087
3088         * bus/driver.c: remove some unused variables.
3089
3090 2004-08-24  Mikael Hallendal  <micke@imendio.com>
3091
3092         * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since 
3093         it's been replaced by dbus_g_bus_get
3094
3095 2004-08-23  Colin Walters  <walters@redhat.com>
3096
3097         Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
3098
3099         * bus/selinux.h: Prototype bus_selinux_get_policy_root.
3100
3101         * bus/selinux.c: Create a thread for policy reload notification.
3102         (bus_selinux_get_policy_root): Implement.
3103
3104         * bus/config-parser.c (start_busconfig_child)
3105         (bus_config_parser_content): Support SELinux-root relative
3106         inclusion.
3107
3108         * configure.in <HAVE_SELINUX>: Add -lpthread.
3109         
3110         * bus/test-main.c (test_pre_hook, test_post_hook): New.
3111         (test_post_hook): Move memory checking into here.
3112         (test_pre_hook, test_post_hook): Move SELinux checks in
3113         here, but conditional on a DBUS_TEST_SELINUX environment
3114         variable.  Unfortunately we can't run the SELinux checks
3115         as a normal user, since they won't have any permissions
3116         for /selinux.  So this will have to be tested manually
3117         for now, until we have virtualization for most of
3118         libselinux.
3119         
3120 2004-08-23  Havoc Pennington  <hp@redhat.com>
3121
3122         * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
3123         drop supplementary groups, suggested by Steve Grubb
3124
3125 2004-08-20  Colin Walters  <walters@redhat.com>
3126
3127         * bus/config-parser.c (start_busconfig_child): Remove some unused
3128         variables.
3129         
3130         * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
3131         warning.
3132
3133 2004-08-17  Joe Shaw  <joeshaw@novell.com>
3134
3135         * configure.in: If --enable-mono is passed in, if we can't find
3136         mono error out.
3137
3138         * mono/Makefile.am: Use /gacutil to install assemblies into the
3139         GAC and not /root.
3140
3141 2004-08-12  Havoc Pennington  <hp@redhat.com>
3142
3143         * NEWS: update for 0.22
3144
3145         * configure.in: release 0.22
3146
3147 2004-08-11  Colin Walters  <walters@redhat.com>
3148
3149         * tools/dbus-send.c (main, usage): Add --reply-timeout
3150         argument.
3151
3152 2004-08-10  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3153
3154         * bus/bus.c (process_config_first_time_only): get rid of an unused
3155         DBusError that was causing a memoy leak (bug #989).
3156
3157         * dbus/dbus-keyring.c, dbus/dbus-message.c:
3158         fix compilation on Solaris/Forte C (bug #974)
3159
3160         * bus/main.c (main): plug two minuscule memleaks.
3161
3162 2004-08-10  Havoc Pennington  <hp@redhat.com>
3163
3164         * doc/dbus-tutorial.xml: add some more info on GLib bindings
3165
3166 2004-08-09  Havoc Pennington  <hp@redhat.com>
3167
3168         * COPYING: switch to Academic Free License version 2.1 instead of
3169         2.0, to resolve complaints about patent termination clause.
3170
3171 2004-07-31  John (J5) Palmieri  <johnp@redhat.com>
3172
3173         * README: added documentation for the --enable-python 
3174         configure switch.
3175
3176 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3177
3178         * bus/config-parser.c (bus_config_parser_new): fix an invalid
3179         _unref in the SELinux support.
3180
3181         * doc/busconfig.dtd: update DTD for SELinux support.
3182
3183         * bus/config-loader-libxml.c: fix error handler and parser
3184         initialisation/cleanup. OOM test now works with libxml2 HEAD.
3185
3186         * configure.in: remove the warning about libxml2.
3187
3188         * dbus/dbus-bus.c: silence doxygen warning.
3189
3190 2004-07-31  Colin Walters  <walters@redhat.com>
3191
3192         * configure.in: Move #error in SELinux check to its own line.
3193
3194 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3195
3196         * dbus/dbus-internals.h (_DBUS_SET_OOM):
3197         * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
3198         dbus_error_set.
3199
3200         * bus/dispatch.c (check_send_exit_to_service): fix the test case,
3201         broken by the change in the _SET_OOM macros.
3202
3203 2004-07-31  Colin Walters  <walters@redhat.com>
3204
3205         * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
3206         BUS_SET_OOM.
3207
3208 2004-07-31  Colin Walters  <walters@redhat.com>
3209
3210         * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
3211         to correctly detect DBUS__ACQUIRE_SVC.  Also add an
3212         AC_MSG_CHECKING.
3213
3214 2004-07-24  Havoc Pennington  <hp@redhat.com>
3215
3216         SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
3217
3218         * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
3219         functionality
3220
3221         * configure.in: add --enable-selinux
3222         
3223         * bus/policy.c (bus_policy_merge): add FIXME to a comment
3224
3225         * bus/main.c (main): initialize and shut down selinux
3226
3227         * bus/connection.c: store SELinux ID on each connection, to avoid 
3228         repeated getting of the string context and converting it into 
3229         an ID
3230
3231         * bus/bus.c (bus_context_get_policy): new accessor, though it
3232         isn't used
3233         (bus_context_check_security_policy): check whether the security
3234         context of sender connection can send to the security context of
3235         recipient connection
3236
3237         * bus/config-parser.c: add parsing for <selinux> and <associate>
3238         
3239         * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
3240         implement dbus_connection_get_unix_fd()
3241
3242         * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
3243         function, used by the selinux stuff
3244         
3245 2004-07-29  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3246
3247         * bus/config-loader-libxml.c: complete the implementation of
3248         libxml backend for config file loader. Doesn't work with full OOM
3249         test yet. 
3250         
3251         * configure.in: change error when selecting libxml into a warning.
3252         
3253         * test/data/invalid-config-files: add two non-well-formed XML
3254         files. 
3255         
3256         * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
3257         
3258         * dbus/dbus-transport-unix.c (unix_handle_watch): do not
3259         disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
3260         be necessary to read all the buffer. (bug #894)
3261
3262         * bus/activation.c (bus_activation_activate_service): fix a
3263         potential assertion failure (bug #896). Small optimization in the
3264         case of auto-activation messages.
3265
3266         * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
3267         add test case for byte-through-vararg bug (#901). patch by Kimmo
3268         Hämäläinen. 
3269
3270 2004-07-28  Anders Carlsson  <andersca@gnome.org>
3271
3272         * python/dbus.py:
3273         * python/dbus_bindings.pyx.in:
3274         Add dbus.init_gthreads (), allow emit_signal to pass
3275         arguments to the signal.
3276         
3277 2004-07-24  Havoc Pennington  <hp@redhat.com>
3278
3279         * AUTHORS: add some people, not really comprehensively, let me
3280         know if I missed you
3281
3282 2004-07-24  Havoc Pennington  <hp@redhat.com>
3283
3284         * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
3285         Owen
3286
3287         * test/Makefile.am (DIST_SUBDIRS): here also
3288
3289 2004-07-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3290
3291         * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
3292         breaking build on Solaris, reported by Farhad Saberi on the ML.
3293
3294         * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
3295         va_arg invocation to account for integer promotion in the case of
3296         DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
3297
3298         * bus/services.c (bus_service_remove_owner): fix bug #902, use
3299         _dbus_list_get_first_link, not _dbus_list_get_first.
3300
3301         * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
3302
3303         * dbus/dbus-object-tree.c (free_subtree_recurse): always null
3304         handler functions so that the asserts in _dbus_object_subtree_unref
3305         do not fail.
3306
3307         * dbus/dbus-transport-unix.c (do_reading):
3308         _dbus_transport_queue_messages return value is of type
3309         dbus_bool_t, not DBusDispatchStatus.
3310         
3311 2004-07-19  David Zeuthen  <david@fubar.dk>
3312
3313         * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
3314
3315         * bus/dispatch.c:
3316         (check_get_connection_unix_user): Debug says GetProperty; but the
3317         method is called GetConnectionUnixUser
3318         (check_get_connection_unix_process_id): New function
3319         (bus_dispatch_test): Actually call check_get_connection_unix_user();
3320         also call check_get_connection_unix_process_id()
3321         
3322         * bus/driver.c:
3323         (bus_driver_handle_get_connection_unix_process_id): New function,
3324         handles GetConnectionUnixProcessID on the org.freedesktop.DBus
3325         interface
3326         
3327         * dbus/dbus-auth.c:
3328         (handle_server_data_external_mech): Set pid from the credentials
3329         obtained from the socket
3330         
3331         * dbus/dbus-connection.c:
3332         (dbus_connection_get_unix_process_id): New function
3333         
3334         * dbus/dbus-connection.h: 
3335         Add prototype for dbus_connection_get_unix_process_id
3336         
3337         * dbus/dbus-transport.c:
3338         (_dbus_transport_get_unix_process_id): New function
3339         
3340         * dbus/dbus-transport.h:
3341         Add prototype for _dbus_transport_get_unix_process_id
3342         
3343 2004-07-19  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3344
3345         * dbus/dbus-message.c: Message counter fix, patch by Christian
3346         Hammond <chipx86@gnupdate.org>
3347
3348 2004-07-18  Seth Nickell  <seth@gnome.org>
3349
3350         * python/dbus.py:
3351         * python/dbus_bindings.pyx.in:
3352         * python/tests/test-client.py:
3353
3354         Add dbus.ByteArray and dbus_bindings.ByteArray
3355         types so that byte streams can be passed back.
3356
3357         Give jdahlin the heaps of credit that are so
3358         rightfully his.
3359         
3360 2004-07-12  Seth Nickell  <seth@gnome.org>
3361
3362         * python/dbus.py:
3363
3364         Add message argument to the default object_method_handler
3365         function.
3366         
3367         * python/dbus_bindings.pyx.in:
3368
3369         Automatically return NIL when passed an empty list
3370         (we can't pass back a list since lists are typed
3371         and we don't have any idea what type the the client
3372         intended the list to be... :-( )
3373         
3374 2004-07-10  Seth Nickell  <seth@gnome.org>
3375
3376         * python/examples/Makefile.am:
3377
3378         Fix distcheck breakage caused by new examples.
3379
3380 2004-07-10  Seth Nickell  <seth@gnome.org>
3381
3382         * python/dbus.py:
3383
3384         Add "message" argument to service-side dbus.Object
3385         methods. This will break existing services written
3386         using the python bindings, but will allow extraction
3387         of all the message information (e.g. who its from).
3388
3389         Add improved "object oriented" signal handling/emission.
3390         
3391         * python/examples/example-service.py:
3392
3393         Nix this example.
3394         
3395         * python/examples/example-signal-emitter.py:
3396         * python/examples/example-signal-recipient.py:
3397
3398         Two new examples that show how to emit and receive
3399         signals using the new APIs.
3400         
3401         * python/examples/example-signals.py:
3402         * python/examples/gconf-proxy-service.py:
3403         * python/examples/gconf-proxy-service2.py:
3404
3405         Add "message" argument to service methods.
3406
3407 2004-06-28  Kay Sievers <kay.sievers@vrfy.org>
3408
3409         * bus/driver.c (bus_driver_handle_get_connection_unix_user)
3410         * dbus/bus.c (dbus_bus_get_unix_user)
3411         * doc/dbus-specification.xml: implement GetConnectionUnixUser
3412         method of org.freedesktop.DBus interface.
3413
3414         * bus/dispatch.c: test case
3415
3416 2004-06-23  John (J5) Palmieri  <johnp@redhat.com>
3417
3418         * python/Makefile.am: switched include directory from glib/ to dbus/
3419         since dbus-glib.h moved
3420  
3421 2004-06-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3422
3423         * configure.in: prevent building the gcj stuff and libxml loader
3424         since they are broken.
3425
3426 2004-06-20  Havoc Pennington  <hp@redhat.com>
3427
3428         * dbus/dbus-glib-error-enum.h: autogenerate the GError enum 
3429         codes from the dbus error names
3430         
3431         * glib/dbus-glib.h: move to subdir dbus/ since it's included 
3432         as dbus/dbus-glib.h and that breakage is now visible due to 
3433         including dbus/dbus-glib.h in dbus-glib-lowlevel.h
3434         
3435         * glib/dbus-glib.h: s/gproxy/g_proxy/
3436
3437         * dbus/dbus-shared.h: new header to hold stuff shared with
3438         binding APIs
3439         
3440         * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
3441         than dbus-errors.h
3442
3443         * glib/dbus-glib.h (dbus_set_g_error): move to
3444         dbus-glib-lowlevel.h
3445
3446         * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
3447         of stuff to enable this
3448
3449         * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
3450
3451         * a bunch of other changes with the same basic "separate glib 
3452         bindings from dbus.h" theme
3453         
3454 2004-06-10  Owen Fraser-Green  <owen@discobabe.net>
3455
3456         * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
3457
3458         * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
3459
3460 2004-06-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3461
3462         * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
3463         the reply value of the ServiceExists message.
3464
3465 2004-06-07  John (J5) Palmieri  <johnp@redhat.com>
3466
3467         * python/dbus_bindings.pyx.in: No longer need to parse path
3468         elements and pass them as arrays of strings.  The C API now
3469         accepts plain path strings.
3470         (_build_parsed_path): removed 
3471
3472 2004-06-07  Havoc Pennington  <hp@redhat.com>
3473
3474         * doc/TODO: remove auto-activation item since it's done; sort
3475         items by importance/milestone
3476
3477 2004-06-07  Havoc Pennington  <hp@redhat.com>
3478
3479         * dbus/dbus-message-builder.c (_dbus_message_data_load): append
3480         random signature when using REQUIRED_FIELDS (this hack won't work
3481         in the long term)
3482
3483         * dbus/dbus-message.c: change the signature to be a header field,
3484         instead of message->signature special-case string. Incremental
3485         step forward. Then we can fix up code to send the signature in the
3486         message, then fix up code to validate said signature, then fix up
3487         code to not put the typecodes inline, etc.
3488         (load_one_message): don't make up the signature after the fact
3489         (decode_header_data): require signature field for the known
3490         message types
3491
3492         * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
3493
3494         * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
3495
3496 2004-06-07  Owen Fraser-Green  <owen@discobabe.net>
3497
3498         * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
3499
3500         * mono/Handler.cs: Updated to follow new path argument for
3501         (un-)registering objects.
3502
3503         * mono/example/Makefile.am:
3504         * mono/Makefile.am:
3505         * configure.in: Bumped required version for mono and use new -pkg
3506         syntax for deps
3507
3508 2004-06-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3509
3510         * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
3511         registration functions take the path argument as char* instead of
3512         char**.
3513
3514         * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
3515         split off the path decompostion part of
3516         _dbus_demarshal_object_path. Some misc. fixes to silence compiler
3517         warnings. 
3518
3519         * glib/dbus-gobject.c, test/test-service.c: update accordingly.
3520         
3521 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
3522  
3523         * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
3524         machine approach.  A state is implemented as a function that
3525         handles incoming events as specified for that state.
3526         
3527         * doc/dbus-specification.xml: Update auth protocol state machine
3528         specification to match implementation.  Remove some leftover
3529         base64 examples.
3530
3531 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
3532
3533         * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
3534         dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
3535         quiet doxygen.
3536
3537         * Doxyfile.in: remove deprecated options.
3538
3539         * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
3540         glib/test-thread.h, glib/test-thread-client.c,
3541         glib/test-thread-server.c, glib/test-profile.c,
3542         glib/test-dbus-glib.c: remove these unused files.
3543
3544 2004-06-01  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3545
3546         * dbus/dbus-object-tree.c
3547         (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
3548         non-fallback handlers (bug #684).
3549         (_dbus_object_subtree_new): initialize invoke_as_fallback field.
3550         (find_subtree_recurse): report wether the returned subtree is an
3551         exact match or a "fallback" match higher up in the tree.
3552         (object_tree_test_iteration): update test case.
3553
3554 2004-06-01  Seth Nickell  <seth@gnome.org>
3555
3556         * python/dbus_bindings.pyx.in:
3557         * python/tests/test-client.py:
3558
3559         Round off basic type support. Add dicts (yay!), and 
3560         remaining array types.
3561
3562         Make MessageIter more general so it works for dicts too.
3563
3564         Mark all loop variables as C integers.
3565         
3566 2004-05-31  Havoc Pennington  <hp@redhat.com>
3567
3568         * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
3569         "in" before "out"
3570
3571         * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
3572
3573         * glib/dbus-glib-tool.c (main): set up to have a --self-test
3574         option that runs the tests, and start filling in some code
3575         including for starters just dumping the interfaces to stdout
3576
3577         * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
3578
3579         * test/data/valid-introspection-files/lots-of-types.xml: test of
3580         an example introspection file
3581
3582         * glib/dbus-gparser.c (parser_check_doctype): doctype should be
3583         "node" (I think...)
3584
3585 2004-05-31  Seth Nickell  <seth@gnome.org>
3586
3587         * python/dbus_bindings.pyx.in:
3588         * python/tests/test-client.py:
3589
3590         Test Suite: 1
3591         Python Bindings: 0
3592
3593         Fix string array memory trashing bug... oops...
3594
3595 2004-05-30  Seth Nickell  <seth@gnome.org>
3596
3597         * python/dbus.py:
3598
3599         Add a nicer-but-less-flexible alternate API for handling 
3600         calls to virtual objects in dbus.ObjectTree.
3601
3602         Screw up the argument order to the dbus.Object constructor
3603         for consistency with dbus.ObjectTree (and to make dbus_methods
3604         optional for future extension)
3605         
3606         * python/examples/Makefile.am:
3607         * python/examples/gconf-proxy-service.py:
3608         * python/examples/gconf-proxy-service2.py:
3609
3610         Alternate implementation of gconf-proxy-service using the
3611         nicer dbus.ObjectTree API.
3612         
3613         * python/examples/example-service.py:
3614         * python/tests/test-server.py
3615
3616         Reverse the argument order to deal with dbus.Object constructor
3617         changes.
3618         
3619 2004-05-30  Seth Nickell  <seth@gnome.org>
3620
3621         * python/examples/example-client.py:
3622         * python/examples/example-service.py:
3623
3624         Take it back. Lists seem to work but they're broken
3625         in the test suite. Make the base examples use
3626         lists (works fine).
3627
3628 2004-05-30  Seth Nickell  <seth@gnome.org>
3629
3630         * python/dbus_bindings.pyx.in:
3631         * python/tests/test-client.py:
3632
3633         Add some more tests and fix errors that crop up.
3634         Unfortunately, currently it seems like marshalling
3635         and unmarshalling of lists is completely broken :-(
3636
3637 2004-05-30  Seth Nickell  <seth@gnome.org>
3638
3639         * python/dbus_bindings.pyx.in:
3640
3641         Add support for ObjectPath type.
3642
3643         * python/dbus.py:
3644
3645         Refactor message handling code to a common function.
3646         
3647         * python/tests/test-client.py:
3648         * python/tests/test-server.py:
3649
3650         Add tests that check to make sure values of all types
3651         can be echoed from a service w/o mangling.
3652         
3653 2004-05-29  Seth Nickell  <seth@gnome.org>
3654
3655         * python/dbus.py:
3656
3657         Add ObjectTree class which allows implementation
3658         of trees of "virtual" objects. Basically the python
3659         wrapper for "register_fallback".
3660         
3661         * python/examples/Makefile.am
3662         * python/examples/gconf-proxy-client.py:
3663         * python/examples/gconf-proxy-service.py:
3664
3665         Implement a simple GConf proxy service that supports
3666         get/set on string and int GConf keys using the ObjectTree.
3667         
3668 2004-05-29  Seth Nickell  <seth@gnome.org>
3669
3670         * python/dbus.py:
3671         * python/examples/example-client.py:
3672         * python/examples/example-service.py:
3673         * python/examples/list-system-services.py:
3674
3675         Add SessionBus, SystemBus and ActivationBus classes
3676         so you don't need to know the special little BUS_TYPE
3677         flag.
3678         
3679 2004-05-29  Havoc Pennington  <hp@redhat.com>
3680
3681         * bus/config-parser.c (process_test_valid_subdir): temporarily
3682         stop testing config parser OOM handling, since expat has issues
3683         http://freedesktop.org/pipermail/dbus/2004-May/001153.html
3684
3685         * bus/dbus-daemon-1.1.in: change requested_reply to
3686         send_requested_reply/receive_requested_reply so we can send the
3687         replies, not just receive them.
3688
3689         * bus/config-parser.c: parse the new
3690         send_requested_reply/receive_requested_reply
3691
3692         * bus/policy.c (bus_client_policy_check_can_send): add
3693         requested_reply argument and use it
3694
3695         * bus/bus.c (bus_context_check_security_policy): pass through
3696         requested_reply status to message send check
3697
3698         * bus/system.conf.in: adapt to requested_reply change
3699         
3700 2004-05-28  Havoc Pennington  <hp@redhat.com>
3701
3702         * test/glib/test-service-glib.c (main): remove unused variable
3703
3704         * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
3705
3706         * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
3707         from the enum, no longer in use.
3708
3709         * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
3710         works right.
3711
3712         * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
3713         whether error_name passed in is a valid error name.
3714
3715 2004-05-28  John (J5) Palmieri  <johnp@redhat.com>
3716
3717         * dbus/dbus-message.c (dbus_message_get_args): Added support for
3718         OBJECT_PATH and OBJECT_PATH_ARRAY
3719
3720 2004-05-28  Seth Nickell  <seth@gnome.org>
3721
3722         * python/examples/Makefile.am:
3723
3724         Forget to add Makefile.am. Do not pass go.
3725
3726 2004-05-28  Michael Meeks  <michael@ximian.com>
3727
3728         * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal): 
3729         fix no int64 case.
3730
3731         * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
3732
3733         * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
3734         (_dbus_message_iter_get_basic_type_array): impl.
3735         drastically simplify ~all relevant _get methods to use these.
3736         (_dbus_message_iter_append_basic_array),
3737         (dbus_message_iter_append_basic): impl
3738         drastically simplify ~all relevant _append methods to use these.
3739
3740         * dbus/dbus-message-builder.c (parse_basic_type) 
3741         (parse_basic_array, lookup_basic_type): impl.
3742         (_dbus_message_data_load): prune scads of duplicate /
3743         cut & paste coding.
3744
3745         * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array) 
3746         (_dbus_demarshal_basic_type): implement,
3747         (demarshal_and_validate_len/arg): beef up debug.
3748         (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
3749
3750 2004-05-27  Seth Nickell  <seth@gnome.org>
3751
3752         * configure.in:
3753         * python/Makefile.am:
3754
3755         Include the example python apps in the tarball.
3756         
3757         * python/examples/list-system-services.py
3758
3759         Add a python new example that fetches the list of services
3760         from the system bus.
3761         
3762 2004-05-27  Seth Nickell  <seth@gnome.org>
3763
3764         * python/dbus.py:
3765         * python/dbus_bindings.pyx.in:
3766
3767         Fix failure to notify that a signal was not handled,
3768         resulted in hung functions.
3769         
3770 2004-05-25  Colin Walters  <walters@redhat.com>
3771
3772         * tools/dbus-monitor.c (main): Monitor all types of messages.
3773
3774 2004-05-23  Owen Fraser-Green  <owen@discobabe.net>
3775
3776         * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
3777         which unregisters the object path and disposes the handler.
3778
3779 2004-05-23  Kristian Høgsberg  <krh@redhat.com>
3780  
3781         Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
3782          
3783         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
3784         operands to && so we call dbus_message_iter_next () for the last
3785         argument also.
3786
3787 2004-05-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3788
3789         * dbus/dbus-object-tree.c
3790         (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
3791         children even if the requested path isn't registered.
3792         (object_tree_test_iteration): test object_tree_list_registered.
3793
3794         * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
3795         it to 0.
3796         
3797 2004-05-20  Kristian Høgsberg  <krh@redhat.com>
3798
3799         * doc/TODO: Remove resolved items.
3800
3801         * bus/expirelist.h (struct BusExpireList): remove unused n_items
3802         field.
3803         
3804         * bus/connection.c (bus_connections_expect_reply): Enforce the
3805         per-connection limit on pending replies.
3806         
3807         Patch from Jon Trowbridge <trow@ximian.com>:
3808  
3809         * bus/main.c (setup_reload_pipe): Added.  Creates a pipe and sets
3810         up a watch that triggers a config reload when one end of the pipe
3811         becomes readable.
3812         (signal_handler): Instead of doing the config reload in our SIGHUP
3813         handler, just write to the reload pipe and let the associated
3814         watch handle the reload when control returns to the main loop.
3815  
3816         * bus/driver.c (bus_driver_handle_reload_config): Added.
3817         Implements a ReloadConfig method for requesting a configuration
3818         file reload via the bus driver.
3819  
3820 2004-05-19  Owen Fraser-Green  <owen@discobabe.net>
3821
3822         * HACKING: Updated release instructions concerning the wiki page.
3823
3824 2004-05-18  Kristian Høgsberg  <krh@redhat.com>
3825
3826         * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
3827         filter against auth->allowed_mechs; we only add allowed mechs in
3828         record_mechanisms().
3829  
3830         * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
3831         ALLOWED_MECHS to auth-script format so we can set the list of
3832         allowed mechanisms.
3833  
3834         * data/auth/client-out-of-mechanisms.auth-script: New test to
3835         check client disconnects when it is out of mechanisms to try.
3836  
3837         * dbus/dbus-auth.c (process_command): Remove check for lines
3838         longer that 1 MB; we only buffer up maximum 16 kB.
3839  
3840         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
3841         dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
3842         Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
3843         assume there might be unused bytes.
3844  
3845         * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
3846         client-out-of-mechs, it is handled in process_reject(). Move check
3847         for max failures to send_rejected(), as it's a server-only thing.
3848
3849         * dbus/dbus-auth.c: Factor out protocol reply code into functions
3850         send_auth(), send_data(), send_rejected(), send_error(),
3851         send_ok(), send_begin() and send_cancel().
3852
3853 2004-05-17  Kristian Høgsberg  <krh@redhat.com>
3854
3855         Remove base64 encoding, replace with hex encoding. Original patch
3856         from trow@ximian.com, added error handling.
3857
3858         * dbus/dbus-string.c (_dbus_string_base64_encode)
3859         (_dbus_string_base64_decode): Remove.
3860         (_dbus_string_hex_decode): Add end_return argument so we can
3861         distinguish between OOM and invalid hex encoding.
3862         (_dbus_string_test): Remove base64 tests and add test case for
3863         invalid hex.
3864
3865         * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
3866         Replace base64 with hex.
3867
3868         * test/data/auth/invalid-hex-encoding.auth-script: New test case
3869         for invalid hex encoded data in auth protocol.
3870
3871 2004-05-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3872
3873         * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
3874         leak.
3875
3876 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
3877
3878         * mono/dbus-sharp.dll.config.in: Added for GAC
3879         * mono/dbus-sharp.snk: Added for GAC
3880         * mono/Assembly.cs.in: Added for GAC
3881         * mono/Makefile.am: Changes for GAC installation        
3882         * configure.in: Added refs for dbus-sharp.dll.config.in and
3883         Assembly.cs.in. More fixes for mono testing
3884         * mono/example/Makefile.am: Changed var to CSC
3885         * Makefile.am: Changed flag name to DBUS_USE_CSC
3886
3887 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
3888
3889         * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
3890         * mono/doc/*: Added documentation framework
3891         * configure.in: Added monodoc check
3892         * README: Added description of mono configure flags
3893
3894 2004-05-11  John (J5) Palmieri  <johnp@redhat.com>:
3895
3896         * doc/dbus-specification.xml: Added a "Required" column to the 
3897         header fields table and changed the "zero or more" verbage in
3898         the above paragraph to read "The header must contain the required 
3899         named header fields and zero or more of the optional named header 
3900         fields".
3901         * test/data/invalid-messages/*.message: Added the required PATH 
3902         named header field to the tests so that they don't fail on 
3903         'Missing path field'
3904
3905 2004-05-07  John (J5) Palmieri  <johnp@redhat.com>
3906
3907         * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
3908         the stack by implicitly defining variable and parameter types and
3909         removing the hack of defining C pointers as python objects and later
3910         casting them.
3911
3912 2004-05-02  Owen Fraser-Green  <owen@discobabe.net>
3913
3914         * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
3915
3916 2004-05-01  Owen Fraser-Green  <owen@discobabe.net>
3917
3918         * mono/DBusType/Dict.cs: Handle empty dicts
3919         * mono/DBusType/Array.cs: Handle empty arrays
3920         * mono/Arguments.cs: Handle empty arguments
3921
3922 2004-04-30  Owen Fraser-Green  <owen@discobabe.net>
3923
3924         * dbus-sharp.pc.in: Modified to include include Libs and Requires
3925         field
3926
3927 2004-04-25  Kristian Høgsberg  <krh@redhat.com>
3928
3929         * test/data/valid-messages/standard-*.message: Update message
3930         test scripts to new header field names.
3931
3932 2004-04-22  John (J5) Palmieri  <johnp@redhat.com>
3933
3934         * test/break-loader.c (randomly_do_n_things): tracked down buffer
3935         overflow to times_we_did_each_thing array which would chop off the
3936         first character of the failure_dir string. Increased the size of
3937         the array to 7 to reflect the number of random mutation functions
3938         we have.
3939
3940 2004-04-21  Kristian Høgsberg  <krh@redhat.com>
3941
3942         * dbus/dbus-server-unix.c (unix_finalize): Don't unref
3943         unix_server->watch here, it is unreffed in disconnect.
3944         (_dbus_server_new_for_tcp_socket): convert NULL host to
3945         "localhost" here so we don't append NULL to address.
3946         
3947         * dbus/dbus-server.c (_dbus_server_test): Add test case for
3948         various addresses, including tcp with no explicit host.
3949
3950 2004-04-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3951
3952         * dbus/dbus-message.c (decode_header_data, decode_string_field):
3953         fix incorrect setting of .name_offset in the HeaderField (it was
3954         off by two bytes, positioned right after the name and typecode)
3955
3956         * bus/bus.c (bus_context_new, bus_context_unref): test before
3957         calling dbus_server_free_data_slot and _dbus_user_database_unref
3958         in case of an error.
3959
3960         * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
3961         by libdbus-gtool.
3962
3963 2004-04-19  Kristian Høgsberg  <krh@redhat.com>
3964
3965         * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
3966         _dbus_poll() instead of select().
3967
3968 2004-04-15  Jon Trowbridge  <trow@ximian.com>
3969
3970         * bus/main.c (signal_handler): Reload the configuration files
3971         on SIGHUP.
3972         (main): Set up our SIGHUP handler.
3973
3974         * bus/bus.c (struct BusContext): Store the config file, user and
3975         fork flag in the BusContext.
3976         (process_config_first_time_only): Added.  Contains the code
3977         (previously in bus_context_new) for setting up the BusContext from
3978         the BusConfigParser that should only be run the first time the
3979         config files are read.
3980         (process_config_every_time): Added.  Contains the code (previously
3981         in bus_context_new) for setting up the BusContext from the
3982         BusConfigParser that should be run every time the config files are
3983         read.
3984         (load_config): Added.  Builds a BusConfigParser from the config
3985         files and passes the resulting structure off to
3986         process_config_first_time_only (assuming this is the first time)
3987         and process_config_every_time.
3988         (bus_context_new): All of the config-related code has been moved
3989         to process_config_first_time_only and process_config_every_time.
3990         Now this function just does the non-config-related initializations
3991         and calls load_config.
3992         (bus_context_reload_config): Added.
3993
3994 2004-04-15  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3995
3996         * bus/driver.c (bus_driver_handle_get_service_owner):
3997         implement a GetServiceOwner method.
3998         * doc/dbus-specification.xml: document it.
3999         * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
4000         
4001         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
4002         implement, using the bus GetServiceOwner method.
4003
4004         * test/glib/test-dbus-glib.c:
4005         use dbus_gproxy_new_for_service_owner so that we can receive the
4006         signal. 
4007
4008 2004-04-15  John (J5) Palmieri  <johnp@redhat.com>
4009
4010         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
4011         dbus/dbus-message.c, dbus/dbus-protocol.h
4012         (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
4013
4014         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
4015         dbus/dbus-message.c, dbus/dbus-protocol.h
4016         (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
4017
4018         * dbus/dbus-internals.c (_dbus_header_field_to_string):
4019         DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
4020         DBUS_HEADER_FIELD_SENDER resolves to "sender"
4021
4022         * doc/dbus-specification.xml (Header Fields Table):
4023         s/SERVICE/DESTINATION
4024         s/SENDER_SERVICE/SENDER
4025
4026
4027 2004-04-14  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4028
4029         * test/glib/test-dbus-glib.c (timed_exit): fail the test after
4030         a few seconds.
4031
4032 2004-04-13  Michael Meeks  <michael@ximian.com>
4033
4034         * glib/dbus-gobject.c (handle_introspect): split out
4035         (introspect_properties): this.
4036         (handle_introspect): implement this.
4037
4038         * test/glib/Makefile.am: use the absolute path so the bus
4039         daemon's chdir ("/") doesn't kill us dead.
4040
4041         * configure.in: subst ABSOLUTE_TOP_BUILDDIR
4042
4043 2004-04-12  Jon Trowbridge  <trow@ximian.com>
4044
4045         * bus/config-parser.c (struct BusConfigParser): Added
4046         included_files field.
4047         (seen_include): Added.  Checks whether or not a file has already
4048         been included by any parent BusConfigParser.
4049         (bus_config_parser_new): Copy the parent's included_files.
4050         (include_file): Track which files have been included, and fail on
4051         circular inclusions.
4052         (process_test_valid_subdir): Changed printf to report if we are
4053         testing valid or invalid conf files.
4054         (all_are_equiv): Changed printf to be a bit clearer about
4055         what we are actually doing.
4056         (bus_config_parser_test): Test invalid configuration files.
4057
4058 2004-04-09  Jon Trowbridge  <trow@ximian.com>
4059
4060         * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
4061         argument.  If non-null, the newly-constructed BusConfigParser will
4062         be initialized with the parent's BusLimits instead of the default
4063         values.
4064         (include_file): When including a config file, pass in
4065         the current parser as the parent and then copy the BusLimits
4066         from the included BusConfigParser pack to the current parser.
4067         (process_test_valid_subdir): Renamed from process_test_subdir.
4068         (process_test_equiv_subdir): Added.  Walks through a directory,
4069         descending into each subdirectory and loading the config files
4070         it finds there.  If any subdirectory contains two config files
4071         that don't produce identical BusConfigParser structs, fail.
4072         For now, the BusConfigParser's BusPolicies are not compared.
4073         (bus_config_parser_test): Call both process_test_valid_subdir and
4074         process_test_equiv_subdir.
4075
4076         * bus/config-loader-libxml.c (bus_config_load): Take a parent
4077         argument and pass it along to the call to bus_config_parser_new.
4078         Also made a few small changes to allow this code to compile.
4079
4080         * bus/config-loader-expat.c (bus_config_load): Take a parent
4081         argument and pass it along to the call to bus_config_parser_new.
4082
4083         * bus/bus.c (bus_context_new): Load the config file
4084         with a NULL parent argument.
4085
4086 2004-03-29  Michael Meeks  <michael@ximian.com>
4087
4088         * glib/dbus-gobject.c (introspect_properties): split
4089         out, fix mangled 'while' flow control.
4090         (introspect_signals): implement.
4091         (handle_introspect): update.
4092
4093 2004-03-29  Michael Meeks  <michael@ximian.com>
4094
4095         * glib/dbus-gobject.c (set_object_property): split out / 
4096         re-work, use the property type, and not the message type(!)
4097         (get_object_property): ditto.
4098
4099         * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
4100         (dbus_gvalue_marshal): make this code re-usable, needed
4101         for signals too, also on both proxy and server side.
4102         Re-write for more efficiency / readability.
4103
4104 2004-03-29  Michael Meeks  <michael@ximian.com>
4105
4106         * dbus/dbus-message.c
4107         (dbus_message_new_error_printf): impl.
4108
4109         * dbus/dbus-connection.c
4110         (dbus_connection_unregister_object_path): fix warning.
4111
4112         * configure.in: fix no-mono-installed situation.
4113
4114 2004-03-27  Havoc Pennington  <hp@redhat.com>
4115
4116         Patch from Timo Teräs:
4117         
4118         * tools/dbus-send.c (main): if --print-reply, assume type is
4119         method call; support boolean type args
4120         
4121         * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
4122         bunch of memleak and logic bugs
4123         
4124 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
4125
4126         * mono/Arguments.cs:
4127         * mono/Introspector.cs:
4128         * mono/Handler.cs:
4129         * mono/InterfaceProxy.cs:
4130         * mono/Message.cs
4131         * mono/ProxyBuilder.cs:
4132         * mono/Service.cs:
4133         Added InterfaceProxy class to avoid building proxies for every
4134         object.
4135
4136         * dbus-message.h:
4137         * dbus-message.c (dbus_message_append_args_valist)
4138         (dbus_message_iter_get_object_path)
4139         (dbus_message_iter_get_object_path_array)
4140         (dbus_message_iter_append_object_path)
4141         (dbus_message_iter_append_object_path_array):
4142         Added object_path iter functions to handle OBJECT_PATH arguments
4143         
4144 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
4145
4146         First checkin of mono bindings.
4147         * configure.in:
4148         * Makefile.am:
4149         Build stuff for the bindings
4150         * dbus-sharp.pc.in: Added for pkgconfig
4151         
4152 2004-03-21  Havoc Pennington  <hp@redhat.com>
4153
4154         * test/test-service.c (main): remove debug spew
4155
4156 2004-03-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4157
4158         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
4159         arrays
4160
4161         * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
4162         (dbus_message_iter_init_array_iterator)
4163         (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
4164         indicate whether the iterator is empty
4165
4166         * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
4167         warnings
4168
4169 2004-03-19  Havoc Pennington  <hp@redhat.com>
4170
4171         * NEWS: 0.21 updates
4172
4173         * configure.in: 0.21
4174
4175         * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
4176         
4177         * python/Makefile.am: change to avoid dist of dbus_bindings.c so
4178         you don't need pyrex to make dist
4179
4180         * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
4181         sources; run moc
4182         
4183 2004-03-18  Richard Hult  <richard@imendio.com>
4184
4185         * dbus/dbus-message.c (dbus_message_get_auto_activation) 
4186         (dbus_message_set_auto_activation): Add doxygen docs.
4187
4188 2004-03-16  Richard Hult  <richard@imendio.com>
4189
4190         * bus/activation.c: (bus_activation_service_created),
4191         (bus_activation_send_pending_auto_activation_messages),
4192         (bus_activation_activate_service):
4193         * bus/activation.h:
4194         * bus/dispatch.c: (bus_dispatch),
4195         (check_nonexistent_service_auto_activation),
4196         (check_service_auto_activated),
4197         (check_segfault_service_auto_activation),
4198         (check_existent_service_auto_activation), (bus_dispatch_test):
4199         * bus/driver.c: (bus_driver_handle_activate_service):
4200         * bus/services.c: (bus_registry_acquire_service):
4201         * dbus/dbus-message.c: (dbus_message_set_auto_activation),
4202         (dbus_message_get_auto_activation):
4203         * dbus/dbus-message.h:
4204         * dbus/dbus-protocol.h: Implement auto-activation.
4205         
4206         * doc/dbus-specification.xml: Add auto-activation to the spec.
4207
4208 2004-03-12  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4209
4210         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
4211         fix a bug with CUSTOM types.
4212
4213         * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
4214         a unit test for this bug (used to fail).
4215
4216 2004-03-12  Mikael Hallendal  <micke@imendio.com>
4217
4218         * bus/activation.c:
4219         (babysitter_watch_callback): notify all pending activations waiting for
4220           the same exec that the activation failed.
4221         (bus_activation_activate_service): shortcut the activation if we 
4222           already waiting for the same executable to start up.
4223
4224 2004-03-12  Mikael Hallendal  <micke@imendio.com>
4225
4226         * bus/activation.c: 
4227         - Added service file reloading. 
4228           Each service files directory is kept in an hash table in 
4229           BusActivation and each BusActivationEntry knows what .service-file it
4230           was read from. So when you try to activate a service the bus will 
4231           check if it's been updated, removed or if new .service-files has 
4232           been installed.
4233         - Test code at the bottom for the service file reloading.
4234         * bus/test-main.c: (main):
4235         * bus/test.h:
4236         - added service reloading test.
4237         * dbus/dbus-sysdeps.c: 
4238         * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
4239
4240 2004-03-08  Michael Meeks  <michael@ximian.com>
4241
4242         * dbus/dbus-connection.c (_dbus_connection_block_for_reply): 
4243         bail immediately if disconnected, to avoid busy loop.
4244
4245         * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
4246         cleanup cut/paste/inefficiency.
4247
4248 2004-03-01  David Zeuthen  <david@fubar.dk>
4249
4250         * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
4251         bug where args were used twice. This bug resulted in a segfault
4252         on a Debian/PPC system when starting the messagebus daemon. Include
4253         dbus-sysdeps.h for DBUS_VA_COPY
4254
4255         * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
4256
4257         * configure.in: Check for va_copy; define DBUS_VA_COPY to the
4258         appropriate va_copy implementation. From GLib
4259         
4260 2004-02-24  Joe Shaw  <joe@ximian.com>
4261
4262         * bus/services.c (bus_registry_acquire_service): We need to pass
4263         in the service name to dbus_set_error() to prevent a crash.
4264
4265 2003-12-26  Anders Carlsson  <andersca@gnome.org>
4266
4267         * AUTHORS: Reveal my True identity.
4268
4269 2003-12-17  Mikael Hallendal  <micke@imendio.com>
4270
4271         * dbus/dbus-message.c: (dbus_message_append_args_valist): 
4272         - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
4273
4274 2003-12-13  Mikael Hallendal  <micke@imendio.com>
4275
4276         * doc/TODO: Added not about better error check of configuration files.
4277
4278 2003-12-02  Richard Hult  <richard@imendio.com>
4279
4280         * Update AFL version to 2.0 throughout the source files to reflect
4281         the update that was done a while ago.
4282
4283 2003-12-02  Richard Hult  <richard@imendio.com>
4284
4285         * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
4286         wrote_dict_key to FALSE on the iter that the dict is appended to,
4287         just like when appending other types. Fixes a bug where a dict
4288         couldn't be put inside a dict.
4289         (dbus_message_iter_append_dict_key): Fix typo in warning message.
4290         (message_iter_test, _dbus_message_test): Add test case for dict
4291         inside dict.
4292
4293 2003-12-01  David Zeuthen  <david@fubar.dk>
4294
4295         * python/dbus.py: Add the actual message when calling the reciever
4296         of a signal such that parameters can be inspected. Add the method
4297         remove_signal_receiver
4298         
4299 2003-11-26  Mikael Hallendal  <micke@imendio.com>
4300
4301         * bus/*.[ch]:
4302         * dbus/*.[ch]:
4303         * glib/*.[ch]: Made ref functions return the pointer
4304
4305 2003-11-25  Zack Rusin  <zack@kde.org>
4306
4307         * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
4308
4309         * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer 
4310         wrappers,
4311
4312         * qt/connection.h, qt/connection.cpp: Adjusting to changes in 
4313         the Integrator and to better fit with the server,
4314
4315 2003-11-24  Zack Rusin  <zack@kde.org>
4316
4317         * qt/connection.h, qt/connection.cpp: removing initDbus method since
4318         the integrator handles it now
4319
4320         * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
4321         since QTimer wasn't really meant to be used the way DBusTimeout is
4322
4323 2003-11-24  Zack Rusin  <zack@kde.org>
4324
4325         * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding 
4326         Integrator class which integrates D-BUS with the Qt event loop,
4327
4328         * qt/connection.h, qt/connection.cpp: Move all the code which
4329         was dealing with D-BUS integration to the Integrator class,
4330         and start using Integrator,
4331
4332 2003-11-23  Zack Rusin  <zack@kde.org>
4333
4334         * qt/connection.h, qt/connection.cpp: Adding the DBusConnection 
4335         wrapper
4336
4337         * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
4338         switching namespaces to DBusQt, reworking the class,
4339
4340         * Makefile.cvs: switching dependencies so that it matches KDE 
4341         schematics,
4342         
4343         * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to 
4344         the library
4345
4346 2003-11-19  Havoc Pennington  <hp@redhat.com>
4347
4348         * NEWS: update
4349
4350         * configure.in: bump version to 0.20
4351
4352         * configure.in (have_qt): add yet another place to look for qt
4353         (someone hand trolltech a .pc file...)
4354
4355 2003-11-01  Havoc Pennington  <hp@redhat.com>
4356
4357         * doc/dbus-specification.xml: add state machine docs on the auth
4358         protocol; just a first draft, I'm sure it's wrong.      
4359
4360 2003-10-28  David Zeuthen  <david@fubar.dk>
4361
4362         * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
4363         return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
4364         
4365 2003-10-28  Havoc Pennington  <hp@redhat.com>
4366
4367         * dbus/dbus-message.c (get_next_field): delete unused function
4368
4369 2003-10-28  Havoc Pennington  <hp@redhat.com>
4370
4371         * bus/expirelist.c (do_expiration_with_current_time): detect
4372         failure of the expire_func due to OOM
4373
4374         * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
4375
4376         * bus/dispatch.c (check_send_exit_to_service): fix to handle the
4377         NoReply error that's now created by the bus when the service exits
4378
4379 2003-10-28  Havoc Pennington  <hp@redhat.com>
4380
4381         * dbus/dbus-message.c (_dbus_message_test): enable and fix the
4382         tests for set_path, set_interface, set_member, etc.
4383
4384         * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
4385
4386         * dbus/dbus-message.c (set_string_field): always just delete and
4387         re-append the field; accept NULL for deletion
4388         (re_align_fields_recurse): reimplement
4389         
4390 2003-10-26  Havoc Pennington  <hp@redhat.com>
4391
4392         * dbus/dbus-connection.c: fix docs to properly describe the
4393         disconnected message
4394         (_dbus_connection_notify_disconnected): remove this function; 
4395         we can't synchronously add the disconnected message, we have to 
4396         do it after we've queued any remaining real messages
4397         (_dbus_connection_get_dispatch_status_unlocked): queue the
4398         disconnect message only if the transport has finished queueing all
4399         its real messages and is disconnected.
4400         (dbus_connection_disconnect): update the dispatch status here
4401
4402 2003-10-22  Havoc Pennington  <hp@redhat.com>
4403
4404         * bus/bus.c (bus_context_check_security_policy): fix up assertion
4405
4406         * bus/connection.c (bus_transaction_send_from_driver): set the
4407         destination to the connection's base service
4408
4409 2003-10-20  Havoc Pennington  <hp@redhat.com>
4410
4411         hmm, make check is currently not passing.
4412         
4413         * doc/dbus-specification.xml: add requirement that custom type
4414         names follow the same rules as interface names.
4415
4416         * dbus/dbus-protocol.h: change some of the byte codes, to avoid
4417         duplication and allow 'c' to be 'custom'; dict is now 'm' for
4418         'map'
4419
4420         * doc/dbus-specification.xml: update type codes to match
4421         dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
4422         CUSTOM. Add type OBJECT_PATH to the spec.
4423
4424 2003-10-17  Havoc Pennington  <hp@redhat.com>
4425
4426         * bus/driver.c (create_unique_client_name): use "." as separator
4427         in base service names instead of '-'
4428
4429         * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
4430         byte at the end of the string
4431
4432         * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
4433         optimization macros since string validation seems to be a slow
4434         point.
4435         
4436         * doc/dbus-specification.xml: restrict valid
4437         service/interface/member/error names. Add test suite code for the
4438         name validation.
4439
4440         * dbus/dbus-string.c: limit service/interface/member/error names 
4441         to [0-9][A-Z][a-z]_
4442
4443         * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
4444         format arg to verbose spew
4445
4446         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
4447         memory, return instead of g_error
4448
4449         * test/test-service.c (path_message_func): support emitting a
4450         signal on request
4451
4452         * dbus/dbus-bus.c (init_connections_unlocked): only fill in
4453         activation bus type if DBUS_BUS_ACTIVATION was set; default to
4454         assuming the activation bus was the session bus so that services
4455         started manually will still register.
4456         (init_connections_unlocked): fix so that in OOM situation we get
4457         the same semantics when retrying the function
4458         
4459         * test/test-service.c (main): change to use path registration, to
4460         test those codepaths; register with DBUS_BUS_ACTIVATION rather
4461         than DBUS_BUS_SESSION
4462
4463 2003-10-16  Havoc Pennington  <hp@redhat.com>
4464
4465         * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
4466
4467         * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
4468         coverage of the tests
4469         (coverage-report.txt): don't move the .da and .bbg files around
4470
4471 2003-10-16  Havoc Pennington  <hp@redhat.com>
4472
4473         * bus/bus.c (struct BusContext): remove struct field I didn't mean
4474         to put there
4475
4476 2003-10-16  Havoc Pennington  <hp@redhat.com>
4477
4478         * bus/connection.c (bus_pending_reply_expired): either cancel or
4479         execute, not both
4480         (bus_connections_check_reply): use unlink, not remove_link, as we
4481         don't want to free the link; fixes double free mess
4482
4483         * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
4484         where no reply was received
4485
4486         * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
4487         fix a refcount leak
4488
4489         * bus/signals.c (match_rule_matches): add special cases for the
4490         bus driver, so you can match on sender/destination for it.
4491
4492         * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
4493         DBUS_PRINT_BACKTRACE is set
4494
4495         * dbus/dbus-internals.c: add pid to assertion failure messages
4496
4497         * dbus/dbus-connection.c: add message type code to the debug spew
4498
4499         * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
4500         sender=foo not service=foo
4501
4502         * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
4503         session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use 
4504         DBUS_ACTIVATION_ADDRESS instead
4505
4506         * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
4507         DBUS_SYSTEM_BUS_ADDRESS if appropriate
4508
4509         * bus/bus.c (bus_context_new): handle OOM copying bus type into
4510         context struct
4511
4512         * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
4513         (dbus_message_iter_get_object_path_array): new function (half
4514         finished, disabled for the moment)
4515         
4516         * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
4517         DBUS_MESSAGE_TYPE_ERROR
4518
4519         * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
4520         avoid redirecting stderr to /dev/null
4521         (babysit): close stdin if not doing the "exit_with_session" thing
4522
4523         * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
4524         debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
4525         stdout/stdin, so things don't get confused
4526         
4527         * bus/system.conf.in: fix to allow replies, I modified .conf
4528         instead of .conf.in again.
4529
4530 2003-10-14  David Zeuthen  <david@fubar.dk>
4531
4532         * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
4533         argtype to arg_type when raising unknown arg type exception.
4534         Changed type list to reflect the changes in dbus-protocol.h so 
4535         the bindings actually work.
4536
4537 2003-10-14  Havoc Pennington  <hp@redhat.com>
4538
4539         * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
4540         to have a bug keeping it from outputting the .da files sometimes
4541         (string_get_string): don't append garbage nul bytes to the string.
4542
4543 2003-10-15  Seth Nickell  <seth@gnome.org>
4544
4545         * python/Makefile.am:
4546
4547         Include dbus_h_wrapper.h in the dist tarball.
4548
4549 2003-10-14  Havoc Pennington  <hp@redhat.com>
4550
4551         * bus/bus.c (bus_context_check_security_policy): revamp this to
4552         work more sanely with new policy-based requested reply setup
4553
4554         * bus/connection.c (bus_transaction_send_from_driver): set bus
4555         driver messages as no reply
4556
4557         * bus/policy.c (bus_client_policy_check_can_receive): handle a
4558         requested_reply attribute on allow/deny rules
4559
4560         * bus/system.conf: add <allow requested_reply="true"/>
4561
4562         * bus/driver.c (bus_driver_handle_message): fix check for replies
4563         sent to the bus driver, which was backward. How did this ever work
4564         at all though? I think I'm missing something.
4565
4566         * dbus/dbus-message.c (decode_header_data): require error and
4567         method return messages to have a reply serial field to be valid
4568         (_dbus_message_loader_queue_messages): break up this function;
4569         validate that reply serial and plain serial are nonzero; 
4570         clean up the OOM/error handling.
4571         (get_uint_field): don't return -1 from this
4572         (dbus_message_create_header): fix signed/unsigned bug
4573
4574         * bus/connection.c (bus_connections_expect_reply): save serial of
4575         the incoming message, not reply serial
4576
4577 2003-10-14  Havoc Pennington  <hp@redhat.com>
4578
4579         * bus/connection.c: implement pending reply tracking using
4580         BusExpireList
4581
4582         * bus/bus.c (bus_context_check_security_policy): verify that a
4583         reply is pending in order to allow a reply to be sent. Deny 
4584         messages of unknown type.
4585
4586         * bus/dbus-daemon-1.1.in: update to mention new resource limits
4587
4588         * bus/bus.c (bus_context_get_max_replies_per_connection): new
4589         (bus_context_get_reply_timeout): new
4590
4591 2003-10-13  Seth Nickell  <seth@gnome.org>
4592
4593         * python/Makefile.am:
4594
4595         Pass "make distcheck": remove a couple files from DIST_FILES
4596         that weren't included in the final version.
4597
4598 2003-10-12  Havoc Pennington  <hp@pobox.com>
4599
4600         Added test code that 1) starts an actual bus daemon and 2) uses
4601         DBusGProxy; fixed bugs that were revealed by the test. Lots 
4602         more testing possible, but this is the basic framework.
4603         
4604         * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
4605         empty proxy lists from the proxy list hash
4606
4607         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
4608         couple of return_if_fail checks
4609
4610         * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
4611         to allocate, so everything is cleared to NULL as it should be.
4612
4613         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
4614         source as data to dbus_connection_set_timeout_functions() as the 
4615         timeout functions expected
4616
4617         * test/glib/run-test.sh: add a little script to start up a message
4618         bus and run tests using it
4619
4620         * tools/dbus-launch.1: updates
4621
4622         * tools/dbus-launch.c (main): add --config-file option
4623
4624         * tools/dbus-launch.c (main): remove confusing else if (runprog)
4625         that could never be reached.
4626
4627         * dbus/dbus-message.c (dbus_message_new_method_return) 
4628         (dbus_message_new_error, dbus_message_new_signal): set the
4629         no-reply-expected flag on all these. Redundant, but may
4630         as well be consistent.
4631
4632 2003-10-11  Havoc Pennington  <hp@pobox.com>
4633
4634         * test/decode-gcov.c (function_solve_graph): make broken block
4635         graph a nonfatal error since it seems to be broken. Need to debug
4636         this.
4637
4638         * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
4639         can't just check type > INVALID < LAST anymore
4640
4641         * dbus/dbus-message.c (dbus_message_get_signature): new function
4642         (dbus_message_has_signature): new function
4643         (struct DBusMessage): add signature field (right now it isn't sent
4644         over the wire, just generated on the fly)
4645         (dbus_message_copy): copy the signature, and init strings to
4646         proper length to avoid some reallocs
4647         (dbus_message_iter_init_array_iterator): return void, since it
4648         can't fail
4649         (dbus_message_iter_init_dict_iterator): return void since it can't fail
4650         (_dbus_message_loader_queue_messages): add silly temporary hack to
4651         fill in message->signature on load
4652
4653         * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
4654         characters, so they are relatively human-readable.
4655
4656 2003-10-11  Havoc Pennington  <hp@pobox.com>
4657
4658         * dbus/dbus-message.c (_dbus_message_test): add more test
4659         coverage, but #if 0 for now since they uncover a bug 
4660         not fixed yet; I think in re_align_field_recurse()
4661         (re_align_field_recurse): add FIXME about broken assertion
4662
4663         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
4664
4665         * bus/connection.c: share a couple code bits with expirelist.c
4666
4667         * bus/expirelist.h, bus/expirelist.c: implement a generic
4668         expire-items-after-N-seconds facility, was going to share between
4669         expiring connections and replies, decided not to use for expiring
4670         connections for now.
4671
4672         * COPYING: include AFL 2.0 (still need to change all the file headers)
4673
4674 2003-10-09  Havoc Pennington  <hp@redhat.com>
4675
4676         * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
4677         gcc 3.3. Not that we do anything about it yet.
4678
4679         * bus/signals.c (bus_match_rule_parse): impose max length on the
4680         match rule text
4681
4682         * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
4683
4684 2003-10-09  Havoc Pennington  <hp@redhat.com>
4685
4686         Make matching rules theoretically work (add parser).
4687         
4688         * bus/bus.c (bus_context_check_security_policy): fix up to handle
4689         the case where destination is explicitly specified as bus driver
4690         and someone else is eavesdropping.
4691         
4692         * bus/policy.c (bus_client_policy_check_can_receive): fix up
4693         definition of eavesdropping and assertion
4694
4695         * tools/dbus-send.c (main): use dbus_message_type_from_string
4696
4697         * bus/signals.c (bus_match_rule_parse): implement
4698
4699         * dbus/dbus-message.c (dbus_message_type_from_string): new
4700
4701         * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
4702
4703 2003-10-02  Havoc Pennington  <hp@pobox.com>
4704
4705         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
4706         dbus_gproxy_oneway_call
4707
4708         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main) 
4709         (dbus_server_setup_with_g_main): fix to allow calling them more
4710         than once on the same args
4711         (dbus_bus_get_with_g_main): new function
4712
4713 2003-10-02  Havoc Pennington  <hp@redhat.com>
4714
4715         * doc/dbus-tutorial.xml: write some stuff
4716
4717 2003-09-29  Havoc Pennington  <hp@pobox.com>
4718
4719         * configure.in: split checks for Doxygen from XML docs, check for
4720         xmlto
4721
4722         * doc/Makefile.am: XML-ify all the docs, and add a blank
4723         dbus-tutorial.xml
4724
4725 2003-09-29  Havoc Pennington  <hp@pobox.com>
4726
4727         * Merge dbus-object-names branch. To see the entire patch 
4728         do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
4729         it's huuuuge though.
4730         To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
4731         
4732 2003-09-28  Havoc Pennington  <hp@pobox.com>
4733
4734         * HACKING: update to reflect new server
4735
4736 2003-09-26  Seth Nickell  <seth@gnome.org>
4737
4738         * python/dbus.py:
4739         * python/examples/example-signals.py:
4740
4741         Start implementing some notions of signals. The API
4742         is really terrible, but they sort of work (with the
4743         exception of being able to filter by service, and to
4744         transmit signals *as* a particular service). Need to
4745         figure out how to make messages come from the service
4746         we registered :-(
4747         
4748         * python/dbus_bindings.pyx.in:
4749
4750         Removed duplicate message_handler callbacks.
4751         
4752 2003-09-25  Havoc Pennington  <hp@redhat.com>
4753
4754         * bus/session.conf.in: fix my mess
4755
4756 2003-09-25  Havoc Pennington  <hp@pobox.com>
4757
4758         * bus/session.conf.in: fix security policy, reported by Seth Nickell
4759
4760 2003-09-25  Seth Nickell  <seth@gnome.org>
4761
4762         * python/examples/example-service.py:
4763
4764         Johan notices complete wrong code in example-service, but
4765         completely wrong in a way that works exactly the same (!).
4766         Johan is confused, how could this possibly work? Example
4767         code fails to serve purpose of making things clear.
4768         Seth fixes.
4769
4770 2003-09-25  Mark McLoughlin  <mark@skynet.ie>
4771
4772         * doc/dbus-specification.sgml: don't require header fields
4773         to be 4-byte aligned and specify that fields should be
4774         distinguished from padding by the fact that zero is not
4775         a valid field name.
4776         
4777         * doc/TODO: remove re-alignment item and add item to doc
4778         the OBJECT_PATH type.
4779         
4780         * dbus/dbus-message.c:
4781         (HeaderField): rename the original member to value_offset
4782         and introduce a name_offset member to keep track of where
4783         the field actually begins.
4784         (adjust_field_offsets): remove.
4785         (append_int_field), (append_uint_field),
4786         (append_string_field): don't align the start of the header
4787         field to a 4-byte boundary.
4788         (get_next_field): impl finding the next marhsalled field
4789         after a given field.
4790         (re_align_field_recurse): impl re-aligning a number of
4791         already marshalled fields.
4792         (delete_field): impl deleting a field of any type and
4793         re-aligning any following fields.
4794         (delete_int_or_uint_field), (delete_string_field): remove.
4795         (set_int_field), (set_uint_field): no need to re-check
4796         that we have the correct type for the field.
4797         (set_string_field): ditto and impl re-aligning any
4798         following fields.
4799         (decode_header_data): update to take into account that
4800         the fields aren't 4-byte aligned any more and the new
4801         way to distinguish padding from header fields. Also,
4802         don't exit when there is too much header padding.
4803         (process_test_subdir): print the directory.
4804         (_dbus_message_test): add test to make sure a following
4805         field is re-aligned correctly after field deletion.
4806         
4807         * dbus/dbus-string.[ch]:
4808         (_dbus_string_insert_bytes): rename from insert_byte and
4809         allow the insert of multiple bytes.
4810         (_dbus_string_test): test inserting multiple bytes.
4811
4812         * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
4813         warning note to docs about having to re-align any
4814         marshalled values following the string.
4815         
4816         * dbus/dbus-message-builder.c:
4817         (append_string_field), (_dbus_message_data_load):
4818         don't align the header field.
4819         
4820         * dbus/dbus-auth.c: (process_test_subdir): print the
4821         directory.
4822         
4823         * test/break-loader.c: (randomly_add_one_byte): upd. for
4824         insert_byte change.
4825         
4826         * test/data/invalid-messages/bad-header-field-alignment.message:
4827         new test case.
4828         
4829         * test/data/valid-messages/unknown-header-field.message: shove
4830         a dict in the unknown field.
4831
4832 2003-09-25  Seth Nickell  <seth@gnome.org>
4833
4834         * python/dbus.py:
4835         * python/dbus_bindings.pyx.in:
4836
4837         Handle return values.
4838         
4839         * python/examples/example-client.py:
4840         * python/examples/example-service.py:
4841
4842         Pass back return values from the service to the client.
4843         
4844 2003-09-24  Seth Nickell  <seth@gnome.org>
4845
4846         * python/dbus.py:
4847
4848         Connect Object methods (when you are sharing an object) up... pass
4849         in a list of methods to be shared. Sharing all the methods just
4850         worked out too weird. You can now create nice Services over the
4851         DBus in Python. :-)
4852         
4853         * python/dbus_bindings.pyx.in:
4854
4855         Keep references to user_data tuples passed into C functions so 
4856         Python doesn't garbage collect on us.
4857
4858         Implement MethodReturn and Error subclasses of Message for creating
4859         DBusMessage's of those types.
4860         
4861         * python/examples/example-client.py:
4862         * python/examples/example-service.py:
4863
4864         Simple example code showing both how create DBus services and objects,
4865         and how to use them.
4866
4867 2003-09-23  Havoc Pennington  <hp@pobox.com>
4868
4869         * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
4870
4871 2003-09-23  Havoc Pennington  <hp@redhat.com>
4872
4873         * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
4874         (dbus_gproxy_disconnect_signal): implement
4875         (dbus_gproxy_manager_remove_signal_match): implement
4876         (dbus_gproxy_manager_add_signal_match): implement
4877         (dbus_gproxy_oneway_call): implement
4878
4879 2003-09-23  Havoc Pennington  <hp@pobox.com>
4880
4881         * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
4882         subclass. This means dropping the transparent thread safety of the
4883         proxy; you now need a separate proxy per-thread, or your own
4884         locking on the proxy. Probably right anyway.
4885         (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
4886
4887 2003-09-22  Havoc Pennington  <hp@redhat.com>
4888
4889         * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
4890
4891 2003-09-21  Seth Nickell  <seth@gnome.org>
4892
4893         First checkin of the Python bindings.
4894         
4895         * python/.cvsignore:
4896         * python/Makefile.am:
4897         * python/dbus_bindings.pyx.in:
4898         * python/dbus_h_wrapper.h:
4899
4900         Pieces for Pyrex to operate on, building a dbus_bindings.so
4901         python module for low-level access to the DBus APIs.
4902         
4903         * python/dbus.py:
4904
4905         High-level Python module for accessing DBus objects.
4906
4907         * configure.in:
4908         * Makefile.am:
4909
4910         Build stuff for the python bindings.
4911
4912         * acinclude.m4:
4913
4914         Extra macro needed for finding the Python C header files.
4915
4916 2003-09-21  Havoc Pennington  <hp@pobox.com>
4917
4918         * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
4919         implementing the proxy manager, didn't get very far.
4920
4921         * dbus/dbus-bus.c (dbus_bus_add_match): new
4922         (dbus_bus_remove_match): new
4923
4924         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
4925         path_name argument; adjust the other not-yet-implemented 
4926         gproxy constructors to be what I think they should be.
4927
4928 2003-09-21  Havoc Pennington  <hp@pobox.com>
4929
4930         * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
4931         by default for message bus connections.
4932
4933         * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
4934         exit_on_disconnect flag is set and we process the disconnected
4935         signal.
4936         (dbus_connection_set_exit_on_disconnect): new function
4937
4938 2003-09-21  Havoc Pennington  <hp@pobox.com>
4939
4940         Get matching rules mostly working in the bus; only actually
4941         parsing the rule text remains. However, the client side of
4942         "signal connections" hasn't been started, this patch is only the
4943         bus side.
4944         
4945         * dbus/dispatch.c: fix for the matching rules changes
4946         
4947         * bus/driver.c (bus_driver_handle_remove_match)
4948         (bus_driver_handle_add_match): send an ack reply from these
4949         method calls
4950
4951         * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
4952         arguments, reported by Seth Nickell
4953
4954         * bus/config-parser.c (append_rule_from_element): support
4955         eavesdrop=true|false attribute on policies so match rules 
4956         can be prevented from snooping on the system bus.
4957
4958         * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
4959         and "destination" in attribute names; fix some docs bugs; 
4960         add eavesdrop=true|false attribute
4961
4962         * bus/driver.c (bus_driver_handle_add_match)
4963         (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
4964         messages
4965
4966         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
4967         rid of broadcast service concept, signals are just always broadcast
4968
4969         * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
4970         mostly implement matching rules stuff (currently only exposed as signal
4971         connections)
4972
4973 2003-09-21  Mark McLoughlin  <mark@skynet.ie>
4974
4975         * doc/dbus-specification.sgml: Change the header field name
4976         to be an enum and update the rest of the spec to reference
4977         the fields using the conventinal name.
4978
4979         * dbus/dbus-protocol.h: update to reflect the spec.
4980
4981         * doc/TODO: add item to remove the 4 byte alignment requirement.
4982         
4983         * dbus/dbus-message.c: Remove the code to generalise the
4984         header/body length and serial number header fields as named
4985         header fields so we can reference field names using the 
4986         protocol values.
4987         (append_int_field), (append_uint_field), (append_string_field):
4988         Append the field name as a byte rather than four chars.
4989         (delete_int_or_uint_field), (delete_string_field): reflect the
4990         fact that the field name and typecode now occupy 4 bytes instead
4991         of 8.
4992         (decode_string_field), (decode_header_data): update to reflect
4993         protocol changes and move the field specific encoding from
4994         decode_string_field() back into decode_header_data().
4995         
4996         * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
4997         Add utility to aid debugging.
4998         
4999         * dbus/dbus-message-builder.c:
5000         (append_string_field), (_dbus_message_data_load): Update to
5001         reflect protocol changes; Change the FIELD_NAME directive
5002         to HEADER_FIELD and allow it to take the field's conventional
5003         name rather than the actual value.
5004         
5005         * test/data/*/*.message: Update to use HEADER_FIELD instead
5006         of FIELD_NAME; Always align the header on an 8 byte boundary
5007         *before* updating the header length.
5008
5009 2003-09-15  Havoc Pennington  <hp@pobox.com>
5010
5011         * dbus/dbus-pending-call.c: add the get/set object data
5012         boilerplate as for DBusConnection, etc. Use generic object data
5013         for the notify callback.
5014
5015         * glib/dbus-gparser.c (parse_node): parse child nodes
5016
5017         * tools/dbus-viewer.c: more hacking on the dbus-viewer
5018         
5019         * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
5020         contain functions shared between the convenience lib and the
5021         installed lib
5022
5023         * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
5024         -export-symbols-regex to the GLib library
5025
5026         * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
5027         fix the locking in here, and add a default handler for
5028         Introspect() that just returns sub-nodes.
5029
5030 2003-09-14  Havoc Pennington  <hp@pobox.com>
5031
5032         * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
5033         rather than gfoo consistent
5034
5035         * glib/dbus-gproxy.h: delete for now, move contents to
5036         dbus-glib.h, because the include files don't work right since we
5037         aren't in the dbus/ subdir.
5038         
5039         * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
5040         (dbus_gproxy_end_call): finish
5041         (dbus_gproxy_begin_call): finish
5042
5043         * glib/dbus-gmain.c (dbus_set_g_error): new
5044
5045         * glib/dbus-gobject.c (handle_introspect): include information
5046         about child nodes in the introspection
5047
5048         * dbus/dbus-connection.c (dbus_connection_list_registered): new
5049         function to help in implementation of introspection
5050
5051         * dbus/dbus-object-tree.c
5052         (_dbus_object_tree_list_registered_and_unlock): new function
5053
5054 2003-09-12  Havoc Pennington  <hp@pobox.com>
5055
5056         * glib/dbus-gidl.h: add common base class for all the foo_info
5057         types
5058
5059         * tools/dbus-viewer.c: add GTK-based introspection UI thingy
5060         similar to kdcop
5061
5062         * test/Makefile.am: try test srcdir -ef . in addition to test
5063         srcdir = ., one of them should work (yeah lame)
5064         
5065         * glib/Makefile.am: build the "idl" parser stuff as a convenience
5066         library
5067         
5068         * glib/dbus-gparser.h: make description_load routines return
5069         NodeInfo* not Parser*
5070
5071         * Makefile.am (SUBDIRS): build test dir after all library dirs
5072
5073         * configure.in: add GTK+ detection
5074
5075 2003-09-07  Havoc Pennington  <hp@pobox.com>
5076
5077         * Make Doxygen contented.
5078
5079 2003-09-07  Havoc Pennington  <hp@pobox.com>
5080
5081         * doc/dbus-specification.sgml: more updates
5082
5083 2003-09-06  Havoc Pennington  <hp@pobox.com>
5084
5085         * doc/dbus-specification.sgml: partial updates
5086
5087         * bus/dbus-daemon-1.1.in: fix the config file docs for the
5088         zillionth time; hopefully I edited the right file this time.
5089
5090         * bus/config-parser.c (append_rule_from_element): support
5091         send_type, send_path, receive_type, receive_path
5092
5093         * bus/policy.c: add message type and path to the list of things
5094         that can be "firewalled"
5095
5096 2003-09-06  Havoc Pennington  <hp@pobox.com>
5097
5098         * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
5099         (dbus_connection_register_object_path): make this not handle
5100         messages to paths below the given path
5101
5102 2003-09-03  Havoc Pennington  <hp@pobox.com>
5103
5104         * test/glib/Makefile.am: add this with random glib-linked test
5105         programs
5106
5107         * glib/Makefile.am: remove the random test programs from here,
5108         leave only the unit tests
5109
5110         * glib/dbus-gobject.c (_dbus_gobject_test): add test for 
5111         uscore/javacaps conversion, and fix     
5112         (get_object_property, set_object_property): change to .NET
5113         convention for mapping props to methods, set_FooBar/get_FooBar, 
5114         since one language has such a convention we may as well copy it. 
5115         Plus real methods in either getFooBar or get_foo_bar style won't 
5116         collide with this convention.
5117
5118 2003-09-01  Havoc Pennington  <hp@pobox.com>
5119
5120         * glib/dbus-gparser.c: implement
5121
5122         * glib/dbus-gobject.c: start implementing skeletons support
5123
5124         * configure.in: when disabling checks/assert, also define
5125         G_DISABLE_ASSERT and G_DISABLE_CHECKS
5126
5127 2003-09-01  Havoc Pennington  <hp@pobox.com>
5128
5129         * glib/Makefile.am: rearrange a bunch of files and get "make
5130         check" framework set up
5131
5132 2003-08-31  Havoc Pennington  <hp@pobox.com>
5133
5134         * fix build with --disable-tests
5135
5136 2003-08-30  Havoc Pennington  <hp@pobox.com>
5137
5138         * dbus/dbus-connection.c: purge DBusMessageHandler
5139
5140         * dbus/dbus-message-handler.c: remove DBusMessageHandler, just 
5141         use callbacks everywhere
5142
5143 2003-08-30  Havoc Pennington  <hp@pobox.com>
5144
5145         * test/data/valid-config-files/system.d/test.conf: change to 
5146         root for the user so warnings don't get printed
5147
5148         * dbus/dbus-message.c: add dbus_message_get_path,
5149         dbus_message_set_path
5150         
5151         * dbus/dbus-object-tree.c (do_test_dispatch): add test of
5152         dispatching to a path
5153
5154         * dbus/dbus-string.c (_dbus_string_validate_path): add
5155
5156         * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
5157         (_dbus_marshal_object_path): implement
5158
5159         * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field 
5160         to contain the path to the target object
5161         (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
5162         DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
5163
5164 2003-08-30  Havoc Pennington  <hp@pobox.com>
5165
5166         * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
5167
5168 2003-08-29  Havoc Pennington  <hp@pobox.com>
5169
5170         * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
5171         registered
5172         (struct DBusObjectSubtree): shrink this
5173         a lot, since we may have a lot of them
5174         (_dbus_object_tree_free_all_unlocked): implement
5175         (_dbus_object_tree_dispatch_and_unlock): implement
5176
5177 2003-08-29  Havoc Pennington  <hp@pobox.com>
5178
5179         * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
5180
5181 2003-08-28  Havoc Pennington  <hp@pobox.com>
5182
5183         purge DBusObjectID
5184         
5185         * dbus/dbus-connection.c: port to no ObjectID, create a
5186         DBusObjectTree, rename ObjectTree to ObjectPath in public API
5187
5188         * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete 
5189         everything except UnregisterFunction and MessageFunction
5190         
5191         * dbus/dbus-marshal.c: port away from DBusObjectID, 
5192         add DBUS_TYPE_OBJECT_PATH
5193         
5194         * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc], 
5195         dbus/dbus-objectid.[hc]: remove these, we are moving to 
5196         path-based object IDs
5197
5198 2003-08-25  Havoc Pennington  <hp@pobox.com>
5199
5200         Just noticed that dbus_message_test is hosed, I wonder when I
5201         broke that. I thought make check was passing earlier...
5202         
5203         * dbus/dbus-object-tree.c: add new "object tree" to match DCOP 
5204         container tree, will replace most of dbus-object-registry
5205
5206         * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
5207         screwup
5208
5209 2003-08-19  Havoc Pennington  <hp@pobox.com>
5210
5211         * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
5212         (dbus_message_is_error): fix this function
5213
5214         * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
5215         match
5216
5217         * bus/policy.c (bus_client_policy_check_can_receive): fix code to
5218         reflect clarified man page
5219         (bus_client_policy_check_can_send): ditto
5220         
5221         * bus/session.conf.in: fixup
5222
5223         * bus/system.conf.in: fixup
5224
5225 2003-08-18  Havoc Pennington  <hp@redhat.com>
5226
5227         * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
5228
5229         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
5230         dumb bug created earlier (wrong order of args to
5231         decode_header_data())
5232         
5233         * tools/dbus-send.c: port
5234
5235         * tools/dbus-print-message.c (print_message): port
5236
5237         * test/data/*messages: port all messages over
5238         
5239         * dbus/dbus-message-builder.c: support including 
5240         message type
5241         
5242         * bus/driver.c: port over
5243         
5244         * bus/dispatch.c: port over to new stuff
5245
5246         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
5247         rename disconnect signal to "Disconnected"
5248
5249 2003-08-17  Havoc Pennington  <hp@pobox.com>
5250
5251         This doesn't compile yet, but syncing up so I can hack on it from
5252         work. What are branches for if not broken code? ;-)
5253         
5254         * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
5255         DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
5256         DBUS_HEADER_FIELD_ERROR_NAME
5257         
5258         * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
5259         for the interface+member pairs
5260         (string_hash): change to use g_str_hash algorithm
5261         (find_direct_function, find_string_function): refactor these to
5262         share most code.
5263         
5264         * dbus/dbus-message.c: port all of this over to support 
5265         interface/member fields instead of name field
5266
5267         * dbus/dbus-object-registry.c: port over
5268         
5269         * dbus/dbus-string.c (_dbus_string_validate_interface): rename
5270         from _dbus_string_validate_name
5271
5272         * bus/dbus-daemon-1.1: change file format for the 
5273         <deny>/<allow> stuff to match new message naming scheme
5274
5275         * bus/policy.c: port over
5276
5277         * bus/config-parser.c: parse new format
5278         
5279 2003-08-16  Havoc Pennington  <hp@pobox.com>
5280
5281         * dbus/dbus-object-registry.c (add_and_remove_objects): remove
5282         broken assertion
5283
5284         * glib/dbus-gproxy.c: some hacking
5285
5286 2003-08-15  Havoc Pennington  <hp@redhat.com>
5287
5288         * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
5289
5290         * dbus/dbus-connection.c
5291         (dbus_connection_send_with_reply_and_block): factor out internals;
5292         change to convert any error replies to DBusError instead of 
5293         returning them as a message
5294
5295 2003-08-15  Havoc Pennington  <hp@pobox.com>
5296
5297         * dbus/dbus-connection.c, 
5298         dbus/dbus-pending-call.c: Finish the pending call stuff
5299
5300 2003-08-14  Havoc Pennington  <hp@redhat.com>
5301
5302         * dbus/dbus-pending-call.c: start on new object that will replace
5303         DBusMessageHandler and ReplyHandlerData for tracking outstanding
5304         replies
5305
5306         * dbus/dbus-gproxy.c: start on proxy object used to communicate
5307         with remote interfaces
5308
5309         * dbus/dbus-gidl.c: do the boring boilerplate in here
5310         
5311 2003-08-12  Havoc Pennington  <hp@pobox.com>
5312
5313         * bus/dispatch.c (bus_dispatch): make this return proper 
5314         DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
5315
5316         * dbus/dbus-errors.c (dbus_set_error): use
5317         _dbus_string_append_printf_valist
5318
5319         * dbus/dbus-string.c (_dbus_string_append_printf_valist)
5320         (_dbus_string_append_printf): new
5321
5322         * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
5323         UNKNOWN_METHOD
5324
5325         * dbus/dbus-connection.c (dbus_connection_dispatch): handle
5326         DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
5327         message is unhandled.
5328
5329 2003-08-11  Havoc Pennington  <hp@pobox.com>
5330
5331         * bus/test.c (client_disconnect_handler): change to return
5332         HANDLED (would have been REMOVE_MESSAGE)
5333
5334         * dbus/dbus-object.h (enum DBusHandlerResult): rename to
5335         HANDLED/NOT_YET_HANDLED instead of
5336         REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it 
5337         should be used.
5338
5339 2003-08-10  Havoc Pennington  <hp@pobox.com>
5340
5341         * tools/dbus-send.c (main): add --type argument, for now
5342         supporting only method_call and signal types.
5343
5344         * tools/dbus-print-message.c: print message type
5345
5346         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
5347         init connection->objects
5348
5349         * doc/dbus-specification.sgml: fix sgml
5350
5351         * bus/*.c: port over to object-instance API changes
5352
5353         * test/test-service.c: ditto
5354         
5355         * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
5356         name, we will have to fix up the rest of the code to also handle
5357         this
5358         (dbus_message_new): generic message-creation call
5359         (set_string_field): allow appending name field
5360
5361 2003-08-06  Havoc Pennington  <hp@pobox.com>
5362
5363         * dbus/dbus-object-registry.c: implement signal connection 
5364         and dispatch
5365
5366         * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
5367
5368         * dbus/dbus-internals.c (_dbus_memdup): new function
5369
5370 2003-08-02  Havoc Pennington  <hp@pobox.com>
5371
5372         * dbus/dbus-message.c (dbus_message_get_no_reply)
5373         (dbus_message_set_no_reply): add these and remove
5374         set_is_error/get_is_error
5375
5376         * dbus/dbus-protocol.h, doc/dbus-specification.sgml: 
5377         remove the ERROR flag, since there's now an ERROR type
5378
5379 2003-08-01  Havoc Pennington  <hp@pobox.com>
5380
5381         * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
5382         implement
5383
5384         * dbus/dbus-message.c (dbus_message_get_type): new function
5385
5386         * doc/dbus-specification.sgml: add "type" byte to messages
5387
5388 2003-08-01  Havoc Pennington  <hp@pobox.com>
5389
5390         * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
5391         a message type enum to distinguish kinds of message
5392         (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message 
5393         that need not be replied to
5394
5395 2003-08-01  Havoc Pennington  <hp@pobox.com>
5396
5397         * dbus/dbus-marshal.c: adapt to DBusObjectID changes
5398         (unpack_8_octets): fix no-64-bit-int bug
5399
5400         * dbus/dbus-object-registry.c (validate_id): validate the 
5401         connection ID bits, not just the instance ID.
5402
5403         * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
5404         the connection-global 33 bits of the object ID
5405
5406         * dbus/dbus-object-registry.c (info_from_entry): fill in 
5407         object ID in the new way
5408
5409         * dbus/dbus-objectid.h: rather than high/low bits, specifically 
5410         define server/client/instance bits.
5411
5412 2003-07-30  Havoc Pennington  <hp@pobox.com>
5413
5414         * dbus/dbus-connection.c (dbus_connection_register_object): fix
5415         build
5416
5417 2003-07-13  Havoc Pennington  <hp@pobox.com>
5418
5419         * dbus/dbus-object.h (struct DBusObjectVTable): add padding
5420         fields to DBusObjectVTable and DBusObjectInfo
5421
5422 2003-07-12  Havoc Pennington  <hp@pobox.com>
5423
5424         * dbus/dbus-object-registry.c: implement unit test,
5425         fix bugs discovered in process
5426
5427         * dbus/dbus-connection.c: remove handler_table and
5428         register_handler(), add DBusObjectRegistry usage
5429
5430         * dbus/dbus-objectid.c (dbus_object_id_is_null)
5431         (dbus_object_id_set_null): new functions
5432
5433 2003-07-08  Havoc Pennington  <hp@pobox.com>
5434
5435         * dbus/dbus-object.c: implement some of this
5436
5437         * dbus/dbus-object-registry.c
5438         (_dbus_object_registry_add_and_unlock): fill in the object_id out
5439         param
5440         (_dbus_object_registry_new): handle OOM
5441
5442 2003-07-08  Havoc Pennington  <hp@pobox.com>
5443
5444         * dbus/dbus-object.h: sketch out an API for registering objects
5445         with a connection, that allows us to use as little as 24 bytes
5446         per object and lets application code represent an object in 
5447         any conceivable way.
5448
5449         * dbus/dbus-object-registry.c: implement the hard bits of the
5450         DBusConnection aspect of object API. Not yet wired up.
5451         
5452 2003-07-06  Havoc Pennington  <hp@pobox.com>
5453
5454         * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
5455         (_dbus_marshal_object_id): new
5456         (_dbus_demarshal_object_id): new
5457         (_dbus_marshal_get_arg_end_pos): support object ID type, and
5458         consolidate identical switch cases. Don't conditionalize handling
5459         of DBUS_TYPE_UINT64, need to handle the type always.
5460         (_dbus_marshal_validate_arg): consolidate identical cases, and
5461         handle DBUS_TYPE_OBJECT_ID
5462
5463         * dbus/dbus-objectid.c: new file with DBusObjectID data type.
5464
5465         * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
5466
5467 2003-09-28  Havoc Pennington  <hp@pobox.com>
5468
5469         * real 0.13 release
5470
5471 2003-09-28  Havoc Pennington  <hp@pobox.com>
5472
5473         * doc/Makefile.am (dbus-specification.html): testing a funky hack
5474         to work with Debian db2html
5475
5476 2003-09-28  Havoc Pennington  <hp@pobox.com>
5477
5478         * configure.in: 0.13
5479
5480         * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
5481         stylesheet-images for benefit of Debian
5482         
5483         Change back to using filesystem-linked sockets for the system
5484         bus, so only root can create the default system bus address.
5485         
5486         * bus/system.conf.in: change to use
5487         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
5488
5489         * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
5490         from here.
5491
5492         * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
5493         here, and AC_DEFINE DBUS_SYSTEM_PATH
5494
5495 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
5496
5497         * doc/TODO:
5498         * doc/busconfig.dtd:
5499         Add busconfig DTD.
5500         
5501 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
5502
5503         * doc/dbus-specification.sgml:
5504         Add activation reply values.
5505         
5506 2003-08-05  Havoc Pennington  <hp@redhat.com>
5507
5508         * configure.in: 0.12
5509
5510 2003-08-05  Anders Carlsson  <andersca@codefactory.se>
5511
5512         * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
5513         (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
5514         (add_watch), (remove_watch), (create_source):
5515         Refcount fds, fixes some reentrancy issues.
5516         
5517 2003-07-30  Havoc Pennington  <hp@redhat.com>
5518
5519         * dbus/dbus-bus.c (init_connections_unlocked): fix default system
5520         bus address to be abstract if we have abstract sockets
5521
5522         * NEWS: update
5523
5524 2003-07-28  Havoc Pennington  <hp@redhat.com>
5525
5526         * bus/messagebus.in: fix to avoid processname/servicename 
5527         confusion, from Michael Kearey
5528         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
5529         
5530 2003-07-23  Havoc Pennington  <hp@pobox.com>
5531
5532         * dbus/dbus-message.c (dbus_message_iter_get_named): 
5533         fix from Andy Hanton to remove broken "+1"
5534
5535 2003-07-16  Havoc Pennington  <hp@pobox.com>
5536
5537         * tools/dbus-launch.c (babysit): close stdout/stderr in the
5538         babysitter process, as suggested by Thomas Leonard, so 
5539         an "eval `dbus-launch --exit-with-session`" will actually 
5540         return
5541
5542 2003-07-16  Havoc Pennington  <hp@pobox.com>
5543
5544         * configure.in: print out EXPANDED_* variables in the summary at
5545         the end; clean up the code that computes EXPANDED_ variables and
5546         get the ones using exec_prefix right. Should make things work
5547         when you build without --prefix
5548
5549 2003-06-29  Havoc Pennington  <hp@pobox.com>
5550
5551         * mono/Test.cs (class Test): fire up a main loop and run it
5552
5553         * mono/DBus.cs (DBus): don't g_thread_init since it can only be
5554         done once, the app has to do it
5555
5556 2003-06-26  Havoc Pennington  <hp@pobox.com>
5557
5558         * mono/Connection.cs: set up connection with the glib main loop
5559
5560 2003-07-01  Havoc Pennington  <hp@redhat.com>
5561
5562         * doc/dbus-specification.sgml: clarify the format of a type code,
5563         change suggested by Jim Blandy
5564
5565 2003-06-29  Miloslav Trmac  <mitr@volny.cz>
5566
5567         * doc/Makefile.am:
5568         * tools/Makefile.am: Don't assume srcdir == builddir.
5569
5570         * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
5571         the allocated block.
5572         (_dbus_memory_test): New function.
5573         * dbus/dbus-test.h: Add _dbus_memory_test ().
5574         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
5575
5576         * dbus/dbus-message.c (decode_header_data): Use %.4s instead
5577         of %c%c%c%c.
5578         (dbus_message_new): Remove obsolete @todo.
5579
5580         * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
5581         (_dbus_marshal_set_uint64): Fix comment.
5582
5583         * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
5584         hardcode FIELD_REPLY_SERIAL.
5585
5586         * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
5587         (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
5588
5589         * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
5590         and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
5591
5592 2003-06-24  Havoc Pennington  <hp@pobox.com>
5593
5594         * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
5595
5596 2003-06-23  Anders Carlsson  <andersca@codefactory.se>
5597
5598         * configure.in:
5599         * gcj/.cvsignore:
5600         * gcj/Hello.java:
5601         * gcj/Makefile.am:
5602         * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
5603         * gcj/org/.cvsignore:
5604         * gcj/org/Makefile.am:
5605         * gcj/org/freedesktop/.cvsignore:
5606         * gcj/org/freedesktop/Makefile.am:
5607         * gcj/org/freedesktop/dbus/.cvsignore:
5608         * gcj/org/freedesktop/dbus/Makefile.am:
5609         * gcj/org/freedesktop/dbus/Message.java: (Message),
5610         (Message.Message):
5611         * gcj/org/freedesktop/dbus/natMessage.cc:
5612         Fix the build system.
5613
5614 2003-06-22  Havoc Pennington  <hp@pobox.com>
5615
5616         * mono/Connection.cs: add more bindings
5617
5618         * dbus/dbus-threads.c (dbus_threads_init): allow calling this
5619         more than once.
5620
5621 2003-06-22  Havoc Pennington  <hp@pobox.com>
5622
5623         * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
5624         Start wrapping more stuff.
5625
5626 2003-06-22  Havoc Pennington  <hp@pobox.com>
5627
5628         * mono/Message.cs: implement Message.Wrap() that ensures we only
5629         have a single C# wrapper per DBusMessage, assuming it works which
5630         it probably doesn't.
5631
5632         * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
5633         (dbus_message_free_data_slot): new
5634         (dbus_message_set_data): new
5635         (dbus_message_get_data): new
5636
5637 2003-06-22  Havoc Pennington  <hp@pobox.com>
5638
5639         * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
5640         (_dbus_data_slot_allocator_alloc): rework these to keep a
5641         reference count on each slot and automatically manage a global
5642         slot ID variable passed in by address
5643
5644         * bus/bus.c: convert to new dataslot API
5645
5646         * dbus/dbus-bus.c: convert to new dataslot API
5647
5648         * dbus/dbus-connection.c: convert to new dataslot API
5649
5650         * dbus/dbus-server.c: convert to new dataslot API
5651
5652         * glib/dbus-gmain.c: ditto
5653
5654         * bus/test.c: ditto
5655
5656         * bus/connection.c: ditto
5657
5658 2003-06-22  Anders Carlsson  <andersca@codefactory.se>
5659
5660         * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
5661         after the gcj checks so that the correct configuration tags
5662         will be added to libtool.
5663
5664         * dbus-glib-1.pc.in: No need to specify any includes since
5665         dbus-1.pc.in has those.
5666
5667 2003-06-22  Havoc Pennington  <hp@pobox.com>
5668
5669         * mono/*, gcj/*, configure.in, Makefile.am:
5670         Check in makefiles and subdirs for mono and gcj bindings.
5671         Neither binding actually exists, just trying to get through
5672         all the build and other boring bits.
5673
5674 2003-06-21  Philip Blundell  <philb@gnu.org>
5675
5676         * tools/dbus-monitor.1: Updated.
5677
5678         * tools/dbus-send.1: Likewise.
5679
5680 2003-06-20  Anders Carlsson  <andersca@codefactory.se>
5681
5682         * dbus/dbus-transport-unix.c (unix_handle_watch): Check
5683         for hangup and error after checking read so we won't discard
5684         pending data if both hangup and read are set.
5685
5686 2003-06-19  Philip Blundell  <philb@gnu.org>
5687
5688         * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
5689
5690         * tools/dbus-send.c: Accept both --system and --session.
5691
5692         * tools/dbus-monitor.c: Same here.
5693
5694 2003-06-19  Anders Carlsson  <andersca@codefactory.se>
5695
5696         * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
5697         from C++ (Patch by Miloslav Trmac).
5698
5699 2003-06-15  Joe Shaw  <joe@assbarn.com>
5700
5701         * configure.in: Check for socklen_t.
5702
5703         * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
5704
5705         * test/test-segfault.c: Add #include <sys/time.h>
5706
5707         * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
5708         dbus-launch needs it.
5709
5710 2003-06-09  Havoc Pennington  <hp@redhat.com>
5711
5712         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
5713         SUN_LEN, it breaks abstract socket usage
5714
5715         * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
5716         starts of lines.
5717
5718 2003-06-04  Havoc Pennington  <hp@pobox.com>
5719
5720         * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
5721         using unix:abstract=/foo, and when listening in a tmpdir
5722         i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
5723
5724         * dbus/dbus-transport.c (_dbus_transport_open): support
5725         unix:abstract=/foo
5726
5727         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
5728         support abstract sockets
5729
5730         * dbus/dbus-transport-unix.c
5731         (_dbus_transport_new_for_domain_socket): support abstract sockets
5732
5733         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
5734         toggle as an argument, implement abstract namespace support
5735         (_dbus_listen_unix_socket): ditto
5736
5737         * configure.in: add --enable-abstract-sockets and implement
5738         a configure check for autodetection of the right value.
5739
5740 2003-06-01  Havoc Pennington  <hp@pobox.com>
5741
5742         * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
5743         in /tmp (though on Linux this will end up being useless,
5744         when we add abstract namespace support)
5745
5746         * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
5747         subst'ing it
5748
5749 2003-05-28  Colin Walters  <walters@verbum.org>
5750
5751         * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
5752
5753 2003-05-18  Anders Carlsson  <andersca@codefactory.se>
5754
5755         * dbus/dbus-message.c (dbus_message_new): Remove @todo.
5756
5757 2003-05-17  Colin Walters  <walters@gnu.org>
5758
5759         * tools/dbus-send.c: Don't exit with an error code if --help was
5760         passed.  Default to using the session bus instead of the system
5761         one.
5762
5763         * tools/dbus-launch.c: Ditto.
5764
5765         * tools/dbus-monitor.c: Ditto.
5766
5767         * tools/dbus-send.1: Update with new arguments.
5768
5769         * tools/dbus-launch.c: Emit code to export variables.  New
5770         arguments -s and -c to specify shell syntax, and a bit of code to
5771         autodetect syntax.  Also, allow specifying a program to run.
5772
5773         * tools/dbus-launch.1: Update with new arguments.
5774
5775         * tools/dbus-send.1: Ditto.
5776
5777         * tools/dbus-monitor.1: Ditto.
5778
5779 2003-05-17  Havoc Pennington  <hp@pobox.com>
5780
5781         * bus/config-parser.c (merge_included): merge in policies from
5782         child configuration file.
5783
5784         * bus/policy.c (bus_policy_merge): function to merge two policies
5785         together
5786
5787 2003-05-16  Havoc Pennington  <hp@redhat.com>
5788
5789         * dbus/dbus-connection.c: disable verbose lock spew
5790
5791         * tools/dbus-send.c: add --print-reply command line option
5792
5793         * tools/dbus-print-message.h (print_message): new util function
5794         shared by dbus-send and dbus-monitor
5795
5796         * tools/dbus-monitor.c (handler_func): exit on disconnect
5797
5798         * dbus/dbus-transport-unix.c (do_reading): if the transport is
5799         disconnected, don't try to use the read_watch
5800
5801         * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
5802         so we can find this bug more easily
5803
5804 2003-05-16  Havoc Pennington  <hp@redhat.com>
5805
5806         * bus/policy.c (free_rule_list_func): avoid a crash when passed
5807         NULL as DBusHashTable is annoyingly likely to do.
5808
5809 2003-05-16  Colin Walters  <walters@verbum.org>
5810
5811         * tools/dbus-monitor.c: Add --session argument and usage()
5812         function.
5813
5814         * tools/dbus-monitor.1: Update with new --session arg.
5815
5816         * bus/Makefile.am (install-data-hook): Create
5817         $(libdir)/dbus-1.0/services so that the session bus is happy.
5818
5819 2003-05-15  Havoc Pennington  <hp@redhat.com>
5820
5821         * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
5822         on non-x86. ifdef's are evil.
5823
5824 2003-05-15  Havoc Pennington  <hp@redhat.com>
5825
5826         * configure.in: 0.11
5827
5828         * NEWS: update
5829
5830         * bus/Makefile.am (initddir): apparently we are supposed to put
5831         init scripts in /etc/rc.d/init.d not /etc/init.d
5832
5833         * bus/Makefile.am: remove the "you must --enable-tests to make
5834         check" as it broke distcheck
5835
5836         * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
5837
5838 2003-05-13  James Willcox  <jwillcox@gnome.org>
5839
5840         * configure.in:
5841         * bus/activation.c: (bus_activation_service_created),
5842         (bus_activation_activate_service):
5843         * bus/driver.c: (bus_driver_send_service_deleted),
5844         (bus_driver_send_service_created), (bus_driver_send_service_lost),
5845         (bus_driver_send_service_acquired),
5846         (bus_driver_send_welcome_message),
5847         (bus_driver_handle_list_services):
5848         * bus/session.conf.in:
5849         * dbus/dbus-bus.c: (dbus_bus_acquire_service),
5850         (dbus_bus_service_exists), (dbus_bus_activate_service):
5851         * dbus/dbus-bus.h:
5852
5853         Add some convenience API which lets you activate a service, and did a
5854         bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
5855         and dbus_message_get_args()
5856
5857 2003-05-11  Havoc Pennington  <hp@pobox.com>
5858
5859         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
5860         calling _dbus_marshal_validate_arg() for every byte in a byte
5861         array, etc.
5862
5863         * dbus/dbus-message-handler.c: use atomic reference counting to
5864         reduce number of locks slightly; the global lock in here sucks
5865
5866         * dbus/dbus-connection.c
5867         (_dbus_connection_update_dispatch_status_and_unlock): variant of
5868         update_dispatch_status that can be called with lock held; then use
5869         in a couple places to reduce locking/unlocking
5870         (dbus_connection_send): hold the lock over the whole function
5871         instead of acquiring it twice.
5872
5873         * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
5874
5875         * bus/connection.c (bus_connections_setup_connection): fix access
5876         to already-freed memory.
5877
5878         * dbus/dbus-connection.c: keep a little cache of linked list
5879         nodes, to avoid using the global linked list alloc lock in the
5880         normal send-message case. Instead we just use the connection lock
5881         that we already have to take.
5882
5883         * dbus/dbus-list.c (_dbus_list_find_last): new function
5884
5885         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
5886         change to use a struct for the atomic type; fix docs,
5887         they return value before increment, not after increment.
5888
5889         * dbus/dbus-string.c (_dbus_string_append_4_aligned)
5890         (_dbus_string_append_8_aligned): new functions to try to
5891         microoptimize this operation.
5892         (reallocate_for_length): break this out of set_length(), to
5893         improve profile info, and also so we can consider inlining the
5894         set_length() part.
5895
5896         * dbus/dbus-message.c (dbus_message_new_empty_header): init data
5897         strings with some preallocation, cuts down on our calls to realloc
5898         a fair bit. Though if we can get the "move entire string to empty
5899         string" optimization below to kick in here, it would be better.
5900
5901         * dbus/dbus-string.c (_dbus_string_move): just call
5902         _dbus_string_move_len
5903         (_dbus_string_move_len): add a special case for moving
5904         an entire string into an empty string; we can just
5905         swap the string data instead of doing any reallocs.
5906         (_dbus_string_init_preallocated): new function
5907
5908 2003-05-11  Havoc Pennington  <hp@pobox.com>
5909
5910         Write a "test-profile" that does echo client-server with threads;
5911         profile reveals lock contention, memcpy/realloc of buffers, and
5912         UTF-8 validation as hot spots. 20% of lock contention eliminated
5913         with dbus_atomic_inc/dec implementation on x86.  Much remaining
5914         contention is global mempool locks for GList and DBusList.
5915
5916         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
5917         x86 implementation
5918
5919         * dbus/dbus-connection.c (struct DBusConnection): use
5920         dbus_atomic_t for the reference count
5921
5922         * dbus/dbus-message.c (struct DBusMessage): declare
5923         dbus_atomic_t values as volatile
5924
5925         * configure.in: code to detect ability to use atomic integer
5926         operations in assembly, from GLib patch
5927
5928         * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
5929         time, tired of it being wrong in threads and forked processes
5930
5931         * glib/test-profile.c: a little program to bounce messages back
5932         and forth between threads and eat CPU
5933
5934         * dbus/dbus-connection.c: add debug spew macros for debugging
5935         thread locks; include config.h at top; fix deadlock in
5936         dbus_connection_flush()
5937
5938 2003-05-08  Havoc Pennington  <hp@pobox.com>
5939
5940         * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
5941         data from getting written, and there wasn't a good reason to
5942         use _exit really.
5943
5944         * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
5945         dbus_verbose lines in test coverage
5946         (main): add list of functions sorted by # of untested blocks
5947         to the coverage report
5948
5949         * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
5950
5951         * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
5952
5953         * dbus/dbus-message-handler.c (_dbus_message_handler_test):
5954         extend test coverage
5955
5956         * test/data/auth/cancel.auth-script: test canceling an
5957         authentication
5958
5959         * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
5960         aren't used. in CVS history if we end up needing them.
5961
5962 2003-05-04  Havoc Pennington  <hp@pobox.com>
5963
5964         * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
5965         unit test
5966
5967         * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
5968         function, which assumed length was in # of strings, not bytes
5969
5970         * dbus/dbus-message.c (_dbus_message_test): add tests for some
5971         missing coverage
5972
5973         * dbus/dbus-connection.c
5974         (_dbus_connection_queue_received_message): disable function for
5975         now, we are only using it in test mode
5976
5977         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
5978         remove a mistaken FIXME
5979
5980 2003-05-04  Havoc Pennington  <hp@pobox.com>
5981
5982         * dbus/dbus-connection.c (dbus_connection_preallocate_send):
5983         unlock mutex on successful return, patch from Anders Gustafsson
5984
5985 2003-05-04  Havoc Pennington  <hp@pobox.com>
5986
5987         * dbus-glib-1.pc.in (Requires): fix dependencies, from
5988         Anders Gustafsson
5989
5990 2003-05-04  Havoc Pennington  <hp@pobox.com>
5991
5992         * tools/dbus-launch.c: implement
5993
5994         * bus/main.c (main), bus/bus.c (bus_context_new):
5995         implement --print-pid and --fork
5996
5997 2003-05-03  Havoc Pennington  <hp@redhat.com>
5998
5999         * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
6000         the address had no value, and add to test suite. Fix and
6001         regression test from Miloslav Trmac
6002
6003 2003-05-03  Havoc Pennington  <hp@pobox.com>
6004
6005         * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
6006         watch is invalid when handled
6007
6008         * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
6009         dbus-launch utility to launch the bus from a shell script.  Didn't
6010         actually implement dbus-launch yet, it's just a placeholder still.
6011
6012 2003-05-03  Havoc Pennington  <hp@pobox.com>
6013
6014         * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
6015         daemon; also documents daemon config file, so replaces
6016         doc/config-file.txt. Corrected some stuff from config-file.txt in
6017         the process of moving it.
6018
6019 2003-05-03  Havoc Pennington  <hp@pobox.com>
6020
6021         * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
6022         add some man pages
6023
6024 2003-05-03  Colin Walters  <walters@verbum.org>
6025
6026         * dbus/dbus-sysdeps.c (fill_user_info): Test against
6027         DBUS_UID_UNSET to determine whether to do a uid lookup or not.
6028
6029         * Makefile.am: Update to use new .pc versioning scheme.
6030
6031 2003-05-02  Havoc Pennington  <hp@redhat.com>
6032
6033         * bus/system.conf.in: allow send/receive to/from message bus
6034         service
6035
6036 2003-04-30  Havoc Pennington  <hp@redhat.com>
6037
6038         * configure.in: print a note when building with unit tests and
6039         without assertions
6040
6041 2003-04-30  Havoc Pennington  <hp@redhat.com>
6042
6043         * Makefile.am: add a check-local that complains if you didn't
6044         configure with --enable-tests
6045
6046 2003-04-29  Havoc Pennington  <hp@redhat.com>
6047
6048         * glib/dbus-gmain.c: docs cleanups
6049
6050         * dbus/dbus-types.h: add docs on int64 types
6051
6052         * dbus/dbus-memory.c: fix docs to avoid putting private API in
6053         public API docs section
6054
6055 2003-04-29  Havoc Pennington  <hp@redhat.com>
6056
6057         * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
6058         dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
6059         parallel install API version, not with the D-BUS package version.
6060
6061         * HACKING: move some of README over here
6062
6063         * README: updates, and document API/ABI policy
6064
6065         * configure.in: reindentation
6066
6067 2003-04-29  Havoc Pennington  <hp@redhat.com>
6068
6069         * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
6070         to use this library" to be sure people have the right
6071         expectations.
6072
6073 2003-04-28  Havoc Pennington  <hp@redhat.com>
6074
6075         * configure.in: add --enable-docs which by default is auto yes if
6076         doxygen and db2html found, no otherwise; but can be forced on/off
6077
6078         * doc/Makefile.am: conditionalize whether to build docs on
6079         --enable-docs
6080
6081 2003-04-28  Havoc Pennington  <hp@redhat.com>
6082
6083         * configure.in: 0.10
6084
6085         * NEWS: update
6086
6087         * bus/system.conf.in: add <includedir>system.d</includedir>
6088
6089         * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
6090         username was provided but not uid
6091
6092         * bus/config-parser.c (struct BusConfigParser): keep track of
6093         whether the parser is toplevel or was included; change some
6094         of the error handling if it's included.
6095
6096 2003-04-27  Havoc Pennington  <hp@pobox.com>
6097
6098         Unbreak my code...
6099
6100         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
6101         report correct status if we finish processing authentication
6102         inside this function.
6103
6104         * bus/activation.c (try_send_activation_failure): use
6105         bus_transaction_send_error_reply
6106
6107         * bus/connection.c (bus_connection_get_groups): return an error
6108         explaining the problem
6109
6110         * bus/bus.c (bus_context_check_security_policy): implement
6111         restriction here that inactive connections can only send the
6112         hello message. Also, allow bus driver to send anything to
6113         any recipient.
6114
6115         * bus/connection.c (bus_connection_complete): create the
6116         BusClientPolicy here instead of on-demand.
6117         (bus_connection_get_policy): don't return an error
6118
6119         * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
6120         sender field in message being replied to
6121
6122         * bus/bus.c (bus_context_check_security_policy): fix silly typo
6123         causing it to return FALSE always
6124
6125         * bus/policy.c (bus_client_policy_check_can_send): fix bug where
6126         we checked sender rather than destination
6127
6128 2003-04-25  Havoc Pennington  <hp@redhat.com>
6129
6130         test suite is slightly hosed at the moment, will fix soon
6131
6132         * bus/connection.c (bus_connections_expire_incomplete): fix to
6133         properly disable the timeout when required
6134         (bus_connection_set_name): check whether we can remove incomplete
6135         connections timeout after we complete each connection.
6136
6137         * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
6138         probably still broken.
6139
6140         * bus/services.c (bus_registry_acquire_service): implement max
6141         number of services owned, and honor allow/deny rules on which
6142         services a connection can own.
6143
6144         * bus/connection.c (bus_connection_get_policy): report errors here
6145
6146         * bus/activation.c: implement limit on number of pending
6147         activations
6148
6149 2003-04-25  Havoc Pennington  <hp@redhat.com>
6150
6151         * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
6152         where we used >= 0 instead of != DBUS_UID_UNSET.
6153
6154 2003-04-25  Havoc Pennington  <hp@redhat.com>
6155
6156         * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
6157         were toggled without add/remove, fix from Anders Gustafsson
6158
6159 2003-04-24  Havoc Pennington  <hp@redhat.com>
6160
6161         * test/data/valid-config-files/basic.conf: add <limit> tags to
6162         this test
6163
6164         * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
6165         <limit> tag in configuration file.
6166
6167 2003-04-24  Havoc Pennington  <hp@redhat.com>
6168
6169         * bus/dispatch.c: somehow missed some name_is
6170
6171         * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
6172         (_dbus_timeout_set_interval): new
6173
6174         * bus/connection.c (bus_connections_setup_connection): record time
6175         when each connection is first set up, and expire them after the
6176         auth timeout passes.
6177
6178 2003-04-24  Havoc Pennington  <hp@redhat.com>
6179
6180         * dbus/dbus-message.c (dbus_message_name_is): rename
6181         (dbus_message_service_is): rename
6182         (dbus_message_sender_is): rename
6183         (dbus_message_get_service): rename
6184
6185 2003-04-24  Havoc Pennington  <hp@redhat.com>
6186
6187         * configure.in: add --enable-checks
6188
6189         * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
6190
6191         * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
6192         to use thread locks.
6193         (_dbus_connection_handler_destroyed_locked): move some private
6194         functions into proper docs group
6195
6196         * dbus/dbus-internals.h: add _dbus_return_if_fail,
6197         _dbus_return_val_if_fail
6198
6199         Throughout: use dbus_return_if_fail
6200
6201 2003-04-23  James Willcox  <jwillcox@gnome.org>
6202
6203         * glib/dbus-glib.h:
6204         * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
6205         (dbus_connection_setup_with_g_main),
6206         (dbus_server_setup_with_g_main):
6207         * glib/test-dbus-glib.c: (main):
6208         * glib/test-thread-client.c: (main):
6209         * glib/test-thread-server.c: (new_connection_callback), (main):
6210         * tools/dbus-monitor.c: (main):
6211
6212         Added a GMainContext argument to dbus_connection_setup_with_g_main()
6213         and dbus_server_setup_with_g_main().
6214
6215 2003-04-20  Havoc Pennington  <hp@pobox.com>
6216
6217         * doc/dbus-specification.sgml: document the restrictions on
6218         message and service names
6219
6220 2003-04-22  Havoc Pennington  <hp@redhat.com>
6221
6222         * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
6223         support, and do some code cleanups to share more code and
6224         speed up array marshal/demarshal.
6225
6226         * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
6227
6228         * configure.in: generate dbus-arch-deps.h
6229
6230         * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
6231         64-bit typecodes
6232
6233 2003-04-22  Havoc Pennington  <hp@redhat.com>
6234
6235         * test/data/valid-messages/opposite-endian.message: fix test
6236         to use proper type for rply field
6237
6238         * test/data/invalid-messages: add tests for below validation
6239
6240         * dbus/dbus-message.c (decode_header_data): validate field types,
6241         and validate that named fields are valid names
6242         (decode_name_field): consider messages in the
6243         org.freedesktop.Local. namespace to be invalid.
6244
6245         * dbus/dbus-string.c (_dbus_string_validate_name): new
6246
6247 2003-04-19  Havoc Pennington  <hp@pobox.com>
6248
6249         * bus/driver.c (bus_driver_handle_hello): check limits and
6250         return an error if they are exceeded.
6251
6252         * bus/connection.c: maintain separate lists of active and inactive
6253         connections, and a count of each. Maintain count of completed
6254         connections per user. Implement code to check connection limits.
6255
6256         * dbus/dbus-list.c (_dbus_list_unlink): export
6257
6258         * bus/bus.c (bus_context_check_security_policy): enforce a maximum
6259         number of bytes in the message queue for a connection
6260
6261 2003-04-18  Havoc Pennington  <hp@pobox.com>
6262
6263         * dbus/dbus-auth.c (record_mechanisms): memleak fixes
6264
6265         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
6266         memleaks
6267
6268         * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
6269         on realloc be sure to update the pointer in the keyring
6270
6271         * dbus/dbus-string.c (_dbus_string_zero): compensate for align
6272         offset to avoid writing to unallocated memory
6273
6274         * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
6275         try the next mechanism, so we properly handle OOM
6276
6277         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
6278         on OOM.
6279         (_dbus_keyring_new): fix OOM bug
6280         (_dbus_keyring_new_homedir): always set error; impose a maximum
6281         number of keys we'll load from the file, mostly to speed up the
6282         test suite and make its OOM checks more useful, but also for
6283         general sanity.
6284
6285         * dbus/dbus-auth.c (process_error_server): reject authentication
6286         if we get an error from the client
6287         (process_cancel): on cancel, send REJECTED, per the spec
6288         (process_error_client): send CANCEL if we get an error from the
6289         server.
6290
6291 2003-04-18  Havoc Pennington  <hp@pobox.com>
6292
6293         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
6294         debug spew
6295
6296         * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
6297         handling problem
6298
6299         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
6300         about DBUS_TEST_HOMEDIR once
6301
6302         * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
6303         the environment
6304
6305         * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
6306         config file so we test the right thing
6307
6308         Throughout: assorted docs improvements
6309
6310 2003-04-18  Havoc Pennington  <hp@pobox.com>
6311
6312         * glib/dbus-gmain.c: adapt to watch changes
6313
6314         * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
6315
6316         * dbus/dbus-server.h: remove dbus_server_handle_watch
6317
6318         * dbus/dbus-connection.h: remove dbus_connection_handle_watch
6319
6320         * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
6321         like DBusTimeout, so we don't need dbus_connection_handle_watch
6322         etc.
6323
6324 2003-04-17  Havoc Pennington  <hp@redhat.com>
6325
6326         * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
6327         database usage so it all goes via the DBusUserDatabase cache.
6328
6329 2003-04-17  Havoc Pennington  <hp@redhat.com>
6330
6331         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
6332         there was an OOM watch we skipped, we always return TRUE so we
6333         iterate again to have a look at it again. Fixes test suite hang.
6334         Code rearrangement also lets us lose some memset and only iterate
6335         over callbacks once.
6336
6337         * bus/driver.c (bus_driver_handle_message): sense of test for
6338         reply was backward
6339
6340 2003-04-16  Havoc Pennington  <hp@pobox.com>
6341
6342         * doc/dbus-specification.sgml: make spec say serials are unsigned
6343
6344         * dbus/dbus-message.h: change message serials to unsigned
6345
6346         * dbus/dbus-connection.c: adapt to message serials being unsigned
6347
6348 2003-04-15  Havoc Pennington  <hp@pobox.com>
6349
6350         * bus/bus.c: create and keep around a shared DBusUserDatabase
6351         object.
6352
6353         * bus/connection.c (bus_connection_get_groups): don't cache
6354         groups for user in the connection object, since user database
6355         object now does that.
6356
6357 2003-04-16  Havoc Pennington  <hp@redhat.com>
6358
6359         * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
6360         list of size counters
6361         (_dbus_message_loader_putback_message_link): put back a popped link
6362
6363         * dbus/dbus-connection.c
6364         (dbus_connection_set_max_live_messages_size): rename
6365         max_received_size
6366         (dbus_connection_get_outgoing_size): get size of outgoing
6367         queue
6368         (_dbus_connection_set_connection_counter): remove this cruft
6369
6370 2003-04-14  Havoc Pennington  <hp@redhat.com>
6371
6372         * dbus/dbus-userdb.c: user database abstraction, mostly to get
6373         caching, but at some point we might want to be able to use a
6374         different database.
6375
6376         * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
6377         SHA1 conf file to test the sha1 auth mechanism, since the regular
6378         test always uses EXTERNAL when available.
6379
6380         * configure.in,
6381         test/data/valid-config-files/debug-allow-all-sha1.conf.in:
6382         add conf file that requires use of sha1 auth
6383
6384 2003-04-13  Havoc Pennington  <hp@pobox.com>
6385
6386         * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
6387         from Philip Blundell to send messages and monitor them.
6388
6389 2003-04-13  Havoc Pennington  <hp@pobox.com>
6390
6391         * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
6392         callbacks
6393
6394         * test/data/valid-config-files/debug-allow-all.conf.in: allow all
6395         users
6396
6397         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
6398         fix to only recover unused bytes if we're already authenticated
6399         (_dbus_transport_get_is_authenticated): fix to still mark us
6400         authenticated if there are unused bytes.
6401
6402         * bus/dispatch.c: implement security policy checking
6403
6404         * bus/connection.c (bus_transaction_send_from_driver): new
6405
6406         * bus/bus.c (bus_context_check_security_policy): new
6407
6408         * bus/dispatch.c (send_service_nonexistent_error): delete this,
6409         now we just set the DBusError and it gets converted to an error
6410         reply.
6411
6412         * bus/connection.c (allow_user_function): enable code using actual
6413         data from the config file
6414
6415         * bus/policy.c (list_allows_user): handle wildcard rules for
6416         user/group connection perms
6417
6418 2003-04-13  Havoc Pennington  <hp@pobox.com>
6419
6420         * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
6421
6422         * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
6423
6424         * bus/policy.c (bus_policy_append_mandatory_rule)
6425         (bus_policy_append_default_rule, bus_policy_append_user_rule)
6426         (bus_policy_append_group_rule): new functions
6427
6428 2003-04-12  Havoc Pennington  <hp@pobox.com>
6429
6430         * bus/config-parser.c (bus_config_parser_new): fix a memleak
6431
6432         * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
6433         the pid/gid/uid, just for paranoia.
6434
6435         * test/break-loader.c (randomly_do_n_things): find a byte
6436         containing a type code, and randomly change it to a different
6437         type code.
6438
6439 2003-04-12  Havoc Pennington  <hp@pobox.com>
6440
6441         * bus/policy.h: change BusPolicy to be the thing from the config
6442         file, and rename old BusPolicy to BusClientPolicy
6443
6444         * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
6445         match change in how policy works
6446
6447         * dbus/dbus-internals.h: mark assert_not_reached as
6448         __attribute((noreturn))__
6449
6450 2003-04-11  Havoc Pennington  <hp@redhat.com>
6451
6452         * doc/dbus-specification.sgml: fix a spot with the wrong name for
6453         the broadcast service. Use boolean return for ServiceExists.
6454
6455 2003-04-11  Havoc Pennington  <hp@redhat.com>
6456
6457         * configure.in: add another directory to look for qt in.
6458
6459 2003-04-11  Havoc Pennington  <hp@redhat.com>
6460
6461         * AUTHORS: add Colin Walters
6462
6463 2003-04-11  Havoc Pennington  <hp@redhat.com>
6464
6465         * NEWS: update
6466
6467         * configure.in: 0.9
6468
6469 2003-04-11  Havoc Pennington  <hp@redhat.com>
6470
6471         * bus/messagebus.in: remove pid file when stopping the
6472         message bus, since the bus won't have privileges to remove it
6473         itself.
6474
6475 2003-04-11  Havoc Pennington  <hp@redhat.com>
6476
6477         * bus/bus.c (bus_context_new): move credentials change after
6478         creating pidfile
6479
6480 2003-04-11  Havoc Pennington  <hp@pobox.com>
6481
6482         * test/decode-gcov.c: add "below average functions" to the
6483         coverage report, and change how some of the code works.
6484
6485         * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
6486         not in the coverage stats.
6487
6488         * test/test-service.c (main): use _dbus_verbose not fprintf in a
6489         couple places so running the test suite doesn't result in megaspam.
6490
6491 2003-04-11  Havoc Pennington  <hp@pobox.com>
6492
6493         * bus/dispatch.c (check_existent_service_activation): accept a no
6494         memory error in a place we didn't before
6495
6496         * bus/test.c (bus_test_run_everything): remove hacky "do it twice
6497         in case the first one failed," since the test suite is less
6498         broken now.
6499
6500 2003-04-10  Havoc Pennington  <hp@pobox.com>
6501
6502         * bus/dispatch.c (check_segfault_service_activation): add test
6503         for launching an executable that just crashes.
6504
6505         * test/test-segfault.c (main): try setting coredumpsize to 0 so we
6506         don't leave a million cores. We'll see how portable this is.
6507
6508 2003-04-10  Havoc Pennington  <hp@pobox.com>
6509
6510         * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
6511         the possible parent failures before we fork, so that we don't
6512         fail to create a babysitter after creating the child.
6513
6514         * bus/activation.c (bus_activation_activate_service): kill child
6515         if we don't successfully complete the activation.
6516
6517 2003-04-10  Havoc Pennington  <hp@redhat.com>
6518
6519         * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
6520         the connection if it's disconnected
6521
6522         * bus/activation.c (bus_activation_service_created): use new
6523         transaction features to roll back removal of pending activation if
6524         we don't successfully create the service after all. Don't remove
6525         pending activation if the function fails.
6526
6527         * dbus/dbus-list.c (_dbus_list_insert_before_link)
6528         (_dbus_list_insert_after_link): new code to facilitate
6529         services.c fixes
6530
6531         * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
6532         new functionality, so we can preallocate the ability to insert
6533         into a hash table.
6534
6535         * bus/connection.c (bus_transaction_add_cancel_hook): new function
6536         allowing us to put custom hooks in a transaction to be used for
6537         cancelling said transaction
6538
6539         * doc/dbus-specification.sgml: add some discussion of secondary
6540         service owners, and disallow zero-length service names
6541
6542         * bus/services.c (bus_registry_acquire_service): new function,
6543         splits out part of bus_driver_handle_acquire_service() and fixes
6544         a bug where we didn't remove the service doing the acquiring
6545         from the secondary queue if we failed to remove the current owner
6546         from the front of the queue.
6547
6548 2003-04-10  Alexander Larsson  <alexl@redhat.com>
6549
6550         * doc/dbus-specification.sgml:
6551         s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
6552
6553 2003-04-10  Alexander Larsson  <alexl@redhat.com>
6554
6555         * bus/.cvsignore:
6556         * glib/.cvsignore:
6557         * test/.cvsignore:
6558         Added files to cvsignore
6559
6560         * dbus/dbus-message.h:
6561         * dbus/dbus-message.c: (dbus_message_iter_get_named):
6562         Make get_named() take two out argument and return a boolean.
6563         (dbus_message_iter_get_args_valist):
6564         Update usage of get_named().
6565         (dbus_message_iter_append_byte):
6566         Fix typo
6567         (dbus_message_iter_append_named)
6568         Fix typo
6569         (message_iter_test), (check_message_handling_type), (_dbus_message_test):
6570         More tests.
6571
6572 2003-04-10  Alexander Larsson  <alexl@redhat.com>
6573
6574         * dbus/dbus-marshal.[ch]:
6575         Add array_type_pos argument to _dbus_marshal_validate_arg.
6576         Let you pass a NULL end_pos to _dbus_marshal_validate_type.
6577
6578         * dbus/dbus-message.[ch]:
6579         Multi-dimensional arrays have full type specification in the
6580         outermost array. Iter code re-arranged to handle this.
6581         Added some more iter tests.
6582
6583         * doc/dbus-specification.sgml:
6584         Add me to authors.
6585         Remove old FIXME.
6586         Update new array encoding description.
6587         Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
6588
6589         * test/data/invalid-messages/array-with-mixed-types.message:
6590         * test/data/valid-messages/array-of-array-of-uint32.message:
6591         Change to the new array format.
6592
6593         * test/data/invalid-messages/too-short-dict.message:
6594         Fix bug in test.
6595
6596         * test/data/valid-messages/recursive-types.message:
6597         Fix up and extend test.
6598
6599 2003-04-10  Havoc Pennington  <hp@pobox.com>
6600
6601         * bus/dispatch.c: lots of fixes
6602
6603         * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
6604         (_dbus_loop_iterate): remove old "quit if no callbacks" code,
6605         that was crack, broke the test service.
6606
6607         * dbus/dbus-transport.c (_dbus_transport_open): fix error
6608         handling to avoid piling up errors if we get a failure on the
6609         first address.
6610
6611         * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
6612         pid in assertion failures.
6613
6614         * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
6615         to some fixed size of file descriptor array. Don't return TRUE
6616         anytime a timeout exists, that led to lots of busy loop silliness
6617         in the tests.
6618
6619 2003-04-09  Havoc Pennington  <hp@redhat.com>
6620
6621         * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
6622         I'd checked this in earlier but hadn't.
6623
6624 2003-04-09  Havoc Pennington  <hp@redhat.com>
6625
6626         * bus/dispatch.c (bus_dispatch_test): get a bit further through
6627         the activation test (man this is getting old!)
6628
6629 2003-04-09  Havoc Pennington  <hp@redhat.com>
6630
6631         * test/test-utils.c: use dispatch status function to fix this up
6632
6633         * bus/connection.c (connection_watch_callback): don't dispatch
6634         from here
6635         (connection_timeout_callback): don't dispatch from here
6636         (bus_connections_setup_connection): set the dispatch status function
6637         (bus_connection_disconnected): unset it
6638
6639         * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
6640         used to add a connection to be dispatched
6641         (_dbus_loop_iterate): do the dispatching at the end of each
6642         iteration
6643
6644         * dbus/dbus-connection.c
6645         (dbus_connection_set_dispatch_status_function): new function
6646         allowing us to fix up main loop usage
6647         (_dbus_connection_last_unref): free all the various function
6648         user data
6649         (dbus_connection_dispatch): call the DispatchStatusFunction
6650         whenever this function returns
6651         (dbus_connection_handle_watch): call DispatchStatusFunction
6652         (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
6653         (reply_handler_timeout): call DispatchStatusFunction
6654         (dbus_connection_flush): call DispatchStatusFunction
6655
6656 2003-04-09  Havoc Pennington  <hp@redhat.com>
6657
6658         * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
6659         a memory leak
6660
6661         * bus/dispatch.c (check_service_activated): fix bug in test
6662
6663         * dbus/dbus-mainloop.c (check_timeout): fix this up
6664
6665         * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
6666         verbose output so we can sort out output from different processes,
6667         e.g. in the activation case.
6668
6669 2003-04-08  Colin Walters  <walters@gnu.org>
6670
6671         * bus/bus.c (struct BusContext) [pidfile]: New member, to store
6672         the pid file.
6673         (bus_context_new): Set it.
6674         (bus_context_unref): Use it to delete the pid file.
6675
6676 2003-04-08  Havoc Pennington  <hp@redhat.com>
6677
6678         * test/data/invalid-messages/array-with-mixed-types.message:
6679         regression test that fails for the moment
6680
6681         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
6682         tests for convenience
6683
6684         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
6685         array of nil, it broke things.
6686
6687         * test/data/invalid-messages/array-of-nil.message: regression test
6688
6689         * test/data/valid-messages/array-of-array-of-uint32.message:
6690         happened to write this so added it to suite
6691
6692 2003-04-08  Havoc Pennington  <hp@redhat.com>
6693
6694         * bus/driver.c (bus_driver_handle_acquire_service): init
6695         retval/reply before checking name
6696
6697         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
6698         recursion depth argument
6699
6700         * dbus/dbus-message.h (struct DBusMessageIter): put some padding
6701         in the public struct for future extension
6702
6703         * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
6704         typo
6705
6706         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
6707         message
6708
6709         * doc/dbus-specification.sgml: fix typo
6710
6711 2003-04-08  Alexander Larsson  <alexl@redhat.com>
6712
6713         Implemented recursive types, named types and new-style iters
6714
6715         * bus/driver.c:
6716         * glib/test-thread-client.c: (thread_func):
6717         * glib/test-thread-server.c: (handle_test_message):
6718         * test/test-service.c: (handle_echo):
6719         Update to new api
6720
6721         * dbus/Makefile.am:
6722         * dbus/dbus-dict.c:
6723         * dbus/dbus-dict.h:
6724         * dbus/dbus.h
6725         Remove DBusDict
6726
6727         * dbus/dbus-internals.c: (_dbus_type_to_string):
6728         Update for new types.
6729
6730         * dbus/dbus-marshal.[ch]:
6731         Implement recursive types and the new marshalling format.
6732         Remove hardcoded dict marshalling.
6733         Marshal named types.
6734
6735         * dbus/dbus-message-builder.c:
6736         Add BYTE_ARRAY.
6737         Remove references to old types
6738
6739         * dbus/dbus-message.[ch]:
6740         New non-refcounted iter API that supports recursive iters.
6741         Use iters for appending, including support for recursive
6742         iters.
6743         Add byte and named type support.
6744         Update everything to new marshalling formats.
6745         Add tests for new API.
6746
6747         * dbus/dbus-protocol.h:
6748         Remove old array types.
6749         Add types: BYTE, ARRAY, DICT, NAMED
6750
6751         * dbus/dbus-string.c:
6752         * dbus/dbus-sysdeps.c:
6753         Make parse_double locale safe.
6754
6755         * dbus/dbus-test-main.c:
6756         Call setlocale.
6757
6758         * dbus/dbus-test.c:
6759         Kill dict test
6760
6761         * doc/dbus-specification.sgml:
6762         Update spec
6763
6764         * test/data/incomplete-messages/missing-body.message:
6765         * test/data/invalid-messages/bad-boolean.message:
6766         * test/data/invalid-messages/bad-boolean-array.message:
6767         * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
6768         * test/data/invalid-messages/boolean-has-no-value.message-raw:
6769         * test/data/invalid-messages/too-short-dict.message:
6770         * test/data/valid-messages/dict-simple.message:
6771         * test/data/valid-messages/dict.message:
6772         * test/data/valid-messages/emptiness.message:
6773         * test/data/valid-messages/lots-of-arguments.message:
6774         * test/data/valid-messages/no-padding.message:
6775         * test/data/valid-messages/recursive-types.message:
6776         Add missing NAME fields
6777         Fix up dicts & arrays
6778
6779         * test/data/invalid-messages/dict-with-nil-value.message:
6780         Removed, this is not invalid anymore.
6781
6782         * test/data/valid-messages/recursive-types.message:
6783         Add new test for deeply recursive types.
6784
6785 2003-04-07  Havoc Pennington  <hp@pobox.com>
6786
6787         * bus/driver.c (bus_driver_handle_acquire_service): return an
6788         error if you try to acquire a service that starts with ':'
6789
6790 2003-04-07  Havoc Pennington  <hp@redhat.com>
6791
6792         * doc/dbus-specification.sgml: require that base service names
6793         start with ':' and that the base service is created/deleted
6794         as first and last things a connection does on the bus
6795
6796         * bus/dispatch.c (check_existent_service_activation): lots more
6797         work on the activation test; it doesn't fully pass yet...
6798
6799         * test/test-service.c (main): fix so we don't memleak the
6800         connection to the message bus
6801         (filter_func): accept a message asking us to exit
6802
6803 2003-04-06  Havoc Pennington  <hp@pobox.com>
6804
6805         * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
6806         from Colin Walters
6807
6808         * configure.in: fixes to Qt detection from Colin Walters
6809
6810         * doc/Makefile.am: Only remove generated docbook dirs if they
6811         exist, from Colin Walters
6812
6813         * dbus/dbus-bus.c: change how we set well-known connections to
6814         NULL, so that it works if a single connection is stored in
6815         two well-known array slots.
6816
6817         * test/Makefile.am: remove a lot of stuff that isn't immediately
6818         useful, it's in CVS history if we want it.
6819
6820         * test/test-service.c: use dbus-mainloop instead of that
6821         watch.[hc] crack
6822
6823 2003-04-06  Havoc Pennington  <hp@pobox.com>
6824
6825         * dbus/Makefile.am: split lists of sources into stuff that goes in
6826         the library, util functions that go in the lib and are also used
6827         elsewhere, and util functions that are used in tests/daemon but
6828         don't go in the lib.
6829
6830         * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
6831         here so it can be used in test binaries also
6832
6833 2003-04-06  Havoc Pennington  <hp@pobox.com>
6834
6835         * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
6836         here in the parent process, so we can return an error if it
6837         fails. Also, move some of the code into the child so the parent
6838         is less hosed if we fail midway through.
6839
6840         * bus/bus.c (bus_context_new): move pidfile detection further up
6841         in the function, before we start overwriting sockets and such.
6842
6843         * bus/messagebus.in: adjust this a bit, not sure if it will work.
6844
6845         * configure.in: add --with-system-pid-file and --with-system-socket
6846
6847 2003-04-06  Colin Walters  <walters@verbum.org>
6848
6849         * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
6850
6851         * bus/system.conf.in: Declare a pidfile.
6852
6853         * bus/bus.c (bus_context_new): Test for an existing pid file, and
6854         create one (if appropriate).
6855
6856         * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
6857         (struct BusConfigParser) [pidfile]: New.
6858         (element_type_to_name, merge_included, start_busconfig_child)
6859         (bus_config_parser_end_element, bus_config_parser_content): Handle it.
6860         (bus_config_parser_unref): Free it.
6861         (bus_config_parser_get_pidfile): New function.
6862
6863         * bus/config-parser.h (_dbus_write_pid_file): Prototype.
6864
6865         * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
6866
6867         * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
6868
6869         * dbus/dbus-sysdeps.h: Prototype it.
6870
6871 2003-04-06  Havoc Pennington  <hp@pobox.com>
6872
6873         * bus/bus.c (bus_context_new): print the address in here, rather
6874         than in main(), because we need to do it before forking the daemon
6875
6876         * bus/dispatch.c (send_service_nonexistent_error): set the sender
6877         on the service nonexistent error
6878
6879         * bus/driver.c (bus_driver_handle_acquire_service): set the
6880         sender on the AcquireService reply
6881
6882         * test/data/valid-config-files/debug-allow-all.conf.in: Make test
6883         server also listen on a UNIX socket so services can connect to it.
6884
6885 2003-04-06  Havoc Pennington  <hp@pobox.com>
6886
6887         * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
6888         so it detects deadlocks and also we actually init threads when
6889         debugging.
6890
6891 2003-04-06  Havoc Pennington  <hp@pobox.com>
6892
6893         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
6894         save the domain socket name, and unlink it when we disconnect the
6895         server. Means that at least when we exit normally, we won't leave
6896         a bunch of junk in /tmp
6897
6898         * dbus/dbus-transport-unix.c
6899         (_dbus_transport_new_for_domain_socket): code cleanup (nicer
6900         memory management). (I was making a real change here but then
6901         didn't)
6902
6903 2003-04-06  Havoc Pennington  <hp@pobox.com>
6904
6905         * bus/bus.c (bus_context_new): fix wrong handling of
6906         server_data_slot_unref() in the error case.
6907
6908         * dbus/dbus-internals.h (_dbus_assert): change so it passes
6909         "(condition) != 0" to _dbus_real_assert so that
6910         "_dbus_assert (pointer)" doesn't cause a warning
6911
6912         * bus/main.c (main): accept --print-address option to print out
6913         the message bus address
6914
6915         * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
6916
6917         * dbus/dbus-transport.c (_dbus_transport_open): special error for
6918         "tmpdir" option to unix: address on client side
6919
6920         * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
6921         to unix: address
6922
6923         * configure.in (TEST_SOCKET_DIR): locate a temporary directory
6924         we can use to create sockets in the test suite.
6925
6926         * bus/main.c (signal_handler): on SIGTERM, exit the daemon
6927         cleanly. To be used for testing.
6928
6929         * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
6930
6931         * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
6932
6933         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
6934         handle trying to call this when there's no servers active
6935
6936 2003-04-05  Havoc Pennington  <hp@pobox.com>
6937
6938         * NEWS: update
6939
6940         * configure.in: 0.8
6941
6942 2003-04-05  Havoc Pennington  <hp@pobox.com>
6943
6944         * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
6945         crash on startup. Need to get "try starting the daemon"
6946         in the test suite I guess. ;-)
6947
6948         * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
6949         tracked the number of open connections; it's better done in
6950         application-specific code as you want it to span all servers etc.
6951
6952 2003-04-05  Havoc Pennington  <hp@pobox.com>
6953
6954         * bus/Makefile.am (install-data-hook): add missing DESTDIR,
6955         patch from Colin Walters
6956
6957 2003-04-05  Havoc Pennington  <hp@pobox.com>
6958
6959         * doc/config-file.txt (Elements): fix docs of <auth> to reflect
6960         reality; in fact multiple mechanisms are allowed.
6961
6962         * dbus/dbus-internals.c (_dbus_real_assert)
6963         (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
6964         _dbus_assert_not_reached() into functions, so that they don't show
6965         up in basic block counts for test coverage, and don't use up as
6966         much disk space. Does mean slower execution speed though, so
6967         assumes --disable-asserts is the normal production case.
6968
6969 2003-04-05  Havoc Pennington  <hp@pobox.com>
6970
6971         * test/Makefile.am (dist-hook): also dist *.in files
6972
6973         * NEWS: update
6974
6975         * configure.in: 0.7
6976
6977 2003-04-05  Havoc Pennington  <hp@pobox.com>
6978
6979         * dbus/dbus-string.c: docs warning
6980
6981         * dbus/dbus-spawn.c: missing docs
6982
6983         * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
6984
6985 2003-04-05  Havoc Pennington  <hp@pobox.com>
6986
6987         * bus/loop.c (bus_loop_iterate): fix the timeout code, using
6988         magic from GLib
6989
6990         * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
6991         to -1 once we've reaped the babysitter
6992         (_dbus_babysitter_handle_watch): do as much work as we can, not
6993         just one go of it
6994
6995         * bus/activation.c: add code using DBusBabysitter so that we
6996         handle it when a service fails to start up properly.
6997         (bus_activation_service_created): don't remove the activation
6998         entries as we go, just let them get removed when we free the pending
6999         activation. Unref reply messages after sending them.
7000
7001 2003-04-05  Havoc Pennington  <hp@pobox.com>
7002
7003         * test/decode-gcov.c (main): print per-directory stats in the report
7004
7005         * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
7006
7007 2003-04-05  Havoc Pennington  <hp@pobox.com>
7008
7009         * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
7010
7011         * test/decode-gcov.c: hack up a little program to suck data
7012         out of gcov files. Yes this is sort of silly.
7013
7014         * configure.in: define something in config.h and do an
7015         AM_CONDITIONAL when gcov is enabled
7016
7017 2003-04-04  Havoc Pennington  <hp@redhat.com>
7018
7019         * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
7020         return a "babysitter" object that is used to monitor the status of
7021         the spawned process and reap it when required.
7022
7023         * test/test-segfault.c, test/test-exit.c,
7024         test/test-sleep-forever.c: binaries that do various lame things,
7025         used in the test suite.
7026
7027         * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
7028
7029 2003-04-03  Havoc Pennington  <hp@pobox.com>
7030
7031         * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
7032         in preparation for modifying it, dbus-sysdeps is getting
7033         a bit unmanageable.
7034
7035 2003-04-03  Havoc Pennington  <hp@redhat.com>
7036
7037         * bus/loop.h, bus/loop.c: make the mainloop an object so we can
7038         have multiple ones
7039
7040         * bus/*.[hc]: adapt to mainloop change
7041
7042 2003-04-03  Havoc Pennington  <hp@redhat.com>
7043
7044         * bus/activation.c (load_directory): fix up memleaks
7045         (bus_activation_entry_free): free the entry
7046
7047         * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
7048         we get one from the message bus; fix memleaks.
7049
7050         * dbus/dbus-message.c (dbus_set_error_from_message): new function
7051
7052 2003-04-03  Havoc Pennington  <hp@pobox.com>
7053
7054         * bus/config-parser.c (bus_config_parser_unref): free
7055         list of mechanisms, bug discovered by test suite enhancements
7056         (putting system.conf and session.conf into suite)
7057
7058         * test/Makefile.am, test/test-service.c: add placeholder for a
7059         test service that we'll activate as part of test suite. Doesn't
7060         do anything yet.
7061
7062         * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
7063         setting NULL value, and use system malloc not dbus_malloc()
7064         when we have unavoidable memleakage.
7065
7066         * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
7067         didn't work, and support DBUS_BUS_ACTIVATION.
7068
7069         * bus/activation.c (child_setup): pass our well-known bus type to
7070         the child
7071
7072         * bus/config-parser.c: support <type> to specify well-known type
7073
7074         * doc/dbus-specification.sgml: document the env variables to
7075         locate well-known buses and find service activator
7076
7077 2003-04-02  Havoc Pennington  <hp@redhat.com>
7078
7079         * test/Makefile.am (all-local): add a rule to copy tests to
7080         builddir, so we can have generated tests. Use this to remove the
7081         silly hack for testing system.conf and session.conf. Will use this
7082         shortly to generate .service files pointing to test binaries.
7083
7084 2003-04-02  Havoc Pennington  <hp@redhat.com>
7085
7086         * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
7087         current alloc and needed new length, not max of the doubled
7088         allocation and needed new length. Also, when building tests,
7089         don't do the double-allocation stuff, just realloc every time.
7090
7091 2003-04-02  Havoc Pennington  <hp@redhat.com>
7092
7093         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
7094         in error messages
7095         (_dbus_string_get_dirname): new
7096         (_dbus_sysdeps_test): new
7097         (_dbus_directory_open): include dirnames in error messages
7098
7099         * bus/config-parser.c: interpret <include> and <includedir> and
7100         <servicedir> relative to config file location if the given
7101         filename is not absolute.
7102
7103         * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
7104
7105 2003-04-02  Havoc Pennington  <hp@redhat.com>
7106
7107         * bus/connection.c (bus_transaction_send_error_reply): set sender
7108         service for the error, and unref the reply on success
7109
7110         * bus/activation.c: convert to use BusTransaction so OOM can be
7111         handled correctly
7112         (bus_activation_service_created): set sender of the message
7113
7114 2003-04-01  Havoc Pennington  <hp@redhat.com>
7115
7116         * bus/config-parser.c, bus/bus.c: implement <servicedir> and
7117         <includedir> (at least mostly)
7118
7119         * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
7120         first, then the user ID
7121
7122 2003-04-01  Havoc Pennington  <hp@pobox.com>
7123
7124         * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
7125         function
7126
7127         * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
7128
7129         * dbus/dbus-internals.c (_dbus_dup_string_array): new function
7130
7131         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
7132         socket 0777, and unlink any existing socket.
7133
7134         * bus/bus.c (bus_context_new): change our UID/GID and fork if
7135         the configuration file so specifies; set up auth mechanism
7136         restrictions
7137
7138         * bus/config-parser.c (bus_config_parser_content): add support
7139         for <fork> option and fill in code for <auth>
7140
7141         * bus/system.conf.in: add <fork/> to default configuration,
7142         and limit auth mechanisms to EXTERNAL
7143
7144         * doc/config-file.txt (Elements): add <fork>
7145
7146         * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
7147         (_dbus_change_identity): new function
7148
7149 2003-03-31  Havoc Pennington  <hp@redhat.com>
7150
7151         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
7152         (_dbus_listen_unix_socket): fix off-by-one error in null
7153         termination spotted by Nalin
7154
7155 2003-03-31  Havoc Pennington  <hp@redhat.com>
7156
7157         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
7158         DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
7159         having a real home directory available.
7160
7161 2003-03-31  Havoc Pennington  <hp@redhat.com>
7162
7163         * bus/Makefile.am (install-data-hook): create /var/run/dbus
7164
7165         * bus/messagebus.in: add init script for Red Hat /etc/init.d
7166
7167         * configure.in: add support for specifying a style of init script
7168         to install
7169
7170 2003-03-31  Havoc Pennington  <hp@redhat.com>
7171
7172         Fix some annoying DBusString API and fix all affected code.
7173
7174         * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
7175         max_length argument
7176         (_dbus_string_get_data): change to return string instead of using
7177         an out param
7178         (_dbus_string_get_const_data): ditto
7179         (_dbus_string_get_data_len): ditto
7180         (_dbus_string_get_const_data_len): ditto
7181
7182 2003-03-31  Havoc Pennington  <hp@redhat.com>
7183
7184         * bus/main.c (main): fix up the command line arguments to be nicer
7185
7186 2003-03-31  Havoc Pennington  <hp@redhat.com>
7187
7188         * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
7189         define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
7190         final location that lands in the config file
7191
7192         * bus/config-loader-expat.c (bus_config_load): fix type of
7193         XML_Parser variable
7194
7195         * doc/TODO: remove TODO item for dbus_bus_get()
7196
7197         * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
7198
7199 2003-03-31  Havoc Pennington  <hp@pobox.com>
7200
7201         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
7202         (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
7203         argument since they are always client side
7204
7205         * dbus/dbus-server.c (dbus_server_get_address): new function
7206
7207         * bus/main.c (main): take the configuration file as an argument.
7208
7209         * test/data/valid-config-files/debug-allow-all.conf: new file to
7210         use with dispatch.c tests for example
7211
7212         * bus/test-main.c (main): require test data dir
7213
7214         * bus/bus.c (bus_context_new): change this to take a
7215         configuration file name as argument
7216
7217         * doc/config-file.txt (Elements): add <servicedir>
7218
7219         * bus/system.conf, bus/session.conf: new files
7220
7221         * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
7222         well-known socket if none set
7223
7224         * configure.in: create system.conf and session.conf
7225
7226 2003-03-30  Havoc Pennington  <hp@pobox.com>
7227
7228         * bus/config-parser.c: hacking
7229
7230         * dbus/dbus-memory.c: don't use DBusList for the list of stuff
7231         to shut down, since it could cause weirdness with the DBusList
7232         lock
7233
7234         * dbus/dbus-list.c (_dbus_list_test): add tests for the
7235         link-oriented stack routines
7236         (alloc_link): free the mempool if the first alloc from it fails
7237
7238         * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
7239
7240         * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
7241         from GLib
7242         (_dbus_string_skip_white): new
7243
7244         * doc/config-file.txt (Elements): add <includedir>
7245
7246 2003-03-28  Havoc Pennington  <hp@pobox.com>
7247
7248         * dbus/dbus-string.c (_dbus_string_copy_data_len)
7249         (_dbus_string_copy_data): new functions
7250
7251 2003-03-28  Anders Carlsson  <andersca@codefactory.se>
7252
7253         * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
7254         * dbus/dbus-bus.h:
7255         Add dbus_bus_get.
7256
7257         * dbus/dbus-memory.c:
7258         Fix a doc comment.
7259
7260 2003-03-28  Havoc Pennington  <hp@pobox.com>
7261
7262         * bus/test.c (bus_test_flush_bus): remove the sleep from here,
7263         I think it may have just been superstition. Not sure.
7264
7265         * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
7266         failures that were not being handled.
7267
7268         * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
7269
7270         * dbus/dbus-memory.c: add ability to set number of mallocs in a
7271         row that will fail on out-of-memory.
7272
7273         * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
7274         function for testing out-of-memory handling.
7275
7276         * bus/config-loader-expat.c (memsuite): don't wrap the dbus
7277         allocation functions, they do map exactly to the expat ones.
7278
7279 2003-03-27  Havoc Pennington  <hp@redhat.com>
7280
7281         * bus/config-loader-libxml.c (bus_config_load): add another error
7282         check
7283
7284 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
7285
7286         * doc/TODO:
7287         Add note about automatic service activation.
7288
7289         * doc/dbus-specification.sgml:
7290         Rename the specification and clarify a few things.
7291
7292 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
7293
7294         * Doxyfile.in:
7295         * dbus/dbus-address.c:
7296         * dbus/dbus-dict.c:
7297         * dbus/dbus-marshal.c:
7298         * dbus/dbus-server-debug-pipe.c:
7299         * dbus/dbus-transport-unix.c:
7300         Fix documentation warnings.
7301
7302 2003-03-26  Havoc Pennington  <hp@pobox.com>
7303
7304         * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
7305         after every test so it's quick and easy to see which leaked, and
7306         so we test multiple dbus_shutdown() calls
7307
7308         * configure.in: change configure.in XML stuff to also support
7309         expat
7310
7311         * config-loader-libxml.c: some hacking
7312
7313         * config-loader-expat.c: some hacking
7314
7315         * config-parser.c: some hacking, plus tests
7316
7317 2003-03-25  Havoc Pennington  <hp@redhat.com>
7318
7319         * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
7320
7321         * configure.in: add --with-xml option to specify XML library,
7322         right now only libxml is supported.
7323
7324         * bus/config-loader-libxml.c, config-parser.c: sync some minor
7325         nonworking code between home and work, still just stubs
7326
7327 2003-03-24  Havoc Pennington  <hp@redhat.com>
7328
7329         * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
7330         file
7331
7332         * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
7333         NULL argument for "message" if the error is a well-known one,
7334         fill in a generic message in this case.
7335
7336         * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
7337         favor of DBusError
7338
7339         * bus/test.c (bus_test_flush_bus): add
7340
7341         * bus/policy.c (bus_policy_test): test code stub
7342
7343 2003-03-24  Havoc Pennington  <hp@pobox.com>
7344
7345         * bus/connection.c (bus_connections_setup_connection): set up
7346         the "can this user connect" function, but it always returns
7347         TRUE until we have a config file parser so we can have a config
7348         file that allows connections.
7349
7350 2003-03-23  Havoc Pennington  <hp@pobox.com>
7351
7352         * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
7353         DBUS_BUILD_TESTS, actually alloc/free a block of memory for
7354         the mutex, so we can check for proper memory management
7355         and OOM handling.
7356
7357         * dbus/dbus-dataslot.c: remove the mutex from
7358         DBusDataSlotAllocator and lock it manually when using it,
7359         to simplify fitting it into the global slots framework.
7360
7361         * dbus/dbus-threads.c (init_static_locks): rework how we're
7362         handling global locks so they are easily shut down.
7363
7364         * bus/policy.c (bus_policy_append_rule): fix
7365
7366         * bus/test-main.c (main): check for memleaks
7367
7368         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
7369         test suite check for memleaks
7370
7371         * dbus/dbus-memory.c: add support in test mode for tracking
7372         number of outstanding blocks
7373
7374 2003-03-23  Havoc Pennington  <hp@pobox.com>
7375
7376         * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
7377         policies code
7378
7379         * dbus/dbus-hash.h: add ULONG hash keys
7380
7381         * dbus/dbus-sysdeps.c (_dbus_get_groups): new
7382         (_dbus_get_group_id): new function
7383
7384 2003-03-20  Havoc Pennington  <hp@redhat.com>
7385
7386         * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
7387         new function
7388         (dbus_connection_get_unix_user): new function
7389
7390 2003-03-20  Havoc Pennington  <hp@pobox.com>
7391
7392         * bus/connection.c (bus_connection_send_oom_error): assert that
7393         message has a sender
7394         (connection_execute_transaction): ditto
7395         (bus_connection_preallocate_oom_error): fix to set the sender, and
7396         set recipient to the destination service, not the bus driver
7397
7398         * bus/policy.c: hacking
7399
7400         * dbus/dbus-message.c (dbus_message_service_is): new function
7401         (dbus_message_sender_is): new
7402
7403 2003-03-19  Havoc Pennington  <hp@redhat.com>
7404
7405         * bus/policy.c: start sketching code for policy restrictions on
7406         what connections can do.
7407
7408 2003-03-18  Havoc Pennington  <hp@redhat.com>
7409
7410         * doc/TODO: some notes on high-level todo items. Little nitpick
7411         stuff is all in @todo, so no need to add it here.
7412
7413         * doc/config-file.txt: some notes on how config file might look
7414
7415 2003-03-18  Anders Carlsson  <andersca@codefactory.se>
7416
7417         * configure.in: 0.6
7418
7419         * NEWS: Update.
7420
7421 2003-03-17  Havoc Pennington  <hp@redhat.com>
7422
7423         * dbus/dbus-internals.h: add gcc attributes so that
7424         our printf-style functions warn on bad arguments to
7425         format
7426
7427         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
7428         format bug
7429
7430         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
7431         printf format bug
7432
7433 2003-03-17  Havoc Pennington  <hp@redhat.com>
7434
7435         * bus/test-main.c (main): make it print something as it runs
7436         so make check doesn't look stuck
7437
7438         * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
7439         from CVS, now obsolete
7440
7441 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
7442
7443         * bus/dispatch.c: (bus_dispatch):
7444         Refetch the service name since it may have been reallocated
7445         when dbus_message_set_sender was called.
7446
7447         * dbus/dbus-sysdeps.c: (_dbus_accept):
7448         Add address and address length variables and use them to stop
7449         valgrind from complaining.
7450
7451 2003-03-17  Havoc Pennington  <hp@pobox.com>
7452
7453         All tests pass, no memleaks, no valgrind complaints.
7454
7455         * bus/test.c: refcount handler_slot
7456
7457         * bus/connection.c (bus_connections_new): refcount
7458         connection_data_slot
7459
7460         * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
7461         bytes so that auth scripts pass.
7462
7463         * bus/dispatch.c: init message_handler_slot so it gets allocated
7464         properly
7465
7466         * bus/dispatch.c (message_handler_slot_ref): fix memleak
7467
7468         * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
7469         dealloc server_pipe_hash when no longer used for benefit of
7470         leak checking
7471
7472         * dbus/dbus-auth.c (process_command): memleak fix
7473
7474         * bus/dispatch.c (check_hello_message): memleak fix
7475
7476 2003-03-16  Havoc Pennington  <hp@pobox.com>
7477
7478         * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
7479
7480 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
7481
7482         * bus/activation.c (bus_activation_activate_service): Append
7483         the pending activation entry to the list of pending activations.
7484
7485 2003-03-16  Havoc Pennington  <hp@pobox.com>
7486
7487         * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
7488         connections
7489
7490         * dbus/dbus-address.c (create_entry): fix OOM handling when
7491         failing to alloc entry->method
7492
7493 2003-03-16  Havoc Pennington  <hp@pobox.com>
7494
7495         * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
7496         the watch
7497
7498         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
7499         add some missing dbus_set_result
7500
7501         * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
7502         alloc the DBusMessageHandler
7503
7504         * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
7505         the transport here, since we call this from the finalizer; it
7506         resulted in a double-finalize.
7507
7508         * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
7509         where we tried to use transport->connection that was NULL,
7510         happened when transport was disconnected early on due to OOM
7511
7512         * bus/*.c: adapt to handle OOM for watches/timeouts
7513
7514         * dbus/dbus-transport-unix.c: port to handle OOM during
7515         watch handling
7516
7517         * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
7518         reference to unused bytes instead of a copy
7519
7520         * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
7521         out of memory
7522
7523         * dbus/dbus-connection.c (dbus_connection_handle_watch): return
7524         FALSE on OOM
7525
7526         * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
7527         of memory
7528
7529 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
7530
7531         * doc/dbus-specification.sgml:
7532         Document reply message for ActivateService.
7533
7534 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
7535
7536         * bus/activation.c: (bus_pending_activation_entry_free),
7537         (bus_pending_activation_free), (bus_activation_new),
7538         (bus_activation_unref), (bus_activation_service_created),
7539         (bus_activation_activate_service):
7540         * bus/activation.h:
7541         * bus/bus.c: (bus_context_new):
7542         * bus/desktop-file.c: (new_section):
7543         * bus/driver.c: (bus_driver_send_service_deleted),
7544         (bus_driver_handle_activate_service):
7545         * bus/services.c: (bus_registry_new), (bus_registry_ensure):
7546         * bus/services.h:
7547         * dbus/dbus-connection.c:
7548         (dbus_connection_send_with_reply_and_block):
7549         * dbus/dbus-message.c: (dbus_message_append_args_valist):
7550         * dbus/dbus-protocol.h:
7551         Make activation work better. Now pending activations will be queued
7552         and the daemon won't try to activate services that are already registered.
7553
7554 2003-03-16  Havoc Pennington  <hp@pobox.com>
7555
7556         * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
7557         connection data
7558
7559         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
7560         DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
7561
7562 2003-03-16  Havoc Pennington  <hp@pobox.com>
7563
7564         * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
7565         this. always run the test suite before commit...
7566
7567         * bus/*: adapt to DBusConnection API changes
7568
7569         * glib/dbus-gmain.c: adapt to DBusConnection API changes,
7570         requires renaming stuff to avoid dbus_connection_dispatch name
7571         conflict.
7572
7573         * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
7574         function
7575
7576         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
7577         separate from _dbus_message_loader_return_buffer()
7578
7579         * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
7580         this, because it's now always broken to use; the number of
7581         messages in queue vs. the number still buffered by the message
7582         loader is undefined/meaningless. Should use
7583         dbus_connection_get_dispatch_state().
7584         (dbus_connection_dispatch): rename from
7585         dbus_connection_dispatch_message
7586
7587 2003-03-16  Havoc Pennington  <hp@pobox.com>
7588
7589         * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
7590         implementation
7591
7592 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
7593
7594         * dbus/dbus-connection.c:
7595         (dbus_connection_send_with_reply_and_block):
7596         Decrease connection->n_incoming when removing an entry
7597         from the list.
7598         * dbus/dbus-dict.c: (dbus_dict_entry_free),
7599         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
7600         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
7601         (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
7602         (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
7603         (dbus_dict_get_byte_array):
7604         Handle NULL arrays and strings. Also add support for byte arrays.
7605
7606         * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
7607         (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
7608         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
7609         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
7610         (_dbus_demarshal_dict), (demarshal_and_validate_len),
7611         (_dbus_marshal_validate_arg), (_dbus_marshal_test):
7612         * dbus/dbus-marshal.h:
7613         Add support for marshalling and demarshalling empty arrays and strings.
7614
7615         * dbus/dbus-message.c: (dbus_message_append_args_valist),
7616         (dbus_message_append_string_array),
7617         (dbus_message_iter_get_boolean),
7618         (dbus_message_iter_get_boolean_array),
7619         (dbus_message_iter_get_int32_array),
7620         (dbus_message_iter_get_uint32_array),
7621         (dbus_message_iter_get_double_array),
7622         (dbus_message_iter_get_byte_array),
7623         (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
7624         (check_message_handling):
7625         Add support for getting empty arrays and dicts.
7626
7627         * dbus/dbus-string.c: (_dbus_string_validate_utf8):
7628         Don't do any validation at all for now, that's better than just checking
7629         for ASCII.
7630
7631         * test/data/valid-messages/emptiness.message:
7632         New test message with lots of empty arrays.
7633
7634 2003-03-16  Havoc Pennington  <hp@pobox.com>
7635
7636         * dbus/dbus-connection.c
7637         (_dbus_connection_queue_received_message_link): new function that
7638         can't fail due to OOM
7639
7640         * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
7641         new function pops a message together with a list link
7642         containing it.
7643
7644         * dbus/dbus-transport-unix.c (queue_messages): use new link-based
7645         message queuing functions to avoid needing to alloc memory
7646
7647 2003-03-16  Havoc Pennington  <hp@pobox.com>
7648
7649         Oops - test code was only testing failure of around 30 of the
7650         mallocs in the test path, but it turns out there are 500+
7651         mallocs. I believe this was due to misguided linking setup such
7652         that there was one copy of dbus_malloc etc. in the daemon and one
7653         in the shared lib, and only daemon mallocs were tested. In any
7654         case, the test case now tests all 500+ mallocs, and doesn't pass
7655         yet, though there are lots of fixes in this patch.
7656
7657         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
7658         this so that it doesn't need to allocate memory, since it
7659         has no way of indicating failure due to OOM (and would be
7660         annoying if it did).
7661
7662         * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
7663
7664         * bus/Makefile.am: rearrange to create two self-contained
7665         libraries, to avoid having libraries with overlapping symbols.
7666         that was resulting in weirdness, e.g. I'm pretty sure there
7667         were two copies of global static variables.
7668
7669         * dbus/dbus-internals.c: move the malloc debug stuff to
7670         dbus-memory.c
7671
7672         * dbus/dbus-list.c (free_link): free list mempool if it becomes
7673         empty.
7674
7675         * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
7676
7677         * dbus/dbus-address.c (dbus_parse_address): free list nodes
7678         on failure.
7679
7680         * bus/dispatch.c (bus_dispatch_add_connection): free
7681         message_handler_slot when no longer using it, so
7682         memory leak checkers are happy for the test suite.
7683
7684         * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
7685
7686         * bus/bus.c (new_connection_callback): disconnect in here if
7687         bus_connections_setup_connection fails.
7688
7689         * bus/connection.c (bus_connections_unref): fix to free the
7690         connections
7691         (bus_connections_setup_connection): if this fails, don't
7692         disconnect the connection, just be sure there are no side
7693         effects.
7694
7695         * dbus/dbus-string.c (undo_alignment): unbreak this
7696
7697         * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
7698         leaking
7699         (_dbus_auth_new): fix the order in which we free strings
7700         on OOM failure
7701
7702         * bus/connection.c (bus_connection_disconnected): fix to
7703         not send ServiceDeleted multiple times in case of memory
7704         allocation failure
7705
7706         * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
7707         get the base service name
7708         (dbus_bus_register_client): don't return base service name,
7709         instead store it on the DBusConnection and have an accessor
7710         function for it.
7711         (dbus_bus_register_client): rename dbus_bus_register()
7712
7713         * bus/dispatch.c (check_hello_message): verify that other
7714         connections on the bus also got the correct results, not
7715         just the one sending hello
7716
7717 2003-03-15  Havoc Pennington  <hp@pobox.com>
7718
7719         Make it pass the Hello handling test including all OOM codepaths.
7720         Now to do other messages...
7721
7722         * bus/services.c (bus_service_remove_owner): fix crash when
7723         removing owner from an empty list of owners
7724         (bus_registry_ensure): don't leave service in the list of
7725         a connection's owned services if we fail to put the service
7726         in the hash table.
7727
7728         * bus/connection.c (bus_connection_preallocate_oom_error): set
7729         error flag on the OOM error.
7730
7731         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
7732         handle _dbus_transport_set_connection failure
7733
7734         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
7735         to create watches up front and simply enable/disable them as
7736         needed.
7737         (unix_connection_set): this can now fail on OOM
7738
7739         * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
7740         of enabling/disabling a watch or timeout.
7741
7742         * bus/loop.c (bus_loop_iterate): don't touch disabled
7743         watches/timeouts
7744
7745         * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
7746
7747 2003-03-15  Havoc Pennington  <hp@pobox.com>
7748
7749         * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
7750         write useful test code, after all that futzing around ;-)
7751
7752         Test does not yet pass because we can't handle OOM in
7753         _dbus_transport_messages_pending (basically,
7754         dbus_connection_preallocate_send() does not prealloc the write
7755         watch). To fix this, I think we need to add new stuff to
7756         set_watch_functions, namely a SetEnabled function so we can alloc
7757         the watch earlier, then enable it later.
7758
7759         * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
7760         dbus-memory.c to the convenience lib
7761
7762         * bus/test.c: rename some static functions to keep them clearly
7763         distinct from stuff in connection.c. Handle client disconnection.
7764
7765 2003-03-14  Havoc Pennington  <hp@pobox.com>
7766
7767         * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
7768         transport, tests more of the real codepath. Set up clients
7769         with bus_setup_debug_client.
7770
7771         * bus/test.c (bus_setup_debug_client): function to set up debug
7772         "clients" on the main loop
7773
7774         * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
7775         support
7776
7777         * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
7778         server type
7779
7780         * dbus/dbus-server-debug.c: support a debug server based on pipes
7781
7782         * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
7783         (_dbus_close): new function
7784
7785         * configure.in: check for socketpair
7786
7787 2003-03-14  Havoc Pennington  <hp@redhat.com>
7788
7789         * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
7790         cheesy hack
7791
7792         * dbus/dbus-transport-debug.c: rework this a good bit to be
7793         less complicated. hopefully still works.
7794
7795         * dbus/dbus-server-debug.c (handle_new_client): remove timeout
7796         manually
7797
7798         * glib/dbus-gmain.c (timeout_handler): don't remove timeout
7799         after running it
7800
7801         * dbus/dbus-message.c (dbus_message_copy): rename from
7802         dbus_message_new_from_message, fix it up to copy
7803         all the message fields, add test case
7804
7805         * bus/dispatch.c (bus_dispatch_test): add some more test code,
7806         not quite passing yet
7807
7808 2003-03-14  Havoc Pennington  <hp@pobox.com>
7809
7810         * bus/loop.c (bus_loop_iterate): add this so we can "run loop
7811         until no work remains" in test code. (the large diff here
7812         is just code movement, no actual changes)
7813
7814         * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
7815         1, no point waiting around for test code.
7816         (_dbus_server_debug_accept_transport): unref the timeout
7817         after adding it (right?)
7818
7819         * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
7820
7821 2003-03-13  Havoc Pennington  <hp@redhat.com>
7822
7823         * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
7824         out of memory
7825
7826         * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
7827         of memory
7828
7829         * dbus/dbus-connection.h: Make AddWatchFunction and
7830         AddTimeoutFunction return a bool so they can fail on out-of-memory
7831
7832         * bus/bus.c (bus_context_new): set up timeout handlers
7833
7834         * bus/connection.c (bus_connections_setup_connection): set up
7835         timeout handlers
7836
7837         * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
7838         can fail
7839
7840         * bus/bus.c (bus_context_new): adapt to changes
7841
7842         * bus/connection.c: adapt to changes
7843
7844         * test/watch.c: adapt to DBusWatch changes
7845
7846         * bus/dispatch.c (bus_dispatch_test): started adding this but
7847         didn't finish
7848
7849 2003-03-14  Anders Carlsson  <andersca@codefactory.se>
7850
7851         * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
7852
7853 2003-03-13  Havoc Pennington  <hp@pobox.com>
7854
7855         * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
7856         set up a test framework as for the library
7857
7858 2003-03-12  Havoc Pennington  <hp@pobox.com>
7859
7860         Throughout: purge global variables, introduce BusActivation,
7861         BusConnections, BusRegistry, etc. objects instead.
7862
7863         * bus/bus.h, bus/bus.c: introduce BusContext as a global
7864         message bus object
7865
7866         * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
7867         going to redo this a bit differently I think
7868
7869 2003-03-12  Havoc Pennington  <hp@redhat.com>
7870
7871         Mega-patch that gets the message bus daemon initially handling
7872         out-of-memory. Work still needed. Also lots of random
7873         moving stuff to DBusError instead of ResultCode.
7874
7875         * dbus/dbus-list.c (_dbus_list_length_is_one): new function
7876
7877         * dbus/dbus-connection.c
7878         (dbus_connection_send_with_reply_and_block): use DBusError
7879
7880         * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
7881         DBusResultCode
7882
7883         * dbus/dbus-connection.c (dbus_connection_send): drop the result
7884         code here, as the only failure possible is OOM.
7885
7886         * bus/connection.c (bus_connection_disconnect):
7887         rename bus_connection_disconnected as it's a notification only
7888
7889         * bus/driver.c (bus_driver_handle_acquire_service): don't free
7890         "name" on get_args failure, should be done by get_args;
7891         don't disconnect client for bad args, just return an error.
7892         (bus_driver_handle_service_exists): ditto
7893
7894         * bus/services.c (bus_services_list): NULL-terminate returned array
7895
7896         * bus/driver.c (bus_driver_send_service_lost)
7897         (bus_driver_send_service_acquired): send messages from driver to a
7898         specific client to the client's unique name, not to the broadcast
7899         service.
7900
7901         * dbus/dbus-message.c (decode_header_data): reject messages that
7902         contain no name field
7903         (_dbus_message_get_client_serial): rename to
7904         dbus_message_get_serial and make public
7905         (_dbus_message_set_serial): rename from set_client_serial
7906         (_dbus_message_set_reply_serial): make public
7907         (_dbus_message_get_reply_serial): make public
7908
7909         * bus/connection.c (bus_connection_foreach): allow stopping
7910         iteration by returning FALSE from foreach function.
7911
7912         * dbus/dbus-connection.c (dbus_connection_send_preallocated)
7913         (dbus_connection_free_preallocated_send)
7914         (dbus_connection_preallocate_send): new API for sending a message
7915         without possibility of malloc failure.
7916         (dbus_connection_send_message): rename to just
7917         dbus_connection_send (and same for whole function family)
7918
7919         * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
7920
7921         * dbus/dbus-sysdeps.c (_dbus_exit): new function
7922
7923         * bus/activation.c: handle/return errors
7924
7925         * dbus/dbus-errors.h: add more DBUS_ERROR #define
7926
7927         * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
7928         (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
7929         (_dbus_result_from_errno): move to this file
7930
7931 2003-03-10  Anders Carlsson  <andersca@codefactory.se>
7932
7933         * dbus/dbus-marshal.c:
7934         (_dbus_marshal_set_string):
7935         Take a length argument so we can marshal the correct string
7936         length.
7937
7938         (_dbus_marshal_dict), (_dbus_demarshal_dict),
7939         (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
7940         (_dbus_marshal_test):
7941         * dbus/dbus-marshal.h:
7942         Add support for marshalling and demarshalling dicts.
7943
7944         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
7945         Add support for TYPE DICT.
7946
7947         * dbus/dbus-message.c: (set_string_field):
7948         Adjust header padding.
7949
7950         (dbus_message_append_args_valist), (dbus_message_append_dict),
7951         (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
7952         (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
7953         (check_message_handling), (check_have_valid_message):
7954         * dbus/dbus-message.h:
7955         Add functions for setting and getting dicts.
7956
7957         * dbus/dbus-protocol.h:
7958         Add DBUS_TYPE_DICT.
7959
7960         * dbus/dbus.h:
7961         Add dbus-dict.h
7962
7963         * doc/dbus-specification.sgml:
7964         Add information about how dicts are marshalled.
7965
7966         * test/data/invalid-messages/dict-with-nil-value.message:
7967         * test/data/invalid-messages/too-short-dict.message:
7968         * test/data/valid-messages/dict-simple.message:
7969         * test/data/valid-messages/dict.message:
7970         Add sample messages containing dicts.
7971
7972 2003-03-08  Anders Carlsson  <andersca@codefactory.se>
7973
7974         * dbus/dbus-dict.h: Add DBUS_END_DECLS.
7975
7976 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
7977
7978         * dbus/Makefile.am:
7979         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
7980         (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
7981         (dbus_dict_set_int32), (dbus_dict_set_uint32),
7982         (dbus_dict_set_double), (dbus_dict_set_string),
7983         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
7984         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
7985         (dbus_dict_set_string_array), (_dbus_dict_test):
7986         * dbus/dbus-dict.h:
7987         Fix according to comments from Havoc.
7988
7989 2003-03-06  Michael Meeks  <michael@server.home>
7990
7991         * configure.in: if we don't have kde-config, disable have_qt.
7992
7993 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
7994
7995         * dbus/Makefile.am:
7996         Add dbus-dict.[ch]
7997
7998         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
7999         (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
8000         (dbus_dict_remove), (dbus_dict_get_value_type),
8001         (dbus_dict_get_keys), (dbus_dict_put_boolean),
8002         (dbus_dict_put_int32), (dbus_dict_put_uint32),
8003         (dbus_dict_put_double), (dbus_dict_put_string),
8004         (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
8005         (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
8006         (dbus_dict_put_string_array), (dbus_dict_get_boolean),
8007         (dbus_dict_get_int32), (dbus_dict_get_uint32),
8008         (dbus_dict_get_double), (dbus_dict_get_string),
8009         (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
8010         (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
8011         (dbus_dict_get_string_array), (_dbus_dict_test):
8012         * dbus/dbus-dict.h:
8013         Add DBusDict implementation
8014
8015         * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
8016         * dbus/dbus-test.h:
8017         Add _dbus_dict_test
8018
8019 2003-03-04  Havoc Pennington  <hp@pobox.com>
8020
8021         * test/data/auth/*: adapt to changes
8022
8023         * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
8024         USERID_BASE64 and change USERNAME_BASE64 to put in username not
8025         userid
8026
8027         * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
8028         more stuff from being in a context name, to make the protocol
8029         simpler to deal with
8030
8031         * dbus/dbus-errors.c (dbus_error_has_name): new function
8032         (dbus_error_is_set): new function
8033
8034         * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
8035         with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
8036
8037         * dbus/dbus-connection.c (dbus_connection_flush): also read
8038         messages during a flush operation
8039
8040         * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
8041
8042 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
8043
8044         * configure.in: Check for gethostbyname on Solaris.
8045
8046         * dbus/dbus-transport.c: (_dbus_transport_open):
8047         Remove duplicate "tcp" entry.
8048
8049         * doc/dbus-specification.sgml:
8050         Clarify some things.
8051
8052 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
8053
8054         * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
8055         * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
8056         (_dbus_keyring_test):
8057         * dbus/dbus-md5.c: (_dbus_md5_compute):
8058         * dbus/dbus-sha.c: (_dbus_sha_compute):
8059         Plug memory leaks.
8060
8061 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
8062
8063         * README: Add some things.
8064
8065 2003-03-04  Anders Carlsson  <andersca@codefactory.se>
8066
8067         * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
8068         after case DBUS_TYPE_BOOELAN.
8069
8070 2003-03-02  Havoc Pennington  <hp@pobox.com>
8071
8072         * test/break-loader.c (randomly_set_extreme_ints): add test that
8073         sets really huge and small integers
8074
8075         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
8076         that length of boolean array fits in the string, and that
8077         string has room for boolean value in single-bool case.
8078
8079         * dbus/dbus-message-builder.c (_dbus_message_data_load): add
8080         optional value to "ALIGN" command which is what to fill the
8081         alignment with.
8082
8083         * test/data/valid-messages/no-padding.message: add regression
8084         test for the message padding problem
8085
8086 2003-03-02  Havoc Pennington  <hp@pobox.com>
8087
8088         * dbus/dbus-message.c (decode_header_data): fix to always init
8089         message_padding, from Benjamin Dauvergne
8090
8091 2003-03-02  Havoc Pennington  <hp@pobox.com>
8092
8093         * configure.in: 0.5
8094
8095         * NEWS: Update.
8096
8097 2003-03-01  Joe Shaw  <joe@assbarn.com>
8098
8099         * configure.in: Check for "struct cmsgcred" and try to access its
8100         members for BSD-like unices.
8101
8102         * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
8103         _dbus_read_credentials_unix_socket().
8104         (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
8105         read() for reading the credential byte off the unix socket.  Use
8106         struct cmsgcred on systems that support it.
8107
8108 2003-02-27  Alexander Larsson  <alexl@redhat.com>
8109
8110         * glib/Makefile.am:
8111         * configure.in:
8112         Make gthreads-2.0 dependency optional. Don't build thread test if
8113         its not found.
8114
8115 2003-02-27  Havoc Pennington  <hp@pobox.com>
8116
8117         * dbus/dbus-connection.c
8118         (dbus_connection_send_message_with_reply_and_block): fix doh!
8119         doh! doh! bug that resulted in never removing a reply from the
8120         queue, no wonder we called get_reply_serial so much ;-)
8121
8122         * dbus/dbus-message.c (struct DBusMessage): cache reply serial
8123         and client serial instead of demarshaling them every time
8124
8125 2003-02-27  Havoc Pennington  <hp@pobox.com>
8126
8127         * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
8128         more inlined, using dbus-string-private.h, speeds things up
8129         substantially
8130
8131         * dbus/dbus-string.c (_dbus_string_free): apply align offset
8132         when freeing the string
8133         (_dbus_string_steal_data): fix for align offset
8134         (undo_alignment): new function
8135
8136 2003-02-26  Havoc Pennington  <hp@redhat.com>
8137
8138         All kinds of audit fixes from Owen, plus initial attempt to
8139         handle unaligned memory returned from malloc.
8140
8141         * dbus/dbus-string.c (_dbus_string_init): clamp max length to
8142         leave room for align_offset and nul byte
8143         (fixup_alignment): function to track an align_offset and
8144         ensure real->str is aligned
8145         (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
8146         to allow a nul byte plus align offset
8147         (_dbus_string_lock): fix overflow issue
8148         (_dbus_string_init_const_len): add assertions on sanity of len,
8149         assign allocated to be ALLOCATION_PADDING larger than len
8150         (set_length): fixup the overflow handling
8151         (_dbus_string_get_data_len): fix overflow in assertion
8152         (open_gap): detect overflow in size of gap to be opened
8153         (_dbus_string_lengthen): add overflow check
8154         (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
8155         (_dbus_string_append): add overflow check
8156         (_dbus_string_append_unichar): overflow
8157         (_dbus_string_delete): fix overflow in assertion
8158         (_dbus_string_copy_len): overflow in assertion
8159         (_dbus_string_replace_len): overflows in assertions
8160         (_dbus_string_find): change to implement in terms of
8161         _dbus_string_find_to
8162         (_dbus_string_find_to): assorted fixage
8163         (_dbus_string_equal_c_str): assert c_str != NULL,
8164         fix logic so the function works
8165         (_dbus_string_ends_with_c_str): fix overflow thingy
8166         (_dbus_string_base64_encode): overflow fix
8167         (_dbus_string_validate_ascii): overflow
8168         (_dbus_string_validate_nul): overflow
8169
8170 2003-02-26  Havoc Pennington  <hp@redhat.com>
8171
8172         * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
8173
8174 2003-02-26  Alexander Larsson  <alexl@redhat.com>
8175
8176         * configure.in:
8177         Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
8178
8179         * dbus/dbus-connection.c:
8180         * dbus/dbus-connection.h:
8181         Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
8182         Add dbus_connection_set_wakeup_main_function and use it when queueing
8183         incoming and outgoing messages.
8184
8185
8186         * dbus/dbus-dataslot.c:
8187         Threadsafe usage of DBusDataSlotAllocator
8188
8189         * dbus/dbus-message.c: (dbus_message_get_args_iter):
8190         dbus_new can fail.
8191
8192         * dbus/dbus-server-unix.c:
8193         Add todo comment
8194
8195         * glib/dbus-gmain.c:
8196         Implement the new wakeup functions for glib.
8197
8198         * glib/Makefile.am:
8199         * glib/test-thread-client.c:
8200         * glib/test-thread-server.c:
8201         * glib/test-thread.h:
8202         Initial cut at some thread test code. Not really done yet.
8203
8204 2003-02-26  Havoc Pennington  <hp@pobox.com>
8205
8206         * dbus/dbus-connection.c
8207         (dbus_connection_send_message_with_reply_and_block): fix crash
8208         where we ref'd the outgoing message instead of the returned reply
8209
8210         * dbus/dbus-transport-unix.c (do_authentication): check read watch
8211         at the end of this function, so if we didn't need to read for
8212         authentication, we reinstall it for receiving messages
8213
8214         * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
8215         a NULL sender for peer-to-peer case
8216
8217         * dbus/dbus-transport-unix.c (check_read_watch): handle
8218         !authenticated case correctly
8219
8220         * glib/dbus-gmain.c: add support for DBusServer
8221
8222         * dbus/dbus-server.c: add data slot support
8223
8224         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
8225         return values and handle errors
8226
8227         * dbus/dbus-dataslot.c: factor out the data slot stuff from
8228         DBusConnection
8229
8230         * Doxyfile.in (INPUT): add glib subdir
8231
8232         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
8233         setup_with_g_main instead of hookup_with_g_main; write docs
8234
8235 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
8236
8237         * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
8238         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
8239         * dbus/dbus-message.c: (dbus_message_append_boolean),
8240         (dbus_message_append_boolean_array),
8241         (dbus_message_get_args_valist), (_dbus_message_test):
8242         * dbus/dbus-message.h:
8243         * doc/dbus-specification.sgml:
8244         Various fixes as pointed out by Havoc.
8245
8246         * test/data/invalid-messages/bad-boolean-array.message:
8247         * test/data/invalid-messages/bad-boolean.message:
8248         Add invalid boolean value test cases.
8249
8250 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
8251
8252         * dbus/dbus-internals.c: (_dbus_type_to_string):
8253         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
8254         (_dbus_marshal_validate_arg):
8255         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
8256         * dbus/dbus-message.c: (dbus_message_append_args_valist),
8257         (dbus_message_append_boolean), (dbus_message_append_boolean_array),
8258         (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
8259         (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
8260         (dbus_message_iter_get_double),
8261         (dbus_message_iter_get_boolean_array), (message_iter_test):
8262         * dbus/dbus-message.h:
8263         * dbus/dbus-protocol.h:
8264         * doc/dbus-specification.sgml:
8265         * test/data/valid-messages/lots-of-arguments.message:
8266         Add support for boolean and boolean array types.
8267
8268 2003-02-23  Havoc Pennington  <hp@pobox.com>
8269
8270         * dbus/dbus-keyring.c: finish most of this implementation and
8271         simple unit test
8272
8273         * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
8274         these barf if the error isn't cleared to NULL
8275
8276         * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
8277         (_dbus_create_directory): new function
8278
8279         * dbus/dbus-errors.c (dbus_set_error): fix warning
8280
8281         * dbus/dbus-string.c (_dbus_string_hex_encode): new function
8282         (_dbus_string_hex_decode): new function
8283         (test_hex_roundtrip): test code
8284
8285         * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
8286
8287         * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
8288
8289         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
8290         the save-to-temp/rename trick to atomically write the new file
8291         (_dbus_string_parse_uint): new function
8292
8293 2003-02-22  Havoc Pennington  <hp@pobox.com>
8294
8295         * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
8296
8297 2003-02-22  Havoc Pennington  <hp@pobox.com>
8298
8299         * dbus/dbus-message.c (dbus_message_iter_get_string_array):
8300         (dbus_message_iter_get_byte_array): Fix up doxygen warnings
8301
8302         * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
8303
8304         * dbus/test/data/sha-1: add US government test suite for SHA-1
8305
8306 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
8307
8308         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
8309         Make string arrays NULL-terminated.
8310
8311         * dbus/dbus-memory.c: (dbus_free_string_array):
8312         * dbus/dbus-memory.h:
8313         New function for freeing NULL-terminated string arrays.
8314
8315         * dbus/dbus-message-builder.c: (append_quoted_string),
8316         (_dbus_message_data_load):
8317         Add support for array types.
8318
8319         * dbus/dbus-message.c: (check_message_handling):
8320         Add more types as test cases.
8321
8322         * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
8323         (_dbus_string_parse_double):
8324         Add the start offset to the end offset.
8325
8326         * test/data/valid-messages/lots-of-arguments.message:
8327         New test message with lots of arguments.
8328
8329 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
8330
8331         * dbus/dbus-message.c: (dbus_message_append_nil),
8332         (dbus_message_append_int32), (dbus_message_append_uint32),
8333         (dbus_message_append_double), (dbus_message_append_string),
8334         (dbus_message_append_int32_array),
8335         (dbus_message_append_uint32_array),
8336         (dbus_message_append_double_array),
8337         (dbus_message_append_byte_array),
8338         (dbus_message_append_string_array):
8339         Fix all out-of-memory handling in these functions.
8340
8341 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
8342
8343         * dbus/dbus-message.c: (dbus_message_append_nil):
8344         Fix a silly.
8345
8346 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
8347
8348         * dbus/dbus-message.c: (dbus_message_append_args_valist),
8349         (dbus_message_append_nil), (dbus_message_append_int32_array),
8350         (dbus_message_append_uint32_array),
8351         (dbus_message_append_double_array),
8352         (dbus_message_append_byte_array),
8353         (dbus_message_append_string_array), (dbus_message_get_args_valist),
8354         (dbus_message_iter_get_int32_array),
8355         (dbus_message_iter_get_uint32_array),
8356         (dbus_message_iter_get_double_array),
8357         (dbus_message_iter_get_byte_array),
8358         (dbus_message_iter_get_string_array):
8359
8360         * dbus/dbus-message.h:
8361         Add functions for appending and getting arrays.
8362
8363 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
8364
8365         * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
8366         element size at least 8 bytes, fixes mempool tests on
8367         64-bit machines.
8368
8369 2003-02-20  Alexander Larsson  <alexl@redhat.com>
8370
8371         * dbus/dbus-transport-unix.c (unix_do_iteration):
8372         Unlock the connection mutex during a blocking select call.
8373         Add todo about how we need a way to wake up the select.
8374
8375         * dbus/dbus-connection-internal.h:
8376         * dbus/dbus-connection.c:
8377         Add _dbus_connection_lock and _dbus_connection_unlock.
8378
8379 2003-02-19  Havoc Pennington  <hp@pobox.com>
8380
8381         * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
8382         Doxyfile.in, not Doxyfile
8383
8384         * dbus/dbus-keyring.c: do some hacking on this
8385
8386         * dbus/dbus-sysdeps.c (_dbus_delete_file): new
8387
8388         * dbus/dbus-errors.c (dbus_set_error_const): do not call
8389         dbus_error_init
8390         (dbus_set_error): remove dbus_error_init, check for message ==
8391         NULL *before* we sprintf into it, and add @todo about including
8392         system headers in this file
8393
8394         * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
8395
8396         * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
8397
8398         * dbus/dbus-sysdeps.c (get_user_info): break this function out to
8399         get various bits of user information based on either username
8400         or user ID
8401         (_dbus_homedir_from_username): new function
8402
8403 2003-02-19  Anders Carlsson  <andersca@codefactory.se>
8404
8405         * configure.in:
8406         Add check for nonposix getpwnam_r
8407
8408         * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
8409         Align the pool element size to a sizeof (void *) boundary.
8410
8411         * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
8412         (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
8413         General Solaris fixes.
8414
8415         * test/data/valid-messages/simplest-manual.message:
8416         Explicitly state that we want little-endian packing.
8417
8418 2003-02-19  Mikael Hallendal  <micke@codefactory.se>
8419
8420         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
8421
8422         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
8423         Added to create a transport connecting using a tcp/ip socket.
8424
8425         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
8426         to a tcp socket at given host and port.
8427         (_dbus_listen_tcp_socket): added to listen on tcp socket for given
8428         hostname and port.
8429
8430         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
8431
8432         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
8433         Added to create a server listening on a TCP/IP socket.
8434
8435 2003-02-19  Havoc Pennington  <hp@pobox.com>
8436
8437         Throughout: mop up all the Doxygen warnings and undocumented
8438         stuff.
8439
8440         * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
8441         to search any paths.
8442
8443         * dbus/dbus-threads.c: move global mutex initializers to
8444         dbus-internals.h, multiple prototypes was confusing doxygen
8445         besides being kind of ugly
8446
8447         * Doxyfile (PREDEFINED): have Doxygen define
8448         DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
8449         docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
8450         (do not abuse the feature! it's for stuff like the autogenerated
8451         macros in dbus-md5.c, not just for things you don't feel like
8452         documenting...)
8453
8454 2003-02-18  Havoc Pennington  <hp@pobox.com>
8455
8456         * dbus/dbus-string.c (_dbus_string_zero): new function
8457
8458         * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
8459         wrap it in some dbus-friendly API
8460
8461         * dbus/dbus-types.h: add 16-bit types
8462
8463 2003-02-18  Joe Shaw  <joe@assbarn.com>
8464
8465         * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
8466         credentials from our currently running process.
8467         (get_word): Fix a buglet where we were copying the entire length
8468         instead of relative to our position.
8469
8470         * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
8471         keys on the stack... it's 640k of data.
8472
8473         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
8474         read the credentials byte off the socket, even if we don't have
8475         SO_PEERCRED.
8476         (_dbus_poll): Implement poll() using select() for systems which
8477         don't have it.
8478
8479         * glib/test-dbus-glib.c (main): Print out an error if no
8480         parameters are given.
8481
8482         * test/data/auth/fallback.auth-script: Added.  Tests that a client
8483         can fallback to a secondary auth mechanism if the first fails.
8484
8485 2003-02-18  Havoc Pennington  <hp@pobox.com>
8486
8487         * AUTHORS: add Alex
8488
8489 2003-02-17  Havoc Pennington  <hp@pobox.com>
8490
8491         * doc/dbus-specification.sgml: lots of cosmetic
8492         cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
8493         env variable to DBUS_BUS_ADDRESS, s/client/application/,
8494         s/server/bus/ (except in authentication section). Add a section
8495         "Message Bus Message Routing"
8496
8497 2003-02-17  Anders Carlsson  <andersca@codefactory.se.>
8498
8499         Release 0.4
8500
8501         * NEWS: Update
8502
8503 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
8504
8505         * doc/dbus-specification.sgml:
8506         Specification updates.
8507
8508 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
8509
8510         * bus/activation.c: (bus_activation_init), (child_setup),
8511         (bus_activation_activate_service):
8512         * bus/activation.h:
8513         * bus/main.c: (main):
8514         Set DBUS_ADDRESS environment variable.
8515
8516         * dbus/dbus-errors.c: (dbus_set_error):
8517         Don't use va_copy since that's a C99 feature.
8518
8519         * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
8520         (_dbus_spawn_async):
8521         * dbus/dbus-sysdeps.h:
8522         Add child_setup_func to _dbus_spawn_async.
8523
8524         * doc/dbus-specification.sgml:
8525         Update specification.
8526
8527         * test/spawn-test.c: (setup_func), (main):
8528         Fix test.
8529
8530 2003-02-17  Alexander Larsson  <alexl@redhat.com>
8531
8532         * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
8533         Added todo.
8534
8535 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
8536
8537         * doc/.cvsignore:
8538         * doc/Makefile.am:
8539         * doc/dbus-test-plan.sgml:
8540         Add test plan document.
8541
8542         * test/Makefile.am:
8543         Fix distcheck.
8544
8545 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
8546
8547         * dbus/dbus-message.c: (decode_header_data),
8548         (_dbus_message_loader_return_buffer):
8549         Set the header padding amount when loading a message.
8550
8551 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
8552
8553         * bus/dispatch.c: (send_one_message):
8554         Only send broadcast messages to registered connections.
8555
8556         * dbus/dbus-message.c: (dbus_message_name_is):
8557         * dbus/dbus-message.h:
8558         New convenience function.
8559
8560         * dbus/dbus-transport-debug.c: (do_reading):
8561         Only dispatch one message per run.
8562
8563         * test/Makefile.am:
8564         * test/bus-test.c: (new_connection_callback), (die),
8565         (test_hello_client1_handler), (test_hello_client2_handler),
8566         (test_hello_replies), (main):
8567
8568         * test/bus-test-loop.[ch]:
8569         Add these.
8570
8571 2003-02-16  Havoc Pennington  <hp@pobox.com>
8572
8573         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
8574         backward conditional
8575
8576 2003-02-16  Alexander Larsson  <alexl@redhat.com>
8577
8578         * dbus/dbus-connection.c:
8579         Implement sent_message_with_reply. (with_reply_and block is still
8580         busted).
8581         Made dispatch_message not lose message if OOM.
8582
8583         * dbus/dbus-errors.h:
8584         Add NoReply error (for reply timeouts).
8585
8586 2003-02-16  Alexander Larsson  <alexl@redhat.com>
8587
8588         * dbus/dbus-hash.c (_dbus_hash_table_unref):
8589         Actually free keys and values when destroying hashtable.
8590
8591 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
8592
8593         * dbus/dbus-auth.c: (client_try_next_mechanism):
8594         Plug a leak.
8595
8596         * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
8597         Return TRUE if there's no thread implementation around.
8598
8599         * glib/dbus-gmain.c: (free_source),
8600         (dbus_connection_hookup_with_g_main):
8601         Make sure to remove the GSource when the connection is finalized.
8602
8603 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
8604
8605         * bus/dispatch.c: (bus_dispatch_message_handler):
8606         * dbus/dbus-errors.h:
8607         Return an error if someone tries to send a message to a service
8608         that doesn't exist.
8609
8610 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
8611
8612         * bus/activation.c: (load_directory), (bus_activation_init),
8613         (bus_activation_activate_service):
8614         * bus/activation.h:
8615         * bus/driver.c:
8616         (bus_driver_handle_activate_service), (bus_driver_handle_message):
8617         More work on the activation handling.
8618
8619         * dbus/dbus-errors.h:
8620         Add some error messages
8621
8622         * dbus/dbus-message.c: (dbus_message_new_error_reply):
8623         * dbus/dbus-message.h:
8624         New function that creates an error message.
8625
8626         * dbus/dbus-protocol.h:
8627         Add ACTIVATE_SERVER message.
8628
8629         * dbus/dbus-server-unix.c: (unix_handle_watch),
8630         (_dbus_server_new_for_domain_socket):
8631         Call _dbus_fd_set_close_on_exec.
8632
8633         * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
8634         (_dbus_spawn_async), (_dbus_disable_sigpipe),
8635         (_dbus_fd_set_close_on_exec):
8636         * dbus/dbus-sysdeps.h:
8637         Add _dbus_fd_set_close_on exec function. Also add function that checks
8638         that all open fds are set to close-on-exec and warns otherwise.
8639
8640         * dbus/dbus-transport-unix.c:
8641         (_dbus_transport_new_for_domain_socket):
8642         Call _dbus_fd_set_close_on_exec.
8643
8644 2003-02-16  Havoc Pennington  <hp@pobox.com>
8645
8646         * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
8647         allow people to avoid setting SIGPIPE to SIG_IGN
8648         (_dbus_connection_new_for_transport): disable SIGPIPE unless
8649         we've been asked not to
8650
8651 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
8652
8653         * dbus/dbus-list.c: (_dbus_list_append_link),
8654         (_dbus_list_prepend_link):
8655         * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
8656         (dbus_realloc):
8657         Warning fixes.
8658
8659 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
8660
8661         * bus/Makefile.am:
8662         * bus/activation.c: (bus_activation_entry_free),
8663         (add_desktop_file_entry), (load_directory), (bus_activation_init):
8664         * bus/activation.h:
8665         * bus/main.c: (main):
8666         Add simple activation support, doesn't work yet though.
8667
8668 2003-02-15   Zack Rusin  <zack@kde.org>
8669
8670         * qt/dbus-qthread.cpp:  small casting fix
8671
8672 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
8673
8674         * dbus/dbus-errors.c: (dbus_set_error):
8675         * dbus/dbus-errors.h:
8676         Add a few errors and make dbus_set_error void.
8677
8678         * dbus/dbus-sysdeps.c:
8679         (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
8680         (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
8681         * dbus/dbus-sysdeps.h:
8682         Add _dbus_spawn_async.
8683
8684         * test/spawn-test.c: (main):
8685         Test for _dbus_spawn_async.
8686
8687 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
8688
8689         * dbus/dbus-internals.h:
8690         Fix build without tests.
8691
8692         * dbus/dbus-list.c: (alloc_link):
8693         Fix a segfault when a malloc fails.
8694
8695         * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
8696         (dbus_malloc0), (dbus_realloc):
8697         Add support for malloc debugging.
8698
8699 2003-02-15  Alexander Larsson  <alexl@redhat.com>
8700
8701         * dbus/dbus-threads.c:
8702         * dbus/dbus-threads.h:
8703         Add condvars. Remove static mutext from API.
8704         Implement static mutexes by initializing them from threads_init.
8705
8706         * glib/dbus-gthread.c:
8707         * qt/dbus-qthread.cpp:
8708         Update with the thread api changes.
8709
8710
8711         * dbus/dbus-list.c:
8712         * dbus/dbus-list.h:
8713         Turn StaticMutex into normal mutex + init function.
8714         Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
8715         _dbus_list_append_link, _dbus_list_prepend_link
8716
8717
8718         * dbus/dbus-sysdeps.c:
8719         * dbus/dbus-sysdeps.h:
8720         New type dbus_atomic_t, and new functions _dbus_atomic_inc,
8721         _dbus_atomic_dec. Only slow fallback implementation at the moment.
8722
8723         * dbus/dbus-protocol.h:
8724         Add DBUS_MESSAGE_LOCAL_DISCONNECT define
8725
8726         * dbus/dbus-message.c:
8727         Make ref/unref atomic.
8728         Fix some docs.
8729
8730         * dbus/dbus-connection-internal.h:
8731         * dbus/dbus-connection.c:
8732         * dbus/dbus-connection.h:
8733         Make threadsafe.
8734         Change _peek to _borrow,_return & _steal_borrowed.
8735         Change disconnect callback to event.
8736         Make dbus_connection_dispatch_messages reentrant.
8737
8738         * dbus/dbus-transport.c:
8739         Don't ref the connection on calls to the transport
8740         implementation.
8741
8742         * dbus/dbus-message-handler.c:
8743         Make threadsafe.
8744
8745         * glib/dbus-gmain.c:
8746         Don't use peek_message anymore
8747
8748         * test/Makefile.am:
8749         * test/debug-thread.c:
8750         * test/debug-thread.h:
8751         Simple thread implementation that asserts() on deadlocks in
8752         single-threaded code.
8753
8754         * test/bus-test.c:
8755         (main) Call debug_threads_init.
8756
8757         * test/watch.c:
8758         Use disconnect message instead of disconnect callback.
8759
8760         * bus/connection.c:
8761         * bus/connection.h:
8762         Don't call dbus_connection_set_disconnect_function. Instead export
8763         bus_connection_disconnect.
8764
8765         * bus/dispatch.c:
8766         Call bus_connection_disconnect when we get a disconnected message.
8767
8768 2003-02-15  Havoc Pennington  <hp@pobox.com>
8769
8770         * dbus/dbus-message.c (dbus_message_new): fool around with the
8771         docs
8772
8773 2003-02-14  Havoc Pennington  <hp@pobox.com>
8774
8775         * dbus/dbus-mempool.c: fail if the debug functions so indicate
8776
8777         * dbus/dbus-memory.c: fail if the debug functions indicate we
8778         should
8779
8780         * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
8781         (_dbus_decrement_fail_alloc_counter): debug functions to
8782         simulate memory allocation failures
8783
8784 2003-02-14  Havoc Pennington  <hp@pobox.com>
8785
8786         * dbus/dbus-errors.h (struct DBusError): add a word of padding
8787         to DBusError
8788
8789 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8790
8791         * bus/driver.c: (bus_driver_handle_hello):
8792         * bus/driver.h:
8793         * bus/services.c: (bus_service_lookup):
8794         Reorder message sending so we get a more sane order.
8795
8796         * test/bus-test.c: (message_handler):
8797         Fix tyop.
8798
8799 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8800
8801         * bus/driver.c: (bus_driver_send_service_deleted),
8802         (bus_driver_send_service_created), (bus_driver_send_service_lost),
8803         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
8804         (bus_driver_send_welcome_message),
8805         (bus_driver_handle_list_services),
8806         (bus_driver_handle_acquire_service),
8807         (bus_driver_handle_service_exists):
8808         * dbus/dbus-bus.c: (dbus_bus_register_client),
8809         (dbus_bus_acquire_service), (dbus_bus_service_exists):
8810         * dbus/dbus-errors.c: (dbus_result_to_string):
8811         * dbus/dbus-errors.h:
8812         * dbus/dbus-message.c: (dbus_message_append_args),
8813         (dbus_message_append_args_valist), (dbus_message_get_args),
8814         (dbus_message_get_args_valist), (dbus_message_get_args_iter),
8815         (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
8816         (dbus_message_iter_get_byte_array),
8817         (dbus_message_iter_get_string_array), (message_iter_test),
8818         (check_message_handling), (_dbus_message_test):
8819         * dbus/dbus-message.h:
8820         * test/bus-test.c: (main):
8821         Change fields to arguments in messages, so that they won't be
8822         confused with header fields.
8823
8824         * glib/test-dbus-glib.c: (main):
8825         Remove append_fields from hello message.
8826
8827 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8828
8829         * dbus/dbus-errors.c:
8830         * dbus/dbus-message.c:
8831         * dbus/dbus-string.c:
8832         Documentation fixes.
8833
8834 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8835
8836         * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
8837         (remove_timeout):
8838         Implement support for timeouts in dbus-glib.
8839
8840 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8841
8842         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
8843         * dbus/dbus-message.c: (process_test_subdir):
8844         * test/break-loader.c: (find_breaks_based_on):
8845         Plug some memory leaks.
8846
8847 2003-02-13  Richard Hult  <rhult@codefactory.se>
8848
8849         * bus/main.c: Fix build.
8850
8851         * dbus/dbus-errors.h:
8852         * dbus/dbus-errors.c: Fix copyright for Anders.
8853
8854 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8855
8856         * bus/Makefile.am:
8857         Add utils.[ch]
8858
8859         * bus/connection.c: (bus_connection_foreach):
8860         Fix a warning.
8861
8862         * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
8863         (unescape_string), (new_section), (parse_section_start),
8864         (parse_key_value), (report_error), (bus_desktop_file_load),
8865         (bus_desktop_file_get_string):
8866         * bus/desktop-file.h:
8867         Use DBusError for error reporting.
8868
8869         * bus/dispatch.c: (send_one_message),
8870         (bus_dispatch_message_handler):
8871         * bus/driver.c: (bus_driver_send_service_deleted),
8872         (bus_driver_send_service_created), (bus_driver_send_service_lost),
8873         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
8874         (bus_driver_send_welcome_message),
8875         (bus_driver_handle_list_services),
8876         (bus_driver_handle_acquire_service),
8877         (bus_driver_handle_service_exists):
8878         * bus/loop.c: (bus_loop_run):
8879         * bus/main.c:
8880         Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
8881
8882         * bus/utils.c: (bus_wait_for_memory):
8883         * bus/utils.h:
8884         New files with general utility functions.
8885
8886         * dbus/dbus-internals.h:
8887         Remove _DBUS_HANDLE_OOM.
8888
8889 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8890
8891         * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
8892         (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
8893         * dbus/dbus-errors.h:
8894         Add DBusError structure.
8895
8896 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8897
8898         * test/data/valid-messages/standard-acquire-service.message:
8899         * test/data/valid-messages/standard-hello.message:
8900         * test/data/valid-messages/standard-list-services.message:
8901         * test/data/valid-messages/standard-service-exists.message:
8902         Add some standard messages.
8903
8904 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8905
8906         * bus/driver.c: (bus_driver_send_welcome_message),
8907         (bus_driver_handle_list_services),
8908         (bus_driver_handle_acquire_service),
8909         (bus_driver_handle_service_exists), (bus_driver_handle_message):
8910         Update for API changes in libdbus.
8911
8912         * dbus/dbus-message.c: (dbus_message_new_reply):
8913         * dbus/dbus-message.h:
8914         Remove the name argument. The spec states that replies shouldn't
8915         have a name.
8916
8917 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
8918
8919         * bus/desktop-file.c: (parse_section_start), (parse_key_value),
8920         (report_error), (bus_desktop_file_load), (lookup_section),
8921         (lookup_line), (bus_desktop_file_get_raw),
8922         (bus_desktop_file_get_string):
8923         * bus/desktop-file.h:
8924         Some fixes, and new functions for getting a key value from a section.
8925
8926 2003-02-13  Havoc Pennington  <hp@pobox.com>
8927
8928         * test/data/auth/fail-after-n-attempts.auth-script: new test
8929
8930         * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
8931         reject the client.
8932
8933 2003-02-13  Havoc Pennington  <hp@pobox.com>
8934
8935         * dbus/dbus-auth.c (handle_server_data_external_mech): args to
8936         dbus_credentials_match were backward
8937
8938         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
8939         NO_CREDENTIALS and ROOT_CREDENTIALS
8940
8941         * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
8942         into here. Never process more commands after we've reached an
8943         end state; store further data as unused bytes.
8944
8945         * test/data/auth/*: add more auth tests
8946
8947         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
8948         command to match exact string and EXPECT_UNUSED to match unused
8949         bytes
8950
8951         * test/Makefile.am (dist-hook): fix to dist all the test stuff
8952
8953 2003-02-12  Havoc Pennington  <hp@pobox.com>
8954
8955         * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
8956         \r off of popped lines
8957
8958         * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
8959         scripts
8960
8961         * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
8962         SEND, append \r\n
8963
8964 2003-02-12  Havoc Pennington  <hp@pobox.com>
8965
8966         * dbus/Makefile.am: remove break-loader from the build, since it
8967         moved.
8968
8969         * configure.in: add --enable-gcov to turn on coverage profiling
8970         flags and disable optimization
8971
8972 2003-02-10  Havoc Pennington  <hp@pobox.com>
8973
8974         * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
8975         initial cut at test framework for DBusAuth from laptop.
8976         Doesn't quite work yet but it compiles and I need to get
8977         it off the 266mhz laptop. ;-)
8978
8979         * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
8980         fix a memleak in error case
8981
8982 2003-02-12  Anders Carlsson  <andersca@codefactory.se>
8983
8984         * bus/Makefile.am:
8985         * bus/desktop-file.c:
8986         * bus/desktop-file.h:
8987         Add a desktop file parser.
8988
8989 2003-02-11  Zack Rusin  <zack@kde.org>
8990
8991         * qt/message.[h|cpp]: sample implementation
8992         of the KDE wrapper for DBusMessage
8993
8994 2003-02-09  Zack Rusin  <zack@kde.org>
8995
8996         * test/bus-test.c: make_it_compile
8997         * doc/dbus-specification.sgml: minimal semantic fix
8998
8999 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
9000
9001         Release 0.3
9002
9003         * NEWS: Update
9004
9005 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
9006
9007         * dbus/Makefile.am:
9008         * dbus/dbus-break-loader.c:
9009         * test/Makefile.am:
9010         * test/break-loader.c:
9011         Move dbus-break-loader to test/ and rename it to break-loader.
9012
9013 2003-02-02  Havoc Pennington  <hp@pobox.com>
9014
9015         * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
9016         for code to manage cookies in your home directory
9017
9018         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
9019
9020         * dbus/dbus-auth.c (get_state): impose a maximum number of tries
9021         to authenticate, then disconnect the client.
9022
9023 2003-02-03  Alexander Larsson  <alexl@redhat.com>
9024
9025         * dbus/dbus-message.c (dbus_message_append_fields):
9026         Correct docs.
9027
9028 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
9029
9030         * doc/dbus-specification.sgml:
9031         Update address format section.
9032
9033 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
9034
9035         * test/Makefile.am:
9036         * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
9037         (message_handler), (new_connection_callback), (loop_quit),
9038         (loop_run), (main):
9039         Add bus test.
9040
9041 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
9042
9043         * bus/driver.c: (bus_driver_handle_service_exists):
9044         Simplify the code a bit.
9045
9046         * dbus/dbus-bus.c: (dbus_bus_service_exists):
9047         Fix a silly.
9048
9049 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
9050
9051         * bus/Makefile.am:
9052         Add libdbus-daemon.la and link to it.
9053
9054 2003-02-01  James Willcox  <jwillcox@gnome.org>
9055
9056         * bus/driver.c: (bus_driver_handle_own_service):
9057         Actually include the service reply code in the message.
9058
9059 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
9060
9061         * bus/driver.c: (bus_driver_handle_service_exists):
9062         Don't unref the incoming message.
9063
9064 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
9065
9066         * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
9067
9068 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
9069
9070         * dbus/dbus-server.c: (dbus_server_listen):
9071         * dbus/dbus-transport.c: (_dbus_transport_open):
9072         ifdef out the calls to the debug transport and server.
9073
9074 2003-02-02  Alexander Larsson  <alexl@redhat.com>
9075
9076         * dbus/dbus-watch.c (dbus_watch_get_flags):
9077         Add note in the docs that ERROR or HANGUP won't be returned
9078         and are assumed always on.
9079
9080         * glib/dbus-gmain.c (add_watch):
9081         Always add IO_ERR | IO_HUP
9082
9083         * dbus/dbus-message.h:
9084         Add semicolon after dbus_message_iter_get_string_array().
9085         Makes qt code build again
9086
9087 2003-02-01  Anders Carlsson  <andersca@codefactory.se>
9088
9089         * bus/driver.c: (create_unique_client_name),
9090         (bus_driver_handle_hello):
9091         Don't take a name, just use a numeric id to identify
9092         each client.
9093
9094         * dbus/Makefile.am:
9095         * dbus/dbus-bus.c: (dbus_bus_register_client),
9096         (dbus_bus_acquire_service), (dbus_bus_service_exists):
9097         * dbus/dbus-bus.h:
9098         Add new convenience functions for communicating with the bus.
9099
9100         * dbus/dbus-message.h:
9101
9102         * dbus/dbus-protocol.h:
9103         Fix a typo.
9104
9105 2003-02-01  Alexander Larsson  <alexl@redhat.com>
9106
9107         * dbus/dbus-message.c (dbus_message_append_fields):
9108         Add some more doc comments.
9109
9110 2003-02-01  Havoc Pennington  <hp@pobox.com>
9111
9112         * dbus/dbus-break-loader.c (randomly_modify_length): change
9113         a 4-byte value in the message as if it were a length
9114
9115         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
9116         execute bit on saved files
9117
9118 2003-02-01  Havoc Pennington  <hp@pobox.com>
9119
9120         * dbus/dbus-break-loader.c (main): new program to find messages
9121         that break the loader.
9122
9123         * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
9124         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
9125
9126         * dbus/dbus-string.c (_dbus_string_set_byte): new
9127
9128 2003-01-31  Havoc Pennington  <hp@pobox.com>
9129
9130         * dbus/dbus-message.c: refactor the test code to be more general,
9131         in preparation for writing a "randomly permute test cases to
9132         try to break the loader" program.
9133
9134 2003-01-31  Havoc Pennington  <hp@pobox.com>
9135
9136         * doc/dbus-specification.sgml: work on the specification
9137
9138         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
9139         the protocol version of the message.
9140
9141         * dbus/dbus-protocol.h: drop special _REPLY names, the spec
9142         no longer specifies that.
9143         (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
9144         1/2/3/4)
9145
9146         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
9147         "break" for DBUS_TYPE_NIL, remove @todo
9148
9149 2003-01-31  Havoc Pennington  <hp@pobox.com>
9150
9151         * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
9152         just set_is_error/get_is_error as this is a commonly-used
9153         function, and write docs.
9154
9155 2003-01-31  Anders Carlsson  <andersca@codefactory.se>
9156
9157         * dbus/dbus-address.c: (dbus_address_entry_free):
9158         Free key and value lists.
9159
9160         * dbus/dbus-internals.c: (_dbus_type_to_string):
9161         Add the types we didn't have.
9162
9163         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
9164         (_dbus_marshal_validate_arg):
9165         Add NIL types.
9166
9167         * dbus/dbus-message.c: (dbus_message_set_sender):
9168         Remove todo about being able to set sender to NULL.
9169
9170         (dbus_message_set_is_error_reply),
9171         (dbus_message_get_is_error_reply):
9172         * dbus/dbus-message.h:
9173         New functions.
9174
9175         * dbus/dbus-protocol.h:
9176         Add error reply flag.
9177
9178         * test/data/valid-messages/opposite-endian.message:
9179         Add NIL type to test.
9180
9181 2003-01-31  Havoc Pennington  <hp@pobox.com>
9182
9183         * doc/dbus-specification.sgml: fully specify the header.  Add
9184         flags and major protocol version, and change header/body len to
9185         unsigned.
9186
9187         * dbus/dbus-message-builder.c (append_saved_length): append length
9188         as uint32
9189
9190         * dbus/dbus-message.c (dbus_message_create_header): change header
9191         length and body length to unsigned. Add the new fields from the
9192         spec
9193         (_dbus_message_loader_return_buffer): unsigned header/body len
9194
9195 2003-01-30  Havoc Pennington  <hp@pobox.com>
9196
9197         * dbus/dbus-auth.c: rework to use only REJECTED, no
9198         MECHANISMS
9199
9200         * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
9201         use REJECTED, suggested by Mark McLoughlin
9202
9203 2003-01-30  Havoc Pennington  <hp@pobox.com>
9204
9205         * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
9206         a better way to report errors here. e.g.  "unix address lacks
9207         path" or something. also "no such file" when the path doesn't
9208         exist, etc.
9209
9210         * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
9211         leaking list nodes
9212         (dbus_parse_address): add @todo about documenting address format,
9213         and allowing , and ; to be escaped
9214
9215 2003-01-30  Anders Carlsson  <andersca@codefactory.se>
9216
9217         * dbus/Makefile.am:
9218         Add dbus-address.[ch]
9219
9220         * dbus/dbus-address.c: (dbus_address_entry_free),
9221         (dbus_address_entries_free), (create_entry),
9222         (dbus_address_entry_get_method), (dbus_address_entry_get_value),
9223         (dbus_parse_address), (_dbus_address_test):
9224         * dbus/dbus-address.h:
9225         New files for dealing with address parsing.
9226
9227         * dbus/dbus-connection.c:
9228         Document timeout functions.
9229
9230         * dbus/dbus-message.c:
9231         Document dbus_message_new_from_message.
9232
9233         * dbus/dbus-server-debug.c:
9234         Document.
9235
9236         * dbus/dbus-server.c: (dbus_server_listen):
9237         Parse address and use correct server implementation.
9238
9239         * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
9240         * dbus/dbus-string.h:
9241         New function with test.
9242
9243         * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
9244         * dbus/dbus-test.h:
9245         Add address tests.
9246
9247         * dbus/dbus-transport-debug.c:
9248         Document.
9249
9250         * dbus/dbus-transport.c: (_dbus_transport_open):
9251         Parse address and use correct transport implementation.
9252
9253 2003-01-30  Havoc Pennington  <hp@pobox.com>
9254
9255         * dbus/dbus-message.c: use message->byte_order instead of
9256         DBUS_COMPILER_BYTE_ORDER throughout.
9257         (dbus_message_create_header): pad header to align the
9258         start of the body of the message to 8-byte boundary
9259
9260         * dbus/dbus-marshal.h: make all the demarshalers take const
9261         DBusString arguments.
9262
9263         * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
9264         validate message args here, so we don't have to do slow validation
9265         later, and so we catch bad messages as they are incoming. Also add
9266         better checks on header_len and body_len. Also fill in
9267         message->byte_order
9268
9269         * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
9270         implemented properly)
9271         (_dbus_string_validate_nul): new function to check all-nul
9272
9273         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
9274         get_arg_end_pos and remove all validation
9275         (_dbus_marshal_validate_arg): actually do validation here.
9276
9277 2003-01-29  Havoc Pennington  <hp@pobox.com>
9278
9279         * dbus/dbus-message.c (check_message_handling): fix assertion
9280         failure on set_client_serial
9281
9282 2003-01-28  Havoc Pennington  <hp@pobox.com>
9283
9284         * dbus/dbus-server-debug.c: Add doc section comments
9285
9286         * dbus/dbus-transport-debug.c: add doc section comments
9287
9288 2003-01-28  Havoc Pennington  <hp@redhat.com>
9289
9290         * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
9291         the reverse order from how I had it
9292         (_dbus_string_base64_encode): reverse encoding order. I was
9293         basically byteswapping everything during encoding.
9294
9295 2003-01-28  Anders Carlsson  <andersca@codefactory.se>
9296
9297         * dbus/dbus-connection-internal.h:
9298         * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
9299         (_dbus_connection_remove_timeout):
9300         Add functions for adding and removing timeouts.
9301
9302         * dbus/dbus-message.c: (dbus_message_new_from_message):
9303         Add new function that takes a message and creates an exact
9304         copy of it, but with the refcount set to 1.
9305         (check_message_handling):
9306         Fix build error.
9307
9308         * dbus/dbus-server-protected.h:
9309         * dbus/dbus-server.c: (_dbus_server_init_base),
9310         (_dbus_server_finalize_base), (_dbus_server_add_timeout),
9311         (dbus_server_set_timeout_functions):
9312         (_dbus_server_remove_timeout):
9313         New functions so that a server can add and remove timeouts.
9314
9315         (dbus_server_listen):
9316         Add commented out call to dbus_server_debug_new.
9317
9318         * dbus/dbus-timeout.c: (_dbus_timeout_new):
9319         Actually set the handler, doh.
9320
9321         * dbus/dbus-transport.c: (_dbus_transport_open):
9322         Add commented out call to dbus_transport_debug_client_new.
9323
9324         * dbus/Makefile.am:
9325         Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
9326
9327 2003-01-28  Havoc Pennington  <hp@pobox.com>
9328
9329         * dbus/dbus-message.c (check_message_handling): function to check
9330         on the loaded message, iterates over it etc.
9331
9332 2003-01-28  Havoc Pennington  <hp@pobox.com>
9333
9334         * test/Makefile.am (dist-hook): fix make distdir
9335
9336         * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
9337
9338 2003-01-27  Havoc Pennington  <hp@pobox.com>
9339
9340         * dbus/dbus-mempool.c (time_for_size): replace printf with
9341         _dbus_verbose
9342
9343         * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
9344         empty lines; fix the SAVE_LENGTH stuff to be
9345         START_LENGTH/END_LENGTH so it actually works; couple other
9346         bugfixes
9347
9348         * test/Makefile.am (dist-hook): add dist-hook for .message files
9349
9350         * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
9351         can be constant or locked.
9352         (_dbus_string_free): allow freeing a const string as
9353         documented/intended
9354
9355         * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
9356
9357         * dbus/dbus-test-main.c (main): take an argument which is the
9358         directory containing test data
9359
9360         * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
9361         argument to this and load all the messages in test/data/
9362         checking that they can be loaded or not loaded as appropriate.
9363
9364 2003-01-27  Anders Carlsson  <andersca@codefactory.se>
9365
9366         * bus/dispatch.c: (bus_dispatch_message_handler):
9367         Dispatch messages sent to services.
9368
9369         * bus/driver.c: (bus_driver_send_service_deleted),
9370         (bus_driver_send_service_created), (bus_driver_send_service_lost),
9371         (bus_driver_send_service_acquired):
9372         Add helper functions for sending service related messages.
9373
9374         (bus_driver_send_welcome_message):
9375         Send HELLO_REPLY instead of WELCOME.
9376
9377         (bus_driver_handle_list_services):
9378         Send LIST_SERVICES_REPLY instead of SERVICES.
9379
9380         (bus_driver_handle_own_service),
9381         (bus_driver_handle_service_exists):
9382         New message handlers.
9383
9384         (bus_driver_handle_message):
9385         Invoke new message handlers.
9386
9387         (bus_driver_remove_connection):
9388         Don't remove any services here since that's done automatically
9389         by bus_service_remove_owner now.
9390
9391         * bus/driver.h:
9392         New function signatures.
9393
9394         * bus/services.c: (bus_service_add_owner):
9395         Send ServiceAcquired message if we're the only primary owner.
9396
9397         (bus_service_remove_owner):
9398         Send ServiceAcquired/ServiceLost messages.
9399
9400         (bus_service_set_prohibit_replacement),
9401         (bus_service_get_prohibit_replacement):
9402         Functions for setting prohibit replacement.
9403
9404         (bus_service_has_owner):
9405         New function that checks if a connection is in the owner queue of
9406         a certain service.
9407
9408         * bus/services.h:
9409         Add new function signatures.
9410
9411         * dbus/dbus-list.c: (_dbus_list_test):
9412         Add tests for _dbus_list_remove_last and traversing the list backwards.
9413
9414         * dbus/dbus-list.h:
9415         Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
9416         go any further, so return NULL then.
9417
9418         * dbus/dbus-protocol.h:
9419         Add new messages, service flags and service replies.
9420
9421 2003-01-26  Havoc Pennington  <hp@pobox.com>
9422
9423         * dbus/dbus-message-builder.c: implement, completely untested.
9424
9425         * test/data/*: add data to be used in testing.
9426         ".message" files are our simple loadable text format.
9427         ".message-raw" will be binary dumps of messages.
9428
9429         * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
9430
9431 2003-01-26  Havoc Pennington  <hp@pobox.com>
9432
9433         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
9434
9435         * dbus/dbus-errors.c (dbus_result_to_string): add
9436         file errors
9437
9438         * dbus/dbus-message-builder.c: new file, will contain code to load
9439         up messages from files. Not implemented yet.
9440
9441 2003-01-26  Havoc Pennington  <hp@pobox.com>
9442
9443         * dbus/dbus-message.c (dbus_message_set_sender): support deleting
9444         the sender by setting to NULL
9445
9446 2003-01-26  Havoc Pennington  <hp@pobox.com>
9447
9448         The unit tests pass, but otherwise untested.  If it breaks, the
9449         tests should have been better. ;-)
9450
9451         * bus/driver.c (bus_driver_handle_hello): return if we disconnect
9452         the connection.
9453
9454         * dbus/dbus-message.c: redo everything so we maintain
9455         message->header as the only copy of the various fields.
9456         This avoids the possibility of out-of-memory in some cases,
9457         for example dbus_message_lock() can't run out of memory anymore,
9458         and avoids extra copying. Figured I may as well go ahead and do
9459         this since it was busted for dbus_message_lock to not return
9460         failure on OOM, and dbus_message_write_header was totally
9461         unchecked for OOM. Also fixed some random other bugs.
9462
9463         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
9464         that strings are nul-terminated. Also, end_pos can be equal
9465         to string length just not greater than, I think.
9466         (_dbus_marshal_set_int32): new function
9467         (_dbus_marshal_set_uint32): new function
9468         (_dbus_marshal_set_string): new function
9469
9470         * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
9471         a warning, init timeout_list to NULL
9472         (dbus_connection_send_message): don't use uninitialized variable
9473         "serial"
9474
9475         * dbus/dbus-string.c (_dbus_string_replace_len): new function
9476
9477 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
9478
9479         * bus/driver.c: (bus_driver_handle_hello),
9480         (bus_driver_send_welcome_message):
9481         Plug leaks
9482
9483 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
9484
9485         * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
9486         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
9487         (dbus_connection_unref):
9488         * dbus/dbus-marshal.c: (_dbus_marshal_test):
9489         * dbus/dbus-message.c: (dbus_message_unref),
9490         Plug memory leaks.
9491
9492         (dbus_message_get_fields):
9493         Remove debugging printout.
9494
9495         (_dbus_message_loader_return_buffer):
9496         Don't store the header string.
9497
9498         (_dbus_message_test):
9499         Plug leaks.
9500
9501 2003-01-26  Richard Hult  <rhult@codefactory.se>
9502
9503         * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
9504         the file descriptor list, since it can change under us.
9505
9506 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
9507
9508         * glib/dbus-gmain.c: (dbus_connection_prepare),
9509         (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
9510         (remove_watch), (dbus_connection_hookup_with_g_main):
9511         Rewrite the glib handling to use its own GSource instead of a
9512         GIOChannel so we can catch messages put in the queue while waiting
9513         for a reply.
9514
9515 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
9516
9517         * bus/Makefile.am:
9518         * bus/connection.c: (connection_disconnect_handler),
9519         (connection_watch_callback), (bus_connection_setup):
9520         * bus/dispatch.c: (send_one_message),
9521         (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
9522         (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
9523         * bus/dispatch.h:
9524         * bus/driver.c: (bus_driver_send_service_deleted),
9525         (bus_driver_send_service_created), (bus_driver_handle_hello),
9526         (bus_driver_send_welcome_message),
9527         (bus_driver_handle_list_services), (bus_driver_remove_connection),
9528         (bus_driver_handle_message):
9529         * bus/driver.h:
9530         Refactor code, put the message dispatching in its own file. Use
9531         _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
9532         is disconnected.
9533
9534 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
9535
9536         * dbus/dbus-internals.h:
9537         Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
9538
9539         * dbus/dbus-message.c: (dbus_message_get_sender):
9540         * dbus/dbus-message.h:
9541         Implement dbus_message_get_sender.
9542
9543         * dbus/dbus-protocol.h:
9544         Add message and service defines.
9545
9546 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
9547
9548         * dbus/dbus-connection.c: (dbus_connection_send_message):
9549         * dbus/dbus-message-internal.h:
9550         * dbus/dbus-message.c: (_dbus_message_get_client_serial),
9551         (dbus_message_write_header):
9552         Remove _dbus_messag_unlock and don't set the client serial on a
9553         message if one already exists.
9554
9555 2003-01-24  Havoc Pennington  <hp@pobox.com>
9556
9557         * dbus/dbus-list.c (alloc_link): put a thread lock on the global
9558         list_pool
9559
9560         * bus/driver.c (bus_driver_handle_list_services): fix a leak
9561         on OOM
9562
9563 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
9564
9565         * dbus/dbus-list.c: (alloc_link), (free_link):
9566         Use a memory pool for the links.
9567
9568 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
9569
9570         * bus/connection.c: (bus_connection_foreach):
9571         * bus/connection.h:
9572         Add new bus_connection_foreach function.
9573
9574         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
9575         Add function that broadcasts a message to all clients.
9576
9577         (bus_driver_send_service_created), (bus_driver_handle_hello),
9578         (bus_driver_send_welcome_message),
9579         (bus_driver_handle_list_services), (bus_driver_message_handler):
9580         Implement functions that take care of listing services, and notifying
9581         clients when new services are created.
9582
9583         * bus/services.c: (bus_services_list):
9584         * bus/services.h:
9585         Add new function that returns an array of strings with the currently
9586         registered services.
9587
9588         * glib/dbus-glib.h:
9589         * glib/dbus-gmain.c:
9590         Update copyright year.
9591
9592 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
9593
9594         * dbus/dbus-connection.c: (dbus_connection_send_message):
9595         Unlock the message in case it was sent earlier.
9596
9597         (dbus_connection_send_message_with_reply_and_block):
9598         Remove the reply message from the list.
9599
9600         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
9601         Set array_len and new_pos correctly.
9602
9603         (_dbus_marshal_test):
9604         Remove debug output.
9605
9606         * dbus/dbus-message-internal.h:
9607         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
9608         New function that returns the reply serial.
9609
9610         (_dbus_message_unlock):
9611         New function that unlocks a message and resets its header.
9612
9613         (dbus_message_append_string_array),
9614         (dbus_message_get_fields_valist),
9615         (dbus_message_iter_get_field_type),
9616         (dbus_message_iter_get_string_array),
9617         (dbus_message_get_fields),
9618         (dbus_message_append_fields_valist):
9619         Handle string arrays.
9620
9621         (dbus_message_set_sender):
9622         Make this function public since the bus daemon needs it.
9623
9624         (decode_header_data):
9625         Set the reply serial to -1 initially.
9626
9627         * dbus/dbus-message.h:
9628         Add dbus_message_set_sender.
9629
9630 2003-01-24  Havoc Pennington  <hp@pobox.com>
9631
9632         * doc/dbus-specification.sgml: add some stuff
9633
9634 2003-01-22  Havoc Pennington  <hp@pobox.com>
9635
9636         * doc/dbus-specification.sgml: Start to document the protocol.
9637
9638 2003-01-22  Havoc Pennington  <hp@pobox.com>
9639
9640         * dbus/dbus-connection.c
9641         (dbus_connection_send_message_with_reply_and_block): add some @todo
9642
9643         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
9644
9645 2003-01-21  Havoc Pennington  <hp@pobox.com>
9646
9647         (patch untested because can't compile)
9648
9649         * bus/driver.c (create_unique_client_name): make this function
9650         never recycle client names. Also, caller should initialize
9651         the DBusString.
9652
9653         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
9654
9655 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
9656
9657         * dbus/dbus-marshal.c: (_dbus_marshal_double),
9658         (_dbus_marshal_int32), (_dbus_marshal_uint32),
9659         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
9660         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
9661         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
9662         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
9663         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
9664         * dbus/dbus-marshal.h:
9665         * dbus/dbus-protocol.h:
9666         Add support for marshalling and demarshalling integer, double
9667         and string arrays.
9668
9669 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
9670
9671         * bus/Makefile.am:
9672         Add driver.[ch]
9673
9674         * bus/connection.c: (connection_disconnect_handler):
9675         Remove the connection from the bus driver's list.
9676
9677         (connection_watch_callback): Dispatch messages.
9678
9679         (free_connection_data): Free connection name.
9680
9681         (bus_connection_setup): Add connection to the bus driver's list.
9682         (bus_connection_remove_owned_service):
9683         (bus_connection_set_name), (bus_connection_get_name):
9684         Add functions for setting and getting the connection's name.
9685
9686         * bus/connection.h:
9687         Add function headers.
9688
9689         * bus/driver.c: (create_unique_client_name),
9690         (bus_driver_handle_hello_message),
9691         (bus_driver_send_welcome_message), (bus_driver_message_handler),
9692         (bus_driver_add_connection), (bus_driver_remove_connection):
9693         * bus/driver.h:
9694         * bus/main.c:
9695         * bus/services.c: (bus_service_free):
9696         * bus/services.h:
9697         New file that handles communication and registreation with the bus
9698         itself.
9699
9700 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
9701
9702         * dbus/dbus-connection.c: (dbus_connection_send_message):
9703         Add a new client_serial parameter.
9704
9705         (dbus_connection_send_message_with_reply):
9706         Remove a @todo since we've implemented the blocking function.
9707
9708         (dbus_connection_send_message_with_reply_and_block):
9709         New function that sends a message and waits for a reply and
9710         then returns the reply.
9711
9712         * dbus/dbus-connection.h:
9713         Add new functions.
9714
9715         * dbus/dbus-errors.c: (dbus_result_to_string):
9716         * dbus/dbus-errors.h:
9717         Add new DBUS_RESULT.
9718
9719         * dbus/dbus-message-internal.h:
9720         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
9721         (_dbus_message_set_sender), (dbus_message_write_header),
9722         (dbus_message_new_reply), (decode_header_data),
9723         (_dbus_message_loader_return_buffer), (_dbus_message_test):
9724         * dbus/dbus-message.h:
9725         Add new functions that set the reply serial and sender.
9726         Also marshal and demarshal them correctly and add test.
9727
9728         * dbus/dbus-protocol.h:
9729         Add new DBUS_MESSAGE_TYPE_SENDER.
9730
9731         * glib/dbus-glib.h:
9732         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
9733         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
9734         (dbus_connection_hookup_with_g_main):
9735         * glib/test-dbus-glib.c: (main):
9736         Rewrite to use GIOChannel and remove the GSource crack.
9737
9738         * test/echo-client.c: (main):
9739         * test/watch.c: (check_messages):
9740         Update for changed APIs
9741
9742 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
9743
9744         * dbus/Makefile.am: Add dbus-timeout.[cħ]
9745
9746         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
9747         Create a DBusTimeoutList.
9748         (dbus_connection_set_timeout_functions): Add new function to
9749         set timeout callbacks
9750
9751         * dbus/dbus-connection.h: Add public DBusTimeout API.
9752
9753         * dbus/dbus-message.c: (dbus_message_get_service):
9754         * dbus/dbus-message.h:  New function.
9755
9756         * dbus/dbus-server.c: Fix small doc typo.
9757
9758         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
9759
9760 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
9761
9762         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
9763         of the string, just as long as specified.
9764
9765 2003-01-19  Havoc Pennington  <hp@pobox.com>
9766
9767         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
9768         new function
9769
9770         * dbus/dbus-server.c (dbus_server_set_max_connections)
9771         (dbus_server_get_max_connections, dbus_server_get_n_connections):
9772         keep track of current number of connections, and add API for
9773         setting a max (but haven't implemented enforcing the max yet)
9774
9775 2003-01-18  Havoc Pennington  <hp@pobox.com>
9776
9777         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
9778         reading/writing if read_watch != NULL or write_watch != NULL.
9779
9780         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
9781         the message loader code to actually load message->header and
9782         message->body into the newly-created message.
9783
9784         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
9785         in OOM case
9786
9787         * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
9788         (dbus_connection_get_max_message_size)
9789         (dbus_connection_set_max_live_messages_size)
9790         (dbus_connection_get_max_live_messages_size): implement some
9791         resource limitation functions
9792
9793         * dbus/dbus-resources.c: new file implementing some of the
9794         resource limits stuff
9795
9796         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
9797         missing docs, add @todo to handle OOM etc.
9798
9799         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
9800         docs
9801
9802 2003-01-18  Havoc Pennington  <hp@pobox.com>
9803
9804         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
9805         connection if it hasn't been already.
9806
9807         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
9808         replace with DisconnectFunction.
9809
9810 2003-01-18  Havoc Pennington  <hp@pobox.com>
9811
9812         Building --disable-verbose-mode --disable-asserts --disable-tests
9813         cuts the library from 112K to 45K or so
9814
9815         * configure.in: check for varargs macro support,
9816         add --enable-verbose-mode, --enable-asserts.
9817
9818         * dbus/dbus-internals.h (_dbus_assert): support
9819         DBUS_DISABLE_ASSERT
9820         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
9821
9822 2003-01-18  Havoc Pennington  <hp@pobox.com>
9823
9824         * dbus/dbus-test.c: include config.h so that tests actually run
9825
9826         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
9827         so the failure mode when that assumption fails will be plenty
9828         obvious.
9829
9830 2003-01-18  Havoc Pennington  <hp@pobox.com>
9831
9832         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
9833
9834         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
9835         the distribution
9836
9837         * test/Makefile.am: don't use special variable "TESTS" for echo-*
9838         since we don't want to use those in make check
9839
9840 2003-01-15  Havoc Pennington  <hp@redhat.com>
9841
9842         Release 0.2
9843
9844         * NEWS: update
9845
9846 2003-01-15  Havoc Pennington  <hp@redhat.com>
9847
9848         * test/Makefile.am: fix so that test source code ends up in the
9849         distribution on make distcheck
9850
9851 2003-01-15  Havoc Pennington  <hp@redhat.com>
9852
9853         Release 0.1.
9854
9855         * NEWS: update
9856
9857 2003-01-15  Havoc Pennington  <hp@redhat.com>
9858
9859         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
9860         fix build when --disable-tests
9861
9862         * Makefile.am (EXTRA_DIST): put HACKING in here
9863
9864         * HACKING: document procedure for making a tarball release.
9865
9866 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
9867
9868         * bus/connection.c: (connection_error_handler),
9869         (bus_connection_setup):
9870         * bus/main.c: (main):
9871         Make sure that the DBusConnectionData struct is NULLed
9872         out to prevent a segfault.
9873
9874         * dbus/dbus-errors.c: (dbus_result_to_string):
9875         * dbus/dbus-errors.h:
9876         * dbus/dbus-message.c: (dbus_message_get_fields),
9877         (dbus_message_get_fields_valist), (_dbus_message_test):
9878         * dbus/dbus-message.h:
9879         Make dbus_message_get_fields return a result code so we can
9880         track invalid fields as well as oom.
9881
9882 2003-01-11  Havoc Pennington  <hp@pobox.com>
9883
9884         * configure.in: change --enable-test/--enable-ansi action-if-given
9885         to enable_foo=$enableval instead of enable_foo=yes
9886
9887 2003-01-08  Havoc Pennington  <hp@pobox.com>
9888
9889         * dbus/dbus-string.c (_dbus_string_align_length): new function
9890
9891         * dbus/dbus-test-main.c: move main() for test app here
9892         * dbus/dbus-test.c
9893         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
9894         symbol to run tests, because dbus-test isn't in the main
9895         library
9896
9897         Code review nitpicks.
9898
9899         * dbus/dbus-message.c (dbus_message_write_header): add newlines
9900         for people with narrow emacs ;-). Assert client_serial was filled
9901         in. Assert message->name != NULL.
9902         (dbus_message_append_fields): have "first_field_type" arg separate
9903         from va list, needed for C++ binding that also uses varargs IIRC
9904         and helps with type safety
9905         (dbus_message_new): add @todo about using DBusString to store
9906         service/name internally
9907         (dbus_message_new): don't leak ->service and ->name on OOM later
9908         in the function
9909         (dbus_message_unref): free the service name
9910         (dbus_message_get_fields): same change to varargs
9911         i.e. first_field_type
9912         (_dbus_message_loader_return_buffer): assert that the message data
9913         is aligned (if not it's a bug in our code). Put in verbose griping
9914         about why we set corrupted = TRUE.
9915         (decode_header_data): add FIXME that char* is evil.  Was going to
9916         add FIXME about evil locale-specific string.h strncmp, but just
9917         switched to wacky string-as-uint32 optimization. Move check for
9918         "no room for field name" above get_const_data_len() to avoid
9919         assertion failure in get_const_data_len if we have trailing 2
9920         bytes or the like. Check for service and name fields being
9921         provided twice. Don't leak service/name on error. Require field
9922         names to be aligned to 4 bytes.
9923
9924         * dbus/dbus-marshal.c: move byte swap stuff to header
9925         (_dbus_pack_int32): uscore-prefix
9926         (_dbus_unpack_int32): uscore-prefix
9927         (_dbus_unpack_uint32): export
9928         (_dbus_demarshal_string): add @todo complaining about use of
9929         memcpy()
9930         (_dbus_marshal_get_field_end_pos): add @todo about bad error
9931         handling allowing corrupt data to go unchecked
9932
9933 2003-01-08  Havoc Pennington  <hp@redhat.com>
9934
9935         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
9936         to the select() as needed for authentication. (should be using
9937         _dbus_poll() not select, but for another day)
9938
9939         * dbus/dbus.h: include dbus/dbus-protocol.h
9940
9941 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
9942
9943         * dbus/Makefile.am (dbusinclude_HEADERS): Install
9944         dbus-connection.h
9945
9946 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
9947
9948         * dbus/dbus-internals.c: (_dbus_type_to_string):
9949         New function that returns a string describing a type.
9950
9951         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
9952         * dbus/dbus-marshal.h:
9953         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
9954         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
9955         (dbus_message_iter_get_byte_array):
9956         * dbus/dbus-message.h:
9957         Add new convenience functions for appending and getting message fields.
9958         Also add demarshalling routines for byte arrays.
9959
9960 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
9961
9962         * dbus/dbus-connection-internal.h:
9963         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
9964         (_dbus_connection_get_next_client_serial),
9965         (dbus_connection_send_message):
9966         * dbus/dbus-internals.h:
9967         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
9968         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
9969         (_dbus_marshal_uint32), (_dbus_demarshal_double),
9970         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
9971         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
9972         (_dbus_verbose_bytes), (_dbus_marshal_test):
9973         * dbus/dbus-marshal.h:
9974         * dbus/dbus-message-internal.h:
9975         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
9976         (dbus_message_write_header), (_dbus_message_lock),
9977         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
9978         (dbus_message_get_name), (dbus_message_append_int32),
9979         (dbus_message_append_uint32), (dbus_message_append_double),
9980         (dbus_message_append_string), (dbus_message_append_byte_array),
9981         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
9982         (dbus_message_iter_unref), (dbus_message_iter_has_next),
9983         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
9984         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
9985         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
9986         (decode_header_data), (_dbus_message_loader_return_buffer),
9987         (message_iter_test), (_dbus_message_test):
9988         * dbus/dbus-message.h:
9989         * dbus/dbus-protocol.h:
9990         * dbus/dbus-test.c: (main):
9991         * dbus/dbus-test.h:
9992         * glib/test-dbus-glib.c: (message_handler), (main):
9993         * test/echo-client.c: (main):
9994         * test/watch.c: (check_messages):
9995         Make messages sendable and receivable for real.
9996
9997 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
9998
9999         * dbus/dbus-marshal.c: (_dbus_marshal_double),
10000         (_dbus_marshal_string), (_dbus_marshal_byte_array):
10001         * dbus/dbus-message.c: (dbus_message_append_int32),
10002         (dbus_message_append_uint32), (dbus_message_append_double),
10003         (dbus_message_append_string), (dbus_message_append_byte_array):
10004         Handle OOM restoration.
10005
10006 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
10007
10008         * dbus/dbus-marshal.c: (_dbus_marshal_string),
10009         (_dbus_demarshal_string), (_dbus_marshal_test):
10010         * dbus/dbus-marshal.h:
10011         * dbus/dbus-message.c: (dbus_message_get_name),
10012         Document these functions.
10013
10014         (dbus_message_append_int32), (dbus_message_append_uint32),
10015         (dbus_message_append_double), (dbus_message_append_string),
10016         (dbus_message_append_byte_array):
10017         * dbus/dbus-message.h:
10018         Add functions for adding message fields of different types.
10019
10020         * dbus/dbus-protocol.h:
10021         Add the different types.
10022
10023 2003-01-05  Havoc Pennington  <hp@pobox.com>
10024
10025         * bus/connection.c: implement routines for handling connections,
10026         first thing is keeping a list of owned services on each connection
10027         and setting up watches etc.
10028
10029         * bus/services.c: implement a mapping from service names to lists
10030         of connections
10031
10032         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
10033
10034         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
10035         to use static mutexes for global data
10036
10037         * dbus/dbus-connection.c (dbus_connection_set_data): add new
10038         collection of functions to set/get application-specific data
10039         on the DBusConnection.
10040
10041 2003-01-04  Havoc Pennington  <hp@pobox.com>
10042
10043         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
10044         (_dbus_poll): new function
10045
10046         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
10047         copied from GLib
10048
10049         * bus/loop.c: initial code for the daemon main loop
10050
10051 2003-01-04  Havoc Pennington  <hp@pobox.com>
10052
10053         * test/watch.c (error_handler): make it safe if the error handler
10054         is called multiple times (if we s/error handler/disconnect
10055         handler/ we should just guarantee it's called only once)
10056
10057         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
10058         error handler on disconnect (it's quite possible we should
10059         just change the error handler to a "disconnect handler," I'm
10060         not sure we have any other meaningful errors)
10061
10062         * configure.in: check for getpwnam_r
10063
10064         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
10065         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
10066         mechanism as in SASL spec, using socket credentials
10067
10068         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
10069         (_dbus_send_credentials_unix_socket): new function
10070
10071         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
10072         dbus_accept()
10073         (_dbus_write): only check errno if <0 returned
10074         (_dbus_write_two): ditto
10075
10076 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
10077
10078         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
10079         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
10080         (_dbus_marshal_test):
10081         * dbus/dbus-marshal.h:
10082         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
10083         to _dbus_marshal_utf8_string. Also fix some tests.
10084
10085 2002-12-28  Harri Porten  <porten@kde.org>
10086
10087         * configure.in: added check for C++ compiler and a very cheesy
10088         check for the Qt integration
10089
10090         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
10091
10092         * qt/Makefile.am: added
10093
10094         * qt/.cvsignore: added
10095
10096         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
10097         latter, added #ifdef QT_THREAD_SUPPORT guard.
10098
10099         * dbus/Makefile.am: added missing headers for make dist
10100
10101 2002-12-28  Kristian Rietveld  <kris@gtk.org>
10102
10103         * dbus/Makefile.am: fixup export-symbols-regex.
10104
10105 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
10106
10107         * acinclude.m4: Add this file and put the
10108         PKG_CHECK_MODULE macro in it.
10109
10110 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
10111
10112         * dbus/dbus-marshal.c: (_dbus_marshal_string),
10113         (_dbus_demarshal_double), (_dbus_demarshal_int32),
10114         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
10115         (_dbus_marshal_test):
10116         Make the demarshalling routines align the pos argument.
10117         Add string marshalling tests and fix the obvious bugs
10118         discovered.
10119
10120 2002-12-26  Havoc Pennington  <hp@pobox.com>
10121
10122         * dbus/dbus-auth.c: fixes fixes fixes
10123
10124         * dbus/dbus-transport-unix.c: wire up support for
10125         encoding/decoding data on the wire
10126
10127         * dbus/dbus-auth.c (_dbus_auth_encode_data)
10128         (_dbus_auth_decode_data): append to target string
10129         instead of nuking it.
10130
10131 2002-12-26  Havoc Pennington  <hp@pobox.com>
10132
10133         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
10134         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
10135         doh
10136
10137         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
10138         avoid swap_bytes() overhead (ignoring possible assembly stuff for
10139         now). Main point is because I wanted unpack_uint32 to implement
10140         _dbus_verbose_bytes
10141         (_dbus_verbose_bytes): new function
10142
10143         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
10144
10145         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
10146         mechanism to handle a corrupt message stream
10147         (_dbus_message_loader_new): fix preallocation to only prealloc,
10148         not prelengthen
10149
10150         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
10151         (_dbus_string_test): enhance tests for copy/move and fix the
10152         functions
10153
10154         * dbus/dbus-transport-unix.c: Hold references in more places to
10155         avoid reentrancy problems
10156
10157         * dbus/dbus-transport.c: ditto
10158
10159         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
10160         leak reference count in no-message case
10161
10162         * test/watch.c (do_mainloop): handle adding/removing watches
10163         during iteration over the watches. Also, ref the connection/server
10164         stored on a watch, so we don't try to mangle a destroyed one.
10165
10166         * dbus/dbus-transport-unix.c (do_authentication): perform
10167         authentication
10168
10169         * dbus/dbus-auth.c (get_state): add a state
10170         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
10171         (_dbus_auth_get_unused_bytes): append the unused bytes
10172         to the passed in string, rather than prepend
10173
10174         * dbus/dbus-transport.c (_dbus_transport_init_base): create
10175         the auth conversation DBusAuth
10176
10177         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
10178         (_dbus_transport_new_for_domain_socket): when creating a
10179         transport, pass in whether it's a client-side or server-side
10180         transport so we know which DBusAuth to create
10181
10182 2002-12-03  Havoc Pennington  <hp@pobox.com>
10183
10184         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
10185         _after_ finalizing the derived members
10186         (unix_connection_set): unref watch if we fail to add it
10187
10188         * dbus/dbus-connection.c (dbus_connection_unref): delete the
10189         transport first, so that the connection owned by the
10190         transport will be valid as the transport finalizes.
10191
10192         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
10193         if necessary, and remove watches from the connection.
10194
10195         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
10196
10197 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
10198
10199         * dbus/dbus-marshal.c: (_dbus_marshal_string),
10200         (_dbus_demarshal_double), (_dbus_demarshal_int32),
10201         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
10202         (_dbus_marshal_test):
10203         * dbus/dbus-marshal.h:
10204         Add string marshal functions and have the demarshal functions
10205         return the new position.
10206
10207 2002-12-25  Havoc Pennington  <hp@pobox.com>
10208
10209         * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
10210         it is a simple protocol that just maps directly to SASL.
10211
10212         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
10213         initial implementation, not actually used yet.
10214
10215         * dbus/dbus-string.c (_dbus_string_find): new function
10216         (_dbus_string_equal): new function
10217         (_dbus_string_base64_encode): new function
10218         (_dbus_string_base64_decode): new function
10219
10220 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
10221
10222         * dbus/Makefile.am:
10223         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
10224         (_dbus_marshal_int32), (_dbus_marshal_uint32),
10225         (_dbus_demarshal_double), (_dbus_demarshal_int32),
10226         (_dbus_demarshal_uint32), (_dbus_marshal_test):
10227         * dbus/dbus-marshal.h:
10228         * dbus/dbus-protocol.h:
10229         * dbus/dbus-test.c: (main):
10230         * dbus/dbus-test.h:
10231         Add un-optimized marshalling/demarshalling routines.
10232
10233 2002-12-25  Harri Porten  <porten@kde.org>
10234
10235         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
10236
10237 2002-12-24  Zack Rusin  <zack@kde.org>
10238
10239         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
10240         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
10241         main loop stuff
10242
10243 2002-12-24  Havoc Pennington  <hp@pobox.com>
10244
10245         * glib/dbus-gthread.c: fix include
10246
10247         * glib/dbus-glib.h: rename DBusMessageHandler for now.
10248         I think glib API needs to change, though, as you don't
10249         want to use DBusMessageFunction, you want to use the
10250         DBusMessageHandler object. Probably
10251         dbus_connection_open_with_g_main_loop()
10252         and dbus_connection_setup_g_main_loop() or something like that
10253         (but think of better names...) that just create a connection
10254         that has watch/timeout functions etc. already set up.
10255
10256         * dbus/dbus-connection.c
10257         (dbus_connection_send_message_with_reply): new function just to
10258         show how the message handler helps us deal with replies.
10259
10260         * dbus/dbus-list.c (_dbus_list_remove_last): new function
10261
10262         * dbus/dbus-string.c (_dbus_string_test): free a string that
10263         wasn't
10264
10265         * dbus/dbus-hash.c: use memory pools for the hash entries
10266         (rebuild_table): be more paranoid about overflow, and
10267         shrink table when we can
10268         (_dbus_hash_test): reduce number of sprintfs and write
10269         valid C89. Add tests for case where we grow and then
10270         shrink the hash table.
10271
10272         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
10273
10274         * dbus/dbus-connection.c (dbus_connection_register_handler)
10275         (dbus_connection_unregister_handler): new functions
10276
10277         * dbus/dbus-message.c (dbus_message_get_name): new
10278
10279         * dbus/dbus-list.c: fix docs typo
10280
10281         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
10282         an object representing a handler for messages.
10283
10284 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
10285
10286         * glib/dbus-glib.h:
10287         * glib/dbus-gthread.c: (dbus_gthread_init):
10288         Don't use the gdbus prefix for public functions.
10289
10290 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
10291
10292         * Makefile.am:
10293         * configure.in:
10294         Add GLib checks and fixup .pc files
10295
10296         * glib/Makefile.am:
10297         * glib/dbus-glib.h:
10298         * glib/dbus-gmain.c: (gdbus_connection_prepare),
10299         (gdbus_connection_check), (gdbus_connection_dispatch),
10300         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
10301         (dbus_connection_gsource_new):
10302         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
10303         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
10304         * glib/test-dbus-glib.c: (message_handler), (main):
10305         Add GLib support.
10306
10307 2002-12-15  Harri Porten  <porten@kde.org>
10308
10309         * autogen.sh: check for libtoolize before attempting to use it
10310
10311         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
10312         struct.
10313
10314         * .cvsignore: ignore more stamp files
10315
10316         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
10317
10318         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
10319         without make install.
10320
10321 2002-12-15  Havoc Pennington  <hp@pobox.com>
10322
10323         * dbus/dbus-threads.c: add thread stubs that a higher library
10324         layer can fill in. e.g. the GLib wrapper might fill them in with
10325         GThread stuff. We still need to use this thread API to
10326         thread-safe-ize the library.
10327
10328 2002-12-12  Havoc Pennington  <hp@pobox.com>
10329
10330         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
10331         below new interfaces and include fewer system headers.
10332
10333         * dbus/dbus-sysdeps.c (_dbus_read): new function
10334         (_dbus_write): new function
10335         (_dbus_write_two): new function
10336         (_dbus_connect_unix_socket): new function
10337         (_dbus_listen_unix_socket): new function
10338
10339         * dbus/dbus-message-internal.h: change interfaces to use
10340         DBusString
10341
10342 2002-12-11  Havoc Pennington  <hp@pobox.com>
10343
10344         * dbus/dbus-types.h: add dbus_unichar
10345
10346         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
10347
10348         * dbus/dbus-connection.c (dbus_connection_send_message): return
10349         TRUE on success
10350
10351         * dbus/dbus-transport.c: include dbus-watch.h
10352
10353         * dbus/dbus-connection.c: include dbus-message-internal.h
10354
10355         * HACKING: add file with coding guidelines stuff.
10356
10357         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
10358         handling here, for security purposes (as in vsftpd). Not actually
10359         using this class yet.
10360
10361         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
10362         system/libc usage here, as in vsftpd, for ease of auditing (and
10363         should also simplify portability). Haven't actually moved all the
10364         system/libc usage into here yet.
10365
10366 2002-11-25  Havoc Pennington  <hp@pobox.com>
10367
10368         * dbus/dbus-internals.c (_dbus_verbose): fix to not
10369         always print the first verbose message.
10370
10371 2002-11-24  Havoc Pennington  <hp@pobox.com>
10372
10373         * test/echo-client.c, test/echo-server.c: cheesy test
10374         clients.
10375
10376         * configure.in (AC_CHECK_FUNCS): check for writev
10377
10378         * dbus/dbus-message.c (_dbus_message_get_network_data): new
10379         function
10380
10381         * dbus/dbus-list.c (_dbus_list_foreach): new function
10382
10383         * dbus/dbus-internals.c (_dbus_verbose): new function
10384
10385         * dbus/dbus-server.c, dbus/dbus-server.h: public object
10386         representing a server that listens for connections.
10387
10388         * dbus/.cvsignore: create
10389
10390         * dbus/dbus-errors.h, dbus/dbus-errors.c:
10391         public API for reporting errors
10392
10393         * dbus/dbus-connection.h, dbus/dbus-connection.c:
10394         public object representing a connection that
10395         sends/receives messages. (Same object used for
10396         both client and server.)
10397
10398         * dbus/dbus-transport.h, dbus/dbus-transport.c:
10399         Basic abstraction for different kinds of stream
10400         that we might read/write messages from.
10401
10402 2002-11-23  Havoc Pennington  <hp@pobox.com>
10403
10404         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
10405         _DBUS_INT_MAX
10406
10407         * dbus/dbus-test.c (main): add list test, and include
10408         dbus-test.h as intended
10409
10410         * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
10411         (_dbus_hash_table_remove_int): return value indicates
10412         whether the entry existed to remove
10413
10414         * dbus/dbus-list.c: add linked list utility class,
10415         with docs and tests
10416
10417         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
10418         array sometimes.
10419
10420 2002-11-23  Havoc Pennington  <hp@pobox.com>
10421
10422         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
10423         DBUS_END_DECLS to nothing, that should fix this once and for all
10424
10425         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
10426
10427         * dbus/dbus-message.c, dbus/dbus-hash.c:
10428         add some missing @brief
10429
10430 2002-11-23  Havoc Pennington  <hp@pobox.com>
10431
10432         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
10433         to avoid confusing Doxygen
10434
10435         * dbus/dbus-hash.c: @} not }@
10436
10437         * dbus/dbus-message.c (struct DBusMessage): split out
10438         internals docs
10439
10440 2002-11-23  Havoc Pennington  <hp@pobox.com>
10441
10442         * configure.in: pile on more warning flags if using gcc
10443
10444         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
10445         to document static functions
10446
10447         * configure.in: add summary to end of configure so it
10448         looks nice and attractive
10449
10450         * dbus/dbus-hash.c: finish implementation and write unit
10451         tests and docs
10452
10453         * configure.in: add --enable-tests to enable unit tests
10454
10455         * dbus/dbus-test.c: test program to run unit tests
10456         for all files in dbus/*, initially runs a test for
10457         dbus-hash.c
10458
10459         * dbus/dbus-internals.h: file to hold some internal utility stuff
10460
10461 2002-11-22  Havoc Pennington  <hp@redhat.com>
10462
10463         * dbus/dbus-hash.c: copy in Tcl hash table, not yet
10464         "ported" away from Tcl
10465
10466         * dbus/dbus-types.h: header for types such as dbus_bool_t
10467
10468 2002-11-22  Havoc Pennington  <hp@redhat.com>
10469
10470         * dbus/dbus.h: fixups for doc warnings
10471
10472         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
10473         macros
10474         (QUIET): make it quiet so we can see warnings
10475
10476         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
10477
10478 2002-11-22  Havoc Pennington  <hp@redhat.com>
10479
10480         * Makefile.am: include "Doxyfile" target in all-local
10481
10482         * configure.in: generate the Doxyfile
10483
10484         * Doxyfile.in: move Doxyfile here, so we can use
10485         configure to generate a Doxyfile with the right
10486         version number etc.
10487
10488 2002-11-22  Havoc Pennington  <hp@redhat.com>
10489
10490         * dbus/dbus-message.c: move inline docs into .c file
10491
10492         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
10493         so all docs are under doc/
10494         (MAN_EXTENSION): generate man pages. Use extension
10495         ".3dbus" which matches ".3qt" on my system,
10496         I guess this is OK, I don't know really.
10497         (FILE_PATTERNS): look for .c files not .h, makes sense
10498         for plain C I think
10499
10500 2002-11-22  Havoc Pennington  <hp@pobox.com>
10501
10502         * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
10503         because any app can be a server, and any app can be a client,
10504         the bus is a special kind of server.
10505
10506 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
10507
10508         * Doxyfile : adding. Still needs Makefile rules to be generated
10509         automatically (just run "doxygen" in the toplevel dir for now to
10510         generate docs)
10511
10512         * dbus/dbus-message.h : Adding sample docs (javadoc since
10513         resembles gtk-doc a little more)
10514
10515         * dbus/dbus.h : Adding sample docs
10516
10517 2002-11-21  Havoc Pennington  <hp@redhat.com>
10518
10519         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
10520         so we can allow ourselves to include files directly,
10521         instead of having to use dbus.h
10522
10523         * dbus/dbus.h: fill in
10524
10525         * dbus/dbus-message.h: sketch out a sample header file.
10526         Include griping if you include it directly instead of
10527         via dbus.h
10528
10529         * dbus/dbus-macros.h: new file with macros for extern "C",
10530         TRUE/FALSE, NULL, etc.
10531
10532         * doc/file-boilerplate.c: put include guards in here
10533
10534 2002-11-21  Havoc Pennington  <hp@redhat.com>
10535
10536         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
10537
10538         * COPYING: include the GPL as well, and license code
10539         under both AFL and GPL.
10540
10541 2002-11-21  Havoc Pennington  <hp@redhat.com>
10542
10543         * acconfig.h: get rid of this
10544
10545         * autogen.sh (run_configure): add --no-configure option
10546
10547         * configure.in: remove AC_ARG_PROGRAM to make
10548         autoconf complain less. add AC_PREREQ.
10549         add AC_DEFINE third arg.
10550
10551 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
10552
10553         * doc/Makefile.am:
10554         Fix references so we can distcheck.
10555
10556 2002-11-21  Havoc Pennington  <hp@redhat.com>
10557
10558         * Initial module creation
10559