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