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