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