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