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