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