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