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