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