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