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