1 2003-09-23 Havoc Pennington <hp@redhat.com>
3 * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
4 (dbus_gproxy_disconnect_signal): implement
5 (dbus_gproxy_manager_remove_signal_match): implement
6 (dbus_gproxy_manager_add_signal_match): implement
7 (dbus_gproxy_oneway_call): implement
9 2003-09-23 Havoc Pennington <hp@pobox.com>
11 * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
12 subclass. This means dropping the transparent thread safety of the
13 proxy; you now need a separate proxy per-thread, or your own
14 locking on the proxy. Probably right anyway.
15 (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
17 2003-09-22 Havoc Pennington <hp@redhat.com>
19 * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
21 2003-09-21 Seth Nickell <seth@gnome.org>
23 First checkin of the Python bindings.
27 * python/dbus_bindings.pyx.in:
28 * python/dbus_h_wrapper.h:
30 Pieces for Pyrex to operate on, building a dbus_bindings.so
31 python module for low-level access to the DBus APIs.
35 High-level Python module for accessing DBus objects.
40 Build stuff for the python bindings.
44 Extra macro needed for finding the Python C header files.
46 2003-09-21 Havoc Pennington <hp@pobox.com>
48 * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
49 implementing the proxy manager, didn't get very far.
51 * dbus/dbus-bus.c (dbus_bus_add_match): new
52 (dbus_bus_remove_match): new
54 * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
55 path_name argument; adjust the other not-yet-implemented
56 gproxy constructors to be what I think they should be.
58 2003-09-21 Havoc Pennington <hp@pobox.com>
60 * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
61 by default for message bus connections.
63 * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
64 exit_on_disconnect flag is set and we process the disconnected
66 (dbus_connection_set_exit_on_disconnect): new function
68 2003-09-21 Havoc Pennington <hp@pobox.com>
70 Get matching rules mostly working in the bus; only actually
71 parsing the rule text remains. However, the client side of
72 "signal connections" hasn't been started, this patch is only the
75 * dbus/dispatch.c: fix for the matching rules changes
77 * bus/driver.c (bus_driver_handle_remove_match)
78 (bus_driver_handle_add_match): send an ack reply from these
81 * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
82 arguments, reported by Seth Nickell
84 * bus/config-parser.c (append_rule_from_element): support
85 eavesdrop=true|false attribute on policies so match rules
86 can be prevented from snooping on the system bus.
88 * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
89 and "destination" in attribute names; fix some docs bugs;
90 add eavesdrop=true|false attribute
92 * bus/driver.c (bus_driver_handle_add_match)
93 (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
96 * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
97 rid of broadcast service concept, signals are just always broadcast
99 * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
100 mostly implement matching rules stuff (currently only exposed as signal
103 2003-09-21 Mark McLoughlin <mark@skynet.ie>
105 * doc/dbus-specification.sgml: Change the header field name
106 to be an enum and update the rest of the spec to reference
107 the fields using the conventinal name.
109 * dbus/dbus-protocol.h: update to reflect the spec.
111 * doc/TODO: add item to remove the 4 byte alignment requirement.
113 * dbus/dbus-message.c: Remove the code to generalise the
114 header/body length and serial number header fields as named
115 header fields so we can reference field names using the
117 (append_int_field), (append_uint_field), (append_string_field):
118 Append the field name as a byte rather than four chars.
119 (delete_int_or_uint_field), (delete_string_field): reflect the
120 fact that the field name and typecode now occupy 4 bytes instead
122 (decode_string_field), (decode_header_data): update to reflect
123 protocol changes and move the field specific encoding from
124 decode_string_field() back into decode_header_data().
126 * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
127 Add utility to aid debugging.
129 * dbus/dbus-message-builder.c:
130 (append_string_field), (_dbus_message_data_load): Update to
131 reflect protocol changes; Change the FIELD_NAME directive
132 to HEADER_FIELD and allow it to take the field's conventional
133 name rather than the actual value.
135 * test/data/*/*.message: Update to use HEADER_FIELD instead
136 of FIELD_NAME; Always align the header on an 8 byte boundary
137 *before* updating the header length.
139 2003-09-15 Havoc Pennington <hp@pobox.com>
141 * dbus/dbus-pending-call.c: add the get/set object data
142 boilerplate as for DBusConnection, etc. Use generic object data
143 for the notify callback.
145 * glib/dbus-gparser.c (parse_node): parse child nodes
147 * tools/dbus-viewer.c: more hacking on the dbus-viewer
149 * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
150 contain functions shared between the convenience lib and the
153 * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
154 -export-symbols-regex to the GLib library
156 * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
157 fix the locking in here, and add a default handler for
158 Introspect() that just returns sub-nodes.
160 2003-09-14 Havoc Pennington <hp@pobox.com>
162 * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
163 rather than gfoo consistent
165 * glib/dbus-gproxy.h: delete for now, move contents to
166 dbus-glib.h, because the include files don't work right since we
167 aren't in the dbus/ subdir.
169 * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
170 (dbus_gproxy_end_call): finish
171 (dbus_gproxy_begin_call): finish
173 * glib/dbus-gmain.c (dbus_set_g_error): new
175 * glib/dbus-gobject.c (handle_introspect): include information
176 about child nodes in the introspection
178 * dbus/dbus-connection.c (dbus_connection_list_registered): new
179 function to help in implementation of introspection
181 * dbus/dbus-object-tree.c
182 (_dbus_object_tree_list_registered_and_unlock): new function
184 2003-09-12 Havoc Pennington <hp@pobox.com>
186 * glib/dbus-gidl.h: add common base class for all the foo_info
189 * tools/dbus-viewer.c: add GTK-based introspection UI thingy
192 * test/Makefile.am: try test srcdir -ef . in addition to test
193 srcdir = ., one of them should work (yeah lame)
195 * glib/Makefile.am: build the "idl" parser stuff as a convenience
198 * glib/dbus-gparser.h: make description_load routines return
199 NodeInfo* not Parser*
201 * Makefile.am (SUBDIRS): build test dir after all library dirs
203 * configure.in: add GTK+ detection
205 2003-09-07 Havoc Pennington <hp@pobox.com>
207 * Make Doxygen contented.
209 2003-09-07 Havoc Pennington <hp@pobox.com>
211 * doc/dbus-specification.sgml: more updates
213 2003-09-06 Havoc Pennington <hp@pobox.com>
215 * doc/dbus-specification.sgml: partial updates
217 * bus/dbus-daemon-1.1.in: fix the config file docs for the
218 zillionth time; hopefully I edited the right file this time.
220 * bus/config-parser.c (append_rule_from_element): support
221 send_type, send_path, receive_type, receive_path
223 * bus/policy.c: add message type and path to the list of things
224 that can be "firewalled"
226 2003-09-06 Havoc Pennington <hp@pobox.com>
228 * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
229 (dbus_connection_register_object_path): make this not handle
230 messages to paths below the given path
232 2003-09-03 Havoc Pennington <hp@pobox.com>
234 * test/glib/Makefile.am: add this with random glib-linked test
237 * glib/Makefile.am: remove the random test programs from here,
238 leave only the unit tests
240 * glib/dbus-gobject.c (_dbus_gobject_test): add test for
241 uscore/javacaps conversion, and fix
242 (get_object_property, set_object_property): change to .NET
243 convention for mapping props to methods, set_FooBar/get_FooBar,
244 since one language has such a convention we may as well copy it.
245 Plus real methods in either getFooBar or get_foo_bar style won't
246 collide with this convention.
248 2003-09-01 Havoc Pennington <hp@pobox.com>
250 * glib/dbus-gparser.c: implement
252 * glib/dbus-gobject.c: start implementing skeletons support
254 * configure.in: when disabling checks/assert, also define
255 G_DISABLE_ASSERT and G_DISABLE_CHECKS
257 2003-09-01 Havoc Pennington <hp@pobox.com>
259 * glib/Makefile.am: rearrange a bunch of files and get "make
260 check" framework set up
262 2003-08-31 Havoc Pennington <hp@pobox.com>
264 * fix build with --disable-tests
266 2003-08-30 Havoc Pennington <hp@pobox.com>
268 * dbus/dbus-connection.c: purge DBusMessageHandler
270 * dbus/dbus-message-handler.c: remove DBusMessageHandler, just
271 use callbacks everywhere
273 2003-08-30 Havoc Pennington <hp@pobox.com>
275 * test/data/valid-config-files/system.d/test.conf: change to
276 root for the user so warnings don't get printed
278 * dbus/dbus-message.c: add dbus_message_get_path,
279 dbus_message_set_path
281 * dbus/dbus-object-tree.c (do_test_dispatch): add test of
282 dispatching to a path
284 * dbus/dbus-string.c (_dbus_string_validate_path): add
286 * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
287 (_dbus_marshal_object_path): implement
289 * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field
290 to contain the path to the target object
291 (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
292 DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
294 2003-08-30 Havoc Pennington <hp@pobox.com>
296 * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
298 2003-08-29 Havoc Pennington <hp@pobox.com>
300 * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
302 (struct DBusObjectSubtree): shrink this
303 a lot, since we may have a lot of them
304 (_dbus_object_tree_free_all_unlocked): implement
305 (_dbus_object_tree_dispatch_and_unlock): implement
307 2003-08-29 Havoc Pennington <hp@pobox.com>
309 * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
311 2003-08-28 Havoc Pennington <hp@pobox.com>
315 * dbus/dbus-connection.c: port to no ObjectID, create a
316 DBusObjectTree, rename ObjectTree to ObjectPath in public API
318 * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete
319 everything except UnregisterFunction and MessageFunction
321 * dbus/dbus-marshal.c: port away from DBusObjectID,
322 add DBUS_TYPE_OBJECT_PATH
324 * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc],
325 dbus/dbus-objectid.[hc]: remove these, we are moving to
326 path-based object IDs
328 2003-08-25 Havoc Pennington <hp@pobox.com>
330 Just noticed that dbus_message_test is hosed, I wonder when I
331 broke that. I thought make check was passing earlier...
333 * dbus/dbus-object-tree.c: add new "object tree" to match DCOP
334 container tree, will replace most of dbus-object-registry
336 * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
339 2003-08-19 Havoc Pennington <hp@pobox.com>
341 * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
342 (dbus_message_is_error): fix this function
344 * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
347 * bus/policy.c (bus_client_policy_check_can_receive): fix code to
348 reflect clarified man page
349 (bus_client_policy_check_can_send): ditto
351 * bus/session.conf.in: fixup
353 * bus/system.conf.in: fixup
355 2003-08-18 Havoc Pennington <hp@redhat.com>
357 * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
359 * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
360 dumb bug created earlier (wrong order of args to
361 decode_header_data())
363 * tools/dbus-send.c: port
365 * tools/dbus-print-message.c (print_message): port
367 * test/data/*messages: port all messages over
369 * dbus/dbus-message-builder.c: support including
372 * bus/driver.c: port over
374 * bus/dispatch.c: port over to new stuff
376 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
377 rename disconnect signal to "Disconnected"
379 2003-08-17 Havoc Pennington <hp@pobox.com>
381 This doesn't compile yet, but syncing up so I can hack on it from
382 work. What are branches for if not broken code? ;-)
384 * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
385 DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
386 DBUS_HEADER_FIELD_ERROR_NAME
388 * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
389 for the interface+member pairs
390 (string_hash): change to use g_str_hash algorithm
391 (find_direct_function, find_string_function): refactor these to
394 * dbus/dbus-message.c: port all of this over to support
395 interface/member fields instead of name field
397 * dbus/dbus-object-registry.c: port over
399 * dbus/dbus-string.c (_dbus_string_validate_interface): rename
400 from _dbus_string_validate_name
402 * bus/dbus-daemon-1.1: change file format for the
403 <deny>/<allow> stuff to match new message naming scheme
405 * bus/policy.c: port over
407 * bus/config-parser.c: parse new format
409 2003-08-16 Havoc Pennington <hp@pobox.com>
411 * dbus/dbus-object-registry.c (add_and_remove_objects): remove
414 * glib/dbus-gproxy.c: some hacking
416 2003-08-15 Havoc Pennington <hp@redhat.com>
418 * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
420 * dbus/dbus-connection.c
421 (dbus_connection_send_with_reply_and_block): factor out internals;
422 change to convert any error replies to DBusError instead of
423 returning them as a message
425 2003-08-15 Havoc Pennington <hp@pobox.com>
427 * dbus/dbus-connection.c,
428 dbus/dbus-pending-call.c: Finish the pending call stuff
430 2003-08-14 Havoc Pennington <hp@redhat.com>
432 * dbus/dbus-pending-call.c: start on new object that will replace
433 DBusMessageHandler and ReplyHandlerData for tracking outstanding
436 * dbus/dbus-gproxy.c: start on proxy object used to communicate
437 with remote interfaces
439 * dbus/dbus-gidl.c: do the boring boilerplate in here
441 2003-08-12 Havoc Pennington <hp@pobox.com>
443 * bus/dispatch.c (bus_dispatch): make this return proper
444 DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
446 * dbus/dbus-errors.c (dbus_set_error): use
447 _dbus_string_append_printf_valist
449 * dbus/dbus-string.c (_dbus_string_append_printf_valist)
450 (_dbus_string_append_printf): new
452 * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
455 * dbus/dbus-connection.c (dbus_connection_dispatch): handle
456 DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
457 message is unhandled.
459 2003-08-11 Havoc Pennington <hp@pobox.com>
461 * bus/test.c (client_disconnect_handler): change to return
462 HANDLED (would have been REMOVE_MESSAGE)
464 * dbus/dbus-object.h (enum DBusHandlerResult): rename to
465 HANDLED/NOT_YET_HANDLED instead of
466 REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it
469 2003-08-10 Havoc Pennington <hp@pobox.com>
471 * tools/dbus-send.c (main): add --type argument, for now
472 supporting only method_call and signal types.
474 * tools/dbus-print-message.c: print message type
476 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
477 init connection->objects
479 * doc/dbus-specification.sgml: fix sgml
481 * bus/*.c: port over to object-instance API changes
483 * test/test-service.c: ditto
485 * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
486 name, we will have to fix up the rest of the code to also handle
488 (dbus_message_new): generic message-creation call
489 (set_string_field): allow appending name field
491 2003-08-06 Havoc Pennington <hp@pobox.com>
493 * dbus/dbus-object-registry.c: implement signal connection
496 * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
498 * dbus/dbus-internals.c (_dbus_memdup): new function
500 2003-08-02 Havoc Pennington <hp@pobox.com>
502 * dbus/dbus-message.c (dbus_message_get_no_reply)
503 (dbus_message_set_no_reply): add these and remove
504 set_is_error/get_is_error
506 * dbus/dbus-protocol.h, doc/dbus-specification.sgml:
507 remove the ERROR flag, since there's now an ERROR type
509 2003-08-01 Havoc Pennington <hp@pobox.com>
511 * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
514 * dbus/dbus-message.c (dbus_message_get_type): new function
516 * doc/dbus-specification.sgml: add "type" byte to messages
518 2003-08-01 Havoc Pennington <hp@pobox.com>
520 * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
521 a message type enum to distinguish kinds of message
522 (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message
523 that need not be replied to
525 2003-08-01 Havoc Pennington <hp@pobox.com>
527 * dbus/dbus-marshal.c: adapt to DBusObjectID changes
528 (unpack_8_octets): fix no-64-bit-int bug
530 * dbus/dbus-object-registry.c (validate_id): validate the
531 connection ID bits, not just the instance ID.
533 * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
534 the connection-global 33 bits of the object ID
536 * dbus/dbus-object-registry.c (info_from_entry): fill in
537 object ID in the new way
539 * dbus/dbus-objectid.h: rather than high/low bits, specifically
540 define server/client/instance bits.
542 2003-07-30 Havoc Pennington <hp@pobox.com>
544 * dbus/dbus-connection.c (dbus_connection_register_object): fix
547 2003-07-13 Havoc Pennington <hp@pobox.com>
549 * dbus/dbus-object.h (struct DBusObjectVTable): add padding
550 fields to DBusObjectVTable and DBusObjectInfo
552 2003-07-12 Havoc Pennington <hp@pobox.com>
554 * dbus/dbus-object-registry.c: implement unit test,
555 fix bugs discovered in process
557 * dbus/dbus-connection.c: remove handler_table and
558 register_handler(), add DBusObjectRegistry usage
560 * dbus/dbus-objectid.c (dbus_object_id_is_null)
561 (dbus_object_id_set_null): new functions
563 2003-07-08 Havoc Pennington <hp@pobox.com>
565 * dbus/dbus-object.c: implement some of this
567 * dbus/dbus-object-registry.c
568 (_dbus_object_registry_add_and_unlock): fill in the object_id out
570 (_dbus_object_registry_new): handle OOM
572 2003-07-08 Havoc Pennington <hp@pobox.com>
574 * dbus/dbus-object.h: sketch out an API for registering objects
575 with a connection, that allows us to use as little as 24 bytes
576 per object and lets application code represent an object in
579 * dbus/dbus-object-registry.c: implement the hard bits of the
580 DBusConnection aspect of object API. Not yet wired up.
582 2003-07-06 Havoc Pennington <hp@pobox.com>
584 * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
585 (_dbus_marshal_object_id): new
586 (_dbus_demarshal_object_id): new
587 (_dbus_marshal_get_arg_end_pos): support object ID type, and
588 consolidate identical switch cases. Don't conditionalize handling
589 of DBUS_TYPE_UINT64, need to handle the type always.
590 (_dbus_marshal_validate_arg): consolidate identical cases, and
591 handle DBUS_TYPE_OBJECT_ID
593 * dbus/dbus-objectid.c: new file with DBusObjectID data type.
595 * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
597 2003-06-29 Havoc Pennington <hp@pobox.com>
599 * mono/Test.cs (class Test): fire up a main loop and run it
601 * mono/DBus.cs (DBus): don't g_thread_init since it can only be
602 done once, the app has to do it
604 2003-06-26 Havoc Pennington <hp@pobox.com>
606 * mono/Connection.cs: set up connection with the glib main loop
608 2003-07-01 Havoc Pennington <hp@redhat.com>
610 * doc/dbus-specification.sgml: clarify the format of a type code,
611 change suggested by Jim Blandy
613 2003-06-29 Miloslav Trmac <mitr@volny.cz>
616 * tools/Makefile.am: Don't assume srcdir == builddir.
618 * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
620 (_dbus_memory_test): New function.
621 * dbus/dbus-test.h: Add _dbus_memory_test ().
622 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
624 * dbus/dbus-message.c (decode_header_data): Use %.4s instead
626 (dbus_message_new): Remove obsolete @todo.
628 * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
629 (_dbus_marshal_set_uint64): Fix comment.
631 * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
632 hardcode FIELD_REPLY_SERIAL.
634 * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
635 (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
637 * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
638 and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
640 2003-06-24 Havoc Pennington <hp@pobox.com>
642 * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
644 2003-06-23 Anders Carlsson <andersca@codefactory.se>
650 * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
651 * gcj/org/.cvsignore:
652 * gcj/org/Makefile.am:
653 * gcj/org/freedesktop/.cvsignore:
654 * gcj/org/freedesktop/Makefile.am:
655 * gcj/org/freedesktop/dbus/.cvsignore:
656 * gcj/org/freedesktop/dbus/Makefile.am:
657 * gcj/org/freedesktop/dbus/Message.java: (Message),
659 * gcj/org/freedesktop/dbus/natMessage.cc:
660 Fix the build system.
662 2003-06-22 Havoc Pennington <hp@pobox.com>
664 * mono/Connection.cs: add more bindings
666 * dbus/dbus-threads.c (dbus_threads_init): allow calling this
669 2003-06-22 Havoc Pennington <hp@pobox.com>
671 * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
672 Start wrapping more stuff.
674 2003-06-22 Havoc Pennington <hp@pobox.com>
676 * mono/Message.cs: implement Message.Wrap() that ensures we only
677 have a single C# wrapper per DBusMessage, assuming it works which
680 * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
681 (dbus_message_free_data_slot): new
682 (dbus_message_set_data): new
683 (dbus_message_get_data): new
685 2003-06-22 Havoc Pennington <hp@pobox.com>
687 * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
688 (_dbus_data_slot_allocator_alloc): rework these to keep a
689 reference count on each slot and automatically manage a global
690 slot ID variable passed in by address
692 * bus/bus.c: convert to new dataslot API
694 * dbus/dbus-bus.c: convert to new dataslot API
696 * dbus/dbus-connection.c: convert to new dataslot API
698 * dbus/dbus-server.c: convert to new dataslot API
700 * glib/dbus-gmain.c: ditto
704 * bus/connection.c: ditto
706 2003-06-22 Anders Carlsson <andersca@codefactory.se>
708 * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
709 after the gcj checks so that the correct configuration tags
710 will be added to libtool.
712 * dbus-glib-1.pc.in: No need to specify any includes since
713 dbus-1.pc.in has those.
715 2003-06-22 Havoc Pennington <hp@pobox.com>
717 * mono/*, gcj/*, configure.in, Makefile.am:
718 Check in makefiles and subdirs for mono and gcj bindings.
719 Neither binding actually exists, just trying to get through
720 all the build and other boring bits.
722 2003-06-21 Philip Blundell <philb@gnu.org>
724 * tools/dbus-monitor.1: Updated.
726 * tools/dbus-send.1: Likewise.
728 2003-06-20 Anders Carlsson <andersca@codefactory.se>
730 * dbus/dbus-transport-unix.c (unix_handle_watch): Check
731 for hangup and error after checking read so we won't discard
732 pending data if both hangup and read are set.
734 2003-06-19 Philip Blundell <philb@gnu.org>
736 * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
738 * tools/dbus-send.c: Accept both --system and --session.
740 * tools/dbus-monitor.c: Same here.
742 2003-06-19 Anders Carlsson <andersca@codefactory.se>
744 * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
745 from C++ (Patch by Miloslav Trmac).
747 2003-06-15 Joe Shaw <joe@assbarn.com>
749 * configure.in: Check for socklen_t.
751 * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
753 * test/test-segfault.c: Add #include <sys/time.h>
755 * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
756 dbus-launch needs it.
758 2003-06-09 Havoc Pennington <hp@redhat.com>
760 * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
761 SUN_LEN, it breaks abstract socket usage
763 * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
766 2003-06-04 Havoc Pennington <hp@pobox.com>
768 * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
769 using unix:abstract=/foo, and when listening in a tmpdir
770 i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
772 * dbus/dbus-transport.c (_dbus_transport_open): support
775 * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
776 support abstract sockets
778 * dbus/dbus-transport-unix.c
779 (_dbus_transport_new_for_domain_socket): support abstract sockets
781 * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
782 toggle as an argument, implement abstract namespace support
783 (_dbus_listen_unix_socket): ditto
785 * configure.in: add --enable-abstract-sockets and implement
786 a configure check for autodetection of the right value.
788 2003-06-01 Havoc Pennington <hp@pobox.com>
790 * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
791 in /tmp (though on Linux this will end up being useless,
792 when we add abstract namespace support)
794 * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
797 2003-05-28 Colin Walters <walters@verbum.org>
799 * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
801 2003-05-18 Anders Carlsson <andersca@codefactory.se>
803 * dbus/dbus-message.c (dbus_message_new): Remove @todo.
805 2003-05-17 Colin Walters <walters@gnu.org>
807 * tools/dbus-send.c: Don't exit with an error code if --help was
808 passed. Default to using the session bus instead of the system
811 * tools/dbus-launch.c: Ditto.
813 * tools/dbus-monitor.c: Ditto.
815 * tools/dbus-send.1: Update with new arguments.
817 * tools/dbus-launch.c: Emit code to export variables. New
818 arguments -s and -c to specify shell syntax, and a bit of code to
819 autodetect syntax. Also, allow specifying a program to run.
821 * tools/dbus-launch.1: Update with new arguments.
823 * tools/dbus-send.1: Ditto.
825 * tools/dbus-monitor.1: Ditto.
827 2003-05-17 Havoc Pennington <hp@pobox.com>
829 * bus/config-parser.c (merge_included): merge in policies from
830 child configuration file.
832 * bus/policy.c (bus_policy_merge): function to merge two policies
835 2003-05-16 Havoc Pennington <hp@redhat.com>
837 * dbus/dbus-connection.c: disable verbose lock spew
839 * tools/dbus-send.c: add --print-reply command line option
841 * tools/dbus-print-message.h (print_message): new util function
842 shared by dbus-send and dbus-monitor
844 * tools/dbus-monitor.c (handler_func): exit on disconnect
846 * dbus/dbus-transport-unix.c (do_reading): if the transport is
847 disconnected, don't try to use the read_watch
849 * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
850 so we can find this bug more easily
852 2003-05-16 Havoc Pennington <hp@redhat.com>
854 * bus/policy.c (free_rule_list_func): avoid a crash when passed
855 NULL as DBusHashTable is annoyingly likely to do.
857 2003-05-16 Colin Walters <walters@verbum.org>
859 * tools/dbus-monitor.c: Add --session argument and usage()
862 * tools/dbus-monitor.1: Update with new --session arg.
864 * bus/Makefile.am (install-data-hook): Create
865 $(libdir)/dbus-1.0/services so that the session bus is happy.
867 2003-05-15 Havoc Pennington <hp@redhat.com>
869 * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
870 on non-x86. ifdef's are evil.
872 2003-05-15 Havoc Pennington <hp@redhat.com>
878 * bus/Makefile.am (initddir): apparently we are supposed to put
879 init scripts in /etc/rc.d/init.d not /etc/init.d
881 * bus/Makefile.am: remove the "you must --enable-tests to make
882 check" as it broke distcheck
884 * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
886 2003-05-13 James Willcox <jwillcox@gnome.org>
889 * bus/activation.c: (bus_activation_service_created),
890 (bus_activation_activate_service):
891 * bus/driver.c: (bus_driver_send_service_deleted),
892 (bus_driver_send_service_created), (bus_driver_send_service_lost),
893 (bus_driver_send_service_acquired),
894 (bus_driver_send_welcome_message),
895 (bus_driver_handle_list_services):
896 * bus/session.conf.in:
897 * dbus/dbus-bus.c: (dbus_bus_acquire_service),
898 (dbus_bus_service_exists), (dbus_bus_activate_service):
901 Add some convenience API which lets you activate a service, and did a
902 bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
903 and dbus_message_get_args()
905 2003-05-11 Havoc Pennington <hp@pobox.com>
907 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
908 calling _dbus_marshal_validate_arg() for every byte in a byte
911 * dbus/dbus-message-handler.c: use atomic reference counting to
912 reduce number of locks slightly; the global lock in here sucks
914 * dbus/dbus-connection.c
915 (_dbus_connection_update_dispatch_status_and_unlock): variant of
916 update_dispatch_status that can be called with lock held; then use
917 in a couple places to reduce locking/unlocking
918 (dbus_connection_send): hold the lock over the whole function
919 instead of acquiring it twice.
921 * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
923 * bus/connection.c (bus_connections_setup_connection): fix access
924 to already-freed memory.
926 * dbus/dbus-connection.c: keep a little cache of linked list
927 nodes, to avoid using the global linked list alloc lock in the
928 normal send-message case. Instead we just use the connection lock
929 that we already have to take.
931 * dbus/dbus-list.c (_dbus_list_find_last): new function
933 * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
934 change to use a struct for the atomic type; fix docs,
935 they return value before increment, not after increment.
937 * dbus/dbus-string.c (_dbus_string_append_4_aligned)
938 (_dbus_string_append_8_aligned): new functions to try to
939 microoptimize this operation.
940 (reallocate_for_length): break this out of set_length(), to
941 improve profile info, and also so we can consider inlining the
944 * dbus/dbus-message.c (dbus_message_new_empty_header): init data
945 strings with some preallocation, cuts down on our calls to realloc
946 a fair bit. Though if we can get the "move entire string to empty
947 string" optimization below to kick in here, it would be better.
949 * dbus/dbus-string.c (_dbus_string_move): just call
950 _dbus_string_move_len
951 (_dbus_string_move_len): add a special case for moving
952 an entire string into an empty string; we can just
953 swap the string data instead of doing any reallocs.
954 (_dbus_string_init_preallocated): new function
956 2003-05-11 Havoc Pennington <hp@pobox.com>
958 Write a "test-profile" that does echo client-server with threads;
959 profile reveals lock contention, memcpy/realloc of buffers, and
960 UTF-8 validation as hot spots. 20% of lock contention eliminated
961 with dbus_atomic_inc/dec implementation on x86. Much remaining
962 contention is global mempool locks for GList and DBusList.
964 * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
967 * dbus/dbus-connection.c (struct DBusConnection): use
968 dbus_atomic_t for the reference count
970 * dbus/dbus-message.c (struct DBusMessage): declare
971 dbus_atomic_t values as volatile
973 * configure.in: code to detect ability to use atomic integer
974 operations in assembly, from GLib patch
976 * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
977 time, tired of it being wrong in threads and forked processes
979 * glib/test-profile.c: a little program to bounce messages back
980 and forth between threads and eat CPU
982 * dbus/dbus-connection.c: add debug spew macros for debugging
983 thread locks; include config.h at top; fix deadlock in
984 dbus_connection_flush()
986 2003-05-08 Havoc Pennington <hp@pobox.com>
988 * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
989 data from getting written, and there wasn't a good reason to
992 * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
993 dbus_verbose lines in test coverage
994 (main): add list of functions sorted by # of untested blocks
995 to the coverage report
997 * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
999 * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
1001 * dbus/dbus-message-handler.c (_dbus_message_handler_test):
1002 extend test coverage
1004 * test/data/auth/cancel.auth-script: test canceling an
1007 * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
1008 aren't used. in CVS history if we end up needing them.
1010 2003-05-04 Havoc Pennington <hp@pobox.com>
1012 * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
1015 * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
1016 function, which assumed length was in # of strings, not bytes
1018 * dbus/dbus-message.c (_dbus_message_test): add tests for some
1021 * dbus/dbus-connection.c
1022 (_dbus_connection_queue_received_message): disable function for
1023 now, we are only using it in test mode
1025 * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
1026 remove a mistaken FIXME
1028 2003-05-04 Havoc Pennington <hp@pobox.com>
1030 * dbus/dbus-connection.c (dbus_connection_preallocate_send):
1031 unlock mutex on successful return, patch from Anders Gustafsson
1033 2003-05-04 Havoc Pennington <hp@pobox.com>
1035 * dbus-glib-1.pc.in (Requires): fix dependencies, from
1038 2003-05-04 Havoc Pennington <hp@pobox.com>
1040 * tools/dbus-launch.c: implement
1042 * bus/main.c (main), bus/bus.c (bus_context_new):
1043 implement --print-pid and --fork
1045 2003-05-03 Havoc Pennington <hp@redhat.com>
1047 * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
1048 the address had no value, and add to test suite. Fix and
1049 regression test from Miloslav Trmac
1051 2003-05-03 Havoc Pennington <hp@pobox.com>
1053 * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
1054 watch is invalid when handled
1056 * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
1057 dbus-launch utility to launch the bus from a shell script. Didn't
1058 actually implement dbus-launch yet, it's just a placeholder still.
1060 2003-05-03 Havoc Pennington <hp@pobox.com>
1062 * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
1063 daemon; also documents daemon config file, so replaces
1064 doc/config-file.txt. Corrected some stuff from config-file.txt in
1065 the process of moving it.
1067 2003-05-03 Havoc Pennington <hp@pobox.com>
1069 * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
1072 2003-05-03 Colin Walters <walters@verbum.org>
1074 * dbus/dbus-sysdeps.c (fill_user_info): Test against
1075 DBUS_UID_UNSET to determine whether to do a uid lookup or not.
1077 * Makefile.am: Update to use new .pc versioning scheme.
1079 2003-05-02 Havoc Pennington <hp@redhat.com>
1081 * bus/system.conf.in: allow send/receive to/from message bus
1084 2003-04-30 Havoc Pennington <hp@redhat.com>
1086 * configure.in: print a note when building with unit tests and
1089 2003-04-30 Havoc Pennington <hp@redhat.com>
1091 * Makefile.am: add a check-local that complains if you didn't
1092 configure with --enable-tests
1094 2003-04-29 Havoc Pennington <hp@redhat.com>
1096 * glib/dbus-gmain.c: docs cleanups
1098 * dbus/dbus-types.h: add docs on int64 types
1100 * dbus/dbus-memory.c: fix docs to avoid putting private API in
1101 public API docs section
1103 2003-04-29 Havoc Pennington <hp@redhat.com>
1105 * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
1106 dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
1107 parallel install API version, not with the D-BUS package version.
1109 * HACKING: move some of README over here
1111 * README: updates, and document API/ABI policy
1113 * configure.in: reindentation
1115 2003-04-29 Havoc Pennington <hp@redhat.com>
1117 * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
1118 to use this library" to be sure people have the right
1121 2003-04-28 Havoc Pennington <hp@redhat.com>
1123 * configure.in: add --enable-docs which by default is auto yes if
1124 doxygen and db2html found, no otherwise; but can be forced on/off
1126 * doc/Makefile.am: conditionalize whether to build docs on
1129 2003-04-28 Havoc Pennington <hp@redhat.com>
1131 * configure.in: 0.10
1135 * bus/system.conf.in: add <includedir>system.d</includedir>
1137 * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
1138 username was provided but not uid
1140 * bus/config-parser.c (struct BusConfigParser): keep track of
1141 whether the parser is toplevel or was included; change some
1142 of the error handling if it's included.
1144 2003-04-27 Havoc Pennington <hp@pobox.com>
1148 * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
1149 report correct status if we finish processing authentication
1150 inside this function.
1152 * bus/activation.c (try_send_activation_failure): use
1153 bus_transaction_send_error_reply
1155 * bus/connection.c (bus_connection_get_groups): return an error
1156 explaining the problem
1158 * bus/bus.c (bus_context_check_security_policy): implement
1159 restriction here that inactive connections can only send the
1160 hello message. Also, allow bus driver to send anything to
1163 * bus/connection.c (bus_connection_complete): create the
1164 BusClientPolicy here instead of on-demand.
1165 (bus_connection_get_policy): don't return an error
1167 * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
1168 sender field in message being replied to
1170 * bus/bus.c (bus_context_check_security_policy): fix silly typo
1171 causing it to return FALSE always
1173 * bus/policy.c (bus_client_policy_check_can_send): fix bug where
1174 we checked sender rather than destination
1176 2003-04-25 Havoc Pennington <hp@redhat.com>
1178 test suite is slightly hosed at the moment, will fix soon
1180 * bus/connection.c (bus_connections_expire_incomplete): fix to
1181 properly disable the timeout when required
1182 (bus_connection_set_name): check whether we can remove incomplete
1183 connections timeout after we complete each connection.
1185 * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
1186 probably still broken.
1188 * bus/services.c (bus_registry_acquire_service): implement max
1189 number of services owned, and honor allow/deny rules on which
1190 services a connection can own.
1192 * bus/connection.c (bus_connection_get_policy): report errors here
1194 * bus/activation.c: implement limit on number of pending
1197 2003-04-25 Havoc Pennington <hp@redhat.com>
1199 * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
1200 where we used >= 0 instead of != DBUS_UID_UNSET.
1202 2003-04-25 Havoc Pennington <hp@redhat.com>
1204 * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
1205 were toggled without add/remove, fix from Anders Gustafsson
1207 2003-04-24 Havoc Pennington <hp@redhat.com>
1209 * test/data/valid-config-files/basic.conf: add <limit> tags to
1212 * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
1213 <limit> tag in configuration file.
1215 2003-04-24 Havoc Pennington <hp@redhat.com>
1217 * bus/dispatch.c: somehow missed some name_is
1219 * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
1220 (_dbus_timeout_set_interval): new
1222 * bus/connection.c (bus_connections_setup_connection): record time
1223 when each connection is first set up, and expire them after the
1224 auth timeout passes.
1226 2003-04-24 Havoc Pennington <hp@redhat.com>
1228 * dbus/dbus-message.c (dbus_message_name_is): rename
1229 (dbus_message_service_is): rename
1230 (dbus_message_sender_is): rename
1231 (dbus_message_get_service): rename
1233 2003-04-24 Havoc Pennington <hp@redhat.com>
1235 * configure.in: add --enable-checks
1237 * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
1239 * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
1240 to use thread locks.
1241 (_dbus_connection_handler_destroyed_locked): move some private
1242 functions into proper docs group
1244 * dbus/dbus-internals.h: add _dbus_return_if_fail,
1245 _dbus_return_val_if_fail
1247 Throughout: use dbus_return_if_fail
1249 2003-04-23 James Willcox <jwillcox@gnome.org>
1252 * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
1253 (dbus_connection_setup_with_g_main),
1254 (dbus_server_setup_with_g_main):
1255 * glib/test-dbus-glib.c: (main):
1256 * glib/test-thread-client.c: (main):
1257 * glib/test-thread-server.c: (new_connection_callback), (main):
1258 * tools/dbus-monitor.c: (main):
1260 Added a GMainContext argument to dbus_connection_setup_with_g_main()
1261 and dbus_server_setup_with_g_main().
1263 2003-04-20 Havoc Pennington <hp@pobox.com>
1265 * doc/dbus-specification.sgml: document the restrictions on
1266 message and service names
1268 2003-04-22 Havoc Pennington <hp@redhat.com>
1270 * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
1271 support, and do some code cleanups to share more code and
1272 speed up array marshal/demarshal.
1274 * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
1276 * configure.in: generate dbus-arch-deps.h
1278 * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
1281 2003-04-22 Havoc Pennington <hp@redhat.com>
1283 * test/data/valid-messages/opposite-endian.message: fix test
1284 to use proper type for rply field
1286 * test/data/invalid-messages: add tests for below validation
1288 * dbus/dbus-message.c (decode_header_data): validate field types,
1289 and validate that named fields are valid names
1290 (decode_name_field): consider messages in the
1291 org.freedesktop.Local. namespace to be invalid.
1293 * dbus/dbus-string.c (_dbus_string_validate_name): new
1295 2003-04-19 Havoc Pennington <hp@pobox.com>
1297 * bus/driver.c (bus_driver_handle_hello): check limits and
1298 return an error if they are exceeded.
1300 * bus/connection.c: maintain separate lists of active and inactive
1301 connections, and a count of each. Maintain count of completed
1302 connections per user. Implement code to check connection limits.
1304 * dbus/dbus-list.c (_dbus_list_unlink): export
1306 * bus/bus.c (bus_context_check_security_policy): enforce a maximum
1307 number of bytes in the message queue for a connection
1309 2003-04-18 Havoc Pennington <hp@pobox.com>
1311 * dbus/dbus-auth.c (record_mechanisms): memleak fixes
1313 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
1316 * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
1317 on realloc be sure to update the pointer in the keyring
1319 * dbus/dbus-string.c (_dbus_string_zero): compensate for align
1320 offset to avoid writing to unallocated memory
1322 * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
1323 try the next mechanism, so we properly handle OOM
1325 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
1327 (_dbus_keyring_new): fix OOM bug
1328 (_dbus_keyring_new_homedir): always set error; impose a maximum
1329 number of keys we'll load from the file, mostly to speed up the
1330 test suite and make its OOM checks more useful, but also for
1333 * dbus/dbus-auth.c (process_error_server): reject authentication
1334 if we get an error from the client
1335 (process_cancel): on cancel, send REJECTED, per the spec
1336 (process_error_client): send CANCEL if we get an error from the
1339 2003-04-18 Havoc Pennington <hp@pobox.com>
1341 * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
1344 * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
1347 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
1348 about DBUS_TEST_HOMEDIR once
1350 * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
1353 * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
1354 config file so we test the right thing
1356 Throughout: assorted docs improvements
1358 2003-04-18 Havoc Pennington <hp@pobox.com>
1360 * glib/dbus-gmain.c: adapt to watch changes
1362 * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
1364 * dbus/dbus-server.h: remove dbus_server_handle_watch
1366 * dbus/dbus-connection.h: remove dbus_connection_handle_watch
1368 * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
1369 like DBusTimeout, so we don't need dbus_connection_handle_watch
1372 2003-04-17 Havoc Pennington <hp@redhat.com>
1374 * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
1375 database usage so it all goes via the DBusUserDatabase cache.
1377 2003-04-17 Havoc Pennington <hp@redhat.com>
1379 * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
1380 there was an OOM watch we skipped, we always return TRUE so we
1381 iterate again to have a look at it again. Fixes test suite hang.
1382 Code rearrangement also lets us lose some memset and only iterate
1383 over callbacks once.
1385 * bus/driver.c (bus_driver_handle_message): sense of test for
1388 2003-04-16 Havoc Pennington <hp@pobox.com>
1390 * doc/dbus-specification.sgml: make spec say serials are unsigned
1392 * dbus/dbus-message.h: change message serials to unsigned
1394 * dbus/dbus-connection.c: adapt to message serials being unsigned
1396 2003-04-15 Havoc Pennington <hp@pobox.com>
1398 * bus/bus.c: create and keep around a shared DBusUserDatabase
1401 * bus/connection.c (bus_connection_get_groups): don't cache
1402 groups for user in the connection object, since user database
1403 object now does that.
1405 2003-04-16 Havoc Pennington <hp@redhat.com>
1407 * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
1408 list of size counters
1409 (_dbus_message_loader_putback_message_link): put back a popped link
1411 * dbus/dbus-connection.c
1412 (dbus_connection_set_max_live_messages_size): rename
1414 (dbus_connection_get_outgoing_size): get size of outgoing
1416 (_dbus_connection_set_connection_counter): remove this cruft
1418 2003-04-14 Havoc Pennington <hp@redhat.com>
1420 * dbus/dbus-userdb.c: user database abstraction, mostly to get
1421 caching, but at some point we might want to be able to use a
1424 * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
1425 SHA1 conf file to test the sha1 auth mechanism, since the regular
1426 test always uses EXTERNAL when available.
1429 test/data/valid-config-files/debug-allow-all-sha1.conf.in:
1430 add conf file that requires use of sha1 auth
1432 2003-04-13 Havoc Pennington <hp@pobox.com>
1434 * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
1435 from Philip Blundell to send messages and monitor them.
1437 2003-04-13 Havoc Pennington <hp@pobox.com>
1439 * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
1442 * test/data/valid-config-files/debug-allow-all.conf.in: allow all
1445 * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
1446 fix to only recover unused bytes if we're already authenticated
1447 (_dbus_transport_get_is_authenticated): fix to still mark us
1448 authenticated if there are unused bytes.
1450 * bus/dispatch.c: implement security policy checking
1452 * bus/connection.c (bus_transaction_send_from_driver): new
1454 * bus/bus.c (bus_context_check_security_policy): new
1456 * bus/dispatch.c (send_service_nonexistent_error): delete this,
1457 now we just set the DBusError and it gets converted to an error
1460 * bus/connection.c (allow_user_function): enable code using actual
1461 data from the config file
1463 * bus/policy.c (list_allows_user): handle wildcard rules for
1464 user/group connection perms
1466 2003-04-13 Havoc Pennington <hp@pobox.com>
1468 * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
1470 * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
1472 * bus/policy.c (bus_policy_append_mandatory_rule)
1473 (bus_policy_append_default_rule, bus_policy_append_user_rule)
1474 (bus_policy_append_group_rule): new functions
1476 2003-04-12 Havoc Pennington <hp@pobox.com>
1478 * bus/config-parser.c (bus_config_parser_new): fix a memleak
1480 * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
1481 the pid/gid/uid, just for paranoia.
1483 * test/break-loader.c (randomly_do_n_things): find a byte
1484 containing a type code, and randomly change it to a different
1487 2003-04-12 Havoc Pennington <hp@pobox.com>
1489 * bus/policy.h: change BusPolicy to be the thing from the config
1490 file, and rename old BusPolicy to BusClientPolicy
1492 * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
1493 match change in how policy works
1495 * dbus/dbus-internals.h: mark assert_not_reached as
1496 __attribute((noreturn))__
1498 2003-04-11 Havoc Pennington <hp@redhat.com>
1500 * doc/dbus-specification.sgml: fix a spot with the wrong name for
1501 the broadcast service. Use boolean return for ServiceExists.
1503 2003-04-11 Havoc Pennington <hp@redhat.com>
1505 * configure.in: add another directory to look for qt in.
1507 2003-04-11 Havoc Pennington <hp@redhat.com>
1509 * AUTHORS: add Colin Walters
1511 2003-04-11 Havoc Pennington <hp@redhat.com>
1517 2003-04-11 Havoc Pennington <hp@redhat.com>
1519 * bus/messagebus.in: remove pid file when stopping the
1520 message bus, since the bus won't have privileges to remove it
1523 2003-04-11 Havoc Pennington <hp@redhat.com>
1525 * bus/bus.c (bus_context_new): move credentials change after
1528 2003-04-11 Havoc Pennington <hp@pobox.com>
1530 * test/decode-gcov.c: add "below average functions" to the
1531 coverage report, and change how some of the code works.
1533 * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
1534 not in the coverage stats.
1536 * test/test-service.c (main): use _dbus_verbose not fprintf in a
1537 couple places so running the test suite doesn't result in megaspam.
1539 2003-04-11 Havoc Pennington <hp@pobox.com>
1541 * bus/dispatch.c (check_existent_service_activation): accept a no
1542 memory error in a place we didn't before
1544 * bus/test.c (bus_test_run_everything): remove hacky "do it twice
1545 in case the first one failed," since the test suite is less
1548 2003-04-10 Havoc Pennington <hp@pobox.com>
1550 * bus/dispatch.c (check_segfault_service_activation): add test
1551 for launching an executable that just crashes.
1553 * test/test-segfault.c (main): try setting coredumpsize to 0 so we
1554 don't leave a million cores. We'll see how portable this is.
1556 2003-04-10 Havoc Pennington <hp@pobox.com>
1558 * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
1559 the possible parent failures before we fork, so that we don't
1560 fail to create a babysitter after creating the child.
1562 * bus/activation.c (bus_activation_activate_service): kill child
1563 if we don't successfully complete the activation.
1565 2003-04-10 Havoc Pennington <hp@redhat.com>
1567 * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
1568 the connection if it's disconnected
1570 * bus/activation.c (bus_activation_service_created): use new
1571 transaction features to roll back removal of pending activation if
1572 we don't successfully create the service after all. Don't remove
1573 pending activation if the function fails.
1575 * dbus/dbus-list.c (_dbus_list_insert_before_link)
1576 (_dbus_list_insert_after_link): new code to facilitate
1579 * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
1580 new functionality, so we can preallocate the ability to insert
1583 * bus/connection.c (bus_transaction_add_cancel_hook): new function
1584 allowing us to put custom hooks in a transaction to be used for
1585 cancelling said transaction
1587 * doc/dbus-specification.sgml: add some discussion of secondary
1588 service owners, and disallow zero-length service names
1590 * bus/services.c (bus_registry_acquire_service): new function,
1591 splits out part of bus_driver_handle_acquire_service() and fixes
1592 a bug where we didn't remove the service doing the acquiring
1593 from the secondary queue if we failed to remove the current owner
1594 from the front of the queue.
1596 2003-04-10 Alexander Larsson <alexl@redhat.com>
1598 * doc/dbus-specification.sgml:
1599 s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
1601 2003-04-10 Alexander Larsson <alexl@redhat.com>
1606 Added files to cvsignore
1608 * dbus/dbus-message.h:
1609 * dbus/dbus-message.c: (dbus_message_iter_get_named):
1610 Make get_named() take two out argument and return a boolean.
1611 (dbus_message_iter_get_args_valist):
1612 Update usage of get_named().
1613 (dbus_message_iter_append_byte):
1615 (dbus_message_iter_append_named)
1617 (message_iter_test), (check_message_handling_type), (_dbus_message_test):
1620 2003-04-10 Alexander Larsson <alexl@redhat.com>
1622 * dbus/dbus-marshal.[ch]:
1623 Add array_type_pos argument to _dbus_marshal_validate_arg.
1624 Let you pass a NULL end_pos to _dbus_marshal_validate_type.
1626 * dbus/dbus-message.[ch]:
1627 Multi-dimensional arrays have full type specification in the
1628 outermost array. Iter code re-arranged to handle this.
1629 Added some more iter tests.
1631 * doc/dbus-specification.sgml:
1634 Update new array encoding description.
1635 Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
1637 * test/data/invalid-messages/array-with-mixed-types.message:
1638 * test/data/valid-messages/array-of-array-of-uint32.message:
1639 Change to the new array format.
1641 * test/data/invalid-messages/too-short-dict.message:
1644 * test/data/valid-messages/recursive-types.message:
1645 Fix up and extend test.
1647 2003-04-10 Havoc Pennington <hp@pobox.com>
1649 * bus/dispatch.c: lots of fixes
1651 * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
1652 (_dbus_loop_iterate): remove old "quit if no callbacks" code,
1653 that was crack, broke the test service.
1655 * dbus/dbus-transport.c (_dbus_transport_open): fix error
1656 handling to avoid piling up errors if we get a failure on the
1659 * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
1660 pid in assertion failures.
1662 * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
1663 to some fixed size of file descriptor array. Don't return TRUE
1664 anytime a timeout exists, that led to lots of busy loop silliness
1667 2003-04-09 Havoc Pennington <hp@redhat.com>
1669 * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
1670 I'd checked this in earlier but hadn't.
1672 2003-04-09 Havoc Pennington <hp@redhat.com>
1674 * bus/dispatch.c (bus_dispatch_test): get a bit further through
1675 the activation test (man this is getting old!)
1677 2003-04-09 Havoc Pennington <hp@redhat.com>
1679 * test/test-utils.c: use dispatch status function to fix this up
1681 * bus/connection.c (connection_watch_callback): don't dispatch
1683 (connection_timeout_callback): don't dispatch from here
1684 (bus_connections_setup_connection): set the dispatch status function
1685 (bus_connection_disconnected): unset it
1687 * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
1688 used to add a connection to be dispatched
1689 (_dbus_loop_iterate): do the dispatching at the end of each
1692 * dbus/dbus-connection.c
1693 (dbus_connection_set_dispatch_status_function): new function
1694 allowing us to fix up main loop usage
1695 (_dbus_connection_last_unref): free all the various function
1697 (dbus_connection_dispatch): call the DispatchStatusFunction
1698 whenever this function returns
1699 (dbus_connection_handle_watch): call DispatchStatusFunction
1700 (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
1701 (reply_handler_timeout): call DispatchStatusFunction
1702 (dbus_connection_flush): call DispatchStatusFunction
1704 2003-04-09 Havoc Pennington <hp@redhat.com>
1706 * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
1709 * bus/dispatch.c (check_service_activated): fix bug in test
1711 * dbus/dbus-mainloop.c (check_timeout): fix this up
1713 * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
1714 verbose output so we can sort out output from different processes,
1715 e.g. in the activation case.
1717 2003-04-08 Colin Walters <walters@gnu.org>
1719 * bus/bus.c (struct BusContext) [pidfile]: New member, to store
1721 (bus_context_new): Set it.
1722 (bus_context_unref): Use it to delete the pid file.
1724 2003-04-08 Havoc Pennington <hp@redhat.com>
1726 * test/data/invalid-messages/array-with-mixed-types.message:
1727 regression test that fails for the moment
1729 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
1730 tests for convenience
1732 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
1733 array of nil, it broke things.
1735 * test/data/invalid-messages/array-of-nil.message: regression test
1737 * test/data/valid-messages/array-of-array-of-uint32.message:
1738 happened to write this so added it to suite
1740 2003-04-08 Havoc Pennington <hp@redhat.com>
1742 * bus/driver.c (bus_driver_handle_acquire_service): init
1743 retval/reply before checking name
1745 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
1746 recursion depth argument
1748 * dbus/dbus-message.h (struct DBusMessageIter): put some padding
1749 in the public struct for future extension
1751 * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
1754 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
1757 * doc/dbus-specification.sgml: fix typo
1759 2003-04-08 Alexander Larsson <alexl@redhat.com>
1761 Implemented recursive types, named types and new-style iters
1764 * glib/test-thread-client.c: (thread_func):
1765 * glib/test-thread-server.c: (handle_test_message):
1766 * test/test-service.c: (handle_echo):
1775 * dbus/dbus-internals.c: (_dbus_type_to_string):
1776 Update for new types.
1778 * dbus/dbus-marshal.[ch]:
1779 Implement recursive types and the new marshalling format.
1780 Remove hardcoded dict marshalling.
1781 Marshal named types.
1783 * dbus/dbus-message-builder.c:
1785 Remove references to old types
1787 * dbus/dbus-message.[ch]:
1788 New non-refcounted iter API that supports recursive iters.
1789 Use iters for appending, including support for recursive
1791 Add byte and named type support.
1792 Update everything to new marshalling formats.
1793 Add tests for new API.
1795 * dbus/dbus-protocol.h:
1796 Remove old array types.
1797 Add types: BYTE, ARRAY, DICT, NAMED
1799 * dbus/dbus-string.c:
1800 * dbus/dbus-sysdeps.c:
1801 Make parse_double locale safe.
1803 * dbus/dbus-test-main.c:
1809 * doc/dbus-specification.sgml:
1812 * test/data/incomplete-messages/missing-body.message:
1813 * test/data/invalid-messages/bad-boolean.message:
1814 * test/data/invalid-messages/bad-boolean-array.message:
1815 * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
1816 * test/data/invalid-messages/boolean-has-no-value.message-raw:
1817 * test/data/invalid-messages/too-short-dict.message:
1818 * test/data/valid-messages/dict-simple.message:
1819 * test/data/valid-messages/dict.message:
1820 * test/data/valid-messages/emptiness.message:
1821 * test/data/valid-messages/lots-of-arguments.message:
1822 * test/data/valid-messages/no-padding.message:
1823 * test/data/valid-messages/recursive-types.message:
1824 Add missing NAME fields
1825 Fix up dicts & arrays
1827 * test/data/invalid-messages/dict-with-nil-value.message:
1828 Removed, this is not invalid anymore.
1830 * test/data/valid-messages/recursive-types.message:
1831 Add new test for deeply recursive types.
1833 2003-04-07 Havoc Pennington <hp@pobox.com>
1835 * bus/driver.c (bus_driver_handle_acquire_service): return an
1836 error if you try to acquire a service that starts with ':'
1838 2003-04-07 Havoc Pennington <hp@redhat.com>
1840 * doc/dbus-specification.sgml: require that base service names
1841 start with ':' and that the base service is created/deleted
1842 as first and last things a connection does on the bus
1844 * bus/dispatch.c (check_existent_service_activation): lots more
1845 work on the activation test; it doesn't fully pass yet...
1847 * test/test-service.c (main): fix so we don't memleak the
1848 connection to the message bus
1849 (filter_func): accept a message asking us to exit
1851 2003-04-06 Havoc Pennington <hp@pobox.com>
1853 * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
1856 * configure.in: fixes to Qt detection from Colin Walters
1858 * doc/Makefile.am: Only remove generated docbook dirs if they
1859 exist, from Colin Walters
1861 * dbus/dbus-bus.c: change how we set well-known connections to
1862 NULL, so that it works if a single connection is stored in
1863 two well-known array slots.
1865 * test/Makefile.am: remove a lot of stuff that isn't immediately
1866 useful, it's in CVS history if we want it.
1868 * test/test-service.c: use dbus-mainloop instead of that
1871 2003-04-06 Havoc Pennington <hp@pobox.com>
1873 * dbus/Makefile.am: split lists of sources into stuff that goes in
1874 the library, util functions that go in the lib and are also used
1875 elsewhere, and util functions that are used in tests/daemon but
1876 don't go in the lib.
1878 * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
1879 here so it can be used in test binaries also
1881 2003-04-06 Havoc Pennington <hp@pobox.com>
1883 * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
1884 here in the parent process, so we can return an error if it
1885 fails. Also, move some of the code into the child so the parent
1886 is less hosed if we fail midway through.
1888 * bus/bus.c (bus_context_new): move pidfile detection further up
1889 in the function, before we start overwriting sockets and such.
1891 * bus/messagebus.in: adjust this a bit, not sure if it will work.
1893 * configure.in: add --with-system-pid-file and --with-system-socket
1895 2003-04-06 Colin Walters <walters@verbum.org>
1897 * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
1899 * bus/system.conf.in: Declare a pidfile.
1901 * bus/bus.c (bus_context_new): Test for an existing pid file, and
1902 create one (if appropriate).
1904 * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
1905 (struct BusConfigParser) [pidfile]: New.
1906 (element_type_to_name, merge_included, start_busconfig_child)
1907 (bus_config_parser_end_element, bus_config_parser_content): Handle it.
1908 (bus_config_parser_unref): Free it.
1909 (bus_config_parser_get_pidfile): New function.
1911 * bus/config-parser.h (_dbus_write_pid_file): Prototype.
1913 * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
1915 * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
1917 * dbus/dbus-sysdeps.h: Prototype it.
1919 2003-04-06 Havoc Pennington <hp@pobox.com>
1921 * bus/bus.c (bus_context_new): print the address in here, rather
1922 than in main(), because we need to do it before forking the daemon
1924 * bus/dispatch.c (send_service_nonexistent_error): set the sender
1925 on the service nonexistent error
1927 * bus/driver.c (bus_driver_handle_acquire_service): set the
1928 sender on the AcquireService reply
1930 * test/data/valid-config-files/debug-allow-all.conf.in: Make test
1931 server also listen on a UNIX socket so services can connect to it.
1933 2003-04-06 Havoc Pennington <hp@pobox.com>
1935 * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
1936 so it detects deadlocks and also we actually init threads when
1939 2003-04-06 Havoc Pennington <hp@pobox.com>
1941 * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
1942 save the domain socket name, and unlink it when we disconnect the
1943 server. Means that at least when we exit normally, we won't leave
1944 a bunch of junk in /tmp
1946 * dbus/dbus-transport-unix.c
1947 (_dbus_transport_new_for_domain_socket): code cleanup (nicer
1948 memory management). (I was making a real change here but then
1951 2003-04-06 Havoc Pennington <hp@pobox.com>
1953 * bus/bus.c (bus_context_new): fix wrong handling of
1954 server_data_slot_unref() in the error case.
1956 * dbus/dbus-internals.h (_dbus_assert): change so it passes
1957 "(condition) != 0" to _dbus_real_assert so that
1958 "_dbus_assert (pointer)" doesn't cause a warning
1960 * bus/main.c (main): accept --print-address option to print out
1961 the message bus address
1963 * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
1965 * dbus/dbus-transport.c (_dbus_transport_open): special error for
1966 "tmpdir" option to unix: address on client side
1968 * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
1971 * configure.in (TEST_SOCKET_DIR): locate a temporary directory
1972 we can use to create sockets in the test suite.
1974 * bus/main.c (signal_handler): on SIGTERM, exit the daemon
1975 cleanly. To be used for testing.
1977 * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
1979 * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
1981 * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
1982 handle trying to call this when there's no servers active
1984 2003-04-05 Havoc Pennington <hp@pobox.com>
1990 2003-04-05 Havoc Pennington <hp@pobox.com>
1992 * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
1993 crash on startup. Need to get "try starting the daemon"
1994 in the test suite I guess. ;-)
1996 * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
1997 tracked the number of open connections; it's better done in
1998 application-specific code as you want it to span all servers etc.
2000 2003-04-05 Havoc Pennington <hp@pobox.com>
2002 * bus/Makefile.am (install-data-hook): add missing DESTDIR,
2003 patch from Colin Walters
2005 2003-04-05 Havoc Pennington <hp@pobox.com>
2007 * doc/config-file.txt (Elements): fix docs of <auth> to reflect
2008 reality; in fact multiple mechanisms are allowed.
2010 * dbus/dbus-internals.c (_dbus_real_assert)
2011 (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
2012 _dbus_assert_not_reached() into functions, so that they don't show
2013 up in basic block counts for test coverage, and don't use up as
2014 much disk space. Does mean slower execution speed though, so
2015 assumes --disable-asserts is the normal production case.
2017 2003-04-05 Havoc Pennington <hp@pobox.com>
2019 * test/Makefile.am (dist-hook): also dist *.in files
2025 2003-04-05 Havoc Pennington <hp@pobox.com>
2027 * dbus/dbus-string.c: docs warning
2029 * dbus/dbus-spawn.c: missing docs
2031 * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
2033 2003-04-05 Havoc Pennington <hp@pobox.com>
2035 * bus/loop.c (bus_loop_iterate): fix the timeout code, using
2038 * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
2039 to -1 once we've reaped the babysitter
2040 (_dbus_babysitter_handle_watch): do as much work as we can, not
2043 * bus/activation.c: add code using DBusBabysitter so that we
2044 handle it when a service fails to start up properly.
2045 (bus_activation_service_created): don't remove the activation
2046 entries as we go, just let them get removed when we free the pending
2047 activation. Unref reply messages after sending them.
2049 2003-04-05 Havoc Pennington <hp@pobox.com>
2051 * test/decode-gcov.c (main): print per-directory stats in the report
2053 * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
2055 2003-04-05 Havoc Pennington <hp@pobox.com>
2057 * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
2059 * test/decode-gcov.c: hack up a little program to suck data
2060 out of gcov files. Yes this is sort of silly.
2062 * configure.in: define something in config.h and do an
2063 AM_CONDITIONAL when gcov is enabled
2065 2003-04-04 Havoc Pennington <hp@redhat.com>
2067 * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
2068 return a "babysitter" object that is used to monitor the status of
2069 the spawned process and reap it when required.
2071 * test/test-segfault.c, test/test-exit.c,
2072 test/test-sleep-forever.c: binaries that do various lame things,
2073 used in the test suite.
2075 * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
2077 2003-04-03 Havoc Pennington <hp@pobox.com>
2079 * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
2080 in preparation for modifying it, dbus-sysdeps is getting
2083 2003-04-03 Havoc Pennington <hp@redhat.com>
2085 * bus/loop.h, bus/loop.c: make the mainloop an object so we can
2088 * bus/*.[hc]: adapt to mainloop change
2090 2003-04-03 Havoc Pennington <hp@redhat.com>
2092 * bus/activation.c (load_directory): fix up memleaks
2093 (bus_activation_entry_free): free the entry
2095 * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
2096 we get one from the message bus; fix memleaks.
2098 * dbus/dbus-message.c (dbus_set_error_from_message): new function
2100 2003-04-03 Havoc Pennington <hp@pobox.com>
2102 * bus/config-parser.c (bus_config_parser_unref): free
2103 list of mechanisms, bug discovered by test suite enhancements
2104 (putting system.conf and session.conf into suite)
2106 * test/Makefile.am, test/test-service.c: add placeholder for a
2107 test service that we'll activate as part of test suite. Doesn't
2110 * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
2111 setting NULL value, and use system malloc not dbus_malloc()
2112 when we have unavoidable memleakage.
2114 * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
2115 didn't work, and support DBUS_BUS_ACTIVATION.
2117 * bus/activation.c (child_setup): pass our well-known bus type to
2120 * bus/config-parser.c: support <type> to specify well-known type
2122 * doc/dbus-specification.sgml: document the env variables to
2123 locate well-known buses and find service activator
2125 2003-04-02 Havoc Pennington <hp@redhat.com>
2127 * test/Makefile.am (all-local): add a rule to copy tests to
2128 builddir, so we can have generated tests. Use this to remove the
2129 silly hack for testing system.conf and session.conf. Will use this
2130 shortly to generate .service files pointing to test binaries.
2132 2003-04-02 Havoc Pennington <hp@redhat.com>
2134 * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
2135 current alloc and needed new length, not max of the doubled
2136 allocation and needed new length. Also, when building tests,
2137 don't do the double-allocation stuff, just realloc every time.
2139 2003-04-02 Havoc Pennington <hp@redhat.com>
2141 * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
2143 (_dbus_string_get_dirname): new
2144 (_dbus_sysdeps_test): new
2145 (_dbus_directory_open): include dirnames in error messages
2147 * bus/config-parser.c: interpret <include> and <includedir> and
2148 <servicedir> relative to config file location if the given
2149 filename is not absolute.
2151 * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
2153 2003-04-02 Havoc Pennington <hp@redhat.com>
2155 * bus/connection.c (bus_transaction_send_error_reply): set sender
2156 service for the error, and unref the reply on success
2158 * bus/activation.c: convert to use BusTransaction so OOM can be
2160 (bus_activation_service_created): set sender of the message
2162 2003-04-01 Havoc Pennington <hp@redhat.com>
2164 * bus/config-parser.c, bus/bus.c: implement <servicedir> and
2165 <includedir> (at least mostly)
2167 * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
2168 first, then the user ID
2170 2003-04-01 Havoc Pennington <hp@pobox.com>
2172 * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
2175 * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
2177 * dbus/dbus-internals.c (_dbus_dup_string_array): new function
2179 * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
2180 socket 0777, and unlink any existing socket.
2182 * bus/bus.c (bus_context_new): change our UID/GID and fork if
2183 the configuration file so specifies; set up auth mechanism
2186 * bus/config-parser.c (bus_config_parser_content): add support
2187 for <fork> option and fill in code for <auth>
2189 * bus/system.conf.in: add <fork/> to default configuration,
2190 and limit auth mechanisms to EXTERNAL
2192 * doc/config-file.txt (Elements): add <fork>
2194 * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
2195 (_dbus_change_identity): new function
2197 2003-03-31 Havoc Pennington <hp@redhat.com>
2199 * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
2200 (_dbus_listen_unix_socket): fix off-by-one error in null
2201 termination spotted by Nalin
2203 2003-03-31 Havoc Pennington <hp@redhat.com>
2205 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
2206 DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
2207 having a real home directory available.
2209 2003-03-31 Havoc Pennington <hp@redhat.com>
2211 * bus/Makefile.am (install-data-hook): create /var/run/dbus
2213 * bus/messagebus.in: add init script for Red Hat /etc/init.d
2215 * configure.in: add support for specifying a style of init script
2218 2003-03-31 Havoc Pennington <hp@redhat.com>
2220 Fix some annoying DBusString API and fix all affected code.
2222 * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
2224 (_dbus_string_get_data): change to return string instead of using
2226 (_dbus_string_get_const_data): ditto
2227 (_dbus_string_get_data_len): ditto
2228 (_dbus_string_get_const_data_len): ditto
2230 2003-03-31 Havoc Pennington <hp@redhat.com>
2232 * bus/main.c (main): fix up the command line arguments to be nicer
2234 2003-03-31 Havoc Pennington <hp@redhat.com>
2236 * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
2237 define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
2238 final location that lands in the config file
2240 * bus/config-loader-expat.c (bus_config_load): fix type of
2243 * doc/TODO: remove TODO item for dbus_bus_get()
2245 * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
2247 2003-03-31 Havoc Pennington <hp@pobox.com>
2249 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
2250 (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
2251 argument since they are always client side
2253 * dbus/dbus-server.c (dbus_server_get_address): new function
2255 * bus/main.c (main): take the configuration file as an argument.
2257 * test/data/valid-config-files/debug-allow-all.conf: new file to
2258 use with dispatch.c tests for example
2260 * bus/test-main.c (main): require test data dir
2262 * bus/bus.c (bus_context_new): change this to take a
2263 configuration file name as argument
2265 * doc/config-file.txt (Elements): add <servicedir>
2267 * bus/system.conf, bus/session.conf: new files
2269 * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
2270 well-known socket if none set
2272 * configure.in: create system.conf and session.conf
2274 2003-03-30 Havoc Pennington <hp@pobox.com>
2276 * bus/config-parser.c: hacking
2278 * dbus/dbus-memory.c: don't use DBusList for the list of stuff
2279 to shut down, since it could cause weirdness with the DBusList
2282 * dbus/dbus-list.c (_dbus_list_test): add tests for the
2283 link-oriented stack routines
2284 (alloc_link): free the mempool if the first alloc from it fails
2286 * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
2288 * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
2290 (_dbus_string_skip_white): new
2292 * doc/config-file.txt (Elements): add <includedir>
2294 2003-03-28 Havoc Pennington <hp@pobox.com>
2296 * dbus/dbus-string.c (_dbus_string_copy_data_len)
2297 (_dbus_string_copy_data): new functions
2299 2003-03-28 Anders Carlsson <andersca@codefactory.se>
2301 * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
2305 * dbus/dbus-memory.c:
2308 2003-03-28 Havoc Pennington <hp@pobox.com>
2310 * bus/test.c (bus_test_flush_bus): remove the sleep from here,
2311 I think it may have just been superstition. Not sure.
2313 * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
2314 failures that were not being handled.
2316 * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
2318 * dbus/dbus-memory.c: add ability to set number of mallocs in a
2319 row that will fail on out-of-memory.
2321 * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
2322 function for testing out-of-memory handling.
2324 * bus/config-loader-expat.c (memsuite): don't wrap the dbus
2325 allocation functions, they do map exactly to the expat ones.
2327 2003-03-27 Havoc Pennington <hp@redhat.com>
2329 * bus/config-loader-libxml.c (bus_config_load): add another error
2332 2003-03-26 Anders Carlsson <andersca@codefactory.se>
2335 Add note about automatic service activation.
2337 * doc/dbus-specification.sgml:
2338 Rename the specification and clarify a few things.
2340 2003-03-26 Anders Carlsson <andersca@codefactory.se>
2343 * dbus/dbus-address.c:
2345 * dbus/dbus-marshal.c:
2346 * dbus/dbus-server-debug-pipe.c:
2347 * dbus/dbus-transport-unix.c:
2348 Fix documentation warnings.
2350 2003-03-26 Havoc Pennington <hp@pobox.com>
2352 * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
2353 after every test so it's quick and easy to see which leaked, and
2354 so we test multiple dbus_shutdown() calls
2356 * configure.in: change configure.in XML stuff to also support
2359 * config-loader-libxml.c: some hacking
2361 * config-loader-expat.c: some hacking
2363 * config-parser.c: some hacking, plus tests
2365 2003-03-25 Havoc Pennington <hp@redhat.com>
2367 * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
2369 * configure.in: add --with-xml option to specify XML library,
2370 right now only libxml is supported.
2372 * bus/config-loader-libxml.c, config-parser.c: sync some minor
2373 nonworking code between home and work, still just stubs
2375 2003-03-24 Havoc Pennington <hp@redhat.com>
2377 * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
2380 * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
2381 NULL argument for "message" if the error is a well-known one,
2382 fill in a generic message in this case.
2384 * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
2387 * bus/test.c (bus_test_flush_bus): add
2389 * bus/policy.c (bus_policy_test): test code stub
2391 2003-03-24 Havoc Pennington <hp@pobox.com>
2393 * bus/connection.c (bus_connections_setup_connection): set up
2394 the "can this user connect" function, but it always returns
2395 TRUE until we have a config file parser so we can have a config
2396 file that allows connections.
2398 2003-03-23 Havoc Pennington <hp@pobox.com>
2400 * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
2401 DBUS_BUILD_TESTS, actually alloc/free a block of memory for
2402 the mutex, so we can check for proper memory management
2405 * dbus/dbus-dataslot.c: remove the mutex from
2406 DBusDataSlotAllocator and lock it manually when using it,
2407 to simplify fitting it into the global slots framework.
2409 * dbus/dbus-threads.c (init_static_locks): rework how we're
2410 handling global locks so they are easily shut down.
2412 * bus/policy.c (bus_policy_append_rule): fix
2414 * bus/test-main.c (main): check for memleaks
2416 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
2417 test suite check for memleaks
2419 * dbus/dbus-memory.c: add support in test mode for tracking
2420 number of outstanding blocks
2422 2003-03-23 Havoc Pennington <hp@pobox.com>
2424 * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
2427 * dbus/dbus-hash.h: add ULONG hash keys
2429 * dbus/dbus-sysdeps.c (_dbus_get_groups): new
2430 (_dbus_get_group_id): new function
2432 2003-03-20 Havoc Pennington <hp@redhat.com>
2434 * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
2436 (dbus_connection_get_unix_user): new function
2438 2003-03-20 Havoc Pennington <hp@pobox.com>
2440 * bus/connection.c (bus_connection_send_oom_error): assert that
2441 message has a sender
2442 (connection_execute_transaction): ditto
2443 (bus_connection_preallocate_oom_error): fix to set the sender, and
2444 set recipient to the destination service, not the bus driver
2446 * bus/policy.c: hacking
2448 * dbus/dbus-message.c (dbus_message_service_is): new function
2449 (dbus_message_sender_is): new
2451 2003-03-19 Havoc Pennington <hp@redhat.com>
2453 * bus/policy.c: start sketching code for policy restrictions on
2454 what connections can do.
2456 2003-03-18 Havoc Pennington <hp@redhat.com>
2458 * doc/TODO: some notes on high-level todo items. Little nitpick
2459 stuff is all in @todo, so no need to add it here.
2461 * doc/config-file.txt: some notes on how config file might look
2463 2003-03-18 Anders Carlsson <andersca@codefactory.se>
2469 2003-03-17 Havoc Pennington <hp@redhat.com>
2471 * dbus/dbus-internals.h: add gcc attributes so that
2472 our printf-style functions warn on bad arguments to
2475 * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
2478 * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
2481 2003-03-17 Havoc Pennington <hp@redhat.com>
2483 * bus/test-main.c (main): make it print something as it runs
2484 so make check doesn't look stuck
2486 * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
2487 from CVS, now obsolete
2489 2003-03-17 Anders Carlsson <andersca@codefactory.se>
2491 * bus/dispatch.c: (bus_dispatch):
2492 Refetch the service name since it may have been reallocated
2493 when dbus_message_set_sender was called.
2495 * dbus/dbus-sysdeps.c: (_dbus_accept):
2496 Add address and address length variables and use them to stop
2497 valgrind from complaining.
2499 2003-03-17 Havoc Pennington <hp@pobox.com>
2501 All tests pass, no memleaks, no valgrind complaints.
2503 * bus/test.c: refcount handler_slot
2505 * bus/connection.c (bus_connections_new): refcount
2506 connection_data_slot
2508 * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
2509 bytes so that auth scripts pass.
2511 * bus/dispatch.c: init message_handler_slot so it gets allocated
2514 * bus/dispatch.c (message_handler_slot_ref): fix memleak
2516 * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
2517 dealloc server_pipe_hash when no longer used for benefit of
2520 * dbus/dbus-auth.c (process_command): memleak fix
2522 * bus/dispatch.c (check_hello_message): memleak fix
2524 2003-03-16 Havoc Pennington <hp@pobox.com>
2526 * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
2528 2003-03-17 Anders Carlsson <andersca@codefactory.se>
2530 * bus/activation.c (bus_activation_activate_service): Append
2531 the pending activation entry to the list of pending activations.
2533 2003-03-16 Havoc Pennington <hp@pobox.com>
2535 * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
2538 * dbus/dbus-address.c (create_entry): fix OOM handling when
2539 failing to alloc entry->method
2541 2003-03-16 Havoc Pennington <hp@pobox.com>
2543 * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
2546 * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
2547 add some missing dbus_set_result
2549 * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
2550 alloc the DBusMessageHandler
2552 * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
2553 the transport here, since we call this from the finalizer; it
2554 resulted in a double-finalize.
2556 * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
2557 where we tried to use transport->connection that was NULL,
2558 happened when transport was disconnected early on due to OOM
2560 * bus/*.c: adapt to handle OOM for watches/timeouts
2562 * dbus/dbus-transport-unix.c: port to handle OOM during
2565 * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
2566 reference to unused bytes instead of a copy
2568 * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
2571 * dbus/dbus-connection.c (dbus_connection_handle_watch): return
2574 * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
2577 2003-03-16 Anders Carlsson <andersca@codefactory.se>
2579 * doc/dbus-specification.sgml:
2580 Document reply message for ActivateService.
2582 2003-03-16 Anders Carlsson <andersca@codefactory.se>
2584 * bus/activation.c: (bus_pending_activation_entry_free),
2585 (bus_pending_activation_free), (bus_activation_new),
2586 (bus_activation_unref), (bus_activation_service_created),
2587 (bus_activation_activate_service):
2589 * bus/bus.c: (bus_context_new):
2590 * bus/desktop-file.c: (new_section):
2591 * bus/driver.c: (bus_driver_send_service_deleted),
2592 (bus_driver_handle_activate_service):
2593 * bus/services.c: (bus_registry_new), (bus_registry_ensure):
2595 * dbus/dbus-connection.c:
2596 (dbus_connection_send_with_reply_and_block):
2597 * dbus/dbus-message.c: (dbus_message_append_args_valist):
2598 * dbus/dbus-protocol.h:
2599 Make activation work better. Now pending activations will be queued
2600 and the daemon won't try to activate services that are already registered.
2602 2003-03-16 Havoc Pennington <hp@pobox.com>
2604 * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
2607 * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
2608 DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
2610 2003-03-16 Havoc Pennington <hp@pobox.com>
2612 * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
2613 this. always run the test suite before commit...
2615 * bus/*: adapt to DBusConnection API changes
2617 * glib/dbus-gmain.c: adapt to DBusConnection API changes,
2618 requires renaming stuff to avoid dbus_connection_dispatch name
2621 * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
2624 * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
2625 separate from _dbus_message_loader_return_buffer()
2627 * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
2628 this, because it's now always broken to use; the number of
2629 messages in queue vs. the number still buffered by the message
2630 loader is undefined/meaningless. Should use
2631 dbus_connection_get_dispatch_state().
2632 (dbus_connection_dispatch): rename from
2633 dbus_connection_dispatch_message
2635 2003-03-16 Havoc Pennington <hp@pobox.com>
2637 * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
2640 2003-03-16 Anders Carlsson <andersca@codefactory.se>
2642 * dbus/dbus-connection.c:
2643 (dbus_connection_send_with_reply_and_block):
2644 Decrease connection->n_incoming when removing an entry
2646 * dbus/dbus-dict.c: (dbus_dict_entry_free),
2647 (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
2648 (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
2649 (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
2650 (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
2651 (dbus_dict_get_byte_array):
2652 Handle NULL arrays and strings. Also add support for byte arrays.
2654 * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
2655 (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
2656 (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
2657 (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
2658 (_dbus_demarshal_dict), (demarshal_and_validate_len),
2659 (_dbus_marshal_validate_arg), (_dbus_marshal_test):
2660 * dbus/dbus-marshal.h:
2661 Add support for marshalling and demarshalling empty arrays and strings.
2663 * dbus/dbus-message.c: (dbus_message_append_args_valist),
2664 (dbus_message_append_string_array),
2665 (dbus_message_iter_get_boolean),
2666 (dbus_message_iter_get_boolean_array),
2667 (dbus_message_iter_get_int32_array),
2668 (dbus_message_iter_get_uint32_array),
2669 (dbus_message_iter_get_double_array),
2670 (dbus_message_iter_get_byte_array),
2671 (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
2672 (check_message_handling):
2673 Add support for getting empty arrays and dicts.
2675 * dbus/dbus-string.c: (_dbus_string_validate_utf8):
2676 Don't do any validation at all for now, that's better than just checking
2679 * test/data/valid-messages/emptiness.message:
2680 New test message with lots of empty arrays.
2682 2003-03-16 Havoc Pennington <hp@pobox.com>
2684 * dbus/dbus-connection.c
2685 (_dbus_connection_queue_received_message_link): new function that
2686 can't fail due to OOM
2688 * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
2689 new function pops a message together with a list link
2692 * dbus/dbus-transport-unix.c (queue_messages): use new link-based
2693 message queuing functions to avoid needing to alloc memory
2695 2003-03-16 Havoc Pennington <hp@pobox.com>
2697 Oops - test code was only testing failure of around 30 of the
2698 mallocs in the test path, but it turns out there are 500+
2699 mallocs. I believe this was due to misguided linking setup such
2700 that there was one copy of dbus_malloc etc. in the daemon and one
2701 in the shared lib, and only daemon mallocs were tested. In any
2702 case, the test case now tests all 500+ mallocs, and doesn't pass
2703 yet, though there are lots of fixes in this patch.
2705 * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
2706 this so that it doesn't need to allocate memory, since it
2707 has no way of indicating failure due to OOM (and would be
2708 annoying if it did).
2710 * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
2712 * bus/Makefile.am: rearrange to create two self-contained
2713 libraries, to avoid having libraries with overlapping symbols.
2714 that was resulting in weirdness, e.g. I'm pretty sure there
2715 were two copies of global static variables.
2717 * dbus/dbus-internals.c: move the malloc debug stuff to
2720 * dbus/dbus-list.c (free_link): free list mempool if it becomes
2723 * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
2725 * dbus/dbus-address.c (dbus_parse_address): free list nodes
2728 * bus/dispatch.c (bus_dispatch_add_connection): free
2729 message_handler_slot when no longer using it, so
2730 memory leak checkers are happy for the test suite.
2732 * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
2734 * bus/bus.c (new_connection_callback): disconnect in here if
2735 bus_connections_setup_connection fails.
2737 * bus/connection.c (bus_connections_unref): fix to free the
2739 (bus_connections_setup_connection): if this fails, don't
2740 disconnect the connection, just be sure there are no side
2743 * dbus/dbus-string.c (undo_alignment): unbreak this
2745 * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
2747 (_dbus_auth_new): fix the order in which we free strings
2750 * bus/connection.c (bus_connection_disconnected): fix to
2751 not send ServiceDeleted multiple times in case of memory
2754 * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
2755 get the base service name
2756 (dbus_bus_register_client): don't return base service name,
2757 instead store it on the DBusConnection and have an accessor
2759 (dbus_bus_register_client): rename dbus_bus_register()
2761 * bus/dispatch.c (check_hello_message): verify that other
2762 connections on the bus also got the correct results, not
2763 just the one sending hello
2765 2003-03-15 Havoc Pennington <hp@pobox.com>
2767 Make it pass the Hello handling test including all OOM codepaths.
2768 Now to do other messages...
2770 * bus/services.c (bus_service_remove_owner): fix crash when
2771 removing owner from an empty list of owners
2772 (bus_registry_ensure): don't leave service in the list of
2773 a connection's owned services if we fail to put the service
2776 * bus/connection.c (bus_connection_preallocate_oom_error): set
2777 error flag on the OOM error.
2779 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
2780 handle _dbus_transport_set_connection failure
2782 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
2783 to create watches up front and simply enable/disable them as
2785 (unix_connection_set): this can now fail on OOM
2787 * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
2788 of enabling/disabling a watch or timeout.
2790 * bus/loop.c (bus_loop_iterate): don't touch disabled
2793 * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
2795 2003-03-15 Havoc Pennington <hp@pobox.com>
2797 * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
2798 write useful test code, after all that futzing around ;-)
2800 Test does not yet pass because we can't handle OOM in
2801 _dbus_transport_messages_pending (basically,
2802 dbus_connection_preallocate_send() does not prealloc the write
2803 watch). To fix this, I think we need to add new stuff to
2804 set_watch_functions, namely a SetEnabled function so we can alloc
2805 the watch earlier, then enable it later.
2807 * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
2808 dbus-memory.c to the convenience lib
2810 * bus/test.c: rename some static functions to keep them clearly
2811 distinct from stuff in connection.c. Handle client disconnection.
2813 2003-03-14 Havoc Pennington <hp@pobox.com>
2815 * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
2816 transport, tests more of the real codepath. Set up clients
2817 with bus_setup_debug_client.
2819 * bus/test.c (bus_setup_debug_client): function to set up debug
2820 "clients" on the main loop
2822 * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
2825 * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
2828 * dbus/dbus-server-debug.c: support a debug server based on pipes
2830 * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
2831 (_dbus_close): new function
2833 * configure.in: check for socketpair
2835 2003-03-14 Havoc Pennington <hp@redhat.com>
2837 * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
2840 * dbus/dbus-transport-debug.c: rework this a good bit to be
2841 less complicated. hopefully still works.
2843 * dbus/dbus-server-debug.c (handle_new_client): remove timeout
2846 * glib/dbus-gmain.c (timeout_handler): don't remove timeout
2849 * dbus/dbus-message.c (dbus_message_copy): rename from
2850 dbus_message_new_from_message, fix it up to copy
2851 all the message fields, add test case
2853 * bus/dispatch.c (bus_dispatch_test): add some more test code,
2854 not quite passing yet
2856 2003-03-14 Havoc Pennington <hp@pobox.com>
2858 * bus/loop.c (bus_loop_iterate): add this so we can "run loop
2859 until no work remains" in test code. (the large diff here
2860 is just code movement, no actual changes)
2862 * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
2863 1, no point waiting around for test code.
2864 (_dbus_server_debug_accept_transport): unref the timeout
2865 after adding it (right?)
2867 * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
2869 2003-03-13 Havoc Pennington <hp@redhat.com>
2871 * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
2874 * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
2877 * dbus/dbus-connection.h: Make AddWatchFunction and
2878 AddTimeoutFunction return a bool so they can fail on out-of-memory
2880 * bus/bus.c (bus_context_new): set up timeout handlers
2882 * bus/connection.c (bus_connections_setup_connection): set up
2885 * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
2888 * bus/bus.c (bus_context_new): adapt to changes
2890 * bus/connection.c: adapt to changes
2892 * test/watch.c: adapt to DBusWatch changes
2894 * bus/dispatch.c (bus_dispatch_test): started adding this but
2897 2003-03-14 Anders Carlsson <andersca@codefactory.se>
2899 * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
2901 2003-03-13 Havoc Pennington <hp@pobox.com>
2903 * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
2904 set up a test framework as for the library
2906 2003-03-12 Havoc Pennington <hp@pobox.com>
2908 Throughout: purge global variables, introduce BusActivation,
2909 BusConnections, BusRegistry, etc. objects instead.
2911 * bus/bus.h, bus/bus.c: introduce BusContext as a global
2914 * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
2915 going to redo this a bit differently I think
2917 2003-03-12 Havoc Pennington <hp@redhat.com>
2919 Mega-patch that gets the message bus daemon initially handling
2920 out-of-memory. Work still needed. Also lots of random
2921 moving stuff to DBusError instead of ResultCode.
2923 * dbus/dbus-list.c (_dbus_list_length_is_one): new function
2925 * dbus/dbus-connection.c
2926 (dbus_connection_send_with_reply_and_block): use DBusError
2928 * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
2931 * dbus/dbus-connection.c (dbus_connection_send): drop the result
2932 code here, as the only failure possible is OOM.
2934 * bus/connection.c (bus_connection_disconnect):
2935 rename bus_connection_disconnected as it's a notification only
2937 * bus/driver.c (bus_driver_handle_acquire_service): don't free
2938 "name" on get_args failure, should be done by get_args;
2939 don't disconnect client for bad args, just return an error.
2940 (bus_driver_handle_service_exists): ditto
2942 * bus/services.c (bus_services_list): NULL-terminate returned array
2944 * bus/driver.c (bus_driver_send_service_lost)
2945 (bus_driver_send_service_acquired): send messages from driver to a
2946 specific client to the client's unique name, not to the broadcast
2949 * dbus/dbus-message.c (decode_header_data): reject messages that
2950 contain no name field
2951 (_dbus_message_get_client_serial): rename to
2952 dbus_message_get_serial and make public
2953 (_dbus_message_set_serial): rename from set_client_serial
2954 (_dbus_message_set_reply_serial): make public
2955 (_dbus_message_get_reply_serial): make public
2957 * bus/connection.c (bus_connection_foreach): allow stopping
2958 iteration by returning FALSE from foreach function.
2960 * dbus/dbus-connection.c (dbus_connection_send_preallocated)
2961 (dbus_connection_free_preallocated_send)
2962 (dbus_connection_preallocate_send): new API for sending a message
2963 without possibility of malloc failure.
2964 (dbus_connection_send_message): rename to just
2965 dbus_connection_send (and same for whole function family)
2967 * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
2969 * dbus/dbus-sysdeps.c (_dbus_exit): new function
2971 * bus/activation.c: handle/return errors
2973 * dbus/dbus-errors.h: add more DBUS_ERROR #define
2975 * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
2976 (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
2977 (_dbus_result_from_errno): move to this file
2979 2003-03-10 Anders Carlsson <andersca@codefactory.se>
2981 * dbus/dbus-marshal.c:
2982 (_dbus_marshal_set_string):
2983 Take a length argument so we can marshal the correct string
2986 (_dbus_marshal_dict), (_dbus_demarshal_dict),
2987 (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
2988 (_dbus_marshal_test):
2989 * dbus/dbus-marshal.h:
2990 Add support for marshalling and demarshalling dicts.
2992 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
2993 Add support for TYPE DICT.
2995 * dbus/dbus-message.c: (set_string_field):
2996 Adjust header padding.
2998 (dbus_message_append_args_valist), (dbus_message_append_dict),
2999 (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
3000 (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
3001 (check_message_handling), (check_have_valid_message):
3002 * dbus/dbus-message.h:
3003 Add functions for setting and getting dicts.
3005 * dbus/dbus-protocol.h:
3011 * doc/dbus-specification.sgml:
3012 Add information about how dicts are marshalled.
3014 * test/data/invalid-messages/dict-with-nil-value.message:
3015 * test/data/invalid-messages/too-short-dict.message:
3016 * test/data/valid-messages/dict-simple.message:
3017 * test/data/valid-messages/dict.message:
3018 Add sample messages containing dicts.
3020 2003-03-08 Anders Carlsson <andersca@codefactory.se>
3022 * dbus/dbus-dict.h: Add DBUS_END_DECLS.
3024 2003-03-07 Anders Carlsson <andersca@codefactory.se>
3027 * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
3028 (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
3029 (dbus_dict_set_int32), (dbus_dict_set_uint32),
3030 (dbus_dict_set_double), (dbus_dict_set_string),
3031 (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
3032 (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
3033 (dbus_dict_set_string_array), (_dbus_dict_test):
3035 Fix according to comments from Havoc.
3037 2003-03-06 Michael Meeks <michael@server.home>
3039 * configure.in: if we don't have kde-config, disable have_qt.
3041 2003-03-07 Anders Carlsson <andersca@codefactory.se>
3046 * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
3047 (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
3048 (dbus_dict_remove), (dbus_dict_get_value_type),
3049 (dbus_dict_get_keys), (dbus_dict_put_boolean),
3050 (dbus_dict_put_int32), (dbus_dict_put_uint32),
3051 (dbus_dict_put_double), (dbus_dict_put_string),
3052 (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
3053 (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
3054 (dbus_dict_put_string_array), (dbus_dict_get_boolean),
3055 (dbus_dict_get_int32), (dbus_dict_get_uint32),
3056 (dbus_dict_get_double), (dbus_dict_get_string),
3057 (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
3058 (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
3059 (dbus_dict_get_string_array), (_dbus_dict_test):
3061 Add DBusDict implementation
3063 * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
3067 2003-03-04 Havoc Pennington <hp@pobox.com>
3069 * test/data/auth/*: adapt to changes
3071 * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
3072 USERID_BASE64 and change USERNAME_BASE64 to put in username not
3075 * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
3076 more stuff from being in a context name, to make the protocol
3077 simpler to deal with
3079 * dbus/dbus-errors.c (dbus_error_has_name): new function
3080 (dbus_error_is_set): new function
3082 * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
3083 with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
3085 * dbus/dbus-connection.c (dbus_connection_flush): also read
3086 messages during a flush operation
3088 * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
3090 2003-03-05 Anders Carlsson <andersca@codefactory.se>
3092 * configure.in: Check for gethostbyname on Solaris.
3094 * dbus/dbus-transport.c: (_dbus_transport_open):
3095 Remove duplicate "tcp" entry.
3097 * doc/dbus-specification.sgml:
3098 Clarify some things.
3100 2003-03-05 Anders Carlsson <andersca@codefactory.se>
3102 * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
3103 * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
3104 (_dbus_keyring_test):
3105 * dbus/dbus-md5.c: (_dbus_md5_compute):
3106 * dbus/dbus-sha.c: (_dbus_sha_compute):
3109 2003-03-05 Anders Carlsson <andersca@codefactory.se>
3111 * README: Add some things.
3113 2003-03-04 Anders Carlsson <andersca@codefactory.se>
3115 * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
3116 after case DBUS_TYPE_BOOELAN.
3118 2003-03-02 Havoc Pennington <hp@pobox.com>
3120 * test/break-loader.c (randomly_set_extreme_ints): add test that
3121 sets really huge and small integers
3123 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
3124 that length of boolean array fits in the string, and that
3125 string has room for boolean value in single-bool case.
3127 * dbus/dbus-message-builder.c (_dbus_message_data_load): add
3128 optional value to "ALIGN" command which is what to fill the
3131 * test/data/valid-messages/no-padding.message: add regression
3132 test for the message padding problem
3134 2003-03-02 Havoc Pennington <hp@pobox.com>
3136 * dbus/dbus-message.c (decode_header_data): fix to always init
3137 message_padding, from Benjamin Dauvergne
3139 2003-03-02 Havoc Pennington <hp@pobox.com>
3145 2003-03-01 Joe Shaw <joe@assbarn.com>
3147 * configure.in: Check for "struct cmsgcred" and try to access its
3148 members for BSD-like unices.
3150 * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
3151 _dbus_read_credentials_unix_socket().
3152 (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
3153 read() for reading the credential byte off the unix socket. Use
3154 struct cmsgcred on systems that support it.
3156 2003-02-27 Alexander Larsson <alexl@redhat.com>
3160 Make gthreads-2.0 dependency optional. Don't build thread test if
3163 2003-02-27 Havoc Pennington <hp@pobox.com>
3165 * dbus/dbus-connection.c
3166 (dbus_connection_send_message_with_reply_and_block): fix doh!
3167 doh! doh! bug that resulted in never removing a reply from the
3168 queue, no wonder we called get_reply_serial so much ;-)
3170 * dbus/dbus-message.c (struct DBusMessage): cache reply serial
3171 and client serial instead of demarshaling them every time
3173 2003-02-27 Havoc Pennington <hp@pobox.com>
3175 * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
3176 more inlined, using dbus-string-private.h, speeds things up
3179 * dbus/dbus-string.c (_dbus_string_free): apply align offset
3180 when freeing the string
3181 (_dbus_string_steal_data): fix for align offset
3182 (undo_alignment): new function
3184 2003-02-26 Havoc Pennington <hp@redhat.com>
3186 All kinds of audit fixes from Owen, plus initial attempt to
3187 handle unaligned memory returned from malloc.
3189 * dbus/dbus-string.c (_dbus_string_init): clamp max length to
3190 leave room for align_offset and nul byte
3191 (fixup_alignment): function to track an align_offset and
3192 ensure real->str is aligned
3193 (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
3194 to allow a nul byte plus align offset
3195 (_dbus_string_lock): fix overflow issue
3196 (_dbus_string_init_const_len): add assertions on sanity of len,
3197 assign allocated to be ALLOCATION_PADDING larger than len
3198 (set_length): fixup the overflow handling
3199 (_dbus_string_get_data_len): fix overflow in assertion
3200 (open_gap): detect overflow in size of gap to be opened
3201 (_dbus_string_lengthen): add overflow check
3202 (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
3203 (_dbus_string_append): add overflow check
3204 (_dbus_string_append_unichar): overflow
3205 (_dbus_string_delete): fix overflow in assertion
3206 (_dbus_string_copy_len): overflow in assertion
3207 (_dbus_string_replace_len): overflows in assertions
3208 (_dbus_string_find): change to implement in terms of
3209 _dbus_string_find_to
3210 (_dbus_string_find_to): assorted fixage
3211 (_dbus_string_equal_c_str): assert c_str != NULL,
3212 fix logic so the function works
3213 (_dbus_string_ends_with_c_str): fix overflow thingy
3214 (_dbus_string_base64_encode): overflow fix
3215 (_dbus_string_validate_ascii): overflow
3216 (_dbus_string_validate_nul): overflow
3218 2003-02-26 Havoc Pennington <hp@redhat.com>
3220 * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
3222 2003-02-26 Alexander Larsson <alexl@redhat.com>
3225 Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
3227 * dbus/dbus-connection.c:
3228 * dbus/dbus-connection.h:
3229 Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
3230 Add dbus_connection_set_wakeup_main_function and use it when queueing
3231 incoming and outgoing messages.
3234 * dbus/dbus-dataslot.c:
3235 Threadsafe usage of DBusDataSlotAllocator
3237 * dbus/dbus-message.c: (dbus_message_get_args_iter):
3240 * dbus/dbus-server-unix.c:
3243 * glib/dbus-gmain.c:
3244 Implement the new wakeup functions for glib.
3247 * glib/test-thread-client.c:
3248 * glib/test-thread-server.c:
3249 * glib/test-thread.h:
3250 Initial cut at some thread test code. Not really done yet.
3252 2003-02-26 Havoc Pennington <hp@pobox.com>
3254 * dbus/dbus-connection.c
3255 (dbus_connection_send_message_with_reply_and_block): fix crash
3256 where we ref'd the outgoing message instead of the returned reply
3258 * dbus/dbus-transport-unix.c (do_authentication): check read watch
3259 at the end of this function, so if we didn't need to read for
3260 authentication, we reinstall it for receiving messages
3262 * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
3263 a NULL sender for peer-to-peer case
3265 * dbus/dbus-transport-unix.c (check_read_watch): handle
3266 !authenticated case correctly
3268 * glib/dbus-gmain.c: add support for DBusServer
3270 * dbus/dbus-server.c: add data slot support
3272 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
3273 return values and handle errors
3275 * dbus/dbus-dataslot.c: factor out the data slot stuff from
3278 * Doxyfile.in (INPUT): add glib subdir
3280 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
3281 setup_with_g_main instead of hookup_with_g_main; write docs
3283 2003-02-24 Anders Carlsson <andersca@codefactory.se>
3285 * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
3286 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
3287 * dbus/dbus-message.c: (dbus_message_append_boolean),
3288 (dbus_message_append_boolean_array),
3289 (dbus_message_get_args_valist), (_dbus_message_test):
3290 * dbus/dbus-message.h:
3291 * doc/dbus-specification.sgml:
3292 Various fixes as pointed out by Havoc.
3294 * test/data/invalid-messages/bad-boolean-array.message:
3295 * test/data/invalid-messages/bad-boolean.message:
3296 Add invalid boolean value test cases.
3298 2003-02-24 Anders Carlsson <andersca@codefactory.se>
3300 * dbus/dbus-internals.c: (_dbus_type_to_string):
3301 * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
3302 (_dbus_marshal_validate_arg):
3303 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
3304 * dbus/dbus-message.c: (dbus_message_append_args_valist),
3305 (dbus_message_append_boolean), (dbus_message_append_boolean_array),
3306 (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
3307 (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
3308 (dbus_message_iter_get_double),
3309 (dbus_message_iter_get_boolean_array), (message_iter_test):
3310 * dbus/dbus-message.h:
3311 * dbus/dbus-protocol.h:
3312 * doc/dbus-specification.sgml:
3313 * test/data/valid-messages/lots-of-arguments.message:
3314 Add support for boolean and boolean array types.
3316 2003-02-23 Havoc Pennington <hp@pobox.com>
3318 * dbus/dbus-keyring.c: finish most of this implementation and
3321 * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
3322 these barf if the error isn't cleared to NULL
3324 * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
3325 (_dbus_create_directory): new function
3327 * dbus/dbus-errors.c (dbus_set_error): fix warning
3329 * dbus/dbus-string.c (_dbus_string_hex_encode): new function
3330 (_dbus_string_hex_decode): new function
3331 (test_hex_roundtrip): test code
3333 * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
3335 * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
3337 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
3338 the save-to-temp/rename trick to atomically write the new file
3339 (_dbus_string_parse_uint): new function
3341 2003-02-22 Havoc Pennington <hp@pobox.com>
3343 * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
3345 2003-02-22 Havoc Pennington <hp@pobox.com>
3347 * dbus/dbus-message.c (dbus_message_iter_get_string_array):
3348 (dbus_message_iter_get_byte_array): Fix up doxygen warnings
3350 * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
3352 * dbus/test/data/sha-1: add US government test suite for SHA-1
3354 2003-02-21 Anders Carlsson <andersca@codefactory.se>
3356 * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
3357 Make string arrays NULL-terminated.
3359 * dbus/dbus-memory.c: (dbus_free_string_array):
3360 * dbus/dbus-memory.h:
3361 New function for freeing NULL-terminated string arrays.
3363 * dbus/dbus-message-builder.c: (append_quoted_string),
3364 (_dbus_message_data_load):
3365 Add support for array types.
3367 * dbus/dbus-message.c: (check_message_handling):
3368 Add more types as test cases.
3370 * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
3371 (_dbus_string_parse_double):
3372 Add the start offset to the end offset.
3374 * test/data/valid-messages/lots-of-arguments.message:
3375 New test message with lots of arguments.
3377 2003-02-21 Anders Carlsson <andersca@codefactory.se>
3379 * dbus/dbus-message.c: (dbus_message_append_nil),
3380 (dbus_message_append_int32), (dbus_message_append_uint32),
3381 (dbus_message_append_double), (dbus_message_append_string),
3382 (dbus_message_append_int32_array),
3383 (dbus_message_append_uint32_array),
3384 (dbus_message_append_double_array),
3385 (dbus_message_append_byte_array),
3386 (dbus_message_append_string_array):
3387 Fix all out-of-memory handling in these functions.
3389 2003-02-21 Anders Carlsson <andersca@codefactory.se>
3391 * dbus/dbus-message.c: (dbus_message_append_nil):
3394 2003-02-21 Anders Carlsson <andersca@codefactory.se>
3396 * dbus/dbus-message.c: (dbus_message_append_args_valist),
3397 (dbus_message_append_nil), (dbus_message_append_int32_array),
3398 (dbus_message_append_uint32_array),
3399 (dbus_message_append_double_array),
3400 (dbus_message_append_byte_array),
3401 (dbus_message_append_string_array), (dbus_message_get_args_valist),
3402 (dbus_message_iter_get_int32_array),
3403 (dbus_message_iter_get_uint32_array),
3404 (dbus_message_iter_get_double_array),
3405 (dbus_message_iter_get_byte_array),
3406 (dbus_message_iter_get_string_array):
3408 * dbus/dbus-message.h:
3409 Add functions for appending and getting arrays.
3411 2003-02-21 Anders Carlsson <andersca@codefactory.se>
3413 * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
3414 element size at least 8 bytes, fixes mempool tests on
3417 2003-02-20 Alexander Larsson <alexl@redhat.com>
3419 * dbus/dbus-transport-unix.c (unix_do_iteration):
3420 Unlock the connection mutex during a blocking select call.
3421 Add todo about how we need a way to wake up the select.
3423 * dbus/dbus-connection-internal.h:
3424 * dbus/dbus-connection.c:
3425 Add _dbus_connection_lock and _dbus_connection_unlock.
3427 2003-02-19 Havoc Pennington <hp@pobox.com>
3429 * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
3430 Doxyfile.in, not Doxyfile
3432 * dbus/dbus-keyring.c: do some hacking on this
3434 * dbus/dbus-sysdeps.c (_dbus_delete_file): new
3436 * dbus/dbus-errors.c (dbus_set_error_const): do not call
3438 (dbus_set_error): remove dbus_error_init, check for message ==
3439 NULL *before* we sprintf into it, and add @todo about including
3440 system headers in this file
3442 * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
3444 * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
3446 * dbus/dbus-sysdeps.c (get_user_info): break this function out to
3447 get various bits of user information based on either username
3449 (_dbus_homedir_from_username): new function
3451 2003-02-19 Anders Carlsson <andersca@codefactory.se>
3454 Add check for nonposix getpwnam_r
3456 * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
3457 Align the pool element size to a sizeof (void *) boundary.
3459 * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
3460 (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
3461 General Solaris fixes.
3463 * test/data/valid-messages/simplest-manual.message:
3464 Explicitly state that we want little-endian packing.
3466 2003-02-19 Mikael Hallendal <micke@codefactory.se>
3468 * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
3470 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
3471 Added to create a transport connecting using a tcp/ip socket.
3473 * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
3474 to a tcp socket at given host and port.
3475 (_dbus_listen_tcp_socket): added to listen on tcp socket for given
3478 * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
3480 * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
3481 Added to create a server listening on a TCP/IP socket.
3483 2003-02-19 Havoc Pennington <hp@pobox.com>
3485 Throughout: mop up all the Doxygen warnings and undocumented
3488 * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
3489 to search any paths.
3491 * dbus/dbus-threads.c: move global mutex initializers to
3492 dbus-internals.h, multiple prototypes was confusing doxygen
3493 besides being kind of ugly
3495 * Doxyfile (PREDEFINED): have Doxygen define
3496 DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
3497 docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
3498 (do not abuse the feature! it's for stuff like the autogenerated
3499 macros in dbus-md5.c, not just for things you don't feel like
3502 2003-02-18 Havoc Pennington <hp@pobox.com>
3504 * dbus/dbus-string.c (_dbus_string_zero): new function
3506 * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
3507 wrap it in some dbus-friendly API
3509 * dbus/dbus-types.h: add 16-bit types
3511 2003-02-18 Joe Shaw <joe@assbarn.com>
3513 * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
3514 credentials from our currently running process.
3515 (get_word): Fix a buglet where we were copying the entire length
3516 instead of relative to our position.
3518 * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
3519 keys on the stack... it's 640k of data.
3521 * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
3522 read the credentials byte off the socket, even if we don't have
3524 (_dbus_poll): Implement poll() using select() for systems which
3527 * glib/test-dbus-glib.c (main): Print out an error if no
3528 parameters are given.
3530 * test/data/auth/fallback.auth-script: Added. Tests that a client
3531 can fallback to a secondary auth mechanism if the first fails.
3533 2003-02-18 Havoc Pennington <hp@pobox.com>
3537 2003-02-17 Havoc Pennington <hp@pobox.com>
3539 * doc/dbus-specification.sgml: lots of cosmetic
3540 cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
3541 env variable to DBUS_BUS_ADDRESS, s/client/application/,
3542 s/server/bus/ (except in authentication section). Add a section
3543 "Message Bus Message Routing"
3545 2003-02-17 Anders Carlsson <andersca@codefactory.se.>
3551 2003-02-17 Anders Carlsson <andersca@codefactory.se>
3553 * doc/dbus-specification.sgml:
3554 Specification updates.
3556 2003-02-17 Anders Carlsson <andersca@codefactory.se>
3558 * bus/activation.c: (bus_activation_init), (child_setup),
3559 (bus_activation_activate_service):
3561 * bus/main.c: (main):
3562 Set DBUS_ADDRESS environment variable.
3564 * dbus/dbus-errors.c: (dbus_set_error):
3565 Don't use va_copy since that's a C99 feature.
3567 * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
3568 (_dbus_spawn_async):
3569 * dbus/dbus-sysdeps.h:
3570 Add child_setup_func to _dbus_spawn_async.
3572 * doc/dbus-specification.sgml:
3573 Update specification.
3575 * test/spawn-test.c: (setup_func), (main):
3578 2003-02-17 Alexander Larsson <alexl@redhat.com>
3580 * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
3583 2003-02-17 Anders Carlsson <andersca@codefactory.se>
3587 * doc/dbus-test-plan.sgml:
3588 Add test plan document.
3593 2003-02-17 Anders Carlsson <andersca@codefactory.se>
3595 * dbus/dbus-message.c: (decode_header_data),
3596 (_dbus_message_loader_return_buffer):
3597 Set the header padding amount when loading a message.
3599 2003-02-16 Anders Carlsson <andersca@codefactory.se>
3601 * bus/dispatch.c: (send_one_message):
3602 Only send broadcast messages to registered connections.
3604 * dbus/dbus-message.c: (dbus_message_name_is):
3605 * dbus/dbus-message.h:
3606 New convenience function.
3608 * dbus/dbus-transport-debug.c: (do_reading):
3609 Only dispatch one message per run.
3612 * test/bus-test.c: (new_connection_callback), (die),
3613 (test_hello_client1_handler), (test_hello_client2_handler),
3614 (test_hello_replies), (main):
3616 * test/bus-test-loop.[ch]:
3619 2003-02-16 Havoc Pennington <hp@pobox.com>
3621 * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
3622 backward conditional
3624 2003-02-16 Alexander Larsson <alexl@redhat.com>
3626 * dbus/dbus-connection.c:
3627 Implement sent_message_with_reply. (with_reply_and block is still
3629 Made dispatch_message not lose message if OOM.
3631 * dbus/dbus-errors.h:
3632 Add NoReply error (for reply timeouts).
3634 2003-02-16 Alexander Larsson <alexl@redhat.com>
3636 * dbus/dbus-hash.c (_dbus_hash_table_unref):
3637 Actually free keys and values when destroying hashtable.
3639 2003-02-16 Anders Carlsson <andersca@codefactory.se>
3641 * dbus/dbus-auth.c: (client_try_next_mechanism):
3644 * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
3645 Return TRUE if there's no thread implementation around.
3647 * glib/dbus-gmain.c: (free_source),
3648 (dbus_connection_hookup_with_g_main):
3649 Make sure to remove the GSource when the connection is finalized.
3651 2003-02-16 Anders Carlsson <andersca@codefactory.se>
3653 * bus/dispatch.c: (bus_dispatch_message_handler):
3654 * dbus/dbus-errors.h:
3655 Return an error if someone tries to send a message to a service
3658 2003-02-16 Anders Carlsson <andersca@codefactory.se>
3660 * bus/activation.c: (load_directory), (bus_activation_init),
3661 (bus_activation_activate_service):
3664 (bus_driver_handle_activate_service), (bus_driver_handle_message):
3665 More work on the activation handling.
3667 * dbus/dbus-errors.h:
3668 Add some error messages
3670 * dbus/dbus-message.c: (dbus_message_new_error_reply):
3671 * dbus/dbus-message.h:
3672 New function that creates an error message.
3674 * dbus/dbus-protocol.h:
3675 Add ACTIVATE_SERVER message.
3677 * dbus/dbus-server-unix.c: (unix_handle_watch),
3678 (_dbus_server_new_for_domain_socket):
3679 Call _dbus_fd_set_close_on_exec.
3681 * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
3682 (_dbus_spawn_async), (_dbus_disable_sigpipe),
3683 (_dbus_fd_set_close_on_exec):
3684 * dbus/dbus-sysdeps.h:
3685 Add _dbus_fd_set_close_on exec function. Also add function that checks
3686 that all open fds are set to close-on-exec and warns otherwise.
3688 * dbus/dbus-transport-unix.c:
3689 (_dbus_transport_new_for_domain_socket):
3690 Call _dbus_fd_set_close_on_exec.
3692 2003-02-16 Havoc Pennington <hp@pobox.com>
3694 * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
3695 allow people to avoid setting SIGPIPE to SIG_IGN
3696 (_dbus_connection_new_for_transport): disable SIGPIPE unless
3697 we've been asked not to
3699 2003-02-15 Anders Carlsson <andersca@codefactory.se>
3701 * dbus/dbus-list.c: (_dbus_list_append_link),
3702 (_dbus_list_prepend_link):
3703 * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
3707 2003-02-15 Anders Carlsson <andersca@codefactory.se>
3710 * bus/activation.c: (bus_activation_entry_free),
3711 (add_desktop_file_entry), (load_directory), (bus_activation_init):
3713 * bus/main.c: (main):
3714 Add simple activation support, doesn't work yet though.
3716 2003-02-15 Zack Rusin <zack@kde.org>
3718 * qt/dbus-qthread.cpp: small casting fix
3720 2003-02-15 Anders Carlsson <andersca@codefactory.se>
3722 * dbus/dbus-errors.c: (dbus_set_error):
3723 * dbus/dbus-errors.h:
3724 Add a few errors and make dbus_set_error void.
3726 * dbus/dbus-sysdeps.c:
3727 (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
3728 (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
3729 * dbus/dbus-sysdeps.h:
3730 Add _dbus_spawn_async.
3732 * test/spawn-test.c: (main):
3733 Test for _dbus_spawn_async.
3735 2003-02-15 Anders Carlsson <andersca@codefactory.se>
3737 * dbus/dbus-internals.h:
3738 Fix build without tests.
3740 * dbus/dbus-list.c: (alloc_link):
3741 Fix a segfault when a malloc fails.
3743 * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
3744 (dbus_malloc0), (dbus_realloc):
3745 Add support for malloc debugging.
3747 2003-02-15 Alexander Larsson <alexl@redhat.com>
3749 * dbus/dbus-threads.c:
3750 * dbus/dbus-threads.h:
3751 Add condvars. Remove static mutext from API.
3752 Implement static mutexes by initializing them from threads_init.
3754 * glib/dbus-gthread.c:
3755 * qt/dbus-qthread.cpp:
3756 Update with the thread api changes.
3761 Turn StaticMutex into normal mutex + init function.
3762 Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
3763 _dbus_list_append_link, _dbus_list_prepend_link
3766 * dbus/dbus-sysdeps.c:
3767 * dbus/dbus-sysdeps.h:
3768 New type dbus_atomic_t, and new functions _dbus_atomic_inc,
3769 _dbus_atomic_dec. Only slow fallback implementation at the moment.
3771 * dbus/dbus-protocol.h:
3772 Add DBUS_MESSAGE_LOCAL_DISCONNECT define
3774 * dbus/dbus-message.c:
3775 Make ref/unref atomic.
3778 * dbus/dbus-connection-internal.h:
3779 * dbus/dbus-connection.c:
3780 * dbus/dbus-connection.h:
3782 Change _peek to _borrow,_return & _steal_borrowed.
3783 Change disconnect callback to event.
3784 Make dbus_connection_dispatch_messages reentrant.
3786 * dbus/dbus-transport.c:
3787 Don't ref the connection on calls to the transport
3790 * dbus/dbus-message-handler.c:
3793 * glib/dbus-gmain.c:
3794 Don't use peek_message anymore
3797 * test/debug-thread.c:
3798 * test/debug-thread.h:
3799 Simple thread implementation that asserts() on deadlocks in
3800 single-threaded code.
3803 (main) Call debug_threads_init.
3806 Use disconnect message instead of disconnect callback.
3810 Don't call dbus_connection_set_disconnect_function. Instead export
3811 bus_connection_disconnect.
3814 Call bus_connection_disconnect when we get a disconnected message.
3816 2003-02-15 Havoc Pennington <hp@pobox.com>
3818 * dbus/dbus-message.c (dbus_message_new): fool around with the
3821 2003-02-14 Havoc Pennington <hp@pobox.com>
3823 * dbus/dbus-mempool.c: fail if the debug functions so indicate
3825 * dbus/dbus-memory.c: fail if the debug functions indicate we
3828 * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
3829 (_dbus_decrement_fail_alloc_counter): debug functions to
3830 simulate memory allocation failures
3832 2003-02-14 Havoc Pennington <hp@pobox.com>
3834 * dbus/dbus-errors.h (struct DBusError): add a word of padding
3837 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3839 * bus/driver.c: (bus_driver_handle_hello):
3841 * bus/services.c: (bus_service_lookup):
3842 Reorder message sending so we get a more sane order.
3844 * test/bus-test.c: (message_handler):
3847 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3849 * bus/driver.c: (bus_driver_send_service_deleted),
3850 (bus_driver_send_service_created), (bus_driver_send_service_lost),
3851 (bus_driver_send_service_acquired), (bus_driver_handle_hello),
3852 (bus_driver_send_welcome_message),
3853 (bus_driver_handle_list_services),
3854 (bus_driver_handle_acquire_service),
3855 (bus_driver_handle_service_exists):
3856 * dbus/dbus-bus.c: (dbus_bus_register_client),
3857 (dbus_bus_acquire_service), (dbus_bus_service_exists):
3858 * dbus/dbus-errors.c: (dbus_result_to_string):
3859 * dbus/dbus-errors.h:
3860 * dbus/dbus-message.c: (dbus_message_append_args),
3861 (dbus_message_append_args_valist), (dbus_message_get_args),
3862 (dbus_message_get_args_valist), (dbus_message_get_args_iter),
3863 (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
3864 (dbus_message_iter_get_byte_array),
3865 (dbus_message_iter_get_string_array), (message_iter_test),
3866 (check_message_handling), (_dbus_message_test):
3867 * dbus/dbus-message.h:
3868 * test/bus-test.c: (main):
3869 Change fields to arguments in messages, so that they won't be
3870 confused with header fields.
3872 * glib/test-dbus-glib.c: (main):
3873 Remove append_fields from hello message.
3875 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3877 * dbus/dbus-errors.c:
3878 * dbus/dbus-message.c:
3879 * dbus/dbus-string.c:
3880 Documentation fixes.
3882 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3884 * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
3886 Implement support for timeouts in dbus-glib.
3888 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3890 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
3891 * dbus/dbus-message.c: (process_test_subdir):
3892 * test/break-loader.c: (find_breaks_based_on):
3893 Plug some memory leaks.
3895 2003-02-13 Richard Hult <rhult@codefactory.se>
3897 * bus/main.c: Fix build.
3899 * dbus/dbus-errors.h:
3900 * dbus/dbus-errors.c: Fix copyright for Anders.
3902 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3907 * bus/connection.c: (bus_connection_foreach):
3910 * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
3911 (unescape_string), (new_section), (parse_section_start),
3912 (parse_key_value), (report_error), (bus_desktop_file_load),
3913 (bus_desktop_file_get_string):
3914 * bus/desktop-file.h:
3915 Use DBusError for error reporting.
3917 * bus/dispatch.c: (send_one_message),
3918 (bus_dispatch_message_handler):
3919 * bus/driver.c: (bus_driver_send_service_deleted),
3920 (bus_driver_send_service_created), (bus_driver_send_service_lost),
3921 (bus_driver_send_service_acquired), (bus_driver_handle_hello),
3922 (bus_driver_send_welcome_message),
3923 (bus_driver_handle_list_services),
3924 (bus_driver_handle_acquire_service),
3925 (bus_driver_handle_service_exists):
3926 * bus/loop.c: (bus_loop_run):
3928 Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
3930 * bus/utils.c: (bus_wait_for_memory):
3932 New files with general utility functions.
3934 * dbus/dbus-internals.h:
3935 Remove _DBUS_HANDLE_OOM.
3937 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3939 * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
3940 (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
3941 * dbus/dbus-errors.h:
3942 Add DBusError structure.
3944 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3946 * test/data/valid-messages/standard-acquire-service.message:
3947 * test/data/valid-messages/standard-hello.message:
3948 * test/data/valid-messages/standard-list-services.message:
3949 * test/data/valid-messages/standard-service-exists.message:
3950 Add some standard messages.
3952 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3954 * bus/driver.c: (bus_driver_send_welcome_message),
3955 (bus_driver_handle_list_services),
3956 (bus_driver_handle_acquire_service),
3957 (bus_driver_handle_service_exists), (bus_driver_handle_message):
3958 Update for API changes in libdbus.
3960 * dbus/dbus-message.c: (dbus_message_new_reply):
3961 * dbus/dbus-message.h:
3962 Remove the name argument. The spec states that replies shouldn't
3965 2003-02-13 Anders Carlsson <andersca@codefactory.se>
3967 * bus/desktop-file.c: (parse_section_start), (parse_key_value),
3968 (report_error), (bus_desktop_file_load), (lookup_section),
3969 (lookup_line), (bus_desktop_file_get_raw),
3970 (bus_desktop_file_get_string):
3971 * bus/desktop-file.h:
3972 Some fixes, and new functions for getting a key value from a section.
3974 2003-02-13 Havoc Pennington <hp@pobox.com>
3976 * test/data/auth/fail-after-n-attempts.auth-script: new test
3978 * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
3981 2003-02-13 Havoc Pennington <hp@pobox.com>
3983 * dbus/dbus-auth.c (handle_server_data_external_mech): args to
3984 dbus_credentials_match were backward
3986 * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
3987 NO_CREDENTIALS and ROOT_CREDENTIALS
3989 * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
3990 into here. Never process more commands after we've reached an
3991 end state; store further data as unused bytes.
3993 * test/data/auth/*: add more auth tests
3995 * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
3996 command to match exact string and EXPECT_UNUSED to match unused
3999 * test/Makefile.am (dist-hook): fix to dist all the test stuff
4001 2003-02-12 Havoc Pennington <hp@pobox.com>
4003 * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
4004 \r off of popped lines
4006 * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
4009 * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
4012 2003-02-12 Havoc Pennington <hp@pobox.com>
4014 * dbus/Makefile.am: remove break-loader from the build, since it
4017 * configure.in: add --enable-gcov to turn on coverage profiling
4018 flags and disable optimization
4020 2003-02-10 Havoc Pennington <hp@pobox.com>
4022 * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
4023 initial cut at test framework for DBusAuth from laptop.
4024 Doesn't quite work yet but it compiles and I need to get
4025 it off the 266mhz laptop. ;-)
4027 * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
4028 fix a memleak in error case
4030 2003-02-12 Anders Carlsson <andersca@codefactory.se>
4033 * bus/desktop-file.c:
4034 * bus/desktop-file.h:
4035 Add a desktop file parser.
4037 2003-02-11 Zack Rusin <zack@kde.org>
4039 * qt/message.[h|cpp]: sample implementation
4040 of the KDE wrapper for DBusMessage
4042 2003-02-09 Zack Rusin <zack@kde.org>
4044 * test/bus-test.c: make_it_compile
4045 * doc/dbus-specification.sgml: minimal semantic fix
4047 2003-02-06 Anders Carlsson <andersca@codefactory.se>
4053 2003-02-06 Anders Carlsson <andersca@codefactory.se>
4056 * dbus/dbus-break-loader.c:
4058 * test/break-loader.c:
4059 Move dbus-break-loader to test/ and rename it to break-loader.
4061 2003-02-02 Havoc Pennington <hp@pobox.com>
4063 * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
4064 for code to manage cookies in your home directory
4066 * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
4068 * dbus/dbus-auth.c (get_state): impose a maximum number of tries
4069 to authenticate, then disconnect the client.
4071 2003-02-03 Alexander Larsson <alexl@redhat.com>
4073 * dbus/dbus-message.c (dbus_message_append_fields):
4076 2003-02-02 Anders Carlsson <andersca@codefactory.se>
4078 * doc/dbus-specification.sgml:
4079 Update address format section.
4081 2003-02-02 Anders Carlsson <andersca@codefactory.se>
4084 * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
4085 (message_handler), (new_connection_callback), (loop_quit),
4089 2003-02-02 Anders Carlsson <andersca@codefactory.se>
4091 * bus/driver.c: (bus_driver_handle_service_exists):
4092 Simplify the code a bit.
4094 * dbus/dbus-bus.c: (dbus_bus_service_exists):
4097 2003-02-02 Anders Carlsson <andersca@codefactory.se>
4100 Add libdbus-daemon.la and link to it.
4102 2003-02-01 James Willcox <jwillcox@gnome.org>
4104 * bus/driver.c: (bus_driver_handle_own_service):
4105 Actually include the service reply code in the message.
4107 2003-02-02 Anders Carlsson <andersca@codefactory.se>
4109 * bus/driver.c: (bus_driver_handle_service_exists):
4110 Don't unref the incoming message.
4112 2003-02-02 Anders Carlsson <andersca@codefactory.se>
4114 * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
4116 2003-02-02 Anders Carlsson <andersca@codefactory.se>
4118 * dbus/dbus-server.c: (dbus_server_listen):
4119 * dbus/dbus-transport.c: (_dbus_transport_open):
4120 ifdef out the calls to the debug transport and server.
4122 2003-02-02 Alexander Larsson <alexl@redhat.com>
4124 * dbus/dbus-watch.c (dbus_watch_get_flags):
4125 Add note in the docs that ERROR or HANGUP won't be returned
4126 and are assumed always on.
4128 * glib/dbus-gmain.c (add_watch):
4129 Always add IO_ERR | IO_HUP
4131 * dbus/dbus-message.h:
4132 Add semicolon after dbus_message_iter_get_string_array().
4133 Makes qt code build again
4135 2003-02-01 Anders Carlsson <andersca@codefactory.se>
4137 * bus/driver.c: (create_unique_client_name),
4138 (bus_driver_handle_hello):
4139 Don't take a name, just use a numeric id to identify
4143 * dbus/dbus-bus.c: (dbus_bus_register_client),
4144 (dbus_bus_acquire_service), (dbus_bus_service_exists):
4146 Add new convenience functions for communicating with the bus.
4148 * dbus/dbus-message.h:
4150 * dbus/dbus-protocol.h:
4153 2003-02-01 Alexander Larsson <alexl@redhat.com>
4155 * dbus/dbus-message.c (dbus_message_append_fields):
4156 Add some more doc comments.
4158 2003-02-01 Havoc Pennington <hp@pobox.com>
4160 * dbus/dbus-break-loader.c (randomly_modify_length): change
4161 a 4-byte value in the message as if it were a length
4163 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
4164 execute bit on saved files
4166 2003-02-01 Havoc Pennington <hp@pobox.com>
4168 * dbus/dbus-break-loader.c (main): new program to find messages
4169 that break the loader.
4171 * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
4172 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
4174 * dbus/dbus-string.c (_dbus_string_set_byte): new
4176 2003-01-31 Havoc Pennington <hp@pobox.com>
4178 * dbus/dbus-message.c: refactor the test code to be more general,
4179 in preparation for writing a "randomly permute test cases to
4180 try to break the loader" program.
4182 2003-01-31 Havoc Pennington <hp@pobox.com>
4184 * doc/dbus-specification.sgml: work on the specification
4186 * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
4187 the protocol version of the message.
4189 * dbus/dbus-protocol.h: drop special _REPLY names, the spec
4190 no longer specifies that.
4191 (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
4194 * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
4195 "break" for DBUS_TYPE_NIL, remove @todo
4197 2003-01-31 Havoc Pennington <hp@pobox.com>
4199 * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
4200 just set_is_error/get_is_error as this is a commonly-used
4201 function, and write docs.
4203 2003-01-31 Anders Carlsson <andersca@codefactory.se>
4205 * dbus/dbus-address.c: (dbus_address_entry_free):
4206 Free key and value lists.
4208 * dbus/dbus-internals.c: (_dbus_type_to_string):
4209 Add the types we didn't have.
4211 * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
4212 (_dbus_marshal_validate_arg):
4215 * dbus/dbus-message.c: (dbus_message_set_sender):
4216 Remove todo about being able to set sender to NULL.
4218 (dbus_message_set_is_error_reply),
4219 (dbus_message_get_is_error_reply):
4220 * dbus/dbus-message.h:
4223 * dbus/dbus-protocol.h:
4224 Add error reply flag.
4226 * test/data/valid-messages/opposite-endian.message:
4227 Add NIL type to test.
4229 2003-01-31 Havoc Pennington <hp@pobox.com>
4231 * doc/dbus-specification.sgml: fully specify the header. Add
4232 flags and major protocol version, and change header/body len to
4235 * dbus/dbus-message-builder.c (append_saved_length): append length
4238 * dbus/dbus-message.c (dbus_message_create_header): change header
4239 length and body length to unsigned. Add the new fields from the
4241 (_dbus_message_loader_return_buffer): unsigned header/body len
4243 2003-01-30 Havoc Pennington <hp@pobox.com>
4245 * dbus/dbus-auth.c: rework to use only REJECTED, no
4248 * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
4249 use REJECTED, suggested by Mark McLoughlin
4251 2003-01-30 Havoc Pennington <hp@pobox.com>
4253 * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
4254 a better way to report errors here. e.g. "unix address lacks
4255 path" or something. also "no such file" when the path doesn't
4258 * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
4260 (dbus_parse_address): add @todo about documenting address format,
4261 and allowing , and ; to be escaped
4263 2003-01-30 Anders Carlsson <andersca@codefactory.se>
4266 Add dbus-address.[ch]
4268 * dbus/dbus-address.c: (dbus_address_entry_free),
4269 (dbus_address_entries_free), (create_entry),
4270 (dbus_address_entry_get_method), (dbus_address_entry_get_value),
4271 (dbus_parse_address), (_dbus_address_test):
4272 * dbus/dbus-address.h:
4273 New files for dealing with address parsing.
4275 * dbus/dbus-connection.c:
4276 Document timeout functions.
4278 * dbus/dbus-message.c:
4279 Document dbus_message_new_from_message.
4281 * dbus/dbus-server-debug.c:
4284 * dbus/dbus-server.c: (dbus_server_listen):
4285 Parse address and use correct server implementation.
4287 * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
4288 * dbus/dbus-string.h:
4289 New function with test.
4291 * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
4295 * dbus/dbus-transport-debug.c:
4298 * dbus/dbus-transport.c: (_dbus_transport_open):
4299 Parse address and use correct transport implementation.
4301 2003-01-30 Havoc Pennington <hp@pobox.com>
4303 * dbus/dbus-message.c: use message->byte_order instead of
4304 DBUS_COMPILER_BYTE_ORDER throughout.
4305 (dbus_message_create_header): pad header to align the
4306 start of the body of the message to 8-byte boundary
4308 * dbus/dbus-marshal.h: make all the demarshalers take const
4309 DBusString arguments.
4311 * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
4312 validate message args here, so we don't have to do slow validation
4313 later, and so we catch bad messages as they are incoming. Also add
4314 better checks on header_len and body_len. Also fill in
4317 * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
4318 implemented properly)
4319 (_dbus_string_validate_nul): new function to check all-nul
4321 * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
4322 get_arg_end_pos and remove all validation
4323 (_dbus_marshal_validate_arg): actually do validation here.
4325 2003-01-29 Havoc Pennington <hp@pobox.com>
4327 * dbus/dbus-message.c (check_message_handling): fix assertion
4328 failure on set_client_serial
4330 2003-01-28 Havoc Pennington <hp@pobox.com>
4332 * dbus/dbus-server-debug.c: Add doc section comments
4334 * dbus/dbus-transport-debug.c: add doc section comments
4336 2003-01-28 Havoc Pennington <hp@redhat.com>
4338 * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
4339 the reverse order from how I had it
4340 (_dbus_string_base64_encode): reverse encoding order. I was
4341 basically byteswapping everything during encoding.
4343 2003-01-28 Anders Carlsson <andersca@codefactory.se>
4345 * dbus/dbus-connection-internal.h:
4346 * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
4347 (_dbus_connection_remove_timeout):
4348 Add functions for adding and removing timeouts.
4350 * dbus/dbus-message.c: (dbus_message_new_from_message):
4351 Add new function that takes a message and creates an exact
4352 copy of it, but with the refcount set to 1.
4353 (check_message_handling):
4356 * dbus/dbus-server-protected.h:
4357 * dbus/dbus-server.c: (_dbus_server_init_base),
4358 (_dbus_server_finalize_base), (_dbus_server_add_timeout),
4359 (dbus_server_set_timeout_functions):
4360 (_dbus_server_remove_timeout):
4361 New functions so that a server can add and remove timeouts.
4363 (dbus_server_listen):
4364 Add commented out call to dbus_server_debug_new.
4366 * dbus/dbus-timeout.c: (_dbus_timeout_new):
4367 Actually set the handler, doh.
4369 * dbus/dbus-transport.c: (_dbus_transport_open):
4370 Add commented out call to dbus_transport_debug_client_new.
4373 Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
4375 2003-01-28 Havoc Pennington <hp@pobox.com>
4377 * dbus/dbus-message.c (check_message_handling): function to check
4378 on the loaded message, iterates over it etc.
4380 2003-01-28 Havoc Pennington <hp@pobox.com>
4382 * test/Makefile.am (dist-hook): fix make distdir
4384 * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
4386 2003-01-27 Havoc Pennington <hp@pobox.com>
4388 * dbus/dbus-mempool.c (time_for_size): replace printf with
4391 * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
4392 empty lines; fix the SAVE_LENGTH stuff to be
4393 START_LENGTH/END_LENGTH so it actually works; couple other
4396 * test/Makefile.am (dist-hook): add dist-hook for .message files
4398 * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
4399 can be constant or locked.
4400 (_dbus_string_free): allow freeing a const string as
4403 * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
4405 * dbus/dbus-test-main.c (main): take an argument which is the
4406 directory containing test data
4408 * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
4409 argument to this and load all the messages in test/data/
4410 checking that they can be loaded or not loaded as appropriate.
4412 2003-01-27 Anders Carlsson <andersca@codefactory.se>
4414 * bus/dispatch.c: (bus_dispatch_message_handler):
4415 Dispatch messages sent to services.
4417 * bus/driver.c: (bus_driver_send_service_deleted),
4418 (bus_driver_send_service_created), (bus_driver_send_service_lost),
4419 (bus_driver_send_service_acquired):
4420 Add helper functions for sending service related messages.
4422 (bus_driver_send_welcome_message):
4423 Send HELLO_REPLY instead of WELCOME.
4425 (bus_driver_handle_list_services):
4426 Send LIST_SERVICES_REPLY instead of SERVICES.
4428 (bus_driver_handle_own_service),
4429 (bus_driver_handle_service_exists):
4430 New message handlers.
4432 (bus_driver_handle_message):
4433 Invoke new message handlers.
4435 (bus_driver_remove_connection):
4436 Don't remove any services here since that's done automatically
4437 by bus_service_remove_owner now.
4440 New function signatures.
4442 * bus/services.c: (bus_service_add_owner):
4443 Send ServiceAcquired message if we're the only primary owner.
4445 (bus_service_remove_owner):
4446 Send ServiceAcquired/ServiceLost messages.
4448 (bus_service_set_prohibit_replacement),
4449 (bus_service_get_prohibit_replacement):
4450 Functions for setting prohibit replacement.
4452 (bus_service_has_owner):
4453 New function that checks if a connection is in the owner queue of
4457 Add new function signatures.
4459 * dbus/dbus-list.c: (_dbus_list_test):
4460 Add tests for _dbus_list_remove_last and traversing the list backwards.
4463 Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
4464 go any further, so return NULL then.
4466 * dbus/dbus-protocol.h:
4467 Add new messages, service flags and service replies.
4469 2003-01-26 Havoc Pennington <hp@pobox.com>
4471 * dbus/dbus-message-builder.c: implement, completely untested.
4473 * test/data/*: add data to be used in testing.
4474 ".message" files are our simple loadable text format.
4475 ".message-raw" will be binary dumps of messages.
4477 * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
4479 2003-01-26 Havoc Pennington <hp@pobox.com>
4481 * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
4483 * dbus/dbus-errors.c (dbus_result_to_string): add
4486 * dbus/dbus-message-builder.c: new file, will contain code to load
4487 up messages from files. Not implemented yet.
4489 2003-01-26 Havoc Pennington <hp@pobox.com>
4491 * dbus/dbus-message.c (dbus_message_set_sender): support deleting
4492 the sender by setting to NULL
4494 2003-01-26 Havoc Pennington <hp@pobox.com>
4496 The unit tests pass, but otherwise untested. If it breaks, the
4497 tests should have been better. ;-)
4499 * bus/driver.c (bus_driver_handle_hello): return if we disconnect
4502 * dbus/dbus-message.c: redo everything so we maintain
4503 message->header as the only copy of the various fields.
4504 This avoids the possibility of out-of-memory in some cases,
4505 for example dbus_message_lock() can't run out of memory anymore,
4506 and avoids extra copying. Figured I may as well go ahead and do
4507 this since it was busted for dbus_message_lock to not return
4508 failure on OOM, and dbus_message_write_header was totally
4509 unchecked for OOM. Also fixed some random other bugs.
4511 * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
4512 that strings are nul-terminated. Also, end_pos can be equal
4513 to string length just not greater than, I think.
4514 (_dbus_marshal_set_int32): new function
4515 (_dbus_marshal_set_uint32): new function
4516 (_dbus_marshal_set_string): new function
4518 * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
4519 a warning, init timeout_list to NULL
4520 (dbus_connection_send_message): don't use uninitialized variable
4523 * dbus/dbus-string.c (_dbus_string_replace_len): new function
4525 2003-01-26 Anders Carlsson <andersca@codefactory.se>
4527 * bus/driver.c: (bus_driver_handle_hello),
4528 (bus_driver_send_welcome_message):
4531 2003-01-26 Anders Carlsson <andersca@codefactory.se>
4533 * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
4534 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
4535 (dbus_connection_unref):
4536 * dbus/dbus-marshal.c: (_dbus_marshal_test):
4537 * dbus/dbus-message.c: (dbus_message_unref),
4540 (dbus_message_get_fields):
4541 Remove debugging printout.
4543 (_dbus_message_loader_return_buffer):
4544 Don't store the header string.
4546 (_dbus_message_test):
4549 2003-01-26 Richard Hult <rhult@codefactory.se>
4551 * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
4552 the file descriptor list, since it can change under us.
4554 2003-01-25 Anders Carlsson <andersca@codefactory.se>
4556 * glib/dbus-gmain.c: (dbus_connection_prepare),
4557 (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
4558 (remove_watch), (dbus_connection_hookup_with_g_main):
4559 Rewrite the glib handling to use its own GSource instead of a
4560 GIOChannel so we can catch messages put in the queue while waiting
4563 2003-01-25 Anders Carlsson <andersca@codefactory.se>
4566 * bus/connection.c: (connection_disconnect_handler),
4567 (connection_watch_callback), (bus_connection_setup):
4568 * bus/dispatch.c: (send_one_message),
4569 (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
4570 (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
4572 * bus/driver.c: (bus_driver_send_service_deleted),
4573 (bus_driver_send_service_created), (bus_driver_handle_hello),
4574 (bus_driver_send_welcome_message),
4575 (bus_driver_handle_list_services), (bus_driver_remove_connection),
4576 (bus_driver_handle_message):
4578 Refactor code, put the message dispatching in its own file. Use
4579 _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
4582 2003-01-25 Anders Carlsson <andersca@codefactory.se>
4584 * dbus/dbus-internals.h:
4585 Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
4587 * dbus/dbus-message.c: (dbus_message_get_sender):
4588 * dbus/dbus-message.h:
4589 Implement dbus_message_get_sender.
4591 * dbus/dbus-protocol.h:
4592 Add message and service defines.
4594 2003-01-25 Anders Carlsson <andersca@codefactory.se>
4596 * dbus/dbus-connection.c: (dbus_connection_send_message):
4597 * dbus/dbus-message-internal.h:
4598 * dbus/dbus-message.c: (_dbus_message_get_client_serial),
4599 (dbus_message_write_header):
4600 Remove _dbus_messag_unlock and don't set the client serial on a
4601 message if one already exists.
4603 2003-01-24 Havoc Pennington <hp@pobox.com>
4605 * dbus/dbus-list.c (alloc_link): put a thread lock on the global
4608 * bus/driver.c (bus_driver_handle_list_services): fix a leak
4611 2003-01-25 Anders Carlsson <andersca@codefactory.se>
4613 * dbus/dbus-list.c: (alloc_link), (free_link):
4614 Use a memory pool for the links.
4616 2003-01-25 Anders Carlsson <andersca@codefactory.se>
4618 * bus/connection.c: (bus_connection_foreach):
4620 Add new bus_connection_foreach function.
4622 * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
4623 Add function that broadcasts a message to all clients.
4625 (bus_driver_send_service_created), (bus_driver_handle_hello),
4626 (bus_driver_send_welcome_message),
4627 (bus_driver_handle_list_services), (bus_driver_message_handler):
4628 Implement functions that take care of listing services, and notifying
4629 clients when new services are created.
4631 * bus/services.c: (bus_services_list):
4633 Add new function that returns an array of strings with the currently
4634 registered services.
4637 * glib/dbus-gmain.c:
4638 Update copyright year.
4640 2003-01-25 Anders Carlsson <andersca@codefactory.se>
4642 * dbus/dbus-connection.c: (dbus_connection_send_message):
4643 Unlock the message in case it was sent earlier.
4645 (dbus_connection_send_message_with_reply_and_block):
4646 Remove the reply message from the list.
4648 * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
4649 Set array_len and new_pos correctly.
4651 (_dbus_marshal_test):
4652 Remove debug output.
4654 * dbus/dbus-message-internal.h:
4655 * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
4656 New function that returns the reply serial.
4658 (_dbus_message_unlock):
4659 New function that unlocks a message and resets its header.
4661 (dbus_message_append_string_array),
4662 (dbus_message_get_fields_valist),
4663 (dbus_message_iter_get_field_type),
4664 (dbus_message_iter_get_string_array),
4665 (dbus_message_get_fields),
4666 (dbus_message_append_fields_valist):
4667 Handle string arrays.
4669 (dbus_message_set_sender):
4670 Make this function public since the bus daemon needs it.
4672 (decode_header_data):
4673 Set the reply serial to -1 initially.
4675 * dbus/dbus-message.h:
4676 Add dbus_message_set_sender.
4678 2003-01-24 Havoc Pennington <hp@pobox.com>
4680 * doc/dbus-specification.sgml: add some stuff
4682 2003-01-22 Havoc Pennington <hp@pobox.com>
4684 * doc/dbus-specification.sgml: Start to document the protocol.
4686 2003-01-22 Havoc Pennington <hp@pobox.com>
4688 * dbus/dbus-connection.c
4689 (dbus_connection_send_message_with_reply_and_block): add some @todo
4691 * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
4693 2003-01-21 Havoc Pennington <hp@pobox.com>
4695 (patch untested because can't compile)
4697 * bus/driver.c (create_unique_client_name): make this function
4698 never recycle client names. Also, caller should initialize
4701 * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
4703 2003-01-21 Anders Carlsson <andersca@codefactory.se>
4705 * dbus/dbus-marshal.c: (_dbus_marshal_double),
4706 (_dbus_marshal_int32), (_dbus_marshal_uint32),
4707 (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
4708 (_dbus_marshal_double_array), (_dbus_marshal_string_array),
4709 (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
4710 (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
4711 (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
4712 * dbus/dbus-marshal.h:
4713 * dbus/dbus-protocol.h:
4714 Add support for marshalling and demarshalling integer, double
4717 2003-01-21 Anders Carlsson <andersca@codefactory.se>
4722 * bus/connection.c: (connection_disconnect_handler):
4723 Remove the connection from the bus driver's list.
4725 (connection_watch_callback): Dispatch messages.
4727 (free_connection_data): Free connection name.
4729 (bus_connection_setup): Add connection to the bus driver's list.
4730 (bus_connection_remove_owned_service):
4731 (bus_connection_set_name), (bus_connection_get_name):
4732 Add functions for setting and getting the connection's name.
4735 Add function headers.
4737 * bus/driver.c: (create_unique_client_name),
4738 (bus_driver_handle_hello_message),
4739 (bus_driver_send_welcome_message), (bus_driver_message_handler),
4740 (bus_driver_add_connection), (bus_driver_remove_connection):
4743 * bus/services.c: (bus_service_free):
4745 New file that handles communication and registreation with the bus
4748 2003-01-21 Anders Carlsson <andersca@codefactory.se>
4750 * dbus/dbus-connection.c: (dbus_connection_send_message):
4751 Add a new client_serial parameter.
4753 (dbus_connection_send_message_with_reply):
4754 Remove a @todo since we've implemented the blocking function.
4756 (dbus_connection_send_message_with_reply_and_block):
4757 New function that sends a message and waits for a reply and
4758 then returns the reply.
4760 * dbus/dbus-connection.h:
4763 * dbus/dbus-errors.c: (dbus_result_to_string):
4764 * dbus/dbus-errors.h:
4765 Add new DBUS_RESULT.
4767 * dbus/dbus-message-internal.h:
4768 * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
4769 (_dbus_message_set_sender), (dbus_message_write_header),
4770 (dbus_message_new_reply), (decode_header_data),
4771 (_dbus_message_loader_return_buffer), (_dbus_message_test):
4772 * dbus/dbus-message.h:
4773 Add new functions that set the reply serial and sender.
4774 Also marshal and demarshal them correctly and add test.
4776 * dbus/dbus-protocol.h:
4777 Add new DBUS_MESSAGE_TYPE_SENDER.
4780 * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
4781 (add_watch), (remove_watch), (add_timeout), (remove_timeout),
4782 (dbus_connection_hookup_with_g_main):
4783 * glib/test-dbus-glib.c: (main):
4784 Rewrite to use GIOChannel and remove the GSource crack.
4786 * test/echo-client.c: (main):
4787 * test/watch.c: (check_messages):
4788 Update for changed APIs
4790 2003-01-19 Anders Carlsson <andersca@codefactory.se>
4792 * dbus/Makefile.am: Add dbus-timeout.[cħ]
4794 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
4795 Create a DBusTimeoutList.
4796 (dbus_connection_set_timeout_functions): Add new function to
4797 set timeout callbacks
4799 * dbus/dbus-connection.h: Add public DBusTimeout API.
4801 * dbus/dbus-message.c: (dbus_message_get_service):
4802 * dbus/dbus-message.h: New function.
4804 * dbus/dbus-server.c: Fix small doc typo.
4806 * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
4808 2003-01-19 Anders Carlsson <andersca@codefactory.se>
4810 * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
4811 of the string, just as long as specified.
4813 2003-01-19 Havoc Pennington <hp@pobox.com>
4815 * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
4818 * dbus/dbus-server.c (dbus_server_set_max_connections)
4819 (dbus_server_get_max_connections, dbus_server_get_n_connections):
4820 keep track of current number of connections, and add API for
4821 setting a max (but haven't implemented enforcing the max yet)
4823 2003-01-18 Havoc Pennington <hp@pobox.com>
4825 * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
4826 reading/writing if read_watch != NULL or write_watch != NULL.
4828 * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
4829 the message loader code to actually load message->header and
4830 message->body into the newly-created message.
4832 * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
4835 * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
4836 (dbus_connection_get_max_message_size)
4837 (dbus_connection_set_max_live_messages_size)
4838 (dbus_connection_get_max_live_messages_size): implement some
4839 resource limitation functions
4841 * dbus/dbus-resources.c: new file implementing some of the
4842 resource limits stuff
4844 * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
4845 missing docs, add @todo to handle OOM etc.
4847 * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
4850 2003-01-18 Havoc Pennington <hp@pobox.com>
4852 * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
4853 connection if it hasn't been already.
4855 * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
4856 replace with DisconnectFunction.
4858 2003-01-18 Havoc Pennington <hp@pobox.com>
4860 Building --disable-verbose-mode --disable-asserts --disable-tests
4861 cuts the library from 112K to 45K or so
4863 * configure.in: check for varargs macro support,
4864 add --enable-verbose-mode, --enable-asserts.
4866 * dbus/dbus-internals.h (_dbus_assert): support
4868 (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
4870 2003-01-18 Havoc Pennington <hp@pobox.com>
4872 * dbus/dbus-test.c: include config.h so that tests actually run
4874 * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
4875 so the failure mode when that assumption fails will be plenty
4878 2003-01-18 Havoc Pennington <hp@pobox.com>
4880 * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
4882 * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
4885 * test/Makefile.am: don't use special variable "TESTS" for echo-*
4886 since we don't want to use those in make check
4888 2003-01-15 Havoc Pennington <hp@redhat.com>
4894 2003-01-15 Havoc Pennington <hp@redhat.com>
4896 * test/Makefile.am: fix so that test source code ends up in the
4897 distribution on make distcheck
4899 2003-01-15 Havoc Pennington <hp@redhat.com>
4905 2003-01-15 Havoc Pennington <hp@redhat.com>
4907 * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
4908 fix build when --disable-tests
4910 * Makefile.am (EXTRA_DIST): put HACKING in here
4912 * HACKING: document procedure for making a tarball release.
4914 2003-01-14 Anders Carlsson <andersca@codefactory.se>
4916 * bus/connection.c: (connection_error_handler),
4917 (bus_connection_setup):
4918 * bus/main.c: (main):
4919 Make sure that the DBusConnectionData struct is NULLed
4920 out to prevent a segfault.
4922 * dbus/dbus-errors.c: (dbus_result_to_string):
4923 * dbus/dbus-errors.h:
4924 * dbus/dbus-message.c: (dbus_message_get_fields),
4925 (dbus_message_get_fields_valist), (_dbus_message_test):
4926 * dbus/dbus-message.h:
4927 Make dbus_message_get_fields return a result code so we can
4928 track invalid fields as well as oom.
4930 2003-01-11 Havoc Pennington <hp@pobox.com>
4932 * configure.in: change --enable-test/--enable-ansi action-if-given
4933 to enable_foo=$enableval instead of enable_foo=yes
4935 2003-01-08 Havoc Pennington <hp@pobox.com>
4937 * dbus/dbus-string.c (_dbus_string_align_length): new function
4939 * dbus/dbus-test-main.c: move main() for test app here
4941 (dbus_internal_symbol_do_not_use_run_tests): we have to export a
4942 symbol to run tests, because dbus-test isn't in the main
4945 Code review nitpicks.
4947 * dbus/dbus-message.c (dbus_message_write_header): add newlines
4948 for people with narrow emacs ;-). Assert client_serial was filled
4949 in. Assert message->name != NULL.
4950 (dbus_message_append_fields): have "first_field_type" arg separate
4951 from va list, needed for C++ binding that also uses varargs IIRC
4952 and helps with type safety
4953 (dbus_message_new): add @todo about using DBusString to store
4954 service/name internally
4955 (dbus_message_new): don't leak ->service and ->name on OOM later
4957 (dbus_message_unref): free the service name
4958 (dbus_message_get_fields): same change to varargs
4959 i.e. first_field_type
4960 (_dbus_message_loader_return_buffer): assert that the message data
4961 is aligned (if not it's a bug in our code). Put in verbose griping
4962 about why we set corrupted = TRUE.
4963 (decode_header_data): add FIXME that char* is evil. Was going to
4964 add FIXME about evil locale-specific string.h strncmp, but just
4965 switched to wacky string-as-uint32 optimization. Move check for
4966 "no room for field name" above get_const_data_len() to avoid
4967 assertion failure in get_const_data_len if we have trailing 2
4968 bytes or the like. Check for service and name fields being
4969 provided twice. Don't leak service/name on error. Require field
4970 names to be aligned to 4 bytes.
4972 * dbus/dbus-marshal.c: move byte swap stuff to header
4973 (_dbus_pack_int32): uscore-prefix
4974 (_dbus_unpack_int32): uscore-prefix
4975 (_dbus_unpack_uint32): export
4976 (_dbus_demarshal_string): add @todo complaining about use of
4978 (_dbus_marshal_get_field_end_pos): add @todo about bad error
4979 handling allowing corrupt data to go unchecked
4981 2003-01-08 Havoc Pennington <hp@redhat.com>
4983 * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
4984 to the select() as needed for authentication. (should be using
4985 _dbus_poll() not select, but for another day)
4987 * dbus/dbus.h: include dbus/dbus-protocol.h
4989 2003-01-08 Anders Carlsson <andersca@codefactory.se>
4991 * dbus/Makefile.am (dbusinclude_HEADERS): Install
4994 2003-01-08 Anders Carlsson <andersca@codefactory.se>
4996 * dbus/dbus-internals.c: (_dbus_type_to_string):
4997 New function that returns a string describing a type.
4999 * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
5000 * dbus/dbus-marshal.h:
5001 * dbus/dbus-message.c: (dbus_message_get_fields_valist),
5002 (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
5003 (dbus_message_iter_get_byte_array):
5004 * dbus/dbus-message.h:
5005 Add new convenience functions for appending and getting message fields.
5006 Also add demarshalling routines for byte arrays.
5008 2003-01-07 Anders Carlsson <andersca@codefactory.se>
5010 * dbus/dbus-connection-internal.h:
5011 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
5012 (_dbus_connection_get_next_client_serial),
5013 (dbus_connection_send_message):
5014 * dbus/dbus-internals.h:
5015 * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
5016 (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
5017 (_dbus_marshal_uint32), (_dbus_demarshal_double),
5018 (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
5019 (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
5020 (_dbus_verbose_bytes), (_dbus_marshal_test):
5021 * dbus/dbus-marshal.h:
5022 * dbus/dbus-message-internal.h:
5023 * dbus/dbus-message.c: (_dbus_message_set_client_serial),
5024 (dbus_message_write_header), (_dbus_message_lock),
5025 (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
5026 (dbus_message_get_name), (dbus_message_append_int32),
5027 (dbus_message_append_uint32), (dbus_message_append_double),
5028 (dbus_message_append_string), (dbus_message_append_byte_array),
5029 (dbus_message_get_fields_iter), (dbus_message_iter_ref),
5030 (dbus_message_iter_unref), (dbus_message_iter_has_next),
5031 (dbus_message_iter_next), (dbus_message_iter_get_field_type),
5032 (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
5033 (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
5034 (decode_header_data), (_dbus_message_loader_return_buffer),
5035 (message_iter_test), (_dbus_message_test):
5036 * dbus/dbus-message.h:
5037 * dbus/dbus-protocol.h:
5038 * dbus/dbus-test.c: (main):
5040 * glib/test-dbus-glib.c: (message_handler), (main):
5041 * test/echo-client.c: (main):
5042 * test/watch.c: (check_messages):
5043 Make messages sendable and receivable for real.
5045 2003-01-07 Anders Carlsson <andersca@codefactory.se>
5047 * dbus/dbus-marshal.c: (_dbus_marshal_double),
5048 (_dbus_marshal_string), (_dbus_marshal_byte_array):
5049 * dbus/dbus-message.c: (dbus_message_append_int32),
5050 (dbus_message_append_uint32), (dbus_message_append_double),
5051 (dbus_message_append_string), (dbus_message_append_byte_array):
5052 Handle OOM restoration.
5054 2003-01-07 Anders Carlsson <andersca@codefactory.se>
5056 * dbus/dbus-marshal.c: (_dbus_marshal_string),
5057 (_dbus_demarshal_string), (_dbus_marshal_test):
5058 * dbus/dbus-marshal.h:
5059 * dbus/dbus-message.c: (dbus_message_get_name),
5060 Document these functions.
5062 (dbus_message_append_int32), (dbus_message_append_uint32),
5063 (dbus_message_append_double), (dbus_message_append_string),
5064 (dbus_message_append_byte_array):
5065 * dbus/dbus-message.h:
5066 Add functions for adding message fields of different types.
5068 * dbus/dbus-protocol.h:
5069 Add the different types.
5071 2003-01-05 Havoc Pennington <hp@pobox.com>
5073 * bus/connection.c: implement routines for handling connections,
5074 first thing is keeping a list of owned services on each connection
5075 and setting up watches etc.
5077 * bus/services.c: implement a mapping from service names to lists
5080 * dbus/dbus-hash.c: add DBUS_HASH_POINTER
5082 * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
5083 to use static mutexes for global data
5085 * dbus/dbus-connection.c (dbus_connection_set_data): add new
5086 collection of functions to set/get application-specific data
5087 on the DBusConnection.
5089 2003-01-04 Havoc Pennington <hp@pobox.com>
5091 * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
5092 (_dbus_poll): new function
5094 * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
5097 * bus/loop.c: initial code for the daemon main loop
5099 2003-01-04 Havoc Pennington <hp@pobox.com>
5101 * test/watch.c (error_handler): make it safe if the error handler
5102 is called multiple times (if we s/error handler/disconnect
5103 handler/ we should just guarantee it's called only once)
5105 * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
5106 error handler on disconnect (it's quite possible we should
5107 just change the error handler to a "disconnect handler," I'm
5108 not sure we have any other meaningful errors)
5110 * configure.in: check for getpwnam_r
5112 * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
5113 dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
5114 mechanism as in SASL spec, using socket credentials
5116 * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
5117 (_dbus_send_credentials_unix_socket): new function
5119 * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
5121 (_dbus_write): only check errno if <0 returned
5122 (_dbus_write_two): ditto
5124 2003-01-02 Anders Carlsson <andersca@codefactory.se>
5126 * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
5127 (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
5128 (_dbus_marshal_test):
5129 * dbus/dbus-marshal.h:
5130 Add _dbus_marshal_byte_array and rename _dbus_marshal_string
5131 to _dbus_marshal_utf8_string. Also fix some tests.
5133 2002-12-28 Harri Porten <porten@kde.org>
5135 * configure.in: added check for C++ compiler and a very cheesy
5136 check for the Qt integration
5138 * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
5140 * qt/Makefile.am: added
5142 * qt/.cvsignore: added
5144 * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
5145 latter, added #ifdef QT_THREAD_SUPPORT guard.
5147 * dbus/Makefile.am: added missing headers for make dist
5149 2002-12-28 Kristian Rietveld <kris@gtk.org>
5151 * dbus/Makefile.am: fixup export-symbols-regex.
5153 2002-12-27 Anders Carlsson <andersca@codefactory.se>
5155 * acinclude.m4: Add this file and put the
5156 PKG_CHECK_MODULE macro in it.
5158 2002-12-27 Anders Carlsson <andersca@codefactory.se>
5160 * dbus/dbus-marshal.c: (_dbus_marshal_string),
5161 (_dbus_demarshal_double), (_dbus_demarshal_int32),
5162 (_dbus_demarshal_uint32), (_dbus_demarshal_string),
5163 (_dbus_marshal_test):
5164 Make the demarshalling routines align the pos argument.
5165 Add string marshalling tests and fix the obvious bugs
5168 2002-12-26 Havoc Pennington <hp@pobox.com>
5170 * dbus/dbus-auth.c: fixes fixes fixes
5172 * dbus/dbus-transport-unix.c: wire up support for
5173 encoding/decoding data on the wire
5175 * dbus/dbus-auth.c (_dbus_auth_encode_data)
5176 (_dbus_auth_decode_data): append to target string
5177 instead of nuking it.
5179 2002-12-26 Havoc Pennington <hp@pobox.com>
5181 * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
5182 WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
5185 * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
5186 avoid swap_bytes() overhead (ignoring possible assembly stuff for
5187 now). Main point is because I wanted unpack_uint32 to implement
5189 (_dbus_verbose_bytes): new function
5191 * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
5193 * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
5194 mechanism to handle a corrupt message stream
5195 (_dbus_message_loader_new): fix preallocation to only prealloc,
5198 * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
5199 (_dbus_string_test): enhance tests for copy/move and fix the
5202 * dbus/dbus-transport-unix.c: Hold references in more places to
5203 avoid reentrancy problems
5205 * dbus/dbus-transport.c: ditto
5207 * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
5208 leak reference count in no-message case
5210 * test/watch.c (do_mainloop): handle adding/removing watches
5211 during iteration over the watches. Also, ref the connection/server
5212 stored on a watch, so we don't try to mangle a destroyed one.
5214 * dbus/dbus-transport-unix.c (do_authentication): perform
5217 * dbus/dbus-auth.c (get_state): add a state
5218 AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
5219 (_dbus_auth_get_unused_bytes): append the unused bytes
5220 to the passed in string, rather than prepend
5222 * dbus/dbus-transport.c (_dbus_transport_init_base): create
5223 the auth conversation DBusAuth
5225 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
5226 (_dbus_transport_new_for_domain_socket): when creating a
5227 transport, pass in whether it's a client-side or server-side
5228 transport so we know which DBusAuth to create
5230 2002-12-03 Havoc Pennington <hp@pobox.com>
5232 * dbus/dbus-transport-unix.c (unix_finalize): finalize base
5233 _after_ finalizing the derived members
5234 (unix_connection_set): unref watch if we fail to add it
5236 * dbus/dbus-connection.c (dbus_connection_unref): delete the
5237 transport first, so that the connection owned by the
5238 transport will be valid as the transport finalizes.
5240 * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
5241 if necessary, and remove watches from the connection.
5243 * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
5245 2002-12-26 Anders Carlsson <andersca@codefactory.se>
5247 * dbus/dbus-marshal.c: (_dbus_marshal_string),
5248 (_dbus_demarshal_double), (_dbus_demarshal_int32),
5249 (_dbus_demarshal_uint32), (_dbus_demarshal_string),
5250 (_dbus_marshal_test):
5251 * dbus/dbus-marshal.h:
5252 Add string marshal functions and have the demarshal functions
5253 return the new position.
5255 2002-12-25 Havoc Pennington <hp@pobox.com>
5257 * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
5258 it is a simple protocol that just maps directly to SASL.
5260 * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
5261 initial implementation, not actually used yet.
5263 * dbus/dbus-string.c (_dbus_string_find): new function
5264 (_dbus_string_equal): new function
5265 (_dbus_string_base64_encode): new function
5266 (_dbus_string_base64_decode): new function
5268 2002-12-25 Anders Carlsson <andersca@codefactory.se>
5271 * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
5272 (_dbus_marshal_int32), (_dbus_marshal_uint32),
5273 (_dbus_demarshal_double), (_dbus_demarshal_int32),
5274 (_dbus_demarshal_uint32), (_dbus_marshal_test):
5275 * dbus/dbus-marshal.h:
5276 * dbus/dbus-protocol.h:
5277 * dbus/dbus-test.c: (main):
5279 Add un-optimized marshalling/demarshalling routines.
5281 2002-12-25 Harri Porten <porten@kde.org>
5283 * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
5285 2002-12-24 Zack Rusin <zack@kde.org>
5287 * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
5288 * qt/dbus-qt.h: skeleton with two sample implemenatation of the
5291 2002-12-24 Havoc Pennington <hp@pobox.com>
5293 * glib/dbus-gthread.c: fix include
5295 * glib/dbus-glib.h: rename DBusMessageHandler for now.
5296 I think glib API needs to change, though, as you don't
5297 want to use DBusMessageFunction, you want to use the
5298 DBusMessageHandler object. Probably
5299 dbus_connection_open_with_g_main_loop()
5300 and dbus_connection_setup_g_main_loop() or something like that
5301 (but think of better names...) that just create a connection
5302 that has watch/timeout functions etc. already set up.
5304 * dbus/dbus-connection.c
5305 (dbus_connection_send_message_with_reply): new function just to
5306 show how the message handler helps us deal with replies.
5308 * dbus/dbus-list.c (_dbus_list_remove_last): new function
5310 * dbus/dbus-string.c (_dbus_string_test): free a string that
5313 * dbus/dbus-hash.c: use memory pools for the hash entries
5314 (rebuild_table): be more paranoid about overflow, and
5315 shrink table when we can
5316 (_dbus_hash_test): reduce number of sprintfs and write
5317 valid C89. Add tests for case where we grow and then
5318 shrink the hash table.
5320 * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
5322 * dbus/dbus-connection.c (dbus_connection_register_handler)
5323 (dbus_connection_unregister_handler): new functions
5325 * dbus/dbus-message.c (dbus_message_get_name): new
5327 * dbus/dbus-list.c: fix docs typo
5329 * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
5330 an object representing a handler for messages.
5332 2002-12-16 Anders Carlsson <andersca@codefactory.se>
5335 * glib/dbus-gthread.c: (dbus_gthread_init):
5336 Don't use the gdbus prefix for public functions.
5338 2002-12-16 Anders Carlsson <andersca@codefactory.se>
5342 Add GLib checks and fixup .pc files
5346 * glib/dbus-gmain.c: (gdbus_connection_prepare),
5347 (gdbus_connection_check), (gdbus_connection_dispatch),
5348 (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
5349 (dbus_connection_gsource_new):
5350 * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
5351 (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
5352 * glib/test-dbus-glib.c: (message_handler), (main):
5355 2002-12-15 Harri Porten <porten@kde.org>
5357 * autogen.sh: check for libtoolize before attempting to use it
5359 * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
5362 * .cvsignore: ignore more stamp files
5364 * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
5366 * test/Makefile.am: added -I$(top_srcdir) to be able to compile
5367 without make install.
5369 2002-12-15 Havoc Pennington <hp@pobox.com>
5371 * dbus/dbus-threads.c: add thread stubs that a higher library
5372 layer can fill in. e.g. the GLib wrapper might fill them in with
5373 GThread stuff. We still need to use this thread API to
5374 thread-safe-ize the library.
5376 2002-12-12 Havoc Pennington <hp@pobox.com>
5378 * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
5379 below new interfaces and include fewer system headers.
5381 * dbus/dbus-sysdeps.c (_dbus_read): new function
5382 (_dbus_write): new function
5383 (_dbus_write_two): new function
5384 (_dbus_connect_unix_socket): new function
5385 (_dbus_listen_unix_socket): new function
5387 * dbus/dbus-message-internal.h: change interfaces to use
5390 2002-12-11 Havoc Pennington <hp@pobox.com>
5392 * dbus/dbus-types.h: add dbus_unichar
5394 * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
5396 * dbus/dbus-connection.c (dbus_connection_send_message): return
5399 * dbus/dbus-transport.c: include dbus-watch.h
5401 * dbus/dbus-connection.c: include dbus-message-internal.h
5403 * HACKING: add file with coding guidelines stuff.
5405 * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
5406 handling here, for security purposes (as in vsftpd). Not actually
5407 using this class yet.
5409 * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
5410 system/libc usage here, as in vsftpd, for ease of auditing (and
5411 should also simplify portability). Haven't actually moved all the
5412 system/libc usage into here yet.
5414 2002-11-25 Havoc Pennington <hp@pobox.com>
5416 * dbus/dbus-internals.c (_dbus_verbose): fix to not
5417 always print the first verbose message.
5419 2002-11-24 Havoc Pennington <hp@pobox.com>
5421 * test/echo-client.c, test/echo-server.c: cheesy test
5424 * configure.in (AC_CHECK_FUNCS): check for writev
5426 * dbus/dbus-message.c (_dbus_message_get_network_data): new
5429 * dbus/dbus-list.c (_dbus_list_foreach): new function
5431 * dbus/dbus-internals.c (_dbus_verbose): new function
5433 * dbus/dbus-server.c, dbus/dbus-server.h: public object
5434 representing a server that listens for connections.
5436 * dbus/.cvsignore: create
5438 * dbus/dbus-errors.h, dbus/dbus-errors.c:
5439 public API for reporting errors
5441 * dbus/dbus-connection.h, dbus/dbus-connection.c:
5442 public object representing a connection that
5443 sends/receives messages. (Same object used for
5444 both client and server.)
5446 * dbus/dbus-transport.h, dbus/dbus-transport.c:
5447 Basic abstraction for different kinds of stream
5448 that we might read/write messages from.
5450 2002-11-23 Havoc Pennington <hp@pobox.com>
5452 * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
5455 * dbus/dbus-test.c (main): add list test, and include
5456 dbus-test.h as intended
5458 * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
5459 (_dbus_hash_table_remove_int): return value indicates
5460 whether the entry existed to remove
5462 * dbus/dbus-list.c: add linked list utility class,
5465 * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
5468 2002-11-23 Havoc Pennington <hp@pobox.com>
5470 * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
5471 DBUS_END_DECLS to nothing, that should fix this once and for all
5473 * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
5475 * dbus/dbus-message.c, dbus/dbus-hash.c:
5476 add some missing @brief
5478 2002-11-23 Havoc Pennington <hp@pobox.com>
5480 * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
5481 to avoid confusing Doxygen
5483 * dbus/dbus-hash.c: @} not }@
5485 * dbus/dbus-message.c (struct DBusMessage): split out
5488 2002-11-23 Havoc Pennington <hp@pobox.com>
5490 * configure.in: pile on more warning flags if using gcc
5492 * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
5493 to document static functions
5495 * configure.in: add summary to end of configure so it
5496 looks nice and attractive
5498 * dbus/dbus-hash.c: finish implementation and write unit
5501 * configure.in: add --enable-tests to enable unit tests
5503 * dbus/dbus-test.c: test program to run unit tests
5504 for all files in dbus/*, initially runs a test for
5507 * dbus/dbus-internals.h: file to hold some internal utility stuff
5509 2002-11-22 Havoc Pennington <hp@redhat.com>
5511 * dbus/dbus-hash.c: copy in Tcl hash table, not yet
5512 "ported" away from Tcl
5514 * dbus/dbus-types.h: header for types such as dbus_bool_t
5516 2002-11-22 Havoc Pennington <hp@redhat.com>
5518 * dbus/dbus.h: fixups for doc warnings
5520 * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
5522 (QUIET): make it quiet so we can see warnings
5524 * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
5526 2002-11-22 Havoc Pennington <hp@redhat.com>
5528 * Makefile.am: include "Doxyfile" target in all-local
5530 * configure.in: generate the Doxyfile
5532 * Doxyfile.in: move Doxyfile here, so we can use
5533 configure to generate a Doxyfile with the right
5536 2002-11-22 Havoc Pennington <hp@redhat.com>
5538 * dbus/dbus-message.c: move inline docs into .c file
5540 * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
5541 so all docs are under doc/
5542 (MAN_EXTENSION): generate man pages. Use extension
5543 ".3dbus" which matches ".3qt" on my system,
5544 I guess this is OK, I don't know really.
5545 (FILE_PATTERNS): look for .c files not .h, makes sense
5548 2002-11-22 Havoc Pennington <hp@pobox.com>
5550 * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
5551 because any app can be a server, and any app can be a client,
5552 the bus is a special kind of server.
5554 Thu Nov 21 23:35:31 2002 Zack Rusin <zack@kde.org>
5556 * Doxyfile : adding. Still needs Makefile rules to be generated
5557 automatically (just run "doxygen" in the toplevel dir for now to
5560 * dbus/dbus-message.h : Adding sample docs (javadoc since
5561 resembles gtk-doc a little more)
5563 * dbus/dbus.h : Adding sample docs
5565 2002-11-21 Havoc Pennington <hp@redhat.com>
5567 * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
5568 so we can allow ourselves to include files directly,
5569 instead of having to use dbus.h
5571 * dbus/dbus.h: fill in
5573 * dbus/dbus-message.h: sketch out a sample header file.
5574 Include griping if you include it directly instead of
5577 * dbus/dbus-macros.h: new file with macros for extern "C",
5578 TRUE/FALSE, NULL, etc.
5580 * doc/file-boilerplate.c: put include guards in here
5582 2002-11-21 Havoc Pennington <hp@redhat.com>
5584 * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
5586 * COPYING: include the GPL as well, and license code
5587 under both AFL and GPL.
5589 2002-11-21 Havoc Pennington <hp@redhat.com>
5591 * acconfig.h: get rid of this
5593 * autogen.sh (run_configure): add --no-configure option
5595 * configure.in: remove AC_ARG_PROGRAM to make
5596 autoconf complain less. add AC_PREREQ.
5597 add AC_DEFINE third arg.
5599 2002-11-21 Anders Carlsson <andersca@codefactory.se>
5602 Fix references so we can distcheck.
5604 2002-11-21 Havoc Pennington <hp@redhat.com>
5606 * Initial module creation