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