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