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