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