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