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