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