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