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