- minor spelling fix
[platform/upstream/dbus.git] / ChangeLog
1 2007-06-14  Havoc Pennington  <hp@redhat.com>
2
3         * bus/dispatch.c (check_get_connection_unix_process_id): mop up
4         getpid() (noticed by Peter KKümmel) and adapt the test to 
5         expect a "pid unknown" error when running on Windows.
6
7 2007-06-14  Havoc Pennington  <hp@redhat.com>
8
9         * dbus/dbus-sysdeps-unix.c (_dbus_credentials_parse_and_add_user):
10         delete this function since it was effectively the same as
11         _dbus_credentials_add_from_username()
12
13 2007-06-14  Havoc Pennington  <hp@redhat.com>
14
15         * dbus/dbus-auth.c: adapt to keyring changes
16
17         * dbus/dbus-keyring.c: change to avoid using user ID and home
18         directory directly; instead use a
19         keyring-location-from-credentials function in dbus-sysdeps
20
21         * fix to use _dbus_append_user_from_current_process() instead of 
22         _dbus_username_from_current_process() or _dbus_append_desired_identity().
23         
24 2007-06-14  Ralf Habacker  <ralf.habacker@freenet.de>
25
26         * reverted global rename of function _dbus_username_from_current_process. 
27         It needs too much tests to verify that the change does not break anything. 
28         I had overseen that the signatures are different and requires non
29         trivial changes. 
30         This is one *major* disadvantage of emulating oop functionality with c. 
31         You are responsible for cleaning every object on every function return point
32         which could be a nightmare if you are not working with dbus all the days.
33
34 2007-06-14  Ralf Habacker  <ralf.habacker@freenet.de>
35     
36         * dbus/dbus-auth.c (handle_client_initial_response_cookie_sha1_mech): 
37         fixed usage of _dbus_append_desired_identity()
38
39         * dbus/dbus-sysdeps.h (_dbus_username_from_current_process): removed prototype
40
41 2007-06-14  Ralf Habacker  <ralf.habacker@freenet.de>
42     
43         * dbus/dbus-sysdeps.c: moved global lock system_users from dbus-userdb.c
44
45 2007-06-14  Ralf Habacker  <ralf.habacker@freenet.de>
46     
47         * global rename of function _dbus_username_from_current_process
48         to _dbus_append_desired_identity. 
49         Approved by Havoc Pennington
50
51 2007-06-14  Ralf Habacker  <ralf.habacker@freenet.de>
52
53         * dbus/dbus-sysdeps-win.c: disabled DBusUserInfo related code
54                 (_dbus_append_desired_identity, _dbus_windows_user_is_process_owner):
55                 new win32 functions as counterpart of unix related 
56                 (_dbus_send_credentials_socket,_dbus_read_credentials_socket): 
57                 renamed from ..._unix_socket
58                 (_dbus_send_credentials_unix_socket): removed obsolate function
59         
60         * dbus/dbus-sysdeps-win-util.c: disabled DBusGroupInfo related code
61                 (_dbus_verify_daemon_user,_dbus_change_to_daemon_user): 
62                     new win32 functions as counterpart of unix related
63         
64 2007-06-14  Simon McVittie  <simon.mcvittie@collabora.co.uk>
65
66         * doc/dbus-specification.xml: say the protocol version is 1 instead of
67         0 (patch from Kristoffer Lundén, fd.o#10033) and remove the FIXME
68         about removing protocol version from messages (as per Havoc's comment
69         on that bug)
70
71 2007-06-14  Ralf Habacker  <ralf.habacker@freenet.de>
72
73         * dbus/dbus-sysdeps-win.c (_dbus_pid_for_log,_dbus_flush_caches): 
74         new win32 functions as counterpart of unix related
75
76 2007-06-14  Ralf Habacker  <ralf.habacker@freenet.de>
77         
78         * cmake/modules/FindKDEWIN.cmake,
79           cmake/modules/FindKDEWIN_Packager.cmake, 
80           cmake/modules/Win32Macros.cmake: new files from the 
81           kdewin32 project
82         * cmake/CMakeLists.txt: cleaned support for kdewin installer and 
83           win32 explorer wrapper
84
85 2007-06-13  Havoc Pennington  <hp@redhat.com>
86         
87         * dbus/dbus-message.c (dbus_message_iter_open_container): Fix
88         broken return_if_fail (kind of scary that test suite does not
89         cover this)
90
91 2007-06-13  Havoc Pennington  <hp@redhat.com>
92
93         * dbus/dbus-server-socket.c (_dbus_server_listen_socket): support
94         all_interfaces=true|false for tcp servers
95
96         * dbus/dbus-sysdeps-unix.c (_dbus_listen_tcp_socket): support
97         inaddr_any flag
98
99         * bus/selinux.c: fix some missing includes
100
101         * dbus/dbus-server-socket.c (_dbus_server_listen_socket): allow
102         port to simply be omitted in addition to specifying 0
103
104 2007-06-13  Havoc Pennington  <hp@redhat.com>
105
106         * configure.ac, bus/selinux.c, dbus/dbus-sysdeps-unix-util.c: add
107         libaudit support, no clue what this means really but now we have
108         it. Patches from Fedora package.
109
110         * bus/bus.c (bus_context_new): move selinux initialization after
111         changing to daemon user, patch from Fedora package
112
113         * dbus/dbus-transport.c (auth_via_unix_user_function): fix a typo
114
115 2007-06-12  Havoc Pennington  <hp@redhat.com>
116
117         * dbus/dbus-message.c (dbus_message_iter_open_container): improve
118         the checks/warnings for contained_signature a bit
119
120 2007-06-12  Havoc Pennington  <hp@redhat.com>
121         
122         * dbus/dbus-marshal-recursive.c (write_or_verify_typecode):
123         improve the warning a bit if you write extra data into a message
124
125 2007-06-12  Havoc Pennington  <hp@redhat.com>
126
127         * dbus/dbus-auth.c (sha1_handle_second_client_response)
128         (handle_server_data_anonymous_mech): add the process ID from
129         socket credentials, if available, even if not using EXTERNAL
130
131         * dbus/dbus-transport.c (auth_via_default_rules): support
132         allow_anonymous flag
133
134         * dbus/dbus-connection.c (dbus_connection_get_is_anonymous)
135         (dbus_connection_set_allow_anonymous): new API for controlling
136         anonymous access
137
138 2007-06-09  Havoc Pennington  <hp@redhat.com>
139
140         * dbus/dbus-string.c (_dbus_string_pop_line): fix this not to
141         think an empty line is the end of the file.
142         Also, fix some whitespace.
143
144         * dbus/dbus-string-util.c: add more tests for
145         _dbus_string_pop_line() revealing that it thinks an empty line is
146         the end of the file, which broke dbus-auth-script.c so 
147         it didn't really run the scripts
148
149         * dbus/dbus-auth.c: add ANONYMOUS mechanism
150
151         * dbus/dbus-auth-script.c (_dbus_auth_script_run): fix to detect
152         an empty/no-op auth script; add commands to check that we have or
153         don't have the expected credentials     
154
155 2007-06-09  Havoc Pennington  <hp@redhat.com>
156
157         * bus/policy.c (bus_policy_create_client_policy): gracefully
158         continue if the connection has no unix user - just don't apply 
159         any unix user dependent rules.
160
161         * bus/config-parser.c: remove dbus-userdb.h usage
162
163         * bus/bus.c: remove dbus-userdb.h usage
164
165         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
166         support Windows user function; also, fix the logic for checking
167         auth as root in the default auth code (broken in the previous
168         commit)
169
170         * dbus/dbus-connection.c
171         (dbus_connection_set_windows_user_function): new function
172         (dbus_connection_get_windows_user): new function
173
174 2007-06-09  Havoc Pennington  <hp@redhat.com>
175
176         * bus/dispatch.c (check_get_connection_unix_process_id): adapt
177         since sysdeps-unix.h stuff isn't included anymore
178
179         * bus/bus.c (bus_context_new): use more abstract functions to
180         change user, so they can be no-ops on Windows
181
182         * dbus/dbus-credentials.c, dbus/dbus-credentials.h,
183         dbus/dbus-credentials-util.c: new files containing a fully opaque
184         DBusCredentials data type to replace the old not opaque one.
185
186         * configure.in (DBUS_UNIX): define DBUS_UNIX to match DBUS_WIN on
187         windows
188
189         * dbus/dbus-userdb.h: prohibit on Windows, next step is to clean
190         up the uses of it in bus/*.c and factor out the parts of 
191         cookie auth that depend on it
192         
193 2007-06-07  Havoc Pennington  <hp@redhat.com>
194
195         * dbus/dbus-message.c: improve some docs related to reading values
196         from a message iter
197
198 2007-06-02  Ralf Habacker  <ralf.habacker@freenet.de>
199
200         * cmake: added cygwin compile support
201
202 2007-06-01  Ralf Habacker  <ralf.habacker@freenet.de>
203
204         * tools/dbus-launch-win.c: new file, replaces script wrapper on win32.
205
206         * cmake/dbus-launch.bat.cmake: removed obsolate file
207
208 2007-05-31  Ralf Habacker  <ralf.habacker@freenet.de>
209
210         * bus/main.c (main): uses _dbus_get_config_file_name() to detect 
211         session.conf location on win32. 
212
213         * dbus-sysdeps-win.h (_dbus_get_config_file_name,_dbus_file_exists): 
214         new prototyp, undefined interface after including windows.h because 
215         it makes trouble when a paramater is named interface.
216
217         * dbus-sysdeps-win.c (_dbus_get_install_root,
218         _dbus_get_config_file_name,_dbus_file_exists):  new functions.
219
220 2007-05-27  Ralf Habacker  <ralf.habacker@freenet.de>
221
222         * bus/policy.c,dbus/dbus-internals.c: fixed inconsistant line endings 
223         as reported by Peter Kümmel.
224
225 2007-05-25  John (J5) Palmieri  <johnp@redhat.com>
226
227         * Released 1.1.0
228
229 2007-05-25  John (J5) Palmieri  <johnp@redhat.com>
230
231         * Split NEWS and ChangeLog into a .pre-1-0 file as per HACKING
232         We forgot to do this during the 1.0 release and it makes sense
233         now as we get ready to release the first 1.1.0 development tarball
234
235 2007-05-25  John (J5) Palmieri  <johnp@redhat.com>
236
237         * create directory test/data/valid-config-files/session.d so that
238         make check passes
239
240 2007-05-25  John (J5) Palmieri  <johnp@redhat.com>
241
242         * INSTALL: remove dependancies for bindings since they no longer
243         are a part of core
244
245 2007-05-25  Ralf Habacker  <ralf.habacker@freenet.de>
246
247         * dbus/dbus-server-win.c,dbus/dbus-server-win.h: new file 
248         with empty function _dbus_server_listen_platform_specific(). 
249
250         * dbus/dbus-server.c (listen_funcs): uses 
251         _dbus_server_listen_platform_specific on any platform.
252
253 2007-05-25  Ralf Habacker  <ralf.habacker@freenet.de>
254
255         * dbus/dbus-sysdeps-win.c (fill_win_user_info_homedir): not getting 
256         user info from a domain controller isn't an error, the computer 
257         may run in a non domain context. 
258
259 2007-05-25  Ralf Habacker  <ralf.habacker@freenet.de>
260
261         * dbus/dbus-sysdeps-win.c (_dbus_full_duplex_pipe): fixed assertation.
262
263 2007-05-24  Simon McVittie  <simon.mcvittie@collabora.co.uk>
264
265         * bus/config-parser.c (test_service_dir_matches): fixed ordering for unix.
266
267         * bus/config-parser.c (test_default_session_servicedirs): made allocation 
268         of _progs platform independent.
269
270 2007-05-23  Havoc Pennington  <hp@redhat.com>
271
272         * bus/Makefile.am (install-data-hook): create session.d
273
274         * bus/session.conf.in: add session.d for the session bus, so
275         security policy can be extended
276
277 2007-05-22 Ralf.Habacker <ralf.habacker@freenet.de>
278
279         * cmake/CMakeLists.txt: fixed creating of TEST_..._BINARY to make 
280         bus-test able to find the binaries.
281
282 2007-05-21 Simon McVittie  <simon.mcvittie@collabora.co.uk>
283
284         * acinclude.m4, configure.in: In recent autotools, ${datadir} is
285         defined in terms of ${datarootdir}, so EXPANDED_DATADIR needs to be
286         expanded recursively. Rather than fixing configure.in to do this, I
287         grabbed the AS_AC_EXPAND macro from autostars.sf.net, which seems to be
288         commonly used.
289
290 2007-05-21 Simon McVittie  <simon.mcvittie@collabora.co.uk>
291
292         * update-dbus-docs.sh: Assorted improvements:
293         - Default user if $FDUSER is not set is the ssh default
294           (set in ~/.ssh/config or based on the local username), not a
295           hard-coded "johnp"
296         - Temporary checkout directory is created securely (preventing symlink
297           attacks), if mktemp(1) is available
298         - Use make -C rather than cd && make && cd ..
299
300 2007-05-21 Simon McVittie  <simon.mcvittie@collabora.co.uk>
301
302         * HACKING: Point to correct mailing list
303
304 2007-05-21 Simon McVittie  <simon.mcvittie@collabora.co.uk>
305
306         * doc/dbus-specification.xml: explicitly specify that STRING cannot
307         contain embedded NULs.
308
309 2007-05-20 Ralf.Habacker  <ralf.habacker@freenet.de>
310
311         * dbus/dbus-internal.c: fix inline problem on win32.
312
313 2007-05-20 Ralf.Habacker  <ralf.habacker@freenet.de>
314
315         * dbus/dbus-sysdeps-win.c (fill_win_user_info_homedir): not reaching 
316         domain controller isn't an error, converted error message to verbose 
317         message.
318
319 2007-05-19 Ralf.Habacker  <ralf.habacker@freenet.de>
320
321         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): disabled 
322         tests not running on wince.
323
324 2007-05-19 Ralf.Habacker  <ralf.habacker@freenet.de>
325
326         * dbus/dbus-internals.c (_dbus_verbose_init): win32 requires 'varname=' 
327         to unset a environment variable. 
328
329 2007-05-19 Ralf.Habacker  <ralf.habacker@freenet.de>
330
331         * dbus/dbus-sysdeps.c (_dbus_setenv): win32 requires 'varname=' 
332         to unset a environment variable. 
333
334 2007-05-19 Ralf.Habacker  <ralf.habacker@freenet.de>
335
336         * bus/policy.c (bus_policy_create_client_policy): 
337         win32 temporary fix until the userdb stuff is ported completly.
338
339 2007-05-19  Ralf.Habacker  <ralf.habacker@freenet.de>
340
341         * dbus/dbus-server.c (listen_funcs): 
342         _dbus_server_listen_platform_specific is empty on win32, 
343         limited to unix only.
344
345         * dbus/dbus-server.c (valid_addresses): limit unix 
346         only addresses to unix. 
347
348 2007-05-18  Havoc Pennington  <hp@redhat.com>
349
350         * doc/dbus-specification.xml: add a GetAll to the Properties
351         interface.
352
353 2007-05-17 Ralf.Habacker  <ralf.habacker@freenet.de>
354  
355         * bus\config-parser.c (test_default_session_servicedirs):
356         win32 fix.
357
358 2007-05-17 Ralf.Habacker  <ralf.habacker@freenet.de>
359  
360         * configure.in: define constant DBUS_UNIX.
361
362 2007-05-14  Ralf Habacker <ralf.habacker@freenet.de>
363
364         * dbus/dbus-sysdeps-win.c (_dbus_printf_string_upper_bound):
365         compile fix for MS Platform SDK 6 
366         patch from Michael Luschas <mluschas@gmail.com>
367
368 2007-05-10  John (J5) Palmieri <johnp@redhat.com>
369
370         * dbus-1.pc.in: add daemondir to pc file
371         patch from Brian Cameron <brian.cameron at sun.com>
372
373 2007-05-04  Simon McVittie <simon.mcvittie@collabora.co.uk>
374
375         * doc/dbus-specification.xml: mention the reserved o.fd.DBus.Local
376         interface and the corresponding /o/fd/DBus/Local object path;
377         describe them as reserved and forbid using them in a sent message,
378         mentioning that in the reference implementation this will cause the
379         connection to be dropped. Patch approved by Havoc.
380
381 2007-04-28  Ralf Habacker <ralf.habacker@freenet.de>
382
383         * cmake/: don't install test applications and service files,
384         moved CMAKE_DEBUG_POSTFIX to top level CMakeLists.txt
385
386 2007-04-27  Havoc Pennington  <hp@redhat.com>
387
388         * dbus/dbus-sysdeps-unix.c (_dbus_open_socket): fix #10781 from
389         Tobias Nygren, checking pointer to fd vs. 0 rather than checking
390         the fd itself
391
392 2007-04-26 Ralf Habacker  <ralf.habacker@freenet.de>
393
394         * cmake/: added debug postfixes to debug exe's for 
395         easier debugging.
396         * dbus\dbus-sysdeps-win.c (_dbus_win_set_error_from_win_error): 
397         print error code in case no string message is available.
398
399 2007-04-06 Simon McVittie <simon.mcvittie@collabora.co.uk>
400
401         * dbus/dbus-message-util.c, dbus/dbus-message.c,
402         dbus/dbus-message.h: Add API to convert a DBusMessage to/from a
403         byte array. Patch from Dafydd Harries <dafydd.harries@collabora.co.uk>,
404         approved by Havoc Pennington.
405
406 2007-04-03  Timo Hoenig  <thoenig@suse.de>
407
408         * dbus/dbus-address.c (dbus_parse_address): Do not accept zero-
409           length address.
410         * dbus/dbus-address.c (_dbus_address_test): Add test for zero-
411           length address.
412
413 2007-03-25 Ralf.Habacker  <ralf.habacker@freenet.de>
414
415         * cmake/dbus/CMakeLists.txt: debug postfix also for mingw.
416
417 2007-03-16 Ralf.Habacker  <ralf.habacker@freenet.de>
418
419         * cmake/modules/FindExpat.cmake: fix package detection on win32.
420
421         * README.win: update install instructions. 
422
423 2007-03-16 Ralf.Habacker  <ralf.habacker@freenet.de>
424
425         * dbus/dbus-sysdeps.h (_dbus_split_paths_and_append):
426         new prototyp
427         (_DBUS_PATH_SEPARATOR): new macro. 
428
429         * dbus/dbus-sysdeps.c (_dbus_split_paths_and_append): merged 
430         from dbus/dbus-sysdeps-unix.c and dbus/dbus-sysdeps-win.c. 
431
432 2007-03-15 Ralf.Habacker  <ralf.habacker@freenet.de>
433
434         * bus/config-parser.c, bus/policy.c,  
435         bus/policy.h, bus/dbus-daemon.1.in,
436         bus/session.conf.in: added eavesdrop support 
437         for replies - patch by olli.salli at collabora.co.uk
438         approved by Havoc Pennington. 
439
440 2007-03-15 Ralf.Habacker  <ralf.habacker@freenet.de>
441
442         * dbus\dbus-sysdeps-win-thread.c: renamed to 
443         dbus-sysdeps-thread-win.c, it is a platform depending file 
444         similar to dbus-sysdeps-pthread.c.
445
446 2007-03-15 Ralf.Habacker  <ralf.habacker@freenet.de>
447
448         * cmake\doc\CMakeLists.txt: added prelimary xml doc 
449         support, needs cmake Find script.
450
451 2007-03-14 Ralf.Habacker  <ralf.habacker@freenet.de>
452
453         * cmake: add doxygen support
454
455 2007-03-14  Ralf.Habacker  <ralf.habacker@freenet.de>
456
457         * cmake/config.h.cmake: WINCE fixes, defined DBUS_UNIX.
458
459 2007-03-13  Ralf.Habacker  <ralf.habacker@freenet.de>
460
461         * dbus/dbus-sysdeps-util-win.c (dbus_become_daemon): 
462         win32 compile fix. 
463
464 2007-03-13  Ralf.Habacker  <ralf.habacker@freenet.de>
465
466         * dbus-win.patch: removed obsolate patches. 
467
468 2007-03-13  Ralf.Habacker  <ralf.habacker@freenet.de>
469
470         * dbus/dbus-sysdeps-win.c: added zero byte sending 
471         and receiving after connection start up
472
473 2007-03-11  Havoc Pennington  <hp@redhat.com>
474
475         * tools/dbus-launch.c (do_close_stderr): fix C89 problem and
476         formatting problem
477
478         * Mostly fix the DBusPipe mess.
479         - put line break after function return types
480         - put space before parens
481         - do not pass structs around by value
482         - don't use dbus_strerror after calling supposedly cross-platform
483         api
484         - don't name pipe variables "fd"
485         - abstract special fd numbers like -1 and 1
486
487 2007-03-12  Ralf Habacker  <ralf.habacker@freenet.de>
488
489         * dbus/dbus-sysdeps-win.h, dbus/dbus-sysdeps-win.c, 
490         dbus/dbus-sysdeps-util-win.c: renamed functions 
491         _dbus_xxx_file() to _dbus_file_xxx() to reflect 
492         struct name DBusFile. 
493
494 2007-03-12  Ralf Habacker  <ralf.habacker@freenet.de>
495
496         * dbus/dbus-sysdeps-util-unix.c (_dbus_become_daemon):
497         fix _dbus_pid_fd check. 
498
499 2007-03-10  Ralf Habacker  <ralf.habacker@freenet.de>
500
501         * tools/dbus-print-message.c (print_message):
502         added printing of the reply serial to method returns and 
503         errors, so you can actually figure out the message/reply 
504         pairs - patch by olli.salli at collabora.co.uk.
505
506 2007-03-10  Ralf Habacker  <ralf.habacker@freenet.de>
507
508         * dbus-win.patch: removed committed patches. 
509
510 2007-03-10  Ralf Habacker  <ralf.habacker@freenet.de>
511
512         * bus/bus.c, bus/bus.h, bus/main.c, bus/test.c,
513         dbus/dbus-sysdeps-unix.c, dbus/dbus-sysdeps-util-unix.c,
514         dbus/dbus-sysdeps-util-win.c, dbus/dbus-sysdeps-win.c,
515         dbus/dbus-sysdeps.h: renamed _dbus_xxx_pipe to _dbus_pipe_xxx,
516         completed _dbus_pipe support. 
517
518 2007-03-10  Ralf Habacker  <ralf.habacker@freenet.de>
519
520         * dbus/dbus-sysdeps.h (_dbus_listen_tcp_socket):
521         changed type or port to pointer, because the port is given back.
522
523         * dbus/dbus-server-socket.c (_dbus_server_new_for_tcp_socket):
524         implemented returning tcp port. Skipping port parameter
525         and non integer port values in config <listen> statement
526         needs more effort.
527
528         * dbus/dbus-sysdeps-unix.c, dbus/dbus-sysdeps-win.c
529         (_dbus_listen_tcp_socket): return the real used tcp port.
530
531         * bus/dbus-daemon.1.in: added <listen> tcp examples
532
533 2007-03-09  Ralf Habacker  <ralf.habacker@freenet.de>
534
535         * cmake/config.h.cmake: win32 msvc bug fix
536
537 2007-03-09  Ralf Habacker  <ralf.habacker@freenet.de>
538
539         * cmake/config.h.cmake: fixed DBUS_WINxx defines,
540         using _WINCE does not work.
541
542 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
543
544         * dbus-win.patch: removed _dbus_write_pipe() patch, it is now 
545         committed.
546
547 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
548
549         * bus/bus.c, dbus/dbus-sysdeps-unix.c, dbus/dbus-sysdeps.h:
550         rename pipe related write() function calls to _dbus_write_pipe().
551
552 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
553
554         * dbus-win.patch: added bus/config-loader-libexpat.c patch, 
555         uses DBUS_WIN for alls win32 related #ifdefs, 
556         some minor cleanups
557
558 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
559
560         * dbus-win.patch: updated patch for bus/dispatch.c.
561
562 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
563
564         * dbus-win.patch: dbus-connection.c (dbus_connection_get_unix_user,
565         dbus_connection_get_unix_process_id): Let return them valid user id's, 
566         otherwise bus-test fails. How to replace on win32 ?.
567         
568         * dbus/dbus-sysdeps-win.c (fill_win_user_info_homedir):
569         fix memory leak.
570
571 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
572
573         * dbus/dbus-sysdeps-win.c (_dbus_win_set_error_from_win_error):
574         use dbus friendly error name.
575         (fill_win_user_info_homedir): print user name in error case too.
576
577 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
578
579         * cmake/ConfigureChecks.cmake: fixed socketpair check
580
581 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
582
583         * bus/dispatch.c: disabled segfault test on win32 for now
584
585 2007-03-08  Ralf Habacker  <ralf.habacker@freenet.de>
586
587         * configure.in, cmake/ConfigureChecks.cmake: added check 
588         for setrlimit. 
589         * test/test-segfault.c: only include setrlimit stuff only 
590         when available.  
591
592 2007-03-07  Ralf Habacker  <ralf.habacker@freenet.de>
593
594         * test/test-segfault.c: unix compile fix.
595         * dbus-win.patch: removed obsolate patches.
596
597 2007-03-07  Ralf Habacker  <ralf.habacker@freenet.de>
598
599         * bus/activation.c: removed obsolate include header.
600         * test/test-segfault.c: win32 compile fix, rlimit 
601         isn't available on win32.
602         * dbus-win.patch: removed some more patches, they
603         are applied or obsolate 
604
605 2007-03-06  Ralf Habacker  <ralf.habacker@freenet.de>
606
607         * bus-win.patch: fixes unix listen problems, dbus-test 
608         now runs.
609
610 2007-03-06  Ralf Habacker  <ralf.habacker@freenet.de>
611
612         * cmake/dbus/CMakeLists.txt,cmake/bus/CMakeLists.txt,
613         cmake/CMakeLists.txt: win32 compile fix
614
615 2007-03-04  Ralf Habacker  <ralf.habacker@freenet.de>
616
617         * dbus-win.patch, README.win: added available win32 
618         patches from windbus project (http://sf.net/projects/windbus)
619
620 2007-03-04  Ralf Habacker  <ralf.habacker@freenet.de>
621
622         * bus/activation.c: (bus_activation_activate_service):
623         fixed call to _dbus_spawn_async_with_babysitter().
624
625 2007-03-04  Ralf Habacker  <ralf.habacker@freenet.de>
626
627         * dbus/dbus-spawn.c,dbus/dbus-spawn.h (_dbus_spawn_async_with_babysitter):
628         added environment pointer as function parameter, used on win32.
629
630         * test/spawn-test.c: fixed call to above mentioned function.
631
632 2007-03-04  Ralf Habacker  <ralf.habacker@freenet.de>
633
634         * configure.in,test/test-sleep-forever.c,test/test-names.c: 
635         added configure check for unistd.h.
636
637 2007-03-04  Ralf Habacker  <ralf.habacker@freenet.de>
638
639         * test/Makefile.am: fixed test data copy problem in 
640         out of source build, when sources came from svn or cvs. 
641
642 2007-03-03  Ralf Habacker  <ralf.habacker@freenet.de>
643
644         * dbus/*-win.*,bus/*-win.*: added win32 platform related
645         files. These files are only added to the cmake build system.  
646         The missing dbus-win.patch file will be added later. 
647
648 2007-03-03  Ralf Habacker  <ralf.habacker@freenet.de>
649
650         * cmake: new directory, contains cmake build support.
651         See http://www.cmake.org for more informations.
652         Currently only unix will be buildable because some 
653         win32 required files are still missing. 
654
655 2007-03-03  Thiago Macieira  <thiago@kde.org>
656
657         * dbus/dbus-sysdeps-unix.c: capture the dbus-launch stderr
658         output and add it to the DBusError message we return.
659
660         * tools/dbus-launch.1:
661         * tools/dbus-launch.c: Add option --close-stderr to, well,
662         close stderr before starting dbus-daemon.
663
664 2007-01-31  Havoc Pennington  <hp@redhat.com>
665
666         * bus/dbus-daemon.1.in: write a section in the man page on running
667         a test daemon for debugging purposes
668
669 2007-01-26  Havoc Pennington  <hp@redhat.com>
670
671         * bus/session.conf.in: override all the default limits with much
672         higher limits on the session bus, there is no reason the session
673         bus should have low limits
674
675         * bus/config-parser.c (bus_config_parser_new): increase default
676         limits so they are less likely to be hit; in particular the max
677         replies per connection was way too low
678
679 2006-01-25  Simon McVittie  <simon.mcvittie@collabora.co.uk>
680
681         * doc/dbus-tutorial.xml: Replace Python section of tutorial with
682         a pointer to the tutorial maintained as part of dbus-python
683
684 2006-12-31  Ralf Habacker  <ralf.habacker@freenet.de>
685
686         * dbus/dbus-sysdeps-unix.c: unix compile fix, moved 
687         atomic_exchange_and_add() from dbus/dbus-sysdeps.c 
688         to here, it's used by _dbus_atomic_inc() and _dbus_atomic_dec().
689
690 2006-12-31  Ralf Habacker  <ralf.habacker@freenet.de>
691
692         * tools/dbus-monitor.c: gettimeofday() is not available 
693         on windows so we have to provide our own. It's taken from 
694         lgpl'd kdewin32 package. - Patches from Christian Ehrlicher
695
696 2006-12-31  Ralf Habacker  <ralf.habacker@freenet.de>
697
698         * dbus/dbus-sysdeps-unix.c: moved _dbus_atomic_inc/dec() 
699         from dbus/dbus-sysdeps.c, windows version of _dbus_atomic_inc/dec() 
700         is in dbus-sysdeps-win.c (not in this patch).
701
702         * dbus/dbus-sysdeps.h: DBusAtomic::value is long on windows to fit 
703         with InterlockedInc/Decrement. 
704         - Patches from Christian Ehrlicher
705         
706 2006-12-31  Ralf Habacker  <ralf.habacker@freenet.de>
707
708         * tools/dbus-send.c, tools/dbus-monitor.c: win32 compile fix.
709
710 2006-12-31  Ralf Habacker  <ralf.habacker@freenet.de>
711
712         * dbus/dbus-marshal-recursive.c (type DBusTypeReaderClass):
713         fix mispaced const statement. - Patch from Peter Kümmel
714
715 2006-12-19  Ray Strode  <rstrode@redhat.com>
716
717         * bus/bus.c (process_config_every_time):
718         don't overwrite existing bus context activation object
719         until after we've checked that the new activation is
720         valid.
721
722         * bus/main.c 
723         (signal_handler), (handle_reload_watch):
724         don't call exit() on failure, instead make do and keep
725         going.
726         (close_reload_pipe): new function to turn off
727         hangup-causes-config-reload behavior if an unexpected
728         error occurs
729
730 2006-12-13  Ralf Habacker  <ralf.habacker@freenet.de>
731
732         * dbus/dbus-sysdeps-win-thread.c (_dbus_condvar_wait_win32):
733         correctness fix. - Patch from Christian Ehrlicher
734
735 2006-12-13  Ralf Habacker  <ralf.habacker@freenet.de>
736
737         * dbus/dbus-internals.h: msvc also knows about __FUNCTION__, 
738         we should also use it. - Patch from Christian Ehrlicher
739
740 2006-12-13  Ralf Habacker  <ralf.habacker@freenet.de>
741   
742         * dbus-sysdeps-util.c: added win32 related tests
743
744 2006-12-12  Ralf Habacker  <ralf.habacker@freenet.de>
745
746         * dbus/dbus-string.c (_dbus_string_pop_line),
747         bus/desktop-file.c (parse_section_start,
748         parse_comment_or_blank,parse_key_value,): uses
749         _dbus_string_find_eol() to support platform independent eol style.
750
751 2006-12-12  Ralf Habacker  <ralf.habacker@freenet.de>
752
753         * dbus/dbus-string.[ch] (_dbus_string_find_eol): new function. 
754         * dbus/dbus-string-util.c (_dbus_string_test): added testcases for 
755               _dbus_string_find_eol().
756         Approved by: Havoc Pennington.
757
758 2006-12-12  Tim Dijkstra <tim@famdijkstra.org>
759
760         * configure.in: Added switch to disable user_database caching.
761
762         * dbus/dbus-userdb-util.c, dbus/dbus-userdb.c: Add ifdefs to
763         be able disable user_dabase caching.
764
765 2006-12-12  Tim Dijkstra <tim@famdijkstra.org>
766
767         * bus/bus.c, bus/bus.h: Remove DBusUserDatabase from the BusContext 
768         struct. It is unnecessary we have a global one already. Also remove 
769         bus_context_get_user_database function, it is no longer needed.
770         Flush the global database on reload.
771
772         * dbus/dbus-userdb-util.c: Replace _dbus_user_database_get_groups 
773         with _dbus_groups_from_uid. It no longer needs a DBusUserDatabase.
774
775         * dbus/dbus-userdb.c, dbus/dbus-userdb.h: 
776         Add _dbus_user_database_flush_system. 
777         Make more functions DBUS_USERDB_INCLUDES_PRIVATE. 
778         Small unrelated change in _dbus_is_a_number: change 
779         _dbus_string_parse_int to _dbus_string_parse_uint. 
780
781         * bus/connection.c: Change call to _dbus_user_database_get_groups to 
782         _dbus_groups_from_uid.
783
784         * bus/policy.c, bus/policy.h: Change call to 
785         _dbus_user_database_get_groups to _dbus_groups_from_uid. Remove 
786         DBusUserDatabase from bus_policy_allow_user prototype, it no longer 
787         needs it.
788
789 2006-12-12  John (J5) Palmieri  <johnp@redhat.com>
790
791         * bus/signal.c: Fix match_rule_equal errata
792         (CVE-2006-6107 - Patch from Kimmo Hämäläinen 
793         <kimmo.hamalainen@nokia.com>)
794
795 2006-11-19  Thiago Macieira  <thiago@kde.org>
796
797         * dbus/dbus-sysdeps-pthread.c (_dbus_pthread_mutex_lock,
798         _dbus_pthread_condvar_wait,
799         _dbus_pthread_condvar_wait_timeout): set pmutex->holder to
800         pthread_self() after coming back from a conditional variable
801         wait as well as in one codepath where it was forgotten.
802         Approved by: Havoc Pennington.
803
804 2006-11-17  Havoc Pennington  <hp@redhat.com>
805
806         * update-dbus-docs.sh: allow setting fd.org username via env
807         variable. Make it run autogen with --enable-xml-docs=yes
808         --enable-doxygen-docs=yes so configure will fail if the required
809         tools are missing.
810
811 2006-11-17  Havoc Pennington  <hp@redhat.com>
812
813         * doc/dbus-faq.xml: minor FAQ tweaks
814
815 2006-11-14  Havoc Pennington  <hp@redhat.com>
816         
817         * dbus/dbus-misc.c, dbus/dbus-misc.h: Move
818         dbus_get_local_machine_id() to its own file, no substantive
819         changes. There are a couple other things we might want to add that
820         are "misc" so moving out of dbus-connection.[hc] which is big
821         enough already.
822         
823 2006-11-14  Havoc Pennington  <hp@redhat.com>
824
825         * dbus/dbus-internals.c (_dbus_generate_uuid): The spec said the
826         UUID had the timestamp last, but the implementation had it first;
827         move it to last since I think it's a tiny bit nicer (easier to
828         compare at a glance, faster to sort, less code), and will not
829         cause any practical compatibility problems. Also, always convert
830         the timestamp to big endian.
831
832         * doc/dbus-specification.xml: Clean up the docs on the UUID.
833
834         * tools/dbus-uuidgen.1: more prominently say it is not suitable
835         as a replacement for regular uuidgen/RFC4122.
836
837 2006-11-14  John (J5) Palmieri  <johnp@redhat.com>
838
839         * dbus/dbus-threads.h: fix DBUS_THREAD_FUNCTIONS_ALL_MASK to have
840         the correct value so we don't assert when initalizing recursive threads
841
842         * test/name-test/test-thread-init.c: call dbus_threads_init_default
843         instead of _dbus_threads_init_debug since it is more of a real world
844         test
845