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