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