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