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