dbus-1-1.12.2-lp151.4.3.1<>,0@]*/=„%O뛠q7Rp0)_vcXzu܈9_ᜯ_L{XE8TQBН/Dx}4LTĐ G[[vڇd5jON+~VQ$PtVc"Xdt]'QZ_8biډpӤ0w(#^XCood 5eZ |>_PHAMF# v_[!7zh9"{/\)>WSW~J?d   5 %+0 ph=\= = P= D= &A= '|=(p=)=**=+,$),)/)(07080x(91(:3(=>?@C F(G<=H0=I$=XdYt\=]=^bTcdeflu=vw<=x0=y$}z(T\`fCdbus-11.12.2lp151.4.3.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).]*build33 6openSUSE Leap 15.1openSUSEGPL-2.0-or-later OR AFL-2.1http://bugs.opensuse.orgSystem/Daemonshttp://dbus.freedesktop.org/linuxi586getent 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 test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in dbus.service dbus.socket ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in dbus.service dbus.socket ; do # The tag file might have been left by a preceding # update (see 1059627) rm -f "/run/rpm-dbus-1-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-dbus-1-update-$service-new-in-upgrade" fi done for service in dbus.service dbus.socket ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : 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-lp151.4.3.1 else touch /etc/sysconfig/services.rpmbak.dbus-1-1.12.2-lp151.4.3.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 test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset dbus.service dbus.socket || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in dbus.service dbus.socket ; do if [ ! -e "/run/rpm-dbus-1-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-dbus-1-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in dbus.service dbus.socket ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : 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 [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : ( 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 else # package uninstall for service in dbus.service dbus.socket ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi fi+|FA&0 FxV&fF6L&lfh FW5@:q1]AAAAAA聤AAAA큤A큤A]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*]*YjYjZ Yj]*Yj]*]*]*]*]*]*]*]*]*]*]*9e984094dfb1060dd844d32e216d47929afa37e752daad68f31b006d4ee1b11b2218b9313dc6d2e07d85751f318124cc5138787358ae1039703321cf6b35602aa6f50dc70ef082a110dcdb164579cd2af221b90226c5e0aca237edcad98a1c26511b6072394bc4d6421506b6f4876e1ce53e03188740089cbfcd3e3653a4794459996c64544a10ee840c45db82472711da60a4f812209b0598527358a091cab915bb76290cbe385085bb3b419ea00b9b2b614765b8daf4ea16d13a5065fe8c6ab3c39c965afcfcb71ca274ca4e2f2885f9965de04d01b5e144e9eb9be264070d7d35e50ae91c2a3890159dee059fbd15c52d1cab2df594e697a9cc8902d074db83426e95bcbbdbcde372912e11200718fc18ae6c9df653ceb80ace0260ad7e3fd57a7a8c6955242b463f68c63512efafb95a7ae3f2f20daec2f0742e74b588035b3c65bfb63e64d534e9963fd84f1386a6e5cad1d0c144a3129051519de4b6c4077602add5215db925007e48f0563add8b80ec288459ac90a2ccd9dc69dcfa7d7a091dcefd23d422b025268ed7109281444079a550d76b1cf07fc2570f6c8b460f2e827b4c146d8fc7c0cfb5348056916e6c2b057ef40d77d55320472bbacccae05359bbdc083b8db2b49542b26429166b5e13367a63668a4e8ff8a1b496f7ae19d7b51e1e6da255346ac6acbf95627baf14c324e84ee841d90fab98bcc0e9942b7ac7357065180d1c2f3f00c11d17dadd31cdc3d7e59c623eb733beb3e50cef8d6c76ba6b7eaba0c987ab294f3534f3603dc5717349271cef7f46e7c530727abc7f3e09dfbd851b91b2b70d62730ce4e46323718ad35d635011689940ef6f6c206f009ddcf909422f3651c687b4623a5780fb7486c6d650e5332f57c00d6be118938a267987dee9ef442cdb9a5cba6d1e7303be93b0013b0948f20831921e5222ad2317b7040e0aca41b5c9a04141aaf20143e15072eb19394248eb5f5e5a19e2584de5acbe9ef4a792e39d9141c3a2b60fb592bf4d7c27cedd7bf8d201f4c2484db3de366500912c63d834154173c7886e7ded484d4fe1dde4b62f6d30b59b02757b6a8cba77f6273f07848aa1a81cdd02d0aaa0f86d3c73f2ecf5488531760e46f54efb12d04ab5c33713bacd0e140c9a35b57ae29e03c853203266e8f3a1398f385ec26f0f72b5d75d33d5a1d250eb11e6871ede87c4b623d9e3a322bef0d4f0e85dfcc152b8b3365cabae70e112d22bc42e94bada87b894b9086e836c00c8932744a4eb4afe8f62acf84937385158800c59b2045d934fc2ecb4b7eec07ec09dc29579b934cc59cca271f200cdbf6660997610afd8dfb5ab08152d401fa7077b58753a9a43bfce67e4d873ba70f1837e12780116076af9ea4cf1ad5460427505f360306dc8663428f16ad227f7150a142f06da6b3faba42d6a4e17a23a0962ec28c4f6d3a3556dd7f8654357af6f79084585d43ce48792f2c70150af37e7bbbde8f036a0821272fbb723fe9e5bdfe05474079a154ceff82a296b60c63acb548e3274756a60ca30146d99f1ca14265709c5d6f40ca375a8381c176d206f10/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-lp151.4.3.1.src.rpmconfig(dbus-1)dbus-1dbus-1(x86-32)dbus-launch@  !@@@@@@@@@@@@@@@@@@@@@@@@    /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/bin/shconfig(dbus-1)libaudit.so.1libc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1)libc.so.6(GLIBC_2.1.2)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.2)libc.so.6(GLIBC_2.3.2)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)libc.so.6(GLIBC_2.8)libc.so.6(GLIBC_2.9)libcap-ng.so.0libdbus-1-3libdbus-1.so.3libdbus-1.so.3(LIBDBUS_1_3)libdbus-1.so.3(LIBDBUS_PRIVATE_1.12.2)libexpat.so.1libpthread.so.0libpthread.so.0(GLIBC_2.0)libpthread.so.0(GLIBC_2.1)libpthread.so.0(GLIBC_2.2)libselinux.so.1libsystemd.so.0libsystemd.so.0(LIBSYSTEMD_209)permissionsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)shadowupdate-alternativesupdate-alternatives1.12.2-lp151.4.3.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>&2]:\=@\alarrosa@suse.comkukuk@suse.deJan Engelhardt eich@suse.comdimstar@opensuse.orgsflees@suse.dejengelh@inai.desflees@suse.desflees@suse.desflees@suse.desflees@suse.desflees@suse.desflees@suse.desflees@suse.desflees@suse.defstrba@suse.comsflees@suse.desflees@suse.desflees@suse.demarius.kittler@suse.comfstrba@suse.comjengelh@inai.defstrba@suse.comkukuk@suse.defstrba@suse.commvidner@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comhrvoje.senjan@gmail.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.com- Fix CVE-2019-12749 Authentication bypass (CVE-2019-12749 bsc#1137832) * added fix-CVE-2019-12749.patch- Make libdbus-1-3 own the %{_datadir}/dbus-1/system.d directory- Use %license instead of %doc [bsc#1082318]- Avoid bashisms in scriptlets.- Avoid ugly error message from %pre(install) script when installing for the first time.- Don't spit out a warning if /usr/bin/dbus-daemon does not exist when we run the pre-script.- Swap a missed libdir to libexecdir- Do not hide errors during useradd.- Fix dbus-daemon-launch-helper to use proper ref to libexecdir- use %{_libexecdir}/dbus-1 as libexecdir- Update to 1.12.2 Deprecations: • Eavesdropping is officially deprecated in favour of BecomeMonitor. See the release notes for spec version 0.31 (in dbus 1.11.14). • [Unix] Flag files in /var/run/console/${username} are deprecated. See the release notes for 1.11.18. New APIs: • 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/shbuild33 1563034273  !"#$%&'()*+,-./0123456789:;<=1.12.2-lp151.4.3.11.12.2-lp151.4.3.11.12.2-lp151.4.3.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/-fomit-frame-pointer -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.opensuse.org/openSUSE:Maintenance:10593/openSUSE_Leap_15.1_Update/0091a9a9b112cab4c21b7bea59c4b6d7-dbus-1.openSUSE_Leap_15.1_Updatedrpmxz5i586-suse-linux directoryBourne-Again shell script, ASCII text executablecannot open `/home/abuild/rpmbuild/BUILDROOT/dbus-1-1.12.2-lp151.4.3.1.i386/etc/alternatives/dbus-launch' (No such file or directory)exported SGML document, ASCII textELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=80f2d064fbd3718eb14e32ff7e2bb64d2a42573e, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=f4914d8558916e044ec4cc5365422989a530a98d, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=1ca12dfd72bdc0f4cbba9ae2c50023641a5170c3, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=0159f884602171c031b29f7bfa2b5b01012cc430, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=ba951990b32d2c7e6d3580e8a14b80d5ffe7b532, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=a43cc1d4712cce379e50e077b8352a9e086758f5, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=9b38e072e7e971361b951b12a3b08f7daee78646, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=1b4892df3c1fcc2adafbff79efd54af49214c521, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=31622d020dfd96084f53bc2cc56983555bc326b8, strippedELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib, for GNU/Linux 3.2.0, BuildID[sha1]=0b91c308b90e4abe915408d688af5859eba6dd83, 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-lp151.4.3.1.i386/var/lib/dbus/machine-id' (No such file or directory)(4>JUaj RRRR RR R R R RRRR RRR R RRRRRRRRRRRRR RRRR RR RRRR RRR RR RRRRRRR RRRR RR RRRR RRRR RR RRRRRR RRR RR RRRRRR RRRR RR RRRRRR RRRR R RRRR R RRRR RRR RRR R RRRRRRR Ke̞ϜN՚ O# See comments in pre if [ -s "/etc/sysconfig/services.rpmbak.dbus-1-1.12.2-lp151.4.3.1" ]; then mv -f /etc/sysconfig/services.rpmbak.dbus-1-1.12.2-lp151.4.3.1 /etc/sysconfig/services elif [ -e "/etc/sysconfig/services.rpmbak.dbus-1-1.12.2-lp151.4.3.1" ]; then rm -f /etc/sysconfig/services fi/bin/shutf-8eb7e3d44fd9275771cc2afcefd39aff7be97ad2a259cbbb4ec037957589d758e?`7zXZ !t/|{]"k%n(/_bbW<\:0+aWZv#ڷk3AjAV ^N|DEҙH\`!gE$5A7}'[МbۧKI#na뙫, 1ߝM&EI/-JU4Ӵcbwb{1(X"fڸm#`+1NTYD1"fU%JzcBqq^IVɸR'nk^m|a6f)- ȝ#4kT Ѕ"׮6bm%eoX;~ 9(n˾6btL Ҹ,T~, \wrz(f~f ~,o$xi bF& E3=Y8>^Ej y{MlGvrfۜ|9k,.+hqM_rٱInj(Wٲ(PЗ0ÁSu/x\o45(Yyg Bk7(8G\$fnVFcl`AMLtUE.ZQκyBJC΁54Z ʟ'#Aȹ8'4ZւvfUϯ [(WRݐh0$ v҅gJ> ʺǏF+u ۖh7W:u2m%e89(XU}рEC /Dl4})V<80SsL\$أ;$IkZ3pb0ab4z.E/ PN1g,oO*~Q #h3wN*ҸJ!/9Kӊ V7ɁE#GǗ݊M*gH\.:߄`ev)jSЌ`W ) no_.e~tރH:t;Up1 IPyS 't՗y.n#92 áo}>ݎ p NC3Tn(Dw#$%|cvسN?`ycp'+Eeqp,{26m@q{P Fɫ3׽` sf#G~tQ)%bV?ent]Lwk+j$hx׫'$My9&p}ٛC>. IugĘ~pB(lh#"1U־"_LR^W[0=#[_- "/F\ؑRxSE@ *f͑A#L'lu!@zU  PCv+)C頖*^&{p܂X5yCHC3О?]צږ..'۾MԂƹ9c{'|s-|eB?4l=owRߓ\Kp_4 Tf,@V^5oDxFoV5X zq0بeNS?4*.ޣ{@+/P0TK.XqB= WpV->,\ُhC͏wل!={5?bO01a47c i-Z.i^&2~"]K(eo&iYbo_{3N𺨔]oIX$h+M<1GJrD.%(Se;$e=avZ|Ioi%q/oP}zQ%uG%%,'Oo'[*}3>UY1CQM#vsQMl"#7̭ ["42\"61vre`HR= P%qukɪX2L\eY)/D.K"0D5 $H-R\K߽ɦuckUrKoͻmbl[!pZŤ4`!_p,)q3x}O%^=$oVG3MQL UsWr}-Ӄ&Pjr$(= CLy&|zD۵!4`*|lWWseU~dql?ڈ2Bzwˏ2۸k D 1o[=s%UȈpP"X|WzWi@hu5:bߡ |Hվ$p]U0x|ŴI1jP1ZMH(O3;V3R:)Ғt:iR#edLy N9i+3O7/Մ6n]C`x@ F7^] \P\WHd2ϭ|\#rb|Xæ%w^ßKQ> πYk=ᣇ뻻== 2`ICZɋn <HLGd>9~qy.5F.yD1)3QH,hQHX'XֲM[7Ch9Y5O sz}8 |{ L'+|_(37v91%pFŸ$0*k(m46Va*k|QA8Xp|5-5):C[% xF&'[)T͘Qc۴E0 28wgBj gDiZ: z ]$go!Skp!`r I !zw5T)gҔ'*P74N_{c=;Vn|VceY+6 0R/_0B3?WG^!eN8*",EFC2bWڶ4jH1Ж =@k@M%1Rԡ?QqS9$$wxjѣ*:>Xq~UHUc FNK+UN7p9(5WyeO7R\A6wh/H*&Ŗ72YׅnMoWí){ r)#يzbԉ"!w5j3ڀXIGW9|پ*OpT:}\Z^Kdrl\3YQ{4y <y5Xr%Zojv"s.3S*c:JP1.8Gl@mhL_ѿq JGV8b3–{{h 7g0uχ fZV P/»'Si{4eK9eDI.HkdB#H*N2Ç@?<[@ k&_EI IK#2aH N9GOÆ KuEc$GjŶpZ<+˺TZ_ZDS8Vyv#?Jbڸu -.Ś{m>I!Si~uO q`59Yk95OeR^9f`5PXa]i)q=yl1Pe z(D6_G7oU-745 eTD\F!KqMҵQե)!n.E$\*%cQX 4] BWp MZ|#."1b̵n޸X9(xӄH5FC km+XYT{kt[+jsvS>6EeXGfE6b݇ЈBeiT=[8'G΅,?*$^!%\;_@ IR SGcVPC Zp)a%&w,/ZFs3P]FT-6o%0Ѩj|ricqLJ$^*cPD+ l1YO/fIDM{˶)bȈEqB5w5nݶj\BhE7j2CzT~K|K~EB/W/2W˓׼hg*h߯w=O?!vbS)XOǫ*{_44Vvn/ҩ%lтLPV0]k5Ȏ mx8;اBegxCFWpxtY/cZ$ӥ8ub׷a1&q,-ڳaJc$\L U"zA wSH#L]^EY|^H>+9U eʯm)ŲrSN'l^!L=!eb˼'(L֟?k-ARtRݽ Gu'@ՠZ:؉No\$'uUh=YZ.UPlÃ}npgB1S4L4{j0n2C_YZG3#8a(,ӒYxe{]TSwN=}c4] [m@7Ti͘ CF~v9OeUS౤)O֎ m큑 U(SR9͐1@_W$ I1kAW3L?1j?<1ɮ1-\x4v6~77٢s=C6LCNEm y%$ Lk,8&!j[vD}(`߲ʱ TXGʞ.^iŽ7mռ KzseL}(>%R3O\́9>ZFcݽUю$ ?Z uwbGH@6BU";I ] yBUxGǂjb`M.ROb'i舠dM˶zE_\s9=Sӯv%Wn8rpE觏Fd %Fp.OW|9 W d\ie^_~ ̈ԗ\3?@r@Q8()*{gx/3O )A9HCr7IDfD563U"oL0I=>O![{=ӍȘ,Тz^3 "61J|Xԗ5$xO/>/n yzRmN nP[)Wy=̼8=//ʪVSvvqM_X.l c}'j"M*es$@O <Nj%ʌpM=HduV ?KT"tBF2$d&OOdH0aMS_/@a'Ӄ0 #USM.Gl|r&x#S#'qxQ}uM>"l;blCJ{|Xa_ ع\OF@櫁E8 ӻ3h{\@50"\^:{Pc(O×*R Z,VU 2+׺BpQ?nÃJ W\5QZ\L*0/;`MY4IHT!Tdr;,šH #-0k. ViIp .MFmoɮ#Ք/j7fK,MSϬ*-^ܕ0R]f p79:\RnH yW8p' e/}6 V( )[nu@g/Sͤ<2QKs(wQӞq2[ C%ڙhDȍT?H KN-~ LɽHngnoʙg 1QRZ*G5jwdQ3,} ɣJo7"ɧ̈f}Iot$~z&4K> o蒻3Bx?; dӏ)"{;>YP՝ j$o/a+P'SNnhtyN4=~X5솷s@DE:)^F/AM|Vρ=9Ir R(<(ρRj%׵m%6cV&d`f[r00:7>.fV{2WY2nT#ZtK+wCb x`r :~#s'+ V}rm$L@ :/Ȫӑx_F._W"ꎁJ6Ӽ.[DUmqg"aVdu];pq%j ~+ۿ6)v6oJ;:%WCLkv;vx+BӃ1j QkM[2ͣ5#4ktJAy<[ba]!%$Doj]c/~e#}!~ATppLG"Ssqmv;johFBb6"a8<ۭ =ٮqtO_f':TtXC.W۞R YAUQȠfcBxXl϶'PW;G 4r@]r7:LI"7%$GǪI?;ٰӖ*:̿ljN iOaf#SqI FDV{p,A.BŨeK=셠{$J.QoJ'# Y*}V /&k~E,iSGz+"?s6иK= .}Ln`\qV>:@Umޱ51cZ-A%_jd>ȶ|~N\YمDGS*~%h[6Qun~pT RuïHʳH<)h-")kpAД'_/ >^+ ?]mgȷ>13܋}Tn ,7 <`H?n<6JJ Ɯ#{GO!id%e\ÒrP) ~{}k6PBY?q[n;=P-P) yXQ?;[dQK)g26ht?3?¦3l2HBV.^cP[ߍ:K[qqL'L <$)tim+SJߌU3duV@7_Y?M!_ia>L%i0/?Ta9g2> xhyקDz9,4qYTznЌ#?0״ (^۾DѼ/?ʪrkA30 9ee:[$`/v$T2[1nv!]+NAN/0L<"%Dk#x8G_bN:Nrj &P>t3|e!Umc269 K$6=̻ةPo">vTGWyRG`vuB&>vO@AXeY^4k|0)a]yA+=^.iqǙa?D臲T/nq(N_}Kgg&#9}bBd_U\kk##uѫ'|↉j6o#P;h " }{[W'Ag;yo *n@YEBKuG^{myסˏEylv#!G럭(%%Wbe6ELx D}dEGU/._?ʲk \$ѡY$GtJO Q ~lV;١vye/ dkXZ АXɌrMT^t)KypI=KKFѯNy@RnZ o*xv  b lf ^UPNy;@=dd$?ET ꙷj$yYs+/n4ՙAG??CDvXO,EpαVC: :\ ">Tns~U^U}_(<%1E7Bo0s˪ZuWتCaw߄$QR/1%Ǥy>JAGk5=7hc :xD? @>^$ӘF|~>e'!7'ܐp$ķq޽zj '?o#ku%ڞ`2%:Y[QK%j&h1[ \Zs`xJIb?FTwϺWdYPA4fѠc;<=OzꆴC6"m 7Xұ[[-ehЎ14DuN5JaRt/b#ꕑMHC/W=:4 VTpE},4;) NǬ?Bu 85?;4&4 Aj<ҍƿF{wFi($A.xnoqs&Qt U: lBM;Qc9~ /\ޣejS]_Lu^p2]iÛ"uBBe·gzR4ՃM׬%7N>*z6X\YDn's<+:ܺS5z)gi}q=7i>4:;E, uk,0Z.U4KbQ6'r.{nUȕ̗E;lL2Qeً飆|& n!u\E!꼛3ÄoK76kZ!#xIcsY:e\MmН_m[Yeh$-&"!8ܕPzO$ߟW\) }g)+ hEq0׋^ō (``&%!#piZfbu%TILѭ$L<)$9Z\4&:e/,` Jw'2”+y2SbRW Sz:_ &V 9wic_.RHB%v57 ἅ].7||\me"dž, E]l+4@O.O$4ѽW(kGNCk< qU I@P[E^'biE:nNQ|%EFP\=@Fi[cF"ߧ98"ńލYrj[F.+ɧ/'".mt;Edywh?;׳۽ԡ0r:< 8+w0,w̌&Bs^~6oz#[ ώ~;2rc4ZFžb)X kRA>A:!.$*2+{0qL Υso|EmhZe[Ou8:lԶUڙ<&I `9BY;&@qCp8WZ~'MKR˚;"oO=+|FԬ\W%1XNacyJtp(q'L5/9ۖv#fvJAx5`@l5O-^/ [Ai^UHJoo,Z@;Q6Ț͖Qy\P'ƘRp,5pݸvsQ' CMu ^N[\: @a1:Сu _R G-"%Hege^A:|T&u 8-.Ϝ=h!*vUpwFKDˑz@sH7@9`yEȣT7tOˁ,v4%\P F2hP urK#ȑPȓDͼ]jJ BNfj?Q i ]ig2wGJ}5 &58j)ͰvWF=5s%`r\=aN’g*鿷Dќy+))Oq~~|Rp$ٔΠrz#{Ra`feJ,wxv-a^τagt:S>8s/Qٞ!#"l6 AiQ&זӂ#jNwa"fD!G0uC N,}{}Î*!|/)c?X 0cD8*bms^ l2- z+Q+^~:4|PNW)%1aKhY!L믪x'rN4Z]BH eN>8EԆ'e;( x-;xvɘAh ~T8RAOx+ (cDDJ(Mp%cE|$Weba"5k -8f]F[ ƜU~\i[rD3%z{o)ڣ^9&אv JZh{JBKʼn|![dksDVq \!KuvseUTE c *9hw@R^uPpȦOTocB3<_73?mA[D@ Z"4 wq nmٶh*H-XodS2DDOfXܽ;(]qJ|n، M@!c8iPXR^]vBVU8aY{®nlh9>VV.Kr5&-NABI_b8H N5"&zq@df|0~wiZ(y/˯ A ޒcq-(Q,EGw"}L#;jPIH1/ƈ7qDt-}3DE˥nt̗bF튳 V"^&;!n8Գ"z%;Tvrquj8 Bglϟ`x|X6,Kp?Ȑ/I# "柑f-'td0{ 6)|-oeB_4֞ tOaၢsf-LM6t$-)QY`=Hsz- ΊtKMZ Nư6zsGm]qn{r!q "B20A=BH*"mV,We[Y&*`]o3:/TqQ[\' u7g\9)Xkr>!Iln~ܤ ,n On.z+e+tu^'KOUXlZYzb[YV']( FjsIP%*{י]8fȋqqph$;ĺ•_A,[D<AAj*NdzSѨO5g3QB y[d0NoɛÐ:)H9W`>2tj:o.}@7S ?D/ 6X(ψ?dס|%Vx}SLђh}z-?ES$]$;CkH`z֙j~',8ԌzG"-dPv˙؆CWBCo@BO Bp|5jz7a/TWd}F xbJbح34Oҍr]BvVtz]9ޅ#9-\P*צh bv #Y/]_bn.~SKN]:`:^_Xȑ!EY-nJON4G=\0wY Yi69!Ý # 1#&R&=|GXՋ#hbHTxoA$?ߪ,fV67 _ j(@A}کW1aNZLu:N=΄35NY@н]qc 8H y=LEP#ϋRZ\(~F#Ry]1@{G[_Bk e)[ PgqV-%ZYpPC \xAHg#N"U<90Gf(s5R):tkGZkN\VњsZcgRTS%93,IR@Ȥ\`XW&[>ٰk.qfc psn5yyur:-3@jcM3%O}͔yc.CzBn>;?$}Z[^֪lZ_\}9q;/ 6 ~>=c,;gMj:rkrG5 nВ 曢dԻ;=a9 9=|eut!?ddNB25qp] cbR9BZt&ö׏g4~kFZjL0]Wk̛2!tVSB0/(f @[o Tk~9CbrIJGŒ%(hUzv,MئSp_v p b ccB{ ѳVۨI:TE,]V!ܖ,ߐk>{V]ϤUu$-'&Exx]mJ၌7bcEekd_BEu Kn Ol'eO4V`P߫k6jotH"4z 1X=R44:tg A Թ#bm: aW]xiTڞB[YdF2[իS8 ^)t*lLX8hƞ!?ᒟbe4, 0v>z_x5Pj,*,4- "m80S'B:p(fW*1ZZ8}Y&&1۰7ťG/Ql'O|)UhGp1 D78V5O~QG;: *}t/.հ  de^)v p8OeoR^0'Xki`BSJߥC^A@ k8{?SIL"81G{*G0ѷVSmᝪ1@t&h$2 R,{p%H$% #|f5vAj̚P<>bh$;ƒW75y~kZ31oPZCᗹ` 1p+E4:>z(EW@`|R.hL9eV&⨓PZ8yƾqȳ]wz ڸq(q#KTL.uQ52w{U9 ?V@5x 4S/s28S4YL$=V`ת]xZqmw%+q 'E8_9lLGF,m,eMQB9giP>O9RGAPTPW: 8hV<AI!rI gˍwYY鬭Mo!QɮbY@*mӍn*< 5Xf 3ˀP[[9 z6dٹY[_;q ?67M%n|FxYria$G(sgg?;?v4mOr9+)kՌUɠ8>¿.A'QhqNMV]Hr //.]&* ܨᓕq#0u?վI^ L1:U{trEiаO[ecq"6̂URDPv&Xk&ab*F xw(*KG;.SeɘyF7ODaWU#ss=U[oޙM͞@tlV~<^:7zAC|&6b[(#D!˺WT_\S܈66sE˞5wiGFwZ7篔')O@`>#I\>ˊ#S"_]$ 2a^Kk3=%pvtpQzШٚz'&1G ?L:Pb}eJxZ俣g0J4GTx.Q,/j=1NZ>,k蜴iZH/QdyHOŜ[cp8<[Ƅ"f0~uL9.(i"ꌮH8+N & mvن9mM[C$(rk_}]+g1RTJ}( Ek'{M픻}9u(0Girmo2 \v'56Vi"ʷhQEt9l8Wkh32K>!<‰B6sjڕ5C}-<ţ[dىI[oFAoi/gZn]!|xCI],>'ƚ҂:e{yq̋Dkv~ K1 w+x\mMMeCi2ցF>*%JŇDcEUTL}'6`#zL1z+!MpM 5{ N!sRNGևQ@$VĹD𝿂S"@:cuS0f4Ent2%Lrz8&-[A=q\CTqmM^f:V$fˡBU2n:^WS+;Ixӻ̖zr>zuSU-\_ުdлE HGv.o0M?}DxH#=/5l7ȥg2(.XxWBY{̱0e׌D9z I1%DV,RrK ~&LX+CʫIҀ5 !EBaxqP\V dЙ}Op +,,&y6wu5]f =jmowjyN|ֻ SvNJ:!VrS@*Fw)dݴ_'e4y1\)ΐt=JIMF G5b$hQ7o4[%iϯO?gp;dkm(5VQO a~gTnI PWۚŸJ ܯP'U`<$9R#'>_blqԞ(r,iuHRS2.0cf2R;tq]Nhe|Iz2 ͢A ;(> #6 s59k( l޻&}_RdzbY8a,u>{ĖcQgH9!RrU7lQK mws'viUܘvhSYG /aaZ%hH1 z%K#xA|,fdH@\3 FL!vPf_<ܔ})%**,2X<&hU]h_%k}l і,fj9+l{&%~/*1A/v{A59[OB:~!UP*XΞ-fKWG~s@ֻ&◨8Cı[,2 "^=~dA8-e$Drb Ҟxd9#*$L\x#>;0@ {o%" x̎'LLKv?J l۽G Rʑ>GLᅷauFK9ëFvXxYߝfN)Nh4 ѩydUʍJ/D>Dq&Db ^2\ś~{rSXt[a 8=vr Fk>if˸Zԝ&p矨m`~`j۽/#TIˑDR֮1S)8kCԶO=SHM1eĊj]yQY=ޮ.!y@+ v\RL)hfv=R;bn'J$~h(AL5bXfZ})C<=/F5~L)!)e[9IOT M☦Q} Kwߦ-o_Xw{HR322&Mñ+ M^6ՙQ]EN: R aysCΈY\X \Q+uz_qT/;Ro;a'rrR =}1 ud9/DsoOKhPP8F8r|c3A:%l-IΘU ` NJ|]R !U]?~MrYz&*@ 5Uylތd+5LNX&MkbZ+J鵋2#+QuJqq C]+=8e@Գ9wİŒk*K;j*pRǠWwuM"! )BrRE/.n#myIGE6zW\7~ሠ/+3%k~C2 TGq {7S)l{_KFQT8}Os)C6>N|/e<&'ǜiAwN2=6s^[^:BPu]Zm$;FE r)f[!V5OC"dJ̿p98g+R5;zY&yhwfla׊vaBs#<ڗ}P,2.S.NbnY;낐B xkt98]/KYLPu6B9.C,SJ64PfD7e,k @:f[;XtWa@7O8 }3OkS-쏁^I {kXY uhd tTp*ǩOnH^gϞp],J4)ގEyEj=f-DTph\L![QE/B qJʻws]/lisCy-Y۵mZ̎OU2*b t(ޏq/J,], J!+ ,5RTk>GffD%kLyE|Qun1;KQ=U7$:͂:Q~C5Y!QlI) 7ى):1p]wy'GlUĉ933c%=wjS+!}ҩF6A#nlbBBÚJWdQ9C n<}0(d˷BY. [|;jBhP ҋ`EoW #!lă|􆋴i?E{aΆ:& Jˌd*x΀6%;Gن!N9q->gR޴v&._W#y<]1y6 "c:QeWθvX6F1_\}lBSɀJʠzJp|Ôf Gps̘q (ims bѿHD긻HNhwupH[V'cF6 䞚xԍm ^ ߲fxO%0gI_fJB V;>4c!uAcz#ԏ^<5G۬m|O/\.nq%ٓ}UjtCԔҬs!UE W) 1 gbV6&>py%\v]wEhE\P3+ qG"iaiG?F~?׸K$hHa b} оב?15qPAHx3v\%܈fBhYfu (P<.7d1.1nFYĝjwM#=3?3M^Ҫ@lXZxQRc 4K?OQB:dr)-pϬHռ N#N=ySqݝw u<KXDjNSVބ9o9pOL-yT$iQ%N^Yӑ=H3bz- 6 ~/߂kZUBu+lk24ܧaJ$PZAQ/ ͔LǞ3ZI47sl]sAiyof$^1AI]lHkKVJ4Am?L!_>-`P+`S*F(o"dM.w/ 9.3l`:*whx//DH 6-Twaˠm}@ŠZtۖ?oEᣳvK(~f"h\ƶ"^փޜ}hS>xϑ )WkUqᐢww{\uВ rE#DYMYW[PH%Q)͂1#0ĤPE Tp2 imSbJjI"|TǸ!F@5]R!~LRv3J}Ƞ2AXE#5 RKAVӤ+m]?Ub-eI{ͤ ɑ(I.?Wc* AgճȓZ.+ס {.vWf28weZҤ*kJspj'NS|@/c)y);kWrf6O#!3eYnm.'}..E09YT삜}Mp&+*ʑbثORUdkT`&(~'J0P#@ilƒ<(vUZ@2z 봹i.pf*MtqSja-@(+rޙ@V 9_l^)/tcrBНBwa[_E;R2} i>X /nkSæc%:r'No,Ed"炆As8Pl{{I,;"N"e B73\{ X Z B9(?_kQյj*z@yDTt4R: fB*M-̺fqHN_Ϲa;/EI,Y))qtamrrƞ(in[Lu7[jR2>Ah9x%7S7=M0HBrTݾ_(^Vt~  952ƂYvר;"ŕA[ 6øU+)`Vj%Wdj0H)Tz]矙1K19@k SL)ANbtDi3o'ǹ%a@C̗.?bPڐ⡏Cϖ~1M/!AӈG lg>e[rTbDj;h?6%)^+szUFCFU(jSr۟[ϕg^^8v_%i6d5vЗ3aj^edڠ4efŸVIE T@B7s]ӅyL,Mlիg4KPv1&@z x{h>@oňLry`c509u,3>id/$ yO}@6, , 턗)U\BloB[m84EW]>@(}8Ԭ RWuvZ[}%/}m?x̹ϬѶy=ݨ4Ré Z7GkU/o>TDQkE\X}KA_LI"+!\<0>:TeK(B6CĚE D܃Bۊ<]i:P(LL.DҢ`|_-Y/t V.TY~I\1@_uĸq$Q8F Wߑ:4ѦAeWf>5\B߷|ڍ#fM"gϰp=KRi{.P۷$MNR G 1h=]Buj} p'%LIgk$҄t_xw~w Yu~Pe1-6]ʝ?JPf8;ET:D=KXѺ,p/$$P.ghHǒPd}DX@,bjv$y2!(Rlf^)+T2I1-js7F{=t$l~,MMI 7el1+m }b_ //4ץbц!ju!Rk6DYӬ`IsGI7__V̢-spbTn$bggOjid$ $.GohgrGq&{vVۈ/cxTbXy P"ޒS.Z,n.[ʦ\;t@1ja2'3XGUFS%K ҁX _44.?b ^0@#?^B,\KRO7C@x&j G {n;F҂pQw7:0vQWሊ\|tͷwz0SZ(pD$RTO7 ,ݤ4mb<t@AUv _"|uMJߠ؉Ie"BN}h]JO%8=(K^'ٌR[yz`WAKEn"U\t |A5K.'NwȄ~>{ˤA+?hD 6*zi|G/n S2.$|0́e4%2X8im}PU_-ăbhwGvٝjBҴ~μ<E1̸?lDL'cozB3qN'to~M>}P̪v7y&9{]jIB[UB">Rw x}  tռHkᤴ@Zk4SqKN#TAz\lʐZB&fYvޫaBGvȒFPc_K#kHA υiln]4=A ?WׂuВ:+Dc\LQr0>Mt6]G_)xCbQ5Y?J/Zc2? qѕIʉh|diTZ;'3 ?@4:.LҳihFX&cБl]tLJrt%| CكbK H(}#h3SfUsF"& I5U`_cN#gxŸbOyL䒼J'x#"Pϟ)Gr#u<Dn^{5l8dptF5V=nͨc B\$T߁R,5a=I=IʅH7z񇜫&mdwZ;…\!6KNgیuB#)dLsgA@v}M2Vf% ZB^ӠzvCT7Z#vN4~r 6Z-ٙQ1A7h:pܣOֻn,Ivn:C(,8˾{scS1KsYZht4÷`rDV>Ӄk/oWz9A yg(=dm{yEv:X[\ iv(+P.?A۞+,-k\ՔoYA$_)~ aOݞZ`[ w$叓ja {S! bc6Yzt"͊'>AX1ԍV 8]F5ΌyJZ^X%Njr O(`n,W" &A#UPȃUd<,*^Zx#*'՞ǘ;0Kպ(Q~1ܱћ-cbJ̑ʚ6BaP`%P.Gd$@/ha !Y5\:LYO:~$LG~΀,50([*J* .(&_ZыP[W}Kw̢UUr23tf4V]0`w\k?)k)mV#(;^ gݶhgH"Rzk>Ȃ2@- ]z{f^T-37kv#s]"h4ֻ%}: >ot:Ci-=`.p=:M1+Cq,VIgVvRpۓHm[~>>%e#I`?x)ż>2CCg^z e(-K9oY EC|ҠDJJwn8-{&En6}i. <5Z`_[ y