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