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