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