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