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