1 2005-01-24 Havoc Pennington <hp@redhat.com>
3 * dbus/dbus-message-factory.c: more testing of message validation
5 * dbus/dbus-protocol.h (DBUS_MINIMUM_HEADER_SIZE): move to this
8 2005-01-23 Havoc Pennington <hp@redhat.com>
10 * dbus/dbus-message-factory.c, dbus/dbus-message-util.c:
11 get this all working, not many tests in the framework yet though
13 2005-01-22 Havoc Pennington <hp@redhat.com>
15 * doc/dbus-faq.xml, doc/dbus-tutorial: add a FAQ and update
16 tutorial, based on work from David Wheeler.
18 2005-01-21 Havoc Pennington <hp@redhat.com>
20 * dbus/dbus-bus.c: add more return_if_fail checks
22 * dbus/dbus-message.c (load_message): have the "no validation"
23 mode (have to edit the code to toggle the mode for now though)
25 * dbus/dbus-marshal-header.c (_dbus_header_load): have a mode that
26 skips all validation; I want to use this at least for benchmark
27 baseline, I'm not sure if it should be a publicly-available switch.
29 2005-01-21 Havoc Pennington <hp@redhat.com>
31 * glib/dbus-gmain.c: don't put the GLib bindings in the same
32 toplevel doxygen group as the low-level API stuff
34 * dbus/dbus.h: note that libdbus is the low-level API
36 2005-01-20 Havoc Pennington <hp@redhat.com>
38 * update-dbus-docs.sh: script to update docs on the web site, only
39 works for me though. neener.
41 2005-01-20 Havoc Pennington <hp@redhat.com>
43 * dbus/dbus-sysdeps.c (_dbus_poll): amazingly, trying to compile
44 code can reveal bugs in it
46 2005-01-20 Havoc Pennington <hp@redhat.com>
48 * dbus/dbus-sysdeps.c (_dbus_poll): fix several bugs in the
49 select() version, patches from Tor Lillqvist
51 2005-01-20 Havoc Pennington <hp@redhat.com>
53 * doc/dbus-tutorial.xml: replace > with >
55 * bus/services.c (bus_registry_acquire_service): validate the name
56 and return a better error if it's no good.
58 * doc/dbus-specification.xml: note NO_AUTO_START change
60 * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change
61 from AUTO_START, we're toggling the default
63 * bus/dispatch.c: adapt the tests to change of auto-start default
65 2005-01-18 Havoc Pennington <hp@redhat.com>
67 * rename dbus-daemon-1 to dbus-daemon throughout
69 2005-01-18 Havoc Pennington <hp@redhat.com>
71 * Throughout, grand renaming to strip out the use of "service",
72 just say "name" instead (or "bus name" when ambiguous). Did not
73 change the internal code of the message bus itself, only the
74 programmer-facing API and messages.
76 * doc/dbus-specification.xml: further update the message bus section
78 * bus/config-parser.c (all_are_equiv): fix bug using freed string
81 2005-01-17 Havoc Pennington <hp@redhat.com>
83 * dbus/dbus-types.h: remove 16-bit types since we don't use them
86 * dbus/dbus-marshal-validate.c (_dbus_validate_path): disallow any
87 "invalid name character" not only non-ASCII
89 * doc/dbus-specification.xml: further update spec, message bus
90 parts are still out-of-date but the marshaling etc. stuff is now
93 2005-01-17 Havoc Pennington <hp@redhat.com>
95 * doc/dbus-specification.xml: partially update spec
97 2005-01-17 Havoc Pennington <hp@redhat.com>
99 * Throughout, align variant bodies according to the contained
100 type, rather than always to 8. Should save a fair bit of space in
103 * dbus/dbus-marshal-validate.c (_dbus_validate_body_with_reason):
104 fix handling of case where p == end
106 * doc/TODO: remove the dbus_bool_t item and variant alignment items
108 2005-01-17 Havoc Pennington <hp@redhat.com>
110 * dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits
112 * Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
113 of an 8-bit type. Now dbus_bool_t is the type to use whenever you
114 are marshaling/unmarshaling a boolean.
116 2005-01-16 Havoc Pennington <hp@redhat.com>
118 This is about it on what can be disabled/deleted from libdbus
119 easily, back below 150K anyhow. Deeper cuts are more work than
120 just turning the code off as I've done here.
122 * dbus/dbus-marshal-basic.c (_dbus_pack_int32): we don't need the
123 signed int convenience funcs
125 * dbus/dbus-internals.c (_dbus_verbose_real): omit when not in
128 * dbus/dbus-string-util.c, dbus/dbus-string.c: more breaking
129 things out of libdbus
131 * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-util.c: same
133 * dbus/dbus-hash.c: purge the TWO_STRINGS crap (well, make it
134 tests-enabled-only, though it should probably be deleted)
136 * dbus/dbus-message-util.c: same stuff
138 * dbus/dbus-auth-util.c: same stuff
140 2005-01-16 Havoc Pennington <hp@redhat.com>
142 * dbus/dbus-userdb-util.c: split out part of dbus-userdb.c
144 * dbus/dbus-sysdeps.c (_dbus_uid_from_string): move here to pave
145 way for stripping down dbus-userdb.c stuff included in libdbus.
146 Rename _dbus_parse_uid for consistency.
148 2005-01-16 Havoc Pennington <hp@redhat.com>
150 * dbus/dbus-internals.c (_dbus_real_assert): print the function
151 name the assertion failed in
153 * dbus/dbus-internals.h (_dbus_return_if_fail)
154 (_dbus_return_val_if_fail): assert that the name of the function
155 containing the check doesn't start with '_', since we only want to
156 use checks on public functions
158 * dbus/dbus-connection.c (_dbus_connection_ref_unlocked): change
161 * dbus/dbus-marshal-header.c (_dbus_header_set_field_basic):
162 change checks to asserts for private function
164 * dbus/dbus-message.c (_dbus_message_set_serial): checks
165 to asserts for private function
167 * dbus/dbus-marshal-recursive.c (skip_one_complete_type): remove
168 broken assertion that was breaking make check
169 (_dbus_type_reader_array_is_empty): remove this rather than fix
170 it, was only used in assertions
172 2005-01-16 Havoc Pennington <hp@redhat.com>
174 * test/unused-code-gc.py: hacky script to find code that's used
175 only by the bus (not libdbus) or used only by tests or not used at
176 all. It has some false alarms, but looks like we can clean up a
177 lot of size from libdbus.
179 * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-utils.c,
180 dbus/Makefile.am: initially move 10K of binary size out of libdbus
182 2005-01-16 Havoc Pennington <hp@redhat.com>
184 * Add and fix docs according to Doxygen warnings throughout
187 * dbus/dbus-marshal-recursive.c
188 (_dbus_type_reader_array_is_empty): change this to just call
189 array_reader_get_array_len() and make it static
191 * dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
193 (dbus_message_iter_init_append): rename from append_iter_init
195 * dbus/dbus-marshal-recursive.c
196 (_dbus_type_reader_get_element_type): rename from
197 _dbus_type_reader_get_array_type
199 2005-01-15 Havoc Pennington <hp@redhat.com>
201 * test/glib/test-profile.c (with_bus_server_filter): fix crash
203 * dbus/dbus-marshal-basic.c (_dbus_unpack_uint32): inline as macro
204 when DBUS_DISABLE_ASSERT
205 (_dbus_marshal_set_basic): be sure we align for the string length
207 * dbus/dbus-marshal-recursive.c (skip_one_complete_type): make
210 * dbus/dbus-string.c (_dbus_string_get_const_data_len): add an
212 (_dbus_string_set_byte): provide inline macro version
214 2005-01-15 Havoc Pennington <hp@redhat.com>
216 * Land the new message args API and type system.
218 This patch is huge, but the public API change is not
219 really large. The set of D-BUS types has changed somewhat,
220 and the arg "getters" are more geared toward language bindings;
221 they don't make a copy, etc.
223 There are also some known issues. See these emails for details
225 http://lists.freedesktop.org/archives/dbus/2004-December/001836.html
226 http://lists.freedesktop.org/archives/dbus/2005-January/001922.html
228 * dbus/dbus-marshal-*: all the new stuff
230 * dbus/dbus-message.c: basically rewritten
232 * dbus/dbus-memory.c (check_guards): with "guards" enabled, init
233 freed blocks to be all non-nul bytes so using freed memory is less
236 * dbus/dbus-internals.c (_dbus_test_oom_handling): add
237 DBUS_FAIL_MALLOC=N environment variable, so you can do
238 DBUS_FAIL_MALLOC=0 to skip the out-of-memory checking, or
239 DBUS_FAIL_MALLOC=10 to make it really, really, really slow and
242 * qt/message.cpp: port to the new message args API
243 (operator<<): use str.utf8() rather than str.unicode()
244 (pretty sure this is right from the Qt docs?)
246 * glib/dbus-gvalue.c: port to the new message args API
248 * bus/dispatch.c, bus/driver.c: port to the new message args API
250 * dbus/dbus-string.c (_dbus_string_init_const_len): initialize the
251 "locked" flag to TRUE and align_offset to 0; I guess we never
252 looked at these anyhow, but seems cleaner.
254 * dbus/dbus-string.h (_DBUS_STRING_ALLOCATION_PADDING):
255 move allocation padding macro to this header; use it to implement
256 (_DBUS_STRING_STATIC): ability to declare a static string.
258 * dbus/dbus-message.c (_dbus_message_has_type_interface_member):
259 change to return TRUE if the interface is not set.
261 * dbus/dbus-string.[hc]: move the D-BUS specific validation stuff
262 to dbus-marshal-validate.[hc]
264 * dbus/dbus-marshal-basic.c (_dbus_type_to_string): move here from
267 * dbus/Makefile.am: cut over from dbus-marshal.[hc]
268 to dbus-marshal-*.[hc]
270 * dbus/dbus-object-tree.c (_dbus_decompose_path): move this
271 function here from dbus-marshal.c
273 2005-01-12 Joe Shaw <joeshaw@novell.com>
275 * NEWS: Update for 0.23.
277 * configure.in: Release 0.23.
279 2005-01-12 Joe Shaw <joeshaw@novell.com>
281 * mono/Makefile.am, mono/example/Makefile.am: Always build the
282 dbus DLL with --debug. Clean up after the .mdb files this leaves
285 * mono/doc/Makefile.am: Need to uninstall the docs on "make
288 * mono/Arguments.cs (GetDBusTypeConstructor): If the type
289 is an enum, get the enum's underlying type. Another mono
292 2005-01-11 Joe Shaw <joeshaw@novell.com>
294 Patch from Sjoerd Simons <sjoerd@luon.net>
296 * mono/Makefile.am, mono/example/Makefile.am: Don't redefine
297 DESTDIR. It breaks stuff.
299 2005-01-11 Joe Shaw <joeshaw@novell.com>
301 Patch from Tambet Ingo <tambet@ximian.com>
303 * mono/DBusType/Array.cs (Get): Get the underlying element type by
304 calling type.GetElementType(). The code previously depended on
305 broken Mono behavior, which was fixed in Mono 1.1.3.
307 * mono/DBusType/Dict.cs (constructor): Fix the parameters for
308 Activator.CreateInstance() so that the class's constructor is
309 called with the right parameters.
311 2005-01-11 Joe Shaw <joeshaw@novell.com>
313 Patch from Timo Teräs <ext-timo.teras@nokia.com>
315 * dbus/dbus-connection.c
316 (_dbus_connection_queue_received_message_link): Call
317 _dbus_connection_remove_timeout() instead of the _locked()
318 variant, since it's always called from
319 _dbus_connection_handle_watch(), which handles the locking.
320 Removed the _locked() variant since it's no longer used.
322 2005-01-03 Havoc Pennington <hp@redhat.com>
324 * dbus/dbus-internals.h: I'm an idiot, _dbus_assert certainly can
327 2004-12-26 Havoc Pennington <hp@redhat.com>
329 * dbus/dbus-internals.h: add _DBUS_GNUC_NORETURN to _dbus_assert
331 2005-01-03 Havoc Pennington <hp@redhat.com>
333 * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): fix using == on
336 * dbus/dbus-string.c (_dbus_string_insert_alignment): new function
338 2005-01-02 Havoc Pennington <hp@redhat.com>
340 * dbus/dbus-internals.h (_DBUS_ALIGN_OFFSET): new macro
342 2005-01-01 Havoc Pennington <hp@redhat.com>
344 * configure.in: add -Wfloat-equal
346 2005-01-01 Havoc Pennington <hp@redhat.com>
348 * dbus/dbus-sysdeps.h: add _DBUS_DOUBLES_BITWISE_EQUAL macro,
349 for a variety of reasons '==' doesn't do this.
351 2004-12-31 Havoc Pennington <hp@redhat.com>
353 * dbus/dbus-string.c (_dbus_string_equal_substrings): new function
356 2004-12-30 John (J5) Palmieri <johnp@redhat.com>
358 * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED
360 2004-12-30 John (J5) Palmieri <johnp@redhat.com>
362 * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
363 and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
364 dbus-protocol.h. Because they are defines and not enums they are not
367 2004-12-26 John (J5) Palmieri <johnp@redhat.com>
369 * python/dbus_bindings.pyx.in (bus_activate_service): Bind
370 dbus_bus_activate_service
372 * python/dbus.py (Bus.activate_service): activate a service on the
375 2004-12-24 Havoc Pennington <hp@redhat.com>
377 * test/decode-gcov.c: change to use .gcno and .gcda files, but the
378 file format has also changed and I haven't adapted to that yet
380 * Makefile.am: load .gcno files from latest gcc
382 2004-12-23 John (J5) Palmieri <johnp@redhat.com>
383 * Patch from Rob Taylor <robtaylor@fastmail.fm>
385 * python/dbus_bindings.pyx.in (bus_get_unix_user): New
388 * python/dbus.py (get_unix_user): Added binding to
389 call dbus_bindings.bus_get_unix_user
391 * python/extract.py: Modified the proto_pat regex to
394 2004-12-21 Olivier Andrieu <oliv__a@users.sourceforge.net>
396 * dbus/make-dbus-glib-error-enum.sh: omit the function keyword for
397 better POSIX compliance.
399 2004-12-19 Havoc Pennington <hp@redhat.com>
401 * dbus/dbus-string.c (_dbus_string_insert_4_aligned)
402 (_dbus_string_insert_8_aligned): new functions
404 * dbus/dbus-string.c (_dbus_string_alloc_space): new function
406 2004-12-18 Havoc Pennington <hp@redhat.com>
408 * dbus/dbus-string.c (_dbus_string_validate_ascii): use ISASCII
411 * dbus/dbus-message.c: fix a comment, and add a still-unused
412 not-implemented function
414 * dbus/dbus-marshal.h: fix comment
416 * dbus/dbus-internals.h (_DBUS_ISASCII): new macro
418 2004-12-17 Joe Shaw <joeshaw@novell.com>
420 * mono/DBusType/Byte.cs, mono/DBusType/Int32.cs,
421 mono/DBusType/Int64.cs, mono/DBusType/UInt32.cs,
422 mono/DBusType/UInt64.cs: Use Enum.GetUnderlyingType() instead of
423 Type.UnderlyingSystemType to get the actual system type
424 underneath. This code previously depended on the broken Mono
425 behavior, which was fixed in 1.1.3.
427 2004-11-27 Havoc Pennington <hp@redhat.com>
429 * dbus/dbus-string.h (_dbus_string_get_byte): inline when asserts
431 (_dbus_string_get_const_data): inline when asserts are disabled
433 * dbus/dbus-message.c: record the _dbus_current_generation of
434 creation so we can complain if dbus_shutdown() is used improperly.
435 Do this only if checks are enabled.
437 * dbus/dbus-connection.c: ditto
439 2004-11-26 Havoc Pennington <hp@redhat.com>
441 * test/glib/test-profile.c: add with_bus mode to profile echoes
442 that go through the bus.
444 * test/glib/run-test.sh: add ability to run test-profile
446 * bus/dbus-daemon-1.1.in: fix to say that SIGHUP causes partial
449 2004-11-26 Havoc Pennington <hp@redhat.com>
451 * test/glib/test-profile.c: clean up how the fake_malloc_overhead
452 thing was implemented
454 2004-11-26 Havoc Pennington <hp@redhat.com>
456 * test/glib/test-profile.c: tweak a bit, add support for some
457 made-up minimal malloc overhead with plain sockets, since in
458 real life some sort of buffers are unavoidable thus we could
459 count them in the theoretical best case
461 2004-11-26 Havoc Pennington <hp@redhat.com>
463 * dbus/dbus-message.c (dbus_message_cache_or_finalize): fix bug
464 where I was trying to cache one too many messages
466 2004-11-26 Havoc Pennington <hp@redhat.com>
468 * dbus/dbus-message.c: reimplement message cache as an array which
469 makes the cache about twice as fast and saves maybe 1.5% overall
471 2004-11-26 Havoc Pennington <hp@redhat.com>
473 * dbus/dbus-threads.c (init_global_locks): forgot to put the
474 message cache lock here
476 2004-11-26 Havoc Pennington <hp@redhat.com>
478 * dbus/dbus-message.c (struct DBusMessage): put the locked bit and
479 the "char byte_order" next to each other to save 4 bytes
480 (dbus_message_new_empty_header): reduce preallocation, since the
481 message cache should achieve a similar effect
482 (dbus_message_cache_or_finalize, dbus_message_get_cached): add a
483 message cache that keeps a few DBusMessage around in a pool,
484 another 8% speedup or so.
486 * dbus/dbus-dataslot.c (_dbus_data_slot_list_clear): new function
488 2004-11-25 Havoc Pennington <hp@redhat.com>
490 * dbus/dbus-transport-unix.c (unix_do_iteration): if we're going
491 to write, without reading or blocking, try it before the poll()
492 and skip the poll() if nothing remains to write. This is about a
493 3% speedup in the echo client/server
495 2004-11-25 Havoc Pennington <hp@redhat.com>
497 The primary change here is to always write() once before adding
498 the write watch, which gives us about a 10% performance increase.
500 * dbus/dbus-transport-unix.c: a number of modifications to cope
501 with removing messages_pending
502 (check_write_watch): properly handle
503 DBUS_AUTH_STATE_WAITING_FOR_MEMORY; adapt to removal of
504 messages_pending stuff
505 (check_read_watch): properly handle WAITING_FOR_MEMORY and
507 (unix_handle_watch): after writing, see if the write watch can be
509 (unix_do_iteration): assert that write_watch/read_watch are
510 non-NULL rather than testing that they aren't, since they
511 aren't allowed to be NULL. check_write_watch() at the end so
512 we add the watch if we did not finish writing (e.g. got EAGAIN)
514 * dbus/dbus-transport-protected.h: remove messages_pending call,
515 since it resulted in too much inefficient watch adding/removing;
516 instead we now require that the transport user does an iteration
517 after queueing outgoing messages, and after trying the first
518 write() we add a write watch if we got EAGAIN or exceeded our
519 max bytes to write per iteration setting
521 * dbus/dbus-string.c (_dbus_string_validate_signature): add this
524 * dbus/dbus-server-unix.c (unix_finalize): the socket name was
525 freed and then accessed, valgrind flagged this bug, fix it
527 * dbus/dbus-message.c: fix several bugs where HEADER_FIELD_LAST was taken
528 as the last valid field plus 1, where really it is equal to the
529 last valid field. Corrects some message corruption issues.
531 * dbus/dbus-mainloop.c: verbosity changes
533 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): handle OOM
534 instead of aborting in one of the test codepaths
536 * dbus/dbus-internals.c (_dbus_verbose_real): fix a bug that
537 caused not printing the pid ever again if a verbose was missing
538 the newline at the end
539 (_dbus_header_field_to_string): add HEADER_FIELD_SIGNATURE
541 * dbus/dbus-connection.c: verbosity changes;
542 (dbus_connection_has_messages_to_send): new function
543 (_dbus_connection_message_sent): no longer call transport->messages_pending
544 (_dbus_connection_send_preallocated_unlocked): do one iteration to
545 try to write() immediately, so we can avoid the write watch. This
546 is the core purpose of this patchset
547 (_dbus_connection_get_dispatch_status_unlocked): if disconnected,
548 dump the outgoing message queue, so nobody will get confused
549 trying to send them or thinking stuff is pending to be sent
551 * bus/test.c: verbosity changes
553 * bus/driver.c: verbosity/assertion changes
555 * bus/dispatch.c: a bunch of little tweaks to get it working again
556 because this patchset changes when/where you need to block.
558 2004-11-23 Havoc Pennington <hp@redhat.com>
560 * test/glib/test-profile.c: modify to accept a plain_sockets
561 argument in which case it will bench plain sockets instead of
562 libdbus, for comparison purposes.
564 2004-11-22 Havoc Pennington <hp@redhat.com>
566 * test/glib/test-profile.c (N_CLIENT_THREADS): run multiple
567 threads for more time, so sysprof can get a grip on it.
569 * dbus/dbus-string.c (_dbus_string_validate_utf8): remove
572 2004-11-13 Havoc Pennington <hp@redhat.com>
574 * test/glib/test-profile.c: fix this thing up a bit
576 * dbus/dbus-message.c (dbus_message_new_empty_header): increase
577 preallocation sizes by a fair bit; not sure if this will be an
578 overall performance win or not, but it does reduce reallocs.
580 * dbus/dbus-string.c (set_length, reallocate_for_length): ignore
581 the test hack that forced constant realloc if asserts are
582 disabled, so we can profile sanely. Sprinkle in some
583 _DBUS_UNLIKELY() which are probably pointless, but before I
584 noticed the real performance problem I put them in.
585 (_dbus_string_validate_utf8): micro-optimize this thing a little
586 bit, though callgrind says it didn't help; then special-case
587 ascii, which did help a lot; then be sure we detect nul bytes as
588 invalid, which is a bugfix.
589 (align_length_then_lengthen): add some more _DBUS_UNLIKELY
590 superstition; use memset to nul the padding instead of a manual
592 (_dbus_string_get_length): inline this as a
593 macro; it showed up in the profile because it's used for loop
596 2004-11-10 Colin Walters <walters@verbum.org>
598 * dbus/dbus-spawn.c (check_babysit_events): Handle EINTR,
601 2004-11-09 Colin Walters <walters@verbum.org>
603 * dbus/dbus-string.c (_dbus_string_get_length): New
604 function, writes DBusString to C buffer.
606 * dbus/dbus-string.h: Prototype it.
608 * dbus/dbus-message.c (dbus_message_type_to_string): New
609 function, converts message type into C string.
611 * dbus/dbus-message.h: Prototype it.
613 * bus/selinux.c (bus_selinux_check): Take source pid,
614 target pid, and audit data. Pass audit data to
616 (log_audit_callback): New function, appends extra
618 (bus_selinux_allows_acquire_service): Also take
619 service name, add it to audit data.
620 (bus_selinux_allows_send): Also take message
621 type, interface, method member, error name,
622 and destination, and add them to audit data.
623 (log_cb): Initialize func_audit.
625 * bus/selinux.h (bus_selinux_allows_acquire_service)
626 (bus_selinux_allows_send): Update prototypes
628 * bus/services.c (bus_registry_acquire_service): Pass
629 service name to bus_selinux_allows_acquire_service.
631 * bus/bus.c (bus_context_check_security_policy): Pass
632 additional audit data. Move assignment of dest
635 2004-11-07 Colin Walters <walters@verbum.org>
637 * dbus/dbus-transport-unix.c (do_authentication): Always
638 initialize auth_completed.
640 2004-11-07 Colin Walters <walters@verbum.org>
642 * bus/bus.c (load_config): Break into three
643 separate functions: process_config_first_time_only,
644 process_config_every_time, and process_config_postinit.
645 (process_config_every_time): Move call of
646 bus_registry_set_service_context_table into
647 process_config_postinit.
648 (process_config_postinit): New function, does
649 any processing that needs to happen late
650 in initialization (and also on reload).
651 (bus_context_new): Instead of calling load_config,
652 open config parser here and call process_config_first_time_only
653 and process_config_every_time directly. Later, after
654 we have forked but before changing UID,
655 invoke bus_selinux_full_init, and then call
656 process_config_postinit.
657 (bus_context_reload_config): As in bus_context_new,
658 load parse file inside here, and call process_config_every_time
659 and process_config_postinit.
661 * bus/services.h, bus/services.c
662 (bus_registry_set_service_context_table): Rename
663 from bus_registry_set_sid_table. Take string hash from config
664 parser, and convert them here into SIDs.
666 * bus/config-parser.c (struct BusConfigParser): Have
667 config parser only store a mapping of service->context
669 (merge_service_context_hash): New function.
670 (merge_included): Merge context string hashes instead
671 of using bus_selinux_id_table_union.
672 (bus_config_parser_new): Don't use bus_selinux_id_table_new;
673 simply create a new string hash.
674 (bus_config_parser_unref): Unref it.
675 (start_selinux_child): Simply insert strings into hash,
676 don't call bus_selinux_id_table_copy_over.
678 * bus/selinux.h, bus/selinux.c (bus_selinux_id_table_union)
679 (bus_selinux_id_table_copy_over): Delete.
681 2004-11-03 Colin Walters <walters@verbum.org>
683 * bus/selinux.c (bus_selinux_pre_init): Kill some unused
686 2004-11-03 Colin Walters <walters@verbum.org>
688 * bus/test-main.c (test_pre_hook): Fix test logic,
689 thanks Joerg Barfurth <Joerg.Barfurth@Sun.COM>.
691 2004-11-02 Colin Walters <walters@redhat.com>
693 * bus/selinux.c (bus_selinux_init): Split into two functions,
694 bus_selinux_pre_init and bus_selinux_post_init.
695 (bus_selinux_pre_init): Just determine whether SELinux is
697 (bus_selinux_post_init): Do everything else.
699 * bus/main.c (main): Call bus_selinux_pre_init before parsing
700 config file, and bus_selinux_post_init after. This ensures that
701 we don't lose the policyreload notification thread that
702 bus_selinux_init created before forking previously.
704 * bus/test-main.c (test_pre_hook): Update for split.
706 2004-10-31 Owen Fraser-Green <owen@discobabe.net>
708 Patch from Johan Fischer <linux@fischaz.com>
710 * mono/doc/Makefile.am (install-data-local): Added directory
713 2004-10-29 Colin Walters <walters@redhat.com>
715 * dbus/dbus-sysdeps.h (_dbus_become_daemon): Also take
716 parameter for fd to write pid to.
718 * dbus/dbus-sysdeps.c (_dbus_become_daemon): Implement it.
720 * bus/bus.c (bus_context_new): Pass print_pid_fd
721 to _dbus_become_daemon (bug #1720)
723 2004-10-29 Colin Walters <walters@redhat.com>
725 Patch from Ed Catmur <ed@catmur.co.uk>
727 * mono/doc/Makefile.am (install-data-local): Handle
730 2004-10-29 Colin Walters <walters@redhat.com>
732 * bus/.cvsignore, qt/.cvsignore: Update.
734 2004-10-29 Colin Walters <walters@redhat.com>
736 Patch from Kristof Vansant <de_lupus@pandora.be>
738 * configure.in: Detect Slackware.
739 * bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
740 * bus/rc.messagebus.in: New file.
742 2004-10-29 Colin Walters <walters@redhat.com>
744 * tools/dbus-monitor.c (filter_func): Return
745 DBUS_HANDLER_RESULT_HANDLED in filter function
747 http://freedesktop.org/pipermail/dbus/2004-August/001433.html
749 2004-10-29 Colin Walters <walters@redhat.com>
751 Patch from Matthew Rickard <mjricka@epoch.ncsc.mil>
753 * bus/services.c (bus_registry_acquire_service):
754 Correctly retrieve service name from DBusString
757 2004-10-29 Colin Walters <walters@redhat.com>
759 * dbus/dbus-glib.h: Update documentation to not
760 refer to internal APIs.
762 2004-10-27 Joe Shaw <joeshaw@novell.com>
764 * mono/Arguments.cs (GetDBusTypeConstructor):
765 type.UnderlyingSystemType will return "System.Byte" if you do it
766 on "byte[]", which is not what we want. So check the type.IsArray
767 property and use System.Array instead.
769 2004-10-25 John (J5) Palmieri <johnp@redhat.com>
771 * dbus/dbus-sysdeps.c (fill_user_info): On errors do not free
772 the DBusUserInfo structure since this is passed into the function.
773 This would cause a double free when the function that allocated
774 the structure would try to free it when an error occured.
776 * (bus/session.conf.in, bus/Makefile.am, dbus/configure.in):
777 use /usr/share/dbus-1/services instead of /usr/lib/dbus-1.0/services
778 for service activation to avoid 32bit/64bit parallel install issues
780 2004-10-21 Colin Walters <walters@verbum.org>
782 * AUTHORS: Fix my email address, the @gnu.org one
783 has been bouncing for some time. Also add J5.
785 2004-10-21 Colin Walters <walters@verbum.org>
787 * dbus/dbus-transport-unix.c (do_authentication): Return
788 authentication status to callers.
789 (unix_handle_watch): If we completed authentication this round,
790 don't do another read. Instead wait until the next iteration,
791 after we've read any pending data in the auth buffer.
792 (unix_do_iteration): Ditto.
793 (unix_handle_watch): Updated for new do_authentication prototype.
795 2004-10-18 Colin Walters <walters@verbum.org>
797 * bus/selinux.c (bus_selinux_enabled): Handle
798 --disable-selinux case.
800 2004-10-18 Colin Walters <walters@verbum.org>
802 * bus/selinux.h: Add bus_selinux_enabled.
804 * bus/selinux.c (bus_selinux_enabled): Implement it.
806 * bus/config-parser.c (struct include): Add
807 if_selinux_enabled member.
808 (start_busconfig_child): Parse if_selinux_enabled
809 attribute for include.
810 (bus_config_parser_content): Handle it.
812 * bus/session.conf.in, bus/system.conf.in: Add
813 inclusion of context mapping to default config files;
814 conditional on SELinux being enabled.
816 * doc/busconfig.dtd: Add to if_selinux_enabled to default DTD.
818 * test/data/invalid-config-files/badselinux-1.conf,
819 test/data/invalid-config-files/badselinux-2.conf:
820 Test files for bad syntax.
822 2004-10-17 Colin Walters <walters@verbum.org>
824 * dbus/dbus-memory.c (_dbus_initialize_malloc_debug, check_guards)
825 (dbus_malloc, dbus_malloc0, dbus_realloc): Fix up printf
826 format specifier mismatches.
828 2004-10-07 Olivier Andrieu <oliv__a@users.sourceforge.net>
830 * dbus/dbus-sysdeps.c (_dbus_file_get_contents): fix an incorrect
833 * glib/dbus-dbus-gmain.c (dbus_g_bus_get): do not mangle NULL
834 pointer (bug #1540, Leonardo Boiko).
836 2004-09-28 Jon Trowbridge <trow@ximian.com>
838 * mono/BusDriver.cs: Changed BusDriver struct to remove
839 the ServiceCreated and ServiceDeleted events and replace them
840 with the new ServiceOwnerChanged event.
842 * mono/example/BusListener.cs: Added a new example program,
843 which listens for and reports any ServiceOwnerChanged events
846 * mono/example/Makefile.am (DESTDIR): Build changes for the
847 new BusListener.cs example.
849 2004-09-27 Olivier Andrieu <oliv__a@users.sourceforge.net>
851 * bus/signals.c (bus_match_rule_parse): validate the components of
852 match rules (bug #1439).
854 * dbus/dbus-bus.c (dbus_bus_add_match): add a missing OOM test.
856 2004-09-24 Olivier Andrieu <oliv__a@users.sourceforge.net>
858 * doc/dbus-specification.xml: document ServiceOwnerChanged
861 * bus/driver.c, bus/driver.h, bus/services.c: Use
862 ServiceOwnerChanged signal instead of ServiceCreated and
865 * bus/dispatch.c: update testcase for the new signal.
867 2004-09-20 Jon Trowbridge <trow@ximian.com>
869 Patch from Nat Friedman <nat@novell.com>
871 * mono/Makefile.am: A number of small build fixes to allow "make
872 distcheck" to succeed.
874 * mono/example/Makefile.am: "make distcheck" fixes.
876 * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
879 * test/Makefile.am: "make distcheck" fixes.
881 2004-09-17 Olivier Andrieu <oliv__a@users.sourceforge.net>
883 * dbus/dbus-sysdeps.c (_dbus_user_at_console): fix memleak in OOM.
885 * doc/busconfig.dtd: update the DTD for the at_console attribute.
887 * bus/driver.c (bus_driver_handle_hello): correctly handle Hello
888 messages after the first one (bug #1389).
890 * bus/dispatch.c (check_double_hello_message): add a test case for
891 the double hello message bug.
892 (check_existent_service_activation): fix check of spawning error.
894 2004-09-16 David Zeuthen <david@fubar.dk>
896 * python/dbus_bindings.pyx.in: Add support for int64 and uint64
898 2004-09-12 David Zeuthen <david@fubar.dk>
900 Patch from Kay Sievers <kay.sievers@vrfy.org>
902 * bus/bus.c (bus_context_new):
906 Add commandline option --nofork to override configuration file
909 2004-09-09 Olivier Andrieu <oliv__a@users.sourceforge.net>
911 * dbus/dbus-*.h: remove the ; after DBUS_(BEGIN|END)_DECLS. Some C
912 compilers don't like it (bug #974).
914 2004-09-04 Harald Fernengel <harry@kdevelop.org>
916 * qt/connection.*: Applied patch by Jérôme Lodewyck
917 <lodewyck@clipper.ens.fr> to integrate an existing
918 connection into the Qt eventloop
920 2004-08-30 Jon Trowbridge <trow@ximian.com>
922 * mono/BusDriver.cs: Added. This is a class for interacting with
923 the org.freedesktop.DBus service.
925 * mono/Message.cs: Added a mechanism to expose the message that is
926 currently being dispatched via the static Message.Current
927 property. Added Message.Sender and Message.Destination
930 * mono/Handler.cs: Expose the dispatched message via
931 Message.Current when handling method calls.
933 * mono/Service.cs: Expose the dispatched message via
934 Message.Current when handling signal emissions.
936 * mono/Connection.cs: Bind dbus_bus_get_base_service via the
937 Connection.BaseService property.
939 2004-08-28 Havoc Pennington <hp@redhat.com>
941 * dbus/dbus-userdb.c (_dbus_is_console_user): remove unused variable
943 More fixes from Steve Grubb
945 * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix fd leak
946 (_dbus_listen_tcp_socket): fix fd leak
948 * dbus/dbus-spawn.c (read_pid, read_ints): move the "again:" for
949 EINTR to a bit lower in the code
951 2004-08-26 Jon Trowbridge <trow@ximian.com>
953 * bus/driver.c (bus_driver_handle_service_exists): Respond with
954 TRUE if we are inquiring about the existence of the built-in
955 org.freedesktop.DBus service.
957 2004-08-25 John Palmieri <johnp@redhat.com>
958 * bus/config-parser.c:
959 (struct PolicyType): Add POLICY_CONSOLE
960 (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
961 (start_busconfig_child): Sets up console element when
962 <policy at_console=""> is encountered in a policy file
963 (append_rule_from_element): Convert console elements to console
967 (bus_policy_create_client_policy): Add console rules to the client
968 policy based on if the client is at the console
969 (bus_policy_append_console_rule): New function for adding a
970 console rule to a policy
971 (bus_policy_merge): Handle console rule merging
973 * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
974 where we check for console user files
976 * dbus/dbus-sysdeps.c:
977 (_dbus_file_exists): New function which checks if the given
979 (_dbus_user_at_console): New function which does the system
980 specific process of checking if the user is at the console
982 * dbus/dbus-userdb.c:
983 (_dbus_is_console_user): New function converts a UID to user name
984 and then calls the system specific _dbus_user_at_console to
985 see if the user is at the console and therefor a console user
987 2004-08-25 Olivier Andrieu <oliv__a@users.sourceforge.net>
989 * bus/config-parser.c (set_limit):
990 * bus/dbus-daemon-1.1.in:
991 * test/data/valid-config-files/many-rules.conf: set the
992 max_match_rules_per_connection limt from the config file.
994 * doc/busconfig.dtd: update the DTD.
996 * bus/driver.c: remove some unused variables.
998 2004-08-24 Mikael Hallendal <micke@imendio.com>
1000 * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since
1001 it's been replaced by dbus_g_bus_get
1003 2004-08-23 Colin Walters <walters@redhat.com>
1005 Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
1007 * bus/selinux.h: Prototype bus_selinux_get_policy_root.
1009 * bus/selinux.c: Create a thread for policy reload notification.
1010 (bus_selinux_get_policy_root): Implement.
1012 * bus/config-parser.c (start_busconfig_child)
1013 (bus_config_parser_content): Support SELinux-root relative
1016 * configure.in <HAVE_SELINUX>: Add -lpthread.
1018 * bus/test-main.c (test_pre_hook, test_post_hook): New.
1019 (test_post_hook): Move memory checking into here.
1020 (test_pre_hook, test_post_hook): Move SELinux checks in
1021 here, but conditional on a DBUS_TEST_SELINUX environment
1022 variable. Unfortunately we can't run the SELinux checks
1023 as a normal user, since they won't have any permissions
1024 for /selinux. So this will have to be tested manually
1025 for now, until we have virtualization for most of
1028 2004-08-23 Havoc Pennington <hp@redhat.com>
1030 * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
1031 drop supplementary groups, suggested by Steve Grubb
1033 2004-08-20 Colin Walters <walters@redhat.com>
1035 * bus/config-parser.c (start_busconfig_child): Remove some unused
1038 * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
1041 2004-08-17 Joe Shaw <joeshaw@novell.com>
1043 * configure.in: If --enable-mono is passed in, if we can't find
1046 * mono/Makefile.am: Use /gacutil to install assemblies into the
1049 2004-08-12 Havoc Pennington <hp@redhat.com>
1051 * NEWS: update for 0.22
1053 * configure.in: release 0.22
1055 2004-08-11 Colin Walters <walters@redhat.com>
1057 * tools/dbus-send.c (main, usage): Add --reply-timeout
1060 2004-08-10 Olivier Andrieu <oliv__a@users.sourceforge.net>
1062 * bus/bus.c (process_config_first_time_only): get rid of an unused
1063 DBusError that was causing a memoy leak (bug #989).
1065 * dbus/dbus-keyring.c, dbus/dbus-message.c:
1066 fix compilation on Solaris/Forte C (bug #974)
1068 * bus/main.c (main): plug two minuscule memleaks.
1070 2004-08-10 Havoc Pennington <hp@redhat.com>
1072 * doc/dbus-tutorial.xml: add some more info on GLib bindings
1074 2004-08-09 Havoc Pennington <hp@redhat.com>
1076 * COPYING: switch to Academic Free License version 2.1 instead of
1077 2.0, to resolve complaints about patent termination clause.
1079 2004-07-31 John (J5) Palmieri <johnp@redhat.com>
1081 * README: added documentation for the --enable-python
1084 2004-07-31 Olivier Andrieu <oliv__a@users.sourceforge.net>
1086 * bus/config-parser.c (bus_config_parser_new): fix an invalid
1087 _unref in the SELinux support.
1089 * doc/busconfig.dtd: update DTD for SELinux support.
1091 * bus/config-loader-libxml.c: fix error handler and parser
1092 initialisation/cleanup. OOM test now works with libxml2 HEAD.
1094 * configure.in: remove the warning about libxml2.
1096 * dbus/dbus-bus.c: silence doxygen warning.
1098 2004-07-31 Colin Walters <walters@redhat.com>
1100 * configure.in: Move #error in SELinux check to its own line.
1102 2004-07-31 Olivier Andrieu <oliv__a@users.sourceforge.net>
1104 * dbus/dbus-internals.h (_DBUS_SET_OOM):
1105 * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
1108 * bus/dispatch.c (check_send_exit_to_service): fix the test case,
1109 broken by the change in the _SET_OOM macros.
1111 2004-07-31 Colin Walters <walters@redhat.com>
1113 * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
1116 2004-07-31 Colin Walters <walters@redhat.com>
1118 * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
1119 to correctly detect DBUS__ACQUIRE_SVC. Also add an
1122 2004-07-24 Havoc Pennington <hp@redhat.com>
1124 SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
1126 * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
1129 * configure.in: add --enable-selinux
1131 * bus/policy.c (bus_policy_merge): add FIXME to a comment
1133 * bus/main.c (main): initialize and shut down selinux
1135 * bus/connection.c: store SELinux ID on each connection, to avoid
1136 repeated getting of the string context and converting it into
1139 * bus/bus.c (bus_context_get_policy): new accessor, though it
1141 (bus_context_check_security_policy): check whether the security
1142 context of sender connection can send to the security context of
1143 recipient connection
1145 * bus/config-parser.c: add parsing for <selinux> and <associate>
1147 * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
1148 implement dbus_connection_get_unix_fd()
1150 * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
1151 function, used by the selinux stuff
1153 2004-07-29 Olivier Andrieu <oliv__a@users.sourceforge.net>
1155 * bus/config-loader-libxml.c: complete the implementation of
1156 libxml backend for config file loader. Doesn't work with full OOM
1159 * configure.in: change error when selecting libxml into a warning.
1161 * test/data/invalid-config-files: add two non-well-formed XML
1164 * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
1166 * dbus/dbus-transport-unix.c (unix_handle_watch): do not
1167 disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
1168 be necessary to read all the buffer. (bug #894)
1170 * bus/activation.c (bus_activation_activate_service): fix a
1171 potential assertion failure (bug #896). Small optimization in the
1172 case of auto-activation messages.
1174 * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
1175 add test case for byte-through-vararg bug (#901). patch by Kimmo
1178 2004-07-28 Anders Carlsson <andersca@gnome.org>
1181 * python/dbus_bindings.pyx.in:
1182 Add dbus.init_gthreads (), allow emit_signal to pass
1183 arguments to the signal.
1185 2004-07-24 Havoc Pennington <hp@redhat.com>
1187 * AUTHORS: add some people, not really comprehensively, let me
1188 know if I missed you
1190 2004-07-24 Havoc Pennington <hp@redhat.com>
1192 * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
1195 * test/Makefile.am (DIST_SUBDIRS): here also
1197 2004-07-22 Olivier Andrieu <oliv__a@users.sourceforge.net>
1199 * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
1200 breaking build on Solaris, reported by Farhad Saberi on the ML.
1202 * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
1203 va_arg invocation to account for integer promotion in the case of
1204 DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
1206 * bus/services.c (bus_service_remove_owner): fix bug #902, use
1207 _dbus_list_get_first_link, not _dbus_list_get_first.
1209 * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
1211 * dbus/dbus-object-tree.c (free_subtree_recurse): always null
1212 handler functions so that the asserts in _dbus_object_subtree_unref
1215 * dbus/dbus-transport-unix.c (do_reading):
1216 _dbus_transport_queue_messages return value is of type
1217 dbus_bool_t, not DBusDispatchStatus.
1219 2004-07-19 David Zeuthen <david@fubar.dk>
1221 * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
1224 (check_get_connection_unix_user): Debug says GetProperty; but the
1225 method is called GetConnectionUnixUser
1226 (check_get_connection_unix_process_id): New function
1227 (bus_dispatch_test): Actually call check_get_connection_unix_user();
1228 also call check_get_connection_unix_process_id()
1231 (bus_driver_handle_get_connection_unix_process_id): New function,
1232 handles GetConnectionUnixProcessID on the org.freedesktop.DBus
1236 (handle_server_data_external_mech): Set pid from the credentials
1237 obtained from the socket
1239 * dbus/dbus-connection.c:
1240 (dbus_connection_get_unix_process_id): New function
1242 * dbus/dbus-connection.h:
1243 Add prototype for dbus_connection_get_unix_process_id
1245 * dbus/dbus-transport.c:
1246 (_dbus_transport_get_unix_process_id): New function
1248 * dbus/dbus-transport.h:
1249 Add prototype for _dbus_transport_get_unix_process_id
1251 2004-07-19 Olivier Andrieu <oliv__a@users.sourceforge.net>
1253 * dbus/dbus-message.c: Message counter fix, patch by Christian
1254 Hammond <chipx86@gnupdate.org>
1256 2004-07-18 Seth Nickell <seth@gnome.org>
1259 * python/dbus_bindings.pyx.in:
1260 * python/tests/test-client.py:
1262 Add dbus.ByteArray and dbus_bindings.ByteArray
1263 types so that byte streams can be passed back.
1265 Give jdahlin the heaps of credit that are so
1268 2004-07-12 Seth Nickell <seth@gnome.org>
1272 Add message argument to the default object_method_handler
1275 * python/dbus_bindings.pyx.in:
1277 Automatically return NIL when passed an empty list
1278 (we can't pass back a list since lists are typed
1279 and we don't have any idea what type the the client
1280 intended the list to be... :-( )
1282 2004-07-10 Seth Nickell <seth@gnome.org>
1284 * python/examples/Makefile.am:
1286 Fix distcheck breakage caused by new examples.
1288 2004-07-10 Seth Nickell <seth@gnome.org>
1292 Add "message" argument to service-side dbus.Object
1293 methods. This will break existing services written
1294 using the python bindings, but will allow extraction
1295 of all the message information (e.g. who its from).
1297 Add improved "object oriented" signal handling/emission.
1299 * python/examples/example-service.py:
1303 * python/examples/example-signal-emitter.py:
1304 * python/examples/example-signal-recipient.py:
1306 Two new examples that show how to emit and receive
1307 signals using the new APIs.
1309 * python/examples/example-signals.py:
1310 * python/examples/gconf-proxy-service.py:
1311 * python/examples/gconf-proxy-service2.py:
1313 Add "message" argument to service methods.
1315 2004-06-28 Kay Sievers <kay.sievers@vrfy.org>
1317 * bus/driver.c (bus_driver_handle_get_connection_unix_user)
1318 * dbus/bus.c (dbus_bus_get_unix_user)
1319 * doc/dbus-specification.xml: implement GetConnectionUnixUser
1320 method of org.freedesktop.DBus interface.
1322 * bus/dispatch.c: test case
1324 2004-06-23 John (J5) Palmieri <johnp@redhat.com>
1326 * python/Makefile.am: switched include directory from glib/ to dbus/
1327 since dbus-glib.h moved
1329 2004-06-22 Olivier Andrieu <oliv__a@users.sourceforge.net>
1331 * configure.in: prevent building the gcj stuff and libxml loader
1332 since they are broken.
1334 2004-06-20 Havoc Pennington <hp@redhat.com>
1336 * dbus/dbus-glib-error-enum.h: autogenerate the GError enum
1337 codes from the dbus error names
1339 * glib/dbus-glib.h: move to subdir dbus/ since it's included
1340 as dbus/dbus-glib.h and that breakage is now visible due to
1341 including dbus/dbus-glib.h in dbus-glib-lowlevel.h
1343 * glib/dbus-glib.h: s/gproxy/g_proxy/
1345 * dbus/dbus-shared.h: new header to hold stuff shared with
1348 * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
1351 * glib/dbus-glib.h (dbus_set_g_error): move to
1352 dbus-glib-lowlevel.h
1354 * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
1355 of stuff to enable this
1357 * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
1359 * a bunch of other changes with the same basic "separate glib
1360 bindings from dbus.h" theme
1362 2004-06-10 Owen Fraser-Green <owen@discobabe.net>
1364 * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
1366 * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
1368 2004-06-09 Olivier Andrieu <oliv__a@users.sourceforge.net>
1370 * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
1371 the reply value of the ServiceExists message.
1373 2004-06-07 John (J5) Palmieri <johnp@redhat.com>
1375 * python/dbus_bindings.pyx.in: No longer need to parse path
1376 elements and pass them as arrays of strings. The C API now
1377 accepts plain path strings.
1378 (_build_parsed_path): removed
1380 2004-06-07 Havoc Pennington <hp@redhat.com>
1382 * doc/TODO: remove auto-activation item since it's done; sort
1383 items by importance/milestone
1385 2004-06-07 Havoc Pennington <hp@redhat.com>
1387 * dbus/dbus-message-builder.c (_dbus_message_data_load): append
1388 random signature when using REQUIRED_FIELDS (this hack won't work
1391 * dbus/dbus-message.c: change the signature to be a header field,
1392 instead of message->signature special-case string. Incremental
1393 step forward. Then we can fix up code to send the signature in the
1394 message, then fix up code to validate said signature, then fix up
1395 code to not put the typecodes inline, etc.
1396 (load_one_message): don't make up the signature after the fact
1397 (decode_header_data): require signature field for the known
1400 * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
1402 * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
1404 2004-06-07 Owen Fraser-Green <owen@discobabe.net>
1406 * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
1408 * mono/Handler.cs: Updated to follow new path argument for
1409 (un-)registering objects.
1411 * mono/example/Makefile.am:
1413 * configure.in: Bumped required version for mono and use new -pkg
1416 2004-06-05 Olivier Andrieu <oliv__a@users.sourceforge.net>
1418 * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
1419 registration functions take the path argument as char* instead of
1422 * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
1423 split off the path decompostion part of
1424 _dbus_demarshal_object_path. Some misc. fixes to silence compiler
1427 * glib/dbus-gobject.c, test/test-service.c: update accordingly.
1429 2004-06-02 Kristian Høgsberg <krh@redhat.com>
1431 * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
1432 machine approach. A state is implemented as a function that
1433 handles incoming events as specified for that state.
1435 * doc/dbus-specification.xml: Update auth protocol state machine
1436 specification to match implementation. Remove some leftover
1439 2004-06-02 Kristian Høgsberg <krh@redhat.com>
1441 * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
1442 dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
1445 * Doxyfile.in: remove deprecated options.
1447 * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
1448 glib/test-thread.h, glib/test-thread-client.c,
1449 glib/test-thread-server.c, glib/test-profile.c,
1450 glib/test-dbus-glib.c: remove these unused files.
1452 2004-06-01 Olivier Andrieu <oliv__a@users.sourceforge.net>
1454 * dbus/dbus-object-tree.c
1455 (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
1456 non-fallback handlers (bug #684).
1457 (_dbus_object_subtree_new): initialize invoke_as_fallback field.
1458 (find_subtree_recurse): report wether the returned subtree is an
1459 exact match or a "fallback" match higher up in the tree.
1460 (object_tree_test_iteration): update test case.
1462 2004-06-01 Seth Nickell <seth@gnome.org>
1464 * python/dbus_bindings.pyx.in:
1465 * python/tests/test-client.py:
1467 Round off basic type support. Add dicts (yay!), and
1468 remaining array types.
1470 Make MessageIter more general so it works for dicts too.
1472 Mark all loop variables as C integers.
1474 2004-05-31 Havoc Pennington <hp@redhat.com>
1476 * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
1479 * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
1481 * glib/dbus-glib-tool.c (main): set up to have a --self-test
1482 option that runs the tests, and start filling in some code
1483 including for starters just dumping the interfaces to stdout
1485 * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
1487 * test/data/valid-introspection-files/lots-of-types.xml: test of
1488 an example introspection file
1490 * glib/dbus-gparser.c (parser_check_doctype): doctype should be
1493 2004-05-31 Seth Nickell <seth@gnome.org>
1495 * python/dbus_bindings.pyx.in:
1496 * python/tests/test-client.py:
1501 Fix string array memory trashing bug... oops...
1503 2004-05-30 Seth Nickell <seth@gnome.org>
1507 Add a nicer-but-less-flexible alternate API for handling
1508 calls to virtual objects in dbus.ObjectTree.
1510 Screw up the argument order to the dbus.Object constructor
1511 for consistency with dbus.ObjectTree (and to make dbus_methods
1512 optional for future extension)
1514 * python/examples/Makefile.am:
1515 * python/examples/gconf-proxy-service.py:
1516 * python/examples/gconf-proxy-service2.py:
1518 Alternate implementation of gconf-proxy-service using the
1519 nicer dbus.ObjectTree API.
1521 * python/examples/example-service.py:
1522 * python/tests/test-server.py
1524 Reverse the argument order to deal with dbus.Object constructor
1527 2004-05-30 Seth Nickell <seth@gnome.org>
1529 * python/examples/example-client.py:
1530 * python/examples/example-service.py:
1532 Take it back. Lists seem to work but they're broken
1533 in the test suite. Make the base examples use
1536 2004-05-30 Seth Nickell <seth@gnome.org>
1538 * python/dbus_bindings.pyx.in:
1539 * python/tests/test-client.py:
1541 Add some more tests and fix errors that crop up.
1542 Unfortunately, currently it seems like marshalling
1543 and unmarshalling of lists is completely broken :-(
1545 2004-05-30 Seth Nickell <seth@gnome.org>
1547 * python/dbus_bindings.pyx.in:
1549 Add support for ObjectPath type.
1553 Refactor message handling code to a common function.
1555 * python/tests/test-client.py:
1556 * python/tests/test-server.py:
1558 Add tests that check to make sure values of all types
1559 can be echoed from a service w/o mangling.
1561 2004-05-29 Seth Nickell <seth@gnome.org>
1565 Add ObjectTree class which allows implementation
1566 of trees of "virtual" objects. Basically the python
1567 wrapper for "register_fallback".
1569 * python/examples/Makefile.am
1570 * python/examples/gconf-proxy-client.py:
1571 * python/examples/gconf-proxy-service.py:
1573 Implement a simple GConf proxy service that supports
1574 get/set on string and int GConf keys using the ObjectTree.
1576 2004-05-29 Seth Nickell <seth@gnome.org>
1579 * python/examples/example-client.py:
1580 * python/examples/example-service.py:
1581 * python/examples/list-system-services.py:
1583 Add SessionBus, SystemBus and ActivationBus classes
1584 so you don't need to know the special little BUS_TYPE
1587 2004-05-29 Havoc Pennington <hp@redhat.com>
1589 * bus/config-parser.c (process_test_valid_subdir): temporarily
1590 stop testing config parser OOM handling, since expat has issues
1591 http://freedesktop.org/pipermail/dbus/2004-May/001153.html
1593 * bus/dbus-daemon-1.1.in: change requested_reply to
1594 send_requested_reply/receive_requested_reply so we can send the
1595 replies, not just receive them.
1597 * bus/config-parser.c: parse the new
1598 send_requested_reply/receive_requested_reply
1600 * bus/policy.c (bus_client_policy_check_can_send): add
1601 requested_reply argument and use it
1603 * bus/bus.c (bus_context_check_security_policy): pass through
1604 requested_reply status to message send check
1606 * bus/system.conf.in: adapt to requested_reply change
1608 2004-05-28 Havoc Pennington <hp@redhat.com>
1610 * test/glib/test-service-glib.c (main): remove unused variable
1612 * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
1614 * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
1615 from the enum, no longer in use.
1617 * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
1620 * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
1621 whether error_name passed in is a valid error name.
1623 2004-05-28 John (J5) Palmieri <johnp@redhat.com>
1625 * dbus/dbus-message.c (dbus_message_get_args): Added support for
1626 OBJECT_PATH and OBJECT_PATH_ARRAY
1628 2004-05-28 Seth Nickell <seth@gnome.org>
1630 * python/examples/Makefile.am:
1632 Forget to add Makefile.am. Do not pass go.
1634 2004-05-28 Michael Meeks <michael@ximian.com>
1636 * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal):
1639 * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
1641 * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
1642 (_dbus_message_iter_get_basic_type_array): impl.
1643 drastically simplify ~all relevant _get methods to use these.
1644 (_dbus_message_iter_append_basic_array),
1645 (dbus_message_iter_append_basic): impl
1646 drastically simplify ~all relevant _append methods to use these.
1648 * dbus/dbus-message-builder.c (parse_basic_type)
1649 (parse_basic_array, lookup_basic_type): impl.
1650 (_dbus_message_data_load): prune scads of duplicate /
1653 * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array)
1654 (_dbus_demarshal_basic_type): implement,
1655 (demarshal_and_validate_len/arg): beef up debug.
1656 (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
1658 2004-05-27 Seth Nickell <seth@gnome.org>
1661 * python/Makefile.am:
1663 Include the example python apps in the tarball.
1665 * python/examples/list-system-services.py
1667 Add a python new example that fetches the list of services
1668 from the system bus.
1670 2004-05-27 Seth Nickell <seth@gnome.org>
1673 * python/dbus_bindings.pyx.in:
1675 Fix failure to notify that a signal was not handled,
1676 resulted in hung functions.
1678 2004-05-25 Colin Walters <walters@redhat.com>
1680 * tools/dbus-monitor.c (main): Monitor all types of messages.
1682 2004-05-23 Owen Fraser-Green <owen@discobabe.net>
1684 * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
1685 which unregisters the object path and disposes the handler.
1687 2004-05-23 Kristian Høgsberg <krh@redhat.com>
1689 Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
1691 * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
1692 operands to && so we call dbus_message_iter_next () for the last
1695 2004-05-21 Olivier Andrieu <oliv__a@users.sourceforge.net>
1697 * dbus/dbus-object-tree.c
1698 (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
1699 children even if the requested path isn't registered.
1700 (object_tree_test_iteration): test object_tree_list_registered.
1702 * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
1705 2004-05-20 Kristian Høgsberg <krh@redhat.com>
1707 * doc/TODO: Remove resolved items.
1709 * bus/expirelist.h (struct BusExpireList): remove unused n_items
1712 * bus/connection.c (bus_connections_expect_reply): Enforce the
1713 per-connection limit on pending replies.
1715 Patch from Jon Trowbridge <trow@ximian.com>:
1717 * bus/main.c (setup_reload_pipe): Added. Creates a pipe and sets
1718 up a watch that triggers a config reload when one end of the pipe
1720 (signal_handler): Instead of doing the config reload in our SIGHUP
1721 handler, just write to the reload pipe and let the associated
1722 watch handle the reload when control returns to the main loop.
1724 * bus/driver.c (bus_driver_handle_reload_config): Added.
1725 Implements a ReloadConfig method for requesting a configuration
1726 file reload via the bus driver.
1728 2004-05-19 Owen Fraser-Green <owen@discobabe.net>
1730 * HACKING: Updated release instructions concerning the wiki page.
1732 2004-05-18 Kristian Høgsberg <krh@redhat.com>
1734 * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
1735 filter against auth->allowed_mechs; we only add allowed mechs in
1736 record_mechanisms().
1738 * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
1739 ALLOWED_MECHS to auth-script format so we can set the list of
1742 * data/auth/client-out-of-mechanisms.auth-script: New test to
1743 check client disconnects when it is out of mechanisms to try.
1745 * dbus/dbus-auth.c (process_command): Remove check for lines
1746 longer that 1 MB; we only buffer up maximum 16 kB.
1748 * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
1749 dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
1750 Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
1751 assume there might be unused bytes.
1753 * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
1754 client-out-of-mechs, it is handled in process_reject(). Move check
1755 for max failures to send_rejected(), as it's a server-only thing.
1757 * dbus/dbus-auth.c: Factor out protocol reply code into functions
1758 send_auth(), send_data(), send_rejected(), send_error(),
1759 send_ok(), send_begin() and send_cancel().
1761 2004-05-17 Kristian Høgsberg <krh@redhat.com>
1763 Remove base64 encoding, replace with hex encoding. Original patch
1764 from trow@ximian.com, added error handling.
1766 * dbus/dbus-string.c (_dbus_string_base64_encode)
1767 (_dbus_string_base64_decode): Remove.
1768 (_dbus_string_hex_decode): Add end_return argument so we can
1769 distinguish between OOM and invalid hex encoding.
1770 (_dbus_string_test): Remove base64 tests and add test case for
1773 * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
1774 Replace base64 with hex.
1776 * test/data/auth/invalid-hex-encoding.auth-script: New test case
1777 for invalid hex encoded data in auth protocol.
1779 2004-05-17 Olivier Andrieu <oliv__a@users.sourceforge.net>
1781 * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
1784 2004-05-15 Owen Fraser-Green <owen@discobabe.net>
1786 * mono/dbus-sharp.dll.config.in: Added for GAC
1787 * mono/dbus-sharp.snk: Added for GAC
1788 * mono/Assembly.cs.in: Added for GAC
1789 * mono/Makefile.am: Changes for GAC installation
1790 * configure.in: Added refs for dbus-sharp.dll.config.in and
1791 Assembly.cs.in. More fixes for mono testing
1792 * mono/example/Makefile.am: Changed var to CSC
1793 * Makefile.am: Changed flag name to DBUS_USE_CSC
1795 2004-05-15 Owen Fraser-Green <owen@discobabe.net>
1797 * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
1798 * mono/doc/*: Added documentation framework
1799 * configure.in: Added monodoc check
1800 * README: Added description of mono configure flags
1802 2004-05-11 John (J5) Palmieri <johnp@redhat.com>:
1804 * doc/dbus-specification.xml: Added a "Required" column to the
1805 header fields table and changed the "zero or more" verbage in
1806 the above paragraph to read "The header must contain the required
1807 named header fields and zero or more of the optional named header
1809 * test/data/invalid-messages/*.message: Added the required PATH
1810 named header field to the tests so that they don't fail on
1811 'Missing path field'
1813 2004-05-07 John (J5) Palmieri <johnp@redhat.com>
1815 * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
1816 the stack by implicitly defining variable and parameter types and
1817 removing the hack of defining C pointers as python objects and later
1820 2004-05-02 Owen Fraser-Green <owen@discobabe.net>
1822 * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
1824 2004-05-01 Owen Fraser-Green <owen@discobabe.net>
1826 * mono/DBusType/Dict.cs: Handle empty dicts
1827 * mono/DBusType/Array.cs: Handle empty arrays
1828 * mono/Arguments.cs: Handle empty arguments
1830 2004-04-30 Owen Fraser-Green <owen@discobabe.net>
1832 * dbus-sharp.pc.in: Modified to include include Libs and Requires
1835 2004-04-25 Kristian Høgsberg <krh@redhat.com>
1837 * test/data/valid-messages/standard-*.message: Update message
1838 test scripts to new header field names.
1840 2004-04-22 John (J5) Palmieri <johnp@redhat.com>
1842 * test/break-loader.c (randomly_do_n_things): tracked down buffer
1843 overflow to times_we_did_each_thing array which would chop off the
1844 first character of the failure_dir string. Increased the size of
1845 the array to 7 to reflect the number of random mutation functions
1848 2004-04-21 Kristian Høgsberg <krh@redhat.com>
1850 * dbus/dbus-server-unix.c (unix_finalize): Don't unref
1851 unix_server->watch here, it is unreffed in disconnect.
1852 (_dbus_server_new_for_tcp_socket): convert NULL host to
1853 "localhost" here so we don't append NULL to address.
1855 * dbus/dbus-server.c (_dbus_server_test): Add test case for
1856 various addresses, including tcp with no explicit host.
1858 2004-04-21 Olivier Andrieu <oliv__a@users.sourceforge.net>
1860 * dbus/dbus-message.c (decode_header_data, decode_string_field):
1861 fix incorrect setting of .name_offset in the HeaderField (it was
1862 off by two bytes, positioned right after the name and typecode)
1864 * bus/bus.c (bus_context_new, bus_context_unref): test before
1865 calling dbus_server_free_data_slot and _dbus_user_database_unref
1866 in case of an error.
1868 * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
1871 2004-04-19 Kristian Høgsberg <krh@redhat.com>
1873 * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
1874 _dbus_poll() instead of select().
1876 2004-04-15 Jon Trowbridge <trow@ximian.com>
1878 * bus/main.c (signal_handler): Reload the configuration files
1880 (main): Set up our SIGHUP handler.
1882 * bus/bus.c (struct BusContext): Store the config file, user and
1883 fork flag in the BusContext.
1884 (process_config_first_time_only): Added. Contains the code
1885 (previously in bus_context_new) for setting up the BusContext from
1886 the BusConfigParser that should only be run the first time the
1887 config files are read.
1888 (process_config_every_time): Added. Contains the code (previously
1889 in bus_context_new) for setting up the BusContext from the
1890 BusConfigParser that should be run every time the config files are
1892 (load_config): Added. Builds a BusConfigParser from the config
1893 files and passes the resulting structure off to
1894 process_config_first_time_only (assuming this is the first time)
1895 and process_config_every_time.
1896 (bus_context_new): All of the config-related code has been moved
1897 to process_config_first_time_only and process_config_every_time.
1898 Now this function just does the non-config-related initializations
1899 and calls load_config.
1900 (bus_context_reload_config): Added.
1902 2004-04-15 Olivier Andrieu <oliv__a@users.sourceforge.net>
1904 * bus/driver.c (bus_driver_handle_get_service_owner):
1905 implement a GetServiceOwner method.
1906 * doc/dbus-specification.xml: document it.
1907 * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
1909 * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
1910 implement, using the bus GetServiceOwner method.
1912 * test/glib/test-dbus-glib.c:
1913 use dbus_gproxy_new_for_service_owner so that we can receive the
1916 2004-04-15 John (J5) Palmieri <johnp@redhat.com>
1918 * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
1919 dbus/dbus-message.c, dbus/dbus-protocol.h
1920 (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
1922 * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
1923 dbus/dbus-message.c, dbus/dbus-protocol.h
1924 (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
1926 * dbus/dbus-internals.c (_dbus_header_field_to_string):
1927 DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
1928 DBUS_HEADER_FIELD_SENDER resolves to "sender"
1930 * doc/dbus-specification.xml (Header Fields Table):
1931 s/SERVICE/DESTINATION
1932 s/SENDER_SERVICE/SENDER
1935 2004-04-14 Olivier Andrieu <oliv__a@users.sourceforge.net>
1937 * test/glib/test-dbus-glib.c (timed_exit): fail the test after
1940 2004-04-13 Michael Meeks <michael@ximian.com>
1942 * glib/dbus-gobject.c (handle_introspect): split out
1943 (introspect_properties): this.
1944 (handle_introspect): implement this.
1946 * test/glib/Makefile.am: use the absolute path so the bus
1947 daemon's chdir ("/") doesn't kill us dead.
1949 * configure.in: subst ABSOLUTE_TOP_BUILDDIR
1951 2004-04-12 Jon Trowbridge <trow@ximian.com>
1953 * bus/config-parser.c (struct BusConfigParser): Added
1954 included_files field.
1955 (seen_include): Added. Checks whether or not a file has already
1956 been included by any parent BusConfigParser.
1957 (bus_config_parser_new): Copy the parent's included_files.
1958 (include_file): Track which files have been included, and fail on
1959 circular inclusions.
1960 (process_test_valid_subdir): Changed printf to report if we are
1961 testing valid or invalid conf files.
1962 (all_are_equiv): Changed printf to be a bit clearer about
1963 what we are actually doing.
1964 (bus_config_parser_test): Test invalid configuration files.
1966 2004-04-09 Jon Trowbridge <trow@ximian.com>
1968 * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
1969 argument. If non-null, the newly-constructed BusConfigParser will
1970 be initialized with the parent's BusLimits instead of the default
1972 (include_file): When including a config file, pass in
1973 the current parser as the parent and then copy the BusLimits
1974 from the included BusConfigParser pack to the current parser.
1975 (process_test_valid_subdir): Renamed from process_test_subdir.
1976 (process_test_equiv_subdir): Added. Walks through a directory,
1977 descending into each subdirectory and loading the config files
1978 it finds there. If any subdirectory contains two config files
1979 that don't produce identical BusConfigParser structs, fail.
1980 For now, the BusConfigParser's BusPolicies are not compared.
1981 (bus_config_parser_test): Call both process_test_valid_subdir and
1982 process_test_equiv_subdir.
1984 * bus/config-loader-libxml.c (bus_config_load): Take a parent
1985 argument and pass it along to the call to bus_config_parser_new.
1986 Also made a few small changes to allow this code to compile.
1988 * bus/config-loader-expat.c (bus_config_load): Take a parent
1989 argument and pass it along to the call to bus_config_parser_new.
1991 * bus/bus.c (bus_context_new): Load the config file
1992 with a NULL parent argument.
1994 2004-03-29 Michael Meeks <michael@ximian.com>
1996 * glib/dbus-gobject.c (introspect_properties): split
1997 out, fix mangled 'while' flow control.
1998 (introspect_signals): implement.
1999 (handle_introspect): update.
2001 2004-03-29 Michael Meeks <michael@ximian.com>
2003 * glib/dbus-gobject.c (set_object_property): split out /
2004 re-work, use the property type, and not the message type(!)
2005 (get_object_property): ditto.
2007 * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
2008 (dbus_gvalue_marshal): make this code re-usable, needed
2009 for signals too, also on both proxy and server side.
2010 Re-write for more efficiency / readability.
2012 2004-03-29 Michael Meeks <michael@ximian.com>
2014 * dbus/dbus-message.c
2015 (dbus_message_new_error_printf): impl.
2017 * dbus/dbus-connection.c
2018 (dbus_connection_unregister_object_path): fix warning.
2020 * configure.in: fix no-mono-installed situation.
2022 2004-03-27 Havoc Pennington <hp@redhat.com>
2024 Patch from Timo Teräs:
2026 * tools/dbus-send.c (main): if --print-reply, assume type is
2027 method call; support boolean type args
2029 * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
2030 bunch of memleak and logic bugs
2032 2004-03-23 Owen Fraser-Green <owen@discobabe.net>
2034 * mono/Arguments.cs:
2035 * mono/Introspector.cs:
2037 * mono/InterfaceProxy.cs:
2039 * mono/ProxyBuilder.cs:
2041 Added InterfaceProxy class to avoid building proxies for every
2045 * dbus-message.c (dbus_message_append_args_valist)
2046 (dbus_message_iter_get_object_path)
2047 (dbus_message_iter_get_object_path_array)
2048 (dbus_message_iter_append_object_path)
2049 (dbus_message_iter_append_object_path_array):
2050 Added object_path iter functions to handle OBJECT_PATH arguments
2052 2004-03-23 Owen Fraser-Green <owen@discobabe.net>
2054 First checkin of mono bindings.
2057 Build stuff for the bindings
2058 * dbus-sharp.pc.in: Added for pkgconfig
2060 2004-03-21 Havoc Pennington <hp@redhat.com>
2062 * test/test-service.c (main): remove debug spew
2064 2004-03-21 Olivier Andrieu <oliv__a@users.sourceforge.net>
2066 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
2069 * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
2070 (dbus_message_iter_init_array_iterator)
2071 (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
2072 indicate whether the iterator is empty
2074 * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
2077 2004-03-19 Havoc Pennington <hp@redhat.com>
2079 * NEWS: 0.21 updates
2081 * configure.in: 0.21
2083 * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
2085 * python/Makefile.am: change to avoid dist of dbus_bindings.c so
2086 you don't need pyrex to make dist
2088 * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
2091 2004-03-18 Richard Hult <richard@imendio.com>
2093 * dbus/dbus-message.c (dbus_message_get_auto_activation)
2094 (dbus_message_set_auto_activation): Add doxygen docs.
2096 2004-03-16 Richard Hult <richard@imendio.com>
2098 * bus/activation.c: (bus_activation_service_created),
2099 (bus_activation_send_pending_auto_activation_messages),
2100 (bus_activation_activate_service):
2102 * bus/dispatch.c: (bus_dispatch),
2103 (check_nonexistent_service_auto_activation),
2104 (check_service_auto_activated),
2105 (check_segfault_service_auto_activation),
2106 (check_existent_service_auto_activation), (bus_dispatch_test):
2107 * bus/driver.c: (bus_driver_handle_activate_service):
2108 * bus/services.c: (bus_registry_acquire_service):
2109 * dbus/dbus-message.c: (dbus_message_set_auto_activation),
2110 (dbus_message_get_auto_activation):
2111 * dbus/dbus-message.h:
2112 * dbus/dbus-protocol.h: Implement auto-activation.
2114 * doc/dbus-specification.xml: Add auto-activation to the spec.
2116 2004-03-12 Olivier Andrieu <oliv__a@users.sourceforge.net>
2118 * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
2119 fix a bug with CUSTOM types.
2121 * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
2122 a unit test for this bug (used to fail).
2124 2004-03-12 Mikael Hallendal <micke@imendio.com>
2127 (babysitter_watch_callback): notify all pending activations waiting for
2128 the same exec that the activation failed.
2129 (bus_activation_activate_service): shortcut the activation if we
2130 already waiting for the same executable to start up.
2132 2004-03-12 Mikael Hallendal <micke@imendio.com>
2135 - Added service file reloading.
2136 Each service files directory is kept in an hash table in
2137 BusActivation and each BusActivationEntry knows what .service-file it
2138 was read from. So when you try to activate a service the bus will
2139 check if it's been updated, removed or if new .service-files has
2141 - Test code at the bottom for the service file reloading.
2142 * bus/test-main.c: (main):
2144 - added service reloading test.
2145 * dbus/dbus-sysdeps.c:
2146 * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
2148 2004-03-08 Michael Meeks <michael@ximian.com>
2150 * dbus/dbus-connection.c (_dbus_connection_block_for_reply):
2151 bail immediately if disconnected, to avoid busy loop.
2153 * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
2154 cleanup cut/paste/inefficiency.
2156 2004-03-01 David Zeuthen <david@fubar.dk>
2158 * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
2159 bug where args were used twice. This bug resulted in a segfault
2160 on a Debian/PPC system when starting the messagebus daemon. Include
2161 dbus-sysdeps.h for DBUS_VA_COPY
2163 * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
2165 * configure.in: Check for va_copy; define DBUS_VA_COPY to the
2166 appropriate va_copy implementation. From GLib
2168 2004-02-24 Joe Shaw <joe@ximian.com>
2170 * bus/services.c (bus_registry_acquire_service): We need to pass
2171 in the service name to dbus_set_error() to prevent a crash.
2173 2003-12-26 Anders Carlsson <andersca@gnome.org>
2175 * AUTHORS: Reveal my True identity.
2177 2003-12-17 Mikael Hallendal <micke@imendio.com>
2179 * dbus/dbus-message.c: (dbus_message_append_args_valist):
2180 - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
2182 2003-12-13 Mikael Hallendal <micke@imendio.com>
2184 * doc/TODO: Added not about better error check of configuration files.
2186 2003-12-02 Richard Hult <richard@imendio.com>
2188 * Update AFL version to 2.0 throughout the source files to reflect
2189 the update that was done a while ago.
2191 2003-12-02 Richard Hult <richard@imendio.com>
2193 * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
2194 wrote_dict_key to FALSE on the iter that the dict is appended to,
2195 just like when appending other types. Fixes a bug where a dict
2196 couldn't be put inside a dict.
2197 (dbus_message_iter_append_dict_key): Fix typo in warning message.
2198 (message_iter_test, _dbus_message_test): Add test case for dict
2201 2003-12-01 David Zeuthen <david@fubar.dk>
2203 * python/dbus.py: Add the actual message when calling the reciever
2204 of a signal such that parameters can be inspected. Add the method
2205 remove_signal_receiver
2207 2003-11-26 Mikael Hallendal <micke@imendio.com>
2211 * glib/*.[ch]: Made ref functions return the pointer
2213 2003-11-25 Zack Rusin <zack@kde.org>
2215 * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
2217 * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer
2220 * qt/connection.h, qt/connection.cpp: Adjusting to changes in
2221 the Integrator and to better fit with the server,
2223 2003-11-24 Zack Rusin <zack@kde.org>
2225 * qt/connection.h, qt/connection.cpp: removing initDbus method since
2226 the integrator handles it now
2228 * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
2229 since QTimer wasn't really meant to be used the way DBusTimeout is
2231 2003-11-24 Zack Rusin <zack@kde.org>
2233 * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding
2234 Integrator class which integrates D-BUS with the Qt event loop,
2236 * qt/connection.h, qt/connection.cpp: Move all the code which
2237 was dealing with D-BUS integration to the Integrator class,
2238 and start using Integrator,
2240 2003-11-23 Zack Rusin <zack@kde.org>
2242 * qt/connection.h, qt/connection.cpp: Adding the DBusConnection
2245 * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
2246 switching namespaces to DBusQt, reworking the class,
2248 * Makefile.cvs: switching dependencies so that it matches KDE
2251 * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to
2254 2003-11-19 Havoc Pennington <hp@redhat.com>
2258 * configure.in: bump version to 0.20
2260 * configure.in (have_qt): add yet another place to look for qt
2261 (someone hand trolltech a .pc file...)
2263 2003-11-01 Havoc Pennington <hp@redhat.com>
2265 * doc/dbus-specification.xml: add state machine docs on the auth
2266 protocol; just a first draft, I'm sure it's wrong.
2268 2003-10-28 David Zeuthen <david@fubar.dk>
2270 * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
2271 return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
2273 2003-10-28 Havoc Pennington <hp@redhat.com>
2275 * dbus/dbus-message.c (get_next_field): delete unused function
2277 2003-10-28 Havoc Pennington <hp@redhat.com>
2279 * bus/expirelist.c (do_expiration_with_current_time): detect
2280 failure of the expire_func due to OOM
2282 * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
2284 * bus/dispatch.c (check_send_exit_to_service): fix to handle the
2285 NoReply error that's now created by the bus when the service exits
2287 2003-10-28 Havoc Pennington <hp@redhat.com>
2289 * dbus/dbus-message.c (_dbus_message_test): enable and fix the
2290 tests for set_path, set_interface, set_member, etc.
2292 * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
2294 * dbus/dbus-message.c (set_string_field): always just delete and
2295 re-append the field; accept NULL for deletion
2296 (re_align_fields_recurse): reimplement
2298 2003-10-26 Havoc Pennington <hp@redhat.com>
2300 * dbus/dbus-connection.c: fix docs to properly describe the
2301 disconnected message
2302 (_dbus_connection_notify_disconnected): remove this function;
2303 we can't synchronously add the disconnected message, we have to
2304 do it after we've queued any remaining real messages
2305 (_dbus_connection_get_dispatch_status_unlocked): queue the
2306 disconnect message only if the transport has finished queueing all
2307 its real messages and is disconnected.
2308 (dbus_connection_disconnect): update the dispatch status here
2310 2003-10-22 Havoc Pennington <hp@redhat.com>
2312 * bus/bus.c (bus_context_check_security_policy): fix up assertion
2314 * bus/connection.c (bus_transaction_send_from_driver): set the
2315 destination to the connection's base service
2317 2003-10-20 Havoc Pennington <hp@redhat.com>
2319 hmm, make check is currently not passing.
2321 * doc/dbus-specification.xml: add requirement that custom type
2322 names follow the same rules as interface names.
2324 * dbus/dbus-protocol.h: change some of the byte codes, to avoid
2325 duplication and allow 'c' to be 'custom'; dict is now 'm' for
2328 * doc/dbus-specification.xml: update type codes to match
2329 dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
2330 CUSTOM. Add type OBJECT_PATH to the spec.
2332 2003-10-17 Havoc Pennington <hp@redhat.com>
2334 * bus/driver.c (create_unique_client_name): use "." as separator
2335 in base service names instead of '-'
2337 * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
2338 byte at the end of the string
2340 * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
2341 optimization macros since string validation seems to be a slow
2344 * doc/dbus-specification.xml: restrict valid
2345 service/interface/member/error names. Add test suite code for the
2348 * dbus/dbus-string.c: limit service/interface/member/error names
2351 * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
2352 format arg to verbose spew
2354 * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
2355 memory, return instead of g_error
2357 * test/test-service.c (path_message_func): support emitting a
2360 * dbus/dbus-bus.c (init_connections_unlocked): only fill in
2361 activation bus type if DBUS_BUS_ACTIVATION was set; default to
2362 assuming the activation bus was the session bus so that services
2363 started manually will still register.
2364 (init_connections_unlocked): fix so that in OOM situation we get
2365 the same semantics when retrying the function
2367 * test/test-service.c (main): change to use path registration, to
2368 test those codepaths; register with DBUS_BUS_ACTIVATION rather
2369 than DBUS_BUS_SESSION
2371 2003-10-16 Havoc Pennington <hp@redhat.com>
2373 * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
2375 * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
2376 coverage of the tests
2377 (coverage-report.txt): don't move the .da and .bbg files around
2379 2003-10-16 Havoc Pennington <hp@redhat.com>
2381 * bus/bus.c (struct BusContext): remove struct field I didn't mean
2384 2003-10-16 Havoc Pennington <hp@redhat.com>
2386 * bus/connection.c (bus_pending_reply_expired): either cancel or
2388 (bus_connections_check_reply): use unlink, not remove_link, as we
2389 don't want to free the link; fixes double free mess
2391 * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
2392 where no reply was received
2394 * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
2397 * bus/signals.c (match_rule_matches): add special cases for the
2398 bus driver, so you can match on sender/destination for it.
2400 * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
2401 DBUS_PRINT_BACKTRACE is set
2403 * dbus/dbus-internals.c: add pid to assertion failure messages
2405 * dbus/dbus-connection.c: add message type code to the debug spew
2407 * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
2408 sender=foo not service=foo
2410 * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
2411 session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use
2412 DBUS_ACTIVATION_ADDRESS instead
2414 * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
2415 DBUS_SYSTEM_BUS_ADDRESS if appropriate
2417 * bus/bus.c (bus_context_new): handle OOM copying bus type into
2420 * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
2421 (dbus_message_iter_get_object_path_array): new function (half
2422 finished, disabled for the moment)
2424 * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
2425 DBUS_MESSAGE_TYPE_ERROR
2427 * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
2428 avoid redirecting stderr to /dev/null
2429 (babysit): close stdin if not doing the "exit_with_session" thing
2431 * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
2432 debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
2433 stdout/stdin, so things don't get confused
2435 * bus/system.conf.in: fix to allow replies, I modified .conf
2436 instead of .conf.in again.
2438 2003-10-14 David Zeuthen <david@fubar.dk>
2440 * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
2441 argtype to arg_type when raising unknown arg type exception.
2442 Changed type list to reflect the changes in dbus-protocol.h so
2443 the bindings actually work.
2445 2003-10-14 Havoc Pennington <hp@redhat.com>
2447 * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
2448 to have a bug keeping it from outputting the .da files sometimes
2449 (string_get_string): don't append garbage nul bytes to the string.
2451 2003-10-15 Seth Nickell <seth@gnome.org>
2453 * python/Makefile.am:
2455 Include dbus_h_wrapper.h in the dist tarball.
2457 2003-10-14 Havoc Pennington <hp@redhat.com>
2459 * bus/bus.c (bus_context_check_security_policy): revamp this to
2460 work more sanely with new policy-based requested reply setup
2462 * bus/connection.c (bus_transaction_send_from_driver): set bus
2463 driver messages as no reply
2465 * bus/policy.c (bus_client_policy_check_can_receive): handle a
2466 requested_reply attribute on allow/deny rules
2468 * bus/system.conf: add <allow requested_reply="true"/>
2470 * bus/driver.c (bus_driver_handle_message): fix check for replies
2471 sent to the bus driver, which was backward. How did this ever work
2472 at all though? I think I'm missing something.
2474 * dbus/dbus-message.c (decode_header_data): require error and
2475 method return messages to have a reply serial field to be valid
2476 (_dbus_message_loader_queue_messages): break up this function;
2477 validate that reply serial and plain serial are nonzero;
2478 clean up the OOM/error handling.
2479 (get_uint_field): don't return -1 from this
2480 (dbus_message_create_header): fix signed/unsigned bug
2482 * bus/connection.c (bus_connections_expect_reply): save serial of
2483 the incoming message, not reply serial
2485 2003-10-14 Havoc Pennington <hp@redhat.com>
2487 * bus/connection.c: implement pending reply tracking using
2490 * bus/bus.c (bus_context_check_security_policy): verify that a
2491 reply is pending in order to allow a reply to be sent. Deny
2492 messages of unknown type.
2494 * bus/dbus-daemon-1.1.in: update to mention new resource limits
2496 * bus/bus.c (bus_context_get_max_replies_per_connection): new
2497 (bus_context_get_reply_timeout): new
2499 2003-10-13 Seth Nickell <seth@gnome.org>
2501 * python/Makefile.am:
2503 Pass "make distcheck": remove a couple files from DIST_FILES
2504 that weren't included in the final version.
2506 2003-10-12 Havoc Pennington <hp@pobox.com>
2508 Added test code that 1) starts an actual bus daemon and 2) uses
2509 DBusGProxy; fixed bugs that were revealed by the test. Lots
2510 more testing possible, but this is the basic framework.
2512 * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
2513 empty proxy lists from the proxy list hash
2515 * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
2516 couple of return_if_fail checks
2518 * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
2519 to allocate, so everything is cleared to NULL as it should be.
2521 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
2522 source as data to dbus_connection_set_timeout_functions() as the
2523 timeout functions expected
2525 * test/glib/run-test.sh: add a little script to start up a message
2526 bus and run tests using it
2528 * tools/dbus-launch.1: updates
2530 * tools/dbus-launch.c (main): add --config-file option
2532 * tools/dbus-launch.c (main): remove confusing else if (runprog)
2533 that could never be reached.
2535 * dbus/dbus-message.c (dbus_message_new_method_return)
2536 (dbus_message_new_error, dbus_message_new_signal): set the
2537 no-reply-expected flag on all these. Redundant, but may
2538 as well be consistent.
2540 2003-10-11 Havoc Pennington <hp@pobox.com>
2542 * test/decode-gcov.c (function_solve_graph): make broken block
2543 graph a nonfatal error since it seems to be broken. Need to debug
2546 * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
2547 can't just check type > INVALID < LAST anymore
2549 * dbus/dbus-message.c (dbus_message_get_signature): new function
2550 (dbus_message_has_signature): new function
2551 (struct DBusMessage): add signature field (right now it isn't sent
2552 over the wire, just generated on the fly)
2553 (dbus_message_copy): copy the signature, and init strings to
2554 proper length to avoid some reallocs
2555 (dbus_message_iter_init_array_iterator): return void, since it
2557 (dbus_message_iter_init_dict_iterator): return void since it can't fail
2558 (_dbus_message_loader_queue_messages): add silly temporary hack to
2559 fill in message->signature on load
2561 * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
2562 characters, so they are relatively human-readable.
2564 2003-10-11 Havoc Pennington <hp@pobox.com>
2566 * dbus/dbus-message.c (_dbus_message_test): add more test
2567 coverage, but #if 0 for now since they uncover a bug
2568 not fixed yet; I think in re_align_field_recurse()
2569 (re_align_field_recurse): add FIXME about broken assertion
2571 * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
2573 * bus/connection.c: share a couple code bits with expirelist.c
2575 * bus/expirelist.h, bus/expirelist.c: implement a generic
2576 expire-items-after-N-seconds facility, was going to share between
2577 expiring connections and replies, decided not to use for expiring
2578 connections for now.
2580 * COPYING: include AFL 2.0 (still need to change all the file headers)
2582 2003-10-09 Havoc Pennington <hp@redhat.com>
2584 * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
2585 gcc 3.3. Not that we do anything about it yet.
2587 * bus/signals.c (bus_match_rule_parse): impose max length on the
2590 * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
2592 2003-10-09 Havoc Pennington <hp@redhat.com>
2594 Make matching rules theoretically work (add parser).
2596 * bus/bus.c (bus_context_check_security_policy): fix up to handle
2597 the case where destination is explicitly specified as bus driver
2598 and someone else is eavesdropping.
2600 * bus/policy.c (bus_client_policy_check_can_receive): fix up
2601 definition of eavesdropping and assertion
2603 * tools/dbus-send.c (main): use dbus_message_type_from_string
2605 * bus/signals.c (bus_match_rule_parse): implement
2607 * dbus/dbus-message.c (dbus_message_type_from_string): new
2609 * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
2611 2003-10-02 Havoc Pennington <hp@pobox.com>
2613 * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
2614 dbus_gproxy_oneway_call
2616 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main)
2617 (dbus_server_setup_with_g_main): fix to allow calling them more
2618 than once on the same args
2619 (dbus_bus_get_with_g_main): new function
2621 2003-10-02 Havoc Pennington <hp@redhat.com>
2623 * doc/dbus-tutorial.xml: write some stuff
2625 2003-09-29 Havoc Pennington <hp@pobox.com>
2627 * configure.in: split checks for Doxygen from XML docs, check for
2630 * doc/Makefile.am: XML-ify all the docs, and add a blank
2633 2003-09-29 Havoc Pennington <hp@pobox.com>
2635 * Merge dbus-object-names branch. To see the entire patch
2636 do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
2637 it's huuuuge though.
2638 To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
2640 2003-09-28 Havoc Pennington <hp@pobox.com>
2642 * HACKING: update to reflect new server
2644 2003-09-26 Seth Nickell <seth@gnome.org>
2647 * python/examples/example-signals.py:
2649 Start implementing some notions of signals. The API
2650 is really terrible, but they sort of work (with the
2651 exception of being able to filter by service, and to
2652 transmit signals *as* a particular service). Need to
2653 figure out how to make messages come from the service
2656 * python/dbus_bindings.pyx.in:
2658 Removed duplicate message_handler callbacks.
2660 2003-09-25 Havoc Pennington <hp@redhat.com>
2662 * bus/session.conf.in: fix my mess
2664 2003-09-25 Havoc Pennington <hp@pobox.com>
2666 * bus/session.conf.in: fix security policy, reported by Seth Nickell
2668 2003-09-25 Seth Nickell <seth@gnome.org>
2670 * python/examples/example-service.py:
2672 Johan notices complete wrong code in example-service, but
2673 completely wrong in a way that works exactly the same (!).
2674 Johan is confused, how could this possibly work? Example
2675 code fails to serve purpose of making things clear.
2678 2003-09-25 Mark McLoughlin <mark@skynet.ie>
2680 * doc/dbus-specification.sgml: don't require header fields
2681 to be 4-byte aligned and specify that fields should be
2682 distinguished from padding by the fact that zero is not
2685 * doc/TODO: remove re-alignment item and add item to doc
2686 the OBJECT_PATH type.
2688 * dbus/dbus-message.c:
2689 (HeaderField): rename the original member to value_offset
2690 and introduce a name_offset member to keep track of where
2691 the field actually begins.
2692 (adjust_field_offsets): remove.
2693 (append_int_field), (append_uint_field),
2694 (append_string_field): don't align the start of the header
2695 field to a 4-byte boundary.
2696 (get_next_field): impl finding the next marhsalled field
2697 after a given field.
2698 (re_align_field_recurse): impl re-aligning a number of
2699 already marshalled fields.
2700 (delete_field): impl deleting a field of any type and
2701 re-aligning any following fields.
2702 (delete_int_or_uint_field), (delete_string_field): remove.
2703 (set_int_field), (set_uint_field): no need to re-check
2704 that we have the correct type for the field.
2705 (set_string_field): ditto and impl re-aligning any
2707 (decode_header_data): update to take into account that
2708 the fields aren't 4-byte aligned any more and the new
2709 way to distinguish padding from header fields. Also,
2710 don't exit when there is too much header padding.
2711 (process_test_subdir): print the directory.
2712 (_dbus_message_test): add test to make sure a following
2713 field is re-aligned correctly after field deletion.
2715 * dbus/dbus-string.[ch]:
2716 (_dbus_string_insert_bytes): rename from insert_byte and
2717 allow the insert of multiple bytes.
2718 (_dbus_string_test): test inserting multiple bytes.
2720 * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
2721 warning note to docs about having to re-align any
2722 marshalled values following the string.
2724 * dbus/dbus-message-builder.c:
2725 (append_string_field), (_dbus_message_data_load):
2726 don't align the header field.
2728 * dbus/dbus-auth.c: (process_test_subdir): print the
2731 * test/break-loader.c: (randomly_add_one_byte): upd. for
2734 * test/data/invalid-messages/bad-header-field-alignment.message:
2737 * test/data/valid-messages/unknown-header-field.message: shove
2738 a dict in the unknown field.
2740 2003-09-25 Seth Nickell <seth@gnome.org>
2743 * python/dbus_bindings.pyx.in:
2745 Handle return values.
2747 * python/examples/example-client.py:
2748 * python/examples/example-service.py:
2750 Pass back return values from the service to the client.
2752 2003-09-24 Seth Nickell <seth@gnome.org>
2756 Connect Object methods (when you are sharing an object) up... pass
2757 in a list of methods to be shared. Sharing all the methods just
2758 worked out too weird. You can now create nice Services over the
2761 * python/dbus_bindings.pyx.in:
2763 Keep references to user_data tuples passed into C functions so
2764 Python doesn't garbage collect on us.
2766 Implement MethodReturn and Error subclasses of Message for creating
2767 DBusMessage's of those types.
2769 * python/examples/example-client.py:
2770 * python/examples/example-service.py:
2772 Simple example code showing both how create DBus services and objects,
2773 and how to use them.
2775 2003-09-23 Havoc Pennington <hp@pobox.com>
2777 * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
2779 2003-09-23 Havoc Pennington <hp@redhat.com>
2781 * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
2782 (dbus_gproxy_disconnect_signal): implement
2783 (dbus_gproxy_manager_remove_signal_match): implement
2784 (dbus_gproxy_manager_add_signal_match): implement
2785 (dbus_gproxy_oneway_call): implement
2787 2003-09-23 Havoc Pennington <hp@pobox.com>
2789 * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
2790 subclass. This means dropping the transparent thread safety of the
2791 proxy; you now need a separate proxy per-thread, or your own
2792 locking on the proxy. Probably right anyway.
2793 (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
2795 2003-09-22 Havoc Pennington <hp@redhat.com>
2797 * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
2799 2003-09-21 Seth Nickell <seth@gnome.org>
2801 First checkin of the Python bindings.
2803 * python/.cvsignore:
2804 * python/Makefile.am:
2805 * python/dbus_bindings.pyx.in:
2806 * python/dbus_h_wrapper.h:
2808 Pieces for Pyrex to operate on, building a dbus_bindings.so
2809 python module for low-level access to the DBus APIs.
2813 High-level Python module for accessing DBus objects.
2818 Build stuff for the python bindings.
2822 Extra macro needed for finding the Python C header files.
2824 2003-09-21 Havoc Pennington <hp@pobox.com>
2826 * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
2827 implementing the proxy manager, didn't get very far.
2829 * dbus/dbus-bus.c (dbus_bus_add_match): new
2830 (dbus_bus_remove_match): new
2832 * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
2833 path_name argument; adjust the other not-yet-implemented
2834 gproxy constructors to be what I think they should be.
2836 2003-09-21 Havoc Pennington <hp@pobox.com>
2838 * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
2839 by default for message bus connections.
2841 * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
2842 exit_on_disconnect flag is set and we process the disconnected
2844 (dbus_connection_set_exit_on_disconnect): new function
2846 2003-09-21 Havoc Pennington <hp@pobox.com>
2848 Get matching rules mostly working in the bus; only actually
2849 parsing the rule text remains. However, the client side of
2850 "signal connections" hasn't been started, this patch is only the
2853 * dbus/dispatch.c: fix for the matching rules changes
2855 * bus/driver.c (bus_driver_handle_remove_match)
2856 (bus_driver_handle_add_match): send an ack reply from these
2859 * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
2860 arguments, reported by Seth Nickell
2862 * bus/config-parser.c (append_rule_from_element): support
2863 eavesdrop=true|false attribute on policies so match rules
2864 can be prevented from snooping on the system bus.
2866 * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
2867 and "destination" in attribute names; fix some docs bugs;
2868 add eavesdrop=true|false attribute
2870 * bus/driver.c (bus_driver_handle_add_match)
2871 (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
2874 * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
2875 rid of broadcast service concept, signals are just always broadcast
2877 * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
2878 mostly implement matching rules stuff (currently only exposed as signal
2881 2003-09-21 Mark McLoughlin <mark@skynet.ie>
2883 * doc/dbus-specification.sgml: Change the header field name
2884 to be an enum and update the rest of the spec to reference
2885 the fields using the conventinal name.
2887 * dbus/dbus-protocol.h: update to reflect the spec.
2889 * doc/TODO: add item to remove the 4 byte alignment requirement.
2891 * dbus/dbus-message.c: Remove the code to generalise the
2892 header/body length and serial number header fields as named
2893 header fields so we can reference field names using the
2895 (append_int_field), (append_uint_field), (append_string_field):
2896 Append the field name as a byte rather than four chars.
2897 (delete_int_or_uint_field), (delete_string_field): reflect the
2898 fact that the field name and typecode now occupy 4 bytes instead
2900 (decode_string_field), (decode_header_data): update to reflect
2901 protocol changes and move the field specific encoding from
2902 decode_string_field() back into decode_header_data().
2904 * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
2905 Add utility to aid debugging.
2907 * dbus/dbus-message-builder.c:
2908 (append_string_field), (_dbus_message_data_load): Update to
2909 reflect protocol changes; Change the FIELD_NAME directive
2910 to HEADER_FIELD and allow it to take the field's conventional
2911 name rather than the actual value.
2913 * test/data/*/*.message: Update to use HEADER_FIELD instead
2914 of FIELD_NAME; Always align the header on an 8 byte boundary
2915 *before* updating the header length.
2917 2003-09-15 Havoc Pennington <hp@pobox.com>
2919 * dbus/dbus-pending-call.c: add the get/set object data
2920 boilerplate as for DBusConnection, etc. Use generic object data
2921 for the notify callback.
2923 * glib/dbus-gparser.c (parse_node): parse child nodes
2925 * tools/dbus-viewer.c: more hacking on the dbus-viewer
2927 * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
2928 contain functions shared between the convenience lib and the
2931 * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
2932 -export-symbols-regex to the GLib library
2934 * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
2935 fix the locking in here, and add a default handler for
2936 Introspect() that just returns sub-nodes.
2938 2003-09-14 Havoc Pennington <hp@pobox.com>
2940 * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
2941 rather than gfoo consistent
2943 * glib/dbus-gproxy.h: delete for now, move contents to
2944 dbus-glib.h, because the include files don't work right since we
2945 aren't in the dbus/ subdir.
2947 * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
2948 (dbus_gproxy_end_call): finish
2949 (dbus_gproxy_begin_call): finish
2951 * glib/dbus-gmain.c (dbus_set_g_error): new
2953 * glib/dbus-gobject.c (handle_introspect): include information
2954 about child nodes in the introspection
2956 * dbus/dbus-connection.c (dbus_connection_list_registered): new
2957 function to help in implementation of introspection
2959 * dbus/dbus-object-tree.c
2960 (_dbus_object_tree_list_registered_and_unlock): new function
2962 2003-09-12 Havoc Pennington <hp@pobox.com>
2964 * glib/dbus-gidl.h: add common base class for all the foo_info
2967 * tools/dbus-viewer.c: add GTK-based introspection UI thingy
2970 * test/Makefile.am: try test srcdir -ef . in addition to test
2971 srcdir = ., one of them should work (yeah lame)
2973 * glib/Makefile.am: build the "idl" parser stuff as a convenience
2976 * glib/dbus-gparser.h: make description_load routines return
2977 NodeInfo* not Parser*
2979 * Makefile.am (SUBDIRS): build test dir after all library dirs
2981 * configure.in: add GTK+ detection
2983 2003-09-07 Havoc Pennington <hp@pobox.com>
2985 * Make Doxygen contented.
2987 2003-09-07 Havoc Pennington <hp@pobox.com>
2989 * doc/dbus-specification.sgml: more updates
2991 2003-09-06 Havoc Pennington <hp@pobox.com>
2993 * doc/dbus-specification.sgml: partial updates
2995 * bus/dbus-daemon-1.1.in: fix the config file docs for the
2996 zillionth time; hopefully I edited the right file this time.
2998 * bus/config-parser.c (append_rule_from_element): support
2999 send_type, send_path, receive_type, receive_path
3001 * bus/policy.c: add message type and path to the list of things
3002 that can be "firewalled"
3004 2003-09-06 Havoc Pennington <hp@pobox.com>
3006 * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
3007 (dbus_connection_register_object_path): make this not handle
3008 messages to paths below the given path
3010 2003-09-03 Havoc Pennington <hp@pobox.com>
3012 * test/glib/Makefile.am: add this with random glib-linked test
3015 * glib/Makefile.am: remove the random test programs from here,
3016 leave only the unit tests
3018 * glib/dbus-gobject.c (_dbus_gobject_test): add test for
3019 uscore/javacaps conversion, and fix
3020 (get_object_property, set_object_property): change to .NET
3021 convention for mapping props to methods, set_FooBar/get_FooBar,
3022 since one language has such a convention we may as well copy it.
3023 Plus real methods in either getFooBar or get_foo_bar style won't
3024 collide with this convention.
3026 2003-09-01 Havoc Pennington <hp@pobox.com>
3028 * glib/dbus-gparser.c: implement
3030 * glib/dbus-gobject.c: start implementing skeletons support
3032 * configure.in: when disabling checks/assert, also define
3033 G_DISABLE_ASSERT and G_DISABLE_CHECKS
3035 2003-09-01 Havoc Pennington <hp@pobox.com>
3037 * glib/Makefile.am: rearrange a bunch of files and get "make
3038 check" framework set up
3040 2003-08-31 Havoc Pennington <hp@pobox.com>
3042 * fix build with --disable-tests
3044 2003-08-30 Havoc Pennington <hp@pobox.com>
3046 * dbus/dbus-connection.c: purge DBusMessageHandler
3048 * dbus/dbus-message-handler.c: remove DBusMessageHandler, just
3049 use callbacks everywhere
3051 2003-08-30 Havoc Pennington <hp@pobox.com>
3053 * test/data/valid-config-files/system.d/test.conf: change to
3054 root for the user so warnings don't get printed
3056 * dbus/dbus-message.c: add dbus_message_get_path,
3057 dbus_message_set_path
3059 * dbus/dbus-object-tree.c (do_test_dispatch): add test of
3060 dispatching to a path
3062 * dbus/dbus-string.c (_dbus_string_validate_path): add
3064 * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
3065 (_dbus_marshal_object_path): implement
3067 * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field
3068 to contain the path to the target object
3069 (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
3070 DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
3072 2003-08-30 Havoc Pennington <hp@pobox.com>
3074 * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
3076 2003-08-29 Havoc Pennington <hp@pobox.com>
3078 * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
3080 (struct DBusObjectSubtree): shrink this
3081 a lot, since we may have a lot of them
3082 (_dbus_object_tree_free_all_unlocked): implement
3083 (_dbus_object_tree_dispatch_and_unlock): implement
3085 2003-08-29 Havoc Pennington <hp@pobox.com>
3087 * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
3089 2003-08-28 Havoc Pennington <hp@pobox.com>
3093 * dbus/dbus-connection.c: port to no ObjectID, create a
3094 DBusObjectTree, rename ObjectTree to ObjectPath in public API
3096 * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete
3097 everything except UnregisterFunction and MessageFunction
3099 * dbus/dbus-marshal.c: port away from DBusObjectID,
3100 add DBUS_TYPE_OBJECT_PATH
3102 * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc],
3103 dbus/dbus-objectid.[hc]: remove these, we are moving to
3104 path-based object IDs
3106 2003-08-25 Havoc Pennington <hp@pobox.com>
3108 Just noticed that dbus_message_test is hosed, I wonder when I
3109 broke that. I thought make check was passing earlier...
3111 * dbus/dbus-object-tree.c: add new "object tree" to match DCOP
3112 container tree, will replace most of dbus-object-registry
3114 * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
3117 2003-08-19 Havoc Pennington <hp@pobox.com>
3119 * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
3120 (dbus_message_is_error): fix this function
3122 * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
3125 * bus/policy.c (bus_client_policy_check_can_receive): fix code to
3126 reflect clarified man page
3127 (bus_client_policy_check_can_send): ditto
3129 * bus/session.conf.in: fixup
3131 * bus/system.conf.in: fixup
3133 2003-08-18 Havoc Pennington <hp@redhat.com>
3135 * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
3137 * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
3138 dumb bug created earlier (wrong order of args to
3139 decode_header_data())
3141 * tools/dbus-send.c: port
3143 * tools/dbus-print-message.c (print_message): port
3145 * test/data/*messages: port all messages over
3147 * dbus/dbus-message-builder.c: support including
3150 * bus/driver.c: port over
3152 * bus/dispatch.c: port over to new stuff
3154 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
3155 rename disconnect signal to "Disconnected"
3157 2003-08-17 Havoc Pennington <hp@pobox.com>
3159 This doesn't compile yet, but syncing up so I can hack on it from
3160 work. What are branches for if not broken code? ;-)
3162 * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
3163 DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
3164 DBUS_HEADER_FIELD_ERROR_NAME
3166 * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
3167 for the interface+member pairs
3168 (string_hash): change to use g_str_hash algorithm
3169 (find_direct_function, find_string_function): refactor these to
3172 * dbus/dbus-message.c: port all of this over to support
3173 interface/member fields instead of name field
3175 * dbus/dbus-object-registry.c: port over
3177 * dbus/dbus-string.c (_dbus_string_validate_interface): rename
3178 from _dbus_string_validate_name
3180 * bus/dbus-daemon-1.1: change file format for the
3181 <deny>/<allow> stuff to match new message naming scheme
3183 * bus/policy.c: port over
3185 * bus/config-parser.c: parse new format
3187 2003-08-16 Havoc Pennington <hp@pobox.com>
3189 * dbus/dbus-object-registry.c (add_and_remove_objects): remove
3192 * glib/dbus-gproxy.c: some hacking
3194 2003-08-15 Havoc Pennington <hp@redhat.com>
3196 * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
3198 * dbus/dbus-connection.c
3199 (dbus_connection_send_with_reply_and_block): factor out internals;
3200 change to convert any error replies to DBusError instead of
3201 returning them as a message
3203 2003-08-15 Havoc Pennington <hp@pobox.com>
3205 * dbus/dbus-connection.c,
3206 dbus/dbus-pending-call.c: Finish the pending call stuff
3208 2003-08-14 Havoc Pennington <hp@redhat.com>
3210 * dbus/dbus-pending-call.c: start on new object that will replace
3211 DBusMessageHandler and ReplyHandlerData for tracking outstanding
3214 * dbus/dbus-gproxy.c: start on proxy object used to communicate
3215 with remote interfaces
3217 * dbus/dbus-gidl.c: do the boring boilerplate in here
3219 2003-08-12 Havoc Pennington <hp@pobox.com>
3221 * bus/dispatch.c (bus_dispatch): make this return proper
3222 DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
3224 * dbus/dbus-errors.c (dbus_set_error): use
3225 _dbus_string_append_printf_valist
3227 * dbus/dbus-string.c (_dbus_string_append_printf_valist)
3228 (_dbus_string_append_printf): new
3230 * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
3233 * dbus/dbus-connection.c (dbus_connection_dispatch): handle
3234 DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
3235 message is unhandled.
3237 2003-08-11 Havoc Pennington <hp@pobox.com>
3239 * bus/test.c (client_disconnect_handler): change to return
3240 HANDLED (would have been REMOVE_MESSAGE)
3242 * dbus/dbus-object.h (enum DBusHandlerResult): rename to
3243 HANDLED/NOT_YET_HANDLED instead of
3244 REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it
3247 2003-08-10 Havoc Pennington <hp@pobox.com>
3249 * tools/dbus-send.c (main): add --type argument, for now
3250 supporting only method_call and signal types.
3252 * tools/dbus-print-message.c: print message type
3254 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
3255 init connection->objects
3257 * doc/dbus-specification.sgml: fix sgml
3259 * bus/*.c: port over to object-instance API changes
3261 * test/test-service.c: ditto
3263 * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
3264 name, we will have to fix up the rest of the code to also handle
3266 (dbus_message_new): generic message-creation call
3267 (set_string_field): allow appending name field
3269 2003-08-06 Havoc Pennington <hp@pobox.com>
3271 * dbus/dbus-object-registry.c: implement signal connection
3274 * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
3276 * dbus/dbus-internals.c (_dbus_memdup): new function
3278 2003-08-02 Havoc Pennington <hp@pobox.com>
3280 * dbus/dbus-message.c (dbus_message_get_no_reply)
3281 (dbus_message_set_no_reply): add these and remove
3282 set_is_error/get_is_error
3284 * dbus/dbus-protocol.h, doc/dbus-specification.sgml:
3285 remove the ERROR flag, since there's now an ERROR type
3287 2003-08-01 Havoc Pennington <hp@pobox.com>
3289 * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
3292 * dbus/dbus-message.c (dbus_message_get_type): new function
3294 * doc/dbus-specification.sgml: add "type" byte to messages
3296 2003-08-01 Havoc Pennington <hp@pobox.com>
3298 * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
3299 a message type enum to distinguish kinds of message
3300 (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message
3301 that need not be replied to
3303 2003-08-01 Havoc Pennington <hp@pobox.com>
3305 * dbus/dbus-marshal.c: adapt to DBusObjectID changes
3306 (unpack_8_octets): fix no-64-bit-int bug
3308 * dbus/dbus-object-registry.c (validate_id): validate the
3309 connection ID bits, not just the instance ID.
3311 * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
3312 the connection-global 33 bits of the object ID
3314 * dbus/dbus-object-registry.c (info_from_entry): fill in
3315 object ID in the new way
3317 * dbus/dbus-objectid.h: rather than high/low bits, specifically
3318 define server/client/instance bits.
3320 2003-07-30 Havoc Pennington <hp@pobox.com>
3322 * dbus/dbus-connection.c (dbus_connection_register_object): fix
3325 2003-07-13 Havoc Pennington <hp@pobox.com>
3327 * dbus/dbus-object.h (struct DBusObjectVTable): add padding
3328 fields to DBusObjectVTable and DBusObjectInfo
3330 2003-07-12 Havoc Pennington <hp@pobox.com>
3332 * dbus/dbus-object-registry.c: implement unit test,
3333 fix bugs discovered in process
3335 * dbus/dbus-connection.c: remove handler_table and
3336 register_handler(), add DBusObjectRegistry usage
3338 * dbus/dbus-objectid.c (dbus_object_id_is_null)
3339 (dbus_object_id_set_null): new functions
3341 2003-07-08 Havoc Pennington <hp@pobox.com>
3343 * dbus/dbus-object.c: implement some of this
3345 * dbus/dbus-object-registry.c
3346 (_dbus_object_registry_add_and_unlock): fill in the object_id out
3348 (_dbus_object_registry_new): handle OOM
3350 2003-07-08 Havoc Pennington <hp@pobox.com>
3352 * dbus/dbus-object.h: sketch out an API for registering objects
3353 with a connection, that allows us to use as little as 24 bytes
3354 per object and lets application code represent an object in
3355 any conceivable way.
3357 * dbus/dbus-object-registry.c: implement the hard bits of the
3358 DBusConnection aspect of object API. Not yet wired up.
3360 2003-07-06 Havoc Pennington <hp@pobox.com>
3362 * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
3363 (_dbus_marshal_object_id): new
3364 (_dbus_demarshal_object_id): new
3365 (_dbus_marshal_get_arg_end_pos): support object ID type, and
3366 consolidate identical switch cases. Don't conditionalize handling
3367 of DBUS_TYPE_UINT64, need to handle the type always.
3368 (_dbus_marshal_validate_arg): consolidate identical cases, and
3369 handle DBUS_TYPE_OBJECT_ID
3371 * dbus/dbus-objectid.c: new file with DBusObjectID data type.
3373 * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
3375 2003-09-28 Havoc Pennington <hp@pobox.com>
3379 2003-09-28 Havoc Pennington <hp@pobox.com>
3381 * doc/Makefile.am (dbus-specification.html): testing a funky hack
3382 to work with Debian db2html
3384 2003-09-28 Havoc Pennington <hp@pobox.com>
3386 * configure.in: 0.13
3388 * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
3389 stylesheet-images for benefit of Debian
3391 Change back to using filesystem-linked sockets for the system
3392 bus, so only root can create the default system bus address.
3394 * bus/system.conf.in: change to use
3395 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
3397 * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
3400 * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
3401 here, and AC_DEFINE DBUS_SYSTEM_PATH
3403 2003-08-09 Anders Carlsson <andersca@codefactory.se>
3406 * doc/busconfig.dtd:
3409 2003-08-09 Anders Carlsson <andersca@codefactory.se>
3411 * doc/dbus-specification.sgml:
3412 Add activation reply values.
3414 2003-08-05 Havoc Pennington <hp@redhat.com>
3416 * configure.in: 0.12
3418 2003-08-05 Anders Carlsson <andersca@codefactory.se>
3420 * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
3421 (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
3422 (add_watch), (remove_watch), (create_source):
3423 Refcount fds, fixes some reentrancy issues.
3425 2003-07-30 Havoc Pennington <hp@redhat.com>
3427 * dbus/dbus-bus.c (init_connections_unlocked): fix default system
3428 bus address to be abstract if we have abstract sockets
3432 2003-07-28 Havoc Pennington <hp@redhat.com>
3434 * bus/messagebus.in: fix to avoid processname/servicename
3435 confusion, from Michael Kearey
3436 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
3438 2003-07-23 Havoc Pennington <hp@pobox.com>
3440 * dbus/dbus-message.c (dbus_message_iter_get_named):
3441 fix from Andy Hanton to remove broken "+1"
3443 2003-07-16 Havoc Pennington <hp@pobox.com>
3445 * tools/dbus-launch.c (babysit): close stdout/stderr in the
3446 babysitter process, as suggested by Thomas Leonard, so
3447 an "eval `dbus-launch --exit-with-session`" will actually
3450 2003-07-16 Havoc Pennington <hp@pobox.com>
3452 * configure.in: print out EXPANDED_* variables in the summary at
3453 the end; clean up the code that computes EXPANDED_ variables and
3454 get the ones using exec_prefix right. Should make things work
3455 when you build without --prefix
3457 2003-06-29 Havoc Pennington <hp@pobox.com>
3459 * mono/Test.cs (class Test): fire up a main loop and run it
3461 * mono/DBus.cs (DBus): don't g_thread_init since it can only be
3462 done once, the app has to do it
3464 2003-06-26 Havoc Pennington <hp@pobox.com>
3466 * mono/Connection.cs: set up connection with the glib main loop
3468 2003-07-01 Havoc Pennington <hp@redhat.com>
3470 * doc/dbus-specification.sgml: clarify the format of a type code,
3471 change suggested by Jim Blandy
3473 2003-06-29 Miloslav Trmac <mitr@volny.cz>
3476 * tools/Makefile.am: Don't assume srcdir == builddir.
3478 * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
3479 the allocated block.
3480 (_dbus_memory_test): New function.
3481 * dbus/dbus-test.h: Add _dbus_memory_test ().
3482 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
3484 * dbus/dbus-message.c (decode_header_data): Use %.4s instead
3486 (dbus_message_new): Remove obsolete @todo.
3488 * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
3489 (_dbus_marshal_set_uint64): Fix comment.
3491 * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
3492 hardcode FIELD_REPLY_SERIAL.
3494 * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
3495 (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
3497 * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
3498 and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
3500 2003-06-24 Havoc Pennington <hp@pobox.com>
3502 * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
3504 2003-06-23 Anders Carlsson <andersca@codefactory.se>
3510 * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
3511 * gcj/org/.cvsignore:
3512 * gcj/org/Makefile.am:
3513 * gcj/org/freedesktop/.cvsignore:
3514 * gcj/org/freedesktop/Makefile.am:
3515 * gcj/org/freedesktop/dbus/.cvsignore:
3516 * gcj/org/freedesktop/dbus/Makefile.am:
3517 * gcj/org/freedesktop/dbus/Message.java: (Message),
3519 * gcj/org/freedesktop/dbus/natMessage.cc:
3520 Fix the build system.
3522 2003-06-22 Havoc Pennington <hp@pobox.com>
3524 * mono/Connection.cs: add more bindings
3526 * dbus/dbus-threads.c (dbus_threads_init): allow calling this
3529 2003-06-22 Havoc Pennington <hp@pobox.com>
3531 * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
3532 Start wrapping more stuff.
3534 2003-06-22 Havoc Pennington <hp@pobox.com>
3536 * mono/Message.cs: implement Message.Wrap() that ensures we only
3537 have a single C# wrapper per DBusMessage, assuming it works which
3538 it probably doesn't.
3540 * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
3541 (dbus_message_free_data_slot): new
3542 (dbus_message_set_data): new
3543 (dbus_message_get_data): new
3545 2003-06-22 Havoc Pennington <hp@pobox.com>
3547 * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
3548 (_dbus_data_slot_allocator_alloc): rework these to keep a
3549 reference count on each slot and automatically manage a global
3550 slot ID variable passed in by address
3552 * bus/bus.c: convert to new dataslot API
3554 * dbus/dbus-bus.c: convert to new dataslot API
3556 * dbus/dbus-connection.c: convert to new dataslot API
3558 * dbus/dbus-server.c: convert to new dataslot API
3560 * glib/dbus-gmain.c: ditto
3564 * bus/connection.c: ditto
3566 2003-06-22 Anders Carlsson <andersca@codefactory.se>
3568 * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
3569 after the gcj checks so that the correct configuration tags
3570 will be added to libtool.
3572 * dbus-glib-1.pc.in: No need to specify any includes since
3573 dbus-1.pc.in has those.
3575 2003-06-22 Havoc Pennington <hp@pobox.com>
3577 * mono/*, gcj/*, configure.in, Makefile.am:
3578 Check in makefiles and subdirs for mono and gcj bindings.
3579 Neither binding actually exists, just trying to get through
3580 all the build and other boring bits.
3582 2003-06-21 Philip Blundell <philb@gnu.org>
3584 * tools/dbus-monitor.1: Updated.
3586 * tools/dbus-send.1: Likewise.
3588 2003-06-20 Anders Carlsson <andersca@codefactory.se>
3590 * dbus/dbus-transport-unix.c (unix_handle_watch): Check
3591 for hangup and error after checking read so we won't discard
3592 pending data if both hangup and read are set.
3594 2003-06-19 Philip Blundell <philb@gnu.org>
3596 * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
3598 * tools/dbus-send.c: Accept both --system and --session.
3600 * tools/dbus-monitor.c: Same here.
3602 2003-06-19 Anders Carlsson <andersca@codefactory.se>
3604 * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
3605 from C++ (Patch by Miloslav Trmac).
3607 2003-06-15 Joe Shaw <joe@assbarn.com>
3609 * configure.in: Check for socklen_t.
3611 * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
3613 * test/test-segfault.c: Add #include <sys/time.h>
3615 * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
3616 dbus-launch needs it.
3618 2003-06-09 Havoc Pennington <hp@redhat.com>
3620 * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
3621 SUN_LEN, it breaks abstract socket usage
3623 * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
3626 2003-06-04 Havoc Pennington <hp@pobox.com>
3628 * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
3629 using unix:abstract=/foo, and when listening in a tmpdir
3630 i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
3632 * dbus/dbus-transport.c (_dbus_transport_open): support
3635 * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
3636 support abstract sockets
3638 * dbus/dbus-transport-unix.c
3639 (_dbus_transport_new_for_domain_socket): support abstract sockets
3641 * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
3642 toggle as an argument, implement abstract namespace support
3643 (_dbus_listen_unix_socket): ditto
3645 * configure.in: add --enable-abstract-sockets and implement
3646 a configure check for autodetection of the right value.
3648 2003-06-01 Havoc Pennington <hp@pobox.com>
3650 * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
3651 in /tmp (though on Linux this will end up being useless,
3652 when we add abstract namespace support)
3654 * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
3657 2003-05-28 Colin Walters <walters@verbum.org>
3659 * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
3661 2003-05-18 Anders Carlsson <andersca@codefactory.se>
3663 * dbus/dbus-message.c (dbus_message_new): Remove @todo.
3665 2003-05-17 Colin Walters <walters@gnu.org>
3667 * tools/dbus-send.c: Don't exit with an error code if --help was
3668 passed. Default to using the session bus instead of the system
3671 * tools/dbus-launch.c: Ditto.
3673 * tools/dbus-monitor.c: Ditto.
3675 * tools/dbus-send.1: Update with new arguments.
3677 * tools/dbus-launch.c: Emit code to export variables. New
3678 arguments -s and -c to specify shell syntax, and a bit of code to
3679 autodetect syntax. Also, allow specifying a program to run.
3681 * tools/dbus-launch.1: Update with new arguments.
3683 * tools/dbus-send.1: Ditto.
3685 * tools/dbus-monitor.1: Ditto.
3687 2003-05-17 Havoc Pennington <hp@pobox.com>
3689 * bus/config-parser.c (merge_included): merge in policies from
3690 child configuration file.
3692 * bus/policy.c (bus_policy_merge): function to merge two policies
3695 2003-05-16 Havoc Pennington <hp@redhat.com>
3697 * dbus/dbus-connection.c: disable verbose lock spew
3699 * tools/dbus-send.c: add --print-reply command line option
3701 * tools/dbus-print-message.h (print_message): new util function
3702 shared by dbus-send and dbus-monitor
3704 * tools/dbus-monitor.c (handler_func): exit on disconnect
3706 * dbus/dbus-transport-unix.c (do_reading): if the transport is
3707 disconnected, don't try to use the read_watch
3709 * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
3710 so we can find this bug more easily
3712 2003-05-16 Havoc Pennington <hp@redhat.com>
3714 * bus/policy.c (free_rule_list_func): avoid a crash when passed
3715 NULL as DBusHashTable is annoyingly likely to do.
3717 2003-05-16 Colin Walters <walters@verbum.org>
3719 * tools/dbus-monitor.c: Add --session argument and usage()
3722 * tools/dbus-monitor.1: Update with new --session arg.
3724 * bus/Makefile.am (install-data-hook): Create
3725 $(libdir)/dbus-1.0/services so that the session bus is happy.
3727 2003-05-15 Havoc Pennington <hp@redhat.com>
3729 * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
3730 on non-x86. ifdef's are evil.
3732 2003-05-15 Havoc Pennington <hp@redhat.com>
3734 * configure.in: 0.11
3738 * bus/Makefile.am (initddir): apparently we are supposed to put
3739 init scripts in /etc/rc.d/init.d not /etc/init.d
3741 * bus/Makefile.am: remove the "you must --enable-tests to make
3742 check" as it broke distcheck
3744 * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
3746 2003-05-13 James Willcox <jwillcox@gnome.org>
3749 * bus/activation.c: (bus_activation_service_created),
3750 (bus_activation_activate_service):
3751 * bus/driver.c: (bus_driver_send_service_deleted),
3752 (bus_driver_send_service_created), (bus_driver_send_service_lost),
3753 (bus_driver_send_service_acquired),
3754 (bus_driver_send_welcome_message),
3755 (bus_driver_handle_list_services):
3756 * bus/session.conf.in:
3757 * dbus/dbus-bus.c: (dbus_bus_acquire_service),
3758 (dbus_bus_service_exists), (dbus_bus_activate_service):
3761 Add some convenience API which lets you activate a service, and did a
3762 bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
3763 and dbus_message_get_args()
3765 2003-05-11 Havoc Pennington <hp@pobox.com>
3767 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
3768 calling _dbus_marshal_validate_arg() for every byte in a byte
3771 * dbus/dbus-message-handler.c: use atomic reference counting to
3772 reduce number of locks slightly; the global lock in here sucks
3774 * dbus/dbus-connection.c
3775 (_dbus_connection_update_dispatch_status_and_unlock): variant of
3776 update_dispatch_status that can be called with lock held; then use
3777 in a couple places to reduce locking/unlocking
3778 (dbus_connection_send): hold the lock over the whole function
3779 instead of acquiring it twice.
3781 * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
3783 * bus/connection.c (bus_connections_setup_connection): fix access
3784 to already-freed memory.
3786 * dbus/dbus-connection.c: keep a little cache of linked list
3787 nodes, to avoid using the global linked list alloc lock in the
3788 normal send-message case. Instead we just use the connection lock
3789 that we already have to take.
3791 * dbus/dbus-list.c (_dbus_list_find_last): new function
3793 * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
3794 change to use a struct for the atomic type; fix docs,
3795 they return value before increment, not after increment.
3797 * dbus/dbus-string.c (_dbus_string_append_4_aligned)
3798 (_dbus_string_append_8_aligned): new functions to try to
3799 microoptimize this operation.
3800 (reallocate_for_length): break this out of set_length(), to
3801 improve profile info, and also so we can consider inlining the
3804 * dbus/dbus-message.c (dbus_message_new_empty_header): init data
3805 strings with some preallocation, cuts down on our calls to realloc
3806 a fair bit. Though if we can get the "move entire string to empty
3807 string" optimization below to kick in here, it would be better.
3809 * dbus/dbus-string.c (_dbus_string_move): just call
3810 _dbus_string_move_len
3811 (_dbus_string_move_len): add a special case for moving
3812 an entire string into an empty string; we can just
3813 swap the string data instead of doing any reallocs.
3814 (_dbus_string_init_preallocated): new function
3816 2003-05-11 Havoc Pennington <hp@pobox.com>
3818 Write a "test-profile" that does echo client-server with threads;
3819 profile reveals lock contention, memcpy/realloc of buffers, and
3820 UTF-8 validation as hot spots. 20% of lock contention eliminated
3821 with dbus_atomic_inc/dec implementation on x86. Much remaining
3822 contention is global mempool locks for GList and DBusList.
3824 * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
3827 * dbus/dbus-connection.c (struct DBusConnection): use
3828 dbus_atomic_t for the reference count
3830 * dbus/dbus-message.c (struct DBusMessage): declare
3831 dbus_atomic_t values as volatile
3833 * configure.in: code to detect ability to use atomic integer
3834 operations in assembly, from GLib patch
3836 * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
3837 time, tired of it being wrong in threads and forked processes
3839 * glib/test-profile.c: a little program to bounce messages back
3840 and forth between threads and eat CPU
3842 * dbus/dbus-connection.c: add debug spew macros for debugging
3843 thread locks; include config.h at top; fix deadlock in
3844 dbus_connection_flush()
3846 2003-05-08 Havoc Pennington <hp@pobox.com>
3848 * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
3849 data from getting written, and there wasn't a good reason to
3852 * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
3853 dbus_verbose lines in test coverage
3854 (main): add list of functions sorted by # of untested blocks
3855 to the coverage report
3857 * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
3859 * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
3861 * dbus/dbus-message-handler.c (_dbus_message_handler_test):
3862 extend test coverage
3864 * test/data/auth/cancel.auth-script: test canceling an
3867 * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
3868 aren't used. in CVS history if we end up needing them.
3870 2003-05-04 Havoc Pennington <hp@pobox.com>
3872 * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
3875 * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
3876 function, which assumed length was in # of strings, not bytes
3878 * dbus/dbus-message.c (_dbus_message_test): add tests for some
3881 * dbus/dbus-connection.c
3882 (_dbus_connection_queue_received_message): disable function for
3883 now, we are only using it in test mode
3885 * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
3886 remove a mistaken FIXME
3888 2003-05-04 Havoc Pennington <hp@pobox.com>
3890 * dbus/dbus-connection.c (dbus_connection_preallocate_send):
3891 unlock mutex on successful return, patch from Anders Gustafsson
3893 2003-05-04 Havoc Pennington <hp@pobox.com>
3895 * dbus-glib-1.pc.in (Requires): fix dependencies, from
3898 2003-05-04 Havoc Pennington <hp@pobox.com>
3900 * tools/dbus-launch.c: implement
3902 * bus/main.c (main), bus/bus.c (bus_context_new):
3903 implement --print-pid and --fork
3905 2003-05-03 Havoc Pennington <hp@redhat.com>
3907 * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
3908 the address had no value, and add to test suite. Fix and
3909 regression test from Miloslav Trmac
3911 2003-05-03 Havoc Pennington <hp@pobox.com>
3913 * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
3914 watch is invalid when handled
3916 * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
3917 dbus-launch utility to launch the bus from a shell script. Didn't
3918 actually implement dbus-launch yet, it's just a placeholder still.
3920 2003-05-03 Havoc Pennington <hp@pobox.com>
3922 * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
3923 daemon; also documents daemon config file, so replaces
3924 doc/config-file.txt. Corrected some stuff from config-file.txt in
3925 the process of moving it.
3927 2003-05-03 Havoc Pennington <hp@pobox.com>
3929 * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
3932 2003-05-03 Colin Walters <walters@verbum.org>
3934 * dbus/dbus-sysdeps.c (fill_user_info): Test against
3935 DBUS_UID_UNSET to determine whether to do a uid lookup or not.
3937 * Makefile.am: Update to use new .pc versioning scheme.
3939 2003-05-02 Havoc Pennington <hp@redhat.com>
3941 * bus/system.conf.in: allow send/receive to/from message bus
3944 2003-04-30 Havoc Pennington <hp@redhat.com>
3946 * configure.in: print a note when building with unit tests and
3949 2003-04-30 Havoc Pennington <hp@redhat.com>
3951 * Makefile.am: add a check-local that complains if you didn't
3952 configure with --enable-tests
3954 2003-04-29 Havoc Pennington <hp@redhat.com>
3956 * glib/dbus-gmain.c: docs cleanups
3958 * dbus/dbus-types.h: add docs on int64 types
3960 * dbus/dbus-memory.c: fix docs to avoid putting private API in
3961 public API docs section
3963 2003-04-29 Havoc Pennington <hp@redhat.com>
3965 * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
3966 dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
3967 parallel install API version, not with the D-BUS package version.
3969 * HACKING: move some of README over here
3971 * README: updates, and document API/ABI policy
3973 * configure.in: reindentation
3975 2003-04-29 Havoc Pennington <hp@redhat.com>
3977 * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
3978 to use this library" to be sure people have the right
3981 2003-04-28 Havoc Pennington <hp@redhat.com>
3983 * configure.in: add --enable-docs which by default is auto yes if
3984 doxygen and db2html found, no otherwise; but can be forced on/off
3986 * doc/Makefile.am: conditionalize whether to build docs on
3989 2003-04-28 Havoc Pennington <hp@redhat.com>
3991 * configure.in: 0.10
3995 * bus/system.conf.in: add <includedir>system.d</includedir>
3997 * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
3998 username was provided but not uid
4000 * bus/config-parser.c (struct BusConfigParser): keep track of
4001 whether the parser is toplevel or was included; change some
4002 of the error handling if it's included.
4004 2003-04-27 Havoc Pennington <hp@pobox.com>
4008 * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
4009 report correct status if we finish processing authentication
4010 inside this function.
4012 * bus/activation.c (try_send_activation_failure): use
4013 bus_transaction_send_error_reply
4015 * bus/connection.c (bus_connection_get_groups): return an error
4016 explaining the problem
4018 * bus/bus.c (bus_context_check_security_policy): implement
4019 restriction here that inactive connections can only send the
4020 hello message. Also, allow bus driver to send anything to
4023 * bus/connection.c (bus_connection_complete): create the
4024 BusClientPolicy here instead of on-demand.
4025 (bus_connection_get_policy): don't return an error
4027 * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
4028 sender field in message being replied to
4030 * bus/bus.c (bus_context_check_security_policy): fix silly typo
4031 causing it to return FALSE always
4033 * bus/policy.c (bus_client_policy_check_can_send): fix bug where
4034 we checked sender rather than destination
4036 2003-04-25 Havoc Pennington <hp@redhat.com>
4038 test suite is slightly hosed at the moment, will fix soon
4040 * bus/connection.c (bus_connections_expire_incomplete): fix to
4041 properly disable the timeout when required
4042 (bus_connection_set_name): check whether we can remove incomplete
4043 connections timeout after we complete each connection.
4045 * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
4046 probably still broken.
4048 * bus/services.c (bus_registry_acquire_service): implement max
4049 number of services owned, and honor allow/deny rules on which
4050 services a connection can own.
4052 * bus/connection.c (bus_connection_get_policy): report errors here
4054 * bus/activation.c: implement limit on number of pending
4057 2003-04-25 Havoc Pennington <hp@redhat.com>
4059 * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
4060 where we used >= 0 instead of != DBUS_UID_UNSET.
4062 2003-04-25 Havoc Pennington <hp@redhat.com>
4064 * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
4065 were toggled without add/remove, fix from Anders Gustafsson
4067 2003-04-24 Havoc Pennington <hp@redhat.com>
4069 * test/data/valid-config-files/basic.conf: add <limit> tags to
4072 * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
4073 <limit> tag in configuration file.
4075 2003-04-24 Havoc Pennington <hp@redhat.com>
4077 * bus/dispatch.c: somehow missed some name_is
4079 * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
4080 (_dbus_timeout_set_interval): new
4082 * bus/connection.c (bus_connections_setup_connection): record time
4083 when each connection is first set up, and expire them after the
4084 auth timeout passes.
4086 2003-04-24 Havoc Pennington <hp@redhat.com>
4088 * dbus/dbus-message.c (dbus_message_name_is): rename
4089 (dbus_message_service_is): rename
4090 (dbus_message_sender_is): rename
4091 (dbus_message_get_service): rename
4093 2003-04-24 Havoc Pennington <hp@redhat.com>
4095 * configure.in: add --enable-checks
4097 * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
4099 * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
4100 to use thread locks.
4101 (_dbus_connection_handler_destroyed_locked): move some private
4102 functions into proper docs group
4104 * dbus/dbus-internals.h: add _dbus_return_if_fail,
4105 _dbus_return_val_if_fail
4107 Throughout: use dbus_return_if_fail
4109 2003-04-23 James Willcox <jwillcox@gnome.org>
4112 * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
4113 (dbus_connection_setup_with_g_main),
4114 (dbus_server_setup_with_g_main):
4115 * glib/test-dbus-glib.c: (main):
4116 * glib/test-thread-client.c: (main):
4117 * glib/test-thread-server.c: (new_connection_callback), (main):
4118 * tools/dbus-monitor.c: (main):
4120 Added a GMainContext argument to dbus_connection_setup_with_g_main()
4121 and dbus_server_setup_with_g_main().
4123 2003-04-20 Havoc Pennington <hp@pobox.com>
4125 * doc/dbus-specification.sgml: document the restrictions on
4126 message and service names
4128 2003-04-22 Havoc Pennington <hp@redhat.com>
4130 * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
4131 support, and do some code cleanups to share more code and
4132 speed up array marshal/demarshal.
4134 * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
4136 * configure.in: generate dbus-arch-deps.h
4138 * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
4141 2003-04-22 Havoc Pennington <hp@redhat.com>
4143 * test/data/valid-messages/opposite-endian.message: fix test
4144 to use proper type for rply field
4146 * test/data/invalid-messages: add tests for below validation
4148 * dbus/dbus-message.c (decode_header_data): validate field types,
4149 and validate that named fields are valid names
4150 (decode_name_field): consider messages in the
4151 org.freedesktop.Local. namespace to be invalid.
4153 * dbus/dbus-string.c (_dbus_string_validate_name): new
4155 2003-04-19 Havoc Pennington <hp@pobox.com>
4157 * bus/driver.c (bus_driver_handle_hello): check limits and
4158 return an error if they are exceeded.
4160 * bus/connection.c: maintain separate lists of active and inactive
4161 connections, and a count of each. Maintain count of completed
4162 connections per user. Implement code to check connection limits.
4164 * dbus/dbus-list.c (_dbus_list_unlink): export
4166 * bus/bus.c (bus_context_check_security_policy): enforce a maximum
4167 number of bytes in the message queue for a connection
4169 2003-04-18 Havoc Pennington <hp@pobox.com>
4171 * dbus/dbus-auth.c (record_mechanisms): memleak fixes
4173 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
4176 * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
4177 on realloc be sure to update the pointer in the keyring
4179 * dbus/dbus-string.c (_dbus_string_zero): compensate for align
4180 offset to avoid writing to unallocated memory
4182 * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
4183 try the next mechanism, so we properly handle OOM
4185 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
4187 (_dbus_keyring_new): fix OOM bug
4188 (_dbus_keyring_new_homedir): always set error; impose a maximum
4189 number of keys we'll load from the file, mostly to speed up the
4190 test suite and make its OOM checks more useful, but also for
4193 * dbus/dbus-auth.c (process_error_server): reject authentication
4194 if we get an error from the client
4195 (process_cancel): on cancel, send REJECTED, per the spec
4196 (process_error_client): send CANCEL if we get an error from the
4199 2003-04-18 Havoc Pennington <hp@pobox.com>
4201 * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
4204 * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
4207 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
4208 about DBUS_TEST_HOMEDIR once
4210 * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
4213 * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
4214 config file so we test the right thing
4216 Throughout: assorted docs improvements
4218 2003-04-18 Havoc Pennington <hp@pobox.com>
4220 * glib/dbus-gmain.c: adapt to watch changes
4222 * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
4224 * dbus/dbus-server.h: remove dbus_server_handle_watch
4226 * dbus/dbus-connection.h: remove dbus_connection_handle_watch
4228 * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
4229 like DBusTimeout, so we don't need dbus_connection_handle_watch
4232 2003-04-17 Havoc Pennington <hp@redhat.com>
4234 * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
4235 database usage so it all goes via the DBusUserDatabase cache.
4237 2003-04-17 Havoc Pennington <hp@redhat.com>
4239 * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
4240 there was an OOM watch we skipped, we always return TRUE so we
4241 iterate again to have a look at it again. Fixes test suite hang.
4242 Code rearrangement also lets us lose some memset and only iterate
4243 over callbacks once.
4245 * bus/driver.c (bus_driver_handle_message): sense of test for
4248 2003-04-16 Havoc Pennington <hp@pobox.com>
4250 * doc/dbus-specification.sgml: make spec say serials are unsigned
4252 * dbus/dbus-message.h: change message serials to unsigned
4254 * dbus/dbus-connection.c: adapt to message serials being unsigned
4256 2003-04-15 Havoc Pennington <hp@pobox.com>
4258 * bus/bus.c: create and keep around a shared DBusUserDatabase
4261 * bus/connection.c (bus_connection_get_groups): don't cache
4262 groups for user in the connection object, since user database
4263 object now does that.
4265 2003-04-16 Havoc Pennington <hp@redhat.com>
4267 * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
4268 list of size counters
4269 (_dbus_message_loader_putback_message_link): put back a popped link
4271 * dbus/dbus-connection.c
4272 (dbus_connection_set_max_live_messages_size): rename
4274 (dbus_connection_get_outgoing_size): get size of outgoing
4276 (_dbus_connection_set_connection_counter): remove this cruft
4278 2003-04-14 Havoc Pennington <hp@redhat.com>
4280 * dbus/dbus-userdb.c: user database abstraction, mostly to get
4281 caching, but at some point we might want to be able to use a
4284 * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
4285 SHA1 conf file to test the sha1 auth mechanism, since the regular
4286 test always uses EXTERNAL when available.
4289 test/data/valid-config-files/debug-allow-all-sha1.conf.in:
4290 add conf file that requires use of sha1 auth
4292 2003-04-13 Havoc Pennington <hp@pobox.com>
4294 * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
4295 from Philip Blundell to send messages and monitor them.
4297 2003-04-13 Havoc Pennington <hp@pobox.com>
4299 * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
4302 * test/data/valid-config-files/debug-allow-all.conf.in: allow all
4305 * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
4306 fix to only recover unused bytes if we're already authenticated
4307 (_dbus_transport_get_is_authenticated): fix to still mark us
4308 authenticated if there are unused bytes.
4310 * bus/dispatch.c: implement security policy checking
4312 * bus/connection.c (bus_transaction_send_from_driver): new
4314 * bus/bus.c (bus_context_check_security_policy): new
4316 * bus/dispatch.c (send_service_nonexistent_error): delete this,
4317 now we just set the DBusError and it gets converted to an error
4320 * bus/connection.c (allow_user_function): enable code using actual
4321 data from the config file
4323 * bus/policy.c (list_allows_user): handle wildcard rules for
4324 user/group connection perms
4326 2003-04-13 Havoc Pennington <hp@pobox.com>
4328 * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
4330 * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
4332 * bus/policy.c (bus_policy_append_mandatory_rule)
4333 (bus_policy_append_default_rule, bus_policy_append_user_rule)
4334 (bus_policy_append_group_rule): new functions
4336 2003-04-12 Havoc Pennington <hp@pobox.com>
4338 * bus/config-parser.c (bus_config_parser_new): fix a memleak
4340 * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
4341 the pid/gid/uid, just for paranoia.
4343 * test/break-loader.c (randomly_do_n_things): find a byte
4344 containing a type code, and randomly change it to a different
4347 2003-04-12 Havoc Pennington <hp@pobox.com>
4349 * bus/policy.h: change BusPolicy to be the thing from the config
4350 file, and rename old BusPolicy to BusClientPolicy
4352 * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
4353 match change in how policy works
4355 * dbus/dbus-internals.h: mark assert_not_reached as
4356 __attribute((noreturn))__
4358 2003-04-11 Havoc Pennington <hp@redhat.com>
4360 * doc/dbus-specification.sgml: fix a spot with the wrong name for
4361 the broadcast service. Use boolean return for ServiceExists.
4363 2003-04-11 Havoc Pennington <hp@redhat.com>
4365 * configure.in: add another directory to look for qt in.
4367 2003-04-11 Havoc Pennington <hp@redhat.com>
4369 * AUTHORS: add Colin Walters
4371 2003-04-11 Havoc Pennington <hp@redhat.com>
4377 2003-04-11 Havoc Pennington <hp@redhat.com>
4379 * bus/messagebus.in: remove pid file when stopping the
4380 message bus, since the bus won't have privileges to remove it
4383 2003-04-11 Havoc Pennington <hp@redhat.com>
4385 * bus/bus.c (bus_context_new): move credentials change after
4388 2003-04-11 Havoc Pennington <hp@pobox.com>
4390 * test/decode-gcov.c: add "below average functions" to the
4391 coverage report, and change how some of the code works.
4393 * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
4394 not in the coverage stats.
4396 * test/test-service.c (main): use _dbus_verbose not fprintf in a
4397 couple places so running the test suite doesn't result in megaspam.
4399 2003-04-11 Havoc Pennington <hp@pobox.com>
4401 * bus/dispatch.c (check_existent_service_activation): accept a no
4402 memory error in a place we didn't before
4404 * bus/test.c (bus_test_run_everything): remove hacky "do it twice
4405 in case the first one failed," since the test suite is less
4408 2003-04-10 Havoc Pennington <hp@pobox.com>
4410 * bus/dispatch.c (check_segfault_service_activation): add test
4411 for launching an executable that just crashes.
4413 * test/test-segfault.c (main): try setting coredumpsize to 0 so we
4414 don't leave a million cores. We'll see how portable this is.
4416 2003-04-10 Havoc Pennington <hp@pobox.com>
4418 * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
4419 the possible parent failures before we fork, so that we don't
4420 fail to create a babysitter after creating the child.
4422 * bus/activation.c (bus_activation_activate_service): kill child
4423 if we don't successfully complete the activation.
4425 2003-04-10 Havoc Pennington <hp@redhat.com>
4427 * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
4428 the connection if it's disconnected
4430 * bus/activation.c (bus_activation_service_created): use new
4431 transaction features to roll back removal of pending activation if
4432 we don't successfully create the service after all. Don't remove
4433 pending activation if the function fails.
4435 * dbus/dbus-list.c (_dbus_list_insert_before_link)
4436 (_dbus_list_insert_after_link): new code to facilitate
4439 * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
4440 new functionality, so we can preallocate the ability to insert
4443 * bus/connection.c (bus_transaction_add_cancel_hook): new function
4444 allowing us to put custom hooks in a transaction to be used for
4445 cancelling said transaction
4447 * doc/dbus-specification.sgml: add some discussion of secondary
4448 service owners, and disallow zero-length service names
4450 * bus/services.c (bus_registry_acquire_service): new function,
4451 splits out part of bus_driver_handle_acquire_service() and fixes
4452 a bug where we didn't remove the service doing the acquiring
4453 from the secondary queue if we failed to remove the current owner
4454 from the front of the queue.
4456 2003-04-10 Alexander Larsson <alexl@redhat.com>
4458 * doc/dbus-specification.sgml:
4459 s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
4461 2003-04-10 Alexander Larsson <alexl@redhat.com>
4466 Added files to cvsignore
4468 * dbus/dbus-message.h:
4469 * dbus/dbus-message.c: (dbus_message_iter_get_named):
4470 Make get_named() take two out argument and return a boolean.
4471 (dbus_message_iter_get_args_valist):
4472 Update usage of get_named().
4473 (dbus_message_iter_append_byte):
4475 (dbus_message_iter_append_named)
4477 (message_iter_test), (check_message_handling_type), (_dbus_message_test):
4480 2003-04-10 Alexander Larsson <alexl@redhat.com>
4482 * dbus/dbus-marshal.[ch]:
4483 Add array_type_pos argument to _dbus_marshal_validate_arg.
4484 Let you pass a NULL end_pos to _dbus_marshal_validate_type.
4486 * dbus/dbus-message.[ch]:
4487 Multi-dimensional arrays have full type specification in the
4488 outermost array. Iter code re-arranged to handle this.
4489 Added some more iter tests.
4491 * doc/dbus-specification.sgml:
4494 Update new array encoding description.
4495 Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
4497 * test/data/invalid-messages/array-with-mixed-types.message:
4498 * test/data/valid-messages/array-of-array-of-uint32.message:
4499 Change to the new array format.
4501 * test/data/invalid-messages/too-short-dict.message:
4504 * test/data/valid-messages/recursive-types.message:
4505 Fix up and extend test.
4507 2003-04-10 Havoc Pennington <hp@pobox.com>
4509 * bus/dispatch.c: lots of fixes
4511 * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
4512 (_dbus_loop_iterate): remove old "quit if no callbacks" code,
4513 that was crack, broke the test service.
4515 * dbus/dbus-transport.c (_dbus_transport_open): fix error
4516 handling to avoid piling up errors if we get a failure on the
4519 * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
4520 pid in assertion failures.
4522 * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
4523 to some fixed size of file descriptor array. Don't return TRUE
4524 anytime a timeout exists, that led to lots of busy loop silliness
4527 2003-04-09 Havoc Pennington <hp@redhat.com>
4529 * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
4530 I'd checked this in earlier but hadn't.
4532 2003-04-09 Havoc Pennington <hp@redhat.com>
4534 * bus/dispatch.c (bus_dispatch_test): get a bit further through
4535 the activation test (man this is getting old!)
4537 2003-04-09 Havoc Pennington <hp@redhat.com>
4539 * test/test-utils.c: use dispatch status function to fix this up
4541 * bus/connection.c (connection_watch_callback): don't dispatch
4543 (connection_timeout_callback): don't dispatch from here
4544 (bus_connections_setup_connection): set the dispatch status function
4545 (bus_connection_disconnected): unset it
4547 * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
4548 used to add a connection to be dispatched
4549 (_dbus_loop_iterate): do the dispatching at the end of each
4552 * dbus/dbus-connection.c
4553 (dbus_connection_set_dispatch_status_function): new function
4554 allowing us to fix up main loop usage
4555 (_dbus_connection_last_unref): free all the various function
4557 (dbus_connection_dispatch): call the DispatchStatusFunction
4558 whenever this function returns
4559 (dbus_connection_handle_watch): call DispatchStatusFunction
4560 (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
4561 (reply_handler_timeout): call DispatchStatusFunction
4562 (dbus_connection_flush): call DispatchStatusFunction
4564 2003-04-09 Havoc Pennington <hp@redhat.com>
4566 * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
4569 * bus/dispatch.c (check_service_activated): fix bug in test
4571 * dbus/dbus-mainloop.c (check_timeout): fix this up
4573 * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
4574 verbose output so we can sort out output from different processes,
4575 e.g. in the activation case.
4577 2003-04-08 Colin Walters <walters@gnu.org>
4579 * bus/bus.c (struct BusContext) [pidfile]: New member, to store
4581 (bus_context_new): Set it.
4582 (bus_context_unref): Use it to delete the pid file.
4584 2003-04-08 Havoc Pennington <hp@redhat.com>
4586 * test/data/invalid-messages/array-with-mixed-types.message:
4587 regression test that fails for the moment
4589 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
4590 tests for convenience
4592 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
4593 array of nil, it broke things.
4595 * test/data/invalid-messages/array-of-nil.message: regression test
4597 * test/data/valid-messages/array-of-array-of-uint32.message:
4598 happened to write this so added it to suite
4600 2003-04-08 Havoc Pennington <hp@redhat.com>
4602 * bus/driver.c (bus_driver_handle_acquire_service): init
4603 retval/reply before checking name
4605 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
4606 recursion depth argument
4608 * dbus/dbus-message.h (struct DBusMessageIter): put some padding
4609 in the public struct for future extension
4611 * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
4614 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
4617 * doc/dbus-specification.sgml: fix typo
4619 2003-04-08 Alexander Larsson <alexl@redhat.com>
4621 Implemented recursive types, named types and new-style iters
4624 * glib/test-thread-client.c: (thread_func):
4625 * glib/test-thread-server.c: (handle_test_message):
4626 * test/test-service.c: (handle_echo):
4635 * dbus/dbus-internals.c: (_dbus_type_to_string):
4636 Update for new types.
4638 * dbus/dbus-marshal.[ch]:
4639 Implement recursive types and the new marshalling format.
4640 Remove hardcoded dict marshalling.
4641 Marshal named types.
4643 * dbus/dbus-message-builder.c:
4645 Remove references to old types
4647 * dbus/dbus-message.[ch]:
4648 New non-refcounted iter API that supports recursive iters.
4649 Use iters for appending, including support for recursive
4651 Add byte and named type support.
4652 Update everything to new marshalling formats.
4653 Add tests for new API.
4655 * dbus/dbus-protocol.h:
4656 Remove old array types.
4657 Add types: BYTE, ARRAY, DICT, NAMED
4659 * dbus/dbus-string.c:
4660 * dbus/dbus-sysdeps.c:
4661 Make parse_double locale safe.
4663 * dbus/dbus-test-main.c:
4669 * doc/dbus-specification.sgml:
4672 * test/data/incomplete-messages/missing-body.message:
4673 * test/data/invalid-messages/bad-boolean.message:
4674 * test/data/invalid-messages/bad-boolean-array.message:
4675 * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
4676 * test/data/invalid-messages/boolean-has-no-value.message-raw:
4677 * test/data/invalid-messages/too-short-dict.message:
4678 * test/data/valid-messages/dict-simple.message:
4679 * test/data/valid-messages/dict.message:
4680 * test/data/valid-messages/emptiness.message:
4681 * test/data/valid-messages/lots-of-arguments.message:
4682 * test/data/valid-messages/no-padding.message:
4683 * test/data/valid-messages/recursive-types.message:
4684 Add missing NAME fields
4685 Fix up dicts & arrays
4687 * test/data/invalid-messages/dict-with-nil-value.message:
4688 Removed, this is not invalid anymore.
4690 * test/data/valid-messages/recursive-types.message:
4691 Add new test for deeply recursive types.
4693 2003-04-07 Havoc Pennington <hp@pobox.com>
4695 * bus/driver.c (bus_driver_handle_acquire_service): return an
4696 error if you try to acquire a service that starts with ':'
4698 2003-04-07 Havoc Pennington <hp@redhat.com>
4700 * doc/dbus-specification.sgml: require that base service names
4701 start with ':' and that the base service is created/deleted
4702 as first and last things a connection does on the bus
4704 * bus/dispatch.c (check_existent_service_activation): lots more
4705 work on the activation test; it doesn't fully pass yet...
4707 * test/test-service.c (main): fix so we don't memleak the
4708 connection to the message bus
4709 (filter_func): accept a message asking us to exit
4711 2003-04-06 Havoc Pennington <hp@pobox.com>
4713 * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
4716 * configure.in: fixes to Qt detection from Colin Walters
4718 * doc/Makefile.am: Only remove generated docbook dirs if they
4719 exist, from Colin Walters
4721 * dbus/dbus-bus.c: change how we set well-known connections to
4722 NULL, so that it works if a single connection is stored in
4723 two well-known array slots.
4725 * test/Makefile.am: remove a lot of stuff that isn't immediately
4726 useful, it's in CVS history if we want it.
4728 * test/test-service.c: use dbus-mainloop instead of that
4731 2003-04-06 Havoc Pennington <hp@pobox.com>
4733 * dbus/Makefile.am: split lists of sources into stuff that goes in
4734 the library, util functions that go in the lib and are also used
4735 elsewhere, and util functions that are used in tests/daemon but
4736 don't go in the lib.
4738 * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
4739 here so it can be used in test binaries also
4741 2003-04-06 Havoc Pennington <hp@pobox.com>
4743 * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
4744 here in the parent process, so we can return an error if it
4745 fails. Also, move some of the code into the child so the parent
4746 is less hosed if we fail midway through.
4748 * bus/bus.c (bus_context_new): move pidfile detection further up
4749 in the function, before we start overwriting sockets and such.
4751 * bus/messagebus.in: adjust this a bit, not sure if it will work.
4753 * configure.in: add --with-system-pid-file and --with-system-socket
4755 2003-04-06 Colin Walters <walters@verbum.org>
4757 * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
4759 * bus/system.conf.in: Declare a pidfile.
4761 * bus/bus.c (bus_context_new): Test for an existing pid file, and
4762 create one (if appropriate).
4764 * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
4765 (struct BusConfigParser) [pidfile]: New.
4766 (element_type_to_name, merge_included, start_busconfig_child)
4767 (bus_config_parser_end_element, bus_config_parser_content): Handle it.
4768 (bus_config_parser_unref): Free it.
4769 (bus_config_parser_get_pidfile): New function.
4771 * bus/config-parser.h (_dbus_write_pid_file): Prototype.
4773 * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
4775 * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
4777 * dbus/dbus-sysdeps.h: Prototype it.
4779 2003-04-06 Havoc Pennington <hp@pobox.com>
4781 * bus/bus.c (bus_context_new): print the address in here, rather
4782 than in main(), because we need to do it before forking the daemon
4784 * bus/dispatch.c (send_service_nonexistent_error): set the sender
4785 on the service nonexistent error
4787 * bus/driver.c (bus_driver_handle_acquire_service): set the
4788 sender on the AcquireService reply
4790 * test/data/valid-config-files/debug-allow-all.conf.in: Make test
4791 server also listen on a UNIX socket so services can connect to it.
4793 2003-04-06 Havoc Pennington <hp@pobox.com>
4795 * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
4796 so it detects deadlocks and also we actually init threads when
4799 2003-04-06 Havoc Pennington <hp@pobox.com>
4801 * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
4802 save the domain socket name, and unlink it when we disconnect the
4803 server. Means that at least when we exit normally, we won't leave
4804 a bunch of junk in /tmp
4806 * dbus/dbus-transport-unix.c
4807 (_dbus_transport_new_for_domain_socket): code cleanup (nicer
4808 memory management). (I was making a real change here but then
4811 2003-04-06 Havoc Pennington <hp@pobox.com>
4813 * bus/bus.c (bus_context_new): fix wrong handling of
4814 server_data_slot_unref() in the error case.
4816 * dbus/dbus-internals.h (_dbus_assert): change so it passes
4817 "(condition) != 0" to _dbus_real_assert so that
4818 "_dbus_assert (pointer)" doesn't cause a warning
4820 * bus/main.c (main): accept --print-address option to print out
4821 the message bus address
4823 * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
4825 * dbus/dbus-transport.c (_dbus_transport_open): special error for
4826 "tmpdir" option to unix: address on client side
4828 * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
4831 * configure.in (TEST_SOCKET_DIR): locate a temporary directory
4832 we can use to create sockets in the test suite.
4834 * bus/main.c (signal_handler): on SIGTERM, exit the daemon
4835 cleanly. To be used for testing.
4837 * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
4839 * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
4841 * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
4842 handle trying to call this when there's no servers active
4844 2003-04-05 Havoc Pennington <hp@pobox.com>
4850 2003-04-05 Havoc Pennington <hp@pobox.com>
4852 * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
4853 crash on startup. Need to get "try starting the daemon"
4854 in the test suite I guess. ;-)
4856 * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
4857 tracked the number of open connections; it's better done in
4858 application-specific code as you want it to span all servers etc.
4860 2003-04-05 Havoc Pennington <hp@pobox.com>
4862 * bus/Makefile.am (install-data-hook): add missing DESTDIR,
4863 patch from Colin Walters
4865 2003-04-05 Havoc Pennington <hp@pobox.com>
4867 * doc/config-file.txt (Elements): fix docs of <auth> to reflect
4868 reality; in fact multiple mechanisms are allowed.
4870 * dbus/dbus-internals.c (_dbus_real_assert)
4871 (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
4872 _dbus_assert_not_reached() into functions, so that they don't show
4873 up in basic block counts for test coverage, and don't use up as
4874 much disk space. Does mean slower execution speed though, so
4875 assumes --disable-asserts is the normal production case.
4877 2003-04-05 Havoc Pennington <hp@pobox.com>
4879 * test/Makefile.am (dist-hook): also dist *.in files
4885 2003-04-05 Havoc Pennington <hp@pobox.com>
4887 * dbus/dbus-string.c: docs warning
4889 * dbus/dbus-spawn.c: missing docs
4891 * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
4893 2003-04-05 Havoc Pennington <hp@pobox.com>
4895 * bus/loop.c (bus_loop_iterate): fix the timeout code, using
4898 * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
4899 to -1 once we've reaped the babysitter
4900 (_dbus_babysitter_handle_watch): do as much work as we can, not
4903 * bus/activation.c: add code using DBusBabysitter so that we
4904 handle it when a service fails to start up properly.
4905 (bus_activation_service_created): don't remove the activation
4906 entries as we go, just let them get removed when we free the pending
4907 activation. Unref reply messages after sending them.
4909 2003-04-05 Havoc Pennington <hp@pobox.com>
4911 * test/decode-gcov.c (main): print per-directory stats in the report
4913 * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
4915 2003-04-05 Havoc Pennington <hp@pobox.com>
4917 * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
4919 * test/decode-gcov.c: hack up a little program to suck data
4920 out of gcov files. Yes this is sort of silly.
4922 * configure.in: define something in config.h and do an
4923 AM_CONDITIONAL when gcov is enabled
4925 2003-04-04 Havoc Pennington <hp@redhat.com>
4927 * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
4928 return a "babysitter" object that is used to monitor the status of
4929 the spawned process and reap it when required.
4931 * test/test-segfault.c, test/test-exit.c,
4932 test/test-sleep-forever.c: binaries that do various lame things,
4933 used in the test suite.
4935 * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
4937 2003-04-03 Havoc Pennington <hp@pobox.com>
4939 * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
4940 in preparation for modifying it, dbus-sysdeps is getting
4943 2003-04-03 Havoc Pennington <hp@redhat.com>
4945 * bus/loop.h, bus/loop.c: make the mainloop an object so we can
4948 * bus/*.[hc]: adapt to mainloop change
4950 2003-04-03 Havoc Pennington <hp@redhat.com>
4952 * bus/activation.c (load_directory): fix up memleaks
4953 (bus_activation_entry_free): free the entry
4955 * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
4956 we get one from the message bus; fix memleaks.
4958 * dbus/dbus-message.c (dbus_set_error_from_message): new function
4960 2003-04-03 Havoc Pennington <hp@pobox.com>
4962 * bus/config-parser.c (bus_config_parser_unref): free
4963 list of mechanisms, bug discovered by test suite enhancements
4964 (putting system.conf and session.conf into suite)
4966 * test/Makefile.am, test/test-service.c: add placeholder for a
4967 test service that we'll activate as part of test suite. Doesn't
4970 * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
4971 setting NULL value, and use system malloc not dbus_malloc()
4972 when we have unavoidable memleakage.
4974 * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
4975 didn't work, and support DBUS_BUS_ACTIVATION.
4977 * bus/activation.c (child_setup): pass our well-known bus type to
4980 * bus/config-parser.c: support <type> to specify well-known type
4982 * doc/dbus-specification.sgml: document the env variables to
4983 locate well-known buses and find service activator
4985 2003-04-02 Havoc Pennington <hp@redhat.com>
4987 * test/Makefile.am (all-local): add a rule to copy tests to
4988 builddir, so we can have generated tests. Use this to remove the
4989 silly hack for testing system.conf and session.conf. Will use this
4990 shortly to generate .service files pointing to test binaries.
4992 2003-04-02 Havoc Pennington <hp@redhat.com>
4994 * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
4995 current alloc and needed new length, not max of the doubled
4996 allocation and needed new length. Also, when building tests,
4997 don't do the double-allocation stuff, just realloc every time.
4999 2003-04-02 Havoc Pennington <hp@redhat.com>
5001 * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
5003 (_dbus_string_get_dirname): new
5004 (_dbus_sysdeps_test): new
5005 (_dbus_directory_open): include dirnames in error messages
5007 * bus/config-parser.c: interpret <include> and <includedir> and
5008 <servicedir> relative to config file location if the given
5009 filename is not absolute.
5011 * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
5013 2003-04-02 Havoc Pennington <hp@redhat.com>
5015 * bus/connection.c (bus_transaction_send_error_reply): set sender
5016 service for the error, and unref the reply on success
5018 * bus/activation.c: convert to use BusTransaction so OOM can be
5020 (bus_activation_service_created): set sender of the message
5022 2003-04-01 Havoc Pennington <hp@redhat.com>
5024 * bus/config-parser.c, bus/bus.c: implement <servicedir> and
5025 <includedir> (at least mostly)
5027 * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
5028 first, then the user ID
5030 2003-04-01 Havoc Pennington <hp@pobox.com>
5032 * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
5035 * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
5037 * dbus/dbus-internals.c (_dbus_dup_string_array): new function
5039 * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
5040 socket 0777, and unlink any existing socket.
5042 * bus/bus.c (bus_context_new): change our UID/GID and fork if
5043 the configuration file so specifies; set up auth mechanism
5046 * bus/config-parser.c (bus_config_parser_content): add support
5047 for <fork> option and fill in code for <auth>
5049 * bus/system.conf.in: add <fork/> to default configuration,
5050 and limit auth mechanisms to EXTERNAL
5052 * doc/config-file.txt (Elements): add <fork>
5054 * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
5055 (_dbus_change_identity): new function
5057 2003-03-31 Havoc Pennington <hp@redhat.com>
5059 * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
5060 (_dbus_listen_unix_socket): fix off-by-one error in null
5061 termination spotted by Nalin
5063 2003-03-31 Havoc Pennington <hp@redhat.com>
5065 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
5066 DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
5067 having a real home directory available.
5069 2003-03-31 Havoc Pennington <hp@redhat.com>
5071 * bus/Makefile.am (install-data-hook): create /var/run/dbus
5073 * bus/messagebus.in: add init script for Red Hat /etc/init.d
5075 * configure.in: add support for specifying a style of init script
5078 2003-03-31 Havoc Pennington <hp@redhat.com>
5080 Fix some annoying DBusString API and fix all affected code.
5082 * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
5084 (_dbus_string_get_data): change to return string instead of using
5086 (_dbus_string_get_const_data): ditto
5087 (_dbus_string_get_data_len): ditto
5088 (_dbus_string_get_const_data_len): ditto
5090 2003-03-31 Havoc Pennington <hp@redhat.com>
5092 * bus/main.c (main): fix up the command line arguments to be nicer
5094 2003-03-31 Havoc Pennington <hp@redhat.com>
5096 * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
5097 define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
5098 final location that lands in the config file
5100 * bus/config-loader-expat.c (bus_config_load): fix type of
5103 * doc/TODO: remove TODO item for dbus_bus_get()
5105 * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
5107 2003-03-31 Havoc Pennington <hp@pobox.com>
5109 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
5110 (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
5111 argument since they are always client side
5113 * dbus/dbus-server.c (dbus_server_get_address): new function
5115 * bus/main.c (main): take the configuration file as an argument.
5117 * test/data/valid-config-files/debug-allow-all.conf: new file to
5118 use with dispatch.c tests for example
5120 * bus/test-main.c (main): require test data dir
5122 * bus/bus.c (bus_context_new): change this to take a
5123 configuration file name as argument
5125 * doc/config-file.txt (Elements): add <servicedir>
5127 * bus/system.conf, bus/session.conf: new files
5129 * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
5130 well-known socket if none set
5132 * configure.in: create system.conf and session.conf
5134 2003-03-30 Havoc Pennington <hp@pobox.com>
5136 * bus/config-parser.c: hacking
5138 * dbus/dbus-memory.c: don't use DBusList for the list of stuff
5139 to shut down, since it could cause weirdness with the DBusList
5142 * dbus/dbus-list.c (_dbus_list_test): add tests for the
5143 link-oriented stack routines
5144 (alloc_link): free the mempool if the first alloc from it fails
5146 * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
5148 * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
5150 (_dbus_string_skip_white): new
5152 * doc/config-file.txt (Elements): add <includedir>
5154 2003-03-28 Havoc Pennington <hp@pobox.com>
5156 * dbus/dbus-string.c (_dbus_string_copy_data_len)
5157 (_dbus_string_copy_data): new functions
5159 2003-03-28 Anders Carlsson <andersca@codefactory.se>
5161 * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
5165 * dbus/dbus-memory.c:
5168 2003-03-28 Havoc Pennington <hp@pobox.com>
5170 * bus/test.c (bus_test_flush_bus): remove the sleep from here,
5171 I think it may have just been superstition. Not sure.
5173 * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
5174 failures that were not being handled.
5176 * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
5178 * dbus/dbus-memory.c: add ability to set number of mallocs in a
5179 row that will fail on out-of-memory.
5181 * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
5182 function for testing out-of-memory handling.
5184 * bus/config-loader-expat.c (memsuite): don't wrap the dbus
5185 allocation functions, they do map exactly to the expat ones.
5187 2003-03-27 Havoc Pennington <hp@redhat.com>
5189 * bus/config-loader-libxml.c (bus_config_load): add another error
5192 2003-03-26 Anders Carlsson <andersca@codefactory.se>
5195 Add note about automatic service activation.
5197 * doc/dbus-specification.sgml:
5198 Rename the specification and clarify a few things.
5200 2003-03-26 Anders Carlsson <andersca@codefactory.se>
5203 * dbus/dbus-address.c:
5205 * dbus/dbus-marshal.c:
5206 * dbus/dbus-server-debug-pipe.c:
5207 * dbus/dbus-transport-unix.c:
5208 Fix documentation warnings.
5210 2003-03-26 Havoc Pennington <hp@pobox.com>
5212 * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
5213 after every test so it's quick and easy to see which leaked, and
5214 so we test multiple dbus_shutdown() calls
5216 * configure.in: change configure.in XML stuff to also support
5219 * config-loader-libxml.c: some hacking
5221 * config-loader-expat.c: some hacking
5223 * config-parser.c: some hacking, plus tests
5225 2003-03-25 Havoc Pennington <hp@redhat.com>
5227 * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
5229 * configure.in: add --with-xml option to specify XML library,
5230 right now only libxml is supported.
5232 * bus/config-loader-libxml.c, config-parser.c: sync some minor
5233 nonworking code between home and work, still just stubs
5235 2003-03-24 Havoc Pennington <hp@redhat.com>
5237 * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
5240 * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
5241 NULL argument for "message" if the error is a well-known one,
5242 fill in a generic message in this case.
5244 * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
5247 * bus/test.c (bus_test_flush_bus): add
5249 * bus/policy.c (bus_policy_test): test code stub
5251 2003-03-24 Havoc Pennington <hp@pobox.com>
5253 * bus/connection.c (bus_connections_setup_connection): set up
5254 the "can this user connect" function, but it always returns
5255 TRUE until we have a config file parser so we can have a config
5256 file that allows connections.
5258 2003-03-23 Havoc Pennington <hp@pobox.com>
5260 * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
5261 DBUS_BUILD_TESTS, actually alloc/free a block of memory for
5262 the mutex, so we can check for proper memory management
5265 * dbus/dbus-dataslot.c: remove the mutex from
5266 DBusDataSlotAllocator and lock it manually when using it,
5267 to simplify fitting it into the global slots framework.
5269 * dbus/dbus-threads.c (init_static_locks): rework how we're
5270 handling global locks so they are easily shut down.
5272 * bus/policy.c (bus_policy_append_rule): fix
5274 * bus/test-main.c (main): check for memleaks
5276 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
5277 test suite check for memleaks
5279 * dbus/dbus-memory.c: add support in test mode for tracking
5280 number of outstanding blocks
5282 2003-03-23 Havoc Pennington <hp@pobox.com>
5284 * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
5287 * dbus/dbus-hash.h: add ULONG hash keys
5289 * dbus/dbus-sysdeps.c (_dbus_get_groups): new
5290 (_dbus_get_group_id): new function
5292 2003-03-20 Havoc Pennington <hp@redhat.com>
5294 * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
5296 (dbus_connection_get_unix_user): new function
5298 2003-03-20 Havoc Pennington <hp@pobox.com>
5300 * bus/connection.c (bus_connection_send_oom_error): assert that
5301 message has a sender
5302 (connection_execute_transaction): ditto
5303 (bus_connection_preallocate_oom_error): fix to set the sender, and
5304 set recipient to the destination service, not the bus driver
5306 * bus/policy.c: hacking
5308 * dbus/dbus-message.c (dbus_message_service_is): new function
5309 (dbus_message_sender_is): new
5311 2003-03-19 Havoc Pennington <hp@redhat.com>
5313 * bus/policy.c: start sketching code for policy restrictions on
5314 what connections can do.
5316 2003-03-18 Havoc Pennington <hp@redhat.com>
5318 * doc/TODO: some notes on high-level todo items. Little nitpick
5319 stuff is all in @todo, so no need to add it here.
5321 * doc/config-file.txt: some notes on how config file might look
5323 2003-03-18 Anders Carlsson <andersca@codefactory.se>
5329 2003-03-17 Havoc Pennington <hp@redhat.com>
5331 * dbus/dbus-internals.h: add gcc attributes so that
5332 our printf-style functions warn on bad arguments to
5335 * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
5338 * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
5341 2003-03-17 Havoc Pennington <hp@redhat.com>
5343 * bus/test-main.c (main): make it print something as it runs
5344 so make check doesn't look stuck
5346 * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
5347 from CVS, now obsolete
5349 2003-03-17 Anders Carlsson <andersca@codefactory.se>
5351 * bus/dispatch.c: (bus_dispatch):
5352 Refetch the service name since it may have been reallocated
5353 when dbus_message_set_sender was called.
5355 * dbus/dbus-sysdeps.c: (_dbus_accept):
5356 Add address and address length variables and use them to stop
5357 valgrind from complaining.
5359 2003-03-17 Havoc Pennington <hp@pobox.com>
5361 All tests pass, no memleaks, no valgrind complaints.
5363 * bus/test.c: refcount handler_slot
5365 * bus/connection.c (bus_connections_new): refcount
5366 connection_data_slot
5368 * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
5369 bytes so that auth scripts pass.
5371 * bus/dispatch.c: init message_handler_slot so it gets allocated
5374 * bus/dispatch.c (message_handler_slot_ref): fix memleak
5376 * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
5377 dealloc server_pipe_hash when no longer used for benefit of
5380 * dbus/dbus-auth.c (process_command): memleak fix
5382 * bus/dispatch.c (check_hello_message): memleak fix
5384 2003-03-16 Havoc Pennington <hp@pobox.com>
5386 * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
5388 2003-03-17 Anders Carlsson <andersca@codefactory.se>
5390 * bus/activation.c (bus_activation_activate_service): Append
5391 the pending activation entry to the list of pending activations.
5393 2003-03-16 Havoc Pennington <hp@pobox.com>
5395 * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
5398 * dbus/dbus-address.c (create_entry): fix OOM handling when
5399 failing to alloc entry->method
5401 2003-03-16 Havoc Pennington <hp@pobox.com>
5403 * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
5406 * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
5407 add some missing dbus_set_result
5409 * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
5410 alloc the DBusMessageHandler
5412 * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
5413 the transport here, since we call this from the finalizer; it
5414 resulted in a double-finalize.
5416 * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
5417 where we tried to use transport->connection that was NULL,
5418 happened when transport was disconnected early on due to OOM
5420 * bus/*.c: adapt to handle OOM for watches/timeouts
5422 * dbus/dbus-transport-unix.c: port to handle OOM during
5425 * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
5426 reference to unused bytes instead of a copy
5428 * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
5431 * dbus/dbus-connection.c (dbus_connection_handle_watch): return
5434 * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
5437 2003-03-16 Anders Carlsson <andersca@codefactory.se>
5439 * doc/dbus-specification.sgml:
5440 Document reply message for ActivateService.
5442 2003-03-16 Anders Carlsson <andersca@codefactory.se>
5444 * bus/activation.c: (bus_pending_activation_entry_free),
5445 (bus_pending_activation_free), (bus_activation_new),
5446 (bus_activation_unref), (bus_activation_service_created),
5447 (bus_activation_activate_service):
5449 * bus/bus.c: (bus_context_new):
5450 * bus/desktop-file.c: (new_section):
5451 * bus/driver.c: (bus_driver_send_service_deleted),
5452 (bus_driver_handle_activate_service):
5453 * bus/services.c: (bus_registry_new), (bus_registry_ensure):
5455 * dbus/dbus-connection.c:
5456 (dbus_connection_send_with_reply_and_block):
5457 * dbus/dbus-message.c: (dbus_message_append_args_valist):
5458 * dbus/dbus-protocol.h:
5459 Make activation work better. Now pending activations will be queued
5460 and the daemon won't try to activate services that are already registered.
5462 2003-03-16 Havoc Pennington <hp@pobox.com>
5464 * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
5467 * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
5468 DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
5470 2003-03-16 Havoc Pennington <hp@pobox.com>
5472 * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
5473 this. always run the test suite before commit...
5475 * bus/*: adapt to DBusConnection API changes
5477 * glib/dbus-gmain.c: adapt to DBusConnection API changes,
5478 requires renaming stuff to avoid dbus_connection_dispatch name
5481 * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
5484 * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
5485 separate from _dbus_message_loader_return_buffer()
5487 * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
5488 this, because it's now always broken to use; the number of
5489 messages in queue vs. the number still buffered by the message
5490 loader is undefined/meaningless. Should use
5491 dbus_connection_get_dispatch_state().
5492 (dbus_connection_dispatch): rename from
5493 dbus_connection_dispatch_message
5495 2003-03-16 Havoc Pennington <hp@pobox.com>
5497 * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
5500 2003-03-16 Anders Carlsson <andersca@codefactory.se>
5502 * dbus/dbus-connection.c:
5503 (dbus_connection_send_with_reply_and_block):
5504 Decrease connection->n_incoming when removing an entry
5506 * dbus/dbus-dict.c: (dbus_dict_entry_free),
5507 (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
5508 (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
5509 (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
5510 (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
5511 (dbus_dict_get_byte_array):
5512 Handle NULL arrays and strings. Also add support for byte arrays.
5514 * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
5515 (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
5516 (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
5517 (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
5518 (_dbus_demarshal_dict), (demarshal_and_validate_len),
5519 (_dbus_marshal_validate_arg), (_dbus_marshal_test):
5520 * dbus/dbus-marshal.h:
5521 Add support for marshalling and demarshalling empty arrays and strings.
5523 * dbus/dbus-message.c: (dbus_message_append_args_valist),
5524 (dbus_message_append_string_array),
5525 (dbus_message_iter_get_boolean),
5526 (dbus_message_iter_get_boolean_array),
5527 (dbus_message_iter_get_int32_array),
5528 (dbus_message_iter_get_uint32_array),
5529 (dbus_message_iter_get_double_array),
5530 (dbus_message_iter_get_byte_array),
5531 (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
5532 (check_message_handling):
5533 Add support for getting empty arrays and dicts.
5535 * dbus/dbus-string.c: (_dbus_string_validate_utf8):
5536 Don't do any validation at all for now, that's better than just checking
5539 * test/data/valid-messages/emptiness.message:
5540 New test message with lots of empty arrays.
5542 2003-03-16 Havoc Pennington <hp@pobox.com>
5544 * dbus/dbus-connection.c
5545 (_dbus_connection_queue_received_message_link): new function that
5546 can't fail due to OOM
5548 * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
5549 new function pops a message together with a list link
5552 * dbus/dbus-transport-unix.c (queue_messages): use new link-based
5553 message queuing functions to avoid needing to alloc memory
5555 2003-03-16 Havoc Pennington <hp@pobox.com>
5557 Oops - test code was only testing failure of around 30 of the
5558 mallocs in the test path, but it turns out there are 500+
5559 mallocs. I believe this was due to misguided linking setup such
5560 that there was one copy of dbus_malloc etc. in the daemon and one
5561 in the shared lib, and only daemon mallocs were tested. In any
5562 case, the test case now tests all 500+ mallocs, and doesn't pass
5563 yet, though there are lots of fixes in this patch.
5565 * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
5566 this so that it doesn't need to allocate memory, since it
5567 has no way of indicating failure due to OOM (and would be
5568 annoying if it did).
5570 * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
5572 * bus/Makefile.am: rearrange to create two self-contained
5573 libraries, to avoid having libraries with overlapping symbols.
5574 that was resulting in weirdness, e.g. I'm pretty sure there
5575 were two copies of global static variables.
5577 * dbus/dbus-internals.c: move the malloc debug stuff to
5580 * dbus/dbus-list.c (free_link): free list mempool if it becomes
5583 * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
5585 * dbus/dbus-address.c (dbus_parse_address): free list nodes
5588 * bus/dispatch.c (bus_dispatch_add_connection): free
5589 message_handler_slot when no longer using it, so
5590 memory leak checkers are happy for the test suite.
5592 * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
5594 * bus/bus.c (new_connection_callback): disconnect in here if
5595 bus_connections_setup_connection fails.
5597 * bus/connection.c (bus_connections_unref): fix to free the
5599 (bus_connections_setup_connection): if this fails, don't
5600 disconnect the connection, just be sure there are no side
5603 * dbus/dbus-string.c (undo_alignment): unbreak this
5605 * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
5607 (_dbus_auth_new): fix the order in which we free strings
5610 * bus/connection.c (bus_connection_disconnected): fix to
5611 not send ServiceDeleted multiple times in case of memory
5614 * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
5615 get the base service name
5616 (dbus_bus_register_client): don't return base service name,
5617 instead store it on the DBusConnection and have an accessor
5619 (dbus_bus_register_client): rename dbus_bus_register()
5621 * bus/dispatch.c (check_hello_message): verify that other
5622 connections on the bus also got the correct results, not
5623 just the one sending hello
5625 2003-03-15 Havoc Pennington <hp@pobox.com>
5627 Make it pass the Hello handling test including all OOM codepaths.
5628 Now to do other messages...
5630 * bus/services.c (bus_service_remove_owner): fix crash when
5631 removing owner from an empty list of owners
5632 (bus_registry_ensure): don't leave service in the list of
5633 a connection's owned services if we fail to put the service
5636 * bus/connection.c (bus_connection_preallocate_oom_error): set
5637 error flag on the OOM error.
5639 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
5640 handle _dbus_transport_set_connection failure
5642 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
5643 to create watches up front and simply enable/disable them as
5645 (unix_connection_set): this can now fail on OOM
5647 * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
5648 of enabling/disabling a watch or timeout.
5650 * bus/loop.c (bus_loop_iterate): don't touch disabled
5653 * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
5655 2003-03-15 Havoc Pennington <hp@pobox.com>
5657 * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
5658 write useful test code, after all that futzing around ;-)
5660 Test does not yet pass because we can't handle OOM in
5661 _dbus_transport_messages_pending (basically,
5662 dbus_connection_preallocate_send() does not prealloc the write
5663 watch). To fix this, I think we need to add new stuff to
5664 set_watch_functions, namely a SetEnabled function so we can alloc
5665 the watch earlier, then enable it later.
5667 * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
5668 dbus-memory.c to the convenience lib
5670 * bus/test.c: rename some static functions to keep them clearly
5671 distinct from stuff in connection.c. Handle client disconnection.
5673 2003-03-14 Havoc Pennington <hp@pobox.com>
5675 * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
5676 transport, tests more of the real codepath. Set up clients
5677 with bus_setup_debug_client.
5679 * bus/test.c (bus_setup_debug_client): function to set up debug
5680 "clients" on the main loop
5682 * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
5685 * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
5688 * dbus/dbus-server-debug.c: support a debug server based on pipes
5690 * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
5691 (_dbus_close): new function
5693 * configure.in: check for socketpair
5695 2003-03-14 Havoc Pennington <hp@redhat.com>
5697 * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
5700 * dbus/dbus-transport-debug.c: rework this a good bit to be
5701 less complicated. hopefully still works.
5703 * dbus/dbus-server-debug.c (handle_new_client): remove timeout
5706 * glib/dbus-gmain.c (timeout_handler): don't remove timeout
5709 * dbus/dbus-message.c (dbus_message_copy): rename from
5710 dbus_message_new_from_message, fix it up to copy
5711 all the message fields, add test case
5713 * bus/dispatch.c (bus_dispatch_test): add some more test code,
5714 not quite passing yet
5716 2003-03-14 Havoc Pennington <hp@pobox.com>
5718 * bus/loop.c (bus_loop_iterate): add this so we can "run loop
5719 until no work remains" in test code. (the large diff here
5720 is just code movement, no actual changes)
5722 * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
5723 1, no point waiting around for test code.
5724 (_dbus_server_debug_accept_transport): unref the timeout
5725 after adding it (right?)
5727 * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
5729 2003-03-13 Havoc Pennington <hp@redhat.com>
5731 * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
5734 * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
5737 * dbus/dbus-connection.h: Make AddWatchFunction and
5738 AddTimeoutFunction return a bool so they can fail on out-of-memory
5740 * bus/bus.c (bus_context_new): set up timeout handlers
5742 * bus/connection.c (bus_connections_setup_connection): set up
5745 * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
5748 * bus/bus.c (bus_context_new): adapt to changes
5750 * bus/connection.c: adapt to changes
5752 * test/watch.c: adapt to DBusWatch changes
5754 * bus/dispatch.c (bus_dispatch_test): started adding this but
5757 2003-03-14 Anders Carlsson <andersca@codefactory.se>
5759 * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
5761 2003-03-13 Havoc Pennington <hp@pobox.com>
5763 * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
5764 set up a test framework as for the library
5766 2003-03-12 Havoc Pennington <hp@pobox.com>
5768 Throughout: purge global variables, introduce BusActivation,
5769 BusConnections, BusRegistry, etc. objects instead.
5771 * bus/bus.h, bus/bus.c: introduce BusContext as a global
5774 * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
5775 going to redo this a bit differently I think
5777 2003-03-12 Havoc Pennington <hp@redhat.com>
5779 Mega-patch that gets the message bus daemon initially handling
5780 out-of-memory. Work still needed. Also lots of random
5781 moving stuff to DBusError instead of ResultCode.
5783 * dbus/dbus-list.c (_dbus_list_length_is_one): new function
5785 * dbus/dbus-connection.c
5786 (dbus_connection_send_with_reply_and_block): use DBusError
5788 * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
5791 * dbus/dbus-connection.c (dbus_connection_send): drop the result
5792 code here, as the only failure possible is OOM.
5794 * bus/connection.c (bus_connection_disconnect):
5795 rename bus_connection_disconnected as it's a notification only
5797 * bus/driver.c (bus_driver_handle_acquire_service): don't free
5798 "name" on get_args failure, should be done by get_args;
5799 don't disconnect client for bad args, just return an error.
5800 (bus_driver_handle_service_exists): ditto
5802 * bus/services.c (bus_services_list): NULL-terminate returned array
5804 * bus/driver.c (bus_driver_send_service_lost)
5805 (bus_driver_send_service_acquired): send messages from driver to a
5806 specific client to the client's unique name, not to the broadcast
5809 * dbus/dbus-message.c (decode_header_data): reject messages that
5810 contain no name field
5811 (_dbus_message_get_client_serial): rename to
5812 dbus_message_get_serial and make public
5813 (_dbus_message_set_serial): rename from set_client_serial
5814 (_dbus_message_set_reply_serial): make public
5815 (_dbus_message_get_reply_serial): make public
5817 * bus/connection.c (bus_connection_foreach): allow stopping
5818 iteration by returning FALSE from foreach function.
5820 * dbus/dbus-connection.c (dbus_connection_send_preallocated)
5821 (dbus_connection_free_preallocated_send)
5822 (dbus_connection_preallocate_send): new API for sending a message
5823 without possibility of malloc failure.
5824 (dbus_connection_send_message): rename to just
5825 dbus_connection_send (and same for whole function family)
5827 * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
5829 * dbus/dbus-sysdeps.c (_dbus_exit): new function
5831 * bus/activation.c: handle/return errors
5833 * dbus/dbus-errors.h: add more DBUS_ERROR #define
5835 * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
5836 (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
5837 (_dbus_result_from_errno): move to this file
5839 2003-03-10 Anders Carlsson <andersca@codefactory.se>
5841 * dbus/dbus-marshal.c:
5842 (_dbus_marshal_set_string):
5843 Take a length argument so we can marshal the correct string
5846 (_dbus_marshal_dict), (_dbus_demarshal_dict),
5847 (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
5848 (_dbus_marshal_test):
5849 * dbus/dbus-marshal.h:
5850 Add support for marshalling and demarshalling dicts.
5852 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
5853 Add support for TYPE DICT.
5855 * dbus/dbus-message.c: (set_string_field):
5856 Adjust header padding.
5858 (dbus_message_append_args_valist), (dbus_message_append_dict),
5859 (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
5860 (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
5861 (check_message_handling), (check_have_valid_message):
5862 * dbus/dbus-message.h:
5863 Add functions for setting and getting dicts.
5865 * dbus/dbus-protocol.h:
5871 * doc/dbus-specification.sgml:
5872 Add information about how dicts are marshalled.
5874 * test/data/invalid-messages/dict-with-nil-value.message:
5875 * test/data/invalid-messages/too-short-dict.message:
5876 * test/data/valid-messages/dict-simple.message:
5877 * test/data/valid-messages/dict.message:
5878 Add sample messages containing dicts.
5880 2003-03-08 Anders Carlsson <andersca@codefactory.se>
5882 * dbus/dbus-dict.h: Add DBUS_END_DECLS.
5884 2003-03-07 Anders Carlsson <andersca@codefactory.se>
5887 * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
5888 (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
5889 (dbus_dict_set_int32), (dbus_dict_set_uint32),
5890 (dbus_dict_set_double), (dbus_dict_set_string),
5891 (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
5892 (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
5893 (dbus_dict_set_string_array), (_dbus_dict_test):
5895 Fix according to comments from Havoc.
5897 2003-03-06 Michael Meeks <michael@server.home>
5899 * configure.in: if we don't have kde-config, disable have_qt.
5901 2003-03-07 Anders Carlsson <andersca@codefactory.se>
5906 * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
5907 (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
5908 (dbus_dict_remove), (dbus_dict_get_value_type),
5909 (dbus_dict_get_keys), (dbus_dict_put_boolean),
5910 (dbus_dict_put_int32), (dbus_dict_put_uint32),
5911 (dbus_dict_put_double), (dbus_dict_put_string),
5912 (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
5913 (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
5914 (dbus_dict_put_string_array), (dbus_dict_get_boolean),
5915 (dbus_dict_get_int32), (dbus_dict_get_uint32),
5916 (dbus_dict_get_double), (dbus_dict_get_string),
5917 (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
5918 (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
5919 (dbus_dict_get_string_array), (_dbus_dict_test):
5921 Add DBusDict implementation
5923 * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
5927 2003-03-04 Havoc Pennington <hp@pobox.com>
5929 * test/data/auth/*: adapt to changes
5931 * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
5932 USERID_BASE64 and change USERNAME_BASE64 to put in username not
5935 * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
5936 more stuff from being in a context name, to make the protocol
5937 simpler to deal with
5939 * dbus/dbus-errors.c (dbus_error_has_name): new function
5940 (dbus_error_is_set): new function
5942 * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
5943 with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
5945 * dbus/dbus-connection.c (dbus_connection_flush): also read
5946 messages during a flush operation
5948 * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
5950 2003-03-05 Anders Carlsson <andersca@codefactory.se>
5952 * configure.in: Check for gethostbyname on Solaris.
5954 * dbus/dbus-transport.c: (_dbus_transport_open):
5955 Remove duplicate "tcp" entry.
5957 * doc/dbus-specification.sgml:
5958 Clarify some things.
5960 2003-03-05 Anders Carlsson <andersca@codefactory.se>
5962 * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
5963 * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
5964 (_dbus_keyring_test):
5965 * dbus/dbus-md5.c: (_dbus_md5_compute):
5966 * dbus/dbus-sha.c: (_dbus_sha_compute):
5969 2003-03-05 Anders Carlsson <andersca@codefactory.se>
5971 * README: Add some things.
5973 2003-03-04 Anders Carlsson <andersca@codefactory.se>
5975 * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
5976 after case DBUS_TYPE_BOOELAN.
5978 2003-03-02 Havoc Pennington <hp@pobox.com>
5980 * test/break-loader.c (randomly_set_extreme_ints): add test that
5981 sets really huge and small integers
5983 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
5984 that length of boolean array fits in the string, and that
5985 string has room for boolean value in single-bool case.
5987 * dbus/dbus-message-builder.c (_dbus_message_data_load): add
5988 optional value to "ALIGN" command which is what to fill the
5991 * test/data/valid-messages/no-padding.message: add regression
5992 test for the message padding problem
5994 2003-03-02 Havoc Pennington <hp@pobox.com>
5996 * dbus/dbus-message.c (decode_header_data): fix to always init
5997 message_padding, from Benjamin Dauvergne
5999 2003-03-02 Havoc Pennington <hp@pobox.com>
6005 2003-03-01 Joe Shaw <joe@assbarn.com>
6007 * configure.in: Check for "struct cmsgcred" and try to access its
6008 members for BSD-like unices.
6010 * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
6011 _dbus_read_credentials_unix_socket().
6012 (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
6013 read() for reading the credential byte off the unix socket. Use
6014 struct cmsgcred on systems that support it.
6016 2003-02-27 Alexander Larsson <alexl@redhat.com>
6020 Make gthreads-2.0 dependency optional. Don't build thread test if
6023 2003-02-27 Havoc Pennington <hp@pobox.com>
6025 * dbus/dbus-connection.c
6026 (dbus_connection_send_message_with_reply_and_block): fix doh!
6027 doh! doh! bug that resulted in never removing a reply from the
6028 queue, no wonder we called get_reply_serial so much ;-)
6030 * dbus/dbus-message.c (struct DBusMessage): cache reply serial
6031 and client serial instead of demarshaling them every time
6033 2003-02-27 Havoc Pennington <hp@pobox.com>
6035 * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
6036 more inlined, using dbus-string-private.h, speeds things up
6039 * dbus/dbus-string.c (_dbus_string_free): apply align offset
6040 when freeing the string
6041 (_dbus_string_steal_data): fix for align offset
6042 (undo_alignment): new function
6044 2003-02-26 Havoc Pennington <hp@redhat.com>
6046 All kinds of audit fixes from Owen, plus initial attempt to
6047 handle unaligned memory returned from malloc.
6049 * dbus/dbus-string.c (_dbus_string_init): clamp max length to
6050 leave room for align_offset and nul byte
6051 (fixup_alignment): function to track an align_offset and
6052 ensure real->str is aligned
6053 (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
6054 to allow a nul byte plus align offset
6055 (_dbus_string_lock): fix overflow issue
6056 (_dbus_string_init_const_len): add assertions on sanity of len,
6057 assign allocated to be ALLOCATION_PADDING larger than len
6058 (set_length): fixup the overflow handling
6059 (_dbus_string_get_data_len): fix overflow in assertion
6060 (open_gap): detect overflow in size of gap to be opened
6061 (_dbus_string_lengthen): add overflow check
6062 (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
6063 (_dbus_string_append): add overflow check
6064 (_dbus_string_append_unichar): overflow
6065 (_dbus_string_delete): fix overflow in assertion
6066 (_dbus_string_copy_len): overflow in assertion
6067 (_dbus_string_replace_len): overflows in assertions
6068 (_dbus_string_find): change to implement in terms of
6069 _dbus_string_find_to
6070 (_dbus_string_find_to): assorted fixage
6071 (_dbus_string_equal_c_str): assert c_str != NULL,
6072 fix logic so the function works
6073 (_dbus_string_ends_with_c_str): fix overflow thingy
6074 (_dbus_string_base64_encode): overflow fix
6075 (_dbus_string_validate_ascii): overflow
6076 (_dbus_string_validate_nul): overflow
6078 2003-02-26 Havoc Pennington <hp@redhat.com>
6080 * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
6082 2003-02-26 Alexander Larsson <alexl@redhat.com>
6085 Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
6087 * dbus/dbus-connection.c:
6088 * dbus/dbus-connection.h:
6089 Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
6090 Add dbus_connection_set_wakeup_main_function and use it when queueing
6091 incoming and outgoing messages.
6094 * dbus/dbus-dataslot.c:
6095 Threadsafe usage of DBusDataSlotAllocator
6097 * dbus/dbus-message.c: (dbus_message_get_args_iter):
6100 * dbus/dbus-server-unix.c:
6103 * glib/dbus-gmain.c:
6104 Implement the new wakeup functions for glib.
6107 * glib/test-thread-client.c:
6108 * glib/test-thread-server.c:
6109 * glib/test-thread.h:
6110 Initial cut at some thread test code. Not really done yet.
6112 2003-02-26 Havoc Pennington <hp@pobox.com>
6114 * dbus/dbus-connection.c
6115 (dbus_connection_send_message_with_reply_and_block): fix crash
6116 where we ref'd the outgoing message instead of the returned reply
6118 * dbus/dbus-transport-unix.c (do_authentication): check read watch
6119 at the end of this function, so if we didn't need to read for
6120 authentication, we reinstall it for receiving messages
6122 * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
6123 a NULL sender for peer-to-peer case
6125 * dbus/dbus-transport-unix.c (check_read_watch): handle
6126 !authenticated case correctly
6128 * glib/dbus-gmain.c: add support for DBusServer
6130 * dbus/dbus-server.c: add data slot support
6132 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
6133 return values and handle errors
6135 * dbus/dbus-dataslot.c: factor out the data slot stuff from
6138 * Doxyfile.in (INPUT): add glib subdir
6140 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
6141 setup_with_g_main instead of hookup_with_g_main; write docs
6143 2003-02-24 Anders Carlsson <andersca@codefactory.se>
6145 * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
6146 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
6147 * dbus/dbus-message.c: (dbus_message_append_boolean),
6148 (dbus_message_append_boolean_array),
6149 (dbus_message_get_args_valist), (_dbus_message_test):
6150 * dbus/dbus-message.h:
6151 * doc/dbus-specification.sgml:
6152 Various fixes as pointed out by Havoc.
6154 * test/data/invalid-messages/bad-boolean-array.message:
6155 * test/data/invalid-messages/bad-boolean.message:
6156 Add invalid boolean value test cases.
6158 2003-02-24 Anders Carlsson <andersca@codefactory.se>
6160 * dbus/dbus-internals.c: (_dbus_type_to_string):
6161 * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
6162 (_dbus_marshal_validate_arg):
6163 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
6164 * dbus/dbus-message.c: (dbus_message_append_args_valist),
6165 (dbus_message_append_boolean), (dbus_message_append_boolean_array),
6166 (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
6167 (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
6168 (dbus_message_iter_get_double),
6169 (dbus_message_iter_get_boolean_array), (message_iter_test):
6170 * dbus/dbus-message.h:
6171 * dbus/dbus-protocol.h:
6172 * doc/dbus-specification.sgml:
6173 * test/data/valid-messages/lots-of-arguments.message:
6174 Add support for boolean and boolean array types.
6176 2003-02-23 Havoc Pennington <hp@pobox.com>
6178 * dbus/dbus-keyring.c: finish most of this implementation and
6181 * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
6182 these barf if the error isn't cleared to NULL
6184 * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
6185 (_dbus_create_directory): new function
6187 * dbus/dbus-errors.c (dbus_set_error): fix warning
6189 * dbus/dbus-string.c (_dbus_string_hex_encode): new function
6190 (_dbus_string_hex_decode): new function
6191 (test_hex_roundtrip): test code
6193 * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
6195 * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
6197 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
6198 the save-to-temp/rename trick to atomically write the new file
6199 (_dbus_string_parse_uint): new function
6201 2003-02-22 Havoc Pennington <hp@pobox.com>
6203 * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
6205 2003-02-22 Havoc Pennington <hp@pobox.com>
6207 * dbus/dbus-message.c (dbus_message_iter_get_string_array):
6208 (dbus_message_iter_get_byte_array): Fix up doxygen warnings
6210 * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
6212 * dbus/test/data/sha-1: add US government test suite for SHA-1
6214 2003-02-21 Anders Carlsson <andersca@codefactory.se>
6216 * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
6217 Make string arrays NULL-terminated.
6219 * dbus/dbus-memory.c: (dbus_free_string_array):
6220 * dbus/dbus-memory.h:
6221 New function for freeing NULL-terminated string arrays.
6223 * dbus/dbus-message-builder.c: (append_quoted_string),
6224 (_dbus_message_data_load):
6225 Add support for array types.
6227 * dbus/dbus-message.c: (check_message_handling):
6228 Add more types as test cases.
6230 * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
6231 (_dbus_string_parse_double):
6232 Add the start offset to the end offset.
6234 * test/data/valid-messages/lots-of-arguments.message:
6235 New test message with lots of arguments.
6237 2003-02-21 Anders Carlsson <andersca@codefactory.se>
6239 * dbus/dbus-message.c: (dbus_message_append_nil),
6240 (dbus_message_append_int32), (dbus_message_append_uint32),
6241 (dbus_message_append_double), (dbus_message_append_string),
6242 (dbus_message_append_int32_array),
6243 (dbus_message_append_uint32_array),
6244 (dbus_message_append_double_array),
6245 (dbus_message_append_byte_array),
6246 (dbus_message_append_string_array):
6247 Fix all out-of-memory handling in these functions.
6249 2003-02-21 Anders Carlsson <andersca@codefactory.se>
6251 * dbus/dbus-message.c: (dbus_message_append_nil):
6254 2003-02-21 Anders Carlsson <andersca@codefactory.se>
6256 * dbus/dbus-message.c: (dbus_message_append_args_valist),
6257 (dbus_message_append_nil), (dbus_message_append_int32_array),
6258 (dbus_message_append_uint32_array),
6259 (dbus_message_append_double_array),
6260 (dbus_message_append_byte_array),
6261 (dbus_message_append_string_array), (dbus_message_get_args_valist),
6262 (dbus_message_iter_get_int32_array),
6263 (dbus_message_iter_get_uint32_array),
6264 (dbus_message_iter_get_double_array),
6265 (dbus_message_iter_get_byte_array),
6266 (dbus_message_iter_get_string_array):
6268 * dbus/dbus-message.h:
6269 Add functions for appending and getting arrays.
6271 2003-02-21 Anders Carlsson <andersca@codefactory.se>
6273 * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
6274 element size at least 8 bytes, fixes mempool tests on
6277 2003-02-20 Alexander Larsson <alexl@redhat.com>
6279 * dbus/dbus-transport-unix.c (unix_do_iteration):
6280 Unlock the connection mutex during a blocking select call.
6281 Add todo about how we need a way to wake up the select.
6283 * dbus/dbus-connection-internal.h:
6284 * dbus/dbus-connection.c:
6285 Add _dbus_connection_lock and _dbus_connection_unlock.
6287 2003-02-19 Havoc Pennington <hp@pobox.com>
6289 * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
6290 Doxyfile.in, not Doxyfile
6292 * dbus/dbus-keyring.c: do some hacking on this
6294 * dbus/dbus-sysdeps.c (_dbus_delete_file): new
6296 * dbus/dbus-errors.c (dbus_set_error_const): do not call
6298 (dbus_set_error): remove dbus_error_init, check for message ==
6299 NULL *before* we sprintf into it, and add @todo about including
6300 system headers in this file
6302 * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
6304 * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
6306 * dbus/dbus-sysdeps.c (get_user_info): break this function out to
6307 get various bits of user information based on either username
6309 (_dbus_homedir_from_username): new function
6311 2003-02-19 Anders Carlsson <andersca@codefactory.se>
6314 Add check for nonposix getpwnam_r
6316 * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
6317 Align the pool element size to a sizeof (void *) boundary.
6319 * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
6320 (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
6321 General Solaris fixes.
6323 * test/data/valid-messages/simplest-manual.message:
6324 Explicitly state that we want little-endian packing.
6326 2003-02-19 Mikael Hallendal <micke@codefactory.se>
6328 * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
6330 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
6331 Added to create a transport connecting using a tcp/ip socket.
6333 * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
6334 to a tcp socket at given host and port.
6335 (_dbus_listen_tcp_socket): added to listen on tcp socket for given
6338 * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
6340 * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
6341 Added to create a server listening on a TCP/IP socket.
6343 2003-02-19 Havoc Pennington <hp@pobox.com>
6345 Throughout: mop up all the Doxygen warnings and undocumented
6348 * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
6349 to search any paths.
6351 * dbus/dbus-threads.c: move global mutex initializers to
6352 dbus-internals.h, multiple prototypes was confusing doxygen
6353 besides being kind of ugly
6355 * Doxyfile (PREDEFINED): have Doxygen define
6356 DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
6357 docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
6358 (do not abuse the feature! it's for stuff like the autogenerated
6359 macros in dbus-md5.c, not just for things you don't feel like
6362 2003-02-18 Havoc Pennington <hp@pobox.com>
6364 * dbus/dbus-string.c (_dbus_string_zero): new function
6366 * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
6367 wrap it in some dbus-friendly API
6369 * dbus/dbus-types.h: add 16-bit types
6371 2003-02-18 Joe Shaw <joe@assbarn.com>
6373 * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
6374 credentials from our currently running process.
6375 (get_word): Fix a buglet where we were copying the entire length
6376 instead of relative to our position.
6378 * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
6379 keys on the stack... it's 640k of data.
6381 * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
6382 read the credentials byte off the socket, even if we don't have
6384 (_dbus_poll): Implement poll() using select() for systems which
6387 * glib/test-dbus-glib.c (main): Print out an error if no
6388 parameters are given.
6390 * test/data/auth/fallback.auth-script: Added. Tests that a client
6391 can fallback to a secondary auth mechanism if the first fails.
6393 2003-02-18 Havoc Pennington <hp@pobox.com>
6397 2003-02-17 Havoc Pennington <hp@pobox.com>
6399 * doc/dbus-specification.sgml: lots of cosmetic
6400 cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
6401 env variable to DBUS_BUS_ADDRESS, s/client/application/,
6402 s/server/bus/ (except in authentication section). Add a section
6403 "Message Bus Message Routing"
6405 2003-02-17 Anders Carlsson <andersca@codefactory.se.>
6411 2003-02-17 Anders Carlsson <andersca@codefactory.se>
6413 * doc/dbus-specification.sgml:
6414 Specification updates.
6416 2003-02-17 Anders Carlsson <andersca@codefactory.se>
6418 * bus/activation.c: (bus_activation_init), (child_setup),
6419 (bus_activation_activate_service):
6421 * bus/main.c: (main):
6422 Set DBUS_ADDRESS environment variable.
6424 * dbus/dbus-errors.c: (dbus_set_error):
6425 Don't use va_copy since that's a C99 feature.
6427 * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
6428 (_dbus_spawn_async):
6429 * dbus/dbus-sysdeps.h:
6430 Add child_setup_func to _dbus_spawn_async.
6432 * doc/dbus-specification.sgml:
6433 Update specification.
6435 * test/spawn-test.c: (setup_func), (main):
6438 2003-02-17 Alexander Larsson <alexl@redhat.com>
6440 * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
6443 2003-02-17 Anders Carlsson <andersca@codefactory.se>
6447 * doc/dbus-test-plan.sgml:
6448 Add test plan document.
6453 2003-02-17 Anders Carlsson <andersca@codefactory.se>
6455 * dbus/dbus-message.c: (decode_header_data),
6456 (_dbus_message_loader_return_buffer):
6457 Set the header padding amount when loading a message.
6459 2003-02-16 Anders Carlsson <andersca@codefactory.se>
6461 * bus/dispatch.c: (send_one_message):
6462 Only send broadcast messages to registered connections.
6464 * dbus/dbus-message.c: (dbus_message_name_is):
6465 * dbus/dbus-message.h:
6466 New convenience function.
6468 * dbus/dbus-transport-debug.c: (do_reading):
6469 Only dispatch one message per run.
6472 * test/bus-test.c: (new_connection_callback), (die),
6473 (test_hello_client1_handler), (test_hello_client2_handler),
6474 (test_hello_replies), (main):
6476 * test/bus-test-loop.[ch]:
6479 2003-02-16 Havoc Pennington <hp@pobox.com>
6481 * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
6482 backward conditional
6484 2003-02-16 Alexander Larsson <alexl@redhat.com>
6486 * dbus/dbus-connection.c:
6487 Implement sent_message_with_reply. (with_reply_and block is still
6489 Made dispatch_message not lose message if OOM.
6491 * dbus/dbus-errors.h:
6492 Add NoReply error (for reply timeouts).
6494 2003-02-16 Alexander Larsson <alexl@redhat.com>
6496 * dbus/dbus-hash.c (_dbus_hash_table_unref):
6497 Actually free keys and values when destroying hashtable.
6499 2003-02-16 Anders Carlsson <andersca@codefactory.se>
6501 * dbus/dbus-auth.c: (client_try_next_mechanism):
6504 * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
6505 Return TRUE if there's no thread implementation around.
6507 * glib/dbus-gmain.c: (free_source),
6508 (dbus_connection_hookup_with_g_main):
6509 Make sure to remove the GSource when the connection is finalized.
6511 2003-02-16 Anders Carlsson <andersca@codefactory.se>
6513 * bus/dispatch.c: (bus_dispatch_message_handler):
6514 * dbus/dbus-errors.h:
6515 Return an error if someone tries to send a message to a service
6518 2003-02-16 Anders Carlsson <andersca@codefactory.se>
6520 * bus/activation.c: (load_directory), (bus_activation_init),
6521 (bus_activation_activate_service):
6524 (bus_driver_handle_activate_service), (bus_driver_handle_message):
6525 More work on the activation handling.
6527 * dbus/dbus-errors.h:
6528 Add some error messages
6530 * dbus/dbus-message.c: (dbus_message_new_error_reply):
6531 * dbus/dbus-message.h:
6532 New function that creates an error message.
6534 * dbus/dbus-protocol.h:
6535 Add ACTIVATE_SERVER message.
6537 * dbus/dbus-server-unix.c: (unix_handle_watch),
6538 (_dbus_server_new_for_domain_socket):
6539 Call _dbus_fd_set_close_on_exec.
6541 * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
6542 (_dbus_spawn_async), (_dbus_disable_sigpipe),
6543 (_dbus_fd_set_close_on_exec):
6544 * dbus/dbus-sysdeps.h:
6545 Add _dbus_fd_set_close_on exec function. Also add function that checks
6546 that all open fds are set to close-on-exec and warns otherwise.
6548 * dbus/dbus-transport-unix.c:
6549 (_dbus_transport_new_for_domain_socket):
6550 Call _dbus_fd_set_close_on_exec.
6552 2003-02-16 Havoc Pennington <hp@pobox.com>
6554 * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
6555 allow people to avoid setting SIGPIPE to SIG_IGN
6556 (_dbus_connection_new_for_transport): disable SIGPIPE unless
6557 we've been asked not to
6559 2003-02-15 Anders Carlsson <andersca@codefactory.se>
6561 * dbus/dbus-list.c: (_dbus_list_append_link),
6562 (_dbus_list_prepend_link):
6563 * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
6567 2003-02-15 Anders Carlsson <andersca@codefactory.se>
6570 * bus/activation.c: (bus_activation_entry_free),
6571 (add_desktop_file_entry), (load_directory), (bus_activation_init):
6573 * bus/main.c: (main):
6574 Add simple activation support, doesn't work yet though.
6576 2003-02-15 Zack Rusin <zack@kde.org>
6578 * qt/dbus-qthread.cpp: small casting fix
6580 2003-02-15 Anders Carlsson <andersca@codefactory.se>
6582 * dbus/dbus-errors.c: (dbus_set_error):
6583 * dbus/dbus-errors.h:
6584 Add a few errors and make dbus_set_error void.
6586 * dbus/dbus-sysdeps.c:
6587 (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
6588 (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
6589 * dbus/dbus-sysdeps.h:
6590 Add _dbus_spawn_async.
6592 * test/spawn-test.c: (main):
6593 Test for _dbus_spawn_async.
6595 2003-02-15 Anders Carlsson <andersca@codefactory.se>
6597 * dbus/dbus-internals.h:
6598 Fix build without tests.
6600 * dbus/dbus-list.c: (alloc_link):
6601 Fix a segfault when a malloc fails.
6603 * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
6604 (dbus_malloc0), (dbus_realloc):
6605 Add support for malloc debugging.
6607 2003-02-15 Alexander Larsson <alexl@redhat.com>
6609 * dbus/dbus-threads.c:
6610 * dbus/dbus-threads.h:
6611 Add condvars. Remove static mutext from API.
6612 Implement static mutexes by initializing them from threads_init.
6614 * glib/dbus-gthread.c:
6615 * qt/dbus-qthread.cpp:
6616 Update with the thread api changes.
6621 Turn StaticMutex into normal mutex + init function.
6622 Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
6623 _dbus_list_append_link, _dbus_list_prepend_link
6626 * dbus/dbus-sysdeps.c:
6627 * dbus/dbus-sysdeps.h:
6628 New type dbus_atomic_t, and new functions _dbus_atomic_inc,
6629 _dbus_atomic_dec. Only slow fallback implementation at the moment.
6631 * dbus/dbus-protocol.h:
6632 Add DBUS_MESSAGE_LOCAL_DISCONNECT define
6634 * dbus/dbus-message.c:
6635 Make ref/unref atomic.
6638 * dbus/dbus-connection-internal.h:
6639 * dbus/dbus-connection.c:
6640 * dbus/dbus-connection.h:
6642 Change _peek to _borrow,_return & _steal_borrowed.
6643 Change disconnect callback to event.
6644 Make dbus_connection_dispatch_messages reentrant.
6646 * dbus/dbus-transport.c:
6647 Don't ref the connection on calls to the transport
6650 * dbus/dbus-message-handler.c:
6653 * glib/dbus-gmain.c:
6654 Don't use peek_message anymore
6657 * test/debug-thread.c:
6658 * test/debug-thread.h:
6659 Simple thread implementation that asserts() on deadlocks in
6660 single-threaded code.
6663 (main) Call debug_threads_init.
6666 Use disconnect message instead of disconnect callback.
6670 Don't call dbus_connection_set_disconnect_function. Instead export
6671 bus_connection_disconnect.
6674 Call bus_connection_disconnect when we get a disconnected message.
6676 2003-02-15 Havoc Pennington <hp@pobox.com>
6678 * dbus/dbus-message.c (dbus_message_new): fool around with the
6681 2003-02-14 Havoc Pennington <hp@pobox.com>
6683 * dbus/dbus-mempool.c: fail if the debug functions so indicate
6685 * dbus/dbus-memory.c: fail if the debug functions indicate we
6688 * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
6689 (_dbus_decrement_fail_alloc_counter): debug functions to
6690 simulate memory allocation failures
6692 2003-02-14 Havoc Pennington <hp@pobox.com>
6694 * dbus/dbus-errors.h (struct DBusError): add a word of padding
6697 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6699 * bus/driver.c: (bus_driver_handle_hello):
6701 * bus/services.c: (bus_service_lookup):
6702 Reorder message sending so we get a more sane order.
6704 * test/bus-test.c: (message_handler):
6707 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6709 * bus/driver.c: (bus_driver_send_service_deleted),
6710 (bus_driver_send_service_created), (bus_driver_send_service_lost),
6711 (bus_driver_send_service_acquired), (bus_driver_handle_hello),
6712 (bus_driver_send_welcome_message),
6713 (bus_driver_handle_list_services),
6714 (bus_driver_handle_acquire_service),
6715 (bus_driver_handle_service_exists):
6716 * dbus/dbus-bus.c: (dbus_bus_register_client),
6717 (dbus_bus_acquire_service), (dbus_bus_service_exists):
6718 * dbus/dbus-errors.c: (dbus_result_to_string):
6719 * dbus/dbus-errors.h:
6720 * dbus/dbus-message.c: (dbus_message_append_args),
6721 (dbus_message_append_args_valist), (dbus_message_get_args),
6722 (dbus_message_get_args_valist), (dbus_message_get_args_iter),
6723 (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
6724 (dbus_message_iter_get_byte_array),
6725 (dbus_message_iter_get_string_array), (message_iter_test),
6726 (check_message_handling), (_dbus_message_test):
6727 * dbus/dbus-message.h:
6728 * test/bus-test.c: (main):
6729 Change fields to arguments in messages, so that they won't be
6730 confused with header fields.
6732 * glib/test-dbus-glib.c: (main):
6733 Remove append_fields from hello message.
6735 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6737 * dbus/dbus-errors.c:
6738 * dbus/dbus-message.c:
6739 * dbus/dbus-string.c:
6740 Documentation fixes.
6742 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6744 * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
6746 Implement support for timeouts in dbus-glib.
6748 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6750 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
6751 * dbus/dbus-message.c: (process_test_subdir):
6752 * test/break-loader.c: (find_breaks_based_on):
6753 Plug some memory leaks.
6755 2003-02-13 Richard Hult <rhult@codefactory.se>
6757 * bus/main.c: Fix build.
6759 * dbus/dbus-errors.h:
6760 * dbus/dbus-errors.c: Fix copyright for Anders.
6762 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6767 * bus/connection.c: (bus_connection_foreach):
6770 * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
6771 (unescape_string), (new_section), (parse_section_start),
6772 (parse_key_value), (report_error), (bus_desktop_file_load),
6773 (bus_desktop_file_get_string):
6774 * bus/desktop-file.h:
6775 Use DBusError for error reporting.
6777 * bus/dispatch.c: (send_one_message),
6778 (bus_dispatch_message_handler):
6779 * bus/driver.c: (bus_driver_send_service_deleted),
6780 (bus_driver_send_service_created), (bus_driver_send_service_lost),
6781 (bus_driver_send_service_acquired), (bus_driver_handle_hello),
6782 (bus_driver_send_welcome_message),
6783 (bus_driver_handle_list_services),
6784 (bus_driver_handle_acquire_service),
6785 (bus_driver_handle_service_exists):
6786 * bus/loop.c: (bus_loop_run):
6788 Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
6790 * bus/utils.c: (bus_wait_for_memory):
6792 New files with general utility functions.
6794 * dbus/dbus-internals.h:
6795 Remove _DBUS_HANDLE_OOM.
6797 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6799 * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
6800 (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
6801 * dbus/dbus-errors.h:
6802 Add DBusError structure.
6804 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6806 * test/data/valid-messages/standard-acquire-service.message:
6807 * test/data/valid-messages/standard-hello.message:
6808 * test/data/valid-messages/standard-list-services.message:
6809 * test/data/valid-messages/standard-service-exists.message:
6810 Add some standard messages.
6812 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6814 * bus/driver.c: (bus_driver_send_welcome_message),
6815 (bus_driver_handle_list_services),
6816 (bus_driver_handle_acquire_service),
6817 (bus_driver_handle_service_exists), (bus_driver_handle_message):
6818 Update for API changes in libdbus.
6820 * dbus/dbus-message.c: (dbus_message_new_reply):
6821 * dbus/dbus-message.h:
6822 Remove the name argument. The spec states that replies shouldn't
6825 2003-02-13 Anders Carlsson <andersca@codefactory.se>
6827 * bus/desktop-file.c: (parse_section_start), (parse_key_value),
6828 (report_error), (bus_desktop_file_load), (lookup_section),
6829 (lookup_line), (bus_desktop_file_get_raw),
6830 (bus_desktop_file_get_string):
6831 * bus/desktop-file.h:
6832 Some fixes, and new functions for getting a key value from a section.
6834 2003-02-13 Havoc Pennington <hp@pobox.com>
6836 * test/data/auth/fail-after-n-attempts.auth-script: new test
6838 * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
6841 2003-02-13 Havoc Pennington <hp@pobox.com>
6843 * dbus/dbus-auth.c (handle_server_data_external_mech): args to
6844 dbus_credentials_match were backward
6846 * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
6847 NO_CREDENTIALS and ROOT_CREDENTIALS
6849 * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
6850 into here. Never process more commands after we've reached an
6851 end state; store further data as unused bytes.
6853 * test/data/auth/*: add more auth tests
6855 * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
6856 command to match exact string and EXPECT_UNUSED to match unused
6859 * test/Makefile.am (dist-hook): fix to dist all the test stuff
6861 2003-02-12 Havoc Pennington <hp@pobox.com>
6863 * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
6864 \r off of popped lines
6866 * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
6869 * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
6872 2003-02-12 Havoc Pennington <hp@pobox.com>
6874 * dbus/Makefile.am: remove break-loader from the build, since it
6877 * configure.in: add --enable-gcov to turn on coverage profiling
6878 flags and disable optimization
6880 2003-02-10 Havoc Pennington <hp@pobox.com>
6882 * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
6883 initial cut at test framework for DBusAuth from laptop.
6884 Doesn't quite work yet but it compiles and I need to get
6885 it off the 266mhz laptop. ;-)
6887 * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
6888 fix a memleak in error case
6890 2003-02-12 Anders Carlsson <andersca@codefactory.se>
6893 * bus/desktop-file.c:
6894 * bus/desktop-file.h:
6895 Add a desktop file parser.
6897 2003-02-11 Zack Rusin <zack@kde.org>
6899 * qt/message.[h|cpp]: sample implementation
6900 of the KDE wrapper for DBusMessage
6902 2003-02-09 Zack Rusin <zack@kde.org>
6904 * test/bus-test.c: make_it_compile
6905 * doc/dbus-specification.sgml: minimal semantic fix
6907 2003-02-06 Anders Carlsson <andersca@codefactory.se>
6913 2003-02-06 Anders Carlsson <andersca@codefactory.se>
6916 * dbus/dbus-break-loader.c:
6918 * test/break-loader.c:
6919 Move dbus-break-loader to test/ and rename it to break-loader.
6921 2003-02-02 Havoc Pennington <hp@pobox.com>
6923 * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
6924 for code to manage cookies in your home directory
6926 * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
6928 * dbus/dbus-auth.c (get_state): impose a maximum number of tries
6929 to authenticate, then disconnect the client.
6931 2003-02-03 Alexander Larsson <alexl@redhat.com>
6933 * dbus/dbus-message.c (dbus_message_append_fields):
6936 2003-02-02 Anders Carlsson <andersca@codefactory.se>
6938 * doc/dbus-specification.sgml:
6939 Update address format section.
6941 2003-02-02 Anders Carlsson <andersca@codefactory.se>
6944 * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
6945 (message_handler), (new_connection_callback), (loop_quit),
6949 2003-02-02 Anders Carlsson <andersca@codefactory.se>
6951 * bus/driver.c: (bus_driver_handle_service_exists):
6952 Simplify the code a bit.
6954 * dbus/dbus-bus.c: (dbus_bus_service_exists):
6957 2003-02-02 Anders Carlsson <andersca@codefactory.se>
6960 Add libdbus-daemon.la and link to it.
6962 2003-02-01 James Willcox <jwillcox@gnome.org>
6964 * bus/driver.c: (bus_driver_handle_own_service):
6965 Actually include the service reply code in the message.
6967 2003-02-02 Anders Carlsson <andersca@codefactory.se>
6969 * bus/driver.c: (bus_driver_handle_service_exists):
6970 Don't unref the incoming message.
6972 2003-02-02 Anders Carlsson <andersca@codefactory.se>
6974 * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
6976 2003-02-02 Anders Carlsson <andersca@codefactory.se>
6978 * dbus/dbus-server.c: (dbus_server_listen):
6979 * dbus/dbus-transport.c: (_dbus_transport_open):
6980 ifdef out the calls to the debug transport and server.
6982 2003-02-02 Alexander Larsson <alexl@redhat.com>
6984 * dbus/dbus-watch.c (dbus_watch_get_flags):
6985 Add note in the docs that ERROR or HANGUP won't be returned
6986 and are assumed always on.
6988 * glib/dbus-gmain.c (add_watch):
6989 Always add IO_ERR | IO_HUP
6991 * dbus/dbus-message.h:
6992 Add semicolon after dbus_message_iter_get_string_array().
6993 Makes qt code build again
6995 2003-02-01 Anders Carlsson <andersca@codefactory.se>
6997 * bus/driver.c: (create_unique_client_name),
6998 (bus_driver_handle_hello):
6999 Don't take a name, just use a numeric id to identify
7003 * dbus/dbus-bus.c: (dbus_bus_register_client),
7004 (dbus_bus_acquire_service), (dbus_bus_service_exists):
7006 Add new convenience functions for communicating with the bus.
7008 * dbus/dbus-message.h:
7010 * dbus/dbus-protocol.h:
7013 2003-02-01 Alexander Larsson <alexl@redhat.com>
7015 * dbus/dbus-message.c (dbus_message_append_fields):
7016 Add some more doc comments.
7018 2003-02-01 Havoc Pennington <hp@pobox.com>
7020 * dbus/dbus-break-loader.c (randomly_modify_length): change
7021 a 4-byte value in the message as if it were a length
7023 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
7024 execute bit on saved files
7026 2003-02-01 Havoc Pennington <hp@pobox.com>
7028 * dbus/dbus-break-loader.c (main): new program to find messages
7029 that break the loader.
7031 * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
7032 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
7034 * dbus/dbus-string.c (_dbus_string_set_byte): new
7036 2003-01-31 Havoc Pennington <hp@pobox.com>
7038 * dbus/dbus-message.c: refactor the test code to be more general,
7039 in preparation for writing a "randomly permute test cases to
7040 try to break the loader" program.
7042 2003-01-31 Havoc Pennington <hp@pobox.com>
7044 * doc/dbus-specification.sgml: work on the specification
7046 * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
7047 the protocol version of the message.
7049 * dbus/dbus-protocol.h: drop special _REPLY names, the spec
7050 no longer specifies that.
7051 (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
7054 * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
7055 "break" for DBUS_TYPE_NIL, remove @todo
7057 2003-01-31 Havoc Pennington <hp@pobox.com>
7059 * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
7060 just set_is_error/get_is_error as this is a commonly-used
7061 function, and write docs.
7063 2003-01-31 Anders Carlsson <andersca@codefactory.se>
7065 * dbus/dbus-address.c: (dbus_address_entry_free):
7066 Free key and value lists.
7068 * dbus/dbus-internals.c: (_dbus_type_to_string):
7069 Add the types we didn't have.
7071 * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
7072 (_dbus_marshal_validate_arg):
7075 * dbus/dbus-message.c: (dbus_message_set_sender):
7076 Remove todo about being able to set sender to NULL.
7078 (dbus_message_set_is_error_reply),
7079 (dbus_message_get_is_error_reply):
7080 * dbus/dbus-message.h:
7083 * dbus/dbus-protocol.h:
7084 Add error reply flag.
7086 * test/data/valid-messages/opposite-endian.message:
7087 Add NIL type to test.
7089 2003-01-31 Havoc Pennington <hp@pobox.com>
7091 * doc/dbus-specification.sgml: fully specify the header. Add
7092 flags and major protocol version, and change header/body len to
7095 * dbus/dbus-message-builder.c (append_saved_length): append length
7098 * dbus/dbus-message.c (dbus_message_create_header): change header
7099 length and body length to unsigned. Add the new fields from the
7101 (_dbus_message_loader_return_buffer): unsigned header/body len
7103 2003-01-30 Havoc Pennington <hp@pobox.com>
7105 * dbus/dbus-auth.c: rework to use only REJECTED, no
7108 * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
7109 use REJECTED, suggested by Mark McLoughlin
7111 2003-01-30 Havoc Pennington <hp@pobox.com>
7113 * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
7114 a better way to report errors here. e.g. "unix address lacks
7115 path" or something. also "no such file" when the path doesn't
7118 * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
7120 (dbus_parse_address): add @todo about documenting address format,
7121 and allowing , and ; to be escaped
7123 2003-01-30 Anders Carlsson <andersca@codefactory.se>
7126 Add dbus-address.[ch]
7128 * dbus/dbus-address.c: (dbus_address_entry_free),
7129 (dbus_address_entries_free), (create_entry),
7130 (dbus_address_entry_get_method), (dbus_address_entry_get_value),
7131 (dbus_parse_address), (_dbus_address_test):
7132 * dbus/dbus-address.h:
7133 New files for dealing with address parsing.
7135 * dbus/dbus-connection.c:
7136 Document timeout functions.
7138 * dbus/dbus-message.c:
7139 Document dbus_message_new_from_message.
7141 * dbus/dbus-server-debug.c:
7144 * dbus/dbus-server.c: (dbus_server_listen):
7145 Parse address and use correct server implementation.
7147 * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
7148 * dbus/dbus-string.h:
7149 New function with test.
7151 * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
7155 * dbus/dbus-transport-debug.c:
7158 * dbus/dbus-transport.c: (_dbus_transport_open):
7159 Parse address and use correct transport implementation.
7161 2003-01-30 Havoc Pennington <hp@pobox.com>
7163 * dbus/dbus-message.c: use message->byte_order instead of
7164 DBUS_COMPILER_BYTE_ORDER throughout.
7165 (dbus_message_create_header): pad header to align the
7166 start of the body of the message to 8-byte boundary
7168 * dbus/dbus-marshal.h: make all the demarshalers take const
7169 DBusString arguments.
7171 * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
7172 validate message args here, so we don't have to do slow validation
7173 later, and so we catch bad messages as they are incoming. Also add
7174 better checks on header_len and body_len. Also fill in
7177 * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
7178 implemented properly)
7179 (_dbus_string_validate_nul): new function to check all-nul
7181 * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
7182 get_arg_end_pos and remove all validation
7183 (_dbus_marshal_validate_arg): actually do validation here.
7185 2003-01-29 Havoc Pennington <hp@pobox.com>
7187 * dbus/dbus-message.c (check_message_handling): fix assertion
7188 failure on set_client_serial
7190 2003-01-28 Havoc Pennington <hp@pobox.com>
7192 * dbus/dbus-server-debug.c: Add doc section comments
7194 * dbus/dbus-transport-debug.c: add doc section comments
7196 2003-01-28 Havoc Pennington <hp@redhat.com>
7198 * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
7199 the reverse order from how I had it
7200 (_dbus_string_base64_encode): reverse encoding order. I was
7201 basically byteswapping everything during encoding.
7203 2003-01-28 Anders Carlsson <andersca@codefactory.se>
7205 * dbus/dbus-connection-internal.h:
7206 * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
7207 (_dbus_connection_remove_timeout):
7208 Add functions for adding and removing timeouts.
7210 * dbus/dbus-message.c: (dbus_message_new_from_message):
7211 Add new function that takes a message and creates an exact
7212 copy of it, but with the refcount set to 1.
7213 (check_message_handling):
7216 * dbus/dbus-server-protected.h:
7217 * dbus/dbus-server.c: (_dbus_server_init_base),
7218 (_dbus_server_finalize_base), (_dbus_server_add_timeout),
7219 (dbus_server_set_timeout_functions):
7220 (_dbus_server_remove_timeout):
7221 New functions so that a server can add and remove timeouts.
7223 (dbus_server_listen):
7224 Add commented out call to dbus_server_debug_new.
7226 * dbus/dbus-timeout.c: (_dbus_timeout_new):
7227 Actually set the handler, doh.
7229 * dbus/dbus-transport.c: (_dbus_transport_open):
7230 Add commented out call to dbus_transport_debug_client_new.
7233 Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
7235 2003-01-28 Havoc Pennington <hp@pobox.com>
7237 * dbus/dbus-message.c (check_message_handling): function to check
7238 on the loaded message, iterates over it etc.
7240 2003-01-28 Havoc Pennington <hp@pobox.com>
7242 * test/Makefile.am (dist-hook): fix make distdir
7244 * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
7246 2003-01-27 Havoc Pennington <hp@pobox.com>
7248 * dbus/dbus-mempool.c (time_for_size): replace printf with
7251 * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
7252 empty lines; fix the SAVE_LENGTH stuff to be
7253 START_LENGTH/END_LENGTH so it actually works; couple other
7256 * test/Makefile.am (dist-hook): add dist-hook for .message files
7258 * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
7259 can be constant or locked.
7260 (_dbus_string_free): allow freeing a const string as
7263 * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
7265 * dbus/dbus-test-main.c (main): take an argument which is the
7266 directory containing test data
7268 * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
7269 argument to this and load all the messages in test/data/
7270 checking that they can be loaded or not loaded as appropriate.
7272 2003-01-27 Anders Carlsson <andersca@codefactory.se>
7274 * bus/dispatch.c: (bus_dispatch_message_handler):
7275 Dispatch messages sent to services.
7277 * bus/driver.c: (bus_driver_send_service_deleted),
7278 (bus_driver_send_service_created), (bus_driver_send_service_lost),
7279 (bus_driver_send_service_acquired):
7280 Add helper functions for sending service related messages.
7282 (bus_driver_send_welcome_message):
7283 Send HELLO_REPLY instead of WELCOME.
7285 (bus_driver_handle_list_services):
7286 Send LIST_SERVICES_REPLY instead of SERVICES.
7288 (bus_driver_handle_own_service),
7289 (bus_driver_handle_service_exists):
7290 New message handlers.
7292 (bus_driver_handle_message):
7293 Invoke new message handlers.
7295 (bus_driver_remove_connection):
7296 Don't remove any services here since that's done automatically
7297 by bus_service_remove_owner now.
7300 New function signatures.
7302 * bus/services.c: (bus_service_add_owner):
7303 Send ServiceAcquired message if we're the only primary owner.
7305 (bus_service_remove_owner):
7306 Send ServiceAcquired/ServiceLost messages.
7308 (bus_service_set_prohibit_replacement),
7309 (bus_service_get_prohibit_replacement):
7310 Functions for setting prohibit replacement.
7312 (bus_service_has_owner):
7313 New function that checks if a connection is in the owner queue of
7317 Add new function signatures.
7319 * dbus/dbus-list.c: (_dbus_list_test):
7320 Add tests for _dbus_list_remove_last and traversing the list backwards.
7323 Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
7324 go any further, so return NULL then.
7326 * dbus/dbus-protocol.h:
7327 Add new messages, service flags and service replies.
7329 2003-01-26 Havoc Pennington <hp@pobox.com>
7331 * dbus/dbus-message-builder.c: implement, completely untested.
7333 * test/data/*: add data to be used in testing.
7334 ".message" files are our simple loadable text format.
7335 ".message-raw" will be binary dumps of messages.
7337 * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
7339 2003-01-26 Havoc Pennington <hp@pobox.com>
7341 * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
7343 * dbus/dbus-errors.c (dbus_result_to_string): add
7346 * dbus/dbus-message-builder.c: new file, will contain code to load
7347 up messages from files. Not implemented yet.
7349 2003-01-26 Havoc Pennington <hp@pobox.com>
7351 * dbus/dbus-message.c (dbus_message_set_sender): support deleting
7352 the sender by setting to NULL
7354 2003-01-26 Havoc Pennington <hp@pobox.com>
7356 The unit tests pass, but otherwise untested. If it breaks, the
7357 tests should have been better. ;-)
7359 * bus/driver.c (bus_driver_handle_hello): return if we disconnect
7362 * dbus/dbus-message.c: redo everything so we maintain
7363 message->header as the only copy of the various fields.
7364 This avoids the possibility of out-of-memory in some cases,
7365 for example dbus_message_lock() can't run out of memory anymore,
7366 and avoids extra copying. Figured I may as well go ahead and do
7367 this since it was busted for dbus_message_lock to not return
7368 failure on OOM, and dbus_message_write_header was totally
7369 unchecked for OOM. Also fixed some random other bugs.
7371 * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
7372 that strings are nul-terminated. Also, end_pos can be equal
7373 to string length just not greater than, I think.
7374 (_dbus_marshal_set_int32): new function
7375 (_dbus_marshal_set_uint32): new function
7376 (_dbus_marshal_set_string): new function
7378 * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
7379 a warning, init timeout_list to NULL
7380 (dbus_connection_send_message): don't use uninitialized variable
7383 * dbus/dbus-string.c (_dbus_string_replace_len): new function
7385 2003-01-26 Anders Carlsson <andersca@codefactory.se>
7387 * bus/driver.c: (bus_driver_handle_hello),
7388 (bus_driver_send_welcome_message):
7391 2003-01-26 Anders Carlsson <andersca@codefactory.se>
7393 * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
7394 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
7395 (dbus_connection_unref):
7396 * dbus/dbus-marshal.c: (_dbus_marshal_test):
7397 * dbus/dbus-message.c: (dbus_message_unref),
7400 (dbus_message_get_fields):
7401 Remove debugging printout.
7403 (_dbus_message_loader_return_buffer):
7404 Don't store the header string.
7406 (_dbus_message_test):
7409 2003-01-26 Richard Hult <rhult@codefactory.se>
7411 * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
7412 the file descriptor list, since it can change under us.
7414 2003-01-25 Anders Carlsson <andersca@codefactory.se>
7416 * glib/dbus-gmain.c: (dbus_connection_prepare),
7417 (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
7418 (remove_watch), (dbus_connection_hookup_with_g_main):
7419 Rewrite the glib handling to use its own GSource instead of a
7420 GIOChannel so we can catch messages put in the queue while waiting
7423 2003-01-25 Anders Carlsson <andersca@codefactory.se>
7426 * bus/connection.c: (connection_disconnect_handler),
7427 (connection_watch_callback), (bus_connection_setup):
7428 * bus/dispatch.c: (send_one_message),
7429 (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
7430 (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
7432 * bus/driver.c: (bus_driver_send_service_deleted),
7433 (bus_driver_send_service_created), (bus_driver_handle_hello),
7434 (bus_driver_send_welcome_message),
7435 (bus_driver_handle_list_services), (bus_driver_remove_connection),
7436 (bus_driver_handle_message):
7438 Refactor code, put the message dispatching in its own file. Use
7439 _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
7442 2003-01-25 Anders Carlsson <andersca@codefactory.se>
7444 * dbus/dbus-internals.h:
7445 Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
7447 * dbus/dbus-message.c: (dbus_message_get_sender):
7448 * dbus/dbus-message.h:
7449 Implement dbus_message_get_sender.
7451 * dbus/dbus-protocol.h:
7452 Add message and service defines.
7454 2003-01-25 Anders Carlsson <andersca@codefactory.se>
7456 * dbus/dbus-connection.c: (dbus_connection_send_message):
7457 * dbus/dbus-message-internal.h:
7458 * dbus/dbus-message.c: (_dbus_message_get_client_serial),
7459 (dbus_message_write_header):
7460 Remove _dbus_messag_unlock and don't set the client serial on a
7461 message if one already exists.
7463 2003-01-24 Havoc Pennington <hp@pobox.com>
7465 * dbus/dbus-list.c (alloc_link): put a thread lock on the global
7468 * bus/driver.c (bus_driver_handle_list_services): fix a leak
7471 2003-01-25 Anders Carlsson <andersca@codefactory.se>
7473 * dbus/dbus-list.c: (alloc_link), (free_link):
7474 Use a memory pool for the links.
7476 2003-01-25 Anders Carlsson <andersca@codefactory.se>
7478 * bus/connection.c: (bus_connection_foreach):
7480 Add new bus_connection_foreach function.
7482 * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
7483 Add function that broadcasts a message to all clients.
7485 (bus_driver_send_service_created), (bus_driver_handle_hello),
7486 (bus_driver_send_welcome_message),
7487 (bus_driver_handle_list_services), (bus_driver_message_handler):
7488 Implement functions that take care of listing services, and notifying
7489 clients when new services are created.
7491 * bus/services.c: (bus_services_list):
7493 Add new function that returns an array of strings with the currently
7494 registered services.
7497 * glib/dbus-gmain.c:
7498 Update copyright year.
7500 2003-01-25 Anders Carlsson <andersca@codefactory.se>
7502 * dbus/dbus-connection.c: (dbus_connection_send_message):
7503 Unlock the message in case it was sent earlier.
7505 (dbus_connection_send_message_with_reply_and_block):
7506 Remove the reply message from the list.
7508 * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
7509 Set array_len and new_pos correctly.
7511 (_dbus_marshal_test):
7512 Remove debug output.
7514 * dbus/dbus-message-internal.h:
7515 * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
7516 New function that returns the reply serial.
7518 (_dbus_message_unlock):
7519 New function that unlocks a message and resets its header.
7521 (dbus_message_append_string_array),
7522 (dbus_message_get_fields_valist),
7523 (dbus_message_iter_get_field_type),
7524 (dbus_message_iter_get_string_array),
7525 (dbus_message_get_fields),
7526 (dbus_message_append_fields_valist):
7527 Handle string arrays.
7529 (dbus_message_set_sender):
7530 Make this function public since the bus daemon needs it.
7532 (decode_header_data):
7533 Set the reply serial to -1 initially.
7535 * dbus/dbus-message.h:
7536 Add dbus_message_set_sender.
7538 2003-01-24 Havoc Pennington <hp@pobox.com>
7540 * doc/dbus-specification.sgml: add some stuff
7542 2003-01-22 Havoc Pennington <hp@pobox.com>
7544 * doc/dbus-specification.sgml: Start to document the protocol.
7546 2003-01-22 Havoc Pennington <hp@pobox.com>
7548 * dbus/dbus-connection.c
7549 (dbus_connection_send_message_with_reply_and_block): add some @todo
7551 * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
7553 2003-01-21 Havoc Pennington <hp@pobox.com>
7555 (patch untested because can't compile)
7557 * bus/driver.c (create_unique_client_name): make this function
7558 never recycle client names. Also, caller should initialize
7561 * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
7563 2003-01-21 Anders Carlsson <andersca@codefactory.se>
7565 * dbus/dbus-marshal.c: (_dbus_marshal_double),
7566 (_dbus_marshal_int32), (_dbus_marshal_uint32),
7567 (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
7568 (_dbus_marshal_double_array), (_dbus_marshal_string_array),
7569 (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
7570 (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
7571 (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
7572 * dbus/dbus-marshal.h:
7573 * dbus/dbus-protocol.h:
7574 Add support for marshalling and demarshalling integer, double
7577 2003-01-21 Anders Carlsson <andersca@codefactory.se>
7582 * bus/connection.c: (connection_disconnect_handler):
7583 Remove the connection from the bus driver's list.
7585 (connection_watch_callback): Dispatch messages.
7587 (free_connection_data): Free connection name.
7589 (bus_connection_setup): Add connection to the bus driver's list.
7590 (bus_connection_remove_owned_service):
7591 (bus_connection_set_name), (bus_connection_get_name):
7592 Add functions for setting and getting the connection's name.
7595 Add function headers.
7597 * bus/driver.c: (create_unique_client_name),
7598 (bus_driver_handle_hello_message),
7599 (bus_driver_send_welcome_message), (bus_driver_message_handler),
7600 (bus_driver_add_connection), (bus_driver_remove_connection):
7603 * bus/services.c: (bus_service_free):
7605 New file that handles communication and registreation with the bus
7608 2003-01-21 Anders Carlsson <andersca@codefactory.se>
7610 * dbus/dbus-connection.c: (dbus_connection_send_message):
7611 Add a new client_serial parameter.
7613 (dbus_connection_send_message_with_reply):
7614 Remove a @todo since we've implemented the blocking function.
7616 (dbus_connection_send_message_with_reply_and_block):
7617 New function that sends a message and waits for a reply and
7618 then returns the reply.
7620 * dbus/dbus-connection.h:
7623 * dbus/dbus-errors.c: (dbus_result_to_string):
7624 * dbus/dbus-errors.h:
7625 Add new DBUS_RESULT.
7627 * dbus/dbus-message-internal.h:
7628 * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
7629 (_dbus_message_set_sender), (dbus_message_write_header),
7630 (dbus_message_new_reply), (decode_header_data),
7631 (_dbus_message_loader_return_buffer), (_dbus_message_test):
7632 * dbus/dbus-message.h:
7633 Add new functions that set the reply serial and sender.
7634 Also marshal and demarshal them correctly and add test.
7636 * dbus/dbus-protocol.h:
7637 Add new DBUS_MESSAGE_TYPE_SENDER.
7640 * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
7641 (add_watch), (remove_watch), (add_timeout), (remove_timeout),
7642 (dbus_connection_hookup_with_g_main):
7643 * glib/test-dbus-glib.c: (main):
7644 Rewrite to use GIOChannel and remove the GSource crack.
7646 * test/echo-client.c: (main):
7647 * test/watch.c: (check_messages):
7648 Update for changed APIs
7650 2003-01-19 Anders Carlsson <andersca@codefactory.se>
7652 * dbus/Makefile.am: Add dbus-timeout.[cħ]
7654 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
7655 Create a DBusTimeoutList.
7656 (dbus_connection_set_timeout_functions): Add new function to
7657 set timeout callbacks
7659 * dbus/dbus-connection.h: Add public DBusTimeout API.
7661 * dbus/dbus-message.c: (dbus_message_get_service):
7662 * dbus/dbus-message.h: New function.
7664 * dbus/dbus-server.c: Fix small doc typo.
7666 * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
7668 2003-01-19 Anders Carlsson <andersca@codefactory.se>
7670 * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
7671 of the string, just as long as specified.
7673 2003-01-19 Havoc Pennington <hp@pobox.com>
7675 * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
7678 * dbus/dbus-server.c (dbus_server_set_max_connections)
7679 (dbus_server_get_max_connections, dbus_server_get_n_connections):
7680 keep track of current number of connections, and add API for
7681 setting a max (but haven't implemented enforcing the max yet)
7683 2003-01-18 Havoc Pennington <hp@pobox.com>
7685 * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
7686 reading/writing if read_watch != NULL or write_watch != NULL.
7688 * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
7689 the message loader code to actually load message->header and
7690 message->body into the newly-created message.
7692 * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
7695 * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
7696 (dbus_connection_get_max_message_size)
7697 (dbus_connection_set_max_live_messages_size)
7698 (dbus_connection_get_max_live_messages_size): implement some
7699 resource limitation functions
7701 * dbus/dbus-resources.c: new file implementing some of the
7702 resource limits stuff
7704 * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
7705 missing docs, add @todo to handle OOM etc.
7707 * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
7710 2003-01-18 Havoc Pennington <hp@pobox.com>
7712 * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
7713 connection if it hasn't been already.
7715 * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
7716 replace with DisconnectFunction.
7718 2003-01-18 Havoc Pennington <hp@pobox.com>
7720 Building --disable-verbose-mode --disable-asserts --disable-tests
7721 cuts the library from 112K to 45K or so
7723 * configure.in: check for varargs macro support,
7724 add --enable-verbose-mode, --enable-asserts.
7726 * dbus/dbus-internals.h (_dbus_assert): support
7728 (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
7730 2003-01-18 Havoc Pennington <hp@pobox.com>
7732 * dbus/dbus-test.c: include config.h so that tests actually run
7734 * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
7735 so the failure mode when that assumption fails will be plenty
7738 2003-01-18 Havoc Pennington <hp@pobox.com>
7740 * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
7742 * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
7745 * test/Makefile.am: don't use special variable "TESTS" for echo-*
7746 since we don't want to use those in make check
7748 2003-01-15 Havoc Pennington <hp@redhat.com>
7754 2003-01-15 Havoc Pennington <hp@redhat.com>
7756 * test/Makefile.am: fix so that test source code ends up in the
7757 distribution on make distcheck
7759 2003-01-15 Havoc Pennington <hp@redhat.com>
7765 2003-01-15 Havoc Pennington <hp@redhat.com>
7767 * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
7768 fix build when --disable-tests
7770 * Makefile.am (EXTRA_DIST): put HACKING in here
7772 * HACKING: document procedure for making a tarball release.
7774 2003-01-14 Anders Carlsson <andersca@codefactory.se>
7776 * bus/connection.c: (connection_error_handler),
7777 (bus_connection_setup):
7778 * bus/main.c: (main):
7779 Make sure that the DBusConnectionData struct is NULLed
7780 out to prevent a segfault.
7782 * dbus/dbus-errors.c: (dbus_result_to_string):
7783 * dbus/dbus-errors.h:
7784 * dbus/dbus-message.c: (dbus_message_get_fields),
7785 (dbus_message_get_fields_valist), (_dbus_message_test):
7786 * dbus/dbus-message.h:
7787 Make dbus_message_get_fields return a result code so we can
7788 track invalid fields as well as oom.
7790 2003-01-11 Havoc Pennington <hp@pobox.com>
7792 * configure.in: change --enable-test/--enable-ansi action-if-given
7793 to enable_foo=$enableval instead of enable_foo=yes
7795 2003-01-08 Havoc Pennington <hp@pobox.com>
7797 * dbus/dbus-string.c (_dbus_string_align_length): new function
7799 * dbus/dbus-test-main.c: move main() for test app here
7801 (dbus_internal_symbol_do_not_use_run_tests): we have to export a
7802 symbol to run tests, because dbus-test isn't in the main
7805 Code review nitpicks.
7807 * dbus/dbus-message.c (dbus_message_write_header): add newlines
7808 for people with narrow emacs ;-). Assert client_serial was filled
7809 in. Assert message->name != NULL.
7810 (dbus_message_append_fields): have "first_field_type" arg separate
7811 from va list, needed for C++ binding that also uses varargs IIRC
7812 and helps with type safety
7813 (dbus_message_new): add @todo about using DBusString to store
7814 service/name internally
7815 (dbus_message_new): don't leak ->service and ->name on OOM later
7817 (dbus_message_unref): free the service name
7818 (dbus_message_get_fields): same change to varargs
7819 i.e. first_field_type
7820 (_dbus_message_loader_return_buffer): assert that the message data
7821 is aligned (if not it's a bug in our code). Put in verbose griping
7822 about why we set corrupted = TRUE.
7823 (decode_header_data): add FIXME that char* is evil. Was going to
7824 add FIXME about evil locale-specific string.h strncmp, but just
7825 switched to wacky string-as-uint32 optimization. Move check for
7826 "no room for field name" above get_const_data_len() to avoid
7827 assertion failure in get_const_data_len if we have trailing 2
7828 bytes or the like. Check for service and name fields being
7829 provided twice. Don't leak service/name on error. Require field
7830 names to be aligned to 4 bytes.
7832 * dbus/dbus-marshal.c: move byte swap stuff to header
7833 (_dbus_pack_int32): uscore-prefix
7834 (_dbus_unpack_int32): uscore-prefix
7835 (_dbus_unpack_uint32): export
7836 (_dbus_demarshal_string): add @todo complaining about use of
7838 (_dbus_marshal_get_field_end_pos): add @todo about bad error
7839 handling allowing corrupt data to go unchecked
7841 2003-01-08 Havoc Pennington <hp@redhat.com>
7843 * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
7844 to the select() as needed for authentication. (should be using
7845 _dbus_poll() not select, but for another day)
7847 * dbus/dbus.h: include dbus/dbus-protocol.h
7849 2003-01-08 Anders Carlsson <andersca@codefactory.se>
7851 * dbus/Makefile.am (dbusinclude_HEADERS): Install
7854 2003-01-08 Anders Carlsson <andersca@codefactory.se>
7856 * dbus/dbus-internals.c: (_dbus_type_to_string):
7857 New function that returns a string describing a type.
7859 * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
7860 * dbus/dbus-marshal.h:
7861 * dbus/dbus-message.c: (dbus_message_get_fields_valist),
7862 (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
7863 (dbus_message_iter_get_byte_array):
7864 * dbus/dbus-message.h:
7865 Add new convenience functions for appending and getting message fields.
7866 Also add demarshalling routines for byte arrays.
7868 2003-01-07 Anders Carlsson <andersca@codefactory.se>
7870 * dbus/dbus-connection-internal.h:
7871 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
7872 (_dbus_connection_get_next_client_serial),
7873 (dbus_connection_send_message):
7874 * dbus/dbus-internals.h:
7875 * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
7876 (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
7877 (_dbus_marshal_uint32), (_dbus_demarshal_double),
7878 (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
7879 (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
7880 (_dbus_verbose_bytes), (_dbus_marshal_test):
7881 * dbus/dbus-marshal.h:
7882 * dbus/dbus-message-internal.h:
7883 * dbus/dbus-message.c: (_dbus_message_set_client_serial),
7884 (dbus_message_write_header), (_dbus_message_lock),
7885 (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
7886 (dbus_message_get_name), (dbus_message_append_int32),
7887 (dbus_message_append_uint32), (dbus_message_append_double),
7888 (dbus_message_append_string), (dbus_message_append_byte_array),
7889 (dbus_message_get_fields_iter), (dbus_message_iter_ref),
7890 (dbus_message_iter_unref), (dbus_message_iter_has_next),
7891 (dbus_message_iter_next), (dbus_message_iter_get_field_type),
7892 (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
7893 (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
7894 (decode_header_data), (_dbus_message_loader_return_buffer),
7895 (message_iter_test), (_dbus_message_test):
7896 * dbus/dbus-message.h:
7897 * dbus/dbus-protocol.h:
7898 * dbus/dbus-test.c: (main):
7900 * glib/test-dbus-glib.c: (message_handler), (main):
7901 * test/echo-client.c: (main):
7902 * test/watch.c: (check_messages):
7903 Make messages sendable and receivable for real.
7905 2003-01-07 Anders Carlsson <andersca@codefactory.se>
7907 * dbus/dbus-marshal.c: (_dbus_marshal_double),
7908 (_dbus_marshal_string), (_dbus_marshal_byte_array):
7909 * dbus/dbus-message.c: (dbus_message_append_int32),
7910 (dbus_message_append_uint32), (dbus_message_append_double),
7911 (dbus_message_append_string), (dbus_message_append_byte_array):
7912 Handle OOM restoration.
7914 2003-01-07 Anders Carlsson <andersca@codefactory.se>
7916 * dbus/dbus-marshal.c: (_dbus_marshal_string),
7917 (_dbus_demarshal_string), (_dbus_marshal_test):
7918 * dbus/dbus-marshal.h:
7919 * dbus/dbus-message.c: (dbus_message_get_name),
7920 Document these functions.
7922 (dbus_message_append_int32), (dbus_message_append_uint32),
7923 (dbus_message_append_double), (dbus_message_append_string),
7924 (dbus_message_append_byte_array):
7925 * dbus/dbus-message.h:
7926 Add functions for adding message fields of different types.
7928 * dbus/dbus-protocol.h:
7929 Add the different types.
7931 2003-01-05 Havoc Pennington <hp@pobox.com>
7933 * bus/connection.c: implement routines for handling connections,
7934 first thing is keeping a list of owned services on each connection
7935 and setting up watches etc.
7937 * bus/services.c: implement a mapping from service names to lists
7940 * dbus/dbus-hash.c: add DBUS_HASH_POINTER
7942 * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
7943 to use static mutexes for global data
7945 * dbus/dbus-connection.c (dbus_connection_set_data): add new
7946 collection of functions to set/get application-specific data
7947 on the DBusConnection.
7949 2003-01-04 Havoc Pennington <hp@pobox.com>
7951 * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
7952 (_dbus_poll): new function
7954 * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
7957 * bus/loop.c: initial code for the daemon main loop
7959 2003-01-04 Havoc Pennington <hp@pobox.com>
7961 * test/watch.c (error_handler): make it safe if the error handler
7962 is called multiple times (if we s/error handler/disconnect
7963 handler/ we should just guarantee it's called only once)
7965 * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
7966 error handler on disconnect (it's quite possible we should
7967 just change the error handler to a "disconnect handler," I'm
7968 not sure we have any other meaningful errors)
7970 * configure.in: check for getpwnam_r
7972 * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
7973 dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
7974 mechanism as in SASL spec, using socket credentials
7976 * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
7977 (_dbus_send_credentials_unix_socket): new function
7979 * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
7981 (_dbus_write): only check errno if <0 returned
7982 (_dbus_write_two): ditto
7984 2003-01-02 Anders Carlsson <andersca@codefactory.se>
7986 * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
7987 (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
7988 (_dbus_marshal_test):
7989 * dbus/dbus-marshal.h:
7990 Add _dbus_marshal_byte_array and rename _dbus_marshal_string
7991 to _dbus_marshal_utf8_string. Also fix some tests.
7993 2002-12-28 Harri Porten <porten@kde.org>
7995 * configure.in: added check for C++ compiler and a very cheesy
7996 check for the Qt integration
7998 * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
8000 * qt/Makefile.am: added
8002 * qt/.cvsignore: added
8004 * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
8005 latter, added #ifdef QT_THREAD_SUPPORT guard.
8007 * dbus/Makefile.am: added missing headers for make dist
8009 2002-12-28 Kristian Rietveld <kris@gtk.org>
8011 * dbus/Makefile.am: fixup export-symbols-regex.
8013 2002-12-27 Anders Carlsson <andersca@codefactory.se>
8015 * acinclude.m4: Add this file and put the
8016 PKG_CHECK_MODULE macro in it.
8018 2002-12-27 Anders Carlsson <andersca@codefactory.se>
8020 * dbus/dbus-marshal.c: (_dbus_marshal_string),
8021 (_dbus_demarshal_double), (_dbus_demarshal_int32),
8022 (_dbus_demarshal_uint32), (_dbus_demarshal_string),
8023 (_dbus_marshal_test):
8024 Make the demarshalling routines align the pos argument.
8025 Add string marshalling tests and fix the obvious bugs
8028 2002-12-26 Havoc Pennington <hp@pobox.com>
8030 * dbus/dbus-auth.c: fixes fixes fixes
8032 * dbus/dbus-transport-unix.c: wire up support for
8033 encoding/decoding data on the wire
8035 * dbus/dbus-auth.c (_dbus_auth_encode_data)
8036 (_dbus_auth_decode_data): append to target string
8037 instead of nuking it.
8039 2002-12-26 Havoc Pennington <hp@pobox.com>
8041 * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
8042 WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
8045 * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
8046 avoid swap_bytes() overhead (ignoring possible assembly stuff for
8047 now). Main point is because I wanted unpack_uint32 to implement
8049 (_dbus_verbose_bytes): new function
8051 * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
8053 * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
8054 mechanism to handle a corrupt message stream
8055 (_dbus_message_loader_new): fix preallocation to only prealloc,
8058 * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
8059 (_dbus_string_test): enhance tests for copy/move and fix the
8062 * dbus/dbus-transport-unix.c: Hold references in more places to
8063 avoid reentrancy problems
8065 * dbus/dbus-transport.c: ditto
8067 * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
8068 leak reference count in no-message case
8070 * test/watch.c (do_mainloop): handle adding/removing watches
8071 during iteration over the watches. Also, ref the connection/server
8072 stored on a watch, so we don't try to mangle a destroyed one.
8074 * dbus/dbus-transport-unix.c (do_authentication): perform
8077 * dbus/dbus-auth.c (get_state): add a state
8078 AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
8079 (_dbus_auth_get_unused_bytes): append the unused bytes
8080 to the passed in string, rather than prepend
8082 * dbus/dbus-transport.c (_dbus_transport_init_base): create
8083 the auth conversation DBusAuth
8085 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
8086 (_dbus_transport_new_for_domain_socket): when creating a
8087 transport, pass in whether it's a client-side or server-side
8088 transport so we know which DBusAuth to create
8090 2002-12-03 Havoc Pennington <hp@pobox.com>
8092 * dbus/dbus-transport-unix.c (unix_finalize): finalize base
8093 _after_ finalizing the derived members
8094 (unix_connection_set): unref watch if we fail to add it
8096 * dbus/dbus-connection.c (dbus_connection_unref): delete the
8097 transport first, so that the connection owned by the
8098 transport will be valid as the transport finalizes.
8100 * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
8101 if necessary, and remove watches from the connection.
8103 * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
8105 2002-12-26 Anders Carlsson <andersca@codefactory.se>
8107 * dbus/dbus-marshal.c: (_dbus_marshal_string),
8108 (_dbus_demarshal_double), (_dbus_demarshal_int32),
8109 (_dbus_demarshal_uint32), (_dbus_demarshal_string),
8110 (_dbus_marshal_test):
8111 * dbus/dbus-marshal.h:
8112 Add string marshal functions and have the demarshal functions
8113 return the new position.
8115 2002-12-25 Havoc Pennington <hp@pobox.com>
8117 * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
8118 it is a simple protocol that just maps directly to SASL.
8120 * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
8121 initial implementation, not actually used yet.
8123 * dbus/dbus-string.c (_dbus_string_find): new function
8124 (_dbus_string_equal): new function
8125 (_dbus_string_base64_encode): new function
8126 (_dbus_string_base64_decode): new function
8128 2002-12-25 Anders Carlsson <andersca@codefactory.se>
8131 * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
8132 (_dbus_marshal_int32), (_dbus_marshal_uint32),
8133 (_dbus_demarshal_double), (_dbus_demarshal_int32),
8134 (_dbus_demarshal_uint32), (_dbus_marshal_test):
8135 * dbus/dbus-marshal.h:
8136 * dbus/dbus-protocol.h:
8137 * dbus/dbus-test.c: (main):
8139 Add un-optimized marshalling/demarshalling routines.
8141 2002-12-25 Harri Porten <porten@kde.org>
8143 * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
8145 2002-12-24 Zack Rusin <zack@kde.org>
8147 * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
8148 * qt/dbus-qt.h: skeleton with two sample implemenatation of the
8151 2002-12-24 Havoc Pennington <hp@pobox.com>
8153 * glib/dbus-gthread.c: fix include
8155 * glib/dbus-glib.h: rename DBusMessageHandler for now.
8156 I think glib API needs to change, though, as you don't
8157 want to use DBusMessageFunction, you want to use the
8158 DBusMessageHandler object. Probably
8159 dbus_connection_open_with_g_main_loop()
8160 and dbus_connection_setup_g_main_loop() or something like that
8161 (but think of better names...) that just create a connection
8162 that has watch/timeout functions etc. already set up.
8164 * dbus/dbus-connection.c
8165 (dbus_connection_send_message_with_reply): new function just to
8166 show how the message handler helps us deal with replies.
8168 * dbus/dbus-list.c (_dbus_list_remove_last): new function
8170 * dbus/dbus-string.c (_dbus_string_test): free a string that
8173 * dbus/dbus-hash.c: use memory pools for the hash entries
8174 (rebuild_table): be more paranoid about overflow, and
8175 shrink table when we can
8176 (_dbus_hash_test): reduce number of sprintfs and write
8177 valid C89. Add tests for case where we grow and then
8178 shrink the hash table.
8180 * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
8182 * dbus/dbus-connection.c (dbus_connection_register_handler)
8183 (dbus_connection_unregister_handler): new functions
8185 * dbus/dbus-message.c (dbus_message_get_name): new
8187 * dbus/dbus-list.c: fix docs typo
8189 * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
8190 an object representing a handler for messages.
8192 2002-12-16 Anders Carlsson <andersca@codefactory.se>
8195 * glib/dbus-gthread.c: (dbus_gthread_init):
8196 Don't use the gdbus prefix for public functions.
8198 2002-12-16 Anders Carlsson <andersca@codefactory.se>
8202 Add GLib checks and fixup .pc files
8206 * glib/dbus-gmain.c: (gdbus_connection_prepare),
8207 (gdbus_connection_check), (gdbus_connection_dispatch),
8208 (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
8209 (dbus_connection_gsource_new):
8210 * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
8211 (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
8212 * glib/test-dbus-glib.c: (message_handler), (main):
8215 2002-12-15 Harri Porten <porten@kde.org>
8217 * autogen.sh: check for libtoolize before attempting to use it
8219 * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
8222 * .cvsignore: ignore more stamp files
8224 * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
8226 * test/Makefile.am: added -I$(top_srcdir) to be able to compile
8227 without make install.
8229 2002-12-15 Havoc Pennington <hp@pobox.com>
8231 * dbus/dbus-threads.c: add thread stubs that a higher library
8232 layer can fill in. e.g. the GLib wrapper might fill them in with
8233 GThread stuff. We still need to use this thread API to
8234 thread-safe-ize the library.
8236 2002-12-12 Havoc Pennington <hp@pobox.com>
8238 * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
8239 below new interfaces and include fewer system headers.
8241 * dbus/dbus-sysdeps.c (_dbus_read): new function
8242 (_dbus_write): new function
8243 (_dbus_write_two): new function
8244 (_dbus_connect_unix_socket): new function
8245 (_dbus_listen_unix_socket): new function
8247 * dbus/dbus-message-internal.h: change interfaces to use
8250 2002-12-11 Havoc Pennington <hp@pobox.com>
8252 * dbus/dbus-types.h: add dbus_unichar
8254 * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
8256 * dbus/dbus-connection.c (dbus_connection_send_message): return
8259 * dbus/dbus-transport.c: include dbus-watch.h
8261 * dbus/dbus-connection.c: include dbus-message-internal.h
8263 * HACKING: add file with coding guidelines stuff.
8265 * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
8266 handling here, for security purposes (as in vsftpd). Not actually
8267 using this class yet.
8269 * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
8270 system/libc usage here, as in vsftpd, for ease of auditing (and
8271 should also simplify portability). Haven't actually moved all the
8272 system/libc usage into here yet.
8274 2002-11-25 Havoc Pennington <hp@pobox.com>
8276 * dbus/dbus-internals.c (_dbus_verbose): fix to not
8277 always print the first verbose message.
8279 2002-11-24 Havoc Pennington <hp@pobox.com>
8281 * test/echo-client.c, test/echo-server.c: cheesy test
8284 * configure.in (AC_CHECK_FUNCS): check for writev
8286 * dbus/dbus-message.c (_dbus_message_get_network_data): new
8289 * dbus/dbus-list.c (_dbus_list_foreach): new function
8291 * dbus/dbus-internals.c (_dbus_verbose): new function
8293 * dbus/dbus-server.c, dbus/dbus-server.h: public object
8294 representing a server that listens for connections.
8296 * dbus/.cvsignore: create
8298 * dbus/dbus-errors.h, dbus/dbus-errors.c:
8299 public API for reporting errors
8301 * dbus/dbus-connection.h, dbus/dbus-connection.c:
8302 public object representing a connection that
8303 sends/receives messages. (Same object used for
8304 both client and server.)
8306 * dbus/dbus-transport.h, dbus/dbus-transport.c:
8307 Basic abstraction for different kinds of stream
8308 that we might read/write messages from.
8310 2002-11-23 Havoc Pennington <hp@pobox.com>
8312 * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
8315 * dbus/dbus-test.c (main): add list test, and include
8316 dbus-test.h as intended
8318 * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
8319 (_dbus_hash_table_remove_int): return value indicates
8320 whether the entry existed to remove
8322 * dbus/dbus-list.c: add linked list utility class,
8325 * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
8328 2002-11-23 Havoc Pennington <hp@pobox.com>
8330 * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
8331 DBUS_END_DECLS to nothing, that should fix this once and for all
8333 * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
8335 * dbus/dbus-message.c, dbus/dbus-hash.c:
8336 add some missing @brief
8338 2002-11-23 Havoc Pennington <hp@pobox.com>
8340 * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
8341 to avoid confusing Doxygen
8343 * dbus/dbus-hash.c: @} not }@
8345 * dbus/dbus-message.c (struct DBusMessage): split out
8348 2002-11-23 Havoc Pennington <hp@pobox.com>
8350 * configure.in: pile on more warning flags if using gcc
8352 * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
8353 to document static functions
8355 * configure.in: add summary to end of configure so it
8356 looks nice and attractive
8358 * dbus/dbus-hash.c: finish implementation and write unit
8361 * configure.in: add --enable-tests to enable unit tests
8363 * dbus/dbus-test.c: test program to run unit tests
8364 for all files in dbus/*, initially runs a test for
8367 * dbus/dbus-internals.h: file to hold some internal utility stuff
8369 2002-11-22 Havoc Pennington <hp@redhat.com>
8371 * dbus/dbus-hash.c: copy in Tcl hash table, not yet
8372 "ported" away from Tcl
8374 * dbus/dbus-types.h: header for types such as dbus_bool_t
8376 2002-11-22 Havoc Pennington <hp@redhat.com>
8378 * dbus/dbus.h: fixups for doc warnings
8380 * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
8382 (QUIET): make it quiet so we can see warnings
8384 * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
8386 2002-11-22 Havoc Pennington <hp@redhat.com>
8388 * Makefile.am: include "Doxyfile" target in all-local
8390 * configure.in: generate the Doxyfile
8392 * Doxyfile.in: move Doxyfile here, so we can use
8393 configure to generate a Doxyfile with the right
8396 2002-11-22 Havoc Pennington <hp@redhat.com>
8398 * dbus/dbus-message.c: move inline docs into .c file
8400 * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
8401 so all docs are under doc/
8402 (MAN_EXTENSION): generate man pages. Use extension
8403 ".3dbus" which matches ".3qt" on my system,
8404 I guess this is OK, I don't know really.
8405 (FILE_PATTERNS): look for .c files not .h, makes sense
8408 2002-11-22 Havoc Pennington <hp@pobox.com>
8410 * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
8411 because any app can be a server, and any app can be a client,
8412 the bus is a special kind of server.
8414 Thu Nov 21 23:35:31 2002 Zack Rusin <zack@kde.org>
8416 * Doxyfile : adding. Still needs Makefile rules to be generated
8417 automatically (just run "doxygen" in the toplevel dir for now to
8420 * dbus/dbus-message.h : Adding sample docs (javadoc since
8421 resembles gtk-doc a little more)
8423 * dbus/dbus.h : Adding sample docs
8425 2002-11-21 Havoc Pennington <hp@redhat.com>
8427 * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
8428 so we can allow ourselves to include files directly,
8429 instead of having to use dbus.h
8431 * dbus/dbus.h: fill in
8433 * dbus/dbus-message.h: sketch out a sample header file.
8434 Include griping if you include it directly instead of
8437 * dbus/dbus-macros.h: new file with macros for extern "C",
8438 TRUE/FALSE, NULL, etc.
8440 * doc/file-boilerplate.c: put include guards in here
8442 2002-11-21 Havoc Pennington <hp@redhat.com>
8444 * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
8446 * COPYING: include the GPL as well, and license code
8447 under both AFL and GPL.
8449 2002-11-21 Havoc Pennington <hp@redhat.com>
8451 * acconfig.h: get rid of this
8453 * autogen.sh (run_configure): add --no-configure option
8455 * configure.in: remove AC_ARG_PROGRAM to make
8456 autoconf complain less. add AC_PREREQ.
8457 add AC_DEFINE third arg.
8459 2002-11-21 Anders Carlsson <andersca@codefactory.se>
8462 Fix references so we can distcheck.
8464 2002-11-21 Havoc Pennington <hp@redhat.com>
8466 * Initial module creation