2003-04-24 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / ChangeLog
1 2003-04-24  Havoc Pennington  <hp@redhat.com>
2
3         * configure.in: add --enable-checks
4
5         * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
6
7         * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
8         to use thread locks.
9         (_dbus_connection_handler_destroyed_locked): move some private
10         functions into proper docs group
11
12         * dbus/dbus-internals.h: add _dbus_return_if_fail,
13         _dbus_return_val_if_fail
14
15         Throughout: use dbus_return_if_fail
16
17 2003-04-23  James Willcox  <jwillcox@gnome.org>
18
19         * glib/dbus-glib.h:
20         * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
21         (dbus_connection_setup_with_g_main),
22         (dbus_server_setup_with_g_main):
23         * glib/test-dbus-glib.c: (main):
24         * glib/test-thread-client.c: (main):
25         * glib/test-thread-server.c: (new_connection_callback), (main):
26         * tools/dbus-monitor.c: (main):
27
28         Added a GMainContext argument to dbus_connection_setup_with_g_main()
29         and dbus_server_setup_with_g_main().
30
31 2003-04-20  Havoc Pennington  <hp@pobox.com>
32
33         * doc/dbus-specification.sgml: document the restrictions on
34         message and service names
35
36 2003-04-22  Havoc Pennington  <hp@redhat.com>
37
38         * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
39         support, and do some code cleanups to share more code and 
40         speed up array marshal/demarshal.
41
42         * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
43
44         * configure.in: generate dbus-arch-deps.h
45
46         * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
47         64-bit typecodes
48
49 2003-04-22  Havoc Pennington  <hp@redhat.com>
50
51         * test/data/valid-messages/opposite-endian.message: fix test
52         to use proper type for rply field
53
54         * test/data/invalid-messages: add tests for below validation
55         
56         * dbus/dbus-message.c (decode_header_data): validate field types,
57         and validate that named fields are valid names
58         (decode_name_field): consider messages in the
59         org.freedesktop.Local. namespace to be invalid.
60
61         * dbus/dbus-string.c (_dbus_string_validate_name): new
62
63 2003-04-19  Havoc Pennington  <hp@pobox.com>
64
65         * bus/driver.c (bus_driver_handle_hello): check limits and 
66         return an error if they are exceeded.
67
68         * bus/connection.c: maintain separate lists of active and inactive
69         connections, and a count of each. Maintain count of completed
70         connections per user. Implement code to check connection limits.
71
72         * dbus/dbus-list.c (_dbus_list_unlink): export
73
74         * bus/bus.c (bus_context_check_security_policy): enforce a maximum
75         number of bytes in the message queue for a connection
76
77 2003-04-18  Havoc Pennington  <hp@pobox.com>
78
79         * dbus/dbus-auth.c (record_mechanisms): memleak fixes
80
81         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
82         memleaks
83
84         * dbus/dbus-keyring.c (add_new_key): fix a memleak, and 
85         on realloc be sure to update the pointer in the keyring
86
87         * dbus/dbus-string.c (_dbus_string_zero): compensate for align
88         offset to avoid writing to unallocated memory
89
90         * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
91         try the next mechanism, so we properly handle OOM
92
93         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
94         on OOM.
95         (_dbus_keyring_new): fix OOM bug
96         (_dbus_keyring_new_homedir): always set error; impose a maximum
97         number of keys we'll load from the file, mostly to speed up the
98         test suite and make its OOM checks more useful, but also for
99         general sanity.
100
101         * dbus/dbus-auth.c (process_error_server): reject authentication
102         if we get an error from the client
103         (process_cancel): on cancel, send REJECTED, per the spec
104         (process_error_client): send CANCEL if we get an error from the
105         server.
106
107 2003-04-18  Havoc Pennington  <hp@pobox.com>
108         
109         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
110         debug spew
111
112         * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
113         handling problem
114
115         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
116         about DBUS_TEST_HOMEDIR once
117
118         * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
119         the environment
120         
121         * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
122         config file so we test the right thing
123
124         Throughout: assorted docs improvements
125
126 2003-04-18  Havoc Pennington  <hp@pobox.com>
127
128         * glib/dbus-gmain.c: adapt to watch changes
129
130         * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
131
132         * dbus/dbus-server.h: remove dbus_server_handle_watch
133
134         * dbus/dbus-connection.h: remove dbus_connection_handle_watch
135
136         * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
137         like DBusTimeout, so we don't need dbus_connection_handle_watch
138         etc.
139
140 2003-04-17  Havoc Pennington  <hp@redhat.com>
141
142         * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
143         database usage so it all goes via the DBusUserDatabase cache.
144
145 2003-04-17  Havoc Pennington  <hp@redhat.com>
146
147         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
148         there was an OOM watch we skipped, we always return TRUE so we
149         iterate again to have a look at it again. Fixes test suite hang.
150         Code rearrangement also lets us lose some memset and only iterate
151         over callbacks once.
152
153         * bus/driver.c (bus_driver_handle_message): sense of test for
154         reply was backward
155
156 2003-04-16  Havoc Pennington  <hp@pobox.com>
157
158         * doc/dbus-specification.sgml: make spec say serials are unsigned
159
160         * dbus/dbus-message.h: change message serials to unsigned
161
162         * dbus/dbus-connection.c: adapt to message serials being unsigned
163         
164 2003-04-15  Havoc Pennington  <hp@pobox.com>
165
166         * bus/bus.c: create and keep around a shared DBusUserDatabase 
167         object.
168
169         * bus/connection.c (bus_connection_get_groups): don't cache
170         groups for user in the connection object, since user database 
171         object now does that.
172
173 2003-04-16  Havoc Pennington  <hp@redhat.com>
174
175         * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
176         list of size counters
177         (_dbus_message_loader_putback_message_link): put back a popped link
178
179         * dbus/dbus-connection.c
180         (dbus_connection_set_max_live_messages_size): rename 
181         max_received_size
182         (dbus_connection_get_outgoing_size): get size of outgoing 
183         queue
184         (_dbus_connection_set_connection_counter): remove this cruft
185         
186 2003-04-14  Havoc Pennington  <hp@redhat.com>
187
188         * dbus/dbus-userdb.c: user database abstraction, mostly to get
189         caching, but at some point we might want to be able to use a
190         different database.
191
192         * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
193         SHA1 conf file to test the sha1 auth mechanism, since the regular
194         test always uses EXTERNAL when available.
195
196         * configure.in,
197         test/data/valid-config-files/debug-allow-all-sha1.conf.in: 
198         add conf file that requires use of sha1 auth
199
200 2003-04-13  Havoc Pennington  <hp@pobox.com>
201         
202         * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
203         from Philip Blundell to send messages and monitor them.
204         
205 2003-04-13  Havoc Pennington  <hp@pobox.com>
206
207         * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting 
208         callbacks
209
210         * test/data/valid-config-files/debug-allow-all.conf.in: allow all
211         users
212
213         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
214         fix to only recover unused bytes if we're already authenticated
215         (_dbus_transport_get_is_authenticated): fix to still mark us 
216         authenticated if there are unused bytes.
217
218         * bus/dispatch.c: implement security policy checking
219         
220         * bus/connection.c (bus_transaction_send_from_driver): new
221
222         * bus/bus.c (bus_context_check_security_policy): new
223
224         * bus/dispatch.c (send_service_nonexistent_error): delete this,
225         now we just set the DBusError and it gets converted to an error
226         reply.
227
228         * bus/connection.c (allow_user_function): enable code using actual
229         data from the config file
230
231         * bus/policy.c (list_allows_user): handle wildcard rules for
232         user/group connection perms
233
234 2003-04-13  Havoc Pennington  <hp@pobox.com>
235
236         * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
237         
238         * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
239
240         * bus/policy.c (bus_policy_append_mandatory_rule)
241         (bus_policy_append_default_rule, bus_policy_append_user_rule)
242         (bus_policy_append_group_rule): new functions
243
244 2003-04-12  Havoc Pennington  <hp@pobox.com>
245
246         * bus/config-parser.c (bus_config_parser_new): fix a memleak
247
248         * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
249         the pid/gid/uid, just for paranoia.
250
251         * test/break-loader.c (randomly_do_n_things): find a byte
252         containing a type code, and randomly change it to a different 
253         type code.
254
255 2003-04-12  Havoc Pennington  <hp@pobox.com>
256
257         * bus/policy.h: change BusPolicy to be the thing from the config
258         file, and rename old BusPolicy to BusClientPolicy
259
260         * bus/bus.c, bus/connection.c, bus/config-parser.c: change to 
261         match change in how policy works
262
263         * dbus/dbus-internals.h: mark assert_not_reached as
264         __attribute((noreturn))__
265
266 2003-04-11  Havoc Pennington  <hp@redhat.com>
267
268         * doc/dbus-specification.sgml: fix a spot with the wrong name for 
269         the broadcast service. Use boolean return for ServiceExists.
270
271 2003-04-11  Havoc Pennington  <hp@redhat.com>
272
273         * configure.in: add another directory to look for qt in.
274
275 2003-04-11  Havoc Pennington  <hp@redhat.com>
276
277         * AUTHORS: add Colin Walters
278
279 2003-04-11  Havoc Pennington  <hp@redhat.com>
280
281         * NEWS: update
282
283         * configure.in: 0.9
284
285 2003-04-11  Havoc Pennington  <hp@redhat.com>
286
287         * bus/messagebus.in: remove pid file when stopping the
288         message bus, since the bus won't have privileges to remove it
289         itself.
290
291 2003-04-11  Havoc Pennington  <hp@redhat.com>
292
293         * bus/bus.c (bus_context_new): move credentials change after
294         creating pidfile
295
296 2003-04-11  Havoc Pennington  <hp@pobox.com>
297
298         * test/decode-gcov.c: add "below average functions" to the
299         coverage report, and change how some of the code works.
300
301         * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
302         not in the coverage stats.
303
304         * test/test-service.c (main): use _dbus_verbose not fprintf in a
305         couple places so running the test suite doesn't result in megaspam.
306
307 2003-04-11  Havoc Pennington  <hp@pobox.com>
308
309         * bus/dispatch.c (check_existent_service_activation): accept a no
310         memory error in a place we didn't before
311
312         * bus/test.c (bus_test_run_everything): remove hacky "do it twice
313         in case the first one failed," since the test suite is less
314         broken now.
315
316 2003-04-10  Havoc Pennington  <hp@pobox.com>
317
318         * bus/dispatch.c (check_segfault_service_activation): add test
319         for launching an executable that just crashes.
320
321         * test/test-segfault.c (main): try setting coredumpsize to 0 so we
322         don't leave a million cores. We'll see how portable this is.
323
324 2003-04-10  Havoc Pennington  <hp@pobox.com>
325
326         * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
327         the possible parent failures before we fork, so that we don't
328         fail to create a babysitter after creating the child.
329
330         * bus/activation.c (bus_activation_activate_service): kill child
331         if we don't successfully complete the activation.
332
333 2003-04-10  Havoc Pennington  <hp@redhat.com>
334
335         * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
336         the connection if it's disconnected
337
338         * bus/activation.c (bus_activation_service_created): use new
339         transaction features to roll back removal of pending activation if
340         we don't successfully create the service after all. Don't remove
341         pending activation if the function fails.
342
343         * dbus/dbus-list.c (_dbus_list_insert_before_link) 
344         (_dbus_list_insert_after_link): new code to facilitate
345         services.c fixes
346
347         * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
348         new functionality, so we can preallocate the ability to insert
349         into a hash table.
350
351         * bus/connection.c (bus_transaction_add_cancel_hook): new function
352         allowing us to put custom hooks in a transaction to be used for 
353         cancelling said transaction
354
355         * doc/dbus-specification.sgml: add some discussion of secondary
356         service owners, and disallow zero-length service names
357
358         * bus/services.c (bus_registry_acquire_service): new function,
359         splits out part of bus_driver_handle_acquire_service() and fixes 
360         a bug where we didn't remove the service doing the acquiring 
361         from the secondary queue if we failed to remove the current owner
362         from the front of the queue.
363         
364 2003-04-10  Alexander Larsson  <alexl@redhat.com>
365
366         * doc/dbus-specification.sgml:
367         s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
368         
369 2003-04-10  Alexander Larsson  <alexl@redhat.com>
370
371         * bus/.cvsignore:
372         * glib/.cvsignore:
373         * test/.cvsignore:
374         Added files to cvsignore
375         
376         * dbus/dbus-message.h:
377         * dbus/dbus-message.c: (dbus_message_iter_get_named):
378         Make get_named() take two out argument and return a boolean.
379         (dbus_message_iter_get_args_valist):
380         Update usage of get_named().
381         (dbus_message_iter_append_byte):
382         Fix typo
383         (dbus_message_iter_append_named)
384         Fix typo
385         (message_iter_test), (check_message_handling_type), (_dbus_message_test):
386         More tests.
387
388 2003-04-10  Alexander Larsson  <alexl@redhat.com>
389
390         * dbus/dbus-marshal.[ch]:
391         Add array_type_pos argument to _dbus_marshal_validate_arg.
392         Let you pass a NULL end_pos to _dbus_marshal_validate_type.
393         
394         * dbus/dbus-message.[ch]:
395         Multi-dimensional arrays have full type specification in the
396         outermost array. Iter code re-arranged to handle this.
397         Added some more iter tests.
398         
399         * doc/dbus-specification.sgml:
400         Add me to authors.
401         Remove old FIXME.
402         Update new array encoding description.
403         Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
404         
405         * test/data/invalid-messages/array-with-mixed-types.message:
406         * test/data/valid-messages/array-of-array-of-uint32.message:
407         Change to the new array format.
408         
409         * test/data/invalid-messages/too-short-dict.message:
410         Fix bug in test.
411         
412         * test/data/valid-messages/recursive-types.message:
413         Fix up and extend test.
414
415 2003-04-10  Havoc Pennington  <hp@pobox.com>
416
417         * bus/dispatch.c: lots of fixes
418         
419         * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
420         (_dbus_loop_iterate): remove old "quit if no callbacks" code,
421         that was crack, broke the test service.
422
423         * dbus/dbus-transport.c (_dbus_transport_open): fix error
424         handling to avoid piling up errors if we get a failure on the 
425         first address.
426
427         * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
428         pid in assertion failures.
429
430         * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
431         to some fixed size of file descriptor array. Don't return TRUE
432         anytime a timeout exists, that led to lots of busy loop silliness
433         in the tests.
434
435 2003-04-09  Havoc Pennington  <hp@redhat.com>
436
437         * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
438         I'd checked this in earlier but hadn't.
439
440 2003-04-09  Havoc Pennington  <hp@redhat.com>
441
442         * bus/dispatch.c (bus_dispatch_test): get a bit further through
443         the activation test (man this is getting old!)
444
445 2003-04-09  Havoc Pennington  <hp@redhat.com>
446
447         * test/test-utils.c: use dispatch status function to fix this up
448
449         * bus/connection.c (connection_watch_callback): don't dispatch
450         from here
451         (connection_timeout_callback): don't dispatch from here
452         (bus_connections_setup_connection): set the dispatch status function
453         (bus_connection_disconnected): unset it
454
455         * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
456         used to add a connection to be dispatched
457         (_dbus_loop_iterate): do the dispatching at the end of each
458         iteration
459
460         * dbus/dbus-connection.c
461         (dbus_connection_set_dispatch_status_function): new function
462         allowing us to fix up main loop usage
463         (_dbus_connection_last_unref): free all the various function
464         user data
465         (dbus_connection_dispatch): call the DispatchStatusFunction 
466         whenever this function returns
467         (dbus_connection_handle_watch): call DispatchStatusFunction
468         (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
469         (reply_handler_timeout): call DispatchStatusFunction
470         (dbus_connection_flush): call DispatchStatusFunction
471
472 2003-04-09  Havoc Pennington  <hp@redhat.com>
473
474         * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and 
475         a memory leak
476
477         * bus/dispatch.c (check_service_activated): fix bug in test
478
479         * dbus/dbus-mainloop.c (check_timeout): fix this up
480
481         * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
482         verbose output so we can sort out output from different processes,
483         e.g. in the activation case.
484
485 2003-04-08  Colin Walters  <walters@gnu.org>
486  
487         * bus/bus.c (struct BusContext) [pidfile]: New member, to store
488         the pid file.
489         (bus_context_new): Set it.
490         (bus_context_unref): Use it to delete the pid file.
491  
492 2003-04-08  Havoc Pennington  <hp@redhat.com>
493
494         * test/data/invalid-messages/array-with-mixed-types.message:
495         regression test that fails for the moment
496
497         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
498         tests for convenience
499
500         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
501         array of nil, it broke things.
502
503         * test/data/invalid-messages/array-of-nil.message: regression test
504
505         * test/data/valid-messages/array-of-array-of-uint32.message:
506         happened to write this so added it to suite
507         
508 2003-04-08  Havoc Pennington  <hp@redhat.com>
509
510         * bus/driver.c (bus_driver_handle_acquire_service): init
511         retval/reply before checking name
512
513         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
514         recursion depth argument
515
516         * dbus/dbus-message.h (struct DBusMessageIter): put some padding
517         in the public struct for future extension
518
519         * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
520         typo
521
522         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
523         message
524
525         * doc/dbus-specification.sgml: fix typo
526
527 2003-04-08  Alexander Larsson  <alexl@redhat.com>
528
529         Implemented recursive types, named types and new-style iters
530
531         * bus/driver.c:
532         * glib/test-thread-client.c: (thread_func):
533         * glib/test-thread-server.c: (handle_test_message):
534         * test/test-service.c: (handle_echo):
535         Update to new api
536         
537         * dbus/Makefile.am:
538         * dbus/dbus-dict.c:
539         * dbus/dbus-dict.h:
540         * dbus/dbus.h
541         Remove DBusDict
542
543         * dbus/dbus-internals.c: (_dbus_type_to_string):
544         Update for new types.
545         
546         * dbus/dbus-marshal.[ch]:
547         Implement recursive types and the new marshalling format.
548         Remove hardcoded dict marshalling.
549         Marshal named types.
550         
551         * dbus/dbus-message-builder.c:
552         Add BYTE_ARRAY.
553         Remove references to old types
554         
555         * dbus/dbus-message.[ch]:
556         New non-refcounted iter API that supports recursive iters.
557         Use iters for appending, including support for recursive
558         iters.
559         Add byte and named type support.
560         Update everything to new marshalling formats.
561         Add tests for new API.
562         
563         * dbus/dbus-protocol.h:
564         Remove old array types.
565         Add types: BYTE, ARRAY, DICT, NAMED
566         
567         * dbus/dbus-string.c:
568         * dbus/dbus-sysdeps.c:
569         Make parse_double locale safe.
570         
571         * dbus/dbus-test-main.c:
572         Call setlocale.
573         
574         * dbus/dbus-test.c:
575         Kill dict test
576         
577         * doc/dbus-specification.sgml:
578         Update spec
579         
580         * test/data/incomplete-messages/missing-body.message:
581         * test/data/invalid-messages/bad-boolean.message:
582         * test/data/invalid-messages/bad-boolean-array.message:
583         * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
584         * test/data/invalid-messages/boolean-has-no-value.message-raw:
585         * test/data/invalid-messages/too-short-dict.message:
586         * test/data/valid-messages/dict-simple.message:
587         * test/data/valid-messages/dict.message:
588         * test/data/valid-messages/emptiness.message:
589         * test/data/valid-messages/lots-of-arguments.message:
590         * test/data/valid-messages/no-padding.message:
591         * test/data/valid-messages/recursive-types.message:
592         Add missing NAME fields
593         Fix up dicts & arrays
594         
595         * test/data/invalid-messages/dict-with-nil-value.message:
596         Removed, this is not invalid anymore.
597         
598         * test/data/valid-messages/recursive-types.message:
599         Add new test for deeply recursive types.
600
601 2003-04-07  Havoc Pennington  <hp@pobox.com>
602
603         * bus/driver.c (bus_driver_handle_acquire_service): return an
604         error if you try to acquire a service that starts with ':'
605
606 2003-04-07  Havoc Pennington  <hp@redhat.com>
607
608         * doc/dbus-specification.sgml: require that base service names 
609         start with ':' and that the base service is created/deleted 
610         as first and last things a connection does on the bus
611
612         * bus/dispatch.c (check_existent_service_activation): lots more 
613         work on the activation test; it doesn't fully pass yet...
614
615         * test/test-service.c (main): fix so we don't memleak the
616         connection to the message bus
617         (filter_func): accept a message asking us to exit
618
619 2003-04-06  Havoc Pennington  <hp@pobox.com>
620
621         * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h, 
622         from Colin Walters
623
624         * configure.in: fixes to Qt detection from Colin Walters
625
626         * doc/Makefile.am: Only remove generated docbook dirs if they
627         exist, from Colin Walters
628
629         * dbus/dbus-bus.c: change how we set well-known connections to
630         NULL, so that it works if a single connection is stored in 
631         two well-known array slots.
632
633         * test/Makefile.am: remove a lot of stuff that isn't immediately
634         useful, it's in CVS history if we want it.
635
636         * test/test-service.c: use dbus-mainloop instead of that
637         watch.[hc] crack
638
639 2003-04-06  Havoc Pennington  <hp@pobox.com>
640
641         * dbus/Makefile.am: split lists of sources into stuff that goes in
642         the library, util functions that go in the lib and are also used
643         elsewhere, and util functions that are used in tests/daemon but
644         don't go in the lib.
645
646         * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc] 
647         here so it can be used in test binaries also
648
649 2003-04-06  Havoc Pennington  <hp@pobox.com>
650
651         * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
652         here in the parent process, so we can return an error if it
653         fails. Also, move some of the code into the child so the parent 
654         is less hosed if we fail midway through.
655
656         * bus/bus.c (bus_context_new): move pidfile detection further up 
657         in the function, before we start overwriting sockets and such.
658
659         * bus/messagebus.in: adjust this a bit, not sure if it will work.
660
661         * configure.in: add --with-system-pid-file and --with-system-socket
662
663 2003-04-06  Colin Walters  <walters@verbum.org>
664
665         * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
666
667         * bus/system.conf.in: Declare a pidfile.
668
669         * bus/bus.c (bus_context_new): Test for an existing pid file, and
670         create one (if appropriate).
671
672         * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
673         (struct BusConfigParser) [pidfile]: New.
674         (element_type_to_name, merge_included, start_busconfig_child)
675         (bus_config_parser_end_element, bus_config_parser_content): Handle it.
676         (bus_config_parser_unref): Free it.
677         (bus_config_parser_get_pidfile): New function.
678         
679         * bus/config-parser.h (_dbus_write_pid_file): Prototype.
680
681         * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
682
683         * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
684         
685         * dbus/dbus-sysdeps.h: Prototype it.
686
687 2003-04-06  Havoc Pennington  <hp@pobox.com>
688
689         * bus/bus.c (bus_context_new): print the address in here, rather
690         than in main(), because we need to do it before forking the daemon
691
692         * bus/dispatch.c (send_service_nonexistent_error): set the sender 
693         on the service nonexistent error
694
695         * bus/driver.c (bus_driver_handle_acquire_service): set the
696         sender on the AcquireService reply
697
698         * test/data/valid-config-files/debug-allow-all.conf.in: Make test
699         server also listen on a UNIX socket so services can connect to it.
700
701 2003-04-06  Havoc Pennington  <hp@pobox.com>
702
703         * dbus/dbus-threads.c: Redo how the fake debug mutexes are done 
704         so it detects deadlocks and also we actually init threads when 
705         debugging.
706
707 2003-04-06  Havoc Pennington  <hp@pobox.com>
708
709         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
710         save the domain socket name, and unlink it when we disconnect the
711         server. Means that at least when we exit normally, we won't leave
712         a bunch of junk in /tmp
713
714         * dbus/dbus-transport-unix.c
715         (_dbus_transport_new_for_domain_socket): code cleanup (nicer
716         memory management). (I was making a real change here but then
717         didn't)
718
719 2003-04-06  Havoc Pennington  <hp@pobox.com>
720
721         * bus/bus.c (bus_context_new): fix wrong handling of
722         server_data_slot_unref() in the error case. 
723
724         * dbus/dbus-internals.h (_dbus_assert): change so it passes
725         "(condition) != 0" to _dbus_real_assert so that
726         "_dbus_assert (pointer)" doesn't cause a warning
727
728         * bus/main.c (main): accept --print-address option to print out
729         the message bus address
730
731         * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
732
733         * dbus/dbus-transport.c (_dbus_transport_open): special error for
734         "tmpdir" option to unix: address on client side
735
736         * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option 
737         to unix: address
738         
739         * configure.in (TEST_SOCKET_DIR): locate a temporary directory 
740         we can use to create sockets in the test suite.
741
742         * bus/main.c (signal_handler): on SIGTERM, exit the daemon
743         cleanly. To be used for testing.
744
745         * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
746
747         * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
748
749         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
750         handle trying to call this when there's no servers active
751
752 2003-04-05  Havoc Pennington  <hp@pobox.com>
753
754         * NEWS: update
755
756         * configure.in: 0.8
757
758 2003-04-05  Havoc Pennington  <hp@pobox.com>
759
760         * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't 
761         crash on startup. Need to get "try starting the daemon" 
762         in the test suite I guess. ;-)
763
764         * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
765         tracked the number of open connections; it's better done in 
766         application-specific code as you want it to span all servers etc.
767
768 2003-04-05  Havoc Pennington  <hp@pobox.com>
769
770         * bus/Makefile.am (install-data-hook): add missing DESTDIR, 
771         patch from Colin Walters
772
773 2003-04-05  Havoc Pennington  <hp@pobox.com>
774
775         * doc/config-file.txt (Elements): fix docs of <auth> to reflect 
776         reality; in fact multiple mechanisms are allowed.
777
778         * dbus/dbus-internals.c (_dbus_real_assert)
779         (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
780         _dbus_assert_not_reached() into functions, so that they don't show
781         up in basic block counts for test coverage, and don't use up as
782         much disk space. Does mean slower execution speed though, so
783         assumes --disable-asserts is the normal production case.
784
785 2003-04-05  Havoc Pennington  <hp@pobox.com>
786
787         * test/Makefile.am (dist-hook): also dist *.in files
788
789         * NEWS: update
790
791         * configure.in: 0.7
792         
793 2003-04-05  Havoc Pennington  <hp@pobox.com>
794
795         * dbus/dbus-string.c: docs warning
796         
797         * dbus/dbus-spawn.c: missing docs
798
799         * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
800
801 2003-04-05  Havoc Pennington  <hp@pobox.com>
802
803         * bus/loop.c (bus_loop_iterate): fix the timeout code, using 
804         magic from GLib
805
806         * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid 
807         to -1 once we've reaped the babysitter
808         (_dbus_babysitter_handle_watch): do as much work as we can, not
809         just one go of it
810
811         * bus/activation.c: add code using DBusBabysitter so that we
812         handle it when a service fails to start up properly.
813         (bus_activation_service_created): don't remove the activation
814         entries as we go, just let them get removed when we free the pending
815         activation. Unref reply messages after sending them.
816
817 2003-04-05  Havoc Pennington  <hp@pobox.com>
818
819         * test/decode-gcov.c (main): print per-directory stats in the report
820
821         * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
822
823 2003-04-05  Havoc Pennington  <hp@pobox.com>
824
825         * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
826
827         * test/decode-gcov.c: hack up a little program to suck data 
828         out of gcov files. Yes this is sort of silly.
829
830         * configure.in: define something in config.h and do an
831         AM_CONDITIONAL when gcov is enabled
832
833 2003-04-04  Havoc Pennington  <hp@redhat.com>
834
835         * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
836         return a "babysitter" object that is used to monitor the status of
837         the spawned process and reap it when required.
838
839         * test/test-segfault.c, test/test-exit.c,
840         test/test-sleep-forever.c: binaries that do various lame things, 
841         used in the test suite.
842
843         * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
844         
845 2003-04-03  Havoc Pennington  <hp@pobox.com>
846
847         * dbus/dbus-spawn.c: Move dbus-spawn into a separate file 
848         in preparation for modifying it, dbus-sysdeps is getting 
849         a bit unmanageable.
850
851 2003-04-03  Havoc Pennington  <hp@redhat.com>
852
853         * bus/loop.h, bus/loop.c: make the mainloop an object so we can
854         have multiple ones
855
856         * bus/*.[hc]: adapt to mainloop change
857
858 2003-04-03  Havoc Pennington  <hp@redhat.com>
859
860         * bus/activation.c (load_directory): fix up memleaks
861         (bus_activation_entry_free): free the entry
862
863         * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
864         we get one from the message bus; fix memleaks.
865
866         * dbus/dbus-message.c (dbus_set_error_from_message): new function
867
868 2003-04-03  Havoc Pennington  <hp@pobox.com>
869
870         * bus/config-parser.c (bus_config_parser_unref): free 
871         list of mechanisms, bug discovered by test suite enhancements
872         (putting system.conf and session.conf into suite)
873
874         * test/Makefile.am, test/test-service.c: add placeholder for a
875         test service that we'll activate as part of test suite. Doesn't 
876         do anything yet.
877
878         * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by 
879         setting NULL value, and use system malloc not dbus_malloc() 
880         when we have unavoidable memleakage.
881
882         * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
883         didn't work, and support DBUS_BUS_ACTIVATION.
884         
885         * bus/activation.c (child_setup): pass our well-known bus type to
886         the child
887
888         * bus/config-parser.c: support <type> to specify well-known type
889
890         * doc/dbus-specification.sgml: document the env variables to 
891         locate well-known buses and find service activator
892
893 2003-04-02  Havoc Pennington  <hp@redhat.com>
894
895         * test/Makefile.am (all-local): add a rule to copy tests to
896         builddir, so we can have generated tests. Use this to remove the
897         silly hack for testing system.conf and session.conf. Will use this 
898         shortly to generate .service files pointing to test binaries.
899
900 2003-04-02  Havoc Pennington  <hp@redhat.com>
901
902         * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
903         current alloc and needed new length, not max of the doubled
904         allocation and needed new length. Also, when building tests, 
905         don't do the double-allocation stuff, just realloc every time.
906
907 2003-04-02  Havoc Pennington  <hp@redhat.com>
908
909         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
910         in error messages
911         (_dbus_string_get_dirname): new
912         (_dbus_sysdeps_test): new
913         (_dbus_directory_open): include dirnames in error messages
914
915         * bus/config-parser.c: interpret <include> and <includedir> and
916         <servicedir> relative to config file location if the given
917         filename is not absolute.
918
919         * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
920
921 2003-04-02  Havoc Pennington  <hp@redhat.com>
922
923         * bus/connection.c (bus_transaction_send_error_reply): set sender
924         service for the error, and unref the reply on success
925
926         * bus/activation.c: convert to use BusTransaction so OOM can be
927         handled correctly
928         (bus_activation_service_created): set sender of the message
929
930 2003-04-01  Havoc Pennington  <hp@redhat.com>
931
932         * bus/config-parser.c, bus/bus.c: implement <servicedir> and
933         <includedir> (at least mostly)
934
935         * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
936         first, then the user ID
937
938 2003-04-01  Havoc Pennington  <hp@pobox.com>
939
940         * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
941         function
942
943         * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
944
945         * dbus/dbus-internals.c (_dbus_dup_string_array): new function
946
947         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
948         socket 0777, and unlink any existing socket.
949
950         * bus/bus.c (bus_context_new): change our UID/GID and fork if
951         the configuration file so specifies; set up auth mechanism 
952         restrictions
953
954         * bus/config-parser.c (bus_config_parser_content): add support
955         for <fork> option and fill in code for <auth> 
956
957         * bus/system.conf.in: add <fork/> to default configuration, 
958         and limit auth mechanisms to EXTERNAL
959
960         * doc/config-file.txt (Elements): add <fork>
961
962         * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
963         (_dbus_change_identity): new function
964
965 2003-03-31  Havoc Pennington  <hp@redhat.com>
966
967         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket) 
968         (_dbus_listen_unix_socket): fix off-by-one error in null
969         termination spotted by Nalin
970
971 2003-03-31  Havoc Pennington  <hp@redhat.com>
972
973         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
974         DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
975         having a real home directory available.
976
977 2003-03-31  Havoc Pennington  <hp@redhat.com>
978
979         * bus/Makefile.am (install-data-hook): create /var/run/dbus
980
981         * bus/messagebus.in: add init script for Red Hat /etc/init.d
982
983         * configure.in: add support for specifying a style of init script
984         to install
985
986 2003-03-31  Havoc Pennington  <hp@redhat.com>
987
988         Fix some annoying DBusString API and fix all affected code.
989         
990         * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
991         max_length argument
992         (_dbus_string_get_data): change to return string instead of using 
993         an out param
994         (_dbus_string_get_const_data): ditto
995         (_dbus_string_get_data_len): ditto
996         (_dbus_string_get_const_data_len): ditto
997
998 2003-03-31  Havoc Pennington  <hp@redhat.com>
999
1000         * bus/main.c (main): fix up the command line arguments to be nicer
1001
1002 2003-03-31  Havoc Pennington  <hp@redhat.com>
1003
1004         * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
1005         define DBUS_SYSTEM_BUS_PATH as we want to compile in the same 
1006         final location that lands in the config file
1007
1008         * bus/config-loader-expat.c (bus_config_load): fix type of
1009         XML_Parser variable
1010
1011         * doc/TODO: remove TODO item for dbus_bus_get()
1012
1013         * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
1014
1015 2003-03-31  Havoc Pennington  <hp@pobox.com>
1016
1017         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
1018         (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
1019         argument since they are always client side
1020
1021         * dbus/dbus-server.c (dbus_server_get_address): new function
1022
1023         * bus/main.c (main): take the configuration file as an argument.
1024
1025         * test/data/valid-config-files/debug-allow-all.conf: new file to 
1026         use with dispatch.c tests for example
1027
1028         * bus/test-main.c (main): require test data dir
1029
1030         * bus/bus.c (bus_context_new): change this to take a
1031         configuration file name as argument
1032
1033         * doc/config-file.txt (Elements): add <servicedir>
1034
1035         * bus/system.conf, bus/session.conf: new files
1036         
1037         * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
1038         well-known socket if none set
1039
1040         * configure.in: create system.conf and session.conf
1041
1042 2003-03-30  Havoc Pennington  <hp@pobox.com>
1043
1044         * bus/config-parser.c: hacking
1045         
1046         * dbus/dbus-memory.c: don't use DBusList for the list of stuff 
1047         to shut down, since it could cause weirdness with the DBusList
1048         lock
1049
1050         * dbus/dbus-list.c (_dbus_list_test): add tests for the
1051         link-oriented stack routines
1052         (alloc_link): free the mempool if the first alloc from it fails
1053
1054         * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
1055
1056         * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
1057         from GLib
1058         (_dbus_string_skip_white): new
1059
1060         * doc/config-file.txt (Elements): add <includedir>
1061
1062 2003-03-28  Havoc Pennington  <hp@pobox.com>
1063
1064         * dbus/dbus-string.c (_dbus_string_copy_data_len)
1065         (_dbus_string_copy_data): new functions
1066
1067 2003-03-28  Anders Carlsson  <andersca@codefactory.se>
1068
1069         * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
1070         * dbus/dbus-bus.h:
1071         Add dbus_bus_get.
1072         
1073         * dbus/dbus-memory.c:
1074         Fix a doc comment.
1075         
1076 2003-03-28  Havoc Pennington  <hp@pobox.com>
1077
1078         * bus/test.c (bus_test_flush_bus): remove the sleep from here, 
1079         I think it may have just been superstition. Not sure.
1080
1081         * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
1082         failures that were not being handled.
1083
1084         * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
1085
1086         * dbus/dbus-memory.c: add ability to set number of mallocs in a
1087         row that will fail on out-of-memory.
1088
1089         * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
1090         function for testing out-of-memory handling.
1091
1092         * bus/config-loader-expat.c (memsuite): don't wrap the dbus
1093         allocation functions, they do map exactly to the expat ones.
1094
1095 2003-03-27  Havoc Pennington  <hp@redhat.com>
1096
1097         * bus/config-loader-libxml.c (bus_config_load): add another error
1098         check
1099
1100 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
1101
1102         * doc/TODO:
1103         Add note about automatic service activation.
1104         
1105         * doc/dbus-specification.sgml:
1106         Rename the specification and clarify a few things.
1107         
1108 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
1109
1110         * Doxyfile.in:
1111         * dbus/dbus-address.c:
1112         * dbus/dbus-dict.c:
1113         * dbus/dbus-marshal.c:
1114         * dbus/dbus-server-debug-pipe.c:
1115         * dbus/dbus-transport-unix.c:
1116         Fix documentation warnings.
1117         
1118 2003-03-26  Havoc Pennington  <hp@pobox.com>
1119
1120         * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
1121         after every test so it's quick and easy to see which leaked, and
1122         so we test multiple dbus_shutdown() calls
1123
1124         * configure.in: change configure.in XML stuff to also support
1125         expat
1126
1127         * config-loader-libxml.c: some hacking
1128
1129         * config-loader-expat.c: some hacking
1130
1131         * config-parser.c: some hacking, plus tests
1132
1133 2003-03-25  Havoc Pennington  <hp@redhat.com>
1134
1135         * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
1136         
1137         * configure.in: add --with-xml option to specify XML library,
1138         right now only libxml is supported.
1139
1140         * bus/config-loader-libxml.c, config-parser.c: sync some minor 
1141         nonworking code between home and work, still just stubs
1142
1143 2003-03-24  Havoc Pennington  <hp@redhat.com>
1144
1145         * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
1146         file
1147
1148         * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow 
1149         NULL argument for "message" if the error is a well-known one, 
1150         fill in a generic message in this case.
1151
1152         * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
1153         favor of DBusError
1154
1155         * bus/test.c (bus_test_flush_bus): add
1156
1157         * bus/policy.c (bus_policy_test): test code stub
1158
1159 2003-03-24  Havoc Pennington  <hp@pobox.com>
1160
1161         * bus/connection.c (bus_connections_setup_connection): set up 
1162         the "can this user connect" function, but it always returns 
1163         TRUE until we have a config file parser so we can have a config
1164         file that allows connections.
1165
1166 2003-03-23  Havoc Pennington  <hp@pobox.com>
1167
1168         * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with 
1169         DBUS_BUILD_TESTS, actually alloc/free a block of memory for 
1170         the mutex, so we can check for proper memory management 
1171         and OOM handling.
1172
1173         * dbus/dbus-dataslot.c: remove the mutex from
1174         DBusDataSlotAllocator and lock it manually when using it, 
1175         to simplify fitting it into the global slots framework.
1176
1177         * dbus/dbus-threads.c (init_static_locks): rework how we're
1178         handling global locks so they are easily shut down.
1179
1180         * bus/policy.c (bus_policy_append_rule): fix
1181
1182         * bus/test-main.c (main): check for memleaks
1183
1184         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make 
1185         test suite check for memleaks
1186
1187         * dbus/dbus-memory.c: add support in test mode for tracking 
1188         number of outstanding blocks
1189
1190 2003-03-23  Havoc Pennington  <hp@pobox.com>
1191
1192         * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
1193         policies code
1194         
1195         * dbus/dbus-hash.h: add ULONG hash keys
1196
1197         * dbus/dbus-sysdeps.c (_dbus_get_groups): new
1198         (_dbus_get_group_id): new function
1199
1200 2003-03-20  Havoc Pennington  <hp@redhat.com>
1201
1202         * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
1203         new function
1204         (dbus_connection_get_unix_user): new function
1205
1206 2003-03-20  Havoc Pennington  <hp@pobox.com>
1207
1208         * bus/connection.c (bus_connection_send_oom_error): assert that
1209         message has a sender
1210         (connection_execute_transaction): ditto
1211         (bus_connection_preallocate_oom_error): fix to set the sender, and
1212         set recipient to the destination service, not the bus driver
1213
1214         * bus/policy.c: hacking
1215
1216         * dbus/dbus-message.c (dbus_message_service_is): new function
1217         (dbus_message_sender_is): new
1218
1219 2003-03-19  Havoc Pennington  <hp@redhat.com>
1220
1221         * bus/policy.c: start sketching code for policy restrictions on 
1222         what connections can do.
1223
1224 2003-03-18  Havoc Pennington  <hp@redhat.com>
1225
1226         * doc/TODO: some notes on high-level todo items. Little nitpick
1227         stuff is all in @todo, so no need to add it here.
1228
1229         * doc/config-file.txt: some notes on how config file might look
1230
1231 2003-03-18  Anders Carlsson  <andersca@codefactory.se>
1232
1233         * configure.in: 0.6
1234
1235         * NEWS: Update.
1236         
1237 2003-03-17  Havoc Pennington  <hp@redhat.com>
1238
1239         * dbus/dbus-internals.h: add gcc attributes so that 
1240         our printf-style functions warn on bad arguments to 
1241         format
1242         
1243         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf 
1244         format bug
1245
1246         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
1247         printf format bug
1248
1249 2003-03-17  Havoc Pennington  <hp@redhat.com>
1250
1251         * bus/test-main.c (main): make it print something as it runs 
1252         so make check doesn't look stuck
1253
1254         * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove 
1255         from CVS, now obsolete
1256
1257 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
1258
1259         * bus/dispatch.c: (bus_dispatch):
1260         Refetch the service name since it may have been reallocated
1261         when dbus_message_set_sender was called.
1262         
1263         * dbus/dbus-sysdeps.c: (_dbus_accept):
1264         Add address and address length variables and use them to stop
1265         valgrind from complaining.
1266         
1267 2003-03-17  Havoc Pennington  <hp@pobox.com>
1268
1269         All tests pass, no memleaks, no valgrind complaints.
1270         
1271         * bus/test.c: refcount handler_slot
1272
1273         * bus/connection.c (bus_connections_new): refcount
1274         connection_data_slot
1275
1276         * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
1277         bytes so that auth scripts pass.
1278
1279         * bus/dispatch.c: init message_handler_slot so it gets allocated
1280         properly
1281
1282         * bus/dispatch.c (message_handler_slot_ref): fix memleak
1283
1284         * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
1285         dealloc server_pipe_hash when no longer used for benefit of
1286         leak checking
1287
1288         * dbus/dbus-auth.c (process_command): memleak fix
1289
1290         * bus/dispatch.c (check_hello_message): memleak fix
1291
1292 2003-03-16  Havoc Pennington  <hp@pobox.com>
1293
1294         * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
1295
1296 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
1297
1298         * bus/activation.c (bus_activation_activate_service): Append
1299         the pending activation entry to the list of pending activations.
1300
1301 2003-03-16  Havoc Pennington  <hp@pobox.com>
1302
1303         * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
1304         connections
1305
1306         * dbus/dbus-address.c (create_entry): fix OOM handling when
1307         failing to alloc entry->method
1308
1309 2003-03-16  Havoc Pennington  <hp@pobox.com>
1310
1311         * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
1312         the watch
1313
1314         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
1315         add some missing dbus_set_result
1316
1317         * bus/dispatch.c (bus_dispatch_add_connection): handle failure to 
1318         alloc the DBusMessageHandler
1319
1320         * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
1321         the transport here, since we call this from the finalizer; it 
1322         resulted in a double-finalize.
1323
1324         * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug 
1325         where we tried to use transport->connection that was NULL, 
1326         happened when transport was disconnected early on due to OOM
1327
1328         * bus/*.c: adapt to handle OOM for watches/timeouts
1329
1330         * dbus/dbus-transport-unix.c: port to handle OOM during 
1331         watch handling
1332         
1333         * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
1334         reference to unused bytes instead of a copy
1335
1336         * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
1337         out of memory
1338
1339         * dbus/dbus-connection.c (dbus_connection_handle_watch): return
1340         FALSE on OOM
1341
1342         * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
1343         of memory
1344
1345 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
1346
1347         * doc/dbus-specification.sgml:
1348         Document reply message for ActivateService.
1349         
1350 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
1351
1352         * bus/activation.c: (bus_pending_activation_entry_free),
1353         (bus_pending_activation_free), (bus_activation_new),
1354         (bus_activation_unref), (bus_activation_service_created),
1355         (bus_activation_activate_service):
1356         * bus/activation.h:
1357         * bus/bus.c: (bus_context_new):
1358         * bus/desktop-file.c: (new_section):
1359         * bus/driver.c: (bus_driver_send_service_deleted),
1360         (bus_driver_handle_activate_service):
1361         * bus/services.c: (bus_registry_new), (bus_registry_ensure):
1362         * bus/services.h:
1363         * dbus/dbus-connection.c:
1364         (dbus_connection_send_with_reply_and_block):
1365         * dbus/dbus-message.c: (dbus_message_append_args_valist):
1366         * dbus/dbus-protocol.h:
1367         Make activation work better. Now pending activations will be queued
1368         and the daemon won't try to activate services that are already registered.
1369         
1370 2003-03-16  Havoc Pennington  <hp@pobox.com>
1371
1372         * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
1373         connection data
1374
1375         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
1376         DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
1377
1378 2003-03-16  Havoc Pennington  <hp@pobox.com>
1379
1380         * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
1381         this. always run the test suite before commit...
1382
1383         * bus/*: adapt to DBusConnection API changes
1384
1385         * glib/dbus-gmain.c: adapt to DBusConnection API changes, 
1386         requires renaming stuff to avoid dbus_connection_dispatch name 
1387         conflict.
1388
1389         * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
1390         function
1391
1392         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
1393         separate from _dbus_message_loader_return_buffer()
1394
1395         * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
1396         this, because it's now always broken to use; the number of
1397         messages in queue vs. the number still buffered by the message
1398         loader is undefined/meaningless. Should use
1399         dbus_connection_get_dispatch_state().
1400         (dbus_connection_dispatch): rename from
1401         dbus_connection_dispatch_message
1402
1403 2003-03-16  Havoc Pennington  <hp@pobox.com>
1404
1405         * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
1406         implementation
1407
1408 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
1409
1410         * dbus/dbus-connection.c:
1411         (dbus_connection_send_with_reply_and_block):
1412         Decrease connection->n_incoming when removing an entry 
1413         from the list.
1414         * dbus/dbus-dict.c: (dbus_dict_entry_free),
1415         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
1416         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
1417         (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
1418         (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
1419         (dbus_dict_get_byte_array):
1420         Handle NULL arrays and strings. Also add support for byte arrays.
1421         
1422         * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
1423         (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
1424         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
1425         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
1426         (_dbus_demarshal_dict), (demarshal_and_validate_len),
1427         (_dbus_marshal_validate_arg), (_dbus_marshal_test):
1428         * dbus/dbus-marshal.h:
1429         Add support for marshalling and demarshalling empty arrays and strings.
1430         
1431         * dbus/dbus-message.c: (dbus_message_append_args_valist),
1432         (dbus_message_append_string_array),
1433         (dbus_message_iter_get_boolean),
1434         (dbus_message_iter_get_boolean_array),
1435         (dbus_message_iter_get_int32_array),
1436         (dbus_message_iter_get_uint32_array),
1437         (dbus_message_iter_get_double_array),
1438         (dbus_message_iter_get_byte_array),
1439         (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
1440         (check_message_handling):
1441         Add support for getting empty arrays and dicts.
1442         
1443         * dbus/dbus-string.c: (_dbus_string_validate_utf8):
1444         Don't do any validation at all for now, that's better than just checking
1445         for ASCII.
1446         
1447         * test/data/valid-messages/emptiness.message:
1448         New test message with lots of empty arrays.
1449         
1450 2003-03-16  Havoc Pennington  <hp@pobox.com>
1451
1452         * dbus/dbus-connection.c
1453         (_dbus_connection_queue_received_message_link): new function that
1454         can't fail due to OOM
1455
1456         * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
1457         new function pops a message together with a list link 
1458         containing it.
1459
1460         * dbus/dbus-transport-unix.c (queue_messages): use new link-based
1461         message queuing functions to avoid needing to alloc memory
1462
1463 2003-03-16  Havoc Pennington  <hp@pobox.com>
1464
1465         Oops - test code was only testing failure of around 30 of the
1466         mallocs in the test path, but it turns out there are 500+
1467         mallocs. I believe this was due to misguided linking setup such
1468         that there was one copy of dbus_malloc etc. in the daemon and one
1469         in the shared lib, and only daemon mallocs were tested. In any
1470         case, the test case now tests all 500+ mallocs, and doesn't pass
1471         yet, though there are lots of fixes in this patch.
1472         
1473         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
1474         this so that it doesn't need to allocate memory, since it 
1475         has no way of indicating failure due to OOM (and would be 
1476         annoying if it did).
1477
1478         * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
1479
1480         * bus/Makefile.am: rearrange to create two self-contained
1481         libraries, to avoid having libraries with overlapping symbols. 
1482         that was resulting in weirdness, e.g. I'm pretty sure there 
1483         were two copies of global static variables.
1484
1485         * dbus/dbus-internals.c: move the malloc debug stuff to 
1486         dbus-memory.c
1487
1488         * dbus/dbus-list.c (free_link): free list mempool if it becomes
1489         empty.
1490
1491         * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
1492
1493         * dbus/dbus-address.c (dbus_parse_address): free list nodes
1494         on failure.
1495
1496         * bus/dispatch.c (bus_dispatch_add_connection): free
1497         message_handler_slot when no longer using it, so 
1498         memory leak checkers are happy for the test suite.
1499
1500         * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
1501
1502         * bus/bus.c (new_connection_callback): disconnect in here if 
1503         bus_connections_setup_connection fails.
1504
1505         * bus/connection.c (bus_connections_unref): fix to free the 
1506         connections
1507         (bus_connections_setup_connection): if this fails, don't
1508         disconnect the connection, just be sure there are no side
1509         effects.
1510
1511         * dbus/dbus-string.c (undo_alignment): unbreak this
1512
1513         * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
1514         leaking
1515         (_dbus_auth_new): fix the order in which we free strings 
1516         on OOM failure
1517
1518         * bus/connection.c (bus_connection_disconnected): fix to 
1519         not send ServiceDeleted multiple times in case of memory 
1520         allocation failure
1521
1522         * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
1523         get the base service name
1524         (dbus_bus_register_client): don't return base service name,
1525         instead store it on the DBusConnection and have an accessor
1526         function for it.
1527         (dbus_bus_register_client): rename dbus_bus_register()
1528
1529         * bus/dispatch.c (check_hello_message): verify that other 
1530         connections on the bus also got the correct results, not 
1531         just the one sending hello
1532
1533 2003-03-15  Havoc Pennington  <hp@pobox.com>
1534
1535         Make it pass the Hello handling test including all OOM codepaths.
1536         Now to do other messages...
1537         
1538         * bus/services.c (bus_service_remove_owner): fix crash when
1539         removing owner from an empty list of owners
1540         (bus_registry_ensure): don't leave service in the list of 
1541         a connection's owned services if we fail to put the service
1542         in the hash table.
1543
1544         * bus/connection.c (bus_connection_preallocate_oom_error): set
1545         error flag on the OOM error.
1546
1547         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
1548         handle _dbus_transport_set_connection failure
1549
1550         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
1551         to create watches up front and simply enable/disable them as
1552         needed.
1553         (unix_connection_set): this can now fail on OOM
1554
1555         * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept 
1556         of enabling/disabling a watch or timeout.
1557
1558         * bus/loop.c (bus_loop_iterate): don't touch disabled
1559         watches/timeouts
1560
1561         * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
1562
1563 2003-03-15  Havoc Pennington  <hp@pobox.com>
1564
1565         * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
1566         write useful test code, after all that futzing around ;-)
1567
1568         Test does not yet pass because we can't handle OOM in
1569         _dbus_transport_messages_pending (basically,
1570         dbus_connection_preallocate_send() does not prealloc the write
1571         watch). To fix this, I think we need to add new stuff to
1572         set_watch_functions, namely a SetEnabled function so we can alloc
1573         the watch earlier, then enable it later.
1574         
1575         * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
1576         dbus-memory.c to the convenience lib
1577
1578         * bus/test.c: rename some static functions to keep them clearly 
1579         distinct from stuff in connection.c. Handle client disconnection.
1580
1581 2003-03-14  Havoc Pennington  <hp@pobox.com>
1582
1583         * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe 
1584         transport, tests more of the real codepath. Set up clients 
1585         with bus_setup_debug_client.
1586
1587         * bus/test.c (bus_setup_debug_client): function to set up debug 
1588         "clients" on the main loop
1589
1590         * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe 
1591         support
1592
1593         * dbus/dbus-server.c (dbus_server_listen): add debug-pipe 
1594         server type
1595
1596         * dbus/dbus-server-debug.c: support a debug server based on pipes
1597
1598         * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
1599         (_dbus_close): new function
1600         
1601         * configure.in: check for socketpair
1602
1603 2003-03-14  Havoc Pennington  <hp@redhat.com>
1604
1605         * dbus/dbus-memory.c: add a "detect buffer overwrites on free" 
1606         cheesy hack
1607
1608         * dbus/dbus-transport-debug.c: rework this a good bit to be 
1609         less complicated. hopefully still works.
1610
1611         * dbus/dbus-server-debug.c (handle_new_client): remove timeout
1612         manually
1613
1614         * glib/dbus-gmain.c (timeout_handler): don't remove timeout 
1615         after running it
1616
1617         * dbus/dbus-message.c (dbus_message_copy): rename from 
1618         dbus_message_new_from_message, fix it up to copy 
1619         all the message fields, add test case
1620
1621         * bus/dispatch.c (bus_dispatch_test): add some more test code, 
1622         not quite passing yet
1623
1624 2003-03-14  Havoc Pennington  <hp@pobox.com>
1625
1626         * bus/loop.c (bus_loop_iterate): add this so we can "run loop
1627         until no work remains" in test code. (the large diff here 
1628         is just code movement, no actual changes)
1629
1630         * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
1631         1, no point waiting around for test code.
1632         (_dbus_server_debug_accept_transport): unref the timeout 
1633         after adding it (right?)
1634
1635         * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
1636         
1637 2003-03-13  Havoc Pennington  <hp@redhat.com>
1638
1639         * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
1640         out of memory
1641
1642         * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
1643         of memory
1644
1645         * dbus/dbus-connection.h: Make AddWatchFunction and
1646         AddTimeoutFunction return a bool so they can fail on out-of-memory
1647
1648         * bus/bus.c (bus_context_new): set up timeout handlers
1649
1650         * bus/connection.c (bus_connections_setup_connection): set up
1651         timeout handlers
1652
1653         * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
1654         can fail
1655
1656         * bus/bus.c (bus_context_new): adapt to changes
1657
1658         * bus/connection.c: adapt to changes
1659
1660         * test/watch.c: adapt to DBusWatch changes
1661
1662         * bus/dispatch.c (bus_dispatch_test): started adding this but
1663         didn't finish
1664         
1665 2003-03-14  Anders Carlsson  <andersca@codefactory.se>
1666
1667         * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
1668
1669 2003-03-13  Havoc Pennington  <hp@pobox.com>
1670
1671         * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c: 
1672         set up a test framework as for the library
1673
1674 2003-03-12  Havoc Pennington  <hp@pobox.com>
1675
1676         Throughout: purge global variables, introduce BusActivation, 
1677         BusConnections, BusRegistry, etc. objects instead.
1678         
1679         * bus/bus.h, bus/bus.c: introduce BusContext as a global 
1680         message bus object
1681
1682         * test/Makefile.am (TEST_BINARIES): disable bus-test for now, 
1683         going to redo this a bit differently I think
1684         
1685 2003-03-12  Havoc Pennington  <hp@redhat.com>
1686
1687         Mega-patch that gets the message bus daemon initially handling 
1688         out-of-memory. Work still needed. Also lots of random 
1689         moving stuff to DBusError instead of ResultCode.
1690         
1691         * dbus/dbus-list.c (_dbus_list_length_is_one): new function
1692
1693         * dbus/dbus-connection.c
1694         (dbus_connection_send_with_reply_and_block): use DBusError
1695
1696         * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
1697         DBusResultCode
1698
1699         * dbus/dbus-connection.c (dbus_connection_send): drop the result
1700         code here, as the only failure possible is OOM.
1701
1702         * bus/connection.c (bus_connection_disconnect):
1703         rename bus_connection_disconnected as it's a notification only
1704
1705         * bus/driver.c (bus_driver_handle_acquire_service): don't free
1706         "name" on get_args failure, should be done by get_args; 
1707         don't disconnect client for bad args, just return an error.
1708         (bus_driver_handle_service_exists): ditto
1709
1710         * bus/services.c (bus_services_list): NULL-terminate returned array
1711
1712         * bus/driver.c (bus_driver_send_service_lost)
1713         (bus_driver_send_service_acquired): send messages from driver to a
1714         specific client to the client's unique name, not to the broadcast
1715         service.
1716
1717         * dbus/dbus-message.c (decode_header_data): reject messages that
1718         contain no name field
1719         (_dbus_message_get_client_serial): rename to
1720         dbus_message_get_serial and make public
1721         (_dbus_message_set_serial): rename from set_client_serial
1722         (_dbus_message_set_reply_serial): make public
1723         (_dbus_message_get_reply_serial): make public
1724
1725         * bus/connection.c (bus_connection_foreach): allow stopping
1726         iteration by returning FALSE from foreach function.
1727
1728         * dbus/dbus-connection.c (dbus_connection_send_preallocated) 
1729         (dbus_connection_free_preallocated_send) 
1730         (dbus_connection_preallocate_send): new API for sending a message
1731         without possibility of malloc failure.
1732         (dbus_connection_send_message): rename to just
1733         dbus_connection_send (and same for whole function family)
1734
1735         * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
1736
1737         * dbus/dbus-sysdeps.c (_dbus_exit): new function
1738
1739         * bus/activation.c: handle/return errors
1740
1741         * dbus/dbus-errors.h: add more DBUS_ERROR #define
1742
1743         * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
1744         (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
1745         (_dbus_result_from_errno): move to this file
1746
1747 2003-03-10  Anders Carlsson  <andersca@codefactory.se>
1748
1749         * dbus/dbus-marshal.c: 
1750         (_dbus_marshal_set_string):
1751         Take a length argument so we can marshal the correct string
1752         length.
1753         
1754         (_dbus_marshal_dict), (_dbus_demarshal_dict),
1755         (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
1756         (_dbus_marshal_test):
1757         * dbus/dbus-marshal.h:  
1758         Add support for marshalling and demarshalling dicts.
1759         
1760         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
1761         Add support for TYPE DICT.
1762         
1763         * dbus/dbus-message.c: (set_string_field):
1764         Adjust header padding.
1765         
1766         (dbus_message_append_args_valist), (dbus_message_append_dict),
1767         (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
1768         (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
1769         (check_message_handling), (check_have_valid_message):
1770         * dbus/dbus-message.h:
1771         Add functions for setting and getting dicts.
1772
1773         * dbus/dbus-protocol.h:
1774         Add DBUS_TYPE_DICT.
1775         
1776         * dbus/dbus.h:
1777         Add dbus-dict.h
1778         
1779         * doc/dbus-specification.sgml:
1780         Add information about how dicts are marshalled.
1781         
1782         * test/data/invalid-messages/dict-with-nil-value.message:
1783         * test/data/invalid-messages/too-short-dict.message:
1784         * test/data/valid-messages/dict-simple.message:
1785         * test/data/valid-messages/dict.message:
1786         Add sample messages containing dicts.
1787
1788 2003-03-08  Anders Carlsson  <andersca@codefactory.se>
1789
1790         * dbus/dbus-dict.h: Add DBUS_END_DECLS.
1791
1792 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
1793
1794         * dbus/Makefile.am:
1795         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
1796         (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
1797         (dbus_dict_set_int32), (dbus_dict_set_uint32),
1798         (dbus_dict_set_double), (dbus_dict_set_string),
1799         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
1800         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
1801         (dbus_dict_set_string_array), (_dbus_dict_test):
1802         * dbus/dbus-dict.h:
1803         Fix according to comments from Havoc.
1804         
1805 2003-03-06  Michael Meeks  <michael@server.home>
1806
1807         * configure.in: if we don't have kde-config, disable have_qt.
1808
1809 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
1810
1811         * dbus/Makefile.am:
1812         Add dbus-dict.[ch]
1813         
1814         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
1815         (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
1816         (dbus_dict_remove), (dbus_dict_get_value_type),
1817         (dbus_dict_get_keys), (dbus_dict_put_boolean),
1818         (dbus_dict_put_int32), (dbus_dict_put_uint32),
1819         (dbus_dict_put_double), (dbus_dict_put_string),
1820         (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
1821         (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
1822         (dbus_dict_put_string_array), (dbus_dict_get_boolean),
1823         (dbus_dict_get_int32), (dbus_dict_get_uint32),
1824         (dbus_dict_get_double), (dbus_dict_get_string),
1825         (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
1826         (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
1827         (dbus_dict_get_string_array), (_dbus_dict_test):
1828         * dbus/dbus-dict.h:
1829         Add DBusDict implementation
1830         
1831         * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
1832         * dbus/dbus-test.h:
1833         Add _dbus_dict_test
1834         
1835 2003-03-04  Havoc Pennington  <hp@pobox.com>
1836
1837         * test/data/auth/*: adapt to changes
1838
1839         * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
1840         USERID_BASE64 and change USERNAME_BASE64 to put in username not
1841         userid
1842
1843         * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
1844         more stuff from being in a context name, to make the protocol 
1845         simpler to deal with
1846
1847         * dbus/dbus-errors.c (dbus_error_has_name): new function
1848         (dbus_error_is_set): new function
1849
1850         * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth 
1851         with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
1852         
1853         * dbus/dbus-connection.c (dbus_connection_flush): also read
1854         messages during a flush operation
1855
1856         * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
1857
1858 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
1859
1860         * configure.in: Check for gethostbyname on Solaris.
1861
1862         * dbus/dbus-transport.c: (_dbus_transport_open):
1863         Remove duplicate "tcp" entry.
1864         
1865         * doc/dbus-specification.sgml:
1866         Clarify some things.
1867         
1868 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
1869
1870         * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
1871         * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
1872         (_dbus_keyring_test):
1873         * dbus/dbus-md5.c: (_dbus_md5_compute):
1874         * dbus/dbus-sha.c: (_dbus_sha_compute):
1875         Plug memory leaks.
1876
1877 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
1878
1879         * README: Add some things.
1880
1881 2003-03-04  Anders Carlsson  <andersca@codefactory.se>
1882
1883         * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
1884         after case DBUS_TYPE_BOOELAN.
1885
1886 2003-03-02  Havoc Pennington  <hp@pobox.com>
1887
1888         * test/break-loader.c (randomly_set_extreme_ints): add test that
1889         sets really huge and small integers
1890
1891         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
1892         that length of boolean array fits in the string, and that 
1893         string has room for boolean value in single-bool case.
1894
1895         * dbus/dbus-message-builder.c (_dbus_message_data_load): add
1896         optional value to "ALIGN" command which is what to fill the
1897         alignment with.
1898
1899         * test/data/valid-messages/no-padding.message: add regression
1900         test for the message padding problem
1901
1902 2003-03-02  Havoc Pennington  <hp@pobox.com>
1903
1904         * dbus/dbus-message.c (decode_header_data): fix to always init
1905         message_padding, from Benjamin Dauvergne
1906
1907 2003-03-02  Havoc Pennington  <hp@pobox.com>
1908
1909         * configure.in: 0.5
1910
1911         * NEWS: Update.
1912
1913 2003-03-01  Joe Shaw  <joe@assbarn.com>
1914
1915         * configure.in: Check for "struct cmsgcred" and try to access its
1916         members for BSD-like unices.
1917
1918         * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
1919         _dbus_read_credentials_unix_socket().
1920         (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
1921         read() for reading the credential byte off the unix socket.  Use
1922         struct cmsgcred on systems that support it.
1923
1924 2003-02-27  Alexander Larsson  <alexl@redhat.com>
1925
1926         * glib/Makefile.am: 
1927         * configure.in:
1928         Make gthreads-2.0 dependency optional. Don't build thread test if
1929         its not found.
1930
1931 2003-02-27  Havoc Pennington  <hp@pobox.com>
1932
1933         * dbus/dbus-connection.c
1934         (dbus_connection_send_message_with_reply_and_block): fix doh!
1935         doh! doh! bug that resulted in never removing a reply from the
1936         queue, no wonder we called get_reply_serial so much ;-)
1937         
1938         * dbus/dbus-message.c (struct DBusMessage): cache reply serial
1939         and client serial instead of demarshaling them every time
1940
1941 2003-02-27  Havoc Pennington  <hp@pobox.com>
1942
1943         * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
1944         more inlined, using dbus-string-private.h, speeds things up 
1945         substantially
1946
1947         * dbus/dbus-string.c (_dbus_string_free): apply align offset
1948         when freeing the string
1949         (_dbus_string_steal_data): fix for align offset
1950         (undo_alignment): new function
1951
1952 2003-02-26  Havoc Pennington  <hp@redhat.com>
1953
1954         All kinds of audit fixes from Owen, plus initial attempt to 
1955         handle unaligned memory returned from malloc.
1956         
1957         * dbus/dbus-string.c (_dbus_string_init): clamp max length to 
1958         leave room for align_offset and nul byte
1959         (fixup_alignment): function to track an align_offset and 
1960         ensure real->str is aligned
1961         (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated, 
1962         to allow a nul byte plus align offset
1963         (_dbus_string_lock): fix overflow issue
1964         (_dbus_string_init_const_len): add assertions on sanity of len, 
1965         assign allocated to be ALLOCATION_PADDING larger than len
1966         (set_length): fixup the overflow handling
1967         (_dbus_string_get_data_len): fix overflow in assertion
1968         (open_gap): detect overflow in size of gap to be opened
1969         (_dbus_string_lengthen): add overflow check
1970         (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
1971         (_dbus_string_append): add overflow check
1972         (_dbus_string_append_unichar): overflow
1973         (_dbus_string_delete): fix overflow in assertion
1974         (_dbus_string_copy_len): overflow in assertion
1975         (_dbus_string_replace_len): overflows in assertions
1976         (_dbus_string_find): change to implement in terms of 
1977         _dbus_string_find_to
1978         (_dbus_string_find_to): assorted fixage
1979         (_dbus_string_equal_c_str): assert c_str != NULL, 
1980         fix logic so the function works
1981         (_dbus_string_ends_with_c_str): fix overflow thingy
1982         (_dbus_string_base64_encode): overflow fix
1983         (_dbus_string_validate_ascii): overflow
1984         (_dbus_string_validate_nul): overflow
1985         
1986 2003-02-26  Havoc Pennington  <hp@redhat.com>
1987
1988         * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
1989
1990 2003-02-26  Alexander Larsson  <alexl@redhat.com>
1991
1992         * configure.in:
1993         Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
1994         
1995         * dbus/dbus-connection.c:
1996         * dbus/dbus-connection.h:
1997         Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
1998         Add dbus_connection_set_wakeup_main_function and use it when queueing
1999         incoming and outgoing messages.
2000         
2001         
2002         * dbus/dbus-dataslot.c:
2003         Threadsafe usage of DBusDataSlotAllocator
2004         
2005         * dbus/dbus-message.c: (dbus_message_get_args_iter):
2006         dbus_new can fail.
2007         
2008         * dbus/dbus-server-unix.c:
2009         Add todo comment
2010         
2011         * glib/dbus-gmain.c:
2012         Implement the new wakeup functions for glib.
2013         
2014         * glib/Makefile.am:
2015         * glib/test-thread-client.c: 
2016         * glib/test-thread-server.c: 
2017         * glib/test-thread.h:
2018         Initial cut at some thread test code. Not really done yet.
2019
2020 2003-02-26  Havoc Pennington  <hp@pobox.com>
2021
2022         * dbus/dbus-connection.c
2023         (dbus_connection_send_message_with_reply_and_block): fix crash
2024         where we ref'd the outgoing message instead of the returned reply
2025
2026         * dbus/dbus-transport-unix.c (do_authentication): check read watch
2027         at the end of this function, so if we didn't need to read for
2028         authentication, we reinstall it for receiving messages
2029
2030         * dbus/dbus-message.c (dbus_message_new_reply): allow replies to 
2031         a NULL sender for peer-to-peer case
2032
2033         * dbus/dbus-transport-unix.c (check_read_watch): handle
2034         !authenticated case correctly
2035
2036         * glib/dbus-gmain.c: add support for DBusServer
2037
2038         * dbus/dbus-server.c: add data slot support
2039
2040         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
2041         return values and handle errors
2042
2043         * dbus/dbus-dataslot.c: factor out the data slot stuff from
2044         DBusConnection
2045
2046         * Doxyfile.in (INPUT): add glib subdir
2047
2048         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename 
2049         setup_with_g_main instead of hookup_with_g_main; write docs
2050         
2051 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
2052
2053         * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
2054         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
2055         * dbus/dbus-message.c: (dbus_message_append_boolean),
2056         (dbus_message_append_boolean_array),
2057         (dbus_message_get_args_valist), (_dbus_message_test):
2058         * dbus/dbus-message.h:
2059         * doc/dbus-specification.sgml:
2060         Various fixes as pointed out by Havoc.
2061         
2062         * test/data/invalid-messages/bad-boolean-array.message:
2063         * test/data/invalid-messages/bad-boolean.message:
2064         Add invalid boolean value test cases.
2065         
2066 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
2067
2068         * dbus/dbus-internals.c: (_dbus_type_to_string):
2069         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
2070         (_dbus_marshal_validate_arg):
2071         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
2072         * dbus/dbus-message.c: (dbus_message_append_args_valist),
2073         (dbus_message_append_boolean), (dbus_message_append_boolean_array),
2074         (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
2075         (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
2076         (dbus_message_iter_get_double),
2077         (dbus_message_iter_get_boolean_array), (message_iter_test):
2078         * dbus/dbus-message.h:
2079         * dbus/dbus-protocol.h:
2080         * doc/dbus-specification.sgml:
2081         * test/data/valid-messages/lots-of-arguments.message:
2082         Add support for boolean and boolean array types.
2083         
2084 2003-02-23  Havoc Pennington  <hp@pobox.com>
2085
2086         * dbus/dbus-keyring.c: finish most of this implementation and 
2087         simple unit test
2088
2089         * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
2090         these barf if the error isn't cleared to NULL
2091
2092         * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
2093         (_dbus_create_directory): new function
2094
2095         * dbus/dbus-errors.c (dbus_set_error): fix warning
2096
2097         * dbus/dbus-string.c (_dbus_string_hex_encode): new function
2098         (_dbus_string_hex_decode): new function
2099         (test_hex_roundtrip): test code
2100
2101         * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
2102
2103         * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
2104
2105         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use 
2106         the save-to-temp/rename trick to atomically write the new file
2107         (_dbus_string_parse_uint): new function
2108
2109 2003-02-22  Havoc Pennington  <hp@pobox.com>
2110
2111         * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
2112
2113 2003-02-22  Havoc Pennington  <hp@pobox.com>
2114
2115         * dbus/dbus-message.c (dbus_message_iter_get_string_array):
2116         (dbus_message_iter_get_byte_array): Fix up doxygen warnings
2117
2118         * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
2119
2120         * dbus/test/data/sha-1: add US government test suite for SHA-1
2121
2122 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
2123
2124         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
2125         Make string arrays NULL-terminated.
2126         
2127         * dbus/dbus-memory.c: (dbus_free_string_array):
2128         * dbus/dbus-memory.h:
2129         New function for freeing NULL-terminated string arrays.
2130         
2131         * dbus/dbus-message-builder.c: (append_quoted_string),
2132         (_dbus_message_data_load):
2133         Add support for array types.
2134         
2135         * dbus/dbus-message.c: (check_message_handling):
2136         Add more types as test cases.
2137         
2138         * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
2139         (_dbus_string_parse_double):
2140         Add the start offset to the end offset.
2141         
2142         * test/data/valid-messages/lots-of-arguments.message:
2143         New test message with lots of arguments.
2144         
2145 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
2146
2147         * dbus/dbus-message.c: (dbus_message_append_nil),
2148         (dbus_message_append_int32), (dbus_message_append_uint32),
2149         (dbus_message_append_double), (dbus_message_append_string),
2150         (dbus_message_append_int32_array),
2151         (dbus_message_append_uint32_array),
2152         (dbus_message_append_double_array),
2153         (dbus_message_append_byte_array),
2154         (dbus_message_append_string_array):
2155         Fix all out-of-memory handling in these functions.
2156
2157 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
2158
2159         * dbus/dbus-message.c: (dbus_message_append_nil):
2160         Fix a silly.
2161         
2162 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
2163
2164         * dbus/dbus-message.c: (dbus_message_append_args_valist),
2165         (dbus_message_append_nil), (dbus_message_append_int32_array),
2166         (dbus_message_append_uint32_array),
2167         (dbus_message_append_double_array),
2168         (dbus_message_append_byte_array),
2169         (dbus_message_append_string_array), (dbus_message_get_args_valist),
2170         (dbus_message_iter_get_int32_array),
2171         (dbus_message_iter_get_uint32_array),
2172         (dbus_message_iter_get_double_array),
2173         (dbus_message_iter_get_byte_array),
2174         (dbus_message_iter_get_string_array):
2175
2176         * dbus/dbus-message.h:
2177         Add functions for appending and getting arrays.
2178         
2179 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
2180
2181         * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
2182         element size at least 8 bytes, fixes mempool tests on
2183         64-bit machines.
2184
2185 2003-02-20  Alexander Larsson  <alexl@redhat.com>
2186
2187         * dbus/dbus-transport-unix.c (unix_do_iteration):
2188         Unlock the connection mutex during a blocking select call.
2189         Add todo about how we need a way to wake up the select.
2190
2191         * dbus/dbus-connection-internal.h: 
2192         * dbus/dbus-connection.c:
2193         Add _dbus_connection_lock and _dbus_connection_unlock.
2194
2195 2003-02-19  Havoc Pennington  <hp@pobox.com>
2196
2197         * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
2198         Doxyfile.in, not Doxyfile
2199
2200         * dbus/dbus-keyring.c: do some hacking on this
2201
2202         * dbus/dbus-sysdeps.c (_dbus_delete_file): new
2203
2204         * dbus/dbus-errors.c (dbus_set_error_const): do not call
2205         dbus_error_init
2206         (dbus_set_error): remove dbus_error_init, check for message ==
2207         NULL *before* we sprintf into it, and add @todo about including 
2208         system headers in this file
2209
2210         * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
2211
2212         * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
2213
2214         * dbus/dbus-sysdeps.c (get_user_info): break this function out to
2215         get various bits of user information based on either username 
2216         or user ID
2217         (_dbus_homedir_from_username): new function
2218
2219 2003-02-19  Anders Carlsson  <andersca@codefactory.se>
2220
2221         * configure.in:
2222         Add check for nonposix getpwnam_r
2223         
2224         * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
2225         Align the pool element size to a sizeof (void *) boundary.
2226         
2227         * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
2228         (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
2229         General Solaris fixes.
2230         
2231         * test/data/valid-messages/simplest-manual.message:
2232         Explicitly state that we want little-endian packing.
2233         
2234 2003-02-19  Mikael Hallendal  <micke@codefactory.se>
2235
2236         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
2237
2238         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket): 
2239         Added to create a transport connecting using a tcp/ip socket.
2240
2241         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
2242         to a tcp socket at given host and port.
2243         (_dbus_listen_tcp_socket): added to listen on tcp socket for given
2244         hostname and port.
2245
2246         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
2247
2248         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket): 
2249         Added to create a server listening on a TCP/IP socket.
2250
2251 2003-02-19  Havoc Pennington  <hp@pobox.com>
2252
2253         Throughout: mop up all the Doxygen warnings and undocumented
2254         stuff.
2255         
2256         * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
2257         to search any paths.
2258
2259         * dbus/dbus-threads.c: move global mutex initializers to
2260         dbus-internals.h, multiple prototypes was confusing doxygen
2261         besides being kind of ugly
2262
2263         * Doxyfile (PREDEFINED): have Doxygen define
2264         DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from 
2265         docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
2266         (do not abuse the feature! it's for stuff like the autogenerated 
2267         macros in dbus-md5.c, not just for things you don't feel like 
2268         documenting...)
2269
2270 2003-02-18  Havoc Pennington  <hp@pobox.com>
2271
2272         * dbus/dbus-string.c (_dbus_string_zero): new function
2273
2274         * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
2275         wrap it in some dbus-friendly API
2276
2277         * dbus/dbus-types.h: add 16-bit types
2278
2279 2003-02-18  Joe Shaw  <joe@assbarn.com>
2280
2281         * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
2282         credentials from our currently running process.
2283         (get_word): Fix a buglet where we were copying the entire length
2284         instead of relative to our position.
2285
2286         * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
2287         keys on the stack... it's 640k of data.
2288
2289         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
2290         read the credentials byte off the socket, even if we don't have
2291         SO_PEERCRED.
2292         (_dbus_poll): Implement poll() using select() for systems which
2293         don't have it.
2294
2295         * glib/test-dbus-glib.c (main): Print out an error if no
2296         parameters are given.
2297
2298         * test/data/auth/fallback.auth-script: Added.  Tests that a client
2299         can fallback to a secondary auth mechanism if the first fails.
2300
2301 2003-02-18  Havoc Pennington  <hp@pobox.com>
2302
2303         * AUTHORS: add Alex
2304
2305 2003-02-17  Havoc Pennington  <hp@pobox.com>
2306
2307         * doc/dbus-specification.sgml: lots of cosmetic
2308         cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
2309         env variable to DBUS_BUS_ADDRESS, s/client/application/,
2310         s/server/bus/ (except in authentication section). Add a section
2311         "Message Bus Message Routing"
2312
2313 2003-02-17  Anders Carlsson  <andersca@codefactory.se.>
2314
2315         Release 0.4
2316         
2317         * NEWS: Update
2318
2319 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
2320
2321         * doc/dbus-specification.sgml:
2322         Specification updates.
2323         
2324 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
2325
2326         * bus/activation.c: (bus_activation_init), (child_setup),
2327         (bus_activation_activate_service):
2328         * bus/activation.h:
2329         * bus/main.c: (main):
2330         Set DBUS_ADDRESS environment variable.
2331         
2332         * dbus/dbus-errors.c: (dbus_set_error):
2333         Don't use va_copy since that's a C99 feature.
2334         
2335         * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
2336         (_dbus_spawn_async):
2337         * dbus/dbus-sysdeps.h:
2338         Add child_setup_func to _dbus_spawn_async.
2339         
2340         * doc/dbus-specification.sgml:
2341         Update specification.
2342         
2343         * test/spawn-test.c: (setup_func), (main):
2344         Fix test.
2345         
2346 2003-02-17  Alexander Larsson  <alexl@redhat.com>
2347
2348         * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
2349         Added todo.
2350
2351 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
2352
2353         * doc/.cvsignore:
2354         * doc/Makefile.am:
2355         * doc/dbus-test-plan.sgml:
2356         Add test plan document.
2357         
2358         * test/Makefile.am:
2359         Fix distcheck.
2360         
2361 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
2362
2363         * dbus/dbus-message.c: (decode_header_data),
2364         (_dbus_message_loader_return_buffer):
2365         Set the header padding amount when loading a message.
2366
2367 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
2368
2369         * bus/dispatch.c: (send_one_message):
2370         Only send broadcast messages to registered connections.
2371         
2372         * dbus/dbus-message.c: (dbus_message_name_is):
2373         * dbus/dbus-message.h:
2374         New convenience function.
2375         
2376         * dbus/dbus-transport-debug.c: (do_reading):
2377         Only dispatch one message per run.
2378
2379         * test/Makefile.am:
2380         * test/bus-test.c: (new_connection_callback), (die),
2381         (test_hello_client1_handler), (test_hello_client2_handler),
2382         (test_hello_replies), (main):
2383
2384         * test/bus-test-loop.[ch]:
2385         Add these.
2386         
2387 2003-02-16  Havoc Pennington  <hp@pobox.com>
2388
2389         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
2390         backward conditional
2391
2392 2003-02-16  Alexander Larsson  <alexl@redhat.com>
2393
2394         * dbus/dbus-connection.c:
2395         Implement sent_message_with_reply. (with_reply_and block is still
2396         busted).
2397         Made dispatch_message not lose message if OOM.
2398         
2399         * dbus/dbus-errors.h:
2400         Add NoReply error (for reply timeouts).
2401
2402 2003-02-16  Alexander Larsson  <alexl@redhat.com>
2403
2404         * dbus/dbus-hash.c (_dbus_hash_table_unref):
2405         Actually free keys and values when destroying hashtable.
2406
2407 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
2408
2409         * dbus/dbus-auth.c: (client_try_next_mechanism):
2410         Plug a leak.
2411         
2412         * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
2413         Return TRUE if there's no thread implementation around.
2414         
2415         * glib/dbus-gmain.c: (free_source),
2416         (dbus_connection_hookup_with_g_main):
2417         Make sure to remove the GSource when the connection is finalized.
2418         
2419 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
2420
2421         * bus/dispatch.c: (bus_dispatch_message_handler):
2422         * dbus/dbus-errors.h:
2423         Return an error if someone tries to send a message to a service
2424         that doesn't exist.
2425         
2426 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
2427
2428         * bus/activation.c: (load_directory), (bus_activation_init),
2429         (bus_activation_activate_service):
2430         * bus/activation.h:
2431         * bus/driver.c: 
2432         (bus_driver_handle_activate_service), (bus_driver_handle_message):
2433         More work on the activation handling.
2434         
2435         * dbus/dbus-errors.h:
2436         Add some error messages
2437         
2438         * dbus/dbus-message.c: (dbus_message_new_error_reply):
2439         * dbus/dbus-message.h:
2440         New function that creates an error message.
2441         
2442         * dbus/dbus-protocol.h:
2443         Add ACTIVATE_SERVER message.
2444         
2445         * dbus/dbus-server-unix.c: (unix_handle_watch),
2446         (_dbus_server_new_for_domain_socket):
2447         Call _dbus_fd_set_close_on_exec.
2448         
2449         * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
2450         (_dbus_spawn_async), (_dbus_disable_sigpipe),
2451         (_dbus_fd_set_close_on_exec):
2452         * dbus/dbus-sysdeps.h:
2453         Add _dbus_fd_set_close_on exec function. Also add function that checks
2454         that all open fds are set to close-on-exec and warns otherwise.
2455         
2456         * dbus/dbus-transport-unix.c:
2457         (_dbus_transport_new_for_domain_socket):
2458         Call _dbus_fd_set_close_on_exec.
2459
2460 2003-02-16  Havoc Pennington  <hp@pobox.com>
2461
2462         * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
2463         allow people to avoid setting SIGPIPE to SIG_IGN
2464         (_dbus_connection_new_for_transport): disable SIGPIPE unless 
2465         we've been asked not to
2466
2467 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
2468
2469         * dbus/dbus-list.c: (_dbus_list_append_link),
2470         (_dbus_list_prepend_link):
2471         * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
2472         (dbus_realloc):
2473         Warning fixes.
2474
2475 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
2476
2477         * bus/Makefile.am:
2478         * bus/activation.c: (bus_activation_entry_free),
2479         (add_desktop_file_entry), (load_directory), (bus_activation_init):
2480         * bus/activation.h:
2481         * bus/main.c: (main):
2482         Add simple activation support, doesn't work yet though.
2483
2484 2003-02-15   Zack Rusin  <zack@kde.org>
2485
2486         * qt/dbus-qthread.cpp:  small casting fix
2487
2488 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
2489
2490         * dbus/dbus-errors.c: (dbus_set_error):
2491         * dbus/dbus-errors.h:
2492         Add a few errors and make dbus_set_error void.
2493         
2494         * dbus/dbus-sysdeps.c: 
2495         (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
2496         (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
2497         * dbus/dbus-sysdeps.h:
2498         Add _dbus_spawn_async.
2499         
2500         * test/spawn-test.c: (main):
2501         Test for _dbus_spawn_async.
2502         
2503 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
2504
2505         * dbus/dbus-internals.h:
2506         Fix build without tests.
2507         
2508         * dbus/dbus-list.c: (alloc_link):
2509         Fix a segfault when a malloc fails.
2510         
2511         * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
2512         (dbus_malloc0), (dbus_realloc):
2513         Add support for malloc debugging.
2514
2515 2003-02-15  Alexander Larsson  <alexl@redhat.com>
2516
2517         * dbus/dbus-threads.c:
2518         * dbus/dbus-threads.h:
2519         Add condvars. Remove static mutext from API.
2520         Implement static mutexes by initializing them from threads_init.
2521         
2522         * glib/dbus-gthread.c:
2523         * qt/dbus-qthread.cpp:
2524         Update with the thread api changes.
2525
2526                 
2527         * dbus/dbus-list.c:
2528         * dbus/dbus-list.h:
2529         Turn StaticMutex into normal mutex + init function.
2530         Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
2531         _dbus_list_append_link, _dbus_list_prepend_link
2532
2533
2534         * dbus/dbus-sysdeps.c: 
2535         * dbus/dbus-sysdeps.h:
2536         New type dbus_atomic_t, and new functions _dbus_atomic_inc,
2537         _dbus_atomic_dec. Only slow fallback implementation at the moment.
2538         
2539         * dbus/dbus-protocol.h:
2540         Add DBUS_MESSAGE_LOCAL_DISCONNECT define
2541         
2542         * dbus/dbus-message.c:
2543         Make ref/unref atomic.
2544         Fix some docs.
2545         
2546         * dbus/dbus-connection-internal.h:
2547         * dbus/dbus-connection.c:
2548         * dbus/dbus-connection.h:
2549         Make threadsafe.
2550         Change _peek to _borrow,_return & _steal_borrowed.
2551         Change disconnect callback to event.
2552         Make dbus_connection_dispatch_messages reentrant.
2553         
2554         * dbus/dbus-transport.c:
2555         Don't ref the connection on calls to the transport
2556         implementation.
2557         
2558         * dbus/dbus-message-handler.c:
2559         Make threadsafe.
2560         
2561         * glib/dbus-gmain.c:
2562         Don't use peek_message anymore
2563         
2564         * test/Makefile.am:
2565         * test/debug-thread.c:
2566         * test/debug-thread.h:
2567         Simple thread implementation that asserts() on deadlocks in
2568         single-threaded code.
2569         
2570         * test/bus-test.c:
2571         (main) Call debug_threads_init.
2572
2573         * test/watch.c:
2574         Use disconnect message instead of disconnect callback.
2575
2576         * bus/connection.c:
2577         * bus/connection.h:
2578         Don't call dbus_connection_set_disconnect_function. Instead export
2579         bus_connection_disconnect.
2580         
2581         * bus/dispatch.c:
2582         Call bus_connection_disconnect when we get a disconnected message.
2583         
2584 2003-02-15  Havoc Pennington  <hp@pobox.com>
2585
2586         * dbus/dbus-message.c (dbus_message_new): fool around with the
2587         docs
2588
2589 2003-02-14  Havoc Pennington  <hp@pobox.com>
2590
2591         * dbus/dbus-mempool.c: fail if the debug functions so indicate
2592
2593         * dbus/dbus-memory.c: fail if the debug functions indicate we
2594         should
2595
2596         * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
2597         (_dbus_decrement_fail_alloc_counter): debug functions to 
2598         simulate memory allocation failures
2599
2600 2003-02-14  Havoc Pennington  <hp@pobox.com>
2601
2602         * dbus/dbus-errors.h (struct DBusError): add a word of padding 
2603         to DBusError
2604
2605 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2606
2607         * bus/driver.c: (bus_driver_handle_hello):
2608         * bus/driver.h:
2609         * bus/services.c: (bus_service_lookup):
2610         Reorder message sending so we get a more sane order.
2611         
2612         * test/bus-test.c: (message_handler):
2613         Fix tyop.
2614         
2615 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2616
2617         * bus/driver.c: (bus_driver_send_service_deleted),
2618         (bus_driver_send_service_created), (bus_driver_send_service_lost),
2619         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
2620         (bus_driver_send_welcome_message),
2621         (bus_driver_handle_list_services),
2622         (bus_driver_handle_acquire_service),
2623         (bus_driver_handle_service_exists):
2624         * dbus/dbus-bus.c: (dbus_bus_register_client),
2625         (dbus_bus_acquire_service), (dbus_bus_service_exists):
2626         * dbus/dbus-errors.c: (dbus_result_to_string):
2627         * dbus/dbus-errors.h:
2628         * dbus/dbus-message.c: (dbus_message_append_args),
2629         (dbus_message_append_args_valist), (dbus_message_get_args),
2630         (dbus_message_get_args_valist), (dbus_message_get_args_iter),
2631         (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
2632         (dbus_message_iter_get_byte_array),
2633         (dbus_message_iter_get_string_array), (message_iter_test),
2634         (check_message_handling), (_dbus_message_test):
2635         * dbus/dbus-message.h:
2636         * test/bus-test.c: (main):
2637         Change fields to arguments in messages, so that they won't be
2638         confused with header fields.
2639         
2640         * glib/test-dbus-glib.c: (main):
2641         Remove append_fields from hello message.
2642         
2643 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2644
2645         * dbus/dbus-errors.c:
2646         * dbus/dbus-message.c:
2647         * dbus/dbus-string.c:
2648         Documentation fixes.
2649
2650 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2651
2652         * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
2653         (remove_timeout):
2654         Implement support for timeouts in dbus-glib.
2655         
2656 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2657
2658         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
2659         * dbus/dbus-message.c: (process_test_subdir):
2660         * test/break-loader.c: (find_breaks_based_on):
2661         Plug some memory leaks.
2662         
2663 2003-02-13  Richard Hult  <rhult@codefactory.se>
2664
2665         * bus/main.c: Fix build.
2666
2667         * dbus/dbus-errors.h: 
2668         * dbus/dbus-errors.c: Fix copyright for Anders.
2669
2670 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2671
2672         * bus/Makefile.am:
2673         Add utils.[ch]
2674         
2675         * bus/connection.c: (bus_connection_foreach):
2676         Fix a warning.
2677         
2678         * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
2679         (unescape_string), (new_section), (parse_section_start),
2680         (parse_key_value), (report_error), (bus_desktop_file_load),
2681         (bus_desktop_file_get_string):
2682         * bus/desktop-file.h:
2683         Use DBusError for error reporting.
2684         
2685         * bus/dispatch.c: (send_one_message),
2686         (bus_dispatch_message_handler):
2687         * bus/driver.c: (bus_driver_send_service_deleted),
2688         (bus_driver_send_service_created), (bus_driver_send_service_lost),
2689         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
2690         (bus_driver_send_welcome_message),
2691         (bus_driver_handle_list_services),
2692         (bus_driver_handle_acquire_service),
2693         (bus_driver_handle_service_exists):
2694         * bus/loop.c: (bus_loop_run):
2695         * bus/main.c:
2696         Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
2697         
2698         * bus/utils.c: (bus_wait_for_memory):
2699         * bus/utils.h:
2700         New files with general utility functions.
2701         
2702         * dbus/dbus-internals.h:
2703         Remove _DBUS_HANDLE_OOM.
2704         
2705 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2706
2707         * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
2708         (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
2709         * dbus/dbus-errors.h:
2710         Add DBusError structure.
2711         
2712 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2713
2714         * test/data/valid-messages/standard-acquire-service.message:
2715         * test/data/valid-messages/standard-hello.message:
2716         * test/data/valid-messages/standard-list-services.message:
2717         * test/data/valid-messages/standard-service-exists.message:
2718         Add some standard messages.
2719         
2720 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2721
2722         * bus/driver.c: (bus_driver_send_welcome_message),
2723         (bus_driver_handle_list_services),
2724         (bus_driver_handle_acquire_service),
2725         (bus_driver_handle_service_exists), (bus_driver_handle_message):
2726         Update for API changes in libdbus.
2727         
2728         * dbus/dbus-message.c: (dbus_message_new_reply):
2729         * dbus/dbus-message.h:
2730         Remove the name argument. The spec states that replies shouldn't
2731         have a name.
2732
2733 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
2734
2735         * bus/desktop-file.c: (parse_section_start), (parse_key_value),
2736         (report_error), (bus_desktop_file_load), (lookup_section),
2737         (lookup_line), (bus_desktop_file_get_raw),
2738         (bus_desktop_file_get_string):
2739         * bus/desktop-file.h:
2740         Some fixes, and new functions for getting a key value from a section.
2741         
2742 2003-02-13  Havoc Pennington  <hp@pobox.com>
2743
2744         * test/data/auth/fail-after-n-attempts.auth-script: new test
2745
2746         * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
2747         reject the client.
2748
2749 2003-02-13  Havoc Pennington  <hp@pobox.com>
2750
2751         * dbus/dbus-auth.c (handle_server_data_external_mech): args to
2752         dbus_credentials_match were backward
2753
2754         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
2755         NO_CREDENTIALS and ROOT_CREDENTIALS
2756
2757         * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine 
2758         into here. Never process more commands after we've reached an 
2759         end state; store further data as unused bytes.
2760
2761         * test/data/auth/*: add more auth tests
2762         
2763         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
2764         command to match exact string and EXPECT_UNUSED to match unused
2765         bytes
2766
2767         * test/Makefile.am (dist-hook): fix to dist all the test stuff
2768
2769 2003-02-12  Havoc Pennington  <hp@pobox.com>
2770
2771         * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
2772         \r off of popped lines
2773
2774         * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
2775         scripts
2776
2777         * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
2778         SEND, append \r\n
2779
2780 2003-02-12  Havoc Pennington  <hp@pobox.com>
2781
2782         * dbus/Makefile.am: remove break-loader from the build, since it
2783         moved.
2784
2785         * configure.in: add --enable-gcov to turn on coverage profiling
2786         flags and disable optimization
2787
2788 2003-02-10  Havoc Pennington  <hp@pobox.com>
2789
2790         * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync 
2791         initial cut at test framework for DBusAuth from laptop.
2792         Doesn't quite work yet but it compiles and I need to get 
2793         it off the 266mhz laptop. ;-)
2794         
2795         * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
2796         fix a memleak in error case
2797
2798 2003-02-12  Anders Carlsson  <andersca@codefactory.se>
2799
2800         * bus/Makefile.am:
2801         * bus/desktop-file.c:
2802         * bus/desktop-file.h:
2803         Add a desktop file parser.
2804
2805 2003-02-11  Zack Rusin  <zack@kde.org>
2806
2807         * qt/message.[h|cpp]: sample implementation
2808         of the KDE wrapper for DBusMessage
2809
2810 2003-02-09  Zack Rusin  <zack@kde.org>
2811
2812         * test/bus-test.c: make_it_compile
2813         * doc/dbus-specification.sgml: minimal semantic fix
2814
2815 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
2816
2817         Release 0.3
2818         
2819         * NEWS: Update
2820
2821 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
2822
2823         * dbus/Makefile.am:
2824         * dbus/dbus-break-loader.c:
2825         * test/Makefile.am:
2826         * test/break-loader.c:
2827         Move dbus-break-loader to test/ and rename it to break-loader.
2828
2829 2003-02-02  Havoc Pennington  <hp@pobox.com>
2830
2831         * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files 
2832         for code to manage cookies in your home directory
2833
2834         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
2835
2836         * dbus/dbus-auth.c (get_state): impose a maximum number of tries
2837         to authenticate, then disconnect the client.
2838
2839 2003-02-03  Alexander Larsson  <alexl@redhat.com>
2840
2841         * dbus/dbus-message.c (dbus_message_append_fields):
2842         Correct docs.
2843
2844 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
2845
2846         * doc/dbus-specification.sgml:
2847         Update address format section.
2848         
2849 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
2850
2851         * test/Makefile.am:
2852         * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
2853         (message_handler), (new_connection_callback), (loop_quit),
2854         (loop_run), (main):
2855         Add bus test.
2856         
2857 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
2858
2859         * bus/driver.c: (bus_driver_handle_service_exists):
2860         Simplify the code a bit.
2861         
2862         * dbus/dbus-bus.c: (dbus_bus_service_exists):
2863         Fix a silly. 
2864         
2865 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
2866
2867         * bus/Makefile.am:
2868         Add libdbus-daemon.la and link to it.
2869
2870 2003-02-01  James Willcox  <jwillcox@gnome.org>
2871
2872         * bus/driver.c: (bus_driver_handle_own_service):
2873         Actually include the service reply code in the message.
2874
2875 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
2876
2877         * bus/driver.c: (bus_driver_handle_service_exists):
2878         Don't unref the incoming message.
2879         
2880 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
2881
2882         * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
2883
2884 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
2885
2886         * dbus/dbus-server.c: (dbus_server_listen):
2887         * dbus/dbus-transport.c: (_dbus_transport_open):
2888         ifdef out the calls to the debug transport and server.
2889         
2890 2003-02-02  Alexander Larsson  <alexl@redhat.com>
2891
2892         * dbus/dbus-watch.c (dbus_watch_get_flags):
2893         Add note in the docs that ERROR or HANGUP won't be returned
2894         and are assumed always on.
2895
2896         * glib/dbus-gmain.c (add_watch):
2897         Always add IO_ERR | IO_HUP
2898
2899         * dbus/dbus-message.h:
2900         Add semicolon after dbus_message_iter_get_string_array().
2901         Makes qt code build again
2902
2903 2003-02-01  Anders Carlsson  <andersca@codefactory.se>
2904
2905         * bus/driver.c: (create_unique_client_name),
2906         (bus_driver_handle_hello):
2907         Don't take a name, just use a numeric id to identify
2908         each client.
2909         
2910         * dbus/Makefile.am:
2911         * dbus/dbus-bus.c: (dbus_bus_register_client),
2912         (dbus_bus_acquire_service), (dbus_bus_service_exists):
2913         * dbus/dbus-bus.h:
2914         Add new convenience functions for communicating with the bus.
2915         
2916         * dbus/dbus-message.h:
2917         
2918         * dbus/dbus-protocol.h:
2919         Fix a typo.
2920         
2921 2003-02-01  Alexander Larsson  <alexl@redhat.com>
2922
2923         * dbus/dbus-message.c (dbus_message_append_fields):
2924         Add some more doc comments.
2925
2926 2003-02-01  Havoc Pennington  <hp@pobox.com>
2927
2928         * dbus/dbus-break-loader.c (randomly_modify_length): change 
2929         a 4-byte value in the message as if it were a length
2930
2931         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
2932         execute bit on saved files
2933
2934 2003-02-01  Havoc Pennington  <hp@pobox.com>
2935
2936         * dbus/dbus-break-loader.c (main): new program to find messages
2937         that break the loader.
2938
2939         * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
2940         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
2941
2942         * dbus/dbus-string.c (_dbus_string_set_byte): new
2943         
2944 2003-01-31  Havoc Pennington  <hp@pobox.com>
2945
2946         * dbus/dbus-message.c: refactor the test code to be more general, 
2947         in preparation for writing a "randomly permute test cases to 
2948         try to break the loader" program.
2949
2950 2003-01-31  Havoc Pennington  <hp@pobox.com>
2951         
2952         * doc/dbus-specification.sgml: work on the specification
2953
2954         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check 
2955         the protocol version of the message.
2956
2957         * dbus/dbus-protocol.h: drop special _REPLY names, the spec 
2958         no longer specifies that.
2959         (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not 
2960         1/2/3/4)
2961
2962         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
2963         "break" for DBUS_TYPE_NIL, remove @todo
2964
2965 2003-01-31  Havoc Pennington  <hp@pobox.com>
2966
2967         * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename 
2968         just set_is_error/get_is_error as this is a commonly-used
2969         function, and write docs.
2970
2971 2003-01-31  Anders Carlsson  <andersca@codefactory.se>
2972
2973         * dbus/dbus-address.c: (dbus_address_entry_free):
2974         Free key and value lists.
2975         
2976         * dbus/dbus-internals.c: (_dbus_type_to_string):
2977         Add the types we didn't have.
2978         
2979         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
2980         (_dbus_marshal_validate_arg):
2981         Add NIL types.
2982         
2983         * dbus/dbus-message.c: (dbus_message_set_sender):
2984         Remove todo about being able to set sender to NULL.
2985         
2986         (dbus_message_set_is_error_reply),
2987         (dbus_message_get_is_error_reply):
2988         * dbus/dbus-message.h:
2989         New functions.
2990         
2991         * dbus/dbus-protocol.h:
2992         Add error reply flag.
2993         
2994         * test/data/valid-messages/opposite-endian.message:
2995         Add NIL type to test.
2996         
2997 2003-01-31  Havoc Pennington  <hp@pobox.com>
2998
2999         * doc/dbus-specification.sgml: fully specify the header.  Add
3000         flags and major protocol version, and change header/body len to
3001         unsigned.
3002
3003         * dbus/dbus-message-builder.c (append_saved_length): append length
3004         as uint32
3005
3006         * dbus/dbus-message.c (dbus_message_create_header): change header
3007         length and body length to unsigned. Add the new fields from the
3008         spec
3009         (_dbus_message_loader_return_buffer): unsigned header/body len
3010
3011 2003-01-30  Havoc Pennington  <hp@pobox.com>
3012
3013         * dbus/dbus-auth.c: rework to use only REJECTED, no 
3014         MECHANISMS
3015
3016         * doc/dbus-sasl-profile.txt: drop MECHANISMS and just 
3017         use REJECTED, suggested by Mark McLoughlin
3018
3019 2003-01-30  Havoc Pennington  <hp@pobox.com>
3020
3021         * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
3022         a better way to report errors here. e.g.  "unix address lacks
3023         path" or something. also "no such file" when the path doesn't
3024         exist, etc.
3025
3026         * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
3027         leaking list nodes
3028         (dbus_parse_address): add @todo about documenting address format, 
3029         and allowing , and ; to be escaped
3030
3031 2003-01-30  Anders Carlsson  <andersca@codefactory.se>
3032
3033         * dbus/Makefile.am:
3034         Add dbus-address.[ch]
3035         
3036         * dbus/dbus-address.c: (dbus_address_entry_free),
3037         (dbus_address_entries_free), (create_entry),
3038         (dbus_address_entry_get_method), (dbus_address_entry_get_value),
3039         (dbus_parse_address), (_dbus_address_test):
3040         * dbus/dbus-address.h:
3041         New files for dealing with address parsing.
3042         
3043         * dbus/dbus-connection.c:
3044         Document timeout functions.
3045         
3046         * dbus/dbus-message.c:
3047         Document dbus_message_new_from_message.
3048         
3049         * dbus/dbus-server-debug.c:
3050         Document.
3051         
3052         * dbus/dbus-server.c: (dbus_server_listen):
3053         Parse address and use correct server implementation.
3054         
3055         * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
3056         * dbus/dbus-string.h:
3057         New function with test.
3058         
3059         * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
3060         * dbus/dbus-test.h:
3061         Add address tests.
3062         
3063         * dbus/dbus-transport-debug.c:
3064         Document.
3065         
3066         * dbus/dbus-transport.c: (_dbus_transport_open):
3067         Parse address and use correct transport implementation. 
3068
3069 2003-01-30  Havoc Pennington  <hp@pobox.com>
3070
3071         * dbus/dbus-message.c: use message->byte_order instead of 
3072         DBUS_COMPILER_BYTE_ORDER throughout.
3073         (dbus_message_create_header): pad header to align the 
3074         start of the body of the message to 8-byte boundary
3075
3076         * dbus/dbus-marshal.h: make all the demarshalers take const 
3077         DBusString arguments.
3078
3079         * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
3080         validate message args here, so we don't have to do slow validation
3081         later, and so we catch bad messages as they are incoming. Also add
3082         better checks on header_len and body_len. Also fill in
3083         message->byte_order
3084
3085         * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
3086         implemented properly)
3087         (_dbus_string_validate_nul): new function to check all-nul
3088
3089         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename 
3090         get_arg_end_pos and remove all validation
3091         (_dbus_marshal_validate_arg): actually do validation here.
3092
3093 2003-01-29  Havoc Pennington  <hp@pobox.com>
3094
3095         * dbus/dbus-message.c (check_message_handling): fix assertion
3096         failure on set_client_serial
3097
3098 2003-01-28  Havoc Pennington  <hp@pobox.com>
3099
3100         * dbus/dbus-server-debug.c: Add doc section comments
3101         
3102         * dbus/dbus-transport-debug.c: add doc section comments
3103         
3104 2003-01-28  Havoc Pennington  <hp@redhat.com>
3105
3106         * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
3107         the reverse order from how I had it
3108         (_dbus_string_base64_encode): reverse encoding order. I was
3109         basically byteswapping everything during encoding.
3110
3111 2003-01-28  Anders Carlsson  <andersca@codefactory.se>
3112
3113         * dbus/dbus-connection-internal.h:
3114         * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
3115         (_dbus_connection_remove_timeout):
3116         Add functions for adding and removing timeouts.
3117         
3118         * dbus/dbus-message.c: (dbus_message_new_from_message):
3119         Add new function that takes a message and creates an exact
3120         copy of it, but with the refcount set to 1.
3121         (check_message_handling):
3122         Fix build error.
3123         
3124         * dbus/dbus-server-protected.h:
3125         * dbus/dbus-server.c: (_dbus_server_init_base),
3126         (_dbus_server_finalize_base), (_dbus_server_add_timeout),
3127         (dbus_server_set_timeout_functions):
3128         (_dbus_server_remove_timeout):
3129         New functions so that a server can add and remove timeouts.
3130
3131         (dbus_server_listen):
3132         Add commented out call to dbus_server_debug_new.
3133
3134         * dbus/dbus-timeout.c: (_dbus_timeout_new):
3135         Actually set the handler, doh.
3136         
3137         * dbus/dbus-transport.c: (_dbus_transport_open):
3138         Add commented out call to dbus_transport_debug_client_new.
3139         
3140         * dbus/Makefile.am:
3141         Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
3142         
3143 2003-01-28  Havoc Pennington  <hp@pobox.com>
3144
3145         * dbus/dbus-message.c (check_message_handling): function to check 
3146         on the loaded message, iterates over it etc.
3147
3148 2003-01-28  Havoc Pennington  <hp@pobox.com>
3149
3150         * test/Makefile.am (dist-hook): fix make distdir
3151
3152         * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
3153
3154 2003-01-27  Havoc Pennington  <hp@pobox.com>
3155
3156         * dbus/dbus-mempool.c (time_for_size): replace printf with 
3157         _dbus_verbose
3158
3159         * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
3160         empty lines; fix the SAVE_LENGTH stuff to be
3161         START_LENGTH/END_LENGTH so it actually works; couple other 
3162         bugfixes
3163         
3164         * test/Makefile.am (dist-hook): add dist-hook for .message files
3165
3166         * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
3167         can be constant or locked.
3168         (_dbus_string_free): allow freeing a const string as
3169         documented/intended
3170
3171         * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
3172
3173         * dbus/dbus-test-main.c (main): take an argument which is the 
3174         directory containing test data
3175
3176         * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
3177         argument to this and load all the messages in test/data/
3178         checking that they can be loaded or not loaded as appropriate.
3179
3180 2003-01-27  Anders Carlsson  <andersca@codefactory.se>
3181
3182         * bus/dispatch.c: (bus_dispatch_message_handler):
3183         Dispatch messages sent to services.
3184         
3185         * bus/driver.c: (bus_driver_send_service_deleted),
3186         (bus_driver_send_service_created), (bus_driver_send_service_lost),
3187         (bus_driver_send_service_acquired):
3188         Add helper functions for sending service related messages.
3189
3190         (bus_driver_send_welcome_message):
3191         Send HELLO_REPLY instead of WELCOME.
3192         
3193         (bus_driver_handle_list_services):
3194         Send LIST_SERVICES_REPLY instead of SERVICES.
3195         
3196         (bus_driver_handle_own_service),
3197         (bus_driver_handle_service_exists):
3198         New message handlers.
3199         
3200         (bus_driver_handle_message):
3201         Invoke new message handlers.
3202         
3203         (bus_driver_remove_connection):
3204         Don't remove any services here since that's done automatically
3205         by bus_service_remove_owner now.
3206         
3207         * bus/driver.h:
3208         New function signatures.
3209         
3210         * bus/services.c: (bus_service_add_owner):
3211         Send ServiceAcquired message if we're the only primary owner.
3212         
3213         (bus_service_remove_owner):
3214         Send ServiceAcquired/ServiceLost messages.
3215         
3216         (bus_service_set_prohibit_replacement),
3217         (bus_service_get_prohibit_replacement):
3218         Functions for setting prohibit replacement.
3219         
3220         (bus_service_has_owner):
3221         New function that checks if a connection is in the owner queue of 
3222         a certain service.
3223         
3224         * bus/services.h:
3225         Add new function signatures.
3226         
3227         * dbus/dbus-list.c: (_dbus_list_test):
3228         Add tests for _dbus_list_remove_last and traversing the list backwards.
3229         
3230         * dbus/dbus-list.h:
3231         Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
3232         go any further, so return NULL then.
3233         
3234         * dbus/dbus-protocol.h:
3235         Add new messages, service flags and service replies.
3236         
3237 2003-01-26  Havoc Pennington  <hp@pobox.com>
3238
3239         * dbus/dbus-message-builder.c: implement, completely untested.
3240
3241         * test/data/*: add data to be used in testing. 
3242         ".message" files are our simple loadable text format.
3243         ".message-raw" will be binary dumps of messages.
3244
3245         * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
3246
3247 2003-01-26  Havoc Pennington  <hp@pobox.com>
3248
3249         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
3250
3251         * dbus/dbus-errors.c (dbus_result_to_string): add
3252         file errors
3253
3254         * dbus/dbus-message-builder.c: new file, will contain code to load
3255         up messages from files. Not implemented yet.
3256
3257 2003-01-26  Havoc Pennington  <hp@pobox.com>
3258
3259         * dbus/dbus-message.c (dbus_message_set_sender): support deleting
3260         the sender by setting to NULL
3261
3262 2003-01-26  Havoc Pennington  <hp@pobox.com>
3263
3264         The unit tests pass, but otherwise untested.  If it breaks, the
3265         tests should have been better. ;-)
3266         
3267         * bus/driver.c (bus_driver_handle_hello): return if we disconnect
3268         the connection.
3269
3270         * dbus/dbus-message.c: redo everything so we maintain 
3271         message->header as the only copy of the various fields.
3272         This avoids the possibility of out-of-memory in some cases,
3273         for example dbus_message_lock() can't run out of memory anymore,
3274         and avoids extra copying. Figured I may as well go ahead and do 
3275         this since it was busted for dbus_message_lock to not return 
3276         failure on OOM, and dbus_message_write_header was totally
3277         unchecked for OOM. Also fixed some random other bugs.
3278
3279         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
3280         that strings are nul-terminated. Also, end_pos can be equal 
3281         to string length just not greater than, I think.
3282         (_dbus_marshal_set_int32): new function
3283         (_dbus_marshal_set_uint32): new function
3284         (_dbus_marshal_set_string): new function
3285
3286         * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
3287         a warning, init timeout_list to NULL
3288         (dbus_connection_send_message): don't use uninitialized variable
3289         "serial"
3290
3291         * dbus/dbus-string.c (_dbus_string_replace_len): new function
3292
3293 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
3294
3295         * bus/driver.c: (bus_driver_handle_hello),
3296         (bus_driver_send_welcome_message):
3297         Plug leaks
3298         
3299 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
3300
3301         * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
3302         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
3303         (dbus_connection_unref):
3304         * dbus/dbus-marshal.c: (_dbus_marshal_test):
3305         * dbus/dbus-message.c: (dbus_message_unref),
3306         Plug memory leaks.
3307         
3308         (dbus_message_get_fields): 
3309         Remove debugging printout.
3310
3311         (_dbus_message_loader_return_buffer):
3312         Don't store the header string.
3313         
3314         (_dbus_message_test):
3315         Plug leaks.
3316
3317 2003-01-26  Richard Hult  <rhult@codefactory.se>
3318
3319         * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
3320         the file descriptor list, since it can change under us.
3321
3322 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
3323
3324         * glib/dbus-gmain.c: (dbus_connection_prepare),
3325         (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
3326         (remove_watch), (dbus_connection_hookup_with_g_main):
3327         Rewrite the glib handling to use its own GSource instead of a 
3328         GIOChannel so we can catch messages put in the queue while waiting
3329         for a reply.
3330         
3331 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
3332
3333         * bus/Makefile.am:
3334         * bus/connection.c: (connection_disconnect_handler),
3335         (connection_watch_callback), (bus_connection_setup):
3336         * bus/dispatch.c: (send_one_message),
3337         (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
3338         (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
3339         * bus/dispatch.h:
3340         * bus/driver.c: (bus_driver_send_service_deleted),
3341         (bus_driver_send_service_created), (bus_driver_handle_hello),
3342         (bus_driver_send_welcome_message),
3343         (bus_driver_handle_list_services), (bus_driver_remove_connection),
3344         (bus_driver_handle_message):
3345         * bus/driver.h:
3346         Refactor code, put the message dispatching in its own file. Use 
3347         _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
3348         is disconnected.
3349         
3350 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
3351
3352         * dbus/dbus-internals.h:
3353         Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
3354         
3355         * dbus/dbus-message.c: (dbus_message_get_sender):
3356         * dbus/dbus-message.h:
3357         Implement dbus_message_get_sender.
3358         
3359         * dbus/dbus-protocol.h:
3360         Add message and service defines.
3361         
3362 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
3363
3364         * dbus/dbus-connection.c: (dbus_connection_send_message):
3365         * dbus/dbus-message-internal.h:
3366         * dbus/dbus-message.c: (_dbus_message_get_client_serial),
3367         (dbus_message_write_header):
3368         Remove _dbus_messag_unlock and don't set the client serial on a 
3369         message if one already exists.
3370         
3371 2003-01-24  Havoc Pennington  <hp@pobox.com>
3372
3373         * dbus/dbus-list.c (alloc_link): put a thread lock on the global
3374         list_pool
3375
3376         * bus/driver.c (bus_driver_handle_list_services): fix a leak 
3377         on OOM
3378
3379 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
3380
3381         * dbus/dbus-list.c: (alloc_link), (free_link):
3382         Use a memory pool for the links.
3383         
3384 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
3385
3386         * bus/connection.c: (bus_connection_foreach):
3387         * bus/connection.h:
3388         Add new bus_connection_foreach function.
3389         
3390         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
3391         Add function that broadcasts a message to all clients.
3392         
3393         (bus_driver_send_service_created), (bus_driver_handle_hello),
3394         (bus_driver_send_welcome_message),
3395         (bus_driver_handle_list_services), (bus_driver_message_handler):
3396         Implement functions that take care of listing services, and notifying
3397         clients when new services are created.
3398         
3399         * bus/services.c: (bus_services_list):
3400         * bus/services.h:
3401         Add new function that returns an array of strings with the currently
3402         registered services.
3403         
3404         * glib/dbus-glib.h:
3405         * glib/dbus-gmain.c:
3406         Update copyright year.
3407         
3408 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
3409
3410         * dbus/dbus-connection.c: (dbus_connection_send_message):
3411         Unlock the message in case it was sent earlier.
3412         
3413         (dbus_connection_send_message_with_reply_and_block):
3414         Remove the reply message from the list.
3415         
3416         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
3417         Set array_len and new_pos correctly.
3418         
3419         (_dbus_marshal_test):
3420         Remove debug output.
3421         
3422         * dbus/dbus-message-internal.h:
3423         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
3424         New function that returns the reply serial.
3425         
3426         (_dbus_message_unlock):
3427         New function that unlocks a message and resets its header.
3428
3429         (dbus_message_append_string_array), 
3430         (dbus_message_get_fields_valist),
3431         (dbus_message_iter_get_field_type),
3432         (dbus_message_iter_get_string_array),   
3433         (dbus_message_get_fields),      
3434         (dbus_message_append_fields_valist):
3435         Handle string arrays.
3436         
3437         (dbus_message_set_sender):
3438         Make this function public since the bus daemon needs it.
3439         
3440         (decode_header_data):
3441         Set the reply serial to -1 initially.
3442
3443         * dbus/dbus-message.h:
3444         Add dbus_message_set_sender.    
3445
3446 2003-01-24  Havoc Pennington  <hp@pobox.com>
3447
3448         * doc/dbus-specification.sgml: add some stuff
3449
3450 2003-01-22  Havoc Pennington  <hp@pobox.com>
3451
3452         * doc/dbus-specification.sgml: Start to document the protocol.
3453
3454 2003-01-22  Havoc Pennington  <hp@pobox.com>
3455
3456         * dbus/dbus-connection.c
3457         (dbus_connection_send_message_with_reply_and_block): add some @todo
3458
3459         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
3460
3461 2003-01-21  Havoc Pennington  <hp@pobox.com>
3462
3463         (patch untested because can't compile)
3464         
3465         * bus/driver.c (create_unique_client_name): make this function
3466         never recycle client names. Also, caller should initialize 
3467         the DBusString.
3468
3469         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
3470
3471 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
3472
3473         * dbus/dbus-marshal.c: (_dbus_marshal_double),
3474         (_dbus_marshal_int32), (_dbus_marshal_uint32),
3475         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
3476         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
3477         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
3478         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
3479         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
3480         * dbus/dbus-marshal.h:
3481         * dbus/dbus-protocol.h:
3482         Add support for marshalling and demarshalling integer, double
3483         and string arrays.
3484         
3485 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
3486
3487         * bus/Makefile.am:
3488         Add driver.[ch]
3489         
3490         * bus/connection.c: (connection_disconnect_handler):
3491         Remove the connection from the bus driver's list.
3492         
3493         (connection_watch_callback): Dispatch messages.
3494
3495         (free_connection_data): Free connection name.
3496         
3497         (bus_connection_setup): Add connection to the bus driver's list.
3498         (bus_connection_remove_owned_service): 
3499         (bus_connection_set_name), (bus_connection_get_name):
3500         Add functions for setting and getting the connection's name.
3501         
3502         * bus/connection.h:
3503         Add function headers.
3504         
3505         * bus/driver.c: (create_unique_client_name),
3506         (bus_driver_handle_hello_message),
3507         (bus_driver_send_welcome_message), (bus_driver_message_handler),
3508         (bus_driver_add_connection), (bus_driver_remove_connection):
3509         * bus/driver.h:
3510         * bus/main.c:
3511         * bus/services.c: (bus_service_free):
3512         * bus/services.h:
3513         New file that handles communication and registreation with the bus
3514         itself. 
3515         
3516 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
3517
3518         * dbus/dbus-connection.c: (dbus_connection_send_message):
3519         Add a new client_serial parameter.
3520         
3521         (dbus_connection_send_message_with_reply):
3522         Remove a @todo since we've implemented the blocking function.
3523         
3524         (dbus_connection_send_message_with_reply_and_block):
3525         New function that sends a message and waits for a reply and
3526         then returns the reply.
3527         
3528         * dbus/dbus-connection.h:
3529         Add new functions.
3530         
3531         * dbus/dbus-errors.c: (dbus_result_to_string):
3532         * dbus/dbus-errors.h:
3533         Add new DBUS_RESULT.
3534         
3535         * dbus/dbus-message-internal.h:
3536         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
3537         (_dbus_message_set_sender), (dbus_message_write_header),
3538         (dbus_message_new_reply), (decode_header_data),
3539         (_dbus_message_loader_return_buffer), (_dbus_message_test):
3540         * dbus/dbus-message.h:
3541         Add new functions that set the reply serial and sender.
3542         Also marshal and demarshal them correctly and add test.
3543         
3544         * dbus/dbus-protocol.h:
3545         Add new DBUS_MESSAGE_TYPE_SENDER.
3546         
3547         * glib/dbus-glib.h:
3548         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
3549         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
3550         (dbus_connection_hookup_with_g_main):
3551         * glib/test-dbus-glib.c: (main):
3552         Rewrite to use GIOChannel and remove the GSource crack.
3553         
3554         * test/echo-client.c: (main):
3555         * test/watch.c: (check_messages):
3556         Update for changed APIs
3557         
3558 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
3559
3560         * dbus/Makefile.am: Add dbus-timeout.[cħ]
3561         
3562         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
3563         Create a DBusTimeoutList.       
3564         (dbus_connection_set_timeout_functions): Add new function to
3565         set timeout callbacks
3566         
3567         * dbus/dbus-connection.h: Add public DBusTimeout API.
3568         
3569         * dbus/dbus-message.c: (dbus_message_get_service):
3570         * dbus/dbus-message.h:  New function.
3571
3572         * dbus/dbus-server.c: Fix small doc typo.
3573         
3574         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
3575
3576 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
3577
3578         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
3579         of the string, just as long as specified.
3580
3581 2003-01-19  Havoc Pennington  <hp@pobox.com>
3582
3583         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
3584         new function
3585
3586         * dbus/dbus-server.c (dbus_server_set_max_connections)
3587         (dbus_server_get_max_connections, dbus_server_get_n_connections):
3588         keep track of current number of connections, and add API for
3589         setting a max (but haven't implemented enforcing the max yet)
3590
3591 2003-01-18  Havoc Pennington  <hp@pobox.com>
3592
3593         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
3594         reading/writing if read_watch != NULL or write_watch != NULL.
3595
3596         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
3597         the message loader code to actually load message->header and
3598         message->body into the newly-created message.
3599
3600         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
3601         in OOM case
3602
3603         * dbus/dbus-connection.c (dbus_connection_set_max_message_size) 
3604         (dbus_connection_get_max_message_size) 
3605         (dbus_connection_set_max_live_messages_size) 
3606         (dbus_connection_get_max_live_messages_size): implement some
3607         resource limitation functions
3608
3609         * dbus/dbus-resources.c: new file implementing some of the
3610         resource limits stuff
3611
3612         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
3613         missing docs, add @todo to handle OOM etc.
3614
3615         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
3616         docs
3617         
3618 2003-01-18  Havoc Pennington  <hp@pobox.com>
3619
3620         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the 
3621         connection if it hasn't been already.
3622
3623         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
3624         replace with DisconnectFunction.
3625
3626 2003-01-18  Havoc Pennington  <hp@pobox.com>
3627
3628         Building --disable-verbose-mode --disable-asserts --disable-tests
3629         cuts the library from 112K to 45K or so
3630         
3631         * configure.in: check for varargs macro support, 
3632         add --enable-verbose-mode, --enable-asserts. 
3633
3634         * dbus/dbus-internals.h (_dbus_assert): support
3635         DBUS_DISABLE_ASSERT
3636         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
3637
3638 2003-01-18  Havoc Pennington  <hp@pobox.com>
3639
3640         * dbus/dbus-test.c: include config.h so that tests actually run
3641
3642         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
3643         so the failure mode when that assumption fails will be plenty
3644         obvious.
3645
3646 2003-01-18  Havoc Pennington  <hp@pobox.com>
3647
3648         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
3649
3650         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
3651         the distribution
3652
3653         * test/Makefile.am: don't use special variable "TESTS" for echo-*
3654         since we don't want to use those in make check
3655
3656 2003-01-15  Havoc Pennington  <hp@redhat.com>
3657
3658         Release 0.2
3659         
3660         * NEWS: update
3661
3662 2003-01-15  Havoc Pennington  <hp@redhat.com>
3663
3664         * test/Makefile.am: fix so that test source code ends up in the
3665         distribution on make distcheck
3666
3667 2003-01-15  Havoc Pennington  <hp@redhat.com>
3668
3669         Release 0.1.
3670         
3671         * NEWS: update  
3672
3673 2003-01-15  Havoc Pennington  <hp@redhat.com>
3674
3675         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
3676         fix build when --disable-tests
3677
3678         * Makefile.am (EXTRA_DIST): put HACKING in here
3679
3680         * HACKING: document procedure for making a tarball release.
3681
3682 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
3683
3684         * bus/connection.c: (connection_error_handler),
3685         (bus_connection_setup):
3686         * bus/main.c: (main):
3687         Make sure that the DBusConnectionData struct is NULLed
3688         out to prevent a segfault.
3689         
3690         * dbus/dbus-errors.c: (dbus_result_to_string):
3691         * dbus/dbus-errors.h:
3692         * dbus/dbus-message.c: (dbus_message_get_fields),
3693         (dbus_message_get_fields_valist), (_dbus_message_test):
3694         * dbus/dbus-message.h:
3695         Make dbus_message_get_fields return a result code so we can
3696         track invalid fields as well as oom.
3697         
3698 2003-01-11  Havoc Pennington  <hp@pobox.com>
3699
3700         * configure.in: change --enable-test/--enable-ansi action-if-given
3701         to enable_foo=$enableval instead of enable_foo=yes
3702
3703 2003-01-08  Havoc Pennington  <hp@pobox.com>
3704
3705         * dbus/dbus-string.c (_dbus_string_align_length): new function
3706
3707         * dbus/dbus-test-main.c: move main() for test app here
3708         * dbus/dbus-test.c
3709         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
3710         symbol to run tests, because dbus-test isn't in the main 
3711         library
3712
3713         Code review nitpicks.
3714         
3715         * dbus/dbus-message.c (dbus_message_write_header): add newlines
3716         for people with narrow emacs ;-). Assert client_serial was filled
3717         in. Assert message->name != NULL.
3718         (dbus_message_append_fields): have "first_field_type" arg separate
3719         from va list, needed for C++ binding that also uses varargs IIRC
3720         and helps with type safety
3721         (dbus_message_new): add @todo about using DBusString to store
3722         service/name internally
3723         (dbus_message_new): don't leak ->service and ->name on OOM later
3724         in the function
3725         (dbus_message_unref): free the service name
3726         (dbus_message_get_fields): same change to varargs
3727         i.e. first_field_type
3728         (_dbus_message_loader_return_buffer): assert that the message data
3729         is aligned (if not it's a bug in our code). Put in verbose griping
3730         about why we set corrupted = TRUE.
3731         (decode_header_data): add FIXME that char* is evil.  Was going to
3732         add FIXME about evil locale-specific string.h strncmp, but just
3733         switched to wacky string-as-uint32 optimization. Move check for
3734         "no room for field name" above get_const_data_len() to avoid
3735         assertion failure in get_const_data_len if we have trailing 2
3736         bytes or the like. Check for service and name fields being
3737         provided twice. Don't leak service/name on error. Require field
3738         names to be aligned to 4 bytes.
3739
3740         * dbus/dbus-marshal.c: move byte swap stuff to header
3741         (_dbus_pack_int32): uscore-prefix
3742         (_dbus_unpack_int32): uscore-prefix
3743         (_dbus_unpack_uint32): export
3744         (_dbus_demarshal_string): add @todo complaining about use of
3745         memcpy()
3746         (_dbus_marshal_get_field_end_pos): add @todo about bad error
3747         handling allowing corrupt data to go unchecked
3748
3749 2003-01-08  Havoc Pennington  <hp@redhat.com>
3750
3751         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write 
3752         to the select() as needed for authentication. (should be using
3753         _dbus_poll() not select, but for another day)
3754
3755         * dbus/dbus.h: include dbus/dbus-protocol.h
3756
3757 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
3758
3759         * dbus/Makefile.am (dbusinclude_HEADERS): Install
3760         dbus-connection.h
3761
3762 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
3763
3764         * dbus/dbus-internals.c: (_dbus_type_to_string):
3765         New function that returns a string describing a type.
3766         
3767         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
3768         * dbus/dbus-marshal.h:
3769         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
3770         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
3771         (dbus_message_iter_get_byte_array):
3772         * dbus/dbus-message.h:
3773         Add new convenience functions for appending and getting message fields.
3774         Also add demarshalling routines for byte arrays.
3775
3776 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
3777
3778         * dbus/dbus-connection-internal.h:
3779         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
3780         (_dbus_connection_get_next_client_serial),
3781         (dbus_connection_send_message):
3782         * dbus/dbus-internals.h:
3783         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
3784         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
3785         (_dbus_marshal_uint32), (_dbus_demarshal_double),
3786         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
3787         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
3788         (_dbus_verbose_bytes), (_dbus_marshal_test):
3789         * dbus/dbus-marshal.h:
3790         * dbus/dbus-message-internal.h:
3791         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
3792         (dbus_message_write_header), (_dbus_message_lock),
3793         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
3794         (dbus_message_get_name), (dbus_message_append_int32),
3795         (dbus_message_append_uint32), (dbus_message_append_double),
3796         (dbus_message_append_string), (dbus_message_append_byte_array),
3797         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
3798         (dbus_message_iter_unref), (dbus_message_iter_has_next),
3799         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
3800         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
3801         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
3802         (decode_header_data), (_dbus_message_loader_return_buffer),
3803         (message_iter_test), (_dbus_message_test):
3804         * dbus/dbus-message.h:
3805         * dbus/dbus-protocol.h:
3806         * dbus/dbus-test.c: (main):
3807         * dbus/dbus-test.h:
3808         * glib/test-dbus-glib.c: (message_handler), (main):
3809         * test/echo-client.c: (main):
3810         * test/watch.c: (check_messages):
3811         Make messages sendable and receivable for real.
3812         
3813 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
3814
3815         * dbus/dbus-marshal.c: (_dbus_marshal_double),
3816         (_dbus_marshal_string), (_dbus_marshal_byte_array):
3817         * dbus/dbus-message.c: (dbus_message_append_int32),
3818         (dbus_message_append_uint32), (dbus_message_append_double),
3819         (dbus_message_append_string), (dbus_message_append_byte_array):
3820         Handle OOM restoration.
3821         
3822 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
3823
3824         * dbus/dbus-marshal.c: (_dbus_marshal_string),
3825         (_dbus_demarshal_string), (_dbus_marshal_test):
3826         * dbus/dbus-marshal.h:
3827         * dbus/dbus-message.c: (dbus_message_get_name),
3828         Document these functions.
3829         
3830         (dbus_message_append_int32), (dbus_message_append_uint32),
3831         (dbus_message_append_double), (dbus_message_append_string),
3832         (dbus_message_append_byte_array):
3833         * dbus/dbus-message.h:
3834         Add functions for adding message fields of different types.
3835         
3836         * dbus/dbus-protocol.h:
3837         Add the different types.
3838
3839 2003-01-05  Havoc Pennington  <hp@pobox.com>
3840
3841         * bus/connection.c: implement routines for handling connections,
3842         first thing is keeping a list of owned services on each connection
3843         and setting up watches etc.
3844
3845         * bus/services.c: implement a mapping from service names to lists
3846         of connections
3847
3848         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
3849
3850         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
3851         to use static mutexes for global data
3852
3853         * dbus/dbus-connection.c (dbus_connection_set_data): add new
3854         collection of functions to set/get application-specific data
3855         on the DBusConnection.
3856
3857 2003-01-04  Havoc Pennington  <hp@pobox.com>
3858
3859         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
3860         (_dbus_poll): new function
3861
3862         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
3863         copied from GLib
3864
3865         * bus/loop.c: initial code for the daemon main loop
3866
3867 2003-01-04  Havoc Pennington  <hp@pobox.com>
3868
3869         * test/watch.c (error_handler): make it safe if the error handler 
3870         is called multiple times (if we s/error handler/disconnect
3871         handler/ we should just guarantee it's called only once)
3872
3873         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
3874         error handler on disconnect (it's quite possible we should
3875         just change the error handler to a "disconnect handler," I'm 
3876         not sure we have any other meaningful errors)
3877
3878         * configure.in: check for getpwnam_r
3879
3880         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
3881         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
3882         mechanism as in SASL spec, using socket credentials
3883
3884         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
3885         (_dbus_send_credentials_unix_socket): new function
3886
3887         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
3888         dbus_accept()
3889         (_dbus_write): only check errno if <0 returned
3890         (_dbus_write_two): ditto
3891
3892 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
3893
3894         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
3895         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
3896         (_dbus_marshal_test):
3897         * dbus/dbus-marshal.h:
3898         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
3899         to _dbus_marshal_utf8_string. Also fix some tests.
3900         
3901 2002-12-28  Harri Porten  <porten@kde.org>
3902
3903         * configure.in: added check for C++ compiler and a very cheesy
3904         check for the Qt integration
3905
3906         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
3907
3908         * qt/Makefile.am: added 
3909
3910         * qt/.cvsignore: added  
3911
3912         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
3913         latter, added #ifdef QT_THREAD_SUPPORT guard.
3914
3915         * dbus/Makefile.am: added missing headers for make dist
3916
3917 2002-12-28  Kristian Rietveld  <kris@gtk.org>
3918
3919         * dbus/Makefile.am: fixup export-symbols-regex.
3920
3921 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
3922
3923         * acinclude.m4: Add this file and put the 
3924         PKG_CHECK_MODULE macro in it.
3925
3926 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
3927
3928         * dbus/dbus-marshal.c: (_dbus_marshal_string),
3929         (_dbus_demarshal_double), (_dbus_demarshal_int32),
3930         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
3931         (_dbus_marshal_test):
3932         Make the demarshalling routines align the pos argument.
3933         Add string marshalling tests and fix the obvious bugs 
3934         discovered.
3935         
3936 2002-12-26  Havoc Pennington  <hp@pobox.com>
3937
3938         * dbus/dbus-auth.c: fixes fixes fixes
3939
3940         * dbus/dbus-transport-unix.c: wire up support for
3941         encoding/decoding data on the wire
3942
3943         * dbus/dbus-auth.c (_dbus_auth_encode_data) 
3944         (_dbus_auth_decode_data): append to target string 
3945         instead of nuking it.
3946
3947 2002-12-26  Havoc Pennington  <hp@pobox.com>
3948
3949         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
3950         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
3951         doh
3952
3953         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
3954         avoid swap_bytes() overhead (ignoring possible assembly stuff for 
3955         now). Main point is because I wanted unpack_uint32 to implement
3956         _dbus_verbose_bytes
3957         (_dbus_verbose_bytes): new function
3958
3959         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
3960
3961         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
3962         mechanism to handle a corrupt message stream
3963         (_dbus_message_loader_new): fix preallocation to only prealloc, 
3964         not prelengthen
3965         
3966         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
3967         (_dbus_string_test): enhance tests for copy/move and fix the
3968         functions
3969
3970         * dbus/dbus-transport-unix.c: Hold references in more places to 
3971         avoid reentrancy problems
3972
3973         * dbus/dbus-transport.c: ditto
3974
3975         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
3976         leak reference count in no-message case
3977
3978         * test/watch.c (do_mainloop): handle adding/removing watches
3979         during iteration over the watches. Also, ref the connection/server
3980         stored on a watch, so we don't try to mangle a destroyed one.
3981
3982         * dbus/dbus-transport-unix.c (do_authentication): perform
3983         authentication
3984
3985         * dbus/dbus-auth.c (get_state): add a state
3986         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
3987         (_dbus_auth_get_unused_bytes): append the unused bytes
3988         to the passed in string, rather than prepend
3989
3990         * dbus/dbus-transport.c (_dbus_transport_init_base): create 
3991         the auth conversation DBusAuth
3992
3993         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
3994         (_dbus_transport_new_for_domain_socket): when creating a
3995         transport, pass in whether it's a client-side or server-side
3996         transport so we know which DBusAuth to create
3997
3998 2002-12-03  Havoc Pennington  <hp@pobox.com>
3999
4000         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
4001         _after_ finalizing the derived members
4002         (unix_connection_set): unref watch if we fail to add it
4003
4004         * dbus/dbus-connection.c (dbus_connection_unref): delete the
4005         transport first, so that the connection owned by the 
4006         transport will be valid as the transport finalizes.
4007
4008         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
4009         if necessary, and remove watches from the connection.
4010         
4011         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
4012         
4013 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
4014
4015         * dbus/dbus-marshal.c: (_dbus_marshal_string),
4016         (_dbus_demarshal_double), (_dbus_demarshal_int32),
4017         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
4018         (_dbus_marshal_test):
4019         * dbus/dbus-marshal.h:
4020         Add string marshal functions and have the demarshal functions
4021         return the new position.
4022         
4023 2002-12-25  Havoc Pennington  <hp@pobox.com>
4024
4025         * doc/dbus-sasl-profile.txt: docs on the authentication protocol, 
4026         it is a simple protocol that just maps directly to SASL.
4027
4028         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
4029         initial implementation, not actually used yet.
4030         
4031         * dbus/dbus-string.c (_dbus_string_find): new function
4032         (_dbus_string_equal): new function
4033         (_dbus_string_base64_encode): new function
4034         (_dbus_string_base64_decode): new function
4035
4036 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
4037
4038         * dbus/Makefile.am:
4039         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
4040         (_dbus_marshal_int32), (_dbus_marshal_uint32),
4041         (_dbus_demarshal_double), (_dbus_demarshal_int32),
4042         (_dbus_demarshal_uint32), (_dbus_marshal_test):
4043         * dbus/dbus-marshal.h:
4044         * dbus/dbus-protocol.h:
4045         * dbus/dbus-test.c: (main):
4046         * dbus/dbus-test.h:
4047         Add un-optimized marshalling/demarshalling routines.
4048         
4049 2002-12-25  Harri Porten  <porten@kde.org>
4050
4051         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
4052
4053 2002-12-24  Zack Rusin  <zack@kde.org>
4054
4055         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
4056         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
4057         main loop stuff
4058
4059 2002-12-24  Havoc Pennington  <hp@pobox.com>
4060
4061         * glib/dbus-gthread.c: fix include
4062
4063         * glib/dbus-glib.h: rename DBusMessageHandler for now. 
4064         I think glib API needs to change, though, as you don't 
4065         want to use DBusMessageFunction, you want to use the 
4066         DBusMessageHandler object. Probably 
4067         dbus_connection_open_with_g_main_loop()
4068         and dbus_connection_setup_g_main_loop() or something like that
4069         (but think of better names...) that just create a connection 
4070         that has watch/timeout functions etc. already set up.
4071
4072         * dbus/dbus-connection.c
4073         (dbus_connection_send_message_with_reply): new function just to 
4074         show how the message handler helps us deal with replies.
4075
4076         * dbus/dbus-list.c (_dbus_list_remove_last): new function
4077
4078         * dbus/dbus-string.c (_dbus_string_test): free a string that
4079         wasn't
4080
4081         * dbus/dbus-hash.c: use memory pools for the hash entries
4082         (rebuild_table): be more paranoid about overflow, and 
4083         shrink table when we can
4084         (_dbus_hash_test): reduce number of sprintfs and write
4085         valid C89. Add tests for case where we grow and then 
4086         shrink the hash table.
4087
4088         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
4089
4090         * dbus/dbus-connection.c (dbus_connection_register_handler) 
4091         (dbus_connection_unregister_handler): new functions
4092
4093         * dbus/dbus-message.c (dbus_message_get_name): new
4094
4095         * dbus/dbus-list.c: fix docs typo
4096
4097         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
4098         an object representing a handler for messages.
4099
4100 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
4101
4102         * glib/dbus-glib.h:
4103         * glib/dbus-gthread.c: (dbus_gthread_init):
4104         Don't use the gdbus prefix for public functions.
4105         
4106 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
4107
4108         * Makefile.am:
4109         * configure.in:
4110         Add GLib checks and fixup .pc files
4111         
4112         * glib/Makefile.am:
4113         * glib/dbus-glib.h:
4114         * glib/dbus-gmain.c: (gdbus_connection_prepare),
4115         (gdbus_connection_check), (gdbus_connection_dispatch),
4116         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
4117         (dbus_connection_gsource_new):
4118         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
4119         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
4120         * glib/test-dbus-glib.c: (message_handler), (main):
4121         Add GLib support.
4122         
4123 2002-12-15  Harri Porten  <porten@kde.org>
4124
4125         * autogen.sh: check for libtoolize before attempting to use it 
4126         
4127         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
4128         struct.
4129         
4130         * .cvsignore: ignore more stamp files
4131
4132         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
4133
4134         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
4135         without make install.
4136
4137 2002-12-15  Havoc Pennington  <hp@pobox.com>
4138
4139         * dbus/dbus-threads.c: add thread stubs that a higher library
4140         layer can fill in. e.g. the GLib wrapper might fill them in with
4141         GThread stuff. We still need to use this thread API to
4142         thread-safe-ize the library.
4143
4144 2002-12-12  Havoc Pennington  <hp@pobox.com>
4145
4146         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
4147         below new interfaces and include fewer system headers.
4148
4149         * dbus/dbus-sysdeps.c (_dbus_read): new function
4150         (_dbus_write): new function
4151         (_dbus_write_two): new function
4152         (_dbus_connect_unix_socket): new function
4153         (_dbus_listen_unix_socket): new function
4154
4155         * dbus/dbus-message-internal.h: change interfaces to use
4156         DBusString
4157
4158 2002-12-11  Havoc Pennington  <hp@pobox.com>
4159
4160         * dbus/dbus-types.h: add dbus_unichar
4161
4162         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
4163
4164         * dbus/dbus-connection.c (dbus_connection_send_message): return
4165         TRUE on success
4166
4167         * dbus/dbus-transport.c: include dbus-watch.h   
4168
4169         * dbus/dbus-connection.c: include dbus-message-internal.h
4170
4171         * HACKING: add file with coding guidelines stuff.
4172
4173         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
4174         handling here, for security purposes (as in vsftpd). Not actually
4175         using this class yet.
4176
4177         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
4178         system/libc usage here, as in vsftpd, for ease of auditing (and
4179         should also simplify portability). Haven't actually moved all the
4180         system/libc usage into here yet.
4181         
4182 2002-11-25  Havoc Pennington  <hp@pobox.com>
4183
4184         * dbus/dbus-internals.c (_dbus_verbose): fix to not 
4185         always print the first verbose message.
4186
4187 2002-11-24  Havoc Pennington  <hp@pobox.com>
4188
4189         * test/echo-client.c, test/echo-server.c: cheesy test 
4190         clients.
4191         
4192         * configure.in (AC_CHECK_FUNCS): check for writev
4193
4194         * dbus/dbus-message.c (_dbus_message_get_network_data): new
4195         function
4196
4197         * dbus/dbus-list.c (_dbus_list_foreach): new function
4198
4199         * dbus/dbus-internals.c (_dbus_verbose): new function
4200
4201         * dbus/dbus-server.c, dbus/dbus-server.h: public object
4202         representing a server that listens for connections.
4203
4204         * dbus/.cvsignore: create
4205
4206         * dbus/dbus-errors.h, dbus/dbus-errors.c:
4207         public API for reporting errors
4208
4209         * dbus/dbus-connection.h, dbus/dbus-connection.c:
4210         public object representing a connection that 
4211         sends/receives messages. (Same object used for 
4212         both client and server.)
4213
4214         * dbus/dbus-transport.h, dbus/dbus-transport.c:
4215         Basic abstraction for different kinds of stream
4216         that we might read/write messages from.
4217
4218 2002-11-23  Havoc Pennington  <hp@pobox.com>
4219
4220         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN 
4221         _DBUS_INT_MAX
4222
4223         * dbus/dbus-test.c (main): add list test, and include 
4224         dbus-test.h as intended
4225
4226         * dbus/dbus-hash.c (_dbus_hash_table_remove_string) 
4227         (_dbus_hash_table_remove_int): return value indicates 
4228         whether the entry existed to remove
4229
4230         * dbus/dbus-list.c: add linked list utility class, 
4231         with docs and tests
4232
4233         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket 
4234         array sometimes.
4235
4236 2002-11-23  Havoc Pennington  <hp@pobox.com>
4237
4238         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
4239         DBUS_END_DECLS to nothing, that should fix this once and for all
4240
4241         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
4242
4243         * dbus/dbus-message.c, dbus/dbus-hash.c: 
4244         add some missing @brief
4245
4246 2002-11-23  Havoc Pennington  <hp@pobox.com>
4247
4248         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS 
4249         to avoid confusing Doxygen
4250
4251         * dbus/dbus-hash.c: @} not }@
4252
4253         * dbus/dbus-message.c (struct DBusMessage): split out 
4254         internals docs
4255
4256 2002-11-23  Havoc Pennington  <hp@pobox.com>
4257
4258         * configure.in: pile on more warning flags if using gcc
4259
4260         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have 
4261         to document static functions
4262
4263         * configure.in: add summary to end of configure so it 
4264         looks nice and attractive
4265
4266         * dbus/dbus-hash.c: finish implementation and write unit 
4267         tests and docs
4268
4269         * configure.in: add --enable-tests to enable unit tests
4270
4271         * dbus/dbus-test.c: test program to run unit tests 
4272         for all files in dbus/*, initially runs a test for 
4273         dbus-hash.c
4274         
4275         * dbus/dbus-internals.h: file to hold some internal utility stuff
4276
4277 2002-11-22  Havoc Pennington  <hp@redhat.com>
4278
4279         * dbus/dbus-hash.c: copy in Tcl hash table, not yet 
4280         "ported" away from Tcl
4281
4282         * dbus/dbus-types.h: header for types such as dbus_bool_t
4283
4284 2002-11-22  Havoc Pennington  <hp@redhat.com>
4285
4286         * dbus/dbus.h: fixups for doc warnings
4287
4288         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up 
4289         macros
4290         (QUIET): make it quiet so we can see warnings
4291
4292         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
4293
4294 2002-11-22  Havoc Pennington  <hp@redhat.com>
4295
4296         * Makefile.am: include "Doxyfile" target in all-local
4297
4298         * configure.in: generate the Doxyfile
4299
4300         * Doxyfile.in: move Doxyfile here, so we can use 
4301         configure to generate a Doxyfile with the right 
4302         version number etc.
4303
4304 2002-11-22  Havoc Pennington  <hp@redhat.com>
4305
4306         * dbus/dbus-message.c: move inline docs into .c file
4307
4308         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
4309         so all docs are under doc/
4310         (MAN_EXTENSION): generate man pages. Use extension 
4311         ".3dbus" which matches ".3qt" on my system, 
4312         I guess this is OK, I don't know really.
4313         (FILE_PATTERNS): look for .c files not .h, makes sense
4314         for plain C I think
4315
4316 2002-11-22  Havoc Pennington  <hp@pobox.com>
4317
4318         * Makefile.am (SUBDIRS): rename subdir "server" to "bus" 
4319         because any app can be a server, and any app can be a client, 
4320         the bus is a special kind of server.
4321
4322 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
4323
4324         * Doxyfile : adding. Still needs Makefile rules to be generated
4325         automatically (just run "doxygen" in the toplevel dir for now to
4326         generate docs)
4327         
4328         * dbus/dbus-message.h : Adding sample docs (javadoc since
4329         resembles gtk-doc a little more)
4330
4331         * dbus/dbus.h : Adding sample docs
4332
4333 2002-11-21  Havoc Pennington  <hp@redhat.com>
4334
4335         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION 
4336         so we can allow ourselves to include files directly, 
4337         instead of having to use dbus.h
4338
4339         * dbus/dbus.h: fill in
4340
4341         * dbus/dbus-message.h: sketch out a sample header file.
4342         Include griping if you include it directly instead of 
4343         via dbus.h
4344
4345         * dbus/dbus-macros.h: new file with macros for extern "C", 
4346         TRUE/FALSE, NULL, etc.
4347
4348         * doc/file-boilerplate.c: put include guards in here
4349
4350 2002-11-21  Havoc Pennington  <hp@redhat.com>
4351
4352         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
4353
4354         * COPYING: include the GPL as well, and license code 
4355         under both AFL and GPL.
4356
4357 2002-11-21  Havoc Pennington  <hp@redhat.com>
4358
4359         * acconfig.h: get rid of this
4360
4361         * autogen.sh (run_configure): add --no-configure option
4362
4363         * configure.in: remove AC_ARG_PROGRAM to make
4364         autoconf complain less. add AC_PREREQ. 
4365         add AC_DEFINE third arg.
4366         
4367 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
4368
4369         * doc/Makefile.am:
4370         Fix references so we can distcheck.
4371
4372 2002-11-21  Havoc Pennington  <hp@redhat.com>
4373
4374         * Initial module creation
4375