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