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