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