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