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