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