dbus-1-1.12.2-150100.8.14.1<>,F܉cGNp9|M/P6?pgK.47юtwgV]"7 $lvqy> ` G%_qeS.Ƌ&Gm[.[!%]!xJ(?d   7 +HNV k|== F= = = #= $=%='=(H(l=)`) * , (-7-8-x,9.(,:0,=> ?@C#F+GD=H8=I,=XlY|\=]=^+b`c deflu=vw =x=ybz|Cdbus-11.12.2150100.8.14.1D-Bus Message Bus SystemD-Bus is a message bus system, a simple way for applications to talk to one another. D-Bus supplies both a system daemon and a per-user-login-session daemon. Also, the message bus is built on top of a general one-to-one message passing framework, which can be used by any two apps to communicate directly (without going through the message bus daemon).cGNibs-centriq-5?SUSE Linux Enterprise 15SUSE LLC GPL-2.0-or-later OR AFL-2.1https://www.suse.com/System/Daemonshttp://dbus.freedesktop.org/linuxaarch64getent group messagebus >/dev/null || \ /usr/sbin/groupadd -r messagebus getent passwd messagebus >/dev/null || \ /usr/sbin/useradd -r -s /usr/bin/false -c "User for D-Bus" -d /run/dbus -g messagebus messagebus if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in dbus.service dbus.socket ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi # Lines below are temporary code to disable service restart on update sflees@suse.de boo#1020301 # These are potentially not needed on non tumbleweed systems where updates while running a desktop are not supported. # This seems likely to only effect the last version of tumbleweed where the service files were added and can probably be # removed reletavly soon. # Get the current version if [ "$FIRST_ARG" -gt 1 ]; then CURRENT_VER=$(/usr/bin/dbus-daemon --version 2>/dev/null| sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/' | head -1) # If the current version is or less then 1.10.2 where this change was added then migration needs to be run # The following line will return 1.10.2 if its newer then the current version TEST_VER=$(printf "1.10.2\n$CURRENT_VER" | sort -Vr | head -1) if [ "$TEST_VER" = "1.10.12" ]; then if [ -f /etc/sysconfig/services ]; then cp -a /etc/sysconfig/services /etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1 else touch /etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1 fi cat >>/etc/sysconfig/services < /dev/null if [ $? ]; then rm -f /var/lib/dbus/machine-id fi fi if [ ! -L /var/lib/dbus/machine-id ]; then mkdir -p /var/lib/dbus/ ln -s /etc/machine-id /var/lib/dbus/machine-id fi /sbin/ldconfig if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/lib/dbus-1/dbus-daemon-launch-helper fi /usr/sbin/update-alternatives --install /usr/bin/dbus-launch dbus-launch /usr/bin/dbus-launch.nox11 10 if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in dbus.service dbus.socket ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi [ -z "${TRANSACTIONAL_UPDATE}" -a -x /usr/bin/systemd-tmpfiles ] && /usr/bin/systemd-tmpfiles --create /usr/lib/tmpfiles.d/dbus.conf || :if [ "$1" = 0 ] ; then /usr/sbin/update-alternatives --remove dbus-launch /usr/bin/dbus-launch.nox11 fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable dbus.service dbus.socket || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop dbus.service dbus.socket ) || : fi# immediately restarting the dbus service causes issues, As such wait for the next reboot to restart export DISABLE_RESTART_ON_UPDATE=yes test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in dbus.service dbus.socket ; do sysv_service="${service%.*}" rm "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart dbus.service dbus.socket ) || : fi fi+|FA 0   X   @ P fh FW5@:q1\AAAAAA聤AAAA큤A큤AcGHcGHcGHcGHcGHcGHcGHcGGcGGcGGcGIcGFcGFcGGcGGcGGcGGcGGcGGcGGcGGcGGcGGcGGcGGcGGcGGcGGcGFcGFcGFcGFcGFcGFcGFcGFcGFcGFcGFcGFcGHcGFcGFcGIYjYjZ YjcGIYjcGGcGGcGGcGGcGGcGGcGGcGGcGGcGGcGI9e984094dfb1060dd844d32e216d47929afa37e752daad68f31b006d4ee1b11b2218b9313dc6d2e07d85751f318124cc5138787358ae1039703321cf6b35602aa6f50dc70ef082a110dcdb164579cd2af221b90226c5e0aca237edcad98a1c26db8eaeafe55c71cdd213e29133d62fd0d8e058af8a1b8d1657785008e0af95f3f8678ea0855a436fdc4b0a0b7594d09abd06031832df40983ddd1366e602e02ad9444c263affbfb71715818c6768e50276c7cfacfe9bfcd671ba61d315ef816ff0f950dfffdc1ef45b1f246852cb9f51dff7ae740d1c87bc2a2ad8c8f0de5add6513b3d50cffe0aff74f4dea2410730f581e20554d32a1de71c52aa36e17c3805fa825421fffa27e6ad89ee9693ee06beafe7a260a9af6fa17f0111e52a5073bcca1d01a2ba4bcd7d852cfe2c350a02885924079d87afdf921740ec2fdf4f34f1fb8318f9dfbbee7cbdc9aaaff77c25fff937c6ae7bb145cb61490a06fca613bf95ab5b0ddb1864f75124bb512f79e0001363cd4c0eff45dfcff0ccd7a215c79a34043278f6aa249be2835c17590b75a88965d4d5c4e2c18d1cbb4fd106788020f2e827b4c146d8fc7c0cfb5348056916e6c2b057ef40d77d55320472bbacccae05359bbdc083b8db2b49542b26429166b5e13367a63668a4e8ff8a1b496f7ae19d7b51e1e6da255346ac6acbf95627baf14c324e84ee841d90fab98bcc0e9942b7ac7357065180d1c2f3f00c11d17dadd31cdc3d7e59c623eb733beb3e50cef8d6c76ba6b7eaba0c987ab294f3534f3603dc5717349271cef7f46e7c530727abc7f3e09dfbd851b91b2b70d62730ce4e46323718ad35d635011689940ef6f6c206f009ddcf909422f3651c687b4623a5780fb7486c6d650e5332f57c00d6be118938a267987dee9ef442cdb9a5cba6d1e7303be93b0013b0948f20831921e5222ad2317b7040e0aca41b5c9a04141aaf20143e15072eb19394248eb5f5e5a19e2584de5acbe9ef4a792e39d9141c3a2b60fb592bf4d7c27cedd7bf8d201f4c2484db3de366500912c63d834154173c7886e7ded484d4fe1dde4b62f6d30b59b02757b6a8cba77f6273f07848aa1a81cdd02d0aaa0f86d3c73f2ecf5488531760e46f54efb12d04ab5c33713bacd0e140c9a35b57ae29e03c853203266e8f3a1e7df1afa9b3053ecea02387bc7078dc6ccb9741a7c7187857c8ff81ed2c1092fa8d4b6dd65f3ca4b45dabf24401bc95f632d394fe6de9d8a383cfdd1d6a4c18eb50d36351c097a51f55797cc823d0edb35a265de42c22dafb334847277b82e27f9b01aa2ecdaaef35f680549ec69dea19087e76f4e0424b0d3cb160338f5364f2b0fe5198af539a4594bdc36b96139ea1014f04aa850bd6731f5c05d5b88ba2124a6d3cc397fd4e5e27b19634246dda79f3f536b05818fc9d980e77ac85275ff91d07398c4b08a2f4a79f28559aabda16eeaec4a3b3413384abd5511fd2c431497d07cb7a8f58397a3edb3e3a3aaa0558d6d1fee848cf4f6e85f70e5cf77e1d4166f6a343877a2828be53aa45c9681b035c3a30d72663acb0c86f1f13608d28b/usr/bin/dbus-cleanup-sockets/usr/bin/dbus-daemon/usr/bin/dbus-monitor/usr/bin/dbus-send/usr/bin/dbus-test-tool/usr/bin/dbus-update-activation-environment/usr/bin/dbus-uuidgen/etc/alternatives/dbus-launch../dbus.service../dbus.socket../dbus.socketservice@@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootmessagebusrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootdbus-1-1.12.2-150100.8.14.1.src.rpmconfig(dbus-1)dbus-1dbus-1(aarch-64)dbus-launch@  !@@@@@@@@@@@@@@@    /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(dbus-1)ld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libaudit.so.1()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libcap-ng.so.0()(64bit)libdbus-1-3libdbus-1.so.3()(64bit)libdbus-1.so.3(LIBDBUS_1_3)(64bit)libdbus-1.so.3(LIBDBUS_PRIVATE_1.12.2)(64bit)libexpat.so.1()(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.17)(64bit)libselinux.so.1()(64bit)libsystemd.so.0()(64bit)libsystemd.so.0(LIBSYSTEMD_209)(64bit)permissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)shadowupdate-alternativesupdate-alternatives1.12.2-150100.8.14.11.12.23.0.4-14.6.0-14.0-15.2-14.14.1 /usr/bin/chkstat -n --warn --system -e /usr/lib/dbus-1/dbus-daemon-launch-helper 1>&2cG`#@`.`@]:\=@\ and rules in dbus-daemon configuration can now include send_broadcast="true", send_broadcast="false", max_unix_fds="N", min_unix_fds="N" (for some integer N). See the release notes for 1.11.18. • dbus_try_get_local_machine_id() is like dbus_get_local_machine_id(), but returns a DBusError. • New APIs around DBusMessageIter to simplify cleanup. See the release notes for 1.11.16. • The message bus daemon now implements the standard Introspectable, Peer and Properties interfaces. See the release notes for dbus 1.11.14 and spec version 0.31. • DTDs for introspection XML and bus configuration are installed. • [Unix] A new unix:dir=… address family resembles unix:tmpdir=… but never uses Linux abstract sockets, which is advantageous for containers. On non-Linux it is equivalent to unix:tmpdir=…. See the release notes for dbus 1.11.14 and spec version 0.31. • [Unix] New option "dbus-launch --exit-with-x11". • [Unix] Session managers can create transient .service files in $XDG_RUNTIME_DIR/dbus-1/services. See the release notes for 1.11.12. • [Unix] A sysusers.d snippet can create the messagebus user on-demand. Miscellaneous behaviour changes: • [Unix] The session bus now logs to syslog if it was started by dbus-launch. • [Unix] Internal warnings are logged to syslog if configured. • [Unix] Exceeding an anti-DoS limit is logged to syslog if configured, or to stderr. - Enabled "make check test suite" - Patches removed, fixed upstream * fix-upstream-drop-install-sections-from-user-services.patch * fix-upstream-increase-backlog.patch * fix-upstream-timeout-reset-1.patch * fix-upstream-timeout-reset-2.patch- boo#1027201 dbus-daemon not found - boo#978477 systemd reseting under heavy load * fix-upstream-timeout-reset-1.patch * fix-upstream-timeout-reset-2.patch- boo#1027200 don't generate machine-id in %post systemd will do it on first boot. - swap usage of /bin/false to /usr/bin/false - Use libexecdir=%{_libdir}/dbus-1 rather then /lib/dbus-1- No need to set --libdir anymore now that prefix is /usr/bin, * fixes boo#1047532 - No need to set --bindir, bindir in dbus-1-x11 was incorrect - Other fixes required to properly change prefix - Don't pass --with-initscripts we don't use them anymore.- Update to 1.10.20 * Fixes: + Fix a reference leak when blocking on a pending call on a connection that has been disconnected (fdo#101481, Shin-ichi MORITA) + Don't put timestamps in the Doxygen-generated documentation, for closer-to-reproducible builds (fdo#100692, Simon McVittie) + Avoid an assertion failure when connecting to a semicolon-separated series of addresses, one of which fails (fdo#101257, Simon McVittie) * Documentation: + Update git URIs in HACKING document to sync up with cgit.freedesktop.org (fdo#100715, Simon McVittie)- swap to /usr/bin bsc#1029968 - Add the following fixes from SLE12 * bsc#980928 increase listen() backlog of AF_UNIX sockets to SOMAXCONN fix-upstream-increase-backlog.patch - The following bugs were already fixed but are missing changelog entries * bsc#867256 (No longer applicable) * bsc#916785 (No longer applicable) * bsc#1012564 (Not applicable) * fdo#90004 (Fixed Upstream) - Rename the following patches as a tidy up * dbus-log-deny.patch to feature-suse-log-deny.patch * dbus-do-autolaunch.patch feature-suse-do-autolaunch.patch * 0001-Add-RefuseManualStartStop.patch to feature-suse-refuse-manual-start-stop.patch * 0001-Drop-Install-sections-from-user-services.patch to fix-upstream-drop-install-sections-from-user-services.patch- Update to 1.10.18 * Fixes + Re-order dbus-daemon startup so that on SELinux systems, the thread that reads AVC notifications retains the ability to write to the audit log (fdo#92832, Debian #857660; Laurent Bigonville) + Fix a harmless read overflow and some memory leaks in a unit test (fdo#100568, Philip Withnall)- Update to 1.10.16 Fixes: * Prevent symlink attacks in the nonce-tcp transport on Unix that could allow an attacker to overwrite a file named "nonce", in a directory that the user running dbus-daemon can write, with a random value known only to the user running dbus-daemon. This is unlikely to be exploitable in practice, particularly since the nonce-tcp transport is really only useful on Windows. (fd.o #99828, Simon McVittie) (bsc#1025950) * Avoid symlink attacks in the "embedded tests", which are not enabled by default and should never be enabled in production builds of dbus. (fd.o #99828, Simon McVittie) (bsc#1025951) * Work around an undesired effect of the fix for CVE-2014-3637 (fd.o #80559), in which processes that frequently send fds, such as logind during a flood of new PAM sessions, can get disconnected for continuously having at least one fd "in flight" for too long; dbus-daemon interprets that as a potential denial of service attack. The workaround is to disable that check for uid 0 process such as logind, with a message in the system log. The bug remains open while we look for a more general solution. (fd.o #95263, LP#1591411; Simon McVittie) * Don't run the test test-dbus-launch-x11.sh if X11 autolaunching was disabled at compile time. That test is not expected to work in that configuration. (fd.o #98665, Simon McVittie) Enhancements: * Do the Travis-CI build in Docker containers for Ubuntu LTS, Debian stable and Debian testing in addition to the older Ubuntu that is the default (fd.o #98889, Simon McVittie)- A note for scripts bsc#974092 (remove sysvinit script) is already fixed here.- Don't restart dbus on upgrade - Includes temporary work around for last version boo#1020301 - Add 0001-Add-RefuseManualStartStop.patch don't allow users to Manually start or stop dbus.- Add systemd unit files to start session bus via systemd - Added patch: * 0001-Drop-Install-sections-from-user-services.patch + remove install section from socket unit because it does not need to be enabled explicitly (see fdo#92402)- Requires systemd >= 209 and drop the compatibility pkg-config names that don't exist in newer systemd- Drop useless --with-pic which is only for static libs - Abort installation when user/group creation fails - Avoid calling %service_* more than once- Build the dbus-1 package without X in the dbus-1.spec - Move the dbus-launch.nox11 to the dbus-1 package and install it by default - Build devel-doc package in dbus-1.spec and don't build any documentation in dbus-1-x11 - Make dbus-1-x11 package contains only the X11-enabled dbus-launch - Fix some rpmlint warnings - Delete the dbus-1-x11.spec.in file, since maintaining it is more complicated then keeping in sync a dbus-1-x11.spec file of less then 120 lines- Create new subpackage: dbus-1-nox11 - contains dbus-launch without x11 support - Rename dbus-launch to dbus-launch.x11 - use update-alternatives to switch between dbus-launch with and without X11 - Solves [bnc#934214]- Update to 1.10.12 * Security fixes: + Do not treat ActivationFailure message received from root-owned systemd name as a format string. In principle this is a security vulnerability, but we do not believe it is exploitable in practice, because only privileged processes can own the org.freedesktop.systemd1 bus name, and systemd does not appear to send activation failures that contain "%". Please note that this probably *was* exploitable in dbus versions older than 1.6.30, 1.8.16 and 1.9.10 due to a missing check which at the time was only thought to be a denial of service vulnerability (CVE-2015-0245). If you are still running one of those versions, patch or upgrade immediately. (fdo#98157, bsc#1003898, Simon McVittie) * Other fixes: + Harden dbus-daemon against malicious or incorrect ActivationFailure messages by rejecting them if they do not come from a privileged process, or if systemd activation is not enabled (fdo#98157, Simon McVittie) + Avoid undefined behaviour when setting reply serial number without going via union DBusBasicValue (fdo#98035, Marc Mutz) + autogen.sh: fail cleanly if autoconf fails (Simon McVittie)- Moved dbus-run-session from dbus-1-x11 to dbus-1 (bdo#836296)- Update to 1.10.10 * Fixes: + On Linux, when dbus-daemon is run with reduced susceptibility to the OOM killer (typically via systemd), do not let child processes inherit that setting (fdo#32851; Kimmo Hämäläinen, WaLyong Cho) + Output valid shell syntax in ~/.dbus/session-bus/ if the bus address contains a semicolon (fdo#94746, Thiago Macieira) + Fix memory leaks and thread safety in subprocess starting on Windows (fdo#95191, Ralf Habacker) + Do not require systemd to have a service file if using it for activation (fdo#93194; Simon McVittie; backport from 1.11.0) + Stop test-dbus-daemon incorrectly failing on platforms that cannot discover the process ID of clients (fdo#96653, Руслан Ижбулатов) + In tests that exercise correct handling of crashing D-Bus services, suppress Windows crash handler (fdo#95155; Yiyang Fei, Ralf Habacker) + Explicitly check for stdint.h (Ioan-Adrian Ratiu) + update-activation-environment: produce better diagnostics on error (fdo#96653, Simon McVittie) + Don't fail the build with an unused const variable warning under gcc 6 (fdo#97282; Thomas Zimmermann, Simon McVittie) + Merge dbus-1.10-ci branch, containing backports from 1.11.0 in build/test code to support continuous integration (fdo#93194, Simon McVittie) - Avoid -Wunused-label when compiling with libselinux but no libaudit - In development builds, allow OOM tests to be disabled as documented - Accept and ignore the --tap argument in all "embedded tests", and run all automated tests with that argument for better diagnostics - Fix the systemd activation test under CMake by installing the required files - In Automake, fix shell syntax for installcheck-local with no DESTDIR - In Automake, don't try to run manual tests in installcheck - In CMake, don't run manual-tcp test as an automated test - Add travis-ci.org build machinery- Update to 1.10.8 * Fixes: + Enable "large file support" on systems where it exists: dbus-daemon is not expected to open large files, but it might need to stat files that happen to have large inode numbers (fdo#93545, Hongxu Jia) + Eliminate padding inside DBusMessageIter on 64-bit platforms, which might result in a pedantic C compiler not copying the entire contents of a DBusMessageIter; statically assert that this is not an ABI change in practice (fdo#94136, Simon McVittie) + Document dbus-test-tool echo --sleep-ms=N instead of incorrect --sleep=N (fdo#94244, Dmitri Iouchtchenko) + Correctly report test failures in C tests from run-test.sh (fdo#93379; amit tewari, Simon McVittie) + When tests are enabled, run all the marshal-validate tests, not just the even-numbered ones (fdo#93908, Nick Lewycky) + Correct the expected error from one marshal-validate test, which was previously not run due to the above bug(fdo#93908, Simon McVittie)- Update to 1.10.6 * Fixes: - On Unix when running tests as root, don't assert that root and the dbus-daemon user can still call UpdateActivationEnvironment; assert that those privileged users can call BecomeMonitor instead (fdo#93036, Simon McVittie) - On Windows, fix a memory leak in the autolaunch transport (fdo#92899, Simon McVittie) - On Windows Autotools builds, don't run tests that rely on dbus-run-session and other Unix-specifics (fdo#92899, Simon McVittie)- Update to 1.10.4 * Changes between 1.10.2 and 1.10.4 - Enhancements: + GetConnectionCredentials, GetConnectionUnixUser and GetConnectionUnixProcessID with argument "org.freedesktop.DBus" will now return details of the dbus-daemon itself. This is required to be able to call SetEnvironment on systemd. (fdo#92857, Jan Alexander Steffens) - Fixes: + Make UpdateActivationEnvironment always fail with AccessDenied on the system bus. Previously, it was possible to configure it so root could call it, but the environment variables were not actually used, because the launch helper would discard them. (fdo#92857, Jan Alexander Steffens) + On Unix with --systemd-activation on a user bus, make UpdateActivationEnvironment pass on its arguments to systemd's SetEnvironment method, solving inconsistency between the environments used for traditional activation and systemd user-service activation. (fdo#92857, Jan Alexander Steffens) + On Windows, don't crash if or --syslog is used (fdo#92538, Ralf Habacker) + On Windows, fix a memory leak when setting a DBusError from a Windows error (fdo#92721, Ralf Habacker) + On Windows, don't go into infinite recursion if we abort the process with backtraces enabled (fdo#92721, Ralf Habacker) + Fix various failing tests, variously on Windows and cross-platform: . don't test system.conf features (users, groups) that only make sense on the system bus, which is not supported on Windows . don't call _dbus_warn() when we skip a test, since it is fatal . fix computation of expected . when running TAP tests, translate newlines to Unix format, fixing cross-compiled tests under Wine on Linux . don't stress-test refcounting under Wine, where it's really slow . stop assuming that a message looped-back to the test will be received immediately . skip some system bus tests on Windows since they make no sense there (fdo#92538, fdo#92721; Ralf Habacker, Simon McVittie) * Changes between 1.10.0 and 1.10.2 - Fixes: + Correct error handling for activation: if there are multiple attempts to activate the same service and it fails immediately, the first attempt would get the correct reply, but the rest would time out. We now send the same error reply to each attempt. (fdo#92200, Simon McVittie) + If BecomeMonitor is called with a syntactically invalid match rule, don't crash with an assertion failure, fixing a regression in 1.9.10. This was not exploitable as a denial of service, because the check for a privileged user is done first. (fdo#92298, Simon McVittie) + On Linux with --enable-user-session, add the bus address to the environment of systemd services for better backwards compatibility (fdo#92612, Jan Alexander Steffens) + On Windows, fix the logic for replacing the installation prefix in service files' Exec lines (fdo#83539; Milan Crha, Simon McVittie) + On Windows, if installed in the conventional layout with ${prefix}/etc and ${prefix}/share, use relative paths between bus configuration files to allow the tree to be relocated (fdo#92028, Simon McVittie) + Make more of the regression tests pass in Windows builds (fdo#92538, Simon McVittie) * Summary of major changes since 1.8.0: - The basic setup for the well-known system and session buses is now done in read-only files in ${datadir} (normally /usr/share). - AppArmor integration has been merged, with features similar to the pre-existing SELinux integration. It is mostly compatible with the patches previously shipped by Ubuntu, with one significant change: Ubuntu's GetConnectionAppArmorSecurityContext method has been superseded by GetConnectionCredentials and was not included. - The --enable-user-session configure option can be enabled by OS integrators intending to use systemd to provide a session bus per user (in effect, treating all concurrent graphical and non-graphical login sessions as one large session). - The new listenable address mode "unix:runtime=yes" listens on $XDG_RUNTIME_DIR/bus, the same AF_UNIX socket used by the systemd user session. libdbus and "dbus-launch --autolaunch" will connect to this address by default. GLib >= 2.45.3 and sd-bus >= 209 have a matching default. - All executables are now dynamically linked to libdbus-1. Previously, some executables, most notably dbus-daemon, were statically linked to a specially-compiled variant of libdbus. This results in various private functions in the _dbus namespace being exposed by the shared library. These are not API, and must not be used outside the dbus source tree. - On platforms with ELF symbol versioning, all public symbols are versioned LIBDBUS_1_3. * New bus APIs: - org.freedesktop.DBus.GetConnectionCredentials returns LinuxSecurityLabel where supported - org.freedesktop.DBus.Monitoring interface (privileged) . BecomeMonitor method supersedes match rules with eavesdrop=true, which are now deprecated - org.freedesktop.DBus.Stats interface (semi-privileged) . now enabled by default . new GetAllMatchRules method - org.freedesktop.DBus.Verbose interface (not normally compiled) . toggles the effect of DBUS_VERBOSE * New executables: - dbus-test-tool - dbus-update-activation-environment * New optional dependencies: - The systemd: pseudo-transport requires libsystemd or libsd-daemon - Complete documentation requires Ducktype and yelp-tools - Full test coverage requires GLib 2.36 and PyGI - AppArmor integration requires libapparmor and optionally libaudit * Dependencies removed: - dbus-glib- Update to 1.8.20: * Fixes: - Fix a memory leak when GetConnectionCredentials() succeeds (fdo#91008, Jacek Bukarewicz) - Ensure that dbus-monitor does not reply to messages intended for others (fdo#90952, Simon McVittie)- Account for openSUSE:Leap in the conditional for chosing right local state directories (boo#941352)- Move common-begin sections around to make pre_checkin work again - Unconditionally build with systemd features, there are no cycles now, systemd no longer buildrequires dbus-1-devel- Update to 1.8.18: * Security hardening: - On Unix platforms, change the default configuration for the session bus to only allow EXTERNAL authentication (secure kernel-mediated credentials-passing), as was already done for the system bus. This avoids falling back to DBUS_COOKIE_SHA1, which relies on strongly unpredictable pseudo-random numbers; under certain circumstances (/dev/urandom unreadable or malloc() returns NULL), dbus could fall back to using rand(), which does not have the desired unpredictability. The fallback to rand() has not been changed in this stable-branch since the necessary code changes for correct error-handling are rather intrusive. If you are using D-Bus over the (unencrypted!) tcp: or nonce-tcp: transport, in conjunction with DBUS_COOKIE_SHA1 and a shared home directory using NFS or similar, you will need to reconfigure the session bus to accept DBUS_COOKIE_SHA1 by commenting out the element. This configuration is not recommended. (bsc#931066, fdo#90414, Simon McVittie) * Other fixes: - Add locking to DBusCounter's reference count and notify function (fdo#89297, Adrian Szyndela) - Ensure that DBusTransport's reference count is protected by the corresponding DBusConnection's lock (fdo#90312, Adrian Szyndela) - On Windows, listen on the same port for IPv4 and IPv6 (previously broken by an endianness mistake), and fix a failure to bind TCP sockets on approximately 1 attempt in 256 (fdo#87999, Ralf Habacker) - Correctly release DBusServer mutex before early-return if we run out of memory while copying authentication mechanisms (fdo#90021, Ralf Habacker) - Correctly initialize all fields of DBusTypeReader (fdo#90021, Ralf Habacker, Simon McVittie) - Fix some missing \n in verbose (debug log) messages (fdo#90021, Ralf Habacker) - Clean up some memory leaks in test code (fdo#90021, Ralf Habacker)- Sync changes from SLE12 conditionalized for suse_version <= 1315- Update to 1.8.16: * Security fixes: - Do not allow non-uid-0 processes to send forged ActivationFailure messages. On Linux systems with systemd activation, this would allow a local denial of service: unprivileged processes could flood the bus with these forged messages, winning the race with the actual service activation and causing an error reply to be sent back when service auto-activation was requested. This does not prevent the real service from being started, so it only works while the real service is not running. (CVE-2015-0245, fdo#88811, bnc#916343; Simon McVittie) * Other fixes: - fix a Windows build failure (fdo#88009, Ralf Habacker) - on Windows, allow up to 8K connections to the dbus-daemon instead of the previous 64, completing a previous fix which only worked under Autotools (fdo#71297, Ralf Habacker)- Update to 1.8.14 * Security hardening: - Do not allow calls to UpdateActivationEnvironment from uids other than the uid of the dbus-daemon. If a system service installs unsafe security policy rules that allow arbitrary method calls (such as CVE-2014-8148) then this prevents memory consumption and possible privilege escalation via UpdateActivationEnvironment. We believe that in practice, privilege escalation here is avoided by dbus-daemon-launch-helper sanitizing its environment; but it seems better to be safe. - Do not allow calls to UpdateActivationEnvironment or the Stats interface on object paths other than /org/freedesktop/DBus. Some system services install unsafe security policy rules that allow arbitrary method calls to any destination, method and interface with a specified object path; while less bad than allowing arbitrary method calls, these security policies are still harmful, since dbus-daemon normally offers the same API on all object paths and other system services might behave similarly. * Other fixes: - Add missing initialization so GetExtendedTcpTable doesn't crash on Windows Vista SP0 (fdo#77008, Ilya A. Tkachenko)- Update to 1.8.12: * Fixes: - Partially revert the CVE-2014-3639 patch by increasing the default authentication timeout on the system bus from 5 seconds back to 30 seconds, since this has been reported to cause boot regressions for some users, mostly with parallel boot (systemd) on slower hardware. On fast systems where local users are considered particularly hostile, administrators can return to the 5 second timeout (or any other value in milliseconds) by saving this as /etc/dbus-1/system-local.conf: 5000 (fdo#86431, Simon McVittie) - Add a message in syslog/the Journal when the auth_timeout is exceeded (fdo#86431, Simon McVittie) - Send back an AccessDenied error if the addressed recipient is not allowed to receive a message (and in builds with assertions enabled, don't assert under the same conditions). (fdo#86194, Jacek Bukarewicz)- Update to 1.8.10: * Security fixes: - Increase dbus-daemon's RLIMIT_NOFILE rlimit to 65536 so that CVE-2014-3636 part A cannot exhaust the system bus' file descriptors, completing the incomplete fix in 1.8.8. (CVE-2014-7824, fdo#85105; Simon McVittie, Alban Crequy)/bin/sh/bin/sh/bin/sh/bin/sh/bin/shibs-centriq-5 1665646670  !"#$%&'()*+,-./0123456789:;<=1.12.2-150100.8.14.11.12.2-150100.8.14.11.12.2-150100.8.14.1 dbus-cleanup-socketsdbus-daemondbus-monitordbus-senddbus-test-tooldbus-update-activation-environmentdbus-uuidgenConsoleKitrun-session.ddbus_at_console.ckdbus-launchsession.confsystem.confdbus-1system-servicesdbusdbus-cleanup-socketsdbus-daemondbus-launchdbus-launch.nox11dbus-monitordbus-run-sessiondbus-senddbus-test-tooldbus-update-activation-environmentdbus-uuidgendbus-1dbus-daemon-launch-helperdbus.servicedbus.socketmulti-user.target.wantsdbus.servicesockets.target.wantsdbus.socketdbus.servicedbus.socketsockets.target.wantsdbus.socketdbus.confdbus.confrcdbussession.confsystem.confdbus-1AUTHORSHACKINGNEWSREADMEdbus-1COPYINGdbus-cleanup-sockets.1.gzdbus-daemon.1.gzdbus-launch.1.gzdbus-monitor.1.gzdbus-run-session.1.gzdbus-send.1.gzdbus-test-tool.1.gzdbus-update-activation-environment.1.gzdbus-uuidgen.1.gzdbusmachine-id/bin//etc//etc/ConsoleKit//etc/ConsoleKit/run-session.d//etc/alternatives//etc/dbus-1//lib//lib/dbus-1//run//usr/bin//usr/lib//usr/lib/dbus-1//usr/lib/systemd/system//usr/lib/systemd/system/multi-user.target.wants//usr/lib/systemd/system/sockets.target.wants//usr/lib/systemd/user//usr/lib/systemd/user/sockets.target.wants//usr/lib/sysusers.d//usr/lib/tmpfiles.d//usr/sbin//usr/share/dbus-1//usr/share/doc/packages//usr/share/doc/packages/dbus-1//usr/share/licenses//usr/share/licenses/dbus-1//usr/share/man/man1//var/lib//var/lib/dbus/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:26362/SUSE_SLE-15-SP1_Update/a27dfb37049e551bc83ca8970183ec1f-dbus-1.SUSE_SLE-15-SP1_Updatedrpmxz5aarch64-suse-linux directoryBourne-Again shell script, ASCII text executablecannot open `/home/abuild/rpmbuild/BUILDROOT/dbus-1-1.12.2-150100.8.14.1.aarch64/etc/alternatives/dbus-launch' (No such file or directory)exported SGML document, ASCII textELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=e0d0f6677b7a3015bff72a7f51109126f6081617, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=4cdcda321cbaf2ff8ac16a6078016fdb251c67ca, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=5cd1934a48cfd073e113daa871413264190dfbca, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=8e7228879d8e2d0769d807b3a7af53daddcfd839, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=b9a098112d4be04a30f6d98cc7397710de0cd1c5, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=93b2176353909225d512d4608461a6c051ca0cc5, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=b482a646836f34eaeb8f0154ea018f89233dfe52, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=1b35724307c9f4552f3a1a2fd09ba5bceacd4c14, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=162ffd87057f73b8280abaae292187ed68ea650e, for GNU/Linux 3.7.0, strippedELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-aarch64.so.1, BuildID[sha1]=00c0db71da7fac0a78c5095fef6199264606b2dc, for GNU/Linux 3.7.0, strippedASCII textUTF-8 Unicode texttroff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)cannot open `/home/abuild/rpmbuild/BUILDROOT/dbus-1-1.12.2-150100.8.14.1.aarch64/var/lib/dbus/machine-id' (No such file or directory)'0:DMV RR R R RR RRR RRRRRRR R RR RR RRR RRRR RR RRRR RRRR RR RRR RRRR RR RRRR RRRR RRR R RRRRRR RRR R RRRRR RR RRR RRRR RRR RRRR RRRRR R3Q/x?$L| "# See comments in pre if [ -s "/etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1" ]; then mv -f /etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1 /etc/sysconfig/services elif [ -e "/etc/sysconfig/services.rpmbak.dbus-1-1.12.2-150100.8.14.1" ]; then rm -f /etc/sysconfig/services fi/bin/shutf-820e0a38e8fc5d3d77d25a154b439bde9d2beba7f01e28949cbf0882f85b1880d?`7zXZ !t/ਧ]"k%]/_ba3'l%0P(Ҏ[k̆dF̧UsBd^XXƈÔ _M|W:9*QjR#q )s Z<3 ԕ˱U ~II7\9w|Rq`,\7,*ej:Ҭ}hQE˽8b'i\WrUhI#!EjC--v-Zhf&O𤺍o7蓹]hQ /SU@D%"x+͢vs 8,FlpSC/Ǚ89Qq0J0B{W=T{tXˎQ$5LOKl!+xde& c#k4RW*"x?1 #4h/QBW@ٻ7RD0ht2-3]댻*yheNA ^0܃jɮ.v{yt vB\ye~AH@!#&!" p]jƆ|*q0Z|L]PhҐКw)f] #f#sk sɡO7FksKucydL ¶i5,~۽ ݪP1>ҳ QJX7FEs\#sny[g ֢~} (f,Oj1b+זNF0 >eK]FJrXr ڛӇ@l_HNx;e@|8ANN,J/bYJc|>f%Jʚ4-_7ނۼhwVR`D@{rc yꔈ<"$Bu|jl kI WS}g+ Q1t4RVPN7gm "E*$I%)bz]U"VT@~n5Zu4VknI)-JۜJ.yv0P#Ҧlޡ.E8koxyƀKsy_hls7nKZư GW,1f۹Z(X_kVSܡ|IWT':diNP>ҪU21IFQ`F 󗟙h@oӿڍ˘f&DN0D׽X8)ЅM܃WvuRgċ;36玻--n!W)unzh_gP^̶w#z$`e|d7J[=.ӈB0. x NMǛL60H/fB6eRCs'|vbłl0 ג6*c-2M3I$*z;}ybۅ,'4ŊnG'5T(lMaxLybIJFR}ٵֻ 4.Fq; dۜP LKH%rIvɢwrw bDwcP?. d No@ؓ؁lkeVTӗ꒽/?:#qVw$m5Dgap2(wt-=&40 :kfW.I懒}!(L`RSeYmfXqer5F-H_Tٵ+!tOP'Jݷ[Y`XdPRѳE1^qj+TV4D[ƌ,6@nP.'?1='H*+^&U.w݋[[D-#9DJ&. rwJH훳Laem>vo]3_8WخQ  獵11'Y$\)e>/񂥸 ̻$lUJ-Jm'J&e&<֩Ckx()m#!V 6AZ^$yZ8ѩ|ysOS4 !Gs*"ilRqvX:[azkXvpG|5{c2YI2w2k ]3;^߅^S&9T=FJĤ #ۀZ]ƈ,\'9 q\U%c0yO4?mzJR>3-kXzk $Xҝ2 ҺҐFͿ8)^#q3)w~.~jdvZK0̩·:f@K}ͅ^ &|r>)<͸tG+~-ߛ w-]{ t}>a^DZShPi 3ix%[џh4ec㊢75D9`O!E (.aK1/ +ߟLLs Ց%HT@#zCW|>]!͹(:rbRRӖL895p~<:I)Eo[{ r:%r\sH|пpQ GdM"T͟R=ga}+}> l0/)W䵿֟g2v '(l}^sd)Ұ4|d${C؁-`YeBZ1r]р "5XS>jE³M^L. OE~VVj/7ip`ҲK~ v!ECPN~ZLYH#%){נ^$TiAdR۵^ӿ344M* ihA}!sGZHJ 5il6 ;| FCI] D_'啾d:Yp'ՏAG %t83+h18of|+:3ǣ֢cB>Tה4pkp[Q \BQ[#XV:xIQ{ϛҢ#.뿢vxA%G!onDZguC;dv4S[]]5dˀ{m0v&kJNsq쌘:bݑ[_m2x[j(t\`emaz鋶Ϫ.ښBQfD2$΄ĭGW3E%^Τ"ky}:Xqp|;8zJpڵ>6`VX/xLˎҹ%/Wr#,mL8I'@^;J ڜ z'P*_E8Š7.u10*V$' ~lG&˚e8EsTfjAhSux徦KIxH˜}F?R`%] cˆ-}-Z'Sj[65ۀV8>G1Uc(^(sVTv7$1zݏMqi! Ɠc80r_dM !z뗃^Hv[dH7RB?6_np$*= uXo(|&.K"X{KgNIB:^7,#x\p^~rz2CW_g+S۲ٚ_蟡x!E$%mz⼼. 6<3V{y6WYz7{KWpT\eJDuJ3 7}'P)oԄ PieFɛ#ZƁgPx Fd7Wz?=oC˻d{biiv2~|3Օth+Nϻ OW3J l|M4Ev2M%  (g7!"D7hXf~3!j~!؝រZg{HE 3l Jyv]6ZKRd{b%K٩^MNs5Z/׺S&*0d(CȪgj;=af웈=[rMPtėKoxfQ)xGP>ܦK#[7Ib;|A[~0MܱPPg~'ُkkBEJ3II6F9K*H) eXY?N?6B]-0]ueʤ6ݏxF]=qf{UM>0\d6j@ɤIYL֊xAO:`;ٞ=z3gj j3o7'+ÞR\`(Fej>\WJ<9`XX8'6,uyQ,xn1獔ǭBd7Iq1AS($PGDa8(s.8րgQ=eY*% ɃoƢ!_fAWo˒Rl2k;U!c !c}5<-q+^#6v7Wс_ )>vS?K W<4}E:&.^t-T Nƒ CI &p1 ;~}"3I!"HـW#v+Vr"AU;zֆv&81|I료u<:g0N5Q49] `)"Q*s_eó.WI_l:V9לq*DrCRL=aA#m`)KZ䡕V>D-``-MÝ@Ϡ>LUϓRNy)!^x'C\7-iSG&dB@I'o[$uӑqD,IUl.QI0v"|][ZgLcI}.cSAeMZI(" O;Z휖5Ma<ه:hLFiA.{ev(!{owv{"KsF0O*-Wd=}~ˉM Kxۚ!x%4ǷphķCǩnLgnuK}^ \fiw"̭i՚kN{r] oIƚFiװg:TKQj4 .\d2FO؂f0;bQԞ1lT^;XH(Uf9X͕$RÂF|?[yMԼMc.4Qr]o?xޱ-E[EKzq4FaNIk[>h.yWGeҝ^aKrZo?CbƒDbsNJO*6є/w15~Vakɣq:UgsAo=\΅ #n-K|?)HhK&~{,YDrOjOm1IfٺUE7h7S ^W#eW:X?֑{\h:snU♾Y:߆QSNǴׄ6,A֍[;yG__!}ؘ2V'CĤPr9G+T*mul7?]ٔ ps͹8C>A{ZYp"NF"NR?+n *i'l՝:kk<7EWjE"d2J>}cn(euği^.r/5 ~ ˷Eg(L O[!)guڵ? #OFmO5Ԏ=3 h}]`>ǞOAްh˟lA&IiYywiDbZjGuO4ADS2?0\ g.!I",9h饃aQ*-Re-ǖυnͪzb#m?6b~53#pYaQ``q|v*>%CAI!0xzzS-m.S)yHB\m}lE"V 5]wɍ.kq-(z9<3!`K÷5򊮚_e' 8D̞[w=&uOTsFE?u D Ƣʉ/CR58MkU` =\q-ITa0Bx0qrIc_sXDn퓤̟E@(o[_(=޷h KgA}:s#"4|0I0unmStd=3>فn]$mUE1rˌ3 Wˆ >2梧^2FG 'OyH%- .eAq%hxdjfWe0˲|F1vDq"Q%P~!b‘f&^#!&W!vvMwӂ=Foȹ6[@B, )%EkZ& )Byݻ1G$ȳ(yՓxyu1m̱keg09ڲ4ǻXӺ,>[734HNy -cAgN&֎GU}/Mӝ\x m@\%`#fRva@ SڃUOX 2ĀV&qfթ=?0fć@R=W$o6uֹ EUJv"ٯ 0s&x}5p$) zۯS^bW4_F ;o3S$'pFU`bB10{gW? '܉zX(wA@A5 T*`3O$o,r ̏R8DhLztd{:YG8 癓Žm[Z(KAV/ ܺ졋7gA6H&AikWA%Qp>T.o{T1N˓vF,?Go]ĴbD8ٹQNɉZqS pv ET G'aQht$&cr,ào 6Wܴ4^U &zO@}Ym'(rv`V MQuXSݚl" *BbC) /2z@Ep{,e`P]P-鍏0BHXR :_txQU$(.D w-i|TtIX$Bo4H-vxm$4 eb9ξJPDAlBl8M>fmZp ¥v& U@[W}룯-*X(s3ʔ&U9?($g-1lmj$٤^Eywiɧqy" :'<*&+8/Z2+%*RN3¸@< ^ƒ0ߐЙu8W;\8bh 3I{c et)U ٭K*ߧP*jg [ "?[ʁ =[{6EUڙވeN"&? _=qneWRQT) J> *7ly%xrJFSwTr#kKjY{8ܱGr:77d]6EQthKGJ(a9]yygIZum7'n G֎.=BפBUngN~*F ?,u_7G{p`DmR$KV+-~)׳&^ H +v §4R7;|y$$[Xq?w|2~xjץK^Bd~^Aqo s|%f0ǩ9?Ug ,r+˚oD}5=_sa47KE= _yUVst&hw}Vլ[hcbQ  iLSfhmxg]":}ލ&Y~zFȻhwv||[_ԘbIM B6P7No̻O)#31~{jiH=pLVKPС?>X a\GX,qC횺#q$2{ {v M "H@zߑ/I!pč~UxHû"Oa=~f2G0.avFkH߲l_QsrSjkU +&c_kKw)֌0"t<(f< oWs>\=E\.Jeiqm<] p- v=zŦ?\ay% t~"-V嗥^'s99ZeډjQ;+=B[ҥuW|-Atz[9P~[ޅ*?fsEk< 񥗃aNV,^r2QQsyhjţ /&Dɯ` gG^|pXh^Qaql܂{% WBG}7!E53~5@p {r6>tI_ >%;]JeMMˎGҺaTꁑm7o,ˍUteI;3#nZ"y ʒm&U%{3L&dhX:6Yo ^*ɫJj' ~٫Q3Qk@ ëO6Tx]q)6A`͵MS_x33Fmi||A8 ^,8( ۦ$#$g?SS'U{g+Kq /afCh9Hxfv_J/ s|7=H-=MՖ3G*˧<ӳˇ. E љ DS0EŊWhRX[{ ߮ '_ G=0R0[3yXRBq(h+]Dzoul!XL_j͚°x|1QiFY'ʿ[ZTuy(Ɉj  (mld }'˦a6'ƽd* d#01iQ([3^$<3(Q,0 ՗oH*XW9 (]ԣ]rgA1GHRDBr]θ<D9kUHk)iӨ\@.`5X"iD F^.s \aֲ^P3uGI3~{#_f'4>hH(=Y̤kB! y 6. 3zƞԝ!muQ%n,Sd3\J?.O@пsc."H72t >T./@9yjjŚ4D,J  5V&yg7KʨeEs#O鱶\3~ދ(}ֲEAD{I#sٷFDOPh?k ~MIeJjm Fp^\[i/]tT0ߴ`8sZT ,cxhd ڎ=7z@3 Pxw40p u>{Ab<<⎲kWR8Tcm{q{'@j;q_0bao`? -lCc[Fayu:p3|^ Ȳg=4v.bc8ѻUK :p4N?vZZǸk3i(Ȕ[*cك;]L}γ2KXpCse KBɟ7 RW˟v d]ltOm 8OQOf[9 E`cVNJIFqHVy|~=f{l#D0@c^kVߛ[F0IžS]P]oQ^qeѥSC2L+co1 3S~E7wa zpQn|q#Ѯh+3KjӷFhJ9"6Ӊ#R)To3%8XQz:~K;|T:;GPxNJ"̤ E|>@Gɘt^͋JF;I{DVlF9yR~Ȳ*-S6{{Njbes%έY_ !tf$nVZnɃ Ơ^T Lh+^MO)̞{{tԱ` d;ULt;4킳/5GkܭkOjKo=?`M&fE)msXv!qx3 {XƼ&")Ȱ8H@ ;~㽷 amŃ"%dx6iydl#?Hw-Lilv$G;xY|,Nt ҆Iu=U$sFaC6XQX̏lW*߁fXgmf\M7\pZN`r8Rѱ\%tW $>hl2o;%t_2jg P*'|@XmrU/;Hw~>>L Yz`0렓\xO=#=8n7G߿DĔ! ϡʧ5?>+.OC}hR,b17-D%TNF.J4H68|'{^\pz1_!o o3TPii`ÈAxRx شv|`<D=4-J 'A-J]7kY'}ˋێc*YĞޤ@ڄ 輘eqKP˞P;v$~Ё6ij~dn*N[`Bij{{+T \M'B/>AxE*|Sdh^{"6\Ĕ~?ȃ?HX&L:# 8&K]zDf Fضr#v73!fuٗűKm#wT$,ml  l ' \=ꍫ(\km)JTў(4Ֆz-msݿI -;?Ha.Y(x٧ ^g0g,F4~PYG/A9*Enj#,H`wź`V|HKTG\"1JgCfQ,AkU%yuTB0/p閟]D_0\c Vd>z1qV% hJP c}% P\݇v^ \5Ȍn F=8gfb\dװk)$[5egk#c֕Vc2]|FH&tR=,eQmF!:sLnO}~6t|62n ~hVMC>վwv\kK Xq¿&=!UiU}\kH2~\S)ʜV#݁;&s; p~^(1dk!m{FŽb| Ot>T6H۪%\#)Af*R83T,$h ,^u69@ͥ 'ZL](GEPЍA4aWu# JβG&\'j=: udjg%s&4qH nz:QY(* Ih#0hifeB;r͒)`;Iެ~N7souy;R4 m{Ԯrju13GRj$&uDmu5p"YQ4&S"N K<]柷fC*:h0jeXhmZe)">|E*Ӛ~ N FDlz 2 sifq*u`6 vUG33B7!(C5NF0sVJvY'oH#щYtpA1-gg0PʴW /~0|"iBY%0!z NffsTZDSZ+kc-O!zQ6va!rkpo9ޓEk`.M3;mBxʼnMHud;/)1(WM2OPtך':b}b{?v ڝ6fW?nƒC}=;,GP7CX\H9mK.in }Wۍ'0P9h5@XTha7+4foʤMo# i2&cP2a8 ד[-ݛ wq !j:pn6} $_``8wIF"b;kE,3cؓ6c&P_*0][bS$ZKCijPrl7~jf ɺji Lk7^?!!ͰP'mɇ\lf\2 kW7-.0a#?Zϴ;0&34wr?5Ʃ?Z0A_d zƥǔryl{^Q[1TQ $͵3Nu),h #8M}kU(kyRs9ZpMe!U`s[m"a$Ӌ )ؽ)66s_x6i5p;6z=,@H妪@O mh ]3aKW;B77!oư) 9 ܇0Z G̈qP}vE>»ZA"&򱛯Rݒ@.x42)\h4ݎ#J5_jE/eODqn!v;9ǒܼ.ځas]xh 7Mڊ̛T|cԍ] -(!W.W%C'wx "1mZ~gNcjnDgmP\N;2o N/a׎ D<p=O8gB#s w%j/\P d:<N. 0?HbSz|{b iMt𨐣1G@q,9g2j%Bt*NAbqPhsX}(S]:1|]Z ڋn;Var/)a?؜sVzlX)GS7 8jp@ %.?)/V,1RfϩAvQ2%dH!jD1aZuHn@?5ȓpS0P;LmP^hhdﯥ; LڌmӲa kGqyMMӋߣz9t?x.3v o B7J Mc X9Vj0zDj&70ǁPk⬶%dp4l|k=yk}xyb.Q9} _NZqImR $p= +^8^O}^+:aы`n!JnXBxuݾ 1& =2nhw6+8LR’d ϓF_‘=7y%2lɸJ&>]7hi })!DԮ}5tNE P\b@Yu(Dn:X>: Y'4Pˈwrna~mTFOV]_+z\HWe oĻ@^Q]B0. ExhgOb21i)V&(e\0Q%11s=(>5;LX\(NFPՓerCA>bCʇ~Zt[Ͼ[Vb͡7D;{)xPhh_1a뛴ewo|_ V5?f ?aaqi gS3EaqBLm݃1yn.q+,~N*ӷG} P&Xlk@4 Ӿ~=P}ęs6O{_#x`4O8D 1&LɋsoES\4bZ`|̅#ݞ{Ad>ls;g 9d,bÅ2KV>L8i!9O óFF+XJvз^KVMbky| -⬈jsL3^ϩ8m00hyՐay)Ai`rI({.f 3?Es4RgAs +1CY-קK5v%4יZߜ6+.z%2iU 2R5{BsU1ZL9J~ Fabw SVxzCO-gb,gW9:a/?"٥z/&‘PY/ģU6PZԴ1@Z&J?¨,CWQ/Jh9YCbÿB[A951% Ih<ۮ.&p9&%AA۰r8S띅HOXu {yFRBHȏ,ĝ:qʼnB2{ YV%JG{Pe'3hsQysRl66b*KX& Vn~eVd,$T3WvLLLejF2OJĻ͒ HHϔF& !͊Tosjg:k{JArP90ȗ̑57`;d|zݴ̴ &b-GK.qqmGĦN"$%uAzdwa,~2Pr9fGHTٌ`Isi!4Ngۿqyt#r?-?e݋nMoDFThOZ4b:<3=w[ރ@җ`jDIxpbV:veӶxJxv>΂WGDچt꛵x? F^!7[ѝJC~V|-~P)H} Z)5ÆoaC+]Q~=f. +bM(`︡$+T%)*$G;(SI U>~8qlN@?C-`t/Ng'Y= rlz6c OtqZr#ߢى[6@O Áo2q \#gY0^ |釹LA߈S:(.Pf$U.̤o7MǢ]E8ܦ7FC֡l-+/>jHcOz,"r8 V7TL߮qλkEJ?ن:vDFJF;RcF5DRQO9!<(>/Ww }ǏϴA\̧ҍ7*+YX0 p0,ۺnwiБgwdj otNe"{[h=C2)aD/!'=[k:)7;xM$6t7mY-QTVgQlb5iPuُn qɾ-A٭mY[00$|5wEpqiю-{J-ۢAOB׹ 5u2ld0 rHqƗQ8rqټ3%!lҬk+[0SRs]q"3 E Ud#,Ӌ6 sB{uzgKN6gw e$*4uȕj^-pZf:,JlZ4lPU⫟@Y‘;1+bt[W~"|;ܴۢ{ݰGA(>0/!5aY؃28+.O l;G%:CR8"RPNB(wţDEkD}Yβ/nܪN> Z:rJ8iy>%' }L6;ߠYd7YE o\SȗpG?$d@4К 2_WⲌQv;(!U4d15pPv= CB/:ev\ Hzfq$κH^*᥽k)f8ƀC,H*5zt;xPc$UED1z{,^ ;=&IHrшH2tàT:aԺ->F=K0 IF4@ >`2a1 aF 6r2 ;~#*c[}17bkcu@HD ]3NmADv3m4 (.FO 9Rf>Tsi-))~Mҳ g)މ iJR@3|[cPxʒYHP0[b?%vT~|-5XB%fɦ_rpdqUڧ>™2'ZiE:̀DU|H~2iN냩D2έ-#ZVdq~1 ,:2@7/r"INv aEpZ'@SXh µ@jny.Ɗ Pٯ2%,bYN4ME7b/ "H*hu0cPFX̱J5^īaސ:Qy(q#~T[#j$zS8nE͇xm]e) ULN[fWԌMFqUnk0[9eMX \NCԓɝ)۲U] hC6nRq <VjyfnaЧzmBS"EԟQ3١%@qcݛ;LalUO1]/&^E7 X5.3W&,7̧{CqBj߾fRj*`W60͌^p wO&§ ŠFkRך~\KOۖM%`-L㗇8r ;}}KٞuPJ8]5>3.U[LvMRP/vpL_ גşwBa-gRyG}J#,d} Sƕy" Y. {}&m3ILuD@G3Z'aza;NtD:]!ur^}V2' =Cq5*B=AGièwR"r_?Y\v7^p͡~J%*2oʠq5ZSt3Oώ'Fy? 9 DŽKj M *>Էc}gVe+14yl]=DRQ|T17 ̡9QQ=Ìk_{,Q2kM> b[E_j%H_( ;w[`kM_ӧ7 BK4 l4qN)[;jY FkO"bQ5Vk}`^Qx-q>3WcHJ); a=^Y9E-G5$m)ϗ%H27ucסhzf֘ԷꠏubDfa2,ƣ3k =̴[9:n &w"@ˮD璩aY ŰUWf3'+pspZ}t&ҥ5PψzolI]qoFx|ih |k;KHp:-Z"Aje8/i#j;9{>y>VSWbyb@ u8pwMRJiA<1%<7)IxGF@/pEk\Va7 ~@[!%{Xo3G&o?6 !-a;!XYLzP-l*~ vz?dĽIRX76~'hM׮z%SRGJҒ0ι UK`ѯ6M*mC6 j)rq1ߪY׷,sU)^VWnl.c8Ā q_:[\6%{HSde1ed>ȦngZ+JЮB͏2E=X;]R#We;cQ-SaO, 5<:$i $3cApjߙ޹z}'ɅcZ&؟;fZ`Vc!mH$b0fG_VRSRlήlR|(UATNsjxt+#KP/p&fԱs&֏yq M޹(|f1gbS谹 s!uSh )VC$]11' VDqb?, r8bХo5&VepfzX<}(zWKe֬)5(I5+JFv4me "` W%+D;i֍D`;*1 M -|V8~!wքC")+&:OfhwϙZ>]>*m~HSkҸY^]'%~luCY].w9֋hO:t\nQ,EC'90ۤG~d}CGڦu YEBݺ2v#C;cK.64`%DLq'-Pa@IE9 W!ĥ{gOi{΄!e/ΩsB Ӫ⺴q,G,ҋU+3_*]|ªg΄3L3~RQ%*󑞀>jtИ67jc/8ˊx.f3MźU2=1iJW/7$zVK@Tj!r?yL֛WIL5fpZFPv^klRՐry\;)GqEPt?KcA vKTTýA %YsxDx[ωvבv 5F#Շ$T_ _"<` 0!ip髇k Sjc+{I-SW(ڹC3)KFZj&uOsd|a~xog(@7ERXwewC`H!xN 6C_3rK.'壶\ si\sfJT3 e<-'" w] vmkf՚έ# kOʌRue3 8@*\%̜FQŽ8XQ^+Bʽq t 6^,o t\>*{L%q;sy^Gjo TRd:Wʳ] V##SC0؂ؑE#&1 !ŋ2El3Q⫌l[e:b.șcv.h3՘~5Nr*Zj$Ͼ +2|V!X.iiBlX)kgkJ ljU?$>_9<'/-u}zE (1M.=2K^ȌDOɔr54v'([{Lq5LGe䌹۶ukj7U-QR;[5C:UOV`S@nĿgR0[9ț5+k2Ѩڏ^r휴+^MY8D-I Tuli-9[ֻiHu"V2xpIdW>J8^ <ݒ=/ϰOz6nOP=ʄK6_X0OFɇL{i[d#kbw 0]D|Qnߪ=s%MSpi)WSE=5Q(ҺB0fz&bY" YIdJtCx;vdT'pV +A;]b6>@b?2g5 vIA ?PM^1:PL_U0 B# /lZ8 @͜.5Xog1I_2"\GfǒQ!L/ů>GT?Z&V0*yǖ1cU_SD>5 HRJ݉~Jʃ;o`nx$ ds>"pMcouNiVbzޥwRh>R?:%bI*甈H3L+:CȀlz7+$u>aIrBDŽ) ~ܤ%0|G Qho;~w6⵫cb SzaH\ d']'@Qv'Wg@ t*N:vti ӨW4r|o\43N0~~,[E{IՂj#mV7U2/Q8JSH#"yʛ z}5xmՕN5_|}&6q;."pSp}_P,z/q:Σ^fUi˽Ґe'?qhU6.>bEoh`82nudy\Y;HP]Z;F@(9cji6^ҔI:|JIG*/m*LMd 0A[45~_ӊycB_˙Q3pvO?8.b ~\sTXOVH "y6;u x@Pu"M-SInzUz㒗<A[z񤎤=J_|sVEoASg먳ʄ0 ~thN8aRJ.Lq:pԹ *q$࡫Z:JCvѩ].(~If07ah6S+sJ82;ŠtՈH=d)#"ivHax w:Kǘl |8s W9ZMC9BK])8su2^f{׆{Œ'9l΃9؞OyGg+ ILœ::(.~zcCLqKsuq-)u溻"@j^uɎe􈣷mܖ ^%Y,nț E,y?f!)?f9y=cF@d /)pгOoo`4%{ "S1|ָ#7~/u}?пAdBWP|f8xæy榺<f@dX8(o'MKO|U]m#BsYdl8KlL/{7doݵYB54 b屏ш}9 n)0i3;%9Zএ(5ߞޛqrVSb5=˳B-!Fa5 22E_<3epS.D%MUu)9fvJB45Gy5rӕ| ڍ4 A8# ub\"fuo5y3k}Σ^a3{Qnj˞{1.K:*xgl7gE@<(ve;.JI>h9+=XΆkke{;-$}69YݳYd,iܰh.Y|1)O'X鐈8PjO-nj_N(XK7-9h" >_{B{`I W! bV^6\}epHwybwO8 UwG)5]띈$sIp`N*B4Ẓ&څ@4g8Lbl:R3J[bk$ ћFkIv)6@ܔ%$I B7E !`}17jt[jC Ce":FG6_b4w& YUm.p{ q5 i :ęb=%ww B ~<@1E@[dX][V^. ޖDDAʝU! .[+,fۼ+@zj7)/{ ~Yضq[qXn&J UejB%5&1*SB$dOC3R"W/`j-[`Fre3f@b3D!^U2Ea Ɵ@ք7jS?#@iOo+,VoK\=LtA^@ ~JƂ |Jt9̈/dSsږTs)JmA:0NTI+Eg2Gq^0bbR@ɡJӯoE;p<[tvXH_~VKc昴#JPڄ_ äMwތAi=>7وNbWR@j7X|G[C8furU`G+\>`H.䗼;H+.$OL"=^IcێQ59K=gjͭ!Kg48KV%tgq"Ө+GtKsFzjgQ"+x'ӭ"mx| Mm}{Igޑ%SHv1kN,MǓ;#&Le}ʔ?X챠,N)Vg@>MbX35C3KlXQڣW6Uf "iQ{-Fͩ+ʹwH3JEa=\,OkR$p6:I VW,r.ca֚2bcF1m>{~(E0'lGvhkV :F;ԇvZg,gH/C$JTq I){قVh=J^ ֥#MdL^Ӏ{;Mj9hc7ډX +OtW ?}4cOv!cx ,'# rVuk,'Xe.E'\aί.h@Y6~ͨ8P)X#5m/U{=)Ĥe!ɾ#]7$Xվ(Zѳ(,ek=_"܈=`6& /> C(_܁U00Fr2btƿ0d_6ȧ=VRvYtvV{(R!8G59tϭW:+cLō`lW5A~h/;2\cMޫYhn5&iH>y\+j'M`"',uYϤwF47i˥bm6-*a\xn2! Z"tݫUx~= ᘦ;I `y\gC7h!\2{4A/[m.Xa.-Zl4BAwT ?nqV/05%`κS? 3c;c`Z6)I(2 9gN\0^Itnͮ^=ZGimKvmUF#?r2 rO>*9d* R_|po(e~5^n,K:q͉U =[1HsP Zyq F[!# Pd|슳癮{2Wz1}{+*2ACAILHZU[\xH6pyF™s xMRo ,B +{')\7'}!9}C8eT,|wSQ9R[T טmcU"D f!0ͦ@g/dqH>M%9_#bjR(T EJWp3*T#bd{b8}.v0xǜ/ M5zJgvnw}pVrGơ-gsN{i[g#m".Au7pA@ bq )ѶO%O=*R?Fhd>ޡ{O]ނ3X6"󹉀MF;'ͽOJw@ B~6LcBgW|RFB;IcO,]NJP9/,soHxlIirVK`ֹ<3Ϊ?iŕ7c*S&0IXp1dmr S8׋Aϊ:ohvds?~x g!3:֚͆ZJfX&DEcnmRWFJ 1Š!1)7h̔6YY-# lښ'}0w$M]wH/GN/f'i`p t 7HZw5 Ն oVdpsMZx3I3P8lt^TwL99 B>էc@D";!W1R4ӻ ik,D uFK'yt he\RNwMWӝcce*ė_E訞)uD0S: {~UU6pBVRVA4c)=Ph;EaAnjR@qxHGU5rbEaѭsvIB0SKғH)ݟ~Jl療_:$W8ԣBcj@\' zN`Z!.47XB y{ u4 FHЍ<93(zW(kS=`԰hlpM .T=e3V">@C{U*\ceuAKcC__ŹwZ% Ḟ 8015\yn% .[{2?ɰkWo/HM挂aGFΒϧ6#!b!zvAqK' V7}c>rum.zI56RSD]ŏ}ޅ-t__+bj PAtV4-AMq22JE3Ŀ8{ YZ