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