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