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