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