2004-08-26 Jon Trowbridge <trow@ximian.com>
[platform/upstream/dbus.git] / ChangeLog
1 2004-08-26  Jon Trowbridge  <trow@ximian.com>
2
3         * bus/driver.c (bus_driver_handle_service_exists): Respond with
4         TRUE if we are inquiring about the existence of the built-in
5         org.freedesktop.DBus service.
6
7 2004-08-25  John Palmieri  <johnp@redhat.com>
8         * bus/config-parser.c:
9         (struct PolicyType): Add POLICY_CONSOLE
10         (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
11         (start_busconfig_child): Sets up console element when
12         <policy at_console=""> is encountered in a policy file
13         (append_rule_from_element): Convert console elements to console
14         rules.
15
16         * bus/policy.c: 
17         (bus_policy_create_client_policy): Add console rules to the client
18         policy based on if the client is at the console
19         (bus_policy_append_console_rule): New function for adding a
20         console rule to a policy
21         (bus_policy_merge): Handle console rule merging
22
23         * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
24         where we check for console user files
25         
26         * dbus/dbus-sysdeps.c:
27         (_dbus_file_exists): New function which checks if the given
28         file exists
29         (_dbus_user_at_console): New function which does the system
30         specific process of checking if the user is at the console
31
32         * dbus/dbus-userdb.c:
33         (_dbus_is_console_user): New function converts a UID to user name
34         and then calls the system specific _dbus_user_at_console to 
35         see if the user is at the console and therefor a console user
36
37 2004-08-25  Olivier Andrieu  <oliv__a@users.sourceforge.net>
38
39         * bus/config-parser.c (set_limit):
40         * bus/dbus-daemon-1.1.in:
41         * test/data/valid-config-files/many-rules.conf: set the
42         max_match_rules_per_connection limt from the config file. 
43
44         * doc/busconfig.dtd: update the DTD.
45
46         * bus/driver.c: remove some unused variables.
47
48 2004-08-24  Mikael Hallendal  <micke@imendio.com>
49
50         * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since 
51         it's been replaced by dbus_g_bus_get
52
53 2004-08-23  Colin Walters  <walters@redhat.com>
54
55         Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
56
57         * bus/selinux.h: Prototype bus_selinux_get_policy_root.
58
59         * bus/selinux.c: Create a thread for policy reload notification.
60         (bus_selinux_get_policy_root): Implement.
61
62         * bus/config-parser.c (start_busconfig_child)
63         (bus_config_parser_content): Support SELinux-root relative
64         inclusion.
65
66         * configure.in <HAVE_SELINUX>: Add -lpthread.
67         
68         * bus/test-main.c (test_pre_hook, test_post_hook): New.
69         (test_post_hook): Move memory checking into here.
70         (test_pre_hook, test_post_hook): Move SELinux checks in
71         here, but conditional on a DBUS_TEST_SELINUX environment
72         variable.  Unfortunately we can't run the SELinux checks
73         as a normal user, since they won't have any permissions
74         for /selinux.  So this will have to be tested manually
75         for now, until we have virtualization for most of
76         libselinux.
77         
78 2004-08-23  Havoc Pennington  <hp@redhat.com>
79
80         * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
81         drop supplementary groups, suggested by Steve Grubb
82
83 2004-08-20  Colin Walters  <walters@redhat.com>
84
85         * bus/config-parser.c (start_busconfig_child): Remove some unused
86         variables.
87         
88         * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
89         warning.
90
91 2004-08-17  Joe Shaw  <joeshaw@novell.com>
92
93         * configure.in: If --enable-mono is passed in, if we can't find
94         mono error out.
95
96         * mono/Makefile.am: Use /gacutil to install assemblies into the
97         GAC and not /root.
98
99 2004-08-12  Havoc Pennington  <hp@redhat.com>
100
101         * NEWS: update for 0.22
102
103         * configure.in: release 0.22
104
105 2004-08-11  Colin Walters  <walters@redhat.com>
106
107         * tools/dbus-send.c (main, usage): Add --reply-timeout
108         argument.
109
110 2004-08-10  Olivier Andrieu  <oliv__a@users.sourceforge.net>
111
112         * bus/bus.c (process_config_first_time_only): get rid of an unused
113         DBusError that was causing a memoy leak (bug #989).
114
115         * dbus/dbus-keyring.c, dbus/dbus-message.c:
116         fix compilation on Solaris/Forte C (bug #974)
117
118         * bus/main.c (main): plug two minuscule memleaks.
119
120 2004-08-10  Havoc Pennington  <hp@redhat.com>
121
122         * doc/dbus-tutorial.xml: add some more info on GLib bindings
123
124 2004-08-09  Havoc Pennington  <hp@redhat.com>
125
126         * COPYING: switch to Academic Free License version 2.1 instead of
127         2.0, to resolve complaints about patent termination clause.
128
129 2004-07-31  John (J5) Palmieri  <johnp@redhat.com>
130
131         * README: added documentation for the --enable-python 
132         configure switch.
133
134 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
135
136         * bus/config-parser.c (bus_config_parser_new): fix an invalid
137         _unref in the SELinux support.
138
139         * doc/busconfig.dtd: update DTD for SELinux support.
140
141         * bus/config-loader-libxml.c: fix error handler and parser
142         initialisation/cleanup. OOM test now works with libxml2 HEAD.
143
144         * configure.in: remove the warning about libxml2.
145
146         * dbus/dbus-bus.c: silence doxygen warning.
147
148 2004-07-31  Colin Walters  <walters@redhat.com>
149
150         * configure.in: Move #error in SELinux check to its own line.
151
152 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
153
154         * dbus/dbus-internals.h (_DBUS_SET_OOM):
155         * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
156         dbus_error_set.
157
158         * bus/dispatch.c (check_send_exit_to_service): fix the test case,
159         broken by the change in the _SET_OOM macros.
160
161 2004-07-31  Colin Walters  <walters@redhat.com>
162
163         * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
164         BUS_SET_OOM.
165
166 2004-07-31  Colin Walters  <walters@redhat.com>
167
168         * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
169         to correctly detect DBUS__ACQUIRE_SVC.  Also add an
170         AC_MSG_CHECKING.
171
172 2004-07-24  Havoc Pennington  <hp@redhat.com>
173
174         SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
175
176         * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
177         functionality
178
179         * configure.in: add --enable-selinux
180         
181         * bus/policy.c (bus_policy_merge): add FIXME to a comment
182
183         * bus/main.c (main): initialize and shut down selinux
184
185         * bus/connection.c: store SELinux ID on each connection, to avoid 
186         repeated getting of the string context and converting it into 
187         an ID
188
189         * bus/bus.c (bus_context_get_policy): new accessor, though it
190         isn't used
191         (bus_context_check_security_policy): check whether the security
192         context of sender connection can send to the security context of
193         recipient connection
194
195         * bus/config-parser.c: add parsing for <selinux> and <associate>
196         
197         * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
198         implement dbus_connection_get_unix_fd()
199
200         * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
201         function, used by the selinux stuff
202         
203 2004-07-29  Olivier Andrieu  <oliv__a@users.sourceforge.net>
204
205         * bus/config-loader-libxml.c: complete the implementation of
206         libxml backend for config file loader. Doesn't work with full OOM
207         test yet. 
208         
209         * configure.in: change error when selecting libxml into a warning.
210         
211         * test/data/invalid-config-files: add two non-well-formed XML
212         files. 
213         
214         * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
215         
216         * dbus/dbus-transport-unix.c (unix_handle_watch): do not
217         disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
218         be necessary to read all the buffer. (bug #894)
219
220         * bus/activation.c (bus_activation_activate_service): fix a
221         potential assertion failure (bug #896). Small optimization in the
222         case of auto-activation messages.
223
224         * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
225         add test case for byte-through-vararg bug (#901). patch by Kimmo
226         Hämäläinen. 
227
228 2004-07-28  Anders Carlsson  <andersca@gnome.org>
229
230         * python/dbus.py:
231         * python/dbus_bindings.pyx.in:
232         Add dbus.init_gthreads (), allow emit_signal to pass
233         arguments to the signal.
234         
235 2004-07-24  Havoc Pennington  <hp@redhat.com>
236
237         * AUTHORS: add some people, not really comprehensively, let me
238         know if I missed you
239
240 2004-07-24  Havoc Pennington  <hp@redhat.com>
241
242         * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
243         Owen
244
245         * test/Makefile.am (DIST_SUBDIRS): here also
246
247 2004-07-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
248
249         * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
250         breaking build on Solaris, reported by Farhad Saberi on the ML.
251
252         * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
253         va_arg invocation to account for integer promotion in the case of
254         DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
255
256         * bus/services.c (bus_service_remove_owner): fix bug #902, use
257         _dbus_list_get_first_link, not _dbus_list_get_first.
258
259         * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
260
261         * dbus/dbus-object-tree.c (free_subtree_recurse): always null
262         handler functions so that the asserts in _dbus_object_subtree_unref
263         do not fail.
264
265         * dbus/dbus-transport-unix.c (do_reading):
266         _dbus_transport_queue_messages return value is of type
267         dbus_bool_t, not DBusDispatchStatus.
268         
269 2004-07-19  David Zeuthen  <david@fubar.dk>
270
271         * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
272
273         * bus/dispatch.c:
274         (check_get_connection_unix_user): Debug says GetProperty; but the
275         method is called GetConnectionUnixUser
276         (check_get_connection_unix_process_id): New function
277         (bus_dispatch_test): Actually call check_get_connection_unix_user();
278         also call check_get_connection_unix_process_id()
279         
280         * bus/driver.c:
281         (bus_driver_handle_get_connection_unix_process_id): New function,
282         handles GetConnectionUnixProcessID on the org.freedesktop.DBus
283         interface
284         
285         * dbus/dbus-auth.c:
286         (handle_server_data_external_mech): Set pid from the credentials
287         obtained from the socket
288         
289         * dbus/dbus-connection.c:
290         (dbus_connection_get_unix_process_id): New function
291         
292         * dbus/dbus-connection.h: 
293         Add prototype for dbus_connection_get_unix_process_id
294         
295         * dbus/dbus-transport.c:
296         (_dbus_transport_get_unix_process_id): New function
297         
298         * dbus/dbus-transport.h:
299         Add prototype for _dbus_transport_get_unix_process_id
300         
301 2004-07-19  Olivier Andrieu  <oliv__a@users.sourceforge.net>
302
303         * dbus/dbus-message.c: Message counter fix, patch by Christian
304         Hammond <chipx86@gnupdate.org>
305
306 2004-07-18  Seth Nickell  <seth@gnome.org>
307
308         * python/dbus.py:
309         * python/dbus_bindings.pyx.in:
310         * python/tests/test-client.py:
311
312         Add dbus.ByteArray and dbus_bindings.ByteArray
313         types so that byte streams can be passed back.
314
315         Give jdahlin the heaps of credit that are so
316         rightfully his.
317         
318 2004-07-12  Seth Nickell  <seth@gnome.org>
319
320         * python/dbus.py:
321
322         Add message argument to the default object_method_handler
323         function.
324         
325         * python/dbus_bindings.pyx.in:
326
327         Automatically return NIL when passed an empty list
328         (we can't pass back a list since lists are typed
329         and we don't have any idea what type the the client
330         intended the list to be... :-( )
331         
332 2004-07-10  Seth Nickell  <seth@gnome.org>
333
334         * python/examples/Makefile.am:
335
336         Fix distcheck breakage caused by new examples.
337
338 2004-07-10  Seth Nickell  <seth@gnome.org>
339
340         * python/dbus.py:
341
342         Add "message" argument to service-side dbus.Object
343         methods. This will break existing services written
344         using the python bindings, but will allow extraction
345         of all the message information (e.g. who its from).
346
347         Add improved "object oriented" signal handling/emission.
348         
349         * python/examples/example-service.py:
350
351         Nix this example.
352         
353         * python/examples/example-signal-emitter.py:
354         * python/examples/example-signal-recipient.py:
355
356         Two new examples that show how to emit and receive
357         signals using the new APIs.
358         
359         * python/examples/example-signals.py:
360         * python/examples/gconf-proxy-service.py:
361         * python/examples/gconf-proxy-service2.py:
362
363         Add "message" argument to service methods.
364
365 2004-06-28  Kay Sievers <kay.sievers@vrfy.org>
366
367         * bus/driver.c (bus_driver_handle_get_connection_unix_user)
368         * dbus/bus.c (dbus_bus_get_unix_user)
369         * doc/dbus-specification.xml: implement GetConnectionUnixUser
370         method of org.freedesktop.DBus interface.
371
372         * bus/dispatch.c: test case
373
374 2004-06-23  John (J5) Palmieri  <johnp@redhat.com>
375
376         * python/Makefile.am: switched include directory from glib/ to dbus/
377         since dbus-glib.h moved
378  
379 2004-06-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
380
381         * configure.in: prevent building the gcj stuff and libxml loader
382         since they are broken.
383
384 2004-06-20  Havoc Pennington  <hp@redhat.com>
385
386         * dbus/dbus-glib-error-enum.h: autogenerate the GError enum 
387         codes from the dbus error names
388         
389         * glib/dbus-glib.h: move to subdir dbus/ since it's included 
390         as dbus/dbus-glib.h and that breakage is now visible due to 
391         including dbus/dbus-glib.h in dbus-glib-lowlevel.h
392         
393         * glib/dbus-glib.h: s/gproxy/g_proxy/
394
395         * dbus/dbus-shared.h: new header to hold stuff shared with
396         binding APIs
397         
398         * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
399         than dbus-errors.h
400
401         * glib/dbus-glib.h (dbus_set_g_error): move to
402         dbus-glib-lowlevel.h
403
404         * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
405         of stuff to enable this
406
407         * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
408
409         * a bunch of other changes with the same basic "separate glib 
410         bindings from dbus.h" theme
411         
412 2004-06-10  Owen Fraser-Green  <owen@discobabe.net>
413
414         * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
415
416         * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
417
418 2004-06-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
419
420         * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
421         the reply value of the ServiceExists message.
422
423 2004-06-07  John (J5) Palmieri  <johnp@redhat.com>
424
425         * python/dbus_bindings.pyx.in: No longer need to parse path
426         elements and pass them as arrays of strings.  The C API now
427         accepts plain path strings.
428         (_build_parsed_path): removed 
429
430 2004-06-07  Havoc Pennington  <hp@redhat.com>
431
432         * doc/TODO: remove auto-activation item since it's done; sort
433         items by importance/milestone
434
435 2004-06-07  Havoc Pennington  <hp@redhat.com>
436
437         * dbus/dbus-message-builder.c (_dbus_message_data_load): append
438         random signature when using REQUIRED_FIELDS (this hack won't work
439         in the long term)
440
441         * dbus/dbus-message.c: change the signature to be a header field,
442         instead of message->signature special-case string. Incremental
443         step forward. Then we can fix up code to send the signature in the
444         message, then fix up code to validate said signature, then fix up
445         code to not put the typecodes inline, etc.
446         (load_one_message): don't make up the signature after the fact
447         (decode_header_data): require signature field for the known
448         message types
449
450         * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
451
452         * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
453
454 2004-06-07  Owen Fraser-Green  <owen@discobabe.net>
455
456         * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
457
458         * mono/Handler.cs: Updated to follow new path argument for
459         (un-)registering objects.
460
461         * mono/example/Makefile.am:
462         * mono/Makefile.am:
463         * configure.in: Bumped required version for mono and use new -pkg
464         syntax for deps
465
466 2004-06-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
467
468         * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
469         registration functions take the path argument as char* instead of
470         char**.
471
472         * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
473         split off the path decompostion part of
474         _dbus_demarshal_object_path. Some misc. fixes to silence compiler
475         warnings. 
476
477         * glib/dbus-gobject.c, test/test-service.c: update accordingly.
478         
479 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
480  
481         * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
482         machine approach.  A state is implemented as a function that
483         handles incoming events as specified for that state.
484         
485         * doc/dbus-specification.xml: Update auth protocol state machine
486         specification to match implementation.  Remove some leftover
487         base64 examples.
488
489 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
490
491         * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
492         dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
493         quiet doxygen.
494
495         * Doxyfile.in: remove deprecated options.
496
497         * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
498         glib/test-thread.h, glib/test-thread-client.c,
499         glib/test-thread-server.c, glib/test-profile.c,
500         glib/test-dbus-glib.c: remove these unused files.
501
502 2004-06-01  Olivier Andrieu  <oliv__a@users.sourceforge.net>
503
504         * dbus/dbus-object-tree.c
505         (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
506         non-fallback handlers (bug #684).
507         (_dbus_object_subtree_new): initialize invoke_as_fallback field.
508         (find_subtree_recurse): report wether the returned subtree is an
509         exact match or a "fallback" match higher up in the tree.
510         (object_tree_test_iteration): update test case.
511
512 2004-06-01  Seth Nickell  <seth@gnome.org>
513
514         * python/dbus_bindings.pyx.in:
515         * python/tests/test-client.py:
516
517         Round off basic type support. Add dicts (yay!), and 
518         remaining array types.
519
520         Make MessageIter more general so it works for dicts too.
521
522         Mark all loop variables as C integers.
523         
524 2004-05-31  Havoc Pennington  <hp@redhat.com>
525
526         * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
527         "in" before "out"
528
529         * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
530
531         * glib/dbus-glib-tool.c (main): set up to have a --self-test
532         option that runs the tests, and start filling in some code
533         including for starters just dumping the interfaces to stdout
534
535         * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
536
537         * test/data/valid-introspection-files/lots-of-types.xml: test of
538         an example introspection file
539
540         * glib/dbus-gparser.c (parser_check_doctype): doctype should be
541         "node" (I think...)
542
543 2004-05-31  Seth Nickell  <seth@gnome.org>
544
545         * python/dbus_bindings.pyx.in:
546         * python/tests/test-client.py:
547
548         Test Suite: 1
549         Python Bindings: 0
550
551         Fix string array memory trashing bug... oops...
552
553 2004-05-30  Seth Nickell  <seth@gnome.org>
554
555         * python/dbus.py:
556
557         Add a nicer-but-less-flexible alternate API for handling 
558         calls to virtual objects in dbus.ObjectTree.
559
560         Screw up the argument order to the dbus.Object constructor
561         for consistency with dbus.ObjectTree (and to make dbus_methods
562         optional for future extension)
563         
564         * python/examples/Makefile.am:
565         * python/examples/gconf-proxy-service.py:
566         * python/examples/gconf-proxy-service2.py:
567
568         Alternate implementation of gconf-proxy-service using the
569         nicer dbus.ObjectTree API.
570         
571         * python/examples/example-service.py:
572         * python/tests/test-server.py
573
574         Reverse the argument order to deal with dbus.Object constructor
575         changes.
576         
577 2004-05-30  Seth Nickell  <seth@gnome.org>
578
579         * python/examples/example-client.py:
580         * python/examples/example-service.py:
581
582         Take it back. Lists seem to work but they're broken
583         in the test suite. Make the base examples use
584         lists (works fine).
585
586 2004-05-30  Seth Nickell  <seth@gnome.org>
587
588         * python/dbus_bindings.pyx.in:
589         * python/tests/test-client.py:
590
591         Add some more tests and fix errors that crop up.
592         Unfortunately, currently it seems like marshalling
593         and unmarshalling of lists is completely broken :-(
594
595 2004-05-30  Seth Nickell  <seth@gnome.org>
596
597         * python/dbus_bindings.pyx.in:
598
599         Add support for ObjectPath type.
600
601         * python/dbus.py:
602
603         Refactor message handling code to a common function.
604         
605         * python/tests/test-client.py:
606         * python/tests/test-server.py:
607
608         Add tests that check to make sure values of all types
609         can be echoed from a service w/o mangling.
610         
611 2004-05-29  Seth Nickell  <seth@gnome.org>
612
613         * python/dbus.py:
614
615         Add ObjectTree class which allows implementation
616         of trees of "virtual" objects. Basically the python
617         wrapper for "register_fallback".
618         
619         * python/examples/Makefile.am
620         * python/examples/gconf-proxy-client.py:
621         * python/examples/gconf-proxy-service.py:
622
623         Implement a simple GConf proxy service that supports
624         get/set on string and int GConf keys using the ObjectTree.
625         
626 2004-05-29  Seth Nickell  <seth@gnome.org>
627
628         * python/dbus.py:
629         * python/examples/example-client.py:
630         * python/examples/example-service.py:
631         * python/examples/list-system-services.py:
632
633         Add SessionBus, SystemBus and ActivationBus classes
634         so you don't need to know the special little BUS_TYPE
635         flag.
636         
637 2004-05-29  Havoc Pennington  <hp@redhat.com>
638
639         * bus/config-parser.c (process_test_valid_subdir): temporarily
640         stop testing config parser OOM handling, since expat has issues
641         http://freedesktop.org/pipermail/dbus/2004-May/001153.html
642
643         * bus/dbus-daemon-1.1.in: change requested_reply to
644         send_requested_reply/receive_requested_reply so we can send the
645         replies, not just receive them.
646
647         * bus/config-parser.c: parse the new
648         send_requested_reply/receive_requested_reply
649
650         * bus/policy.c (bus_client_policy_check_can_send): add
651         requested_reply argument and use it
652
653         * bus/bus.c (bus_context_check_security_policy): pass through
654         requested_reply status to message send check
655
656         * bus/system.conf.in: adapt to requested_reply change
657         
658 2004-05-28  Havoc Pennington  <hp@redhat.com>
659
660         * test/glib/test-service-glib.c (main): remove unused variable
661
662         * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
663
664         * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
665         from the enum, no longer in use.
666
667         * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
668         works right.
669
670         * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
671         whether error_name passed in is a valid error name.
672
673 2004-05-28  John (J5) Palmieri  <johnp@redhat.com>
674
675         * dbus/dbus-message.c (dbus_message_get_args): Added support for
676         OBJECT_PATH and OBJECT_PATH_ARRAY
677
678 2004-05-28  Seth Nickell  <seth@gnome.org>
679
680         * python/examples/Makefile.am:
681
682         Forget to add Makefile.am. Do not pass go.
683
684 2004-05-28  Michael Meeks  <michael@ximian.com>
685
686         * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal): 
687         fix no int64 case.
688
689         * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
690
691         * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
692         (_dbus_message_iter_get_basic_type_array): impl.
693         drastically simplify ~all relevant _get methods to use these.
694         (_dbus_message_iter_append_basic_array),
695         (dbus_message_iter_append_basic): impl
696         drastically simplify ~all relevant _append methods to use these.
697
698         * dbus/dbus-message-builder.c (parse_basic_type) 
699         (parse_basic_array, lookup_basic_type): impl.
700         (_dbus_message_data_load): prune scads of duplicate /
701         cut & paste coding.
702
703         * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array) 
704         (_dbus_demarshal_basic_type): implement,
705         (demarshal_and_validate_len/arg): beef up debug.
706         (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
707
708 2004-05-27  Seth Nickell  <seth@gnome.org>
709
710         * configure.in:
711         * python/Makefile.am:
712
713         Include the example python apps in the tarball.
714         
715         * python/examples/list-system-services.py
716
717         Add a python new example that fetches the list of services
718         from the system bus.
719         
720 2004-05-27  Seth Nickell  <seth@gnome.org>
721
722         * python/dbus.py:
723         * python/dbus_bindings.pyx.in:
724
725         Fix failure to notify that a signal was not handled,
726         resulted in hung functions.
727         
728 2004-05-25  Colin Walters  <walters@redhat.com>
729
730         * tools/dbus-monitor.c (main): Monitor all types of messages.
731
732 2004-05-23  Owen Fraser-Green  <owen@discobabe.net>
733
734         * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
735         which unregisters the object path and disposes the handler.
736
737 2004-05-23  Kristian Høgsberg  <krh@redhat.com>
738  
739         Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
740          
741         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
742         operands to && so we call dbus_message_iter_next () for the last
743         argument also.
744
745 2004-05-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
746
747         * dbus/dbus-object-tree.c
748         (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
749         children even if the requested path isn't registered.
750         (object_tree_test_iteration): test object_tree_list_registered.
751
752         * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
753         it to 0.
754         
755 2004-05-20  Kristian Høgsberg  <krh@redhat.com>
756
757         * doc/TODO: Remove resolved items.
758
759         * bus/expirelist.h (struct BusExpireList): remove unused n_items
760         field.
761         
762         * bus/connection.c (bus_connections_expect_reply): Enforce the
763         per-connection limit on pending replies.
764         
765         Patch from Jon Trowbridge <trow@ximian.com>:
766  
767         * bus/main.c (setup_reload_pipe): Added.  Creates a pipe and sets
768         up a watch that triggers a config reload when one end of the pipe
769         becomes readable.
770         (signal_handler): Instead of doing the config reload in our SIGHUP
771         handler, just write to the reload pipe and let the associated
772         watch handle the reload when control returns to the main loop.
773  
774         * bus/driver.c (bus_driver_handle_reload_config): Added.
775         Implements a ReloadConfig method for requesting a configuration
776         file reload via the bus driver.
777  
778 2004-05-19  Owen Fraser-Green  <owen@discobabe.net>
779
780         * HACKING: Updated release instructions concerning the wiki page.
781
782 2004-05-18  Kristian Høgsberg  <krh@redhat.com>
783
784         * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
785         filter against auth->allowed_mechs; we only add allowed mechs in
786         record_mechanisms().
787  
788         * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
789         ALLOWED_MECHS to auth-script format so we can set the list of
790         allowed mechanisms.
791  
792         * data/auth/client-out-of-mechanisms.auth-script: New test to
793         check client disconnects when it is out of mechanisms to try.
794  
795         * dbus/dbus-auth.c (process_command): Remove check for lines
796         longer that 1 MB; we only buffer up maximum 16 kB.
797  
798         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
799         dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
800         Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
801         assume there might be unused bytes.
802  
803         * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
804         client-out-of-mechs, it is handled in process_reject(). Move check
805         for max failures to send_rejected(), as it's a server-only thing.
806
807         * dbus/dbus-auth.c: Factor out protocol reply code into functions
808         send_auth(), send_data(), send_rejected(), send_error(),
809         send_ok(), send_begin() and send_cancel().
810
811 2004-05-17  Kristian Høgsberg  <krh@redhat.com>
812
813         Remove base64 encoding, replace with hex encoding. Original patch
814         from trow@ximian.com, added error handling.
815
816         * dbus/dbus-string.c (_dbus_string_base64_encode)
817         (_dbus_string_base64_decode): Remove.
818         (_dbus_string_hex_decode): Add end_return argument so we can
819         distinguish between OOM and invalid hex encoding.
820         (_dbus_string_test): Remove base64 tests and add test case for
821         invalid hex.
822
823         * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
824         Replace base64 with hex.
825
826         * test/data/auth/invalid-hex-encoding.auth-script: New test case
827         for invalid hex encoded data in auth protocol.
828
829 2004-05-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
830
831         * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
832         leak.
833
834 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
835
836         * mono/dbus-sharp.dll.config.in: Added for GAC
837         * mono/dbus-sharp.snk: Added for GAC
838         * mono/Assembly.cs.in: Added for GAC
839         * mono/Makefile.am: Changes for GAC installation        
840         * configure.in: Added refs for dbus-sharp.dll.config.in and
841         Assembly.cs.in. More fixes for mono testing
842         * mono/example/Makefile.am: Changed var to CSC
843         * Makefile.am: Changed flag name to DBUS_USE_CSC
844
845 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
846
847         * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
848         * mono/doc/*: Added documentation framework
849         * configure.in: Added monodoc check
850         * README: Added description of mono configure flags
851
852 2004-05-11  John (J5) Palmieri  <johnp@redhat.com>:
853
854         * doc/dbus-specification.xml: Added a "Required" column to the 
855         header fields table and changed the "zero or more" verbage in
856         the above paragraph to read "The header must contain the required 
857         named header fields and zero or more of the optional named header 
858         fields".
859         * test/data/invalid-messages/*.message: Added the required PATH 
860         named header field to the tests so that they don't fail on 
861         'Missing path field'
862
863 2004-05-07  John (J5) Palmieri  <johnp@redhat.com>
864
865         * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
866         the stack by implicitly defining variable and parameter types and
867         removing the hack of defining C pointers as python objects and later
868         casting them.
869
870 2004-05-02  Owen Fraser-Green  <owen@discobabe.net>
871
872         * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
873
874 2004-05-01  Owen Fraser-Green  <owen@discobabe.net>
875
876         * mono/DBusType/Dict.cs: Handle empty dicts
877         * mono/DBusType/Array.cs: Handle empty arrays
878         * mono/Arguments.cs: Handle empty arguments
879
880 2004-04-30  Owen Fraser-Green  <owen@discobabe.net>
881
882         * dbus-sharp.pc.in: Modified to include include Libs and Requires
883         field
884
885 2004-04-25  Kristian Høgsberg  <krh@redhat.com>
886
887         * test/data/valid-messages/standard-*.message: Update message
888         test scripts to new header field names.
889
890 2004-04-22  John (J5) Palmieri  <johnp@redhat.com>
891
892         * test/break-loader.c (randomly_do_n_things): tracked down buffer
893         overflow to times_we_did_each_thing array which would chop off the
894         first character of the failure_dir string. Increased the size of
895         the array to 7 to reflect the number of random mutation functions
896         we have.
897
898 2004-04-21  Kristian Høgsberg  <krh@redhat.com>
899
900         * dbus/dbus-server-unix.c (unix_finalize): Don't unref
901         unix_server->watch here, it is unreffed in disconnect.
902         (_dbus_server_new_for_tcp_socket): convert NULL host to
903         "localhost" here so we don't append NULL to address.
904         
905         * dbus/dbus-server.c (_dbus_server_test): Add test case for
906         various addresses, including tcp with no explicit host.
907
908 2004-04-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
909
910         * dbus/dbus-message.c (decode_header_data, decode_string_field):
911         fix incorrect setting of .name_offset in the HeaderField (it was
912         off by two bytes, positioned right after the name and typecode)
913
914         * bus/bus.c (bus_context_new, bus_context_unref): test before
915         calling dbus_server_free_data_slot and _dbus_user_database_unref
916         in case of an error.
917
918         * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
919         by libdbus-gtool.
920
921 2004-04-19  Kristian Høgsberg  <krh@redhat.com>
922
923         * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
924         _dbus_poll() instead of select().
925
926 2004-04-15  Jon Trowbridge  <trow@ximian.com>
927
928         * bus/main.c (signal_handler): Reload the configuration files
929         on SIGHUP.
930         (main): Set up our SIGHUP handler.
931
932         * bus/bus.c (struct BusContext): Store the config file, user and
933         fork flag in the BusContext.
934         (process_config_first_time_only): Added.  Contains the code
935         (previously in bus_context_new) for setting up the BusContext from
936         the BusConfigParser that should only be run the first time the
937         config files are read.
938         (process_config_every_time): Added.  Contains the code (previously
939         in bus_context_new) for setting up the BusContext from the
940         BusConfigParser that should be run every time the config files are
941         read.
942         (load_config): Added.  Builds a BusConfigParser from the config
943         files and passes the resulting structure off to
944         process_config_first_time_only (assuming this is the first time)
945         and process_config_every_time.
946         (bus_context_new): All of the config-related code has been moved
947         to process_config_first_time_only and process_config_every_time.
948         Now this function just does the non-config-related initializations
949         and calls load_config.
950         (bus_context_reload_config): Added.
951
952 2004-04-15  Olivier Andrieu  <oliv__a@users.sourceforge.net>
953
954         * bus/driver.c (bus_driver_handle_get_service_owner):
955         implement a GetServiceOwner method.
956         * doc/dbus-specification.xml: document it.
957         * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
958         
959         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
960         implement, using the bus GetServiceOwner method.
961
962         * test/glib/test-dbus-glib.c:
963         use dbus_gproxy_new_for_service_owner so that we can receive the
964         signal. 
965
966 2004-04-15  John (J5) Palmieri  <johnp@redhat.com>
967
968         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
969         dbus/dbus-message.c, dbus/dbus-protocol.h
970         (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
971
972         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
973         dbus/dbus-message.c, dbus/dbus-protocol.h
974         (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
975
976         * dbus/dbus-internals.c (_dbus_header_field_to_string):
977         DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
978         DBUS_HEADER_FIELD_SENDER resolves to "sender"
979
980         * doc/dbus-specification.xml (Header Fields Table):
981         s/SERVICE/DESTINATION
982         s/SENDER_SERVICE/SENDER
983
984
985 2004-04-14  Olivier Andrieu  <oliv__a@users.sourceforge.net>
986
987         * test/glib/test-dbus-glib.c (timed_exit): fail the test after
988         a few seconds.
989
990 2004-04-13  Michael Meeks  <michael@ximian.com>
991
992         * glib/dbus-gobject.c (handle_introspect): split out
993         (introspect_properties): this.
994         (handle_introspect): implement this.
995
996         * test/glib/Makefile.am: use the absolute path so the bus
997         daemon's chdir ("/") doesn't kill us dead.
998
999         * configure.in: subst ABSOLUTE_TOP_BUILDDIR
1000
1001 2004-04-12  Jon Trowbridge  <trow@ximian.com>
1002
1003         * bus/config-parser.c (struct BusConfigParser): Added
1004         included_files field.
1005         (seen_include): Added.  Checks whether or not a file has already
1006         been included by any parent BusConfigParser.
1007         (bus_config_parser_new): Copy the parent's included_files.
1008         (include_file): Track which files have been included, and fail on
1009         circular inclusions.
1010         (process_test_valid_subdir): Changed printf to report if we are
1011         testing valid or invalid conf files.
1012         (all_are_equiv): Changed printf to be a bit clearer about
1013         what we are actually doing.
1014         (bus_config_parser_test): Test invalid configuration files.
1015
1016 2004-04-09  Jon Trowbridge  <trow@ximian.com>
1017
1018         * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
1019         argument.  If non-null, the newly-constructed BusConfigParser will
1020         be initialized with the parent's BusLimits instead of the default
1021         values.
1022         (include_file): When including a config file, pass in
1023         the current parser as the parent and then copy the BusLimits
1024         from the included BusConfigParser pack to the current parser.
1025         (process_test_valid_subdir): Renamed from process_test_subdir.
1026         (process_test_equiv_subdir): Added.  Walks through a directory,
1027         descending into each subdirectory and loading the config files
1028         it finds there.  If any subdirectory contains two config files
1029         that don't produce identical BusConfigParser structs, fail.
1030         For now, the BusConfigParser's BusPolicies are not compared.
1031         (bus_config_parser_test): Call both process_test_valid_subdir and
1032         process_test_equiv_subdir.
1033
1034         * bus/config-loader-libxml.c (bus_config_load): Take a parent
1035         argument and pass it along to the call to bus_config_parser_new.
1036         Also made a few small changes to allow this code to compile.
1037
1038         * bus/config-loader-expat.c (bus_config_load): Take a parent
1039         argument and pass it along to the call to bus_config_parser_new.
1040
1041         * bus/bus.c (bus_context_new): Load the config file
1042         with a NULL parent argument.
1043
1044 2004-03-29  Michael Meeks  <michael@ximian.com>
1045
1046         * glib/dbus-gobject.c (introspect_properties): split
1047         out, fix mangled 'while' flow control.
1048         (introspect_signals): implement.
1049         (handle_introspect): update.
1050
1051 2004-03-29  Michael Meeks  <michael@ximian.com>
1052
1053         * glib/dbus-gobject.c (set_object_property): split out / 
1054         re-work, use the property type, and not the message type(!)
1055         (get_object_property): ditto.
1056
1057         * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
1058         (dbus_gvalue_marshal): make this code re-usable, needed
1059         for signals too, also on both proxy and server side.
1060         Re-write for more efficiency / readability.
1061
1062 2004-03-29  Michael Meeks  <michael@ximian.com>
1063
1064         * dbus/dbus-message.c
1065         (dbus_message_new_error_printf): impl.
1066
1067         * dbus/dbus-connection.c
1068         (dbus_connection_unregister_object_path): fix warning.
1069
1070         * configure.in: fix no-mono-installed situation.
1071
1072 2004-03-27  Havoc Pennington  <hp@redhat.com>
1073
1074         Patch from Timo Teräs:
1075         
1076         * tools/dbus-send.c (main): if --print-reply, assume type is
1077         method call; support boolean type args
1078         
1079         * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
1080         bunch of memleak and logic bugs
1081         
1082 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
1083
1084         * mono/Arguments.cs:
1085         * mono/Introspector.cs:
1086         * mono/Handler.cs:
1087         * mono/InterfaceProxy.cs:
1088         * mono/Message.cs
1089         * mono/ProxyBuilder.cs:
1090         * mono/Service.cs:
1091         Added InterfaceProxy class to avoid building proxies for every
1092         object.
1093
1094         * dbus-message.h:
1095         * dbus-message.c (dbus_message_append_args_valist)
1096         (dbus_message_iter_get_object_path)
1097         (dbus_message_iter_get_object_path_array)
1098         (dbus_message_iter_append_object_path)
1099         (dbus_message_iter_append_object_path_array):
1100         Added object_path iter functions to handle OBJECT_PATH arguments
1101         
1102 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
1103
1104         First checkin of mono bindings.
1105         * configure.in:
1106         * Makefile.am:
1107         Build stuff for the bindings
1108         * dbus-sharp.pc.in: Added for pkgconfig
1109         
1110 2004-03-21  Havoc Pennington  <hp@redhat.com>
1111
1112         * test/test-service.c (main): remove debug spew
1113
1114 2004-03-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
1115
1116         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
1117         arrays
1118
1119         * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
1120         (dbus_message_iter_init_array_iterator)
1121         (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
1122         indicate whether the iterator is empty
1123
1124         * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
1125         warnings
1126
1127 2004-03-19  Havoc Pennington  <hp@redhat.com>
1128
1129         * NEWS: 0.21 updates
1130
1131         * configure.in: 0.21
1132
1133         * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
1134         
1135         * python/Makefile.am: change to avoid dist of dbus_bindings.c so
1136         you don't need pyrex to make dist
1137
1138         * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
1139         sources; run moc
1140         
1141 2004-03-18  Richard Hult  <richard@imendio.com>
1142
1143         * dbus/dbus-message.c (dbus_message_get_auto_activation) 
1144         (dbus_message_set_auto_activation): Add doxygen docs.
1145
1146 2004-03-16  Richard Hult  <richard@imendio.com>
1147
1148         * bus/activation.c: (bus_activation_service_created),
1149         (bus_activation_send_pending_auto_activation_messages),
1150         (bus_activation_activate_service):
1151         * bus/activation.h:
1152         * bus/dispatch.c: (bus_dispatch),
1153         (check_nonexistent_service_auto_activation),
1154         (check_service_auto_activated),
1155         (check_segfault_service_auto_activation),
1156         (check_existent_service_auto_activation), (bus_dispatch_test):
1157         * bus/driver.c: (bus_driver_handle_activate_service):
1158         * bus/services.c: (bus_registry_acquire_service):
1159         * dbus/dbus-message.c: (dbus_message_set_auto_activation),
1160         (dbus_message_get_auto_activation):
1161         * dbus/dbus-message.h:
1162         * dbus/dbus-protocol.h: Implement auto-activation.
1163         
1164         * doc/dbus-specification.xml: Add auto-activation to the spec.
1165
1166 2004-03-12  Olivier Andrieu  <oliv__a@users.sourceforge.net>
1167
1168         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
1169         fix a bug with CUSTOM types.
1170
1171         * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
1172         a unit test for this bug (used to fail).
1173
1174 2004-03-12  Mikael Hallendal  <micke@imendio.com>
1175
1176         * bus/activation.c:
1177         (babysitter_watch_callback): notify all pending activations waiting for
1178           the same exec that the activation failed.
1179         (bus_activation_activate_service): shortcut the activation if we 
1180           already waiting for the same executable to start up.
1181
1182 2004-03-12  Mikael Hallendal  <micke@imendio.com>
1183
1184         * bus/activation.c: 
1185         - Added service file reloading. 
1186           Each service files directory is kept in an hash table in 
1187           BusActivation and each BusActivationEntry knows what .service-file it
1188           was read from. So when you try to activate a service the bus will 
1189           check if it's been updated, removed or if new .service-files has 
1190           been installed.
1191         - Test code at the bottom for the service file reloading.
1192         * bus/test-main.c: (main):
1193         * bus/test.h:
1194         - added service reloading test.
1195         * dbus/dbus-sysdeps.c: 
1196         * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
1197
1198 2004-03-08  Michael Meeks  <michael@ximian.com>
1199
1200         * dbus/dbus-connection.c (_dbus_connection_block_for_reply): 
1201         bail immediately if disconnected, to avoid busy loop.
1202
1203         * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
1204         cleanup cut/paste/inefficiency.
1205
1206 2004-03-01  David Zeuthen  <david@fubar.dk>
1207
1208         * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
1209         bug where args were used twice. This bug resulted in a segfault
1210         on a Debian/PPC system when starting the messagebus daemon. Include
1211         dbus-sysdeps.h for DBUS_VA_COPY
1212
1213         * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
1214
1215         * configure.in: Check for va_copy; define DBUS_VA_COPY to the
1216         appropriate va_copy implementation. From GLib
1217         
1218 2004-02-24  Joe Shaw  <joe@ximian.com>
1219
1220         * bus/services.c (bus_registry_acquire_service): We need to pass
1221         in the service name to dbus_set_error() to prevent a crash.
1222
1223 2003-12-26  Anders Carlsson  <andersca@gnome.org>
1224
1225         * AUTHORS: Reveal my True identity.
1226
1227 2003-12-17  Mikael Hallendal  <micke@imendio.com>
1228
1229         * dbus/dbus-message.c: (dbus_message_append_args_valist): 
1230         - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
1231
1232 2003-12-13  Mikael Hallendal  <micke@imendio.com>
1233
1234         * doc/TODO: Added not about better error check of configuration files.
1235
1236 2003-12-02  Richard Hult  <richard@imendio.com>
1237
1238         * Update AFL version to 2.0 throughout the source files to reflect
1239         the update that was done a while ago.
1240
1241 2003-12-02  Richard Hult  <richard@imendio.com>
1242
1243         * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
1244         wrote_dict_key to FALSE on the iter that the dict is appended to,
1245         just like when appending other types. Fixes a bug where a dict
1246         couldn't be put inside a dict.
1247         (dbus_message_iter_append_dict_key): Fix typo in warning message.
1248         (message_iter_test, _dbus_message_test): Add test case for dict
1249         inside dict.
1250
1251 2003-12-01  David Zeuthen  <david@fubar.dk>
1252
1253         * python/dbus.py: Add the actual message when calling the reciever
1254         of a signal such that parameters can be inspected. Add the method
1255         remove_signal_receiver
1256         
1257 2003-11-26  Mikael Hallendal  <micke@imendio.com>
1258
1259         * bus/*.[ch]:
1260         * dbus/*.[ch]:
1261         * glib/*.[ch]: Made ref functions return the pointer
1262
1263 2003-11-25  Zack Rusin  <zack@kde.org>
1264
1265         * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
1266
1267         * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer 
1268         wrappers,
1269
1270         * qt/connection.h, qt/connection.cpp: Adjusting to changes in 
1271         the Integrator and to better fit with the server,
1272
1273 2003-11-24  Zack Rusin  <zack@kde.org>
1274
1275         * qt/connection.h, qt/connection.cpp: removing initDbus method since
1276         the integrator handles it now
1277
1278         * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
1279         since QTimer wasn't really meant to be used the way DBusTimeout is
1280
1281 2003-11-24  Zack Rusin  <zack@kde.org>
1282
1283         * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding 
1284         Integrator class which integrates D-BUS with the Qt event loop,
1285
1286         * qt/connection.h, qt/connection.cpp: Move all the code which
1287         was dealing with D-BUS integration to the Integrator class,
1288         and start using Integrator,
1289
1290 2003-11-23  Zack Rusin  <zack@kde.org>
1291
1292         * qt/connection.h, qt/connection.cpp: Adding the DBusConnection 
1293         wrapper
1294
1295         * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
1296         switching namespaces to DBusQt, reworking the class,
1297
1298         * Makefile.cvs: switching dependencies so that it matches KDE 
1299         schematics,
1300         
1301         * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to 
1302         the library
1303
1304 2003-11-19  Havoc Pennington  <hp@redhat.com>
1305
1306         * NEWS: update
1307
1308         * configure.in: bump version to 0.20
1309
1310         * configure.in (have_qt): add yet another place to look for qt
1311         (someone hand trolltech a .pc file...)
1312
1313 2003-11-01  Havoc Pennington  <hp@redhat.com>
1314
1315         * doc/dbus-specification.xml: add state machine docs on the auth
1316         protocol; just a first draft, I'm sure it's wrong.      
1317
1318 2003-10-28  David Zeuthen  <david@fubar.dk>
1319
1320         * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
1321         return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
1322         
1323 2003-10-28  Havoc Pennington  <hp@redhat.com>
1324
1325         * dbus/dbus-message.c (get_next_field): delete unused function
1326
1327 2003-10-28  Havoc Pennington  <hp@redhat.com>
1328
1329         * bus/expirelist.c (do_expiration_with_current_time): detect
1330         failure of the expire_func due to OOM
1331
1332         * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
1333
1334         * bus/dispatch.c (check_send_exit_to_service): fix to handle the
1335         NoReply error that's now created by the bus when the service exits
1336
1337 2003-10-28  Havoc Pennington  <hp@redhat.com>
1338
1339         * dbus/dbus-message.c (_dbus_message_test): enable and fix the
1340         tests for set_path, set_interface, set_member, etc.
1341
1342         * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
1343
1344         * dbus/dbus-message.c (set_string_field): always just delete and
1345         re-append the field; accept NULL for deletion
1346         (re_align_fields_recurse): reimplement
1347         
1348 2003-10-26  Havoc Pennington  <hp@redhat.com>
1349
1350         * dbus/dbus-connection.c: fix docs to properly describe the
1351         disconnected message
1352         (_dbus_connection_notify_disconnected): remove this function; 
1353         we can't synchronously add the disconnected message, we have to 
1354         do it after we've queued any remaining real messages
1355         (_dbus_connection_get_dispatch_status_unlocked): queue the
1356         disconnect message only if the transport has finished queueing all
1357         its real messages and is disconnected.
1358         (dbus_connection_disconnect): update the dispatch status here
1359
1360 2003-10-22  Havoc Pennington  <hp@redhat.com>
1361
1362         * bus/bus.c (bus_context_check_security_policy): fix up assertion
1363
1364         * bus/connection.c (bus_transaction_send_from_driver): set the
1365         destination to the connection's base service
1366
1367 2003-10-20  Havoc Pennington  <hp@redhat.com>
1368
1369         hmm, make check is currently not passing.
1370         
1371         * doc/dbus-specification.xml: add requirement that custom type
1372         names follow the same rules as interface names.
1373
1374         * dbus/dbus-protocol.h: change some of the byte codes, to avoid
1375         duplication and allow 'c' to be 'custom'; dict is now 'm' for
1376         'map'
1377
1378         * doc/dbus-specification.xml: update type codes to match
1379         dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
1380         CUSTOM. Add type OBJECT_PATH to the spec.
1381
1382 2003-10-17  Havoc Pennington  <hp@redhat.com>
1383
1384         * bus/driver.c (create_unique_client_name): use "." as separator
1385         in base service names instead of '-'
1386
1387         * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
1388         byte at the end of the string
1389
1390         * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
1391         optimization macros since string validation seems to be a slow
1392         point.
1393         
1394         * doc/dbus-specification.xml: restrict valid
1395         service/interface/member/error names. Add test suite code for the
1396         name validation.
1397
1398         * dbus/dbus-string.c: limit service/interface/member/error names 
1399         to [0-9][A-Z][a-z]_
1400
1401         * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
1402         format arg to verbose spew
1403
1404         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
1405         memory, return instead of g_error
1406
1407         * test/test-service.c (path_message_func): support emitting a
1408         signal on request
1409
1410         * dbus/dbus-bus.c (init_connections_unlocked): only fill in
1411         activation bus type if DBUS_BUS_ACTIVATION was set; default to
1412         assuming the activation bus was the session bus so that services
1413         started manually will still register.
1414         (init_connections_unlocked): fix so that in OOM situation we get
1415         the same semantics when retrying the function
1416         
1417         * test/test-service.c (main): change to use path registration, to
1418         test those codepaths; register with DBUS_BUS_ACTIVATION rather
1419         than DBUS_BUS_SESSION
1420
1421 2003-10-16  Havoc Pennington  <hp@redhat.com>
1422
1423         * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
1424
1425         * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
1426         coverage of the tests
1427         (coverage-report.txt): don't move the .da and .bbg files around
1428
1429 2003-10-16  Havoc Pennington  <hp@redhat.com>
1430
1431         * bus/bus.c (struct BusContext): remove struct field I didn't mean
1432         to put there
1433
1434 2003-10-16  Havoc Pennington  <hp@redhat.com>
1435
1436         * bus/connection.c (bus_pending_reply_expired): either cancel or
1437         execute, not both
1438         (bus_connections_check_reply): use unlink, not remove_link, as we
1439         don't want to free the link; fixes double free mess
1440
1441         * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
1442         where no reply was received
1443
1444         * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
1445         fix a refcount leak
1446
1447         * bus/signals.c (match_rule_matches): add special cases for the
1448         bus driver, so you can match on sender/destination for it.
1449
1450         * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
1451         DBUS_PRINT_BACKTRACE is set
1452
1453         * dbus/dbus-internals.c: add pid to assertion failure messages
1454
1455         * dbus/dbus-connection.c: add message type code to the debug spew
1456
1457         * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
1458         sender=foo not service=foo
1459
1460         * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
1461         session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use 
1462         DBUS_ACTIVATION_ADDRESS instead
1463
1464         * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
1465         DBUS_SYSTEM_BUS_ADDRESS if appropriate
1466
1467         * bus/bus.c (bus_context_new): handle OOM copying bus type into
1468         context struct
1469
1470         * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
1471         (dbus_message_iter_get_object_path_array): new function (half
1472         finished, disabled for the moment)
1473         
1474         * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
1475         DBUS_MESSAGE_TYPE_ERROR
1476
1477         * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
1478         avoid redirecting stderr to /dev/null
1479         (babysit): close stdin if not doing the "exit_with_session" thing
1480
1481         * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
1482         debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
1483         stdout/stdin, so things don't get confused
1484         
1485         * bus/system.conf.in: fix to allow replies, I modified .conf
1486         instead of .conf.in again.
1487
1488 2003-10-14  David Zeuthen  <david@fubar.dk>
1489
1490         * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
1491         argtype to arg_type when raising unknown arg type exception.
1492         Changed type list to reflect the changes in dbus-protocol.h so 
1493         the bindings actually work.
1494
1495 2003-10-14  Havoc Pennington  <hp@redhat.com>
1496
1497         * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
1498         to have a bug keeping it from outputting the .da files sometimes
1499         (string_get_string): don't append garbage nul bytes to the string.
1500
1501 2003-10-15  Seth Nickell  <seth@gnome.org>
1502
1503         * python/Makefile.am:
1504
1505         Include dbus_h_wrapper.h in the dist tarball.
1506
1507 2003-10-14  Havoc Pennington  <hp@redhat.com>
1508
1509         * bus/bus.c (bus_context_check_security_policy): revamp this to
1510         work more sanely with new policy-based requested reply setup
1511
1512         * bus/connection.c (bus_transaction_send_from_driver): set bus
1513         driver messages as no reply
1514
1515         * bus/policy.c (bus_client_policy_check_can_receive): handle a
1516         requested_reply attribute on allow/deny rules
1517
1518         * bus/system.conf: add <allow requested_reply="true"/>
1519
1520         * bus/driver.c (bus_driver_handle_message): fix check for replies
1521         sent to the bus driver, which was backward. How did this ever work
1522         at all though? I think I'm missing something.
1523
1524         * dbus/dbus-message.c (decode_header_data): require error and
1525         method return messages to have a reply serial field to be valid
1526         (_dbus_message_loader_queue_messages): break up this function;
1527         validate that reply serial and plain serial are nonzero; 
1528         clean up the OOM/error handling.
1529         (get_uint_field): don't return -1 from this
1530         (dbus_message_create_header): fix signed/unsigned bug
1531
1532         * bus/connection.c (bus_connections_expect_reply): save serial of
1533         the incoming message, not reply serial
1534
1535 2003-10-14  Havoc Pennington  <hp@redhat.com>
1536
1537         * bus/connection.c: implement pending reply tracking using
1538         BusExpireList
1539
1540         * bus/bus.c (bus_context_check_security_policy): verify that a
1541         reply is pending in order to allow a reply to be sent. Deny 
1542         messages of unknown type.
1543
1544         * bus/dbus-daemon-1.1.in: update to mention new resource limits
1545
1546         * bus/bus.c (bus_context_get_max_replies_per_connection): new
1547         (bus_context_get_reply_timeout): new
1548
1549 2003-10-13  Seth Nickell  <seth@gnome.org>
1550
1551         * python/Makefile.am:
1552
1553         Pass "make distcheck": remove a couple files from DIST_FILES
1554         that weren't included in the final version.
1555
1556 2003-10-12  Havoc Pennington  <hp@pobox.com>
1557
1558         Added test code that 1) starts an actual bus daemon and 2) uses
1559         DBusGProxy; fixed bugs that were revealed by the test. Lots 
1560         more testing possible, but this is the basic framework.
1561         
1562         * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
1563         empty proxy lists from the proxy list hash
1564
1565         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
1566         couple of return_if_fail checks
1567
1568         * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
1569         to allocate, so everything is cleared to NULL as it should be.
1570
1571         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
1572         source as data to dbus_connection_set_timeout_functions() as the 
1573         timeout functions expected
1574
1575         * test/glib/run-test.sh: add a little script to start up a message
1576         bus and run tests using it
1577
1578         * tools/dbus-launch.1: updates
1579
1580         * tools/dbus-launch.c (main): add --config-file option
1581
1582         * tools/dbus-launch.c (main): remove confusing else if (runprog)
1583         that could never be reached.
1584
1585         * dbus/dbus-message.c (dbus_message_new_method_return) 
1586         (dbus_message_new_error, dbus_message_new_signal): set the
1587         no-reply-expected flag on all these. Redundant, but may
1588         as well be consistent.
1589
1590 2003-10-11  Havoc Pennington  <hp@pobox.com>
1591
1592         * test/decode-gcov.c (function_solve_graph): make broken block
1593         graph a nonfatal error since it seems to be broken. Need to debug
1594         this.
1595
1596         * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
1597         can't just check type > INVALID < LAST anymore
1598
1599         * dbus/dbus-message.c (dbus_message_get_signature): new function
1600         (dbus_message_has_signature): new function
1601         (struct DBusMessage): add signature field (right now it isn't sent
1602         over the wire, just generated on the fly)
1603         (dbus_message_copy): copy the signature, and init strings to
1604         proper length to avoid some reallocs
1605         (dbus_message_iter_init_array_iterator): return void, since it
1606         can't fail
1607         (dbus_message_iter_init_dict_iterator): return void since it can't fail
1608         (_dbus_message_loader_queue_messages): add silly temporary hack to
1609         fill in message->signature on load
1610
1611         * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
1612         characters, so they are relatively human-readable.
1613
1614 2003-10-11  Havoc Pennington  <hp@pobox.com>
1615
1616         * dbus/dbus-message.c (_dbus_message_test): add more test
1617         coverage, but #if 0 for now since they uncover a bug 
1618         not fixed yet; I think in re_align_field_recurse()
1619         (re_align_field_recurse): add FIXME about broken assertion
1620
1621         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
1622
1623         * bus/connection.c: share a couple code bits with expirelist.c
1624
1625         * bus/expirelist.h, bus/expirelist.c: implement a generic
1626         expire-items-after-N-seconds facility, was going to share between
1627         expiring connections and replies, decided not to use for expiring
1628         connections for now.
1629
1630         * COPYING: include AFL 2.0 (still need to change all the file headers)
1631
1632 2003-10-09  Havoc Pennington  <hp@redhat.com>
1633
1634         * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
1635         gcc 3.3. Not that we do anything about it yet.
1636
1637         * bus/signals.c (bus_match_rule_parse): impose max length on the
1638         match rule text
1639
1640         * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
1641
1642 2003-10-09  Havoc Pennington  <hp@redhat.com>
1643
1644         Make matching rules theoretically work (add parser).
1645         
1646         * bus/bus.c (bus_context_check_security_policy): fix up to handle
1647         the case where destination is explicitly specified as bus driver
1648         and someone else is eavesdropping.
1649         
1650         * bus/policy.c (bus_client_policy_check_can_receive): fix up
1651         definition of eavesdropping and assertion
1652
1653         * tools/dbus-send.c (main): use dbus_message_type_from_string
1654
1655         * bus/signals.c (bus_match_rule_parse): implement
1656
1657         * dbus/dbus-message.c (dbus_message_type_from_string): new
1658
1659         * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
1660
1661 2003-10-02  Havoc Pennington  <hp@pobox.com>
1662
1663         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
1664         dbus_gproxy_oneway_call
1665
1666         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main) 
1667         (dbus_server_setup_with_g_main): fix to allow calling them more
1668         than once on the same args
1669         (dbus_bus_get_with_g_main): new function
1670
1671 2003-10-02  Havoc Pennington  <hp@redhat.com>
1672
1673         * doc/dbus-tutorial.xml: write some stuff
1674
1675 2003-09-29  Havoc Pennington  <hp@pobox.com>
1676
1677         * configure.in: split checks for Doxygen from XML docs, check for
1678         xmlto
1679
1680         * doc/Makefile.am: XML-ify all the docs, and add a blank
1681         dbus-tutorial.xml
1682
1683 2003-09-29  Havoc Pennington  <hp@pobox.com>
1684
1685         * Merge dbus-object-names branch. To see the entire patch 
1686         do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
1687         it's huuuuge though.
1688         To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
1689         
1690 2003-09-28  Havoc Pennington  <hp@pobox.com>
1691
1692         * HACKING: update to reflect new server
1693
1694 2003-09-26  Seth Nickell  <seth@gnome.org>
1695
1696         * python/dbus.py:
1697         * python/examples/example-signals.py:
1698
1699         Start implementing some notions of signals. The API
1700         is really terrible, but they sort of work (with the
1701         exception of being able to filter by service, and to
1702         transmit signals *as* a particular service). Need to
1703         figure out how to make messages come from the service
1704         we registered :-(
1705         
1706         * python/dbus_bindings.pyx.in:
1707
1708         Removed duplicate message_handler callbacks.
1709         
1710 2003-09-25  Havoc Pennington  <hp@redhat.com>
1711
1712         * bus/session.conf.in: fix my mess
1713
1714 2003-09-25  Havoc Pennington  <hp@pobox.com>
1715
1716         * bus/session.conf.in: fix security policy, reported by Seth Nickell
1717
1718 2003-09-25  Seth Nickell  <seth@gnome.org>
1719
1720         * python/examples/example-service.py:
1721
1722         Johan notices complete wrong code in example-service, but
1723         completely wrong in a way that works exactly the same (!).
1724         Johan is confused, how could this possibly work? Example
1725         code fails to serve purpose of making things clear.
1726         Seth fixes.
1727
1728 2003-09-25  Mark McLoughlin  <mark@skynet.ie>
1729
1730         * doc/dbus-specification.sgml: don't require header fields
1731         to be 4-byte aligned and specify that fields should be
1732         distinguished from padding by the fact that zero is not
1733         a valid field name.
1734         
1735         * doc/TODO: remove re-alignment item and add item to doc
1736         the OBJECT_PATH type.
1737         
1738         * dbus/dbus-message.c:
1739         (HeaderField): rename the original member to value_offset
1740         and introduce a name_offset member to keep track of where
1741         the field actually begins.
1742         (adjust_field_offsets): remove.
1743         (append_int_field), (append_uint_field),
1744         (append_string_field): don't align the start of the header
1745         field to a 4-byte boundary.
1746         (get_next_field): impl finding the next marhsalled field
1747         after a given field.
1748         (re_align_field_recurse): impl re-aligning a number of
1749         already marshalled fields.
1750         (delete_field): impl deleting a field of any type and
1751         re-aligning any following fields.
1752         (delete_int_or_uint_field), (delete_string_field): remove.
1753         (set_int_field), (set_uint_field): no need to re-check
1754         that we have the correct type for the field.
1755         (set_string_field): ditto and impl re-aligning any
1756         following fields.
1757         (decode_header_data): update to take into account that
1758         the fields aren't 4-byte aligned any more and the new
1759         way to distinguish padding from header fields. Also,
1760         don't exit when there is too much header padding.
1761         (process_test_subdir): print the directory.
1762         (_dbus_message_test): add test to make sure a following
1763         field is re-aligned correctly after field deletion.
1764         
1765         * dbus/dbus-string.[ch]:
1766         (_dbus_string_insert_bytes): rename from insert_byte and
1767         allow the insert of multiple bytes.
1768         (_dbus_string_test): test inserting multiple bytes.
1769
1770         * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
1771         warning note to docs about having to re-align any
1772         marshalled values following the string.
1773         
1774         * dbus/dbus-message-builder.c:
1775         (append_string_field), (_dbus_message_data_load):
1776         don't align the header field.
1777         
1778         * dbus/dbus-auth.c: (process_test_subdir): print the
1779         directory.
1780         
1781         * test/break-loader.c: (randomly_add_one_byte): upd. for
1782         insert_byte change.
1783         
1784         * test/data/invalid-messages/bad-header-field-alignment.message:
1785         new test case.
1786         
1787         * test/data/valid-messages/unknown-header-field.message: shove
1788         a dict in the unknown field.
1789
1790 2003-09-25  Seth Nickell  <seth@gnome.org>
1791
1792         * python/dbus.py:
1793         * python/dbus_bindings.pyx.in:
1794
1795         Handle return values.
1796         
1797         * python/examples/example-client.py:
1798         * python/examples/example-service.py:
1799
1800         Pass back return values from the service to the client.
1801         
1802 2003-09-24  Seth Nickell  <seth@gnome.org>
1803
1804         * python/dbus.py:
1805
1806         Connect Object methods (when you are sharing an object) up... pass
1807         in a list of methods to be shared. Sharing all the methods just
1808         worked out too weird. You can now create nice Services over the
1809         DBus in Python. :-)
1810         
1811         * python/dbus_bindings.pyx.in:
1812
1813         Keep references to user_data tuples passed into C functions so 
1814         Python doesn't garbage collect on us.
1815
1816         Implement MethodReturn and Error subclasses of Message for creating
1817         DBusMessage's of those types.
1818         
1819         * python/examples/example-client.py:
1820         * python/examples/example-service.py:
1821
1822         Simple example code showing both how create DBus services and objects,
1823         and how to use them.
1824
1825 2003-09-23  Havoc Pennington  <hp@pobox.com>
1826
1827         * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
1828
1829 2003-09-23  Havoc Pennington  <hp@redhat.com>
1830
1831         * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
1832         (dbus_gproxy_disconnect_signal): implement
1833         (dbus_gproxy_manager_remove_signal_match): implement
1834         (dbus_gproxy_manager_add_signal_match): implement
1835         (dbus_gproxy_oneway_call): implement
1836
1837 2003-09-23  Havoc Pennington  <hp@pobox.com>
1838
1839         * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
1840         subclass. This means dropping the transparent thread safety of the
1841         proxy; you now need a separate proxy per-thread, or your own
1842         locking on the proxy. Probably right anyway.
1843         (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
1844
1845 2003-09-22  Havoc Pennington  <hp@redhat.com>
1846
1847         * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
1848
1849 2003-09-21  Seth Nickell  <seth@gnome.org>
1850
1851         First checkin of the Python bindings.
1852         
1853         * python/.cvsignore:
1854         * python/Makefile.am:
1855         * python/dbus_bindings.pyx.in:
1856         * python/dbus_h_wrapper.h:
1857
1858         Pieces for Pyrex to operate on, building a dbus_bindings.so
1859         python module for low-level access to the DBus APIs.
1860         
1861         * python/dbus.py:
1862
1863         High-level Python module for accessing DBus objects.
1864
1865         * configure.in:
1866         * Makefile.am:
1867
1868         Build stuff for the python bindings.
1869
1870         * acinclude.m4:
1871
1872         Extra macro needed for finding the Python C header files.
1873
1874 2003-09-21  Havoc Pennington  <hp@pobox.com>
1875
1876         * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
1877         implementing the proxy manager, didn't get very far.
1878
1879         * dbus/dbus-bus.c (dbus_bus_add_match): new
1880         (dbus_bus_remove_match): new
1881
1882         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
1883         path_name argument; adjust the other not-yet-implemented 
1884         gproxy constructors to be what I think they should be.
1885
1886 2003-09-21  Havoc Pennington  <hp@pobox.com>
1887
1888         * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
1889         by default for message bus connections.
1890
1891         * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
1892         exit_on_disconnect flag is set and we process the disconnected
1893         signal.
1894         (dbus_connection_set_exit_on_disconnect): new function
1895
1896 2003-09-21  Havoc Pennington  <hp@pobox.com>
1897
1898         Get matching rules mostly working in the bus; only actually
1899         parsing the rule text remains. However, the client side of
1900         "signal connections" hasn't been started, this patch is only the
1901         bus side.
1902         
1903         * dbus/dispatch.c: fix for the matching rules changes
1904         
1905         * bus/driver.c (bus_driver_handle_remove_match)
1906         (bus_driver_handle_add_match): send an ack reply from these
1907         method calls
1908
1909         * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
1910         arguments, reported by Seth Nickell
1911
1912         * bus/config-parser.c (append_rule_from_element): support
1913         eavesdrop=true|false attribute on policies so match rules 
1914         can be prevented from snooping on the system bus.
1915
1916         * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
1917         and "destination" in attribute names; fix some docs bugs; 
1918         add eavesdrop=true|false attribute
1919
1920         * bus/driver.c (bus_driver_handle_add_match)
1921         (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
1922         messages
1923
1924         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
1925         rid of broadcast service concept, signals are just always broadcast
1926
1927         * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
1928         mostly implement matching rules stuff (currently only exposed as signal
1929         connections)
1930
1931 2003-09-21  Mark McLoughlin  <mark@skynet.ie>
1932
1933         * doc/dbus-specification.sgml: Change the header field name
1934         to be an enum and update the rest of the spec to reference
1935         the fields using the conventinal name.
1936
1937         * dbus/dbus-protocol.h: update to reflect the spec.
1938
1939         * doc/TODO: add item to remove the 4 byte alignment requirement.
1940         
1941         * dbus/dbus-message.c: Remove the code to generalise the
1942         header/body length and serial number header fields as named
1943         header fields so we can reference field names using the 
1944         protocol values.
1945         (append_int_field), (append_uint_field), (append_string_field):
1946         Append the field name as a byte rather than four chars.
1947         (delete_int_or_uint_field), (delete_string_field): reflect the
1948         fact that the field name and typecode now occupy 4 bytes instead
1949         of 8.
1950         (decode_string_field), (decode_header_data): update to reflect
1951         protocol changes and move the field specific encoding from
1952         decode_string_field() back into decode_header_data().
1953         
1954         * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
1955         Add utility to aid debugging.
1956         
1957         * dbus/dbus-message-builder.c:
1958         (append_string_field), (_dbus_message_data_load): Update to
1959         reflect protocol changes; Change the FIELD_NAME directive
1960         to HEADER_FIELD and allow it to take the field's conventional
1961         name rather than the actual value.
1962         
1963         * test/data/*/*.message: Update to use HEADER_FIELD instead
1964         of FIELD_NAME; Always align the header on an 8 byte boundary
1965         *before* updating the header length.
1966
1967 2003-09-15  Havoc Pennington  <hp@pobox.com>
1968
1969         * dbus/dbus-pending-call.c: add the get/set object data
1970         boilerplate as for DBusConnection, etc. Use generic object data
1971         for the notify callback.
1972
1973         * glib/dbus-gparser.c (parse_node): parse child nodes
1974
1975         * tools/dbus-viewer.c: more hacking on the dbus-viewer
1976         
1977         * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
1978         contain functions shared between the convenience lib and the
1979         installed lib
1980
1981         * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
1982         -export-symbols-regex to the GLib library
1983
1984         * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
1985         fix the locking in here, and add a default handler for
1986         Introspect() that just returns sub-nodes.
1987
1988 2003-09-14  Havoc Pennington  <hp@pobox.com>
1989
1990         * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
1991         rather than gfoo consistent
1992
1993         * glib/dbus-gproxy.h: delete for now, move contents to
1994         dbus-glib.h, because the include files don't work right since we
1995         aren't in the dbus/ subdir.
1996         
1997         * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
1998         (dbus_gproxy_end_call): finish
1999         (dbus_gproxy_begin_call): finish
2000
2001         * glib/dbus-gmain.c (dbus_set_g_error): new
2002
2003         * glib/dbus-gobject.c (handle_introspect): include information
2004         about child nodes in the introspection
2005
2006         * dbus/dbus-connection.c (dbus_connection_list_registered): new
2007         function to help in implementation of introspection
2008
2009         * dbus/dbus-object-tree.c
2010         (_dbus_object_tree_list_registered_and_unlock): new function
2011
2012 2003-09-12  Havoc Pennington  <hp@pobox.com>
2013
2014         * glib/dbus-gidl.h: add common base class for all the foo_info
2015         types
2016
2017         * tools/dbus-viewer.c: add GTK-based introspection UI thingy
2018         similar to kdcop
2019
2020         * test/Makefile.am: try test srcdir -ef . in addition to test
2021         srcdir = ., one of them should work (yeah lame)
2022         
2023         * glib/Makefile.am: build the "idl" parser stuff as a convenience
2024         library
2025         
2026         * glib/dbus-gparser.h: make description_load routines return
2027         NodeInfo* not Parser*
2028
2029         * Makefile.am (SUBDIRS): build test dir after all library dirs
2030
2031         * configure.in: add GTK+ detection
2032
2033 2003-09-07  Havoc Pennington  <hp@pobox.com>
2034
2035         * Make Doxygen contented.
2036
2037 2003-09-07  Havoc Pennington  <hp@pobox.com>
2038
2039         * doc/dbus-specification.sgml: more updates
2040
2041 2003-09-06  Havoc Pennington  <hp@pobox.com>
2042
2043         * doc/dbus-specification.sgml: partial updates
2044
2045         * bus/dbus-daemon-1.1.in: fix the config file docs for the
2046         zillionth time; hopefully I edited the right file this time.
2047
2048         * bus/config-parser.c (append_rule_from_element): support
2049         send_type, send_path, receive_type, receive_path
2050
2051         * bus/policy.c: add message type and path to the list of things
2052         that can be "firewalled"
2053
2054 2003-09-06  Havoc Pennington  <hp@pobox.com>
2055
2056         * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
2057         (dbus_connection_register_object_path): make this not handle
2058         messages to paths below the given path
2059
2060 2003-09-03  Havoc Pennington  <hp@pobox.com>
2061
2062         * test/glib/Makefile.am: add this with random glib-linked test
2063         programs
2064
2065         * glib/Makefile.am: remove the random test programs from here,
2066         leave only the unit tests
2067
2068         * glib/dbus-gobject.c (_dbus_gobject_test): add test for 
2069         uscore/javacaps conversion, and fix     
2070         (get_object_property, set_object_property): change to .NET
2071         convention for mapping props to methods, set_FooBar/get_FooBar, 
2072         since one language has such a convention we may as well copy it. 
2073         Plus real methods in either getFooBar or get_foo_bar style won't 
2074         collide with this convention.
2075
2076 2003-09-01  Havoc Pennington  <hp@pobox.com>
2077
2078         * glib/dbus-gparser.c: implement
2079
2080         * glib/dbus-gobject.c: start implementing skeletons support
2081
2082         * configure.in: when disabling checks/assert, also define
2083         G_DISABLE_ASSERT and G_DISABLE_CHECKS
2084
2085 2003-09-01  Havoc Pennington  <hp@pobox.com>
2086
2087         * glib/Makefile.am: rearrange a bunch of files and get "make
2088         check" framework set up
2089
2090 2003-08-31  Havoc Pennington  <hp@pobox.com>
2091
2092         * fix build with --disable-tests
2093
2094 2003-08-30  Havoc Pennington  <hp@pobox.com>
2095
2096         * dbus/dbus-connection.c: purge DBusMessageHandler
2097
2098         * dbus/dbus-message-handler.c: remove DBusMessageHandler, just 
2099         use callbacks everywhere
2100
2101 2003-08-30  Havoc Pennington  <hp@pobox.com>
2102
2103         * test/data/valid-config-files/system.d/test.conf: change to 
2104         root for the user so warnings don't get printed
2105
2106         * dbus/dbus-message.c: add dbus_message_get_path,
2107         dbus_message_set_path
2108         
2109         * dbus/dbus-object-tree.c (do_test_dispatch): add test of
2110         dispatching to a path
2111
2112         * dbus/dbus-string.c (_dbus_string_validate_path): add
2113
2114         * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
2115         (_dbus_marshal_object_path): implement
2116
2117         * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field 
2118         to contain the path to the target object
2119         (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
2120         DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
2121
2122 2003-08-30  Havoc Pennington  <hp@pobox.com>
2123
2124         * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
2125
2126 2003-08-29  Havoc Pennington  <hp@pobox.com>
2127
2128         * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
2129         registered
2130         (struct DBusObjectSubtree): shrink this
2131         a lot, since we may have a lot of them
2132         (_dbus_object_tree_free_all_unlocked): implement
2133         (_dbus_object_tree_dispatch_and_unlock): implement
2134
2135 2003-08-29  Havoc Pennington  <hp@pobox.com>
2136
2137         * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
2138
2139 2003-08-28  Havoc Pennington  <hp@pobox.com>
2140
2141         purge DBusObjectID
2142         
2143         * dbus/dbus-connection.c: port to no ObjectID, create a
2144         DBusObjectTree, rename ObjectTree to ObjectPath in public API
2145
2146         * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete 
2147         everything except UnregisterFunction and MessageFunction
2148         
2149         * dbus/dbus-marshal.c: port away from DBusObjectID, 
2150         add DBUS_TYPE_OBJECT_PATH
2151         
2152         * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc], 
2153         dbus/dbus-objectid.[hc]: remove these, we are moving to 
2154         path-based object IDs
2155
2156 2003-08-25  Havoc Pennington  <hp@pobox.com>
2157
2158         Just noticed that dbus_message_test is hosed, I wonder when I
2159         broke that. I thought make check was passing earlier...
2160         
2161         * dbus/dbus-object-tree.c: add new "object tree" to match DCOP 
2162         container tree, will replace most of dbus-object-registry
2163
2164         * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
2165         screwup
2166
2167 2003-08-19  Havoc Pennington  <hp@pobox.com>
2168
2169         * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
2170         (dbus_message_is_error): fix this function
2171
2172         * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
2173         match
2174
2175         * bus/policy.c (bus_client_policy_check_can_receive): fix code to
2176         reflect clarified man page
2177         (bus_client_policy_check_can_send): ditto
2178         
2179         * bus/session.conf.in: fixup
2180
2181         * bus/system.conf.in: fixup
2182
2183 2003-08-18  Havoc Pennington  <hp@redhat.com>
2184
2185         * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
2186
2187         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
2188         dumb bug created earlier (wrong order of args to
2189         decode_header_data())
2190         
2191         * tools/dbus-send.c: port
2192
2193         * tools/dbus-print-message.c (print_message): port
2194
2195         * test/data/*messages: port all messages over
2196         
2197         * dbus/dbus-message-builder.c: support including 
2198         message type
2199         
2200         * bus/driver.c: port over
2201         
2202         * bus/dispatch.c: port over to new stuff
2203
2204         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
2205         rename disconnect signal to "Disconnected"
2206
2207 2003-08-17  Havoc Pennington  <hp@pobox.com>
2208
2209         This doesn't compile yet, but syncing up so I can hack on it from
2210         work. What are branches for if not broken code? ;-)
2211         
2212         * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
2213         DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
2214         DBUS_HEADER_FIELD_ERROR_NAME
2215         
2216         * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
2217         for the interface+member pairs
2218         (string_hash): change to use g_str_hash algorithm
2219         (find_direct_function, find_string_function): refactor these to
2220         share most code.
2221         
2222         * dbus/dbus-message.c: port all of this over to support 
2223         interface/member fields instead of name field
2224
2225         * dbus/dbus-object-registry.c: port over
2226         
2227         * dbus/dbus-string.c (_dbus_string_validate_interface): rename
2228         from _dbus_string_validate_name
2229
2230         * bus/dbus-daemon-1.1: change file format for the 
2231         <deny>/<allow> stuff to match new message naming scheme
2232
2233         * bus/policy.c: port over
2234
2235         * bus/config-parser.c: parse new format
2236         
2237 2003-08-16  Havoc Pennington  <hp@pobox.com>
2238
2239         * dbus/dbus-object-registry.c (add_and_remove_objects): remove
2240         broken assertion
2241
2242         * glib/dbus-gproxy.c: some hacking
2243
2244 2003-08-15  Havoc Pennington  <hp@redhat.com>
2245
2246         * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
2247
2248         * dbus/dbus-connection.c
2249         (dbus_connection_send_with_reply_and_block): factor out internals;
2250         change to convert any error replies to DBusError instead of 
2251         returning them as a message
2252
2253 2003-08-15  Havoc Pennington  <hp@pobox.com>
2254
2255         * dbus/dbus-connection.c, 
2256         dbus/dbus-pending-call.c: Finish the pending call stuff
2257
2258 2003-08-14  Havoc Pennington  <hp@redhat.com>
2259
2260         * dbus/dbus-pending-call.c: start on new object that will replace
2261         DBusMessageHandler and ReplyHandlerData for tracking outstanding
2262         replies
2263
2264         * dbus/dbus-gproxy.c: start on proxy object used to communicate
2265         with remote interfaces
2266
2267         * dbus/dbus-gidl.c: do the boring boilerplate in here
2268         
2269 2003-08-12  Havoc Pennington  <hp@pobox.com>
2270
2271         * bus/dispatch.c (bus_dispatch): make this return proper 
2272         DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
2273
2274         * dbus/dbus-errors.c (dbus_set_error): use
2275         _dbus_string_append_printf_valist
2276
2277         * dbus/dbus-string.c (_dbus_string_append_printf_valist)
2278         (_dbus_string_append_printf): new
2279
2280         * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
2281         UNKNOWN_METHOD
2282
2283         * dbus/dbus-connection.c (dbus_connection_dispatch): handle
2284         DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
2285         message is unhandled.
2286
2287 2003-08-11  Havoc Pennington  <hp@pobox.com>
2288
2289         * bus/test.c (client_disconnect_handler): change to return
2290         HANDLED (would have been REMOVE_MESSAGE)
2291
2292         * dbus/dbus-object.h (enum DBusHandlerResult): rename to
2293         HANDLED/NOT_YET_HANDLED instead of
2294         REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it 
2295         should be used.
2296
2297 2003-08-10  Havoc Pennington  <hp@pobox.com>
2298
2299         * tools/dbus-send.c (main): add --type argument, for now
2300         supporting only method_call and signal types.
2301
2302         * tools/dbus-print-message.c: print message type
2303
2304         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
2305         init connection->objects
2306
2307         * doc/dbus-specification.sgml: fix sgml
2308
2309         * bus/*.c: port over to object-instance API changes
2310
2311         * test/test-service.c: ditto
2312         
2313         * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
2314         name, we will have to fix up the rest of the code to also handle
2315         this
2316         (dbus_message_new): generic message-creation call
2317         (set_string_field): allow appending name field
2318
2319 2003-08-06  Havoc Pennington  <hp@pobox.com>
2320
2321         * dbus/dbus-object-registry.c: implement signal connection 
2322         and dispatch
2323
2324         * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
2325
2326         * dbus/dbus-internals.c (_dbus_memdup): new function
2327
2328 2003-08-02  Havoc Pennington  <hp@pobox.com>
2329
2330         * dbus/dbus-message.c (dbus_message_get_no_reply)
2331         (dbus_message_set_no_reply): add these and remove
2332         set_is_error/get_is_error
2333
2334         * dbus/dbus-protocol.h, doc/dbus-specification.sgml: 
2335         remove the ERROR flag, since there's now an ERROR type
2336
2337 2003-08-01  Havoc Pennington  <hp@pobox.com>
2338
2339         * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
2340         implement
2341
2342         * dbus/dbus-message.c (dbus_message_get_type): new function
2343
2344         * doc/dbus-specification.sgml: add "type" byte to messages
2345
2346 2003-08-01  Havoc Pennington  <hp@pobox.com>
2347
2348         * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
2349         a message type enum to distinguish kinds of message
2350         (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message 
2351         that need not be replied to
2352
2353 2003-08-01  Havoc Pennington  <hp@pobox.com>
2354
2355         * dbus/dbus-marshal.c: adapt to DBusObjectID changes
2356         (unpack_8_octets): fix no-64-bit-int bug
2357
2358         * dbus/dbus-object-registry.c (validate_id): validate the 
2359         connection ID bits, not just the instance ID.
2360
2361         * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
2362         the connection-global 33 bits of the object ID
2363
2364         * dbus/dbus-object-registry.c (info_from_entry): fill in 
2365         object ID in the new way
2366
2367         * dbus/dbus-objectid.h: rather than high/low bits, specifically 
2368         define server/client/instance bits.
2369
2370 2003-07-30  Havoc Pennington  <hp@pobox.com>
2371
2372         * dbus/dbus-connection.c (dbus_connection_register_object): fix
2373         build
2374
2375 2003-07-13  Havoc Pennington  <hp@pobox.com>
2376
2377         * dbus/dbus-object.h (struct DBusObjectVTable): add padding
2378         fields to DBusObjectVTable and DBusObjectInfo
2379
2380 2003-07-12  Havoc Pennington  <hp@pobox.com>
2381
2382         * dbus/dbus-object-registry.c: implement unit test,
2383         fix bugs discovered in process
2384
2385         * dbus/dbus-connection.c: remove handler_table and
2386         register_handler(), add DBusObjectRegistry usage
2387
2388         * dbus/dbus-objectid.c (dbus_object_id_is_null)
2389         (dbus_object_id_set_null): new functions
2390
2391 2003-07-08  Havoc Pennington  <hp@pobox.com>
2392
2393         * dbus/dbus-object.c: implement some of this
2394
2395         * dbus/dbus-object-registry.c
2396         (_dbus_object_registry_add_and_unlock): fill in the object_id out
2397         param
2398         (_dbus_object_registry_new): handle OOM
2399
2400 2003-07-08  Havoc Pennington  <hp@pobox.com>
2401
2402         * dbus/dbus-object.h: sketch out an API for registering objects
2403         with a connection, that allows us to use as little as 24 bytes
2404         per object and lets application code represent an object in 
2405         any conceivable way.
2406
2407         * dbus/dbus-object-registry.c: implement the hard bits of the
2408         DBusConnection aspect of object API. Not yet wired up.
2409         
2410 2003-07-06  Havoc Pennington  <hp@pobox.com>
2411
2412         * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
2413         (_dbus_marshal_object_id): new
2414         (_dbus_demarshal_object_id): new
2415         (_dbus_marshal_get_arg_end_pos): support object ID type, and
2416         consolidate identical switch cases. Don't conditionalize handling
2417         of DBUS_TYPE_UINT64, need to handle the type always.
2418         (_dbus_marshal_validate_arg): consolidate identical cases, and
2419         handle DBUS_TYPE_OBJECT_ID
2420
2421         * dbus/dbus-objectid.c: new file with DBusObjectID data type.
2422
2423         * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
2424
2425 2003-09-28  Havoc Pennington  <hp@pobox.com>
2426
2427         * real 0.13 release
2428
2429 2003-09-28  Havoc Pennington  <hp@pobox.com>
2430
2431         * doc/Makefile.am (dbus-specification.html): testing a funky hack
2432         to work with Debian db2html
2433
2434 2003-09-28  Havoc Pennington  <hp@pobox.com>
2435
2436         * configure.in: 0.13
2437
2438         * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
2439         stylesheet-images for benefit of Debian
2440         
2441         Change back to using filesystem-linked sockets for the system
2442         bus, so only root can create the default system bus address.
2443         
2444         * bus/system.conf.in: change to use
2445         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
2446
2447         * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
2448         from here.
2449
2450         * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
2451         here, and AC_DEFINE DBUS_SYSTEM_PATH
2452
2453 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
2454
2455         * doc/TODO:
2456         * doc/busconfig.dtd:
2457         Add busconfig DTD.
2458         
2459 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
2460
2461         * doc/dbus-specification.sgml:
2462         Add activation reply values.
2463         
2464 2003-08-05  Havoc Pennington  <hp@redhat.com>
2465
2466         * configure.in: 0.12
2467
2468 2003-08-05  Anders Carlsson  <andersca@codefactory.se>
2469
2470         * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
2471         (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
2472         (add_watch), (remove_watch), (create_source):
2473         Refcount fds, fixes some reentrancy issues.
2474         
2475 2003-07-30  Havoc Pennington  <hp@redhat.com>
2476
2477         * dbus/dbus-bus.c (init_connections_unlocked): fix default system
2478         bus address to be abstract if we have abstract sockets
2479
2480         * NEWS: update
2481
2482 2003-07-28  Havoc Pennington  <hp@redhat.com>
2483
2484         * bus/messagebus.in: fix to avoid processname/servicename 
2485         confusion, from Michael Kearey
2486         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
2487         
2488 2003-07-23  Havoc Pennington  <hp@pobox.com>
2489
2490         * dbus/dbus-message.c (dbus_message_iter_get_named): 
2491         fix from Andy Hanton to remove broken "+1"
2492
2493 2003-07-16  Havoc Pennington  <hp@pobox.com>
2494
2495         * tools/dbus-launch.c (babysit): close stdout/stderr in the
2496         babysitter process, as suggested by Thomas Leonard, so 
2497         an "eval `dbus-launch --exit-with-session`" will actually 
2498         return
2499
2500 2003-07-16  Havoc Pennington  <hp@pobox.com>
2501
2502         * configure.in: print out EXPANDED_* variables in the summary at
2503         the end; clean up the code that computes EXPANDED_ variables and
2504         get the ones using exec_prefix right. Should make things work
2505         when you build without --prefix
2506
2507 2003-06-29  Havoc Pennington  <hp@pobox.com>
2508
2509         * mono/Test.cs (class Test): fire up a main loop and run it
2510
2511         * mono/DBus.cs (DBus): don't g_thread_init since it can only be
2512         done once, the app has to do it
2513
2514 2003-06-26  Havoc Pennington  <hp@pobox.com>
2515
2516         * mono/Connection.cs: set up connection with the glib main loop
2517
2518 2003-07-01  Havoc Pennington  <hp@redhat.com>
2519
2520         * doc/dbus-specification.sgml: clarify the format of a type code,
2521         change suggested by Jim Blandy
2522
2523 2003-06-29  Miloslav Trmac  <mitr@volny.cz>
2524
2525         * doc/Makefile.am:
2526         * tools/Makefile.am: Don't assume srcdir == builddir.
2527
2528         * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
2529         the allocated block.
2530         (_dbus_memory_test): New function.
2531         * dbus/dbus-test.h: Add _dbus_memory_test ().
2532         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
2533
2534         * dbus/dbus-message.c (decode_header_data): Use %.4s instead
2535         of %c%c%c%c.
2536         (dbus_message_new): Remove obsolete @todo.
2537
2538         * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
2539         (_dbus_marshal_set_uint64): Fix comment.
2540
2541         * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
2542         hardcode FIELD_REPLY_SERIAL.
2543
2544         * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
2545         (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
2546
2547         * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
2548         and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
2549
2550 2003-06-24  Havoc Pennington  <hp@pobox.com>
2551
2552         * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
2553
2554 2003-06-23  Anders Carlsson  <andersca@codefactory.se>
2555
2556         * configure.in:
2557         * gcj/.cvsignore:
2558         * gcj/Hello.java:
2559         * gcj/Makefile.am:
2560         * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
2561         * gcj/org/.cvsignore:
2562         * gcj/org/Makefile.am:
2563         * gcj/org/freedesktop/.cvsignore:
2564         * gcj/org/freedesktop/Makefile.am:
2565         * gcj/org/freedesktop/dbus/.cvsignore:
2566         * gcj/org/freedesktop/dbus/Makefile.am:
2567         * gcj/org/freedesktop/dbus/Message.java: (Message),
2568         (Message.Message):
2569         * gcj/org/freedesktop/dbus/natMessage.cc:
2570         Fix the build system.
2571
2572 2003-06-22  Havoc Pennington  <hp@pobox.com>
2573
2574         * mono/Connection.cs: add more bindings
2575
2576         * dbus/dbus-threads.c (dbus_threads_init): allow calling this
2577         more than once.
2578
2579 2003-06-22  Havoc Pennington  <hp@pobox.com>
2580
2581         * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
2582         Start wrapping more stuff.
2583
2584 2003-06-22  Havoc Pennington  <hp@pobox.com>
2585
2586         * mono/Message.cs: implement Message.Wrap() that ensures we only
2587         have a single C# wrapper per DBusMessage, assuming it works which
2588         it probably doesn't.
2589
2590         * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
2591         (dbus_message_free_data_slot): new
2592         (dbus_message_set_data): new
2593         (dbus_message_get_data): new
2594
2595 2003-06-22  Havoc Pennington  <hp@pobox.com>
2596
2597         * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
2598         (_dbus_data_slot_allocator_alloc): rework these to keep a
2599         reference count on each slot and automatically manage a global
2600         slot ID variable passed in by address
2601
2602         * bus/bus.c: convert to new dataslot API
2603
2604         * dbus/dbus-bus.c: convert to new dataslot API
2605
2606         * dbus/dbus-connection.c: convert to new dataslot API
2607
2608         * dbus/dbus-server.c: convert to new dataslot API
2609
2610         * glib/dbus-gmain.c: ditto
2611
2612         * bus/test.c: ditto
2613
2614         * bus/connection.c: ditto
2615
2616 2003-06-22  Anders Carlsson  <andersca@codefactory.se>
2617
2618         * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
2619         after the gcj checks so that the correct configuration tags
2620         will be added to libtool.
2621
2622         * dbus-glib-1.pc.in: No need to specify any includes since
2623         dbus-1.pc.in has those.
2624
2625 2003-06-22  Havoc Pennington  <hp@pobox.com>
2626
2627         * mono/*, gcj/*, configure.in, Makefile.am:
2628         Check in makefiles and subdirs for mono and gcj bindings.
2629         Neither binding actually exists, just trying to get through
2630         all the build and other boring bits.
2631
2632 2003-06-21  Philip Blundell  <philb@gnu.org>
2633
2634         * tools/dbus-monitor.1: Updated.
2635
2636         * tools/dbus-send.1: Likewise.
2637
2638 2003-06-20  Anders Carlsson  <andersca@codefactory.se>
2639
2640         * dbus/dbus-transport-unix.c (unix_handle_watch): Check
2641         for hangup and error after checking read so we won't discard
2642         pending data if both hangup and read are set.
2643
2644 2003-06-19  Philip Blundell  <philb@gnu.org>
2645
2646         * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
2647
2648         * tools/dbus-send.c: Accept both --system and --session.
2649
2650         * tools/dbus-monitor.c: Same here.
2651
2652 2003-06-19  Anders Carlsson  <andersca@codefactory.se>
2653
2654         * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
2655         from C++ (Patch by Miloslav Trmac).
2656
2657 2003-06-15  Joe Shaw  <joe@assbarn.com>
2658
2659         * configure.in: Check for socklen_t.
2660
2661         * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
2662
2663         * test/test-segfault.c: Add #include <sys/time.h>
2664
2665         * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
2666         dbus-launch needs it.
2667
2668 2003-06-09  Havoc Pennington  <hp@redhat.com>
2669
2670         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
2671         SUN_LEN, it breaks abstract socket usage
2672
2673         * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
2674         starts of lines.
2675
2676 2003-06-04  Havoc Pennington  <hp@pobox.com>
2677
2678         * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
2679         using unix:abstract=/foo, and when listening in a tmpdir
2680         i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
2681
2682         * dbus/dbus-transport.c (_dbus_transport_open): support
2683         unix:abstract=/foo
2684
2685         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
2686         support abstract sockets
2687
2688         * dbus/dbus-transport-unix.c
2689         (_dbus_transport_new_for_domain_socket): support abstract sockets
2690
2691         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
2692         toggle as an argument, implement abstract namespace support
2693         (_dbus_listen_unix_socket): ditto
2694
2695         * configure.in: add --enable-abstract-sockets and implement
2696         a configure check for autodetection of the right value.
2697
2698 2003-06-01  Havoc Pennington  <hp@pobox.com>
2699
2700         * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
2701         in /tmp (though on Linux this will end up being useless,
2702         when we add abstract namespace support)
2703
2704         * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
2705         subst'ing it
2706
2707 2003-05-28  Colin Walters  <walters@verbum.org>
2708
2709         * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
2710
2711 2003-05-18  Anders Carlsson  <andersca@codefactory.se>
2712
2713         * dbus/dbus-message.c (dbus_message_new): Remove @todo.
2714
2715 2003-05-17  Colin Walters  <walters@gnu.org>
2716
2717         * tools/dbus-send.c: Don't exit with an error code if --help was
2718         passed.  Default to using the session bus instead of the system
2719         one.
2720
2721         * tools/dbus-launch.c: Ditto.
2722
2723         * tools/dbus-monitor.c: Ditto.
2724
2725         * tools/dbus-send.1: Update with new arguments.
2726
2727         * tools/dbus-launch.c: Emit code to export variables.  New
2728         arguments -s and -c to specify shell syntax, and a bit of code to
2729         autodetect syntax.  Also, allow specifying a program to run.
2730
2731         * tools/dbus-launch.1: Update with new arguments.
2732
2733         * tools/dbus-send.1: Ditto.
2734
2735         * tools/dbus-monitor.1: Ditto.
2736
2737 2003-05-17  Havoc Pennington  <hp@pobox.com>
2738
2739         * bus/config-parser.c (merge_included): merge in policies from
2740         child configuration file.
2741
2742         * bus/policy.c (bus_policy_merge): function to merge two policies
2743         together
2744
2745 2003-05-16  Havoc Pennington  <hp@redhat.com>
2746
2747         * dbus/dbus-connection.c: disable verbose lock spew
2748
2749         * tools/dbus-send.c: add --print-reply command line option
2750
2751         * tools/dbus-print-message.h (print_message): new util function
2752         shared by dbus-send and dbus-monitor
2753
2754         * tools/dbus-monitor.c (handler_func): exit on disconnect
2755
2756         * dbus/dbus-transport-unix.c (do_reading): if the transport is
2757         disconnected, don't try to use the read_watch
2758
2759         * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
2760         so we can find this bug more easily
2761
2762 2003-05-16  Havoc Pennington  <hp@redhat.com>
2763
2764         * bus/policy.c (free_rule_list_func): avoid a crash when passed
2765         NULL as DBusHashTable is annoyingly likely to do.
2766
2767 2003-05-16  Colin Walters  <walters@verbum.org>
2768
2769         * tools/dbus-monitor.c: Add --session argument and usage()
2770         function.
2771
2772         * tools/dbus-monitor.1: Update with new --session arg.
2773
2774         * bus/Makefile.am (install-data-hook): Create
2775         $(libdir)/dbus-1.0/services so that the session bus is happy.
2776
2777 2003-05-15  Havoc Pennington  <hp@redhat.com>
2778
2779         * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
2780         on non-x86. ifdef's are evil.
2781
2782 2003-05-15  Havoc Pennington  <hp@redhat.com>
2783
2784         * configure.in: 0.11
2785
2786         * NEWS: update
2787
2788         * bus/Makefile.am (initddir): apparently we are supposed to put
2789         init scripts in /etc/rc.d/init.d not /etc/init.d
2790
2791         * bus/Makefile.am: remove the "you must --enable-tests to make
2792         check" as it broke distcheck
2793
2794         * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
2795
2796 2003-05-13  James Willcox  <jwillcox@gnome.org>
2797
2798         * configure.in:
2799         * bus/activation.c: (bus_activation_service_created),
2800         (bus_activation_activate_service):
2801         * bus/driver.c: (bus_driver_send_service_deleted),
2802         (bus_driver_send_service_created), (bus_driver_send_service_lost),
2803         (bus_driver_send_service_acquired),
2804         (bus_driver_send_welcome_message),
2805         (bus_driver_handle_list_services):
2806         * bus/session.conf.in:
2807         * dbus/dbus-bus.c: (dbus_bus_acquire_service),
2808         (dbus_bus_service_exists), (dbus_bus_activate_service):
2809         * dbus/dbus-bus.h:
2810
2811         Add some convenience API which lets you activate a service, and did a
2812         bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
2813         and dbus_message_get_args()
2814
2815 2003-05-11  Havoc Pennington  <hp@pobox.com>
2816
2817         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
2818         calling _dbus_marshal_validate_arg() for every byte in a byte
2819         array, etc.
2820
2821         * dbus/dbus-message-handler.c: use atomic reference counting to
2822         reduce number of locks slightly; the global lock in here sucks
2823
2824         * dbus/dbus-connection.c
2825         (_dbus_connection_update_dispatch_status_and_unlock): variant of
2826         update_dispatch_status that can be called with lock held; then use
2827         in a couple places to reduce locking/unlocking
2828         (dbus_connection_send): hold the lock over the whole function
2829         instead of acquiring it twice.
2830
2831         * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
2832
2833         * bus/connection.c (bus_connections_setup_connection): fix access
2834         to already-freed memory.
2835
2836         * dbus/dbus-connection.c: keep a little cache of linked list
2837         nodes, to avoid using the global linked list alloc lock in the
2838         normal send-message case. Instead we just use the connection lock
2839         that we already have to take.
2840
2841         * dbus/dbus-list.c (_dbus_list_find_last): new function
2842
2843         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
2844         change to use a struct for the atomic type; fix docs,
2845         they return value before increment, not after increment.
2846
2847         * dbus/dbus-string.c (_dbus_string_append_4_aligned)
2848         (_dbus_string_append_8_aligned): new functions to try to
2849         microoptimize this operation.
2850         (reallocate_for_length): break this out of set_length(), to
2851         improve profile info, and also so we can consider inlining the
2852         set_length() part.
2853
2854         * dbus/dbus-message.c (dbus_message_new_empty_header): init data
2855         strings with some preallocation, cuts down on our calls to realloc
2856         a fair bit. Though if we can get the "move entire string to empty
2857         string" optimization below to kick in here, it would be better.
2858
2859         * dbus/dbus-string.c (_dbus_string_move): just call
2860         _dbus_string_move_len
2861         (_dbus_string_move_len): add a special case for moving
2862         an entire string into an empty string; we can just
2863         swap the string data instead of doing any reallocs.
2864         (_dbus_string_init_preallocated): new function
2865
2866 2003-05-11  Havoc Pennington  <hp@pobox.com>
2867
2868         Write a "test-profile" that does echo client-server with threads;
2869         profile reveals lock contention, memcpy/realloc of buffers, and
2870         UTF-8 validation as hot spots. 20% of lock contention eliminated
2871         with dbus_atomic_inc/dec implementation on x86.  Much remaining
2872         contention is global mempool locks for GList and DBusList.
2873
2874         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
2875         x86 implementation
2876
2877         * dbus/dbus-connection.c (struct DBusConnection): use
2878         dbus_atomic_t for the reference count
2879
2880         * dbus/dbus-message.c (struct DBusMessage): declare
2881         dbus_atomic_t values as volatile
2882
2883         * configure.in: code to detect ability to use atomic integer
2884         operations in assembly, from GLib patch
2885
2886         * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
2887         time, tired of it being wrong in threads and forked processes
2888
2889         * glib/test-profile.c: a little program to bounce messages back
2890         and forth between threads and eat CPU
2891
2892         * dbus/dbus-connection.c: add debug spew macros for debugging
2893         thread locks; include config.h at top; fix deadlock in
2894         dbus_connection_flush()
2895
2896 2003-05-08  Havoc Pennington  <hp@pobox.com>
2897
2898         * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
2899         data from getting written, and there wasn't a good reason to
2900         use _exit really.
2901
2902         * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
2903         dbus_verbose lines in test coverage
2904         (main): add list of functions sorted by # of untested blocks
2905         to the coverage report
2906
2907         * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
2908
2909         * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
2910
2911         * dbus/dbus-message-handler.c (_dbus_message_handler_test):
2912         extend test coverage
2913
2914         * test/data/auth/cancel.auth-script: test canceling an
2915         authentication
2916
2917         * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
2918         aren't used. in CVS history if we end up needing them.
2919
2920 2003-05-04  Havoc Pennington  <hp@pobox.com>
2921
2922         * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
2923         unit test
2924
2925         * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
2926         function, which assumed length was in # of strings, not bytes
2927
2928         * dbus/dbus-message.c (_dbus_message_test): add tests for some
2929         missing coverage
2930
2931         * dbus/dbus-connection.c
2932         (_dbus_connection_queue_received_message): disable function for
2933         now, we are only using it in test mode
2934
2935         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
2936         remove a mistaken FIXME
2937
2938 2003-05-04  Havoc Pennington  <hp@pobox.com>
2939
2940         * dbus/dbus-connection.c (dbus_connection_preallocate_send):
2941         unlock mutex on successful return, patch from Anders Gustafsson
2942
2943 2003-05-04  Havoc Pennington  <hp@pobox.com>
2944
2945         * dbus-glib-1.pc.in (Requires): fix dependencies, from
2946         Anders Gustafsson
2947
2948 2003-05-04  Havoc Pennington  <hp@pobox.com>
2949
2950         * tools/dbus-launch.c: implement
2951
2952         * bus/main.c (main), bus/bus.c (bus_context_new):
2953         implement --print-pid and --fork
2954
2955 2003-05-03  Havoc Pennington  <hp@redhat.com>
2956
2957         * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
2958         the address had no value, and add to test suite. Fix and
2959         regression test from Miloslav Trmac
2960
2961 2003-05-03  Havoc Pennington  <hp@pobox.com>
2962
2963         * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
2964         watch is invalid when handled
2965
2966         * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
2967         dbus-launch utility to launch the bus from a shell script.  Didn't
2968         actually implement dbus-launch yet, it's just a placeholder still.
2969
2970 2003-05-03  Havoc Pennington  <hp@pobox.com>
2971
2972         * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
2973         daemon; also documents daemon config file, so replaces
2974         doc/config-file.txt. Corrected some stuff from config-file.txt in
2975         the process of moving it.
2976
2977 2003-05-03  Havoc Pennington  <hp@pobox.com>
2978
2979         * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
2980         add some man pages
2981
2982 2003-05-03  Colin Walters  <walters@verbum.org>
2983
2984         * dbus/dbus-sysdeps.c (fill_user_info): Test against
2985         DBUS_UID_UNSET to determine whether to do a uid lookup or not.
2986
2987         * Makefile.am: Update to use new .pc versioning scheme.
2988
2989 2003-05-02  Havoc Pennington  <hp@redhat.com>
2990
2991         * bus/system.conf.in: allow send/receive to/from message bus
2992         service
2993
2994 2003-04-30  Havoc Pennington  <hp@redhat.com>
2995
2996         * configure.in: print a note when building with unit tests and
2997         without assertions
2998
2999 2003-04-30  Havoc Pennington  <hp@redhat.com>
3000
3001         * Makefile.am: add a check-local that complains if you didn't
3002         configure with --enable-tests
3003
3004 2003-04-29  Havoc Pennington  <hp@redhat.com>
3005
3006         * glib/dbus-gmain.c: docs cleanups
3007
3008         * dbus/dbus-types.h: add docs on int64 types
3009
3010         * dbus/dbus-memory.c: fix docs to avoid putting private API in
3011         public API docs section
3012
3013 2003-04-29  Havoc Pennington  <hp@redhat.com>
3014
3015         * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
3016         dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
3017         parallel install API version, not with the D-BUS package version.
3018
3019         * HACKING: move some of README over here
3020
3021         * README: updates, and document API/ABI policy
3022
3023         * configure.in: reindentation
3024
3025 2003-04-29  Havoc Pennington  <hp@redhat.com>
3026
3027         * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
3028         to use this library" to be sure people have the right
3029         expectations.
3030
3031 2003-04-28  Havoc Pennington  <hp@redhat.com>
3032
3033         * configure.in: add --enable-docs which by default is auto yes if
3034         doxygen and db2html found, no otherwise; but can be forced on/off
3035
3036         * doc/Makefile.am: conditionalize whether to build docs on
3037         --enable-docs
3038
3039 2003-04-28  Havoc Pennington  <hp@redhat.com>
3040
3041         * configure.in: 0.10
3042
3043         * NEWS: update
3044
3045         * bus/system.conf.in: add <includedir>system.d</includedir>
3046
3047         * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
3048         username was provided but not uid
3049
3050         * bus/config-parser.c (struct BusConfigParser): keep track of
3051         whether the parser is toplevel or was included; change some
3052         of the error handling if it's included.
3053
3054 2003-04-27  Havoc Pennington  <hp@pobox.com>
3055
3056         Unbreak my code...
3057
3058         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
3059         report correct status if we finish processing authentication
3060         inside this function.
3061
3062         * bus/activation.c (try_send_activation_failure): use
3063         bus_transaction_send_error_reply
3064
3065         * bus/connection.c (bus_connection_get_groups): return an error
3066         explaining the problem
3067
3068         * bus/bus.c (bus_context_check_security_policy): implement
3069         restriction here that inactive connections can only send the
3070         hello message. Also, allow bus driver to send anything to
3071         any recipient.
3072
3073         * bus/connection.c (bus_connection_complete): create the
3074         BusClientPolicy here instead of on-demand.
3075         (bus_connection_get_policy): don't return an error
3076
3077         * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
3078         sender field in message being replied to
3079
3080         * bus/bus.c (bus_context_check_security_policy): fix silly typo
3081         causing it to return FALSE always
3082
3083         * bus/policy.c (bus_client_policy_check_can_send): fix bug where
3084         we checked sender rather than destination
3085
3086 2003-04-25  Havoc Pennington  <hp@redhat.com>
3087
3088         test suite is slightly hosed at the moment, will fix soon
3089
3090         * bus/connection.c (bus_connections_expire_incomplete): fix to
3091         properly disable the timeout when required
3092         (bus_connection_set_name): check whether we can remove incomplete
3093         connections timeout after we complete each connection.
3094
3095         * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
3096         probably still broken.
3097
3098         * bus/services.c (bus_registry_acquire_service): implement max
3099         number of services owned, and honor allow/deny rules on which
3100         services a connection can own.
3101
3102         * bus/connection.c (bus_connection_get_policy): report errors here
3103
3104         * bus/activation.c: implement limit on number of pending
3105         activations
3106
3107 2003-04-25  Havoc Pennington  <hp@redhat.com>
3108
3109         * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
3110         where we used >= 0 instead of != DBUS_UID_UNSET.
3111
3112 2003-04-25  Havoc Pennington  <hp@redhat.com>
3113
3114         * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
3115         were toggled without add/remove, fix from Anders Gustafsson
3116
3117 2003-04-24  Havoc Pennington  <hp@redhat.com>
3118
3119         * test/data/valid-config-files/basic.conf: add <limit> tags to
3120         this test
3121
3122         * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
3123         <limit> tag in configuration file.
3124
3125 2003-04-24  Havoc Pennington  <hp@redhat.com>
3126
3127         * bus/dispatch.c: somehow missed some name_is
3128
3129         * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
3130         (_dbus_timeout_set_interval): new
3131
3132         * bus/connection.c (bus_connections_setup_connection): record time
3133         when each connection is first set up, and expire them after the
3134         auth timeout passes.
3135
3136 2003-04-24  Havoc Pennington  <hp@redhat.com>
3137
3138         * dbus/dbus-message.c (dbus_message_name_is): rename
3139         (dbus_message_service_is): rename
3140         (dbus_message_sender_is): rename
3141         (dbus_message_get_service): rename
3142
3143 2003-04-24  Havoc Pennington  <hp@redhat.com>
3144
3145         * configure.in: add --enable-checks
3146
3147         * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
3148
3149         * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
3150         to use thread locks.
3151         (_dbus_connection_handler_destroyed_locked): move some private
3152         functions into proper docs group
3153
3154         * dbus/dbus-internals.h: add _dbus_return_if_fail,
3155         _dbus_return_val_if_fail
3156
3157         Throughout: use dbus_return_if_fail
3158
3159 2003-04-23  James Willcox  <jwillcox@gnome.org>
3160
3161         * glib/dbus-glib.h:
3162         * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
3163         (dbus_connection_setup_with_g_main),
3164         (dbus_server_setup_with_g_main):
3165         * glib/test-dbus-glib.c: (main):
3166         * glib/test-thread-client.c: (main):
3167         * glib/test-thread-server.c: (new_connection_callback), (main):
3168         * tools/dbus-monitor.c: (main):
3169
3170         Added a GMainContext argument to dbus_connection_setup_with_g_main()
3171         and dbus_server_setup_with_g_main().
3172
3173 2003-04-20  Havoc Pennington  <hp@pobox.com>
3174
3175         * doc/dbus-specification.sgml: document the restrictions on
3176         message and service names
3177
3178 2003-04-22  Havoc Pennington  <hp@redhat.com>
3179
3180         * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
3181         support, and do some code cleanups to share more code and
3182         speed up array marshal/demarshal.
3183
3184         * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
3185
3186         * configure.in: generate dbus-arch-deps.h
3187
3188         * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
3189         64-bit typecodes
3190
3191 2003-04-22  Havoc Pennington  <hp@redhat.com>
3192
3193         * test/data/valid-messages/opposite-endian.message: fix test
3194         to use proper type for rply field
3195
3196         * test/data/invalid-messages: add tests for below validation
3197
3198         * dbus/dbus-message.c (decode_header_data): validate field types,
3199         and validate that named fields are valid names
3200         (decode_name_field): consider messages in the
3201         org.freedesktop.Local. namespace to be invalid.
3202
3203         * dbus/dbus-string.c (_dbus_string_validate_name): new
3204
3205 2003-04-19  Havoc Pennington  <hp@pobox.com>
3206
3207         * bus/driver.c (bus_driver_handle_hello): check limits and
3208         return an error if they are exceeded.
3209
3210         * bus/connection.c: maintain separate lists of active and inactive
3211         connections, and a count of each. Maintain count of completed
3212         connections per user. Implement code to check connection limits.
3213
3214         * dbus/dbus-list.c (_dbus_list_unlink): export
3215
3216         * bus/bus.c (bus_context_check_security_policy): enforce a maximum
3217         number of bytes in the message queue for a connection
3218
3219 2003-04-18  Havoc Pennington  <hp@pobox.com>
3220
3221         * dbus/dbus-auth.c (record_mechanisms): memleak fixes
3222
3223         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
3224         memleaks
3225
3226         * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
3227         on realloc be sure to update the pointer in the keyring
3228
3229         * dbus/dbus-string.c (_dbus_string_zero): compensate for align
3230         offset to avoid writing to unallocated memory
3231
3232         * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
3233         try the next mechanism, so we properly handle OOM
3234
3235         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
3236         on OOM.
3237         (_dbus_keyring_new): fix OOM bug
3238         (_dbus_keyring_new_homedir): always set error; impose a maximum
3239         number of keys we'll load from the file, mostly to speed up the
3240         test suite and make its OOM checks more useful, but also for
3241         general sanity.
3242
3243         * dbus/dbus-auth.c (process_error_server): reject authentication
3244         if we get an error from the client
3245         (process_cancel): on cancel, send REJECTED, per the spec
3246         (process_error_client): send CANCEL if we get an error from the
3247         server.
3248
3249 2003-04-18  Havoc Pennington  <hp@pobox.com>
3250
3251         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
3252         debug spew
3253
3254         * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
3255         handling problem
3256
3257         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
3258         about DBUS_TEST_HOMEDIR once
3259
3260         * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
3261         the environment
3262
3263         * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
3264         config file so we test the right thing
3265
3266         Throughout: assorted docs improvements
3267
3268 2003-04-18  Havoc Pennington  <hp@pobox.com>
3269
3270         * glib/dbus-gmain.c: adapt to watch changes
3271
3272         * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
3273
3274         * dbus/dbus-server.h: remove dbus_server_handle_watch
3275
3276         * dbus/dbus-connection.h: remove dbus_connection_handle_watch
3277
3278         * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
3279         like DBusTimeout, so we don't need dbus_connection_handle_watch
3280         etc.
3281
3282 2003-04-17  Havoc Pennington  <hp@redhat.com>
3283
3284         * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
3285         database usage so it all goes via the DBusUserDatabase cache.
3286
3287 2003-04-17  Havoc Pennington  <hp@redhat.com>
3288
3289         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
3290         there was an OOM watch we skipped, we always return TRUE so we
3291         iterate again to have a look at it again. Fixes test suite hang.
3292         Code rearrangement also lets us lose some memset and only iterate
3293         over callbacks once.
3294
3295         * bus/driver.c (bus_driver_handle_message): sense of test for
3296         reply was backward
3297
3298 2003-04-16  Havoc Pennington  <hp@pobox.com>
3299
3300         * doc/dbus-specification.sgml: make spec say serials are unsigned
3301
3302         * dbus/dbus-message.h: change message serials to unsigned
3303
3304         * dbus/dbus-connection.c: adapt to message serials being unsigned
3305
3306 2003-04-15  Havoc Pennington  <hp@pobox.com>
3307
3308         * bus/bus.c: create and keep around a shared DBusUserDatabase
3309         object.
3310
3311         * bus/connection.c (bus_connection_get_groups): don't cache
3312         groups for user in the connection object, since user database
3313         object now does that.
3314
3315 2003-04-16  Havoc Pennington  <hp@redhat.com>
3316
3317         * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
3318         list of size counters
3319         (_dbus_message_loader_putback_message_link): put back a popped link
3320
3321         * dbus/dbus-connection.c
3322         (dbus_connection_set_max_live_messages_size): rename
3323         max_received_size
3324         (dbus_connection_get_outgoing_size): get size of outgoing
3325         queue
3326         (_dbus_connection_set_connection_counter): remove this cruft
3327
3328 2003-04-14  Havoc Pennington  <hp@redhat.com>
3329
3330         * dbus/dbus-userdb.c: user database abstraction, mostly to get
3331         caching, but at some point we might want to be able to use a
3332         different database.
3333
3334         * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
3335         SHA1 conf file to test the sha1 auth mechanism, since the regular
3336         test always uses EXTERNAL when available.
3337
3338         * configure.in,
3339         test/data/valid-config-files/debug-allow-all-sha1.conf.in:
3340         add conf file that requires use of sha1 auth
3341
3342 2003-04-13  Havoc Pennington  <hp@pobox.com>
3343
3344         * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
3345         from Philip Blundell to send messages and monitor them.
3346
3347 2003-04-13  Havoc Pennington  <hp@pobox.com>
3348
3349         * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
3350         callbacks
3351
3352         * test/data/valid-config-files/debug-allow-all.conf.in: allow all
3353         users
3354
3355         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
3356         fix to only recover unused bytes if we're already authenticated
3357         (_dbus_transport_get_is_authenticated): fix to still mark us
3358         authenticated if there are unused bytes.
3359
3360         * bus/dispatch.c: implement security policy checking
3361
3362         * bus/connection.c (bus_transaction_send_from_driver): new
3363
3364         * bus/bus.c (bus_context_check_security_policy): new
3365
3366         * bus/dispatch.c (send_service_nonexistent_error): delete this,
3367         now we just set the DBusError and it gets converted to an error
3368         reply.
3369
3370         * bus/connection.c (allow_user_function): enable code using actual
3371         data from the config file
3372
3373         * bus/policy.c (list_allows_user): handle wildcard rules for
3374         user/group connection perms
3375
3376 2003-04-13  Havoc Pennington  <hp@pobox.com>
3377
3378         * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
3379
3380         * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
3381
3382         * bus/policy.c (bus_policy_append_mandatory_rule)
3383         (bus_policy_append_default_rule, bus_policy_append_user_rule)
3384         (bus_policy_append_group_rule): new functions
3385
3386 2003-04-12  Havoc Pennington  <hp@pobox.com>
3387
3388         * bus/config-parser.c (bus_config_parser_new): fix a memleak
3389
3390         * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
3391         the pid/gid/uid, just for paranoia.
3392
3393         * test/break-loader.c (randomly_do_n_things): find a byte
3394         containing a type code, and randomly change it to a different
3395         type code.
3396
3397 2003-04-12  Havoc Pennington  <hp@pobox.com>
3398
3399         * bus/policy.h: change BusPolicy to be the thing from the config
3400         file, and rename old BusPolicy to BusClientPolicy
3401
3402         * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
3403         match change in how policy works
3404
3405         * dbus/dbus-internals.h: mark assert_not_reached as
3406         __attribute((noreturn))__
3407
3408 2003-04-11  Havoc Pennington  <hp@redhat.com>
3409
3410         * doc/dbus-specification.sgml: fix a spot with the wrong name for
3411         the broadcast service. Use boolean return for ServiceExists.
3412
3413 2003-04-11  Havoc Pennington  <hp@redhat.com>
3414
3415         * configure.in: add another directory to look for qt in.
3416
3417 2003-04-11  Havoc Pennington  <hp@redhat.com>
3418
3419         * AUTHORS: add Colin Walters
3420
3421 2003-04-11  Havoc Pennington  <hp@redhat.com>
3422
3423         * NEWS: update
3424
3425         * configure.in: 0.9
3426
3427 2003-04-11  Havoc Pennington  <hp@redhat.com>
3428
3429         * bus/messagebus.in: remove pid file when stopping the
3430         message bus, since the bus won't have privileges to remove it
3431         itself.
3432
3433 2003-04-11  Havoc Pennington  <hp@redhat.com>
3434
3435         * bus/bus.c (bus_context_new): move credentials change after
3436         creating pidfile
3437
3438 2003-04-11  Havoc Pennington  <hp@pobox.com>
3439
3440         * test/decode-gcov.c: add "below average functions" to the
3441         coverage report, and change how some of the code works.
3442
3443         * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
3444         not in the coverage stats.
3445
3446         * test/test-service.c (main): use _dbus_verbose not fprintf in a
3447         couple places so running the test suite doesn't result in megaspam.
3448
3449 2003-04-11  Havoc Pennington  <hp@pobox.com>
3450
3451         * bus/dispatch.c (check_existent_service_activation): accept a no
3452         memory error in a place we didn't before
3453
3454         * bus/test.c (bus_test_run_everything): remove hacky "do it twice
3455         in case the first one failed," since the test suite is less
3456         broken now.
3457
3458 2003-04-10  Havoc Pennington  <hp@pobox.com>
3459
3460         * bus/dispatch.c (check_segfault_service_activation): add test
3461         for launching an executable that just crashes.
3462
3463         * test/test-segfault.c (main): try setting coredumpsize to 0 so we
3464         don't leave a million cores. We'll see how portable this is.
3465
3466 2003-04-10  Havoc Pennington  <hp@pobox.com>
3467
3468         * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
3469         the possible parent failures before we fork, so that we don't
3470         fail to create a babysitter after creating the child.
3471
3472         * bus/activation.c (bus_activation_activate_service): kill child
3473         if we don't successfully complete the activation.
3474
3475 2003-04-10  Havoc Pennington  <hp@redhat.com>
3476
3477         * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
3478         the connection if it's disconnected
3479
3480         * bus/activation.c (bus_activation_service_created): use new
3481         transaction features to roll back removal of pending activation if
3482         we don't successfully create the service after all. Don't remove
3483         pending activation if the function fails.
3484
3485         * dbus/dbus-list.c (_dbus_list_insert_before_link)
3486         (_dbus_list_insert_after_link): new code to facilitate
3487         services.c fixes
3488
3489         * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
3490         new functionality, so we can preallocate the ability to insert
3491         into a hash table.
3492
3493         * bus/connection.c (bus_transaction_add_cancel_hook): new function
3494         allowing us to put custom hooks in a transaction to be used for
3495         cancelling said transaction
3496
3497         * doc/dbus-specification.sgml: add some discussion of secondary
3498         service owners, and disallow zero-length service names
3499
3500         * bus/services.c (bus_registry_acquire_service): new function,
3501         splits out part of bus_driver_handle_acquire_service() and fixes
3502         a bug where we didn't remove the service doing the acquiring
3503         from the secondary queue if we failed to remove the current owner
3504         from the front of the queue.
3505
3506 2003-04-10  Alexander Larsson  <alexl@redhat.com>
3507
3508         * doc/dbus-specification.sgml:
3509         s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
3510
3511 2003-04-10  Alexander Larsson  <alexl@redhat.com>
3512
3513         * bus/.cvsignore:
3514         * glib/.cvsignore:
3515         * test/.cvsignore:
3516         Added files to cvsignore
3517
3518         * dbus/dbus-message.h:
3519         * dbus/dbus-message.c: (dbus_message_iter_get_named):
3520         Make get_named() take two out argument and return a boolean.
3521         (dbus_message_iter_get_args_valist):
3522         Update usage of get_named().
3523         (dbus_message_iter_append_byte):
3524         Fix typo
3525         (dbus_message_iter_append_named)
3526         Fix typo
3527         (message_iter_test), (check_message_handling_type), (_dbus_message_test):
3528         More tests.
3529
3530 2003-04-10  Alexander Larsson  <alexl@redhat.com>
3531
3532         * dbus/dbus-marshal.[ch]:
3533         Add array_type_pos argument to _dbus_marshal_validate_arg.
3534         Let you pass a NULL end_pos to _dbus_marshal_validate_type.
3535
3536         * dbus/dbus-message.[ch]:
3537         Multi-dimensional arrays have full type specification in the
3538         outermost array. Iter code re-arranged to handle this.
3539         Added some more iter tests.
3540
3541         * doc/dbus-specification.sgml:
3542         Add me to authors.
3543         Remove old FIXME.
3544         Update new array encoding description.
3545         Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
3546
3547         * test/data/invalid-messages/array-with-mixed-types.message:
3548         * test/data/valid-messages/array-of-array-of-uint32.message:
3549         Change to the new array format.
3550
3551         * test/data/invalid-messages/too-short-dict.message:
3552         Fix bug in test.
3553
3554         * test/data/valid-messages/recursive-types.message:
3555         Fix up and extend test.
3556
3557 2003-04-10  Havoc Pennington  <hp@pobox.com>
3558
3559         * bus/dispatch.c: lots of fixes
3560
3561         * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
3562         (_dbus_loop_iterate): remove old "quit if no callbacks" code,
3563         that was crack, broke the test service.
3564
3565         * dbus/dbus-transport.c (_dbus_transport_open): fix error
3566         handling to avoid piling up errors if we get a failure on the
3567         first address.
3568
3569         * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
3570         pid in assertion failures.
3571
3572         * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
3573         to some fixed size of file descriptor array. Don't return TRUE
3574         anytime a timeout exists, that led to lots of busy loop silliness
3575         in the tests.
3576
3577 2003-04-09  Havoc Pennington  <hp@redhat.com>
3578
3579         * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
3580         I'd checked this in earlier but hadn't.
3581
3582 2003-04-09  Havoc Pennington  <hp@redhat.com>
3583
3584         * bus/dispatch.c (bus_dispatch_test): get a bit further through
3585         the activation test (man this is getting old!)
3586
3587 2003-04-09  Havoc Pennington  <hp@redhat.com>
3588
3589         * test/test-utils.c: use dispatch status function to fix this up
3590
3591         * bus/connection.c (connection_watch_callback): don't dispatch
3592         from here
3593         (connection_timeout_callback): don't dispatch from here
3594         (bus_connections_setup_connection): set the dispatch status function
3595         (bus_connection_disconnected): unset it
3596
3597         * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
3598         used to add a connection to be dispatched
3599         (_dbus_loop_iterate): do the dispatching at the end of each
3600         iteration
3601
3602         * dbus/dbus-connection.c
3603         (dbus_connection_set_dispatch_status_function): new function
3604         allowing us to fix up main loop usage
3605         (_dbus_connection_last_unref): free all the various function
3606         user data
3607         (dbus_connection_dispatch): call the DispatchStatusFunction
3608         whenever this function returns
3609         (dbus_connection_handle_watch): call DispatchStatusFunction
3610         (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
3611         (reply_handler_timeout): call DispatchStatusFunction
3612         (dbus_connection_flush): call DispatchStatusFunction
3613
3614 2003-04-09  Havoc Pennington  <hp@redhat.com>
3615
3616         * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
3617         a memory leak
3618
3619         * bus/dispatch.c (check_service_activated): fix bug in test
3620
3621         * dbus/dbus-mainloop.c (check_timeout): fix this up
3622
3623         * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
3624         verbose output so we can sort out output from different processes,
3625         e.g. in the activation case.
3626
3627 2003-04-08  Colin Walters  <walters@gnu.org>
3628
3629         * bus/bus.c (struct BusContext) [pidfile]: New member, to store
3630         the pid file.
3631         (bus_context_new): Set it.
3632         (bus_context_unref): Use it to delete the pid file.
3633
3634 2003-04-08  Havoc Pennington  <hp@redhat.com>
3635
3636         * test/data/invalid-messages/array-with-mixed-types.message:
3637         regression test that fails for the moment
3638
3639         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
3640         tests for convenience
3641
3642         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
3643         array of nil, it broke things.
3644
3645         * test/data/invalid-messages/array-of-nil.message: regression test
3646
3647         * test/data/valid-messages/array-of-array-of-uint32.message:
3648         happened to write this so added it to suite
3649
3650 2003-04-08  Havoc Pennington  <hp@redhat.com>
3651
3652         * bus/driver.c (bus_driver_handle_acquire_service): init
3653         retval/reply before checking name
3654
3655         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
3656         recursion depth argument
3657
3658         * dbus/dbus-message.h (struct DBusMessageIter): put some padding
3659         in the public struct for future extension
3660
3661         * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
3662         typo
3663
3664         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
3665         message
3666
3667         * doc/dbus-specification.sgml: fix typo
3668
3669 2003-04-08  Alexander Larsson  <alexl@redhat.com>
3670
3671         Implemented recursive types, named types and new-style iters
3672
3673         * bus/driver.c:
3674         * glib/test-thread-client.c: (thread_func):
3675         * glib/test-thread-server.c: (handle_test_message):
3676         * test/test-service.c: (handle_echo):
3677         Update to new api
3678
3679         * dbus/Makefile.am:
3680         * dbus/dbus-dict.c:
3681         * dbus/dbus-dict.h:
3682         * dbus/dbus.h
3683         Remove DBusDict
3684
3685         * dbus/dbus-internals.c: (_dbus_type_to_string):
3686         Update for new types.
3687
3688         * dbus/dbus-marshal.[ch]:
3689         Implement recursive types and the new marshalling format.
3690         Remove hardcoded dict marshalling.
3691         Marshal named types.
3692
3693         * dbus/dbus-message-builder.c:
3694         Add BYTE_ARRAY.
3695         Remove references to old types
3696
3697         * dbus/dbus-message.[ch]:
3698         New non-refcounted iter API that supports recursive iters.
3699         Use iters for appending, including support for recursive
3700         iters.
3701         Add byte and named type support.
3702         Update everything to new marshalling formats.
3703         Add tests for new API.
3704
3705         * dbus/dbus-protocol.h:
3706         Remove old array types.
3707         Add types: BYTE, ARRAY, DICT, NAMED
3708
3709         * dbus/dbus-string.c:
3710         * dbus/dbus-sysdeps.c:
3711         Make parse_double locale safe.
3712
3713         * dbus/dbus-test-main.c:
3714         Call setlocale.
3715
3716         * dbus/dbus-test.c:
3717         Kill dict test
3718
3719         * doc/dbus-specification.sgml:
3720         Update spec
3721
3722         * test/data/incomplete-messages/missing-body.message:
3723         * test/data/invalid-messages/bad-boolean.message:
3724         * test/data/invalid-messages/bad-boolean-array.message:
3725         * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
3726         * test/data/invalid-messages/boolean-has-no-value.message-raw:
3727         * test/data/invalid-messages/too-short-dict.message:
3728         * test/data/valid-messages/dict-simple.message:
3729         * test/data/valid-messages/dict.message:
3730         * test/data/valid-messages/emptiness.message:
3731         * test/data/valid-messages/lots-of-arguments.message:
3732         * test/data/valid-messages/no-padding.message:
3733         * test/data/valid-messages/recursive-types.message:
3734         Add missing NAME fields
3735         Fix up dicts & arrays
3736
3737         * test/data/invalid-messages/dict-with-nil-value.message:
3738         Removed, this is not invalid anymore.
3739
3740         * test/data/valid-messages/recursive-types.message:
3741         Add new test for deeply recursive types.
3742
3743 2003-04-07  Havoc Pennington  <hp@pobox.com>
3744
3745         * bus/driver.c (bus_driver_handle_acquire_service): return an
3746         error if you try to acquire a service that starts with ':'
3747
3748 2003-04-07  Havoc Pennington  <hp@redhat.com>
3749
3750         * doc/dbus-specification.sgml: require that base service names
3751         start with ':' and that the base service is created/deleted
3752         as first and last things a connection does on the bus
3753
3754         * bus/dispatch.c (check_existent_service_activation): lots more
3755         work on the activation test; it doesn't fully pass yet...
3756
3757         * test/test-service.c (main): fix so we don't memleak the
3758         connection to the message bus
3759         (filter_func): accept a message asking us to exit
3760
3761 2003-04-06  Havoc Pennington  <hp@pobox.com>
3762
3763         * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
3764         from Colin Walters
3765
3766         * configure.in: fixes to Qt detection from Colin Walters
3767
3768         * doc/Makefile.am: Only remove generated docbook dirs if they
3769         exist, from Colin Walters
3770
3771         * dbus/dbus-bus.c: change how we set well-known connections to
3772         NULL, so that it works if a single connection is stored in
3773         two well-known array slots.
3774
3775         * test/Makefile.am: remove a lot of stuff that isn't immediately
3776         useful, it's in CVS history if we want it.
3777
3778         * test/test-service.c: use dbus-mainloop instead of that
3779         watch.[hc] crack
3780
3781 2003-04-06  Havoc Pennington  <hp@pobox.com>
3782
3783         * dbus/Makefile.am: split lists of sources into stuff that goes in
3784         the library, util functions that go in the lib and are also used
3785         elsewhere, and util functions that are used in tests/daemon but
3786         don't go in the lib.
3787
3788         * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
3789         here so it can be used in test binaries also
3790
3791 2003-04-06  Havoc Pennington  <hp@pobox.com>
3792
3793         * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
3794         here in the parent process, so we can return an error if it
3795         fails. Also, move some of the code into the child so the parent
3796         is less hosed if we fail midway through.
3797
3798         * bus/bus.c (bus_context_new): move pidfile detection further up
3799         in the function, before we start overwriting sockets and such.
3800
3801         * bus/messagebus.in: adjust this a bit, not sure if it will work.
3802
3803         * configure.in: add --with-system-pid-file and --with-system-socket
3804
3805 2003-04-06  Colin Walters  <walters@verbum.org>
3806
3807         * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
3808
3809         * bus/system.conf.in: Declare a pidfile.
3810
3811         * bus/bus.c (bus_context_new): Test for an existing pid file, and
3812         create one (if appropriate).
3813
3814         * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
3815         (struct BusConfigParser) [pidfile]: New.
3816         (element_type_to_name, merge_included, start_busconfig_child)
3817         (bus_config_parser_end_element, bus_config_parser_content): Handle it.
3818         (bus_config_parser_unref): Free it.
3819         (bus_config_parser_get_pidfile): New function.
3820
3821         * bus/config-parser.h (_dbus_write_pid_file): Prototype.
3822
3823         * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
3824
3825         * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
3826
3827         * dbus/dbus-sysdeps.h: Prototype it.
3828
3829 2003-04-06  Havoc Pennington  <hp@pobox.com>
3830
3831         * bus/bus.c (bus_context_new): print the address in here, rather
3832         than in main(), because we need to do it before forking the daemon
3833
3834         * bus/dispatch.c (send_service_nonexistent_error): set the sender
3835         on the service nonexistent error
3836
3837         * bus/driver.c (bus_driver_handle_acquire_service): set the
3838         sender on the AcquireService reply
3839
3840         * test/data/valid-config-files/debug-allow-all.conf.in: Make test
3841         server also listen on a UNIX socket so services can connect to it.
3842
3843 2003-04-06  Havoc Pennington  <hp@pobox.com>
3844
3845         * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
3846         so it detects deadlocks and also we actually init threads when
3847         debugging.
3848
3849 2003-04-06  Havoc Pennington  <hp@pobox.com>
3850
3851         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
3852         save the domain socket name, and unlink it when we disconnect the
3853         server. Means that at least when we exit normally, we won't leave
3854         a bunch of junk in /tmp
3855
3856         * dbus/dbus-transport-unix.c
3857         (_dbus_transport_new_for_domain_socket): code cleanup (nicer
3858         memory management). (I was making a real change here but then
3859         didn't)
3860
3861 2003-04-06  Havoc Pennington  <hp@pobox.com>
3862
3863         * bus/bus.c (bus_context_new): fix wrong handling of
3864         server_data_slot_unref() in the error case.
3865
3866         * dbus/dbus-internals.h (_dbus_assert): change so it passes
3867         "(condition) != 0" to _dbus_real_assert so that
3868         "_dbus_assert (pointer)" doesn't cause a warning
3869
3870         * bus/main.c (main): accept --print-address option to print out
3871         the message bus address
3872
3873         * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
3874
3875         * dbus/dbus-transport.c (_dbus_transport_open): special error for
3876         "tmpdir" option to unix: address on client side
3877
3878         * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
3879         to unix: address
3880
3881         * configure.in (TEST_SOCKET_DIR): locate a temporary directory
3882         we can use to create sockets in the test suite.
3883
3884         * bus/main.c (signal_handler): on SIGTERM, exit the daemon
3885         cleanly. To be used for testing.
3886
3887         * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
3888
3889         * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
3890
3891         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
3892         handle trying to call this when there's no servers active
3893
3894 2003-04-05  Havoc Pennington  <hp@pobox.com>
3895
3896         * NEWS: update
3897
3898         * configure.in: 0.8
3899
3900 2003-04-05  Havoc Pennington  <hp@pobox.com>
3901
3902         * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
3903         crash on startup. Need to get "try starting the daemon"
3904         in the test suite I guess. ;-)
3905
3906         * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
3907         tracked the number of open connections; it's better done in
3908         application-specific code as you want it to span all servers etc.
3909
3910 2003-04-05  Havoc Pennington  <hp@pobox.com>
3911
3912         * bus/Makefile.am (install-data-hook): add missing DESTDIR,
3913         patch from Colin Walters
3914
3915 2003-04-05  Havoc Pennington  <hp@pobox.com>
3916
3917         * doc/config-file.txt (Elements): fix docs of <auth> to reflect
3918         reality; in fact multiple mechanisms are allowed.
3919
3920         * dbus/dbus-internals.c (_dbus_real_assert)
3921         (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
3922         _dbus_assert_not_reached() into functions, so that they don't show
3923         up in basic block counts for test coverage, and don't use up as
3924         much disk space. Does mean slower execution speed though, so
3925         assumes --disable-asserts is the normal production case.
3926
3927 2003-04-05  Havoc Pennington  <hp@pobox.com>
3928
3929         * test/Makefile.am (dist-hook): also dist *.in files
3930
3931         * NEWS: update
3932
3933         * configure.in: 0.7
3934
3935 2003-04-05  Havoc Pennington  <hp@pobox.com>
3936
3937         * dbus/dbus-string.c: docs warning
3938
3939         * dbus/dbus-spawn.c: missing docs
3940
3941         * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
3942
3943 2003-04-05  Havoc Pennington  <hp@pobox.com>
3944
3945         * bus/loop.c (bus_loop_iterate): fix the timeout code, using
3946         magic from GLib
3947
3948         * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
3949         to -1 once we've reaped the babysitter
3950         (_dbus_babysitter_handle_watch): do as much work as we can, not
3951         just one go of it
3952
3953         * bus/activation.c: add code using DBusBabysitter so that we
3954         handle it when a service fails to start up properly.
3955         (bus_activation_service_created): don't remove the activation
3956         entries as we go, just let them get removed when we free the pending
3957         activation. Unref reply messages after sending them.
3958
3959 2003-04-05  Havoc Pennington  <hp@pobox.com>
3960
3961         * test/decode-gcov.c (main): print per-directory stats in the report
3962
3963         * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
3964
3965 2003-04-05  Havoc Pennington  <hp@pobox.com>
3966
3967         * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
3968
3969         * test/decode-gcov.c: hack up a little program to suck data
3970         out of gcov files. Yes this is sort of silly.
3971
3972         * configure.in: define something in config.h and do an
3973         AM_CONDITIONAL when gcov is enabled
3974
3975 2003-04-04  Havoc Pennington  <hp@redhat.com>
3976
3977         * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
3978         return a "babysitter" object that is used to monitor the status of
3979         the spawned process and reap it when required.
3980
3981         * test/test-segfault.c, test/test-exit.c,
3982         test/test-sleep-forever.c: binaries that do various lame things,
3983         used in the test suite.
3984
3985         * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
3986
3987 2003-04-03  Havoc Pennington  <hp@pobox.com>
3988
3989         * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
3990         in preparation for modifying it, dbus-sysdeps is getting
3991         a bit unmanageable.
3992
3993 2003-04-03  Havoc Pennington  <hp@redhat.com>
3994
3995         * bus/loop.h, bus/loop.c: make the mainloop an object so we can
3996         have multiple ones
3997
3998         * bus/*.[hc]: adapt to mainloop change
3999
4000 2003-04-03  Havoc Pennington  <hp@redhat.com>
4001
4002         * bus/activation.c (load_directory): fix up memleaks
4003         (bus_activation_entry_free): free the entry
4004
4005         * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
4006         we get one from the message bus; fix memleaks.
4007
4008         * dbus/dbus-message.c (dbus_set_error_from_message): new function
4009
4010 2003-04-03  Havoc Pennington  <hp@pobox.com>
4011
4012         * bus/config-parser.c (bus_config_parser_unref): free
4013         list of mechanisms, bug discovered by test suite enhancements
4014         (putting system.conf and session.conf into suite)
4015
4016         * test/Makefile.am, test/test-service.c: add placeholder for a
4017         test service that we'll activate as part of test suite. Doesn't
4018         do anything yet.
4019
4020         * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
4021         setting NULL value, and use system malloc not dbus_malloc()
4022         when we have unavoidable memleakage.
4023
4024         * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
4025         didn't work, and support DBUS_BUS_ACTIVATION.
4026
4027         * bus/activation.c (child_setup): pass our well-known bus type to
4028         the child
4029
4030         * bus/config-parser.c: support <type> to specify well-known type
4031
4032         * doc/dbus-specification.sgml: document the env variables to
4033         locate well-known buses and find service activator
4034
4035 2003-04-02  Havoc Pennington  <hp@redhat.com>
4036
4037         * test/Makefile.am (all-local): add a rule to copy tests to
4038         builddir, so we can have generated tests. Use this to remove the
4039         silly hack for testing system.conf and session.conf. Will use this
4040         shortly to generate .service files pointing to test binaries.
4041
4042 2003-04-02  Havoc Pennington  <hp@redhat.com>
4043
4044         * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
4045         current alloc and needed new length, not max of the doubled
4046         allocation and needed new length. Also, when building tests,
4047         don't do the double-allocation stuff, just realloc every time.
4048
4049 2003-04-02  Havoc Pennington  <hp@redhat.com>
4050
4051         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
4052         in error messages
4053         (_dbus_string_get_dirname): new
4054         (_dbus_sysdeps_test): new
4055         (_dbus_directory_open): include dirnames in error messages
4056
4057         * bus/config-parser.c: interpret <include> and <includedir> and
4058         <servicedir> relative to config file location if the given
4059         filename is not absolute.
4060
4061         * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
4062
4063 2003-04-02  Havoc Pennington  <hp@redhat.com>
4064
4065         * bus/connection.c (bus_transaction_send_error_reply): set sender
4066         service for the error, and unref the reply on success
4067
4068         * bus/activation.c: convert to use BusTransaction so OOM can be
4069         handled correctly
4070         (bus_activation_service_created): set sender of the message
4071
4072 2003-04-01  Havoc Pennington  <hp@redhat.com>
4073
4074         * bus/config-parser.c, bus/bus.c: implement <servicedir> and
4075         <includedir> (at least mostly)
4076
4077         * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
4078         first, then the user ID
4079
4080 2003-04-01  Havoc Pennington  <hp@pobox.com>
4081
4082         * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
4083         function
4084
4085         * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
4086
4087         * dbus/dbus-internals.c (_dbus_dup_string_array): new function
4088
4089         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
4090         socket 0777, and unlink any existing socket.
4091
4092         * bus/bus.c (bus_context_new): change our UID/GID and fork if
4093         the configuration file so specifies; set up auth mechanism
4094         restrictions
4095
4096         * bus/config-parser.c (bus_config_parser_content): add support
4097         for <fork> option and fill in code for <auth>
4098
4099         * bus/system.conf.in: add <fork/> to default configuration,
4100         and limit auth mechanisms to EXTERNAL
4101
4102         * doc/config-file.txt (Elements): add <fork>
4103
4104         * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
4105         (_dbus_change_identity): new function
4106
4107 2003-03-31  Havoc Pennington  <hp@redhat.com>
4108
4109         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
4110         (_dbus_listen_unix_socket): fix off-by-one error in null
4111         termination spotted by Nalin
4112
4113 2003-03-31  Havoc Pennington  <hp@redhat.com>
4114
4115         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
4116         DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
4117         having a real home directory available.
4118
4119 2003-03-31  Havoc Pennington  <hp@redhat.com>
4120
4121         * bus/Makefile.am (install-data-hook): create /var/run/dbus
4122
4123         * bus/messagebus.in: add init script for Red Hat /etc/init.d
4124
4125         * configure.in: add support for specifying a style of init script
4126         to install
4127
4128 2003-03-31  Havoc Pennington  <hp@redhat.com>
4129
4130         Fix some annoying DBusString API and fix all affected code.
4131
4132         * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
4133         max_length argument
4134         (_dbus_string_get_data): change to return string instead of using
4135         an out param
4136         (_dbus_string_get_const_data): ditto
4137         (_dbus_string_get_data_len): ditto
4138         (_dbus_string_get_const_data_len): ditto
4139
4140 2003-03-31  Havoc Pennington  <hp@redhat.com>
4141
4142         * bus/main.c (main): fix up the command line arguments to be nicer
4143
4144 2003-03-31  Havoc Pennington  <hp@redhat.com>
4145
4146         * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
4147         define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
4148         final location that lands in the config file
4149
4150         * bus/config-loader-expat.c (bus_config_load): fix type of
4151         XML_Parser variable
4152
4153         * doc/TODO: remove TODO item for dbus_bus_get()
4154
4155         * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
4156
4157 2003-03-31  Havoc Pennington  <hp@pobox.com>
4158
4159         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
4160         (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
4161         argument since they are always client side
4162
4163         * dbus/dbus-server.c (dbus_server_get_address): new function
4164
4165         * bus/main.c (main): take the configuration file as an argument.
4166
4167         * test/data/valid-config-files/debug-allow-all.conf: new file to
4168         use with dispatch.c tests for example
4169
4170         * bus/test-main.c (main): require test data dir
4171
4172         * bus/bus.c (bus_context_new): change this to take a
4173         configuration file name as argument
4174
4175         * doc/config-file.txt (Elements): add <servicedir>
4176
4177         * bus/system.conf, bus/session.conf: new files
4178
4179         * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
4180         well-known socket if none set
4181
4182         * configure.in: create system.conf and session.conf
4183
4184 2003-03-30  Havoc Pennington  <hp@pobox.com>
4185
4186         * bus/config-parser.c: hacking
4187
4188         * dbus/dbus-memory.c: don't use DBusList for the list of stuff
4189         to shut down, since it could cause weirdness with the DBusList
4190         lock
4191
4192         * dbus/dbus-list.c (_dbus_list_test): add tests for the
4193         link-oriented stack routines
4194         (alloc_link): free the mempool if the first alloc from it fails
4195
4196         * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
4197
4198         * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
4199         from GLib
4200         (_dbus_string_skip_white): new
4201
4202         * doc/config-file.txt (Elements): add <includedir>
4203
4204 2003-03-28  Havoc Pennington  <hp@pobox.com>
4205
4206         * dbus/dbus-string.c (_dbus_string_copy_data_len)
4207         (_dbus_string_copy_data): new functions
4208
4209 2003-03-28  Anders Carlsson  <andersca@codefactory.se>
4210
4211         * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
4212         * dbus/dbus-bus.h:
4213         Add dbus_bus_get.
4214
4215         * dbus/dbus-memory.c:
4216         Fix a doc comment.
4217
4218 2003-03-28  Havoc Pennington  <hp@pobox.com>
4219
4220         * bus/test.c (bus_test_flush_bus): remove the sleep from here,
4221         I think it may have just been superstition. Not sure.
4222
4223         * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
4224         failures that were not being handled.
4225
4226         * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
4227
4228         * dbus/dbus-memory.c: add ability to set number of mallocs in a
4229         row that will fail on out-of-memory.
4230
4231         * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
4232         function for testing out-of-memory handling.
4233
4234         * bus/config-loader-expat.c (memsuite): don't wrap the dbus
4235         allocation functions, they do map exactly to the expat ones.
4236
4237 2003-03-27  Havoc Pennington  <hp@redhat.com>
4238
4239         * bus/config-loader-libxml.c (bus_config_load): add another error
4240         check
4241
4242 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
4243
4244         * doc/TODO:
4245         Add note about automatic service activation.
4246
4247         * doc/dbus-specification.sgml:
4248         Rename the specification and clarify a few things.
4249
4250 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
4251
4252         * Doxyfile.in:
4253         * dbus/dbus-address.c:
4254         * dbus/dbus-dict.c:
4255         * dbus/dbus-marshal.c:
4256         * dbus/dbus-server-debug-pipe.c:
4257         * dbus/dbus-transport-unix.c:
4258         Fix documentation warnings.
4259
4260 2003-03-26  Havoc Pennington  <hp@pobox.com>
4261
4262         * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
4263         after every test so it's quick and easy to see which leaked, and
4264         so we test multiple dbus_shutdown() calls
4265
4266         * configure.in: change configure.in XML stuff to also support
4267         expat
4268
4269         * config-loader-libxml.c: some hacking
4270
4271         * config-loader-expat.c: some hacking
4272
4273         * config-parser.c: some hacking, plus tests
4274
4275 2003-03-25  Havoc Pennington  <hp@redhat.com>
4276
4277         * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
4278
4279         * configure.in: add --with-xml option to specify XML library,
4280         right now only libxml is supported.
4281
4282         * bus/config-loader-libxml.c, config-parser.c: sync some minor
4283         nonworking code between home and work, still just stubs
4284
4285 2003-03-24  Havoc Pennington  <hp@redhat.com>
4286
4287         * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
4288         file
4289
4290         * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
4291         NULL argument for "message" if the error is a well-known one,
4292         fill in a generic message in this case.
4293
4294         * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
4295         favor of DBusError
4296
4297         * bus/test.c (bus_test_flush_bus): add
4298
4299         * bus/policy.c (bus_policy_test): test code stub
4300
4301 2003-03-24  Havoc Pennington  <hp@pobox.com>
4302
4303         * bus/connection.c (bus_connections_setup_connection): set up
4304         the "can this user connect" function, but it always returns
4305         TRUE until we have a config file parser so we can have a config
4306         file that allows connections.
4307
4308 2003-03-23  Havoc Pennington  <hp@pobox.com>
4309
4310         * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
4311         DBUS_BUILD_TESTS, actually alloc/free a block of memory for
4312         the mutex, so we can check for proper memory management
4313         and OOM handling.
4314
4315         * dbus/dbus-dataslot.c: remove the mutex from
4316         DBusDataSlotAllocator and lock it manually when using it,
4317         to simplify fitting it into the global slots framework.
4318
4319         * dbus/dbus-threads.c (init_static_locks): rework how we're
4320         handling global locks so they are easily shut down.
4321
4322         * bus/policy.c (bus_policy_append_rule): fix
4323
4324         * bus/test-main.c (main): check for memleaks
4325
4326         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
4327         test suite check for memleaks
4328
4329         * dbus/dbus-memory.c: add support in test mode for tracking
4330         number of outstanding blocks
4331
4332 2003-03-23  Havoc Pennington  <hp@pobox.com>
4333
4334         * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
4335         policies code
4336
4337         * dbus/dbus-hash.h: add ULONG hash keys
4338
4339         * dbus/dbus-sysdeps.c (_dbus_get_groups): new
4340         (_dbus_get_group_id): new function
4341
4342 2003-03-20  Havoc Pennington  <hp@redhat.com>
4343
4344         * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
4345         new function
4346         (dbus_connection_get_unix_user): new function
4347
4348 2003-03-20  Havoc Pennington  <hp@pobox.com>
4349
4350         * bus/connection.c (bus_connection_send_oom_error): assert that
4351         message has a sender
4352         (connection_execute_transaction): ditto
4353         (bus_connection_preallocate_oom_error): fix to set the sender, and
4354         set recipient to the destination service, not the bus driver
4355
4356         * bus/policy.c: hacking
4357
4358         * dbus/dbus-message.c (dbus_message_service_is): new function
4359         (dbus_message_sender_is): new
4360
4361 2003-03-19  Havoc Pennington  <hp@redhat.com>
4362
4363         * bus/policy.c: start sketching code for policy restrictions on
4364         what connections can do.
4365
4366 2003-03-18  Havoc Pennington  <hp@redhat.com>
4367
4368         * doc/TODO: some notes on high-level todo items. Little nitpick
4369         stuff is all in @todo, so no need to add it here.
4370
4371         * doc/config-file.txt: some notes on how config file might look
4372
4373 2003-03-18  Anders Carlsson  <andersca@codefactory.se>
4374
4375         * configure.in: 0.6
4376
4377         * NEWS: Update.
4378
4379 2003-03-17  Havoc Pennington  <hp@redhat.com>
4380
4381         * dbus/dbus-internals.h: add gcc attributes so that
4382         our printf-style functions warn on bad arguments to
4383         format
4384
4385         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
4386         format bug
4387
4388         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
4389         printf format bug
4390
4391 2003-03-17  Havoc Pennington  <hp@redhat.com>
4392
4393         * bus/test-main.c (main): make it print something as it runs
4394         so make check doesn't look stuck
4395
4396         * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
4397         from CVS, now obsolete
4398
4399 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
4400
4401         * bus/dispatch.c: (bus_dispatch):
4402         Refetch the service name since it may have been reallocated
4403         when dbus_message_set_sender was called.
4404
4405         * dbus/dbus-sysdeps.c: (_dbus_accept):
4406         Add address and address length variables and use them to stop
4407         valgrind from complaining.
4408
4409 2003-03-17  Havoc Pennington  <hp@pobox.com>
4410
4411         All tests pass, no memleaks, no valgrind complaints.
4412
4413         * bus/test.c: refcount handler_slot
4414
4415         * bus/connection.c (bus_connections_new): refcount
4416         connection_data_slot
4417
4418         * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
4419         bytes so that auth scripts pass.
4420
4421         * bus/dispatch.c: init message_handler_slot so it gets allocated
4422         properly
4423
4424         * bus/dispatch.c (message_handler_slot_ref): fix memleak
4425
4426         * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
4427         dealloc server_pipe_hash when no longer used for benefit of
4428         leak checking
4429
4430         * dbus/dbus-auth.c (process_command): memleak fix
4431
4432         * bus/dispatch.c (check_hello_message): memleak fix
4433
4434 2003-03-16  Havoc Pennington  <hp@pobox.com>
4435
4436         * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
4437
4438 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
4439
4440         * bus/activation.c (bus_activation_activate_service): Append
4441         the pending activation entry to the list of pending activations.
4442
4443 2003-03-16  Havoc Pennington  <hp@pobox.com>
4444
4445         * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
4446         connections
4447
4448         * dbus/dbus-address.c (create_entry): fix OOM handling when
4449         failing to alloc entry->method
4450
4451 2003-03-16  Havoc Pennington  <hp@pobox.com>
4452
4453         * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
4454         the watch
4455
4456         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
4457         add some missing dbus_set_result
4458
4459         * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
4460         alloc the DBusMessageHandler
4461
4462         * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
4463         the transport here, since we call this from the finalizer; it
4464         resulted in a double-finalize.
4465
4466         * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
4467         where we tried to use transport->connection that was NULL,
4468         happened when transport was disconnected early on due to OOM
4469
4470         * bus/*.c: adapt to handle OOM for watches/timeouts
4471
4472         * dbus/dbus-transport-unix.c: port to handle OOM during
4473         watch handling
4474
4475         * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
4476         reference to unused bytes instead of a copy
4477
4478         * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
4479         out of memory
4480
4481         * dbus/dbus-connection.c (dbus_connection_handle_watch): return
4482         FALSE on OOM
4483
4484         * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
4485         of memory
4486
4487 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
4488
4489         * doc/dbus-specification.sgml:
4490         Document reply message for ActivateService.
4491
4492 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
4493
4494         * bus/activation.c: (bus_pending_activation_entry_free),
4495         (bus_pending_activation_free), (bus_activation_new),
4496         (bus_activation_unref), (bus_activation_service_created),
4497         (bus_activation_activate_service):
4498         * bus/activation.h:
4499         * bus/bus.c: (bus_context_new):
4500         * bus/desktop-file.c: (new_section):
4501         * bus/driver.c: (bus_driver_send_service_deleted),
4502         (bus_driver_handle_activate_service):
4503         * bus/services.c: (bus_registry_new), (bus_registry_ensure):
4504         * bus/services.h:
4505         * dbus/dbus-connection.c:
4506         (dbus_connection_send_with_reply_and_block):
4507         * dbus/dbus-message.c: (dbus_message_append_args_valist):
4508         * dbus/dbus-protocol.h:
4509         Make activation work better. Now pending activations will be queued
4510         and the daemon won't try to activate services that are already registered.
4511
4512 2003-03-16  Havoc Pennington  <hp@pobox.com>
4513
4514         * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
4515         connection data
4516
4517         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
4518         DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
4519
4520 2003-03-16  Havoc Pennington  <hp@pobox.com>
4521
4522         * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
4523         this. always run the test suite before commit...
4524
4525         * bus/*: adapt to DBusConnection API changes
4526
4527         * glib/dbus-gmain.c: adapt to DBusConnection API changes,
4528         requires renaming stuff to avoid dbus_connection_dispatch name
4529         conflict.
4530
4531         * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
4532         function
4533
4534         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
4535         separate from _dbus_message_loader_return_buffer()
4536
4537         * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
4538         this, because it's now always broken to use; the number of
4539         messages in queue vs. the number still buffered by the message
4540         loader is undefined/meaningless. Should use
4541         dbus_connection_get_dispatch_state().
4542         (dbus_connection_dispatch): rename from
4543         dbus_connection_dispatch_message
4544
4545 2003-03-16  Havoc Pennington  <hp@pobox.com>
4546
4547         * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
4548         implementation
4549
4550 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
4551
4552         * dbus/dbus-connection.c:
4553         (dbus_connection_send_with_reply_and_block):
4554         Decrease connection->n_incoming when removing an entry
4555         from the list.
4556         * dbus/dbus-dict.c: (dbus_dict_entry_free),
4557         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
4558         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
4559         (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
4560         (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
4561         (dbus_dict_get_byte_array):
4562         Handle NULL arrays and strings. Also add support for byte arrays.
4563
4564         * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
4565         (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
4566         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
4567         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
4568         (_dbus_demarshal_dict), (demarshal_and_validate_len),
4569         (_dbus_marshal_validate_arg), (_dbus_marshal_test):
4570         * dbus/dbus-marshal.h:
4571         Add support for marshalling and demarshalling empty arrays and strings.
4572
4573         * dbus/dbus-message.c: (dbus_message_append_args_valist),
4574         (dbus_message_append_string_array),
4575         (dbus_message_iter_get_boolean),
4576         (dbus_message_iter_get_boolean_array),
4577         (dbus_message_iter_get_int32_array),
4578         (dbus_message_iter_get_uint32_array),
4579         (dbus_message_iter_get_double_array),
4580         (dbus_message_iter_get_byte_array),
4581         (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
4582         (check_message_handling):
4583         Add support for getting empty arrays and dicts.
4584
4585         * dbus/dbus-string.c: (_dbus_string_validate_utf8):
4586         Don't do any validation at all for now, that's better than just checking
4587         for ASCII.
4588
4589         * test/data/valid-messages/emptiness.message:
4590         New test message with lots of empty arrays.
4591
4592 2003-03-16  Havoc Pennington  <hp@pobox.com>
4593
4594         * dbus/dbus-connection.c
4595         (_dbus_connection_queue_received_message_link): new function that
4596         can't fail due to OOM
4597
4598         * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
4599         new function pops a message together with a list link
4600         containing it.
4601
4602         * dbus/dbus-transport-unix.c (queue_messages): use new link-based
4603         message queuing functions to avoid needing to alloc memory
4604
4605 2003-03-16  Havoc Pennington  <hp@pobox.com>
4606
4607         Oops - test code was only testing failure of around 30 of the
4608         mallocs in the test path, but it turns out there are 500+
4609         mallocs. I believe this was due to misguided linking setup such
4610         that there was one copy of dbus_malloc etc. in the daemon and one
4611         in the shared lib, and only daemon mallocs were tested. In any
4612         case, the test case now tests all 500+ mallocs, and doesn't pass
4613         yet, though there are lots of fixes in this patch.
4614
4615         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
4616         this so that it doesn't need to allocate memory, since it
4617         has no way of indicating failure due to OOM (and would be
4618         annoying if it did).
4619
4620         * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
4621
4622         * bus/Makefile.am: rearrange to create two self-contained
4623         libraries, to avoid having libraries with overlapping symbols.
4624         that was resulting in weirdness, e.g. I'm pretty sure there
4625         were two copies of global static variables.
4626
4627         * dbus/dbus-internals.c: move the malloc debug stuff to
4628         dbus-memory.c
4629
4630         * dbus/dbus-list.c (free_link): free list mempool if it becomes
4631         empty.
4632
4633         * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
4634
4635         * dbus/dbus-address.c (dbus_parse_address): free list nodes
4636         on failure.
4637
4638         * bus/dispatch.c (bus_dispatch_add_connection): free
4639         message_handler_slot when no longer using it, so
4640         memory leak checkers are happy for the test suite.
4641
4642         * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
4643
4644         * bus/bus.c (new_connection_callback): disconnect in here if
4645         bus_connections_setup_connection fails.
4646
4647         * bus/connection.c (bus_connections_unref): fix to free the
4648         connections
4649         (bus_connections_setup_connection): if this fails, don't
4650         disconnect the connection, just be sure there are no side
4651         effects.
4652
4653         * dbus/dbus-string.c (undo_alignment): unbreak this
4654
4655         * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
4656         leaking
4657         (_dbus_auth_new): fix the order in which we free strings
4658         on OOM failure
4659
4660         * bus/connection.c (bus_connection_disconnected): fix to
4661         not send ServiceDeleted multiple times in case of memory
4662         allocation failure
4663
4664         * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
4665         get the base service name
4666         (dbus_bus_register_client): don't return base service name,
4667         instead store it on the DBusConnection and have an accessor
4668         function for it.
4669         (dbus_bus_register_client): rename dbus_bus_register()
4670
4671         * bus/dispatch.c (check_hello_message): verify that other
4672         connections on the bus also got the correct results, not
4673         just the one sending hello
4674
4675 2003-03-15  Havoc Pennington  <hp@pobox.com>
4676
4677         Make it pass the Hello handling test including all OOM codepaths.
4678         Now to do other messages...
4679
4680         * bus/services.c (bus_service_remove_owner): fix crash when
4681         removing owner from an empty list of owners
4682         (bus_registry_ensure): don't leave service in the list of
4683         a connection's owned services if we fail to put the service
4684         in the hash table.
4685
4686         * bus/connection.c (bus_connection_preallocate_oom_error): set
4687         error flag on the OOM error.
4688
4689         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
4690         handle _dbus_transport_set_connection failure
4691
4692         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
4693         to create watches up front and simply enable/disable them as
4694         needed.
4695         (unix_connection_set): this can now fail on OOM
4696
4697         * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
4698         of enabling/disabling a watch or timeout.
4699
4700         * bus/loop.c (bus_loop_iterate): don't touch disabled
4701         watches/timeouts
4702
4703         * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
4704
4705 2003-03-15  Havoc Pennington  <hp@pobox.com>
4706
4707         * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
4708         write useful test code, after all that futzing around ;-)
4709
4710         Test does not yet pass because we can't handle OOM in
4711         _dbus_transport_messages_pending (basically,
4712         dbus_connection_preallocate_send() does not prealloc the write
4713         watch). To fix this, I think we need to add new stuff to
4714         set_watch_functions, namely a SetEnabled function so we can alloc
4715         the watch earlier, then enable it later.
4716
4717         * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
4718         dbus-memory.c to the convenience lib
4719
4720         * bus/test.c: rename some static functions to keep them clearly
4721         distinct from stuff in connection.c. Handle client disconnection.
4722
4723 2003-03-14  Havoc Pennington  <hp@pobox.com>
4724
4725         * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
4726         transport, tests more of the real codepath. Set up clients
4727         with bus_setup_debug_client.
4728
4729         * bus/test.c (bus_setup_debug_client): function to set up debug
4730         "clients" on the main loop
4731
4732         * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
4733         support
4734
4735         * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
4736         server type
4737
4738         * dbus/dbus-server-debug.c: support a debug server based on pipes
4739
4740         * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
4741         (_dbus_close): new function
4742
4743         * configure.in: check for socketpair
4744
4745 2003-03-14  Havoc Pennington  <hp@redhat.com>
4746
4747         * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
4748         cheesy hack
4749
4750         * dbus/dbus-transport-debug.c: rework this a good bit to be
4751         less complicated. hopefully still works.
4752
4753         * dbus/dbus-server-debug.c (handle_new_client): remove timeout
4754         manually
4755
4756         * glib/dbus-gmain.c (timeout_handler): don't remove timeout
4757         after running it
4758
4759         * dbus/dbus-message.c (dbus_message_copy): rename from
4760         dbus_message_new_from_message, fix it up to copy
4761         all the message fields, add test case
4762
4763         * bus/dispatch.c (bus_dispatch_test): add some more test code,
4764         not quite passing yet
4765
4766 2003-03-14  Havoc Pennington  <hp@pobox.com>
4767
4768         * bus/loop.c (bus_loop_iterate): add this so we can "run loop
4769         until no work remains" in test code. (the large diff here
4770         is just code movement, no actual changes)
4771
4772         * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
4773         1, no point waiting around for test code.
4774         (_dbus_server_debug_accept_transport): unref the timeout
4775         after adding it (right?)
4776
4777         * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
4778
4779 2003-03-13  Havoc Pennington  <hp@redhat.com>
4780
4781         * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
4782         out of memory
4783
4784         * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
4785         of memory
4786
4787         * dbus/dbus-connection.h: Make AddWatchFunction and
4788         AddTimeoutFunction return a bool so they can fail on out-of-memory
4789
4790         * bus/bus.c (bus_context_new): set up timeout handlers
4791
4792         * bus/connection.c (bus_connections_setup_connection): set up
4793         timeout handlers
4794
4795         * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
4796         can fail
4797
4798         * bus/bus.c (bus_context_new): adapt to changes
4799
4800         * bus/connection.c: adapt to changes
4801
4802         * test/watch.c: adapt to DBusWatch changes
4803
4804         * bus/dispatch.c (bus_dispatch_test): started adding this but
4805         didn't finish
4806
4807 2003-03-14  Anders Carlsson  <andersca@codefactory.se>
4808
4809         * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
4810
4811 2003-03-13  Havoc Pennington  <hp@pobox.com>
4812
4813         * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
4814         set up a test framework as for the library
4815
4816 2003-03-12  Havoc Pennington  <hp@pobox.com>
4817
4818         Throughout: purge global variables, introduce BusActivation,
4819         BusConnections, BusRegistry, etc. objects instead.
4820
4821         * bus/bus.h, bus/bus.c: introduce BusContext as a global
4822         message bus object
4823
4824         * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
4825         going to redo this a bit differently I think
4826
4827 2003-03-12  Havoc Pennington  <hp@redhat.com>
4828
4829         Mega-patch that gets the message bus daemon initially handling
4830         out-of-memory. Work still needed. Also lots of random
4831         moving stuff to DBusError instead of ResultCode.
4832
4833         * dbus/dbus-list.c (_dbus_list_length_is_one): new function
4834
4835         * dbus/dbus-connection.c
4836         (dbus_connection_send_with_reply_and_block): use DBusError
4837
4838         * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
4839         DBusResultCode
4840
4841         * dbus/dbus-connection.c (dbus_connection_send): drop the result
4842         code here, as the only failure possible is OOM.
4843
4844         * bus/connection.c (bus_connection_disconnect):
4845         rename bus_connection_disconnected as it's a notification only
4846
4847         * bus/driver.c (bus_driver_handle_acquire_service): don't free
4848         "name" on get_args failure, should be done by get_args;
4849         don't disconnect client for bad args, just return an error.
4850         (bus_driver_handle_service_exists): ditto
4851
4852         * bus/services.c (bus_services_list): NULL-terminate returned array
4853
4854         * bus/driver.c (bus_driver_send_service_lost)
4855         (bus_driver_send_service_acquired): send messages from driver to a
4856         specific client to the client's unique name, not to the broadcast
4857         service.
4858
4859         * dbus/dbus-message.c (decode_header_data): reject messages that
4860         contain no name field
4861         (_dbus_message_get_client_serial): rename to
4862         dbus_message_get_serial and make public
4863         (_dbus_message_set_serial): rename from set_client_serial
4864         (_dbus_message_set_reply_serial): make public
4865         (_dbus_message_get_reply_serial): make public
4866
4867         * bus/connection.c (bus_connection_foreach): allow stopping
4868         iteration by returning FALSE from foreach function.
4869
4870         * dbus/dbus-connection.c (dbus_connection_send_preallocated)
4871         (dbus_connection_free_preallocated_send)
4872         (dbus_connection_preallocate_send): new API for sending a message
4873         without possibility of malloc failure.
4874         (dbus_connection_send_message): rename to just
4875         dbus_connection_send (and same for whole function family)
4876
4877         * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
4878
4879         * dbus/dbus-sysdeps.c (_dbus_exit): new function
4880
4881         * bus/activation.c: handle/return errors
4882
4883         * dbus/dbus-errors.h: add more DBUS_ERROR #define
4884
4885         * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
4886         (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
4887         (_dbus_result_from_errno): move to this file
4888
4889 2003-03-10  Anders Carlsson  <andersca@codefactory.se>
4890
4891         * dbus/dbus-marshal.c:
4892         (_dbus_marshal_set_string):
4893         Take a length argument so we can marshal the correct string
4894         length.
4895
4896         (_dbus_marshal_dict), (_dbus_demarshal_dict),
4897         (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
4898         (_dbus_marshal_test):
4899         * dbus/dbus-marshal.h:
4900         Add support for marshalling and demarshalling dicts.
4901
4902         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
4903         Add support for TYPE DICT.
4904
4905         * dbus/dbus-message.c: (set_string_field):
4906         Adjust header padding.
4907
4908         (dbus_message_append_args_valist), (dbus_message_append_dict),
4909         (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
4910         (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
4911         (check_message_handling), (check_have_valid_message):
4912         * dbus/dbus-message.h:
4913         Add functions for setting and getting dicts.
4914
4915         * dbus/dbus-protocol.h:
4916         Add DBUS_TYPE_DICT.
4917
4918         * dbus/dbus.h:
4919         Add dbus-dict.h
4920
4921         * doc/dbus-specification.sgml:
4922         Add information about how dicts are marshalled.
4923
4924         * test/data/invalid-messages/dict-with-nil-value.message:
4925         * test/data/invalid-messages/too-short-dict.message:
4926         * test/data/valid-messages/dict-simple.message:
4927         * test/data/valid-messages/dict.message:
4928         Add sample messages containing dicts.
4929
4930 2003-03-08  Anders Carlsson  <andersca@codefactory.se>
4931
4932         * dbus/dbus-dict.h: Add DBUS_END_DECLS.
4933
4934 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
4935
4936         * dbus/Makefile.am:
4937         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
4938         (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
4939         (dbus_dict_set_int32), (dbus_dict_set_uint32),
4940         (dbus_dict_set_double), (dbus_dict_set_string),
4941         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
4942         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
4943         (dbus_dict_set_string_array), (_dbus_dict_test):
4944         * dbus/dbus-dict.h:
4945         Fix according to comments from Havoc.
4946
4947 2003-03-06  Michael Meeks  <michael@server.home>
4948
4949         * configure.in: if we don't have kde-config, disable have_qt.
4950
4951 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
4952
4953         * dbus/Makefile.am:
4954         Add dbus-dict.[ch]
4955
4956         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
4957         (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
4958         (dbus_dict_remove), (dbus_dict_get_value_type),
4959         (dbus_dict_get_keys), (dbus_dict_put_boolean),
4960         (dbus_dict_put_int32), (dbus_dict_put_uint32),
4961         (dbus_dict_put_double), (dbus_dict_put_string),
4962         (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
4963         (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
4964         (dbus_dict_put_string_array), (dbus_dict_get_boolean),
4965         (dbus_dict_get_int32), (dbus_dict_get_uint32),
4966         (dbus_dict_get_double), (dbus_dict_get_string),
4967         (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
4968         (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
4969         (dbus_dict_get_string_array), (_dbus_dict_test):
4970         * dbus/dbus-dict.h:
4971         Add DBusDict implementation
4972
4973         * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
4974         * dbus/dbus-test.h:
4975         Add _dbus_dict_test
4976
4977 2003-03-04  Havoc Pennington  <hp@pobox.com>
4978
4979         * test/data/auth/*: adapt to changes
4980
4981         * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
4982         USERID_BASE64 and change USERNAME_BASE64 to put in username not
4983         userid
4984
4985         * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
4986         more stuff from being in a context name, to make the protocol
4987         simpler to deal with
4988
4989         * dbus/dbus-errors.c (dbus_error_has_name): new function
4990         (dbus_error_is_set): new function
4991
4992         * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
4993         with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
4994
4995         * dbus/dbus-connection.c (dbus_connection_flush): also read
4996         messages during a flush operation
4997
4998         * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
4999
5000 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
5001
5002         * configure.in: Check for gethostbyname on Solaris.
5003
5004         * dbus/dbus-transport.c: (_dbus_transport_open):
5005         Remove duplicate "tcp" entry.
5006
5007         * doc/dbus-specification.sgml:
5008         Clarify some things.
5009
5010 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
5011
5012         * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
5013         * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
5014         (_dbus_keyring_test):
5015         * dbus/dbus-md5.c: (_dbus_md5_compute):
5016         * dbus/dbus-sha.c: (_dbus_sha_compute):
5017         Plug memory leaks.
5018
5019 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
5020
5021         * README: Add some things.
5022
5023 2003-03-04  Anders Carlsson  <andersca@codefactory.se>
5024
5025         * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
5026         after case DBUS_TYPE_BOOELAN.
5027
5028 2003-03-02  Havoc Pennington  <hp@pobox.com>
5029
5030         * test/break-loader.c (randomly_set_extreme_ints): add test that
5031         sets really huge and small integers
5032
5033         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
5034         that length of boolean array fits in the string, and that
5035         string has room for boolean value in single-bool case.
5036
5037         * dbus/dbus-message-builder.c (_dbus_message_data_load): add
5038         optional value to "ALIGN" command which is what to fill the
5039         alignment with.
5040
5041         * test/data/valid-messages/no-padding.message: add regression
5042         test for the message padding problem
5043
5044 2003-03-02  Havoc Pennington  <hp@pobox.com>
5045
5046         * dbus/dbus-message.c (decode_header_data): fix to always init
5047         message_padding, from Benjamin Dauvergne
5048
5049 2003-03-02  Havoc Pennington  <hp@pobox.com>
5050
5051         * configure.in: 0.5
5052
5053         * NEWS: Update.
5054
5055 2003-03-01  Joe Shaw  <joe@assbarn.com>
5056
5057         * configure.in: Check for "struct cmsgcred" and try to access its
5058         members for BSD-like unices.
5059
5060         * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
5061         _dbus_read_credentials_unix_socket().
5062         (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
5063         read() for reading the credential byte off the unix socket.  Use
5064         struct cmsgcred on systems that support it.
5065
5066 2003-02-27  Alexander Larsson  <alexl@redhat.com>
5067
5068         * glib/Makefile.am:
5069         * configure.in:
5070         Make gthreads-2.0 dependency optional. Don't build thread test if
5071         its not found.
5072
5073 2003-02-27  Havoc Pennington  <hp@pobox.com>
5074
5075         * dbus/dbus-connection.c
5076         (dbus_connection_send_message_with_reply_and_block): fix doh!
5077         doh! doh! bug that resulted in never removing a reply from the
5078         queue, no wonder we called get_reply_serial so much ;-)
5079
5080         * dbus/dbus-message.c (struct DBusMessage): cache reply serial
5081         and client serial instead of demarshaling them every time
5082
5083 2003-02-27  Havoc Pennington  <hp@pobox.com>
5084
5085         * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
5086         more inlined, using dbus-string-private.h, speeds things up
5087         substantially
5088
5089         * dbus/dbus-string.c (_dbus_string_free): apply align offset
5090         when freeing the string
5091         (_dbus_string_steal_data): fix for align offset
5092         (undo_alignment): new function
5093
5094 2003-02-26  Havoc Pennington  <hp@redhat.com>
5095
5096         All kinds of audit fixes from Owen, plus initial attempt to
5097         handle unaligned memory returned from malloc.
5098
5099         * dbus/dbus-string.c (_dbus_string_init): clamp max length to
5100         leave room for align_offset and nul byte
5101         (fixup_alignment): function to track an align_offset and
5102         ensure real->str is aligned
5103         (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
5104         to allow a nul byte plus align offset
5105         (_dbus_string_lock): fix overflow issue
5106         (_dbus_string_init_const_len): add assertions on sanity of len,
5107         assign allocated to be ALLOCATION_PADDING larger than len
5108         (set_length): fixup the overflow handling
5109         (_dbus_string_get_data_len): fix overflow in assertion
5110         (open_gap): detect overflow in size of gap to be opened
5111         (_dbus_string_lengthen): add overflow check
5112         (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
5113         (_dbus_string_append): add overflow check
5114         (_dbus_string_append_unichar): overflow
5115         (_dbus_string_delete): fix overflow in assertion
5116         (_dbus_string_copy_len): overflow in assertion
5117         (_dbus_string_replace_len): overflows in assertions
5118         (_dbus_string_find): change to implement in terms of
5119         _dbus_string_find_to
5120         (_dbus_string_find_to): assorted fixage
5121         (_dbus_string_equal_c_str): assert c_str != NULL,
5122         fix logic so the function works
5123         (_dbus_string_ends_with_c_str): fix overflow thingy
5124         (_dbus_string_base64_encode): overflow fix
5125         (_dbus_string_validate_ascii): overflow
5126         (_dbus_string_validate_nul): overflow
5127
5128 2003-02-26  Havoc Pennington  <hp@redhat.com>
5129
5130         * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
5131
5132 2003-02-26  Alexander Larsson  <alexl@redhat.com>
5133
5134         * configure.in:
5135         Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
5136
5137         * dbus/dbus-connection.c:
5138         * dbus/dbus-connection.h:
5139         Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
5140         Add dbus_connection_set_wakeup_main_function and use it when queueing
5141         incoming and outgoing messages.
5142
5143
5144         * dbus/dbus-dataslot.c:
5145         Threadsafe usage of DBusDataSlotAllocator
5146
5147         * dbus/dbus-message.c: (dbus_message_get_args_iter):
5148         dbus_new can fail.
5149
5150         * dbus/dbus-server-unix.c:
5151         Add todo comment
5152
5153         * glib/dbus-gmain.c:
5154         Implement the new wakeup functions for glib.
5155
5156         * glib/Makefile.am:
5157         * glib/test-thread-client.c:
5158         * glib/test-thread-server.c:
5159         * glib/test-thread.h:
5160         Initial cut at some thread test code. Not really done yet.
5161
5162 2003-02-26  Havoc Pennington  <hp@pobox.com>
5163
5164         * dbus/dbus-connection.c
5165         (dbus_connection_send_message_with_reply_and_block): fix crash
5166         where we ref'd the outgoing message instead of the returned reply
5167
5168         * dbus/dbus-transport-unix.c (do_authentication): check read watch
5169         at the end of this function, so if we didn't need to read for
5170         authentication, we reinstall it for receiving messages
5171
5172         * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
5173         a NULL sender for peer-to-peer case
5174
5175         * dbus/dbus-transport-unix.c (check_read_watch): handle
5176         !authenticated case correctly
5177
5178         * glib/dbus-gmain.c: add support for DBusServer
5179
5180         * dbus/dbus-server.c: add data slot support
5181
5182         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
5183         return values and handle errors
5184
5185         * dbus/dbus-dataslot.c: factor out the data slot stuff from
5186         DBusConnection
5187
5188         * Doxyfile.in (INPUT): add glib subdir
5189
5190         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
5191         setup_with_g_main instead of hookup_with_g_main; write docs
5192
5193 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
5194
5195         * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
5196         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
5197         * dbus/dbus-message.c: (dbus_message_append_boolean),
5198         (dbus_message_append_boolean_array),
5199         (dbus_message_get_args_valist), (_dbus_message_test):
5200         * dbus/dbus-message.h:
5201         * doc/dbus-specification.sgml:
5202         Various fixes as pointed out by Havoc.
5203
5204         * test/data/invalid-messages/bad-boolean-array.message:
5205         * test/data/invalid-messages/bad-boolean.message:
5206         Add invalid boolean value test cases.
5207
5208 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
5209
5210         * dbus/dbus-internals.c: (_dbus_type_to_string):
5211         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
5212         (_dbus_marshal_validate_arg):
5213         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
5214         * dbus/dbus-message.c: (dbus_message_append_args_valist),
5215         (dbus_message_append_boolean), (dbus_message_append_boolean_array),
5216         (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
5217         (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
5218         (dbus_message_iter_get_double),
5219         (dbus_message_iter_get_boolean_array), (message_iter_test):
5220         * dbus/dbus-message.h:
5221         * dbus/dbus-protocol.h:
5222         * doc/dbus-specification.sgml:
5223         * test/data/valid-messages/lots-of-arguments.message:
5224         Add support for boolean and boolean array types.
5225
5226 2003-02-23  Havoc Pennington  <hp@pobox.com>
5227
5228         * dbus/dbus-keyring.c: finish most of this implementation and
5229         simple unit test
5230
5231         * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
5232         these barf if the error isn't cleared to NULL
5233
5234         * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
5235         (_dbus_create_directory): new function
5236
5237         * dbus/dbus-errors.c (dbus_set_error): fix warning
5238
5239         * dbus/dbus-string.c (_dbus_string_hex_encode): new function
5240         (_dbus_string_hex_decode): new function
5241         (test_hex_roundtrip): test code
5242
5243         * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
5244
5245         * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
5246
5247         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
5248         the save-to-temp/rename trick to atomically write the new file
5249         (_dbus_string_parse_uint): new function
5250
5251 2003-02-22  Havoc Pennington  <hp@pobox.com>
5252
5253         * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
5254
5255 2003-02-22  Havoc Pennington  <hp@pobox.com>
5256
5257         * dbus/dbus-message.c (dbus_message_iter_get_string_array):
5258         (dbus_message_iter_get_byte_array): Fix up doxygen warnings
5259
5260         * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
5261
5262         * dbus/test/data/sha-1: add US government test suite for SHA-1
5263
5264 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
5265
5266         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
5267         Make string arrays NULL-terminated.
5268
5269         * dbus/dbus-memory.c: (dbus_free_string_array):
5270         * dbus/dbus-memory.h:
5271         New function for freeing NULL-terminated string arrays.
5272
5273         * dbus/dbus-message-builder.c: (append_quoted_string),
5274         (_dbus_message_data_load):
5275         Add support for array types.
5276
5277         * dbus/dbus-message.c: (check_message_handling):
5278         Add more types as test cases.
5279
5280         * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
5281         (_dbus_string_parse_double):
5282         Add the start offset to the end offset.
5283
5284         * test/data/valid-messages/lots-of-arguments.message:
5285         New test message with lots of arguments.
5286
5287 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
5288
5289         * dbus/dbus-message.c: (dbus_message_append_nil),
5290         (dbus_message_append_int32), (dbus_message_append_uint32),
5291         (dbus_message_append_double), (dbus_message_append_string),
5292         (dbus_message_append_int32_array),
5293         (dbus_message_append_uint32_array),
5294         (dbus_message_append_double_array),
5295         (dbus_message_append_byte_array),
5296         (dbus_message_append_string_array):
5297         Fix all out-of-memory handling in these functions.
5298
5299 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
5300
5301         * dbus/dbus-message.c: (dbus_message_append_nil):
5302         Fix a silly.
5303
5304 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
5305
5306         * dbus/dbus-message.c: (dbus_message_append_args_valist),
5307         (dbus_message_append_nil), (dbus_message_append_int32_array),
5308         (dbus_message_append_uint32_array),
5309         (dbus_message_append_double_array),
5310         (dbus_message_append_byte_array),
5311         (dbus_message_append_string_array), (dbus_message_get_args_valist),
5312         (dbus_message_iter_get_int32_array),
5313         (dbus_message_iter_get_uint32_array),
5314         (dbus_message_iter_get_double_array),
5315         (dbus_message_iter_get_byte_array),
5316         (dbus_message_iter_get_string_array):
5317
5318         * dbus/dbus-message.h:
5319         Add functions for appending and getting arrays.
5320
5321 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
5322
5323         * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
5324         element size at least 8 bytes, fixes mempool tests on
5325         64-bit machines.
5326
5327 2003-02-20  Alexander Larsson  <alexl@redhat.com>
5328
5329         * dbus/dbus-transport-unix.c (unix_do_iteration):
5330         Unlock the connection mutex during a blocking select call.
5331         Add todo about how we need a way to wake up the select.
5332
5333         * dbus/dbus-connection-internal.h:
5334         * dbus/dbus-connection.c:
5335         Add _dbus_connection_lock and _dbus_connection_unlock.
5336
5337 2003-02-19  Havoc Pennington  <hp@pobox.com>
5338
5339         * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
5340         Doxyfile.in, not Doxyfile
5341
5342         * dbus/dbus-keyring.c: do some hacking on this
5343
5344         * dbus/dbus-sysdeps.c (_dbus_delete_file): new
5345
5346         * dbus/dbus-errors.c (dbus_set_error_const): do not call
5347         dbus_error_init
5348         (dbus_set_error): remove dbus_error_init, check for message ==
5349         NULL *before* we sprintf into it, and add @todo about including
5350         system headers in this file
5351
5352         * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
5353
5354         * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
5355
5356         * dbus/dbus-sysdeps.c (get_user_info): break this function out to
5357         get various bits of user information based on either username
5358         or user ID
5359         (_dbus_homedir_from_username): new function
5360
5361 2003-02-19  Anders Carlsson  <andersca@codefactory.se>
5362
5363         * configure.in:
5364         Add check for nonposix getpwnam_r
5365
5366         * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
5367         Align the pool element size to a sizeof (void *) boundary.
5368
5369         * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
5370         (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
5371         General Solaris fixes.
5372
5373         * test/data/valid-messages/simplest-manual.message:
5374         Explicitly state that we want little-endian packing.
5375
5376 2003-02-19  Mikael Hallendal  <micke@codefactory.se>
5377
5378         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
5379
5380         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
5381         Added to create a transport connecting using a tcp/ip socket.
5382
5383         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
5384         to a tcp socket at given host and port.
5385         (_dbus_listen_tcp_socket): added to listen on tcp socket for given
5386         hostname and port.
5387
5388         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
5389
5390         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
5391         Added to create a server listening on a TCP/IP socket.
5392
5393 2003-02-19  Havoc Pennington  <hp@pobox.com>
5394
5395         Throughout: mop up all the Doxygen warnings and undocumented
5396         stuff.
5397
5398         * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
5399         to search any paths.
5400
5401         * dbus/dbus-threads.c: move global mutex initializers to
5402         dbus-internals.h, multiple prototypes was confusing doxygen
5403         besides being kind of ugly
5404
5405         * Doxyfile (PREDEFINED): have Doxygen define
5406         DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
5407         docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
5408         (do not abuse the feature! it's for stuff like the autogenerated
5409         macros in dbus-md5.c, not just for things you don't feel like
5410         documenting...)
5411
5412 2003-02-18  Havoc Pennington  <hp@pobox.com>
5413
5414         * dbus/dbus-string.c (_dbus_string_zero): new function
5415
5416         * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
5417         wrap it in some dbus-friendly API
5418
5419         * dbus/dbus-types.h: add 16-bit types
5420
5421 2003-02-18  Joe Shaw  <joe@assbarn.com>
5422
5423         * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
5424         credentials from our currently running process.
5425         (get_word): Fix a buglet where we were copying the entire length
5426         instead of relative to our position.
5427
5428         * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
5429         keys on the stack... it's 640k of data.
5430
5431         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
5432         read the credentials byte off the socket, even if we don't have
5433         SO_PEERCRED.
5434         (_dbus_poll): Implement poll() using select() for systems which
5435         don't have it.
5436
5437         * glib/test-dbus-glib.c (main): Print out an error if no
5438         parameters are given.
5439
5440         * test/data/auth/fallback.auth-script: Added.  Tests that a client
5441         can fallback to a secondary auth mechanism if the first fails.
5442
5443 2003-02-18  Havoc Pennington  <hp@pobox.com>
5444
5445         * AUTHORS: add Alex
5446
5447 2003-02-17  Havoc Pennington  <hp@pobox.com>
5448
5449         * doc/dbus-specification.sgml: lots of cosmetic
5450         cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
5451         env variable to DBUS_BUS_ADDRESS, s/client/application/,
5452         s/server/bus/ (except in authentication section). Add a section
5453         "Message Bus Message Routing"
5454
5455 2003-02-17  Anders Carlsson  <andersca@codefactory.se.>
5456
5457         Release 0.4
5458
5459         * NEWS: Update
5460
5461 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
5462
5463         * doc/dbus-specification.sgml:
5464         Specification updates.
5465
5466 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
5467
5468         * bus/activation.c: (bus_activation_init), (child_setup),
5469         (bus_activation_activate_service):
5470         * bus/activation.h:
5471         * bus/main.c: (main):
5472         Set DBUS_ADDRESS environment variable.
5473
5474         * dbus/dbus-errors.c: (dbus_set_error):
5475         Don't use va_copy since that's a C99 feature.
5476
5477         * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
5478         (_dbus_spawn_async):
5479         * dbus/dbus-sysdeps.h:
5480         Add child_setup_func to _dbus_spawn_async.
5481
5482         * doc/dbus-specification.sgml:
5483         Update specification.
5484
5485         * test/spawn-test.c: (setup_func), (main):
5486         Fix test.
5487
5488 2003-02-17  Alexander Larsson  <alexl@redhat.com>
5489
5490         * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
5491         Added todo.
5492
5493 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
5494
5495         * doc/.cvsignore:
5496         * doc/Makefile.am:
5497         * doc/dbus-test-plan.sgml:
5498         Add test plan document.
5499
5500         * test/Makefile.am:
5501         Fix distcheck.
5502
5503 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
5504
5505         * dbus/dbus-message.c: (decode_header_data),
5506         (_dbus_message_loader_return_buffer):
5507         Set the header padding amount when loading a message.
5508
5509 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
5510
5511         * bus/dispatch.c: (send_one_message):
5512         Only send broadcast messages to registered connections.
5513
5514         * dbus/dbus-message.c: (dbus_message_name_is):
5515         * dbus/dbus-message.h:
5516         New convenience function.
5517
5518         * dbus/dbus-transport-debug.c: (do_reading):
5519         Only dispatch one message per run.
5520
5521         * test/Makefile.am:
5522         * test/bus-test.c: (new_connection_callback), (die),
5523         (test_hello_client1_handler), (test_hello_client2_handler),
5524         (test_hello_replies), (main):
5525
5526         * test/bus-test-loop.[ch]:
5527         Add these.
5528
5529 2003-02-16  Havoc Pennington  <hp@pobox.com>
5530
5531         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
5532         backward conditional
5533
5534 2003-02-16  Alexander Larsson  <alexl@redhat.com>
5535
5536         * dbus/dbus-connection.c:
5537         Implement sent_message_with_reply. (with_reply_and block is still
5538         busted).
5539         Made dispatch_message not lose message if OOM.
5540
5541         * dbus/dbus-errors.h:
5542         Add NoReply error (for reply timeouts).
5543
5544 2003-02-16  Alexander Larsson  <alexl@redhat.com>
5545
5546         * dbus/dbus-hash.c (_dbus_hash_table_unref):
5547         Actually free keys and values when destroying hashtable.
5548
5549 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
5550
5551         * dbus/dbus-auth.c: (client_try_next_mechanism):
5552         Plug a leak.
5553
5554         * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
5555         Return TRUE if there's no thread implementation around.
5556
5557         * glib/dbus-gmain.c: (free_source),
5558         (dbus_connection_hookup_with_g_main):
5559         Make sure to remove the GSource when the connection is finalized.
5560
5561 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
5562
5563         * bus/dispatch.c: (bus_dispatch_message_handler):
5564         * dbus/dbus-errors.h:
5565         Return an error if someone tries to send a message to a service
5566         that doesn't exist.
5567
5568 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
5569
5570         * bus/activation.c: (load_directory), (bus_activation_init),
5571         (bus_activation_activate_service):
5572         * bus/activation.h:
5573         * bus/driver.c:
5574         (bus_driver_handle_activate_service), (bus_driver_handle_message):
5575         More work on the activation handling.
5576
5577         * dbus/dbus-errors.h:
5578         Add some error messages
5579
5580         * dbus/dbus-message.c: (dbus_message_new_error_reply):
5581         * dbus/dbus-message.h:
5582         New function that creates an error message.
5583
5584         * dbus/dbus-protocol.h:
5585         Add ACTIVATE_SERVER message.
5586
5587         * dbus/dbus-server-unix.c: (unix_handle_watch),
5588         (_dbus_server_new_for_domain_socket):
5589         Call _dbus_fd_set_close_on_exec.
5590
5591         * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
5592         (_dbus_spawn_async), (_dbus_disable_sigpipe),
5593         (_dbus_fd_set_close_on_exec):
5594         * dbus/dbus-sysdeps.h:
5595         Add _dbus_fd_set_close_on exec function. Also add function that checks
5596         that all open fds are set to close-on-exec and warns otherwise.
5597
5598         * dbus/dbus-transport-unix.c:
5599         (_dbus_transport_new_for_domain_socket):
5600         Call _dbus_fd_set_close_on_exec.
5601
5602 2003-02-16  Havoc Pennington  <hp@pobox.com>
5603
5604         * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
5605         allow people to avoid setting SIGPIPE to SIG_IGN
5606         (_dbus_connection_new_for_transport): disable SIGPIPE unless
5607         we've been asked not to
5608
5609 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
5610
5611         * dbus/dbus-list.c: (_dbus_list_append_link),
5612         (_dbus_list_prepend_link):
5613         * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
5614         (dbus_realloc):
5615         Warning fixes.
5616
5617 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
5618
5619         * bus/Makefile.am:
5620         * bus/activation.c: (bus_activation_entry_free),
5621         (add_desktop_file_entry), (load_directory), (bus_activation_init):
5622         * bus/activation.h:
5623         * bus/main.c: (main):
5624         Add simple activation support, doesn't work yet though.
5625
5626 2003-02-15   Zack Rusin  <zack@kde.org>
5627
5628         * qt/dbus-qthread.cpp:  small casting fix
5629
5630 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
5631
5632         * dbus/dbus-errors.c: (dbus_set_error):
5633         * dbus/dbus-errors.h:
5634         Add a few errors and make dbus_set_error void.
5635
5636         * dbus/dbus-sysdeps.c:
5637         (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
5638         (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
5639         * dbus/dbus-sysdeps.h:
5640         Add _dbus_spawn_async.
5641
5642         * test/spawn-test.c: (main):
5643         Test for _dbus_spawn_async.
5644
5645 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
5646
5647         * dbus/dbus-internals.h:
5648         Fix build without tests.
5649
5650         * dbus/dbus-list.c: (alloc_link):
5651         Fix a segfault when a malloc fails.
5652
5653         * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
5654         (dbus_malloc0), (dbus_realloc):
5655         Add support for malloc debugging.
5656
5657 2003-02-15  Alexander Larsson  <alexl@redhat.com>
5658
5659         * dbus/dbus-threads.c:
5660         * dbus/dbus-threads.h:
5661         Add condvars. Remove static mutext from API.
5662         Implement static mutexes by initializing them from threads_init.
5663
5664         * glib/dbus-gthread.c:
5665         * qt/dbus-qthread.cpp:
5666         Update with the thread api changes.
5667
5668
5669         * dbus/dbus-list.c:
5670         * dbus/dbus-list.h:
5671         Turn StaticMutex into normal mutex + init function.
5672         Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
5673         _dbus_list_append_link, _dbus_list_prepend_link
5674
5675
5676         * dbus/dbus-sysdeps.c:
5677         * dbus/dbus-sysdeps.h:
5678         New type dbus_atomic_t, and new functions _dbus_atomic_inc,
5679         _dbus_atomic_dec. Only slow fallback implementation at the moment.
5680
5681         * dbus/dbus-protocol.h:
5682         Add DBUS_MESSAGE_LOCAL_DISCONNECT define
5683
5684         * dbus/dbus-message.c:
5685         Make ref/unref atomic.
5686         Fix some docs.
5687
5688         * dbus/dbus-connection-internal.h:
5689         * dbus/dbus-connection.c:
5690         * dbus/dbus-connection.h:
5691         Make threadsafe.
5692         Change _peek to _borrow,_return & _steal_borrowed.
5693         Change disconnect callback to event.
5694         Make dbus_connection_dispatch_messages reentrant.
5695
5696         * dbus/dbus-transport.c:
5697         Don't ref the connection on calls to the transport
5698         implementation.
5699
5700         * dbus/dbus-message-handler.c:
5701         Make threadsafe.
5702
5703         * glib/dbus-gmain.c:
5704         Don't use peek_message anymore
5705
5706         * test/Makefile.am:
5707         * test/debug-thread.c:
5708         * test/debug-thread.h:
5709         Simple thread implementation that asserts() on deadlocks in
5710         single-threaded code.
5711
5712         * test/bus-test.c:
5713         (main) Call debug_threads_init.
5714
5715         * test/watch.c:
5716         Use disconnect message instead of disconnect callback.
5717
5718         * bus/connection.c:
5719         * bus/connection.h:
5720         Don't call dbus_connection_set_disconnect_function. Instead export
5721         bus_connection_disconnect.
5722
5723         * bus/dispatch.c:
5724         Call bus_connection_disconnect when we get a disconnected message.
5725
5726 2003-02-15  Havoc Pennington  <hp@pobox.com>
5727
5728         * dbus/dbus-message.c (dbus_message_new): fool around with the
5729         docs
5730
5731 2003-02-14  Havoc Pennington  <hp@pobox.com>
5732
5733         * dbus/dbus-mempool.c: fail if the debug functions so indicate
5734
5735         * dbus/dbus-memory.c: fail if the debug functions indicate we
5736         should
5737
5738         * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
5739         (_dbus_decrement_fail_alloc_counter): debug functions to
5740         simulate memory allocation failures
5741
5742 2003-02-14  Havoc Pennington  <hp@pobox.com>
5743
5744         * dbus/dbus-errors.h (struct DBusError): add a word of padding
5745         to DBusError
5746
5747 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5748
5749         * bus/driver.c: (bus_driver_handle_hello):
5750         * bus/driver.h:
5751         * bus/services.c: (bus_service_lookup):
5752         Reorder message sending so we get a more sane order.
5753
5754         * test/bus-test.c: (message_handler):
5755         Fix tyop.
5756
5757 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5758
5759         * bus/driver.c: (bus_driver_send_service_deleted),
5760         (bus_driver_send_service_created), (bus_driver_send_service_lost),
5761         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
5762         (bus_driver_send_welcome_message),
5763         (bus_driver_handle_list_services),
5764         (bus_driver_handle_acquire_service),
5765         (bus_driver_handle_service_exists):
5766         * dbus/dbus-bus.c: (dbus_bus_register_client),
5767         (dbus_bus_acquire_service), (dbus_bus_service_exists):
5768         * dbus/dbus-errors.c: (dbus_result_to_string):
5769         * dbus/dbus-errors.h:
5770         * dbus/dbus-message.c: (dbus_message_append_args),
5771         (dbus_message_append_args_valist), (dbus_message_get_args),
5772         (dbus_message_get_args_valist), (dbus_message_get_args_iter),
5773         (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
5774         (dbus_message_iter_get_byte_array),
5775         (dbus_message_iter_get_string_array), (message_iter_test),
5776         (check_message_handling), (_dbus_message_test):
5777         * dbus/dbus-message.h:
5778         * test/bus-test.c: (main):
5779         Change fields to arguments in messages, so that they won't be
5780         confused with header fields.
5781
5782         * glib/test-dbus-glib.c: (main):
5783         Remove append_fields from hello message.
5784
5785 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5786
5787         * dbus/dbus-errors.c:
5788         * dbus/dbus-message.c:
5789         * dbus/dbus-string.c:
5790         Documentation fixes.
5791
5792 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5793
5794         * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
5795         (remove_timeout):
5796         Implement support for timeouts in dbus-glib.
5797
5798 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5799
5800         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
5801         * dbus/dbus-message.c: (process_test_subdir):
5802         * test/break-loader.c: (find_breaks_based_on):
5803         Plug some memory leaks.
5804
5805 2003-02-13  Richard Hult  <rhult@codefactory.se>
5806
5807         * bus/main.c: Fix build.
5808
5809         * dbus/dbus-errors.h:
5810         * dbus/dbus-errors.c: Fix copyright for Anders.
5811
5812 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5813
5814         * bus/Makefile.am:
5815         Add utils.[ch]
5816
5817         * bus/connection.c: (bus_connection_foreach):
5818         Fix a warning.
5819
5820         * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
5821         (unescape_string), (new_section), (parse_section_start),
5822         (parse_key_value), (report_error), (bus_desktop_file_load),
5823         (bus_desktop_file_get_string):
5824         * bus/desktop-file.h:
5825         Use DBusError for error reporting.
5826
5827         * bus/dispatch.c: (send_one_message),
5828         (bus_dispatch_message_handler):
5829         * bus/driver.c: (bus_driver_send_service_deleted),
5830         (bus_driver_send_service_created), (bus_driver_send_service_lost),
5831         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
5832         (bus_driver_send_welcome_message),
5833         (bus_driver_handle_list_services),
5834         (bus_driver_handle_acquire_service),
5835         (bus_driver_handle_service_exists):
5836         * bus/loop.c: (bus_loop_run):
5837         * bus/main.c:
5838         Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
5839
5840         * bus/utils.c: (bus_wait_for_memory):
5841         * bus/utils.h:
5842         New files with general utility functions.
5843
5844         * dbus/dbus-internals.h:
5845         Remove _DBUS_HANDLE_OOM.
5846
5847 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5848
5849         * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
5850         (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
5851         * dbus/dbus-errors.h:
5852         Add DBusError structure.
5853
5854 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5855
5856         * test/data/valid-messages/standard-acquire-service.message:
5857         * test/data/valid-messages/standard-hello.message:
5858         * test/data/valid-messages/standard-list-services.message:
5859         * test/data/valid-messages/standard-service-exists.message:
5860         Add some standard messages.
5861
5862 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5863
5864         * bus/driver.c: (bus_driver_send_welcome_message),
5865         (bus_driver_handle_list_services),
5866         (bus_driver_handle_acquire_service),
5867         (bus_driver_handle_service_exists), (bus_driver_handle_message):
5868         Update for API changes in libdbus.
5869
5870         * dbus/dbus-message.c: (dbus_message_new_reply):
5871         * dbus/dbus-message.h:
5872         Remove the name argument. The spec states that replies shouldn't
5873         have a name.
5874
5875 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
5876
5877         * bus/desktop-file.c: (parse_section_start), (parse_key_value),
5878         (report_error), (bus_desktop_file_load), (lookup_section),
5879         (lookup_line), (bus_desktop_file_get_raw),
5880         (bus_desktop_file_get_string):
5881         * bus/desktop-file.h:
5882         Some fixes, and new functions for getting a key value from a section.
5883
5884 2003-02-13  Havoc Pennington  <hp@pobox.com>
5885
5886         * test/data/auth/fail-after-n-attempts.auth-script: new test
5887
5888         * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
5889         reject the client.
5890
5891 2003-02-13  Havoc Pennington  <hp@pobox.com>
5892
5893         * dbus/dbus-auth.c (handle_server_data_external_mech): args to
5894         dbus_credentials_match were backward
5895
5896         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
5897         NO_CREDENTIALS and ROOT_CREDENTIALS
5898
5899         * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
5900         into here. Never process more commands after we've reached an
5901         end state; store further data as unused bytes.
5902
5903         * test/data/auth/*: add more auth tests
5904
5905         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
5906         command to match exact string and EXPECT_UNUSED to match unused
5907         bytes
5908
5909         * test/Makefile.am (dist-hook): fix to dist all the test stuff
5910
5911 2003-02-12  Havoc Pennington  <hp@pobox.com>
5912
5913         * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
5914         \r off of popped lines
5915
5916         * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
5917         scripts
5918
5919         * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
5920         SEND, append \r\n
5921
5922 2003-02-12  Havoc Pennington  <hp@pobox.com>
5923
5924         * dbus/Makefile.am: remove break-loader from the build, since it
5925         moved.
5926
5927         * configure.in: add --enable-gcov to turn on coverage profiling
5928         flags and disable optimization
5929
5930 2003-02-10  Havoc Pennington  <hp@pobox.com>
5931
5932         * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
5933         initial cut at test framework for DBusAuth from laptop.
5934         Doesn't quite work yet but it compiles and I need to get
5935         it off the 266mhz laptop. ;-)
5936
5937         * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
5938         fix a memleak in error case
5939
5940 2003-02-12  Anders Carlsson  <andersca@codefactory.se>
5941
5942         * bus/Makefile.am:
5943         * bus/desktop-file.c:
5944         * bus/desktop-file.h:
5945         Add a desktop file parser.
5946
5947 2003-02-11  Zack Rusin  <zack@kde.org>
5948
5949         * qt/message.[h|cpp]: sample implementation
5950         of the KDE wrapper for DBusMessage
5951
5952 2003-02-09  Zack Rusin  <zack@kde.org>
5953
5954         * test/bus-test.c: make_it_compile
5955         * doc/dbus-specification.sgml: minimal semantic fix
5956
5957 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
5958
5959         Release 0.3
5960
5961         * NEWS: Update
5962
5963 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
5964
5965         * dbus/Makefile.am:
5966         * dbus/dbus-break-loader.c:
5967         * test/Makefile.am:
5968         * test/break-loader.c:
5969         Move dbus-break-loader to test/ and rename it to break-loader.
5970
5971 2003-02-02  Havoc Pennington  <hp@pobox.com>
5972
5973         * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
5974         for code to manage cookies in your home directory
5975
5976         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
5977
5978         * dbus/dbus-auth.c (get_state): impose a maximum number of tries
5979         to authenticate, then disconnect the client.
5980
5981 2003-02-03  Alexander Larsson  <alexl@redhat.com>
5982
5983         * dbus/dbus-message.c (dbus_message_append_fields):
5984         Correct docs.
5985
5986 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
5987
5988         * doc/dbus-specification.sgml:
5989         Update address format section.
5990
5991 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
5992
5993         * test/Makefile.am:
5994         * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
5995         (message_handler), (new_connection_callback), (loop_quit),
5996         (loop_run), (main):
5997         Add bus test.
5998
5999 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
6000
6001         * bus/driver.c: (bus_driver_handle_service_exists):
6002         Simplify the code a bit.
6003
6004         * dbus/dbus-bus.c: (dbus_bus_service_exists):
6005         Fix a silly.
6006
6007 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
6008
6009         * bus/Makefile.am:
6010         Add libdbus-daemon.la and link to it.
6011
6012 2003-02-01  James Willcox  <jwillcox@gnome.org>
6013
6014         * bus/driver.c: (bus_driver_handle_own_service):
6015         Actually include the service reply code in the message.
6016
6017 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
6018
6019         * bus/driver.c: (bus_driver_handle_service_exists):
6020         Don't unref the incoming message.
6021
6022 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
6023
6024         * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
6025
6026 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
6027
6028         * dbus/dbus-server.c: (dbus_server_listen):
6029         * dbus/dbus-transport.c: (_dbus_transport_open):
6030         ifdef out the calls to the debug transport and server.
6031
6032 2003-02-02  Alexander Larsson  <alexl@redhat.com>
6033
6034         * dbus/dbus-watch.c (dbus_watch_get_flags):
6035         Add note in the docs that ERROR or HANGUP won't be returned
6036         and are assumed always on.
6037
6038         * glib/dbus-gmain.c (add_watch):
6039         Always add IO_ERR | IO_HUP
6040
6041         * dbus/dbus-message.h:
6042         Add semicolon after dbus_message_iter_get_string_array().
6043         Makes qt code build again
6044
6045 2003-02-01  Anders Carlsson  <andersca@codefactory.se>
6046
6047         * bus/driver.c: (create_unique_client_name),
6048         (bus_driver_handle_hello):
6049         Don't take a name, just use a numeric id to identify
6050         each client.
6051
6052         * dbus/Makefile.am:
6053         * dbus/dbus-bus.c: (dbus_bus_register_client),
6054         (dbus_bus_acquire_service), (dbus_bus_service_exists):
6055         * dbus/dbus-bus.h:
6056         Add new convenience functions for communicating with the bus.
6057
6058         * dbus/dbus-message.h:
6059
6060         * dbus/dbus-protocol.h:
6061         Fix a typo.
6062
6063 2003-02-01  Alexander Larsson  <alexl@redhat.com>
6064
6065         * dbus/dbus-message.c (dbus_message_append_fields):
6066         Add some more doc comments.
6067
6068 2003-02-01  Havoc Pennington  <hp@pobox.com>
6069
6070         * dbus/dbus-break-loader.c (randomly_modify_length): change
6071         a 4-byte value in the message as if it were a length
6072
6073         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
6074         execute bit on saved files
6075
6076 2003-02-01  Havoc Pennington  <hp@pobox.com>
6077
6078         * dbus/dbus-break-loader.c (main): new program to find messages
6079         that break the loader.
6080
6081         * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
6082         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
6083
6084         * dbus/dbus-string.c (_dbus_string_set_byte): new
6085
6086 2003-01-31  Havoc Pennington  <hp@pobox.com>
6087
6088         * dbus/dbus-message.c: refactor the test code to be more general,
6089         in preparation for writing a "randomly permute test cases to
6090         try to break the loader" program.
6091
6092 2003-01-31  Havoc Pennington  <hp@pobox.com>
6093
6094         * doc/dbus-specification.sgml: work on the specification
6095
6096         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
6097         the protocol version of the message.
6098
6099         * dbus/dbus-protocol.h: drop special _REPLY names, the spec
6100         no longer specifies that.
6101         (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
6102         1/2/3/4)
6103
6104         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
6105         "break" for DBUS_TYPE_NIL, remove @todo
6106
6107 2003-01-31  Havoc Pennington  <hp@pobox.com>
6108
6109         * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
6110         just set_is_error/get_is_error as this is a commonly-used
6111         function, and write docs.
6112
6113 2003-01-31  Anders Carlsson  <andersca@codefactory.se>
6114
6115         * dbus/dbus-address.c: (dbus_address_entry_free):
6116         Free key and value lists.
6117
6118         * dbus/dbus-internals.c: (_dbus_type_to_string):
6119         Add the types we didn't have.
6120
6121         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
6122         (_dbus_marshal_validate_arg):
6123         Add NIL types.
6124
6125         * dbus/dbus-message.c: (dbus_message_set_sender):
6126         Remove todo about being able to set sender to NULL.
6127
6128         (dbus_message_set_is_error_reply),
6129         (dbus_message_get_is_error_reply):
6130         * dbus/dbus-message.h:
6131         New functions.
6132
6133         * dbus/dbus-protocol.h:
6134         Add error reply flag.
6135
6136         * test/data/valid-messages/opposite-endian.message:
6137         Add NIL type to test.
6138
6139 2003-01-31  Havoc Pennington  <hp@pobox.com>
6140
6141         * doc/dbus-specification.sgml: fully specify the header.  Add
6142         flags and major protocol version, and change header/body len to
6143         unsigned.
6144
6145         * dbus/dbus-message-builder.c (append_saved_length): append length
6146         as uint32
6147
6148         * dbus/dbus-message.c (dbus_message_create_header): change header
6149         length and body length to unsigned. Add the new fields from the
6150         spec
6151         (_dbus_message_loader_return_buffer): unsigned header/body len
6152
6153 2003-01-30  Havoc Pennington  <hp@pobox.com>
6154
6155         * dbus/dbus-auth.c: rework to use only REJECTED, no
6156         MECHANISMS
6157
6158         * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
6159         use REJECTED, suggested by Mark McLoughlin
6160
6161 2003-01-30  Havoc Pennington  <hp@pobox.com>
6162
6163         * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
6164         a better way to report errors here. e.g.  "unix address lacks
6165         path" or something. also "no such file" when the path doesn't
6166         exist, etc.
6167
6168         * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
6169         leaking list nodes
6170         (dbus_parse_address): add @todo about documenting address format,
6171         and allowing , and ; to be escaped
6172
6173 2003-01-30  Anders Carlsson  <andersca@codefactory.se>
6174
6175         * dbus/Makefile.am:
6176         Add dbus-address.[ch]
6177
6178         * dbus/dbus-address.c: (dbus_address_entry_free),
6179         (dbus_address_entries_free), (create_entry),
6180         (dbus_address_entry_get_method), (dbus_address_entry_get_value),
6181         (dbus_parse_address), (_dbus_address_test):
6182         * dbus/dbus-address.h:
6183         New files for dealing with address parsing.
6184
6185         * dbus/dbus-connection.c:
6186         Document timeout functions.
6187
6188         * dbus/dbus-message.c:
6189         Document dbus_message_new_from_message.
6190
6191         * dbus/dbus-server-debug.c:
6192         Document.
6193
6194         * dbus/dbus-server.c: (dbus_server_listen):
6195         Parse address and use correct server implementation.
6196
6197         * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
6198         * dbus/dbus-string.h:
6199         New function with test.
6200
6201         * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
6202         * dbus/dbus-test.h:
6203         Add address tests.
6204
6205         * dbus/dbus-transport-debug.c:
6206         Document.
6207
6208         * dbus/dbus-transport.c: (_dbus_transport_open):
6209         Parse address and use correct transport implementation.
6210
6211 2003-01-30  Havoc Pennington  <hp@pobox.com>
6212
6213         * dbus/dbus-message.c: use message->byte_order instead of
6214         DBUS_COMPILER_BYTE_ORDER throughout.
6215         (dbus_message_create_header): pad header to align the
6216         start of the body of the message to 8-byte boundary
6217
6218         * dbus/dbus-marshal.h: make all the demarshalers take const
6219         DBusString arguments.
6220
6221         * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
6222         validate message args here, so we don't have to do slow validation
6223         later, and so we catch bad messages as they are incoming. Also add
6224         better checks on header_len and body_len. Also fill in
6225         message->byte_order
6226
6227         * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
6228         implemented properly)
6229         (_dbus_string_validate_nul): new function to check all-nul
6230
6231         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
6232         get_arg_end_pos and remove all validation
6233         (_dbus_marshal_validate_arg): actually do validation here.
6234
6235 2003-01-29  Havoc Pennington  <hp@pobox.com>
6236
6237         * dbus/dbus-message.c (check_message_handling): fix assertion
6238         failure on set_client_serial
6239
6240 2003-01-28  Havoc Pennington  <hp@pobox.com>
6241
6242         * dbus/dbus-server-debug.c: Add doc section comments
6243
6244         * dbus/dbus-transport-debug.c: add doc section comments
6245
6246 2003-01-28  Havoc Pennington  <hp@redhat.com>
6247
6248         * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
6249         the reverse order from how I had it
6250         (_dbus_string_base64_encode): reverse encoding order. I was
6251         basically byteswapping everything during encoding.
6252
6253 2003-01-28  Anders Carlsson  <andersca@codefactory.se>
6254
6255         * dbus/dbus-connection-internal.h:
6256         * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
6257         (_dbus_connection_remove_timeout):
6258         Add functions for adding and removing timeouts.
6259
6260         * dbus/dbus-message.c: (dbus_message_new_from_message):
6261         Add new function that takes a message and creates an exact
6262         copy of it, but with the refcount set to 1.
6263         (check_message_handling):
6264         Fix build error.
6265
6266         * dbus/dbus-server-protected.h:
6267         * dbus/dbus-server.c: (_dbus_server_init_base),
6268         (_dbus_server_finalize_base), (_dbus_server_add_timeout),
6269         (dbus_server_set_timeout_functions):
6270         (_dbus_server_remove_timeout):
6271         New functions so that a server can add and remove timeouts.
6272
6273         (dbus_server_listen):
6274         Add commented out call to dbus_server_debug_new.
6275
6276         * dbus/dbus-timeout.c: (_dbus_timeout_new):
6277         Actually set the handler, doh.
6278
6279         * dbus/dbus-transport.c: (_dbus_transport_open):
6280         Add commented out call to dbus_transport_debug_client_new.
6281
6282         * dbus/Makefile.am:
6283         Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
6284
6285 2003-01-28  Havoc Pennington  <hp@pobox.com>
6286
6287         * dbus/dbus-message.c (check_message_handling): function to check
6288         on the loaded message, iterates over it etc.
6289
6290 2003-01-28  Havoc Pennington  <hp@pobox.com>
6291
6292         * test/Makefile.am (dist-hook): fix make distdir
6293
6294         * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
6295
6296 2003-01-27  Havoc Pennington  <hp@pobox.com>
6297
6298         * dbus/dbus-mempool.c (time_for_size): replace printf with
6299         _dbus_verbose
6300
6301         * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
6302         empty lines; fix the SAVE_LENGTH stuff to be
6303         START_LENGTH/END_LENGTH so it actually works; couple other
6304         bugfixes
6305
6306         * test/Makefile.am (dist-hook): add dist-hook for .message files
6307
6308         * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
6309         can be constant or locked.
6310         (_dbus_string_free): allow freeing a const string as
6311         documented/intended
6312
6313         * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
6314
6315         * dbus/dbus-test-main.c (main): take an argument which is the
6316         directory containing test data
6317
6318         * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
6319         argument to this and load all the messages in test/data/
6320         checking that they can be loaded or not loaded as appropriate.
6321
6322 2003-01-27  Anders Carlsson  <andersca@codefactory.se>
6323
6324         * bus/dispatch.c: (bus_dispatch_message_handler):
6325         Dispatch messages sent to services.
6326
6327         * bus/driver.c: (bus_driver_send_service_deleted),
6328         (bus_driver_send_service_created), (bus_driver_send_service_lost),
6329         (bus_driver_send_service_acquired):
6330         Add helper functions for sending service related messages.
6331
6332         (bus_driver_send_welcome_message):
6333         Send HELLO_REPLY instead of WELCOME.
6334
6335         (bus_driver_handle_list_services):
6336         Send LIST_SERVICES_REPLY instead of SERVICES.
6337
6338         (bus_driver_handle_own_service),
6339         (bus_driver_handle_service_exists):
6340         New message handlers.
6341
6342         (bus_driver_handle_message):
6343         Invoke new message handlers.
6344
6345         (bus_driver_remove_connection):
6346         Don't remove any services here since that's done automatically
6347         by bus_service_remove_owner now.
6348
6349         * bus/driver.h:
6350         New function signatures.
6351
6352         * bus/services.c: (bus_service_add_owner):
6353         Send ServiceAcquired message if we're the only primary owner.
6354
6355         (bus_service_remove_owner):
6356         Send ServiceAcquired/ServiceLost messages.
6357
6358         (bus_service_set_prohibit_replacement),
6359         (bus_service_get_prohibit_replacement):
6360         Functions for setting prohibit replacement.
6361
6362         (bus_service_has_owner):
6363         New function that checks if a connection is in the owner queue of
6364         a certain service.
6365
6366         * bus/services.h:
6367         Add new function signatures.
6368
6369         * dbus/dbus-list.c: (_dbus_list_test):
6370         Add tests for _dbus_list_remove_last and traversing the list backwards.
6371
6372         * dbus/dbus-list.h:
6373         Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
6374         go any further, so return NULL then.
6375
6376         * dbus/dbus-protocol.h:
6377         Add new messages, service flags and service replies.
6378
6379 2003-01-26  Havoc Pennington  <hp@pobox.com>
6380
6381         * dbus/dbus-message-builder.c: implement, completely untested.
6382
6383         * test/data/*: add data to be used in testing.
6384         ".message" files are our simple loadable text format.
6385         ".message-raw" will be binary dumps of messages.
6386
6387         * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
6388
6389 2003-01-26  Havoc Pennington  <hp@pobox.com>
6390
6391         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
6392
6393         * dbus/dbus-errors.c (dbus_result_to_string): add
6394         file errors
6395
6396         * dbus/dbus-message-builder.c: new file, will contain code to load
6397         up messages from files. Not implemented yet.
6398
6399 2003-01-26  Havoc Pennington  <hp@pobox.com>
6400
6401         * dbus/dbus-message.c (dbus_message_set_sender): support deleting
6402         the sender by setting to NULL
6403
6404 2003-01-26  Havoc Pennington  <hp@pobox.com>
6405
6406         The unit tests pass, but otherwise untested.  If it breaks, the
6407         tests should have been better. ;-)
6408
6409         * bus/driver.c (bus_driver_handle_hello): return if we disconnect
6410         the connection.
6411
6412         * dbus/dbus-message.c: redo everything so we maintain
6413         message->header as the only copy of the various fields.
6414         This avoids the possibility of out-of-memory in some cases,
6415         for example dbus_message_lock() can't run out of memory anymore,
6416         and avoids extra copying. Figured I may as well go ahead and do
6417         this since it was busted for dbus_message_lock to not return
6418         failure on OOM, and dbus_message_write_header was totally
6419         unchecked for OOM. Also fixed some random other bugs.
6420
6421         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
6422         that strings are nul-terminated. Also, end_pos can be equal
6423         to string length just not greater than, I think.
6424         (_dbus_marshal_set_int32): new function
6425         (_dbus_marshal_set_uint32): new function
6426         (_dbus_marshal_set_string): new function
6427
6428         * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
6429         a warning, init timeout_list to NULL
6430         (dbus_connection_send_message): don't use uninitialized variable
6431         "serial"
6432
6433         * dbus/dbus-string.c (_dbus_string_replace_len): new function
6434
6435 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
6436
6437         * bus/driver.c: (bus_driver_handle_hello),
6438         (bus_driver_send_welcome_message):
6439         Plug leaks
6440
6441 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
6442
6443         * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
6444         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
6445         (dbus_connection_unref):
6446         * dbus/dbus-marshal.c: (_dbus_marshal_test):
6447         * dbus/dbus-message.c: (dbus_message_unref),
6448         Plug memory leaks.
6449
6450         (dbus_message_get_fields):
6451         Remove debugging printout.
6452
6453         (_dbus_message_loader_return_buffer):
6454         Don't store the header string.
6455
6456         (_dbus_message_test):
6457         Plug leaks.
6458
6459 2003-01-26  Richard Hult  <rhult@codefactory.se>
6460
6461         * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
6462         the file descriptor list, since it can change under us.
6463
6464 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
6465
6466         * glib/dbus-gmain.c: (dbus_connection_prepare),
6467         (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
6468         (remove_watch), (dbus_connection_hookup_with_g_main):
6469         Rewrite the glib handling to use its own GSource instead of a
6470         GIOChannel so we can catch messages put in the queue while waiting
6471         for a reply.
6472
6473 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
6474
6475         * bus/Makefile.am:
6476         * bus/connection.c: (connection_disconnect_handler),
6477         (connection_watch_callback), (bus_connection_setup):
6478         * bus/dispatch.c: (send_one_message),
6479         (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
6480         (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
6481         * bus/dispatch.h:
6482         * bus/driver.c: (bus_driver_send_service_deleted),
6483         (bus_driver_send_service_created), (bus_driver_handle_hello),
6484         (bus_driver_send_welcome_message),
6485         (bus_driver_handle_list_services), (bus_driver_remove_connection),
6486         (bus_driver_handle_message):
6487         * bus/driver.h:
6488         Refactor code, put the message dispatching in its own file. Use
6489         _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
6490         is disconnected.
6491
6492 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
6493
6494         * dbus/dbus-internals.h:
6495         Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
6496
6497         * dbus/dbus-message.c: (dbus_message_get_sender):
6498         * dbus/dbus-message.h:
6499         Implement dbus_message_get_sender.
6500
6501         * dbus/dbus-protocol.h:
6502         Add message and service defines.
6503
6504 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
6505
6506         * dbus/dbus-connection.c: (dbus_connection_send_message):
6507         * dbus/dbus-message-internal.h:
6508         * dbus/dbus-message.c: (_dbus_message_get_client_serial),
6509         (dbus_message_write_header):
6510         Remove _dbus_messag_unlock and don't set the client serial on a
6511         message if one already exists.
6512
6513 2003-01-24  Havoc Pennington  <hp@pobox.com>
6514
6515         * dbus/dbus-list.c (alloc_link): put a thread lock on the global
6516         list_pool
6517
6518         * bus/driver.c (bus_driver_handle_list_services): fix a leak
6519         on OOM
6520
6521 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
6522
6523         * dbus/dbus-list.c: (alloc_link), (free_link):
6524         Use a memory pool for the links.
6525
6526 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
6527
6528         * bus/connection.c: (bus_connection_foreach):
6529         * bus/connection.h:
6530         Add new bus_connection_foreach function.
6531
6532         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
6533         Add function that broadcasts a message to all clients.
6534
6535         (bus_driver_send_service_created), (bus_driver_handle_hello),
6536         (bus_driver_send_welcome_message),
6537         (bus_driver_handle_list_services), (bus_driver_message_handler):
6538         Implement functions that take care of listing services, and notifying
6539         clients when new services are created.
6540
6541         * bus/services.c: (bus_services_list):
6542         * bus/services.h:
6543         Add new function that returns an array of strings with the currently
6544         registered services.
6545
6546         * glib/dbus-glib.h:
6547         * glib/dbus-gmain.c:
6548         Update copyright year.
6549
6550 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
6551
6552         * dbus/dbus-connection.c: (dbus_connection_send_message):
6553         Unlock the message in case it was sent earlier.
6554
6555         (dbus_connection_send_message_with_reply_and_block):
6556         Remove the reply message from the list.
6557
6558         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
6559         Set array_len and new_pos correctly.
6560
6561         (_dbus_marshal_test):
6562         Remove debug output.
6563
6564         * dbus/dbus-message-internal.h:
6565         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
6566         New function that returns the reply serial.
6567
6568         (_dbus_message_unlock):
6569         New function that unlocks a message and resets its header.
6570
6571         (dbus_message_append_string_array),
6572         (dbus_message_get_fields_valist),
6573         (dbus_message_iter_get_field_type),
6574         (dbus_message_iter_get_string_array),
6575         (dbus_message_get_fields),
6576         (dbus_message_append_fields_valist):
6577         Handle string arrays.
6578
6579         (dbus_message_set_sender):
6580         Make this function public since the bus daemon needs it.
6581
6582         (decode_header_data):
6583         Set the reply serial to -1 initially.
6584
6585         * dbus/dbus-message.h:
6586         Add dbus_message_set_sender.
6587
6588 2003-01-24  Havoc Pennington  <hp@pobox.com>
6589
6590         * doc/dbus-specification.sgml: add some stuff
6591
6592 2003-01-22  Havoc Pennington  <hp@pobox.com>
6593
6594         * doc/dbus-specification.sgml: Start to document the protocol.
6595
6596 2003-01-22  Havoc Pennington  <hp@pobox.com>
6597
6598         * dbus/dbus-connection.c
6599         (dbus_connection_send_message_with_reply_and_block): add some @todo
6600
6601         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
6602
6603 2003-01-21  Havoc Pennington  <hp@pobox.com>
6604
6605         (patch untested because can't compile)
6606
6607         * bus/driver.c (create_unique_client_name): make this function
6608         never recycle client names. Also, caller should initialize
6609         the DBusString.
6610
6611         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
6612
6613 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
6614
6615         * dbus/dbus-marshal.c: (_dbus_marshal_double),
6616         (_dbus_marshal_int32), (_dbus_marshal_uint32),
6617         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
6618         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
6619         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
6620         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
6621         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
6622         * dbus/dbus-marshal.h:
6623         * dbus/dbus-protocol.h:
6624         Add support for marshalling and demarshalling integer, double
6625         and string arrays.
6626
6627 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
6628
6629         * bus/Makefile.am:
6630         Add driver.[ch]
6631
6632         * bus/connection.c: (connection_disconnect_handler):
6633         Remove the connection from the bus driver's list.
6634
6635         (connection_watch_callback): Dispatch messages.
6636
6637         (free_connection_data): Free connection name.
6638
6639         (bus_connection_setup): Add connection to the bus driver's list.
6640         (bus_connection_remove_owned_service):
6641         (bus_connection_set_name), (bus_connection_get_name):
6642         Add functions for setting and getting the connection's name.
6643
6644         * bus/connection.h:
6645         Add function headers.
6646
6647         * bus/driver.c: (create_unique_client_name),
6648         (bus_driver_handle_hello_message),
6649         (bus_driver_send_welcome_message), (bus_driver_message_handler),
6650         (bus_driver_add_connection), (bus_driver_remove_connection):
6651         * bus/driver.h:
6652         * bus/main.c:
6653         * bus/services.c: (bus_service_free):
6654         * bus/services.h:
6655         New file that handles communication and registreation with the bus
6656         itself.
6657
6658 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
6659
6660         * dbus/dbus-connection.c: (dbus_connection_send_message):
6661         Add a new client_serial parameter.
6662
6663         (dbus_connection_send_message_with_reply):
6664         Remove a @todo since we've implemented the blocking function.
6665
6666         (dbus_connection_send_message_with_reply_and_block):
6667         New function that sends a message and waits for a reply and
6668         then returns the reply.
6669
6670         * dbus/dbus-connection.h:
6671         Add new functions.
6672
6673         * dbus/dbus-errors.c: (dbus_result_to_string):
6674         * dbus/dbus-errors.h:
6675         Add new DBUS_RESULT.
6676
6677         * dbus/dbus-message-internal.h:
6678         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
6679         (_dbus_message_set_sender), (dbus_message_write_header),
6680         (dbus_message_new_reply), (decode_header_data),
6681         (_dbus_message_loader_return_buffer), (_dbus_message_test):
6682         * dbus/dbus-message.h:
6683         Add new functions that set the reply serial and sender.
6684         Also marshal and demarshal them correctly and add test.
6685
6686         * dbus/dbus-protocol.h:
6687         Add new DBUS_MESSAGE_TYPE_SENDER.
6688
6689         * glib/dbus-glib.h:
6690         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
6691         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
6692         (dbus_connection_hookup_with_g_main):
6693         * glib/test-dbus-glib.c: (main):
6694         Rewrite to use GIOChannel and remove the GSource crack.
6695
6696         * test/echo-client.c: (main):
6697         * test/watch.c: (check_messages):
6698         Update for changed APIs
6699
6700 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
6701
6702         * dbus/Makefile.am: Add dbus-timeout.[cħ]
6703
6704         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
6705         Create a DBusTimeoutList.
6706         (dbus_connection_set_timeout_functions): Add new function to
6707         set timeout callbacks
6708
6709         * dbus/dbus-connection.h: Add public DBusTimeout API.
6710
6711         * dbus/dbus-message.c: (dbus_message_get_service):
6712         * dbus/dbus-message.h:  New function.
6713
6714         * dbus/dbus-server.c: Fix small doc typo.
6715
6716         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
6717
6718 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
6719
6720         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
6721         of the string, just as long as specified.
6722
6723 2003-01-19  Havoc Pennington  <hp@pobox.com>
6724
6725         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
6726         new function
6727
6728         * dbus/dbus-server.c (dbus_server_set_max_connections)
6729         (dbus_server_get_max_connections, dbus_server_get_n_connections):
6730         keep track of current number of connections, and add API for
6731         setting a max (but haven't implemented enforcing the max yet)
6732
6733 2003-01-18  Havoc Pennington  <hp@pobox.com>
6734
6735         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
6736         reading/writing if read_watch != NULL or write_watch != NULL.
6737
6738         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
6739         the message loader code to actually load message->header and
6740         message->body into the newly-created message.
6741
6742         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
6743         in OOM case
6744
6745         * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
6746         (dbus_connection_get_max_message_size)
6747         (dbus_connection_set_max_live_messages_size)
6748         (dbus_connection_get_max_live_messages_size): implement some
6749         resource limitation functions
6750
6751         * dbus/dbus-resources.c: new file implementing some of the
6752         resource limits stuff
6753
6754         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
6755         missing docs, add @todo to handle OOM etc.
6756
6757         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
6758         docs
6759
6760 2003-01-18  Havoc Pennington  <hp@pobox.com>
6761
6762         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
6763         connection if it hasn't been already.
6764
6765         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
6766         replace with DisconnectFunction.
6767
6768 2003-01-18  Havoc Pennington  <hp@pobox.com>
6769
6770         Building --disable-verbose-mode --disable-asserts --disable-tests
6771         cuts the library from 112K to 45K or so
6772
6773         * configure.in: check for varargs macro support,
6774         add --enable-verbose-mode, --enable-asserts.
6775
6776         * dbus/dbus-internals.h (_dbus_assert): support
6777         DBUS_DISABLE_ASSERT
6778         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
6779
6780 2003-01-18  Havoc Pennington  <hp@pobox.com>
6781
6782         * dbus/dbus-test.c: include config.h so that tests actually run
6783
6784         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
6785         so the failure mode when that assumption fails will be plenty
6786         obvious.
6787
6788 2003-01-18  Havoc Pennington  <hp@pobox.com>
6789
6790         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
6791
6792         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
6793         the distribution
6794
6795         * test/Makefile.am: don't use special variable "TESTS" for echo-*
6796         since we don't want to use those in make check
6797
6798 2003-01-15  Havoc Pennington  <hp@redhat.com>
6799
6800         Release 0.2
6801
6802         * NEWS: update
6803
6804 2003-01-15  Havoc Pennington  <hp@redhat.com>
6805
6806         * test/Makefile.am: fix so that test source code ends up in the
6807         distribution on make distcheck
6808
6809 2003-01-15  Havoc Pennington  <hp@redhat.com>
6810
6811         Release 0.1.
6812
6813         * NEWS: update
6814
6815 2003-01-15  Havoc Pennington  <hp@redhat.com>
6816
6817         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
6818         fix build when --disable-tests
6819
6820         * Makefile.am (EXTRA_DIST): put HACKING in here
6821
6822         * HACKING: document procedure for making a tarball release.
6823
6824 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
6825
6826         * bus/connection.c: (connection_error_handler),
6827         (bus_connection_setup):
6828         * bus/main.c: (main):
6829         Make sure that the DBusConnectionData struct is NULLed
6830         out to prevent a segfault.
6831
6832         * dbus/dbus-errors.c: (dbus_result_to_string):
6833         * dbus/dbus-errors.h:
6834         * dbus/dbus-message.c: (dbus_message_get_fields),
6835         (dbus_message_get_fields_valist), (_dbus_message_test):
6836         * dbus/dbus-message.h:
6837         Make dbus_message_get_fields return a result code so we can
6838         track invalid fields as well as oom.
6839
6840 2003-01-11  Havoc Pennington  <hp@pobox.com>
6841
6842         * configure.in: change --enable-test/--enable-ansi action-if-given
6843         to enable_foo=$enableval instead of enable_foo=yes
6844
6845 2003-01-08  Havoc Pennington  <hp@pobox.com>
6846
6847         * dbus/dbus-string.c (_dbus_string_align_length): new function
6848
6849         * dbus/dbus-test-main.c: move main() for test app here
6850         * dbus/dbus-test.c
6851         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
6852         symbol to run tests, because dbus-test isn't in the main
6853         library
6854
6855         Code review nitpicks.
6856
6857         * dbus/dbus-message.c (dbus_message_write_header): add newlines
6858         for people with narrow emacs ;-). Assert client_serial was filled
6859         in. Assert message->name != NULL.
6860         (dbus_message_append_fields): have "first_field_type" arg separate
6861         from va list, needed for C++ binding that also uses varargs IIRC
6862         and helps with type safety
6863         (dbus_message_new): add @todo about using DBusString to store
6864         service/name internally
6865         (dbus_message_new): don't leak ->service and ->name on OOM later
6866         in the function
6867         (dbus_message_unref): free the service name
6868         (dbus_message_get_fields): same change to varargs
6869         i.e. first_field_type
6870         (_dbus_message_loader_return_buffer): assert that the message data
6871         is aligned (if not it's a bug in our code). Put in verbose griping
6872         about why we set corrupted = TRUE.
6873         (decode_header_data): add FIXME that char* is evil.  Was going to
6874         add FIXME about evil locale-specific string.h strncmp, but just
6875         switched to wacky string-as-uint32 optimization. Move check for
6876         "no room for field name" above get_const_data_len() to avoid
6877         assertion failure in get_const_data_len if we have trailing 2
6878         bytes or the like. Check for service and name fields being
6879         provided twice. Don't leak service/name on error. Require field
6880         names to be aligned to 4 bytes.
6881
6882         * dbus/dbus-marshal.c: move byte swap stuff to header
6883         (_dbus_pack_int32): uscore-prefix
6884         (_dbus_unpack_int32): uscore-prefix
6885         (_dbus_unpack_uint32): export
6886         (_dbus_demarshal_string): add @todo complaining about use of
6887         memcpy()
6888         (_dbus_marshal_get_field_end_pos): add @todo about bad error
6889         handling allowing corrupt data to go unchecked
6890
6891 2003-01-08  Havoc Pennington  <hp@redhat.com>
6892
6893         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
6894         to the select() as needed for authentication. (should be using
6895         _dbus_poll() not select, but for another day)
6896
6897         * dbus/dbus.h: include dbus/dbus-protocol.h
6898
6899 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
6900
6901         * dbus/Makefile.am (dbusinclude_HEADERS): Install
6902         dbus-connection.h
6903
6904 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
6905
6906         * dbus/dbus-internals.c: (_dbus_type_to_string):
6907         New function that returns a string describing a type.
6908
6909         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
6910         * dbus/dbus-marshal.h:
6911         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
6912         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
6913         (dbus_message_iter_get_byte_array):
6914         * dbus/dbus-message.h:
6915         Add new convenience functions for appending and getting message fields.
6916         Also add demarshalling routines for byte arrays.
6917
6918 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
6919
6920         * dbus/dbus-connection-internal.h:
6921         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
6922         (_dbus_connection_get_next_client_serial),
6923         (dbus_connection_send_message):
6924         * dbus/dbus-internals.h:
6925         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
6926         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
6927         (_dbus_marshal_uint32), (_dbus_demarshal_double),
6928         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
6929         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
6930         (_dbus_verbose_bytes), (_dbus_marshal_test):
6931         * dbus/dbus-marshal.h:
6932         * dbus/dbus-message-internal.h:
6933         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
6934         (dbus_message_write_header), (_dbus_message_lock),
6935         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
6936         (dbus_message_get_name), (dbus_message_append_int32),
6937         (dbus_message_append_uint32), (dbus_message_append_double),
6938         (dbus_message_append_string), (dbus_message_append_byte_array),
6939         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
6940         (dbus_message_iter_unref), (dbus_message_iter_has_next),
6941         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
6942         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
6943         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
6944         (decode_header_data), (_dbus_message_loader_return_buffer),
6945         (message_iter_test), (_dbus_message_test):
6946         * dbus/dbus-message.h:
6947         * dbus/dbus-protocol.h:
6948         * dbus/dbus-test.c: (main):
6949         * dbus/dbus-test.h:
6950         * glib/test-dbus-glib.c: (message_handler), (main):
6951         * test/echo-client.c: (main):
6952         * test/watch.c: (check_messages):
6953         Make messages sendable and receivable for real.
6954
6955 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
6956
6957         * dbus/dbus-marshal.c: (_dbus_marshal_double),
6958         (_dbus_marshal_string), (_dbus_marshal_byte_array):
6959         * dbus/dbus-message.c: (dbus_message_append_int32),
6960         (dbus_message_append_uint32), (dbus_message_append_double),
6961         (dbus_message_append_string), (dbus_message_append_byte_array):
6962         Handle OOM restoration.
6963
6964 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
6965
6966         * dbus/dbus-marshal.c: (_dbus_marshal_string),
6967         (_dbus_demarshal_string), (_dbus_marshal_test):
6968         * dbus/dbus-marshal.h:
6969         * dbus/dbus-message.c: (dbus_message_get_name),
6970         Document these functions.
6971
6972         (dbus_message_append_int32), (dbus_message_append_uint32),
6973         (dbus_message_append_double), (dbus_message_append_string),
6974         (dbus_message_append_byte_array):
6975         * dbus/dbus-message.h:
6976         Add functions for adding message fields of different types.
6977
6978         * dbus/dbus-protocol.h:
6979         Add the different types.
6980
6981 2003-01-05  Havoc Pennington  <hp@pobox.com>
6982
6983         * bus/connection.c: implement routines for handling connections,
6984         first thing is keeping a list of owned services on each connection
6985         and setting up watches etc.
6986
6987         * bus/services.c: implement a mapping from service names to lists
6988         of connections
6989
6990         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
6991
6992         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
6993         to use static mutexes for global data
6994
6995         * dbus/dbus-connection.c (dbus_connection_set_data): add new
6996         collection of functions to set/get application-specific data
6997         on the DBusConnection.
6998
6999 2003-01-04  Havoc Pennington  <hp@pobox.com>
7000
7001         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
7002         (_dbus_poll): new function
7003
7004         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
7005         copied from GLib
7006
7007         * bus/loop.c: initial code for the daemon main loop
7008
7009 2003-01-04  Havoc Pennington  <hp@pobox.com>
7010
7011         * test/watch.c (error_handler): make it safe if the error handler
7012         is called multiple times (if we s/error handler/disconnect
7013         handler/ we should just guarantee it's called only once)
7014
7015         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
7016         error handler on disconnect (it's quite possible we should
7017         just change the error handler to a "disconnect handler," I'm
7018         not sure we have any other meaningful errors)
7019
7020         * configure.in: check for getpwnam_r
7021
7022         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
7023         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
7024         mechanism as in SASL spec, using socket credentials
7025
7026         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
7027         (_dbus_send_credentials_unix_socket): new function
7028
7029         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
7030         dbus_accept()
7031         (_dbus_write): only check errno if <0 returned
7032         (_dbus_write_two): ditto
7033
7034 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
7035
7036         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
7037         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
7038         (_dbus_marshal_test):
7039         * dbus/dbus-marshal.h:
7040         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
7041         to _dbus_marshal_utf8_string. Also fix some tests.
7042
7043 2002-12-28  Harri Porten  <porten@kde.org>
7044
7045         * configure.in: added check for C++ compiler and a very cheesy
7046         check for the Qt integration
7047
7048         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
7049
7050         * qt/Makefile.am: added
7051
7052         * qt/.cvsignore: added
7053
7054         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
7055         latter, added #ifdef QT_THREAD_SUPPORT guard.
7056
7057         * dbus/Makefile.am: added missing headers for make dist
7058
7059 2002-12-28  Kristian Rietveld  <kris@gtk.org>
7060
7061         * dbus/Makefile.am: fixup export-symbols-regex.
7062
7063 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
7064
7065         * acinclude.m4: Add this file and put the
7066         PKG_CHECK_MODULE macro in it.
7067
7068 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
7069
7070         * dbus/dbus-marshal.c: (_dbus_marshal_string),
7071         (_dbus_demarshal_double), (_dbus_demarshal_int32),
7072         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
7073         (_dbus_marshal_test):
7074         Make the demarshalling routines align the pos argument.
7075         Add string marshalling tests and fix the obvious bugs
7076         discovered.
7077
7078 2002-12-26  Havoc Pennington  <hp@pobox.com>
7079
7080         * dbus/dbus-auth.c: fixes fixes fixes
7081
7082         * dbus/dbus-transport-unix.c: wire up support for
7083         encoding/decoding data on the wire
7084
7085         * dbus/dbus-auth.c (_dbus_auth_encode_data)
7086         (_dbus_auth_decode_data): append to target string
7087         instead of nuking it.
7088
7089 2002-12-26  Havoc Pennington  <hp@pobox.com>
7090
7091         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
7092         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
7093         doh
7094
7095         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
7096         avoid swap_bytes() overhead (ignoring possible assembly stuff for
7097         now). Main point is because I wanted unpack_uint32 to implement
7098         _dbus_verbose_bytes
7099         (_dbus_verbose_bytes): new function
7100
7101         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
7102
7103         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
7104         mechanism to handle a corrupt message stream
7105         (_dbus_message_loader_new): fix preallocation to only prealloc,
7106         not prelengthen
7107
7108         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
7109         (_dbus_string_test): enhance tests for copy/move and fix the
7110         functions
7111
7112         * dbus/dbus-transport-unix.c: Hold references in more places to
7113         avoid reentrancy problems
7114
7115         * dbus/dbus-transport.c: ditto
7116
7117         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
7118         leak reference count in no-message case
7119
7120         * test/watch.c (do_mainloop): handle adding/removing watches
7121         during iteration over the watches. Also, ref the connection/server
7122         stored on a watch, so we don't try to mangle a destroyed one.
7123
7124         * dbus/dbus-transport-unix.c (do_authentication): perform
7125         authentication
7126
7127         * dbus/dbus-auth.c (get_state): add a state
7128         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
7129         (_dbus_auth_get_unused_bytes): append the unused bytes
7130         to the passed in string, rather than prepend
7131
7132         * dbus/dbus-transport.c (_dbus_transport_init_base): create
7133         the auth conversation DBusAuth
7134
7135         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
7136         (_dbus_transport_new_for_domain_socket): when creating a
7137         transport, pass in whether it's a client-side or server-side
7138         transport so we know which DBusAuth to create
7139
7140 2002-12-03  Havoc Pennington  <hp@pobox.com>
7141
7142         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
7143         _after_ finalizing the derived members
7144         (unix_connection_set): unref watch if we fail to add it
7145
7146         * dbus/dbus-connection.c (dbus_connection_unref): delete the
7147         transport first, so that the connection owned by the
7148         transport will be valid as the transport finalizes.
7149
7150         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
7151         if necessary, and remove watches from the connection.
7152
7153         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
7154
7155 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
7156
7157         * dbus/dbus-marshal.c: (_dbus_marshal_string),
7158         (_dbus_demarshal_double), (_dbus_demarshal_int32),
7159         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
7160         (_dbus_marshal_test):
7161         * dbus/dbus-marshal.h:
7162         Add string marshal functions and have the demarshal functions
7163         return the new position.
7164
7165 2002-12-25  Havoc Pennington  <hp@pobox.com>
7166
7167         * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
7168         it is a simple protocol that just maps directly to SASL.
7169
7170         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
7171         initial implementation, not actually used yet.
7172
7173         * dbus/dbus-string.c (_dbus_string_find): new function
7174         (_dbus_string_equal): new function
7175         (_dbus_string_base64_encode): new function
7176         (_dbus_string_base64_decode): new function
7177
7178 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
7179
7180         * dbus/Makefile.am:
7181         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
7182         (_dbus_marshal_int32), (_dbus_marshal_uint32),
7183         (_dbus_demarshal_double), (_dbus_demarshal_int32),
7184         (_dbus_demarshal_uint32), (_dbus_marshal_test):
7185         * dbus/dbus-marshal.h:
7186         * dbus/dbus-protocol.h:
7187         * dbus/dbus-test.c: (main):
7188         * dbus/dbus-test.h:
7189         Add un-optimized marshalling/demarshalling routines.
7190
7191 2002-12-25  Harri Porten  <porten@kde.org>
7192
7193         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
7194
7195 2002-12-24  Zack Rusin  <zack@kde.org>
7196
7197         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
7198         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
7199         main loop stuff
7200
7201 2002-12-24  Havoc Pennington  <hp@pobox.com>
7202
7203         * glib/dbus-gthread.c: fix include
7204
7205         * glib/dbus-glib.h: rename DBusMessageHandler for now.
7206         I think glib API needs to change, though, as you don't
7207         want to use DBusMessageFunction, you want to use the
7208         DBusMessageHandler object. Probably
7209         dbus_connection_open_with_g_main_loop()
7210         and dbus_connection_setup_g_main_loop() or something like that
7211         (but think of better names...) that just create a connection
7212         that has watch/timeout functions etc. already set up.
7213
7214         * dbus/dbus-connection.c
7215         (dbus_connection_send_message_with_reply): new function just to
7216         show how the message handler helps us deal with replies.
7217
7218         * dbus/dbus-list.c (_dbus_list_remove_last): new function
7219
7220         * dbus/dbus-string.c (_dbus_string_test): free a string that
7221         wasn't
7222
7223         * dbus/dbus-hash.c: use memory pools for the hash entries
7224         (rebuild_table): be more paranoid about overflow, and
7225         shrink table when we can
7226         (_dbus_hash_test): reduce number of sprintfs and write
7227         valid C89. Add tests for case where we grow and then
7228         shrink the hash table.
7229
7230         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
7231
7232         * dbus/dbus-connection.c (dbus_connection_register_handler)
7233         (dbus_connection_unregister_handler): new functions
7234
7235         * dbus/dbus-message.c (dbus_message_get_name): new
7236
7237         * dbus/dbus-list.c: fix docs typo
7238
7239         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
7240         an object representing a handler for messages.
7241
7242 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
7243
7244         * glib/dbus-glib.h:
7245         * glib/dbus-gthread.c: (dbus_gthread_init):
7246         Don't use the gdbus prefix for public functions.
7247
7248 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
7249
7250         * Makefile.am:
7251         * configure.in:
7252         Add GLib checks and fixup .pc files
7253
7254         * glib/Makefile.am:
7255         * glib/dbus-glib.h:
7256         * glib/dbus-gmain.c: (gdbus_connection_prepare),
7257         (gdbus_connection_check), (gdbus_connection_dispatch),
7258         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
7259         (dbus_connection_gsource_new):
7260         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
7261         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
7262         * glib/test-dbus-glib.c: (message_handler), (main):
7263         Add GLib support.
7264
7265 2002-12-15  Harri Porten  <porten@kde.org>
7266
7267         * autogen.sh: check for libtoolize before attempting to use it
7268
7269         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
7270         struct.
7271
7272         * .cvsignore: ignore more stamp files
7273
7274         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
7275
7276         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
7277         without make install.
7278
7279 2002-12-15  Havoc Pennington  <hp@pobox.com>
7280
7281         * dbus/dbus-threads.c: add thread stubs that a higher library
7282         layer can fill in. e.g. the GLib wrapper might fill them in with
7283         GThread stuff. We still need to use this thread API to
7284         thread-safe-ize the library.
7285
7286 2002-12-12  Havoc Pennington  <hp@pobox.com>
7287
7288         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
7289         below new interfaces and include fewer system headers.
7290
7291         * dbus/dbus-sysdeps.c (_dbus_read): new function
7292         (_dbus_write): new function
7293         (_dbus_write_two): new function
7294         (_dbus_connect_unix_socket): new function
7295         (_dbus_listen_unix_socket): new function
7296
7297         * dbus/dbus-message-internal.h: change interfaces to use
7298         DBusString
7299
7300 2002-12-11  Havoc Pennington  <hp@pobox.com>
7301
7302         * dbus/dbus-types.h: add dbus_unichar
7303
7304         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
7305
7306         * dbus/dbus-connection.c (dbus_connection_send_message): return
7307         TRUE on success
7308
7309         * dbus/dbus-transport.c: include dbus-watch.h
7310
7311         * dbus/dbus-connection.c: include dbus-message-internal.h
7312
7313         * HACKING: add file with coding guidelines stuff.
7314
7315         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
7316         handling here, for security purposes (as in vsftpd). Not actually
7317         using this class yet.
7318
7319         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
7320         system/libc usage here, as in vsftpd, for ease of auditing (and
7321         should also simplify portability). Haven't actually moved all the
7322         system/libc usage into here yet.
7323
7324 2002-11-25  Havoc Pennington  <hp@pobox.com>
7325
7326         * dbus/dbus-internals.c (_dbus_verbose): fix to not
7327         always print the first verbose message.
7328
7329 2002-11-24  Havoc Pennington  <hp@pobox.com>
7330
7331         * test/echo-client.c, test/echo-server.c: cheesy test
7332         clients.
7333
7334         * configure.in (AC_CHECK_FUNCS): check for writev
7335
7336         * dbus/dbus-message.c (_dbus_message_get_network_data): new
7337         function
7338
7339         * dbus/dbus-list.c (_dbus_list_foreach): new function
7340
7341         * dbus/dbus-internals.c (_dbus_verbose): new function
7342
7343         * dbus/dbus-server.c, dbus/dbus-server.h: public object
7344         representing a server that listens for connections.
7345
7346         * dbus/.cvsignore: create
7347
7348         * dbus/dbus-errors.h, dbus/dbus-errors.c:
7349         public API for reporting errors
7350
7351         * dbus/dbus-connection.h, dbus/dbus-connection.c:
7352         public object representing a connection that
7353         sends/receives messages. (Same object used for
7354         both client and server.)
7355
7356         * dbus/dbus-transport.h, dbus/dbus-transport.c:
7357         Basic abstraction for different kinds of stream
7358         that we might read/write messages from.
7359
7360 2002-11-23  Havoc Pennington  <hp@pobox.com>
7361
7362         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
7363         _DBUS_INT_MAX
7364
7365         * dbus/dbus-test.c (main): add list test, and include
7366         dbus-test.h as intended
7367
7368         * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
7369         (_dbus_hash_table_remove_int): return value indicates
7370         whether the entry existed to remove
7371
7372         * dbus/dbus-list.c: add linked list utility class,
7373         with docs and tests
7374
7375         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
7376         array sometimes.
7377
7378 2002-11-23  Havoc Pennington  <hp@pobox.com>
7379
7380         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
7381         DBUS_END_DECLS to nothing, that should fix this once and for all
7382
7383         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
7384
7385         * dbus/dbus-message.c, dbus/dbus-hash.c:
7386         add some missing @brief
7387
7388 2002-11-23  Havoc Pennington  <hp@pobox.com>
7389
7390         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
7391         to avoid confusing Doxygen
7392
7393         * dbus/dbus-hash.c: @} not }@
7394
7395         * dbus/dbus-message.c (struct DBusMessage): split out
7396         internals docs
7397
7398 2002-11-23  Havoc Pennington  <hp@pobox.com>
7399
7400         * configure.in: pile on more warning flags if using gcc
7401
7402         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
7403         to document static functions
7404
7405         * configure.in: add summary to end of configure so it
7406         looks nice and attractive
7407
7408         * dbus/dbus-hash.c: finish implementation and write unit
7409         tests and docs
7410
7411         * configure.in: add --enable-tests to enable unit tests
7412
7413         * dbus/dbus-test.c: test program to run unit tests
7414         for all files in dbus/*, initially runs a test for
7415         dbus-hash.c
7416
7417         * dbus/dbus-internals.h: file to hold some internal utility stuff
7418
7419 2002-11-22  Havoc Pennington  <hp@redhat.com>
7420
7421         * dbus/dbus-hash.c: copy in Tcl hash table, not yet
7422         "ported" away from Tcl
7423
7424         * dbus/dbus-types.h: header for types such as dbus_bool_t
7425
7426 2002-11-22  Havoc Pennington  <hp@redhat.com>
7427
7428         * dbus/dbus.h: fixups for doc warnings
7429
7430         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
7431         macros
7432         (QUIET): make it quiet so we can see warnings
7433
7434         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
7435
7436 2002-11-22  Havoc Pennington  <hp@redhat.com>
7437
7438         * Makefile.am: include "Doxyfile" target in all-local
7439
7440         * configure.in: generate the Doxyfile
7441
7442         * Doxyfile.in: move Doxyfile here, so we can use
7443         configure to generate a Doxyfile with the right
7444         version number etc.
7445
7446 2002-11-22  Havoc Pennington  <hp@redhat.com>
7447
7448         * dbus/dbus-message.c: move inline docs into .c file
7449
7450         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
7451         so all docs are under doc/
7452         (MAN_EXTENSION): generate man pages. Use extension
7453         ".3dbus" which matches ".3qt" on my system,
7454         I guess this is OK, I don't know really.
7455         (FILE_PATTERNS): look for .c files not .h, makes sense
7456         for plain C I think
7457
7458 2002-11-22  Havoc Pennington  <hp@pobox.com>
7459
7460         * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
7461         because any app can be a server, and any app can be a client,
7462         the bus is a special kind of server.
7463
7464 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
7465
7466         * Doxyfile : adding. Still needs Makefile rules to be generated
7467         automatically (just run "doxygen" in the toplevel dir for now to
7468         generate docs)
7469
7470         * dbus/dbus-message.h : Adding sample docs (javadoc since
7471         resembles gtk-doc a little more)
7472
7473         * dbus/dbus.h : Adding sample docs
7474
7475 2002-11-21  Havoc Pennington  <hp@redhat.com>
7476
7477         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
7478         so we can allow ourselves to include files directly,
7479         instead of having to use dbus.h
7480
7481         * dbus/dbus.h: fill in
7482
7483         * dbus/dbus-message.h: sketch out a sample header file.
7484         Include griping if you include it directly instead of
7485         via dbus.h
7486
7487         * dbus/dbus-macros.h: new file with macros for extern "C",
7488         TRUE/FALSE, NULL, etc.
7489
7490         * doc/file-boilerplate.c: put include guards in here
7491
7492 2002-11-21  Havoc Pennington  <hp@redhat.com>
7493
7494         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
7495
7496         * COPYING: include the GPL as well, and license code
7497         under both AFL and GPL.
7498
7499 2002-11-21  Havoc Pennington  <hp@redhat.com>
7500
7501         * acconfig.h: get rid of this
7502
7503         * autogen.sh (run_configure): add --no-configure option
7504
7505         * configure.in: remove AC_ARG_PROGRAM to make
7506         autoconf complain less. add AC_PREREQ.
7507         add AC_DEFINE third arg.
7508
7509 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
7510
7511         * doc/Makefile.am:
7512         Fix references so we can distcheck.
7513
7514 2002-11-21  Havoc Pennington  <hp@redhat.com>
7515
7516         * Initial module creation
7517