tests: extract daemon early quit test to a separate file
[platform/core/system/dlog.git] / tests / dlog_test.in
index e39cc9b..512d30c 100644 (file)
@@ -1,90 +1,15 @@
 #!/bin/sh
 
-# stuff for tracking test case counts
-FAILS=0
-OKS=0
-TOTAL=0
-LOG_DETAILS=
-
-#relevant pids default vals
-UTIL_PID=-1
-DLOGSEND_PID=-1
-MT_TEST=-1
-LOGGER=-1
-
-TEST_DYNAMIC_FILTERS="@DYNAMIC_FILTERS@"
-TESTDIR=/var/lib/dlog-tests
-
-extract_timestamp() {
-       ts=0
-       case "$1" in
-               "threadtime")
-                       time=$(echo "$2" | awk -F '[ +]' '{print $2}')
-                       ts=$(date +%s%N -d "$time")
-               ;;
-               "long")
-                       time=$(echo "$2" | awk -F '[ +.]' '{print $3}')
-                       ms=$(echo "$2" | awk -F '[ +.]' '{print $4}')
-                       sec=$(date +%s%N -d "$time")
-                       ns=$((10#$ms * 1000000))
-                       ts=$((sec + ns))
-               ;;
-               "rwtime")
-                       time=$(echo "$2" | awk -F '[ +.]' '{print $2}')
-                       ts=$(date +%s%N -d "$time")
-               ;;
-               "recv_realtime")
-                       time=$(echo "$2" | awk -F '[ +.]' '{print $2}')
-                       ts=$(date +%s%N -d "$time")
-               ;;
-               "time")
-                       time=$(echo "$2" | awk -F '[ +.]' '{print $2}')
-                       ts=$(date +%s%N -d "$time")
-               ;;
-               "kerneltime")
-                       ts=$(echo "$2" | awk -F '[ +]' '{print $1}' | sed -e 's/\.//g')
-               ;;
-       esac
-       echo "$ts"
-}
+# We use the something && ok || fail pattern quite a lot; it is not correct in general,
+# which makes shellcheck complain about it, but in our case it's ok to use it since
+# the ok function will never fail.
+# shellcheck disable=SC2015
 
-cleanup() {
-       [ "$UTIL_PID" -ne -1 ] && kill "$UTIL_PID" > /dev/null 2>&1
-       [ "$MT_TEST"  -ne -1 ] && kill "$MT_TEST"  > /dev/null 2>&1
-       [ "$LOGGER"   -ne -1 ] && kill "$LOGGER"   > /dev/null 2>&1
-       [ -d "$TESTDIR" ] && rm -rf "$TESTDIR"/*
-       [ -d "$RUNTIME_FILTERS_DIR" ] && rm -rf "$RUNTIME_FILTERS_DIR"
-}
+source dlog_test_header
 
 trap cleanup 0
 
-check_daemon() {
-       ret=1
-       if [ "$LOGGER" -ne -1 ] && [ -z "$(ps -o pid= -p "$LOGGER")" ]; then
-               ret=0
-       fi
-       return "$ret"
-}
-
-fail() {
-       check_daemon && daemon_status="[logger daemon not running]"
-
-       FAILS=$((FAILS + 1))
-       TOTAL=$((TOTAL + 1))
-       printf "[%02d] FAILED: %s %s\n" "$TOTAL" "$LOG_DETAILS" "$daemon_status"
-       LOG_DETAILS=
-}
-
-ok() {
-       check_daemon && daemon_status="[logger daemon not running]"
-
-       OKS=$((OKS + 1))
-       TOTAL=$((TOTAL + 1))
-       printf "[%02d] PASSED: %s %s\n" "$TOTAL" "$LOG_DETAILS" "$daemon_status"
-       LOG_DETAILS=
-}
-
-USAGE_MESSAGE="usage: $0 [--verbose] [--quick] pipe|logger"
+USAGE_MESSAGE="usage: $0 [--verbose] [--quick] pipe|logger|zero-copy"
 
 OPTS=$(getopt --shell sh --options "" --long verbose,quick --quiet -- "$@")
 if [ "$?" -eq 1 ]; then
@@ -118,6 +43,8 @@ if [ "$1" = "pipe" ]; then
        type="pipe"
 elif [ "$1" = "logger" ]; then
        type="logger"
+elif [ "$1" = "zero-copy" ]; then
+       type="zero-copy"
 # We still accept the legacy {pipe,logger}_quick syntax because there's no reason not to.
 elif [ "$1" = "pipe_quick" ]; then
        type="pipe"
@@ -140,6 +67,12 @@ capsh --print | grep Current | grep cap_syslog > /dev/null || { echo "*** ERROR:
 mount | grep ' / ' | grep rw > /dev/null || { echo "*** ERROR: root not mounted read-write"; NEEDS_TO_QUIT=1; }
 [ "$NEEDS_TO_QUIT" -eq 0 ] || exit 1
 
+if [ "$type" = "pipe" ] || [ -f /lib/modules/"$(uname -r)"/extra/logger.ko ]; then
+       LEGACY_LOGGER=0
+else
+       LEGACY_LOGGER=1
+fi
+
 if [ -z "$DLOG_CONFIG_PATH" ]; then
        ORIGINAL_CONFIG_PATH="/etc/dlog.conf"
 else
@@ -149,164 +82,180 @@ fi
 export DLOG_CONFIG_PATH="@datadir@/dlog-$type.conf.test"
 PATH=$PATH:@libexecdir@/libdlog/
 
-#create dir for runtime filters
-RUNTIME_FILTERS_DIR="/tmp/dlog-filters/"
-mkdir -p "$RUNTIME_FILTERS_DIR"
+if [ "$type" != "zero-copy" ]; then # These tests are inherently dynamic.
+       #create dir for runtime filters
+       RUNTIME_FILTERS_DIR="/tmp/dlog-filters/"
+       mkdir -m 777 -p "$RUNTIME_FILTERS_DIR"
 
-# Start the daemon
-if [ "$type" = "pipe" ]; then
-       dlog_logger &
+       if [ "$quick" -ne 1 ]; then
+               dlog_test_daemon_early_quit $type
+       fi
+
+       # Start the daemon
+       dlog_logger -t 0 &
        LOGGER=$!
        sleep 1
-fi
 
-if [ "$TEST_DYNAMIC_FILTERS" = "true" ]; then
-       dlogctl -c
-       dlogctl --enable
-       dlogutil -c -b radio -b system -b main
-       LOG_DETAILS="dlogctl --disable (no args)"
-       dlogctl --disable
-       [ "$(dlogctl -g | grep -c ENABLED)" -eq 0 ] && ok || fail
-       LOG_DETAILS="testing if filters were applied"
-       dlogsend -b system -t TEST test
-       dlogsend -b main -t TEST test
-       dlogsend -b radio -t TEST test
-       [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 0 ] && ok || fail
-
-       LOG_DETAILS="dlogctl --enable (no args)"
-       dlogctl --enable
-       [ "$(dlogctl -g | grep -c DISABLED)" -eq 0 ] && ok || fail
-       LOG_DETAILS="testing if filters were applied"
-       dlogutil -c -b radio -b system -b main
-       dlogsend -b system -t TEST test
-       dlogsend -b main -t TEST test
-       dlogsend -b radio -t TEST test
-       [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 3 ] && ok || fail
-
-       LOG_DETAILS="dlogctl --disable (1 arg)"
-       dlogctl --disable -b system
-       [ "$(dlogctl -g | grep    DISABLED | grep -c system)" -eq 1 ] &&
-       [ "$(dlogctl -g | grep -c DISABLED                 )" -eq 1 ] && ok || fail
-       LOG_DETAILS="testing if filters were applied"
-       dlogutil -c -b radio -b system -b main
-       dlogsend -b system -t TEST test
-       dlogsend -b main -t TEST test
-       dlogsend -b radio -t TEST test
-       [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 2 ] && ok || fail
-
-       LOG_DETAILS="dlogctl --disable (multiple args)"
-       dlogctl --disable -b main -b radio
-       [ "$(dlogctl -g | grep DISABLED | grep -cv system)" -eq 2 ] &&
-       [ "$(dlogctl -g | grep DISABLED | grep -c   radio)" -eq 1 ] &&
-       [ "$(dlogctl -g | grep DISABLED | grep -c    main)" -eq 1 ] && ok || fail
-       LOG_DETAILS="testing if filters were applied"
-       dlogutil -c -b radio -b system -b main
-       dlogsend -b system -t TEST test
-       dlogsend -b main -t TEST test
-       dlogsend -b radio -t TEST test
-       [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 0 ] && ok || fail
-
-       LOG_DETAILS="dlogctl --enable (multiple args)"
-       dlogctl --enable -b radio -b system
-       [ "$(dlogctl -g | grep -c DISABLED                 )" -eq 1 ] &&
-       [ "$(dlogctl -g | grep    DISABLED | grep -c   main)" -eq 1 ] &&
-       [ "$(dlogctl -g | grep    ENABLED  | grep -c system)" -eq 1 ] &&
-       [ "$(dlogctl -g | grep    ENABLED  | grep -c  radio)" -eq 1 ] && ok || fail
-       LOG_DETAILS="testing if filters were applied"
-       dlogutil -c -b radio -b system -b main
-       dlogsend -b system -t TEST test
-       dlogsend -b main -t TEST test
-       dlogsend -b radio -t TEST test
-       [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 2 ] && ok || fail
-
-       LOG_DETAILS="dlogctl --enable (1 arg)"
-       dlogctl --enable -b main
-       [ "$(dlogctl -g | grep -c DISABLED)" -eq 0 ] && ok || fail
-       LOG_DETAILS="testing if filters were applied"
-       dlogutil -c -b radio -b system -b main
-       dlogsend -b system -t TEST test
-       dlogsend -b main -t TEST test
-       dlogsend -b radio -t TEST test
-       [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 3 ] && ok || fail
-
-       LOG_DETAILS="dlogctl -s allow"
-       dlogutil -c -b radio -b system -b main
-       dlogctl -c
-       dlogctl -s deny
-       dlogctl -t TEST_TAG -s allow
-       dlogsend -b main -t TEST_TAG test
-       dlogsend -b main -t TEST test
-       [ "$(dlogutil -d -b main | wc -l)" -eq 1 ] && ok || fail
-
-       LOG_DETAILS="dlogctl -s [N]"
-       dlogutil -c -b radio -b system -b main
-       dlogctl -c
-       dlogctl -s deny
-       dlogctl -t TEST_TAG -s 3
-       dlogsend -b main -c 10 -t TEST_TAG test
-       dlogsend -b main -c 10 -t TEST test
-       [ "$(dlogutil -d -b main | wc -l)" -eq 4 ] && ok || fail
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (1/13)"
-       dlogctl -s invalid > /dev/null && fail || ok
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (2/13)"
-       dlogctl -p X -g > /dev/null && fail || ok
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (3/13)"
-       dlogctl -b invalid --disable > /dev/null && fail || ok
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (4/13)"
-       dlogctl -s allow -g -t xyz -p E > /dev/null && fail || ok
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (5/13)"
-       dlogctl -s allow -c > /dev/null && fail || ok
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (6/13)"
-       dlogctl -c -g -t xyz -p E > /dev/null && fail || ok
-
-       # -s out of range
-       LOG_DETAILS="testing invalid parameters for dlogctl (7/13)"
-       dlogctl -s -10 > /dev/null && fail || ok
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (8/13)"
-       dlogctl -s 999999 > /dev/null && fail || ok
-
-       # -s correctness
-       LOG_DETAILS="testing invalid parameters for dlogctl (9/13)"
-       dlogctl -s 100 && ok || fail
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (10/13)"
-       [ "$(grep -cE 'limiter\|\*\|\*=100' "$RUNTIME_FILTERS_DIR"/05-logctl.conf)" -eq 1 ] && ok || fail
-
-       # -g correctness
-       LOG_DETAILS="testing invalid parameters for dlogctl (11/13)"
-       [ "$(dlogctl -g | grep '*:*' | grep -c 100)" -eq 1 ] && ok || fail
-
-       # -c correctness
-       LOG_DETAILS="testing invalid parameters for dlogctl (12/13)"
-       dlogctl -c -t '*' -p '*' && ok || fail
-
-       LOG_DETAILS="testing invalid parameters for dlogctl (13/13)"
-       [ "$(grep -cE 'limiter\|\*\|\*=100' "$RUNTIME_FILTERS_DIR"/05-logctl.conf)" -eq 0 ] && ok || fail
-       dlogctl -c
-
-       LOG_DETAILS="testing if the whole dynamic config directory is respected"
-       dlogctl -s deny
-       cp $RUNTIME_FILTERS_DIR/05-logctl.conf $RUNTIME_FILTERS_DIR/10-other.conf
-       dlogctl -c
-       dlogutil -c -b radio -b system -b main
-       dlogsend -b system -t TEST test
-       dlogsend -b main -t TEST test
-       dlogsend -b radio -t TEST test
-       [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 0 ] && ok || fail
-       rm $RUNTIME_FILTERS_DIR/10-other.conf
+       if [ "$TEST_DYNAMIC_FILTERS" = "true" ]; then
+               dlogctl -c
+               dlogctl --enable
+               dlogutil -c -b radio -b system -b main
+               LOG_DETAILS="dlogctl --disable (no args, limiter_apply_to_all_buffers=0)"
+               dlogctl --disable
+
+               # without 'limiter_apply_to_all_buffers=1' this
+               # only applies to the three platform buffers:
+               # main, radio, and system
+               PREPLOG_CONFIG_PATH="$DLOG_CONFIG_PATH"
+               DLOG_CONFIG_PATH="@datadir@/dlog-$type.conf.plog"
+               [ "$(dlogctl -g | grep regular | grep -c DISABLED)" -eq 3 ] && ok || fail
+               DLOG_CONFIG_PATH="$PREPLOG_CONFIG_PATH"
+
+               LOG_DETAILS="dlogctl --disable (no args, limiter_apply_to_all_buffers=1)"
+               dlogctl --disable
+               [ "$(dlogctl -g | grep regular | grep -c ENABLED)" -eq 0 ] && ok || fail
+
+               LOG_DETAILS="testing if filters were applied"
+               dlogsend -b system -t TEST test
+               dlogsend -b main -t TEST test
+               dlogsend -b radio -t TEST test
+               [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 0 ] && ok || fail
+
+               LOG_DETAILS="dlogctl --enable (no args)"
+               dlogctl --enable
+               [ "$(dlogctl -g | grep regular | grep -c DISABLED)" -eq 0 ] && ok || fail
+               LOG_DETAILS="testing if filters were applied"
+               dlogutil -c -b radio -b system -b main
+               dlogsend -b system -t TEST test
+               dlogsend -b main -t TEST test
+               dlogsend -b radio -t TEST test
+               [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 3 ] && ok || fail
+
+               LOG_DETAILS="dlogctl --disable (1 arg)"
+               dlogctl --disable -b system
+               [ "$(dlogctl -g | grep regular | grep    DISABLED | grep -c system)" -eq 1 ] &&
+               [ "$(dlogctl -g | grep regular | grep -c DISABLED                 )" -eq 1 ] && ok || fail
+               LOG_DETAILS="testing if filters were applied"
+               dlogutil -c -b radio -b system -b main
+               dlogsend -b system -t TEST test
+               dlogsend -b main -t TEST test
+               dlogsend -b radio -t TEST test
+               [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 2 ] && ok || fail
+
+               LOG_DETAILS="dlogctl --disable (multiple args)"
+               dlogctl --disable -b main -b radio
+               [ "$(dlogctl -g | grep regular | grep DISABLED | grep -cv system)" -eq 2 ] &&
+               [ "$(dlogctl -g | grep regular | grep DISABLED | grep -c   radio)" -eq 1 ] &&
+               [ "$(dlogctl -g | grep regular | grep DISABLED | grep -c    main)" -eq 1 ] && ok || fail
+               LOG_DETAILS="testing if filters were applied"
+               dlogutil -c -b radio -b system -b main
+               dlogsend -b system -t TEST test
+               dlogsend -b main -t TEST test
+               dlogsend -b radio -t TEST test
+               [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 0 ] && ok || fail
+
+               LOG_DETAILS="dlogctl --enable (multiple args)"
+               dlogctl --enable -b radio -b system
+               [ "$(dlogctl -g | grep regular | grep -c DISABLED                 )" -eq 1 ] &&
+               [ "$(dlogctl -g | grep regular | grep    DISABLED | grep -c   main)" -eq 1 ] &&
+               [ "$(dlogctl -g | grep regular | grep     ENABLED | grep -c system)" -eq 1 ] &&
+               [ "$(dlogctl -g | grep regular | grep     ENABLED | grep -c  radio)" -eq 1 ] && ok || fail
+               LOG_DETAILS="testing if filters were applied"
+               dlogutil -c -b radio -b system -b main
+               dlogsend -b system -t TEST test
+               dlogsend -b main -t TEST test
+               dlogsend -b radio -t TEST test
+               [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 2 ] && ok || fail
+
+               LOG_DETAILS="dlogctl --enable (1 arg)"
+               dlogctl --enable -b main
+               [ "$(dlogctl -g | grep regular | grep -c DISABLED)" -eq 0 ] && ok || fail
+               LOG_DETAILS="testing if filters were applied"
+               dlogutil -c -b radio -b system -b main
+               dlogsend -b system -t TEST test
+               dlogsend -b main -t TEST test
+               dlogsend -b radio -t TEST test
+               [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 3 ] && ok || fail
+
+               LOG_DETAILS="dlogctl -s allow"
+               dlogutil -c -b radio -b system -b main
+               dlogctl -c
+               dlogctl -s deny
+               dlogctl -t TEST_TAG -s allow
+               dlogsend -b main -t TEST_TAG test
+               dlogsend -b main -t TEST test
+               [ "$(dlogutil -d -b main | wc -l)" -eq 1 ] && ok || fail
+
+               LOG_DETAILS="dlogctl -s [N]"
+               dlogutil -c -b radio -b system -b main
+               dlogctl -c
+               dlogctl -s deny
+               dlogctl -t TEST_TAG -s 3
+               dlogsend -b main -c 10 -t TEST_TAG test
+               dlogsend -b main -c 10 -t TEST test
+               [ "$(dlogutil -d -b main | wc -l)" -eq 4 ] && ok || fail
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (1/13)"
+               dlogctl -s invalid > /dev/null && fail || ok
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (2/13)"
+               dlogctl -p X -g > /dev/null && fail || ok
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (3/13)"
+               dlogctl -b invalid --disable > /dev/null && fail || ok
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (4/13)"
+               dlogctl -s allow -g -t xyz -p E > /dev/null && fail || ok
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (5/13)"
+               dlogctl -s allow -c > /dev/null && fail || ok
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (6/13)"
+               dlogctl -c -g -t xyz -p E > /dev/null && fail || ok
+
+               # -s out of range
+               LOG_DETAILS="testing invalid parameters for dlogctl (7/13)"
+               dlogctl -s -10 > /dev/null && fail || ok
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (8/13)"
+               dlogctl -s 999999 > /dev/null && fail || ok
+
+               # -s correctness
+               LOG_DETAILS="testing invalid parameters for dlogctl (9/13)"
+               dlogctl -s 100 && ok || fail
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (10/13)"
+               [ "$(grep -cE 'limiter\|\*\|\*=100' "$RUNTIME_FILTERS_DIR"/05-logctl.conf)" -eq 1 ] && ok || fail
+
+               # -g correctness
+               LOG_DETAILS="testing invalid parameters for dlogctl (11/13)"
+               [ "$(dlogctl -g | grep -F '*:*' | grep -c 100)" -eq 1 ] && ok || fail
+
+               # -c correctness
+               LOG_DETAILS="testing invalid parameters for dlogctl (12/13)"
+               dlogctl -c -t '*' -p '*' && ok || fail
+
+               LOG_DETAILS="testing invalid parameters for dlogctl (13/13)"
+               [ "$(grep -cE 'limiter\|\*\|\*=100' "$RUNTIME_FILTERS_DIR"/05-logctl.conf)" -eq 0 ] && ok || fail
+               dlogctl -c
+
+               LOG_DETAILS="testing if the whole dynamic config directory is respected"
+               dlogctl -s deny
+               cp $RUNTIME_FILTERS_DIR/05-logctl.conf $RUNTIME_FILTERS_DIR/10-other.conf
+               dlogctl -c
+               dlogutil -c -b radio -b system -b main
+               dlogsend -b system -t TEST test
+               dlogsend -b main -t TEST test
+               dlogsend -b radio -t TEST test
+               [ "$(dlogutil -d -b radio -b system -b main | wc -l)" -eq 0 ] && ok || fail
+               rm $RUNTIME_FILTERS_DIR/10-other.conf
+       fi
 fi
 
 SEED=$(head -c 6 /dev/urandom | base64)
-dlogsend -k "$SEED"
-# -k is async, unlike normal mode; therefore we have to wait until the logging process actually finishes
-while ps -o args | grep "dlogsend" | grep -v grep > /dev/null || ps -o args | grep "dlog-log-critical" | grep -v grep > /dev/null; do :; done
+dlogsend -b main -k "$SEED"
+# -k is async, unlike normal mode; therefore we have to wait until the logging process actually finishes.
+while pgrep "dlogsend" > /dev/null || pgrep "dlog-log-critical" > /dev/null; do :; done
 CRIT_PATH="@DLOG_CRITICAL_LOGFILE_PATH@"
 LOG_DETAILS="testing if critical logging works"
 cat "$CRIT_PATH".a "$CRIT_PATH".b | grep -F "$SEED" > /dev/null && ok || fail
@@ -321,6 +270,73 @@ if [ "$type" = "pipe" ] && [ "$quick" -ne 1 ]; then
        [ "$(dlogutil -d DLOGSEND_SIGPIPE_TEST | wc -l)" -eq 2 ] && ok || fail
 fi
 
+dlogutil -c
+
+LOG_DETAILS="testing if dlogutil rejects dotnet"
+dlogutil -db dotnet_api && fail || ok
+
+LOG_DETAILS="testing if dlogutil rejects native"
+dlogutil -db native_api && fail || ok
+
+LOG_DETAILS="testing if dotnet redirects to regular apps (1/2)"
+dlogsend -b dotnet_api "TEST"
+sleep 0.25
+[ "$(dlogutil -d -b apps | wc -l)" -eq 1 ] && ok || fail
+
+LOG_DETAILS="testing if dotnet redirects to regular apps (2/2)"
+dlogsend -c 6 -b dotnet_api "TEST"
+sleep 0.25
+[ "$(dlogutil -d -b apps | wc -l)" -eq 7 ] && ok || fail
+
+LOG_DETAILS="testing if native redirects to regular apps (1/2)"
+dlogsend -b native_api "TEST"
+sleep 0.25
+[ "$(dlogutil -d -b apps | wc -l)" -eq 8 ] && ok || fail
+
+LOG_DETAILS="testing if native redirects to regular apps (2/2)"
+dlogsend -c 6 -b native_api "TEST"
+sleep 0.25
+[ "$(dlogutil -d -b apps | wc -l)" -eq 14 ] && ok || fail
+
+if [ "$type" != "zero-copy" ]; then # These tests are inherently dynamic.
+       dlogutil -c
+       LOG_DETAILS="testing if blocking dotnet and regular apps is separate (1/4)"
+       dlogctl -b apps --enable
+       dlogctl -b dotnet_api --disable
+       dlogsend -b dotnet_api "TEST"
+       [ "$(dlogutil -d -b apps | wc -l)" -eq 0 ] && ok || fail
+       LOG_DETAILS="testing if blocking dotnet and regular apps is separate (2/4)"
+       dlogsend -b apps "TEST"
+       [ "$(dlogutil -d -b apps | wc -l)" -eq 1 ] && ok || fail
+       LOG_DETAILS="testing if blocking dotnet and regular apps is separate (3/4)"
+       dlogctl -b apps --disable
+       dlogctl -b dotnet_api --enable
+       dlogsend -b dotnet_api "TEST"
+       [ "$(dlogutil -d -b apps | wc -l)" -eq 2 ] && ok || fail
+       LOG_DETAILS="testing if blocking dotnet and regular apps is separate (4/4)"
+       dlogsend -b apps "TEST"
+       [ "$(dlogutil -d -b apps | wc -l)" -eq 2 ] && ok || fail
+
+
+       dlogutil -c
+       LOG_DETAILS="testing if blocking native and regular apps is separate (1/4)"
+       dlogctl -b apps --enable
+       dlogctl -b native_api --disable
+       dlogsend -b native_api "TEST"
+       [ "$(dlogutil -d -b apps | wc -l)" -eq 0 ] && ok || fail
+       LOG_DETAILS="testing if blocking native and regular apps is separate (2/4)"
+       dlogsend -b apps "TEST"
+       [ "$(dlogutil -d -b apps | wc -l)" -eq 1 ] && ok || fail
+       LOG_DETAILS="testing if blocking native and regular apps is separate (3/4)"
+       dlogctl -b apps --disable
+       dlogctl -b native_api --enable
+       dlogsend -b native_api "TEST"
+       [ "$(dlogutil -d -b apps | wc -l)" -eq 2 ] && ok || fail
+       LOG_DETAILS="testing if blocking native and regular apps is separate (4/4)"
+       dlogsend -b apps "TEST"
+       [ "$(dlogutil -d -b apps | wc -l)" -eq 2 ] && ok || fail
+fi
+
 # put 100 log entries in the "main" buffer
 dlogutil -c
 test_libdlog 100
@@ -348,8 +364,10 @@ LOG_DETAILS="testing if dlogutil returns exact amount of entries as there is in
 LOG_DETAILS="testing if reading from  dummy buffer returns an error as expected"
 dlogutil -b nonexistent_buffer > /dev/null && fail || ok
 
-LOG_DETAILS="testing if reading from \"system\" buffer returns zero entries (logs are in the \"main\" buffer)"
-[ "$(dlogutil -d -b system | wc -l)" -eq 0 ] && ok || fail
+if [ "$type" != "zero-copy" ]; then # No buffer split in zero-copy
+       LOG_DETAILS="testing if reading from \"system\" buffer returns zero entries (logs are in the \"main\" buffer)"
+       [ "$(dlogutil -d -b system | wc -l)" -eq 0 ] && ok || fail
+fi
 
 LOG_DETAILS="testing if dlogutil -c empties all buffers"
 dlogutil -cb main && ok || fail
@@ -359,28 +377,30 @@ test_libdlog 10
 [ "$(dlogutil -b main -d | wc -l)" -eq 10 ] && ok || fail # should be 10, not 110
 
 LOG_DETAILS="testing if filters work (1/3)"
-[ "$(dlogutil -b main -d *:E | wc -l)" -eq 5 ] && ok || fail # half of current logs (test_libdlog alternates between error and info log levels)
+[ "$(dlogutil -b main -d '*:E' | wc -l)" -eq 5 ] && ok || fail # half of current logs (test_libdlog alternates between error and info log levels)
 
 LOG_DETAILS="testing if filters work (2/3)"
-[ "$(dlogutil -b main -d *:W | wc -l)" -eq 5 ] && ok || fail
+[ "$(dlogutil -b main -d '*:W' | wc -l)" -eq 5 ] && ok || fail
 
 LOG_DETAILS="testing if filters work (3/3)"
-[ "$(dlogutil -b main -d *:I | wc -l)" -eq 10 ] && ok || fail
+[ "$(dlogutil -b main -d '*:I' | wc -l)" -eq 10 ] && ok || fail
 
 LOG_DETAILS="testing if exact filters work (1/3)"
-[ "$(dlogutil -b main -d *:=E | wc -l)" -eq 5 ] && ok || fail
+[ "$(dlogutil -b main -d '*:=E' | wc -l)" -eq 5 ] && ok || fail
 
 LOG_DETAILS="testing if exact filters work (2/3)"
-[ "$(dlogutil -b main -d *:=W | wc -l)" -eq 0 ] && ok || fail
+[ "$(dlogutil -b main -d '*:=W' | wc -l)" -eq 0 ] && ok || fail
 
 LOG_DETAILS="testing if exact filters work (3/3)"
-[ "$(dlogutil -b main -d *:=I | wc -l)" -eq 5 ] && ok || fail
+[ "$(dlogutil -b main -d '*:=I' | wc -l)" -eq 5 ] && ok || fail
 
 LOG_DETAILS="testing if adding \"silent\" filter works"
 [ "$(dlogutil -b main -s -d | wc -l)" -eq 0 ] && ok || fail
 
-LOG_DETAILS="testing if reading buffer size returns proper exit code"
-dlogutil -gb main > /dev/null && ok || fail
+if [ "$type" != "zero-copy" ]; then # No buffer size access in zero-copy
+       LOG_DETAILS="testing if reading buffer size returns proper exit code"
+       dlogutil -gb main > /dev/null && ok || fail
+fi
 
 LOG_DETAILS="testing if writing all entries to single file works (-f)"
 dlogutil -f $TESTDIR/dlog_test_file -d > /dev/null && ok || fail
@@ -405,7 +425,7 @@ if [ "$quick" -ne 1 ]; then
        [ $WAS_ALIVE -eq 1 ] && [ "$(wc -l < "$TESTDIR"/dlog_continuous2_file)" -eq 11 ] && ok || fail
 
        LOG_DETAILS="testing if the monitor mode works as expected (1/2)"
-       dlogutil -mb main -f $TESTDIR/dlog_monitor1_file &
+       dlogutil --monitor -b main -f $TESTDIR/dlog_monitor1_file &
        UTIL_PID=$!
        sleep 1
        kill $UTIL_PID && WAS_ALIVE=1 || WAS_ALIVE=0
@@ -413,7 +433,7 @@ if [ "$quick" -ne 1 ]; then
        [ $WAS_ALIVE -eq 1 ] && [ "$(wc -l < "$TESTDIR"/dlog_monitor1_file)" -eq 0 ] && ok || fail
 
        LOG_DETAILS="testing if the monitor mode works as expected (2/2)"
-       dlogutil -mb main -f $TESTDIR/dlog_monitor2_file &
+       dlogutil --monitor -b main -f $TESTDIR/dlog_monitor2_file &
        UTIL_PID=$!
        sleep 1
        dlogsend -b main "Hi!"
@@ -423,6 +443,7 @@ if [ "$quick" -ne 1 ]; then
        [ $WAS_ALIVE -eq 1 ] && [ "$(wc -l < "$TESTDIR"/dlog_monitor2_file)" -eq 1 ] && ok || fail
 fi
 
+dlogutil -cb main
 test_libdlog 100000 &
 LIBDLOGUTIL_CORRECT_PID=$!
 wait $LIBDLOGUTIL_CORRECT_PID
@@ -448,7 +469,7 @@ LOG_DETAILS="testing if rotating file is properly created (4/4)"
 if [ -e $TESTDIR/dlog_rotating_file.4 ]; then fail; else ok; fi
 
 LOG_DETAILS="testing the size of log files"
-if [ $(du "$TESTDIR"/dlog_rotating_file.3 | sed "s#$TESTDIR/dlog_rotating_file.3##g") -eq 16 ]; then ok; else fail; fi # the actual size is one sector more (so 12 -> 16) because the limit is checked after reaching it, not before
+if [ "$(du "$TESTDIR"/dlog_rotating_file.3 | sed "s#$TESTDIR/dlog_rotating_file.3##g")" -eq 16 ]; then ok; else fail; fi # the actual size is one sector more (so 12 -> 16) because the limit is checked after reaching it, not before
 
 LOG_DETAILS="testing if libdlogutil works correctly in the dump mode"
 test_libdlogutil dump $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
@@ -482,18 +503,21 @@ LOG_DETAILS="testing if libdlogutil prefix filter works correctly (1/2)"
 test_libdlogutil prefix_correct $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
 LOG_DETAILS="testing if libdlogutil prefix filter works correctly (2/2)"
 test_libdlogutil prefix_wrong $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
-LOG_DETAILS="testing if libdlogutil returns the correct buffer traits"
-test_libdlogutil traits $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
-LOG_DETAILS="testing if libdlogutil aliasing works"
-if [ "$type" = "pipe" ]; then
-       test_libdlogutil alias $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
-else
-       DLOG_CONFIG_PATH="@datadir@/dlog-logger.conf.alias" test_libdlogutil alias $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
+if [ "$type" != "zero-copy" ]; then # These rely on things not available in zero-copy
+       LOG_DETAILS="testing if libdlogutil returns the correct buffer traits"
+       test_libdlogutil traits $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
+       LOG_DETAILS="testing if libdlogutil aliasing works"
+       if [ "$type" = "pipe" ]; then
+               test_libdlogutil alias $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
+       else
+               DLOG_CONFIG_PATH="@datadir@/dlog-logger.conf.alias" test_libdlogutil alias $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
+       fi
 fi
 LOG_DETAILS="testing if libdlogutil errors out correctly if used improperly"
 test_libdlogutil negative $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
 
-cmd_prefix="dlogutil -t 1 -u 0 -v"
+cmd_prefix_no_v="dlogutil -t 1 -u 0"
+cmd_prefix="$cmd_prefix_no_v -v"
 
 format="process"
 regex_prio="[VDIWEFS]{1}"
@@ -544,8 +568,8 @@ for PARAM in always auto none never; do
                        fi
 
                        # $(eval) is needed since `$COMMAND` may contain `"`
-                       line=$(eval $COMMAND | tr '\033\n' '~@')
-                       [[ $(echo "$line" | sed -re "$REGEX") == "1" ]] && ok || fail
+                       line="$(eval "$COMMAND" | tr '\033\n' '~@')"
+                       [ "$(echo "$line" | sed -re "$REGEX")" = "1" ] && ok || fail
                done
        done
 done
@@ -603,7 +627,7 @@ format="long"
 REGEX="s/^\[\s{1}$regex_time.[0-9]{3,}\s{1}$regex_prio\/[[:print:]]{8,}\s{1}$regex_pidtid\]@[[:print:]]+@$/1/g"
 LOG_DETAILS="testing if \"$format\" print format works"
 line=$($cmd_prefix $format)
-[[ $(echo "$line" | tr '\n' '@' | sed -re "$REGEX") == "1" ]] && ok || fail
+[ "$(echo "$line" | tr '\n' '@' | sed -re "$REGEX")" = "1" ] && ok || fail
 
 format="brief"
 REGEX="s/^$regex_prio\/[[:print:]]{8,}\([0-9[:space:]]{5,}\):\s{1}[[:print:]]*$/1/g"
@@ -613,14 +637,34 @@ line=$($cmd_prefix $format)
 
 format="json"
 if [ "$type" = "pipe" ]; then
-       REGEX="s/^\{\"priority\":\"(verbose|debug|info|warning|error|fatal|silent)\",\"pid\":[1-9][0-9]*,\"tid\":[1-9][0-9]*,\"recv_real\":\"[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$regex_timezone\",\"recv_mono\":[1-9][0-9]+\.[0-9]{9},\"sent_real\":\"[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$regex_timezone\",\"sent_mono\":[1-9][0-9]+\.[0-9]{9},\"tag\":\"[[:print:]]*\",\"msg\":\"[[:print:]]*\"\}$/1/g"
-else
-       REGEX="s/^\{\"priority\":\"(verbose|debug|info|warning|error|fatal|silent)\",\"pid\":[1-9][0-9]*,\"tid\":[1-9][0-9]*,\"sent_real\":\"[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$regex_timezone\",\"tag\":\"[[:print:]]*\",\"msg\":\"[[:print:]]*\"\}$/1/g"
+       REGEX="s/^\{\"priority\":\"(verbose|debug|info|warning|error|fatal|silent)\",\"pid\":[1-9][0-9]*,\"tid\":[1-9][0-9]*,\"recv_real\":\"[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$regex_timezone\",\"recv_real_ns\":[1-9][0-9]*,\"recv_mono\":[1-9][0-9]+\.[0-9]{9},\"sent_real\":\"[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$regex_timezone\",\"sent_real_ns\":[1-9][0-9]*,\"sent_mono\":[1-9][0-9]+\.[0-9]{9},\"tag\":\"[[:print:]]*\",\"msg\":\"[[:print:]]*\"\}$/1/g"
+elif [ "$type" = "logger" ]; then
+       REGEX="s/^\{\"priority\":\"(verbose|debug|info|warning|error|fatal|silent)\",\"pid\":[1-9][0-9]*,\"tid\":[1-9][0-9]*,\"sent_real\":\"[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$regex_timezone\",\"sent_real_ns\":[1-9][0-9]*,\"tag\":\"[[:print:]]*\",\"msg\":\"[[:print:]]*\"\}$/1/g"
+else # zero-copy
+       REGEX="s/^\{\"priority\":\"(verbose|debug|info|warning|error|fatal|silent)\",\"pid\":[1-9][0-9]*,\"tid\":[1-9][0-9]*,\"sent_mono\":[1-9][0-9]+\.[0-9]{9},\"tag\":\"[[:print:]]*\",\"msg\":\"[[:print:]]*\"\}$/1/g"
 fi
 LOG_DETAILS="testing if \"$format\" print format works"
 line=$($cmd_prefix $format)
 [ "$(echo "$line" | sed -re "$REGEX")" = "1" ] && ok || fail
 
+SOURCE="$DLOG_CONFIG_PATH"
+DLOG_CONFIG_PATH="$TESTDIR/defaultprintformat.conf"
+cp "$SOURCE" "$DLOG_CONFIG_PATH"
+
+# TODO: It would be good to also test the daemon side of things.
+LOG_DETAILS="testing default log format selection (none -> brief)"
+REGEX="s/^$regex_prio\/[[:print:]]{8,}\([0-9[:space:]]{5,}\):\s{1}[[:print:]]*$/1/g"
+line=$($cmd_prefix_no_v)
+[ "$(echo "$line" | sed -re "$REGEX")" = "1" ] && ok || fail
+
+echo "util_default_format=rwtime" >> $DLOG_CONFIG_PATH
+LOG_DETAILS="testing default log format selection (rwtime)"
+REGEX="s/^$regex_time\s{1}\[[0-9[:space:]]{3,}.[0-9[:space:]]{3,}\]\s{1}$regex_prio\/[[:print:]]{8,}\($regex_pidtid\):\s{1}[[:print:]]*$/1/g"
+line=$($cmd_prefix_no_v)
+[ "$(echo "$line" | sed -re "$REGEX")" = "1" ] && ok || fail
+
+DLOG_CONFIG_PATH="$SOURCE"
+
 format="raw"
 LOG_DETAILS="testing if \"$format\" print format works"
 dlogutil -c
@@ -646,7 +690,7 @@ if [ "$type" = "pipe" ]; then
                        log=$(printf '%0.s&' $(seq 1 $i)) # Print the '&' character $i times
 
                        dlogutil -c
-                       dlogsend -b main $log
+                       dlogsend -b main "$log"
                        line=$($cmd_prefix $format | tr '\n' '@')
 
                        case $format in
@@ -666,16 +710,20 @@ if [ "$type" = "pipe" ]; then
        done
 fi
 
-LOG_DETAILS="testing if KMSG works in the default format"
-# We check if the command returns at least 100 logs. This seems to be a safe value.
-# Feel free to change it to a reasonable yet lower value if the test happens to fail otherwise.
-[ "$(dlogutil -db kmsg | wc -l)" -gt 100 ] && ok || fail
+if [ "$type" != "zero-copy" ]; then # No KMSG in zero-copy
+       LOG_DETAILS="testing if KMSG works in the default format"
+       # We check if the command returns at least 100 logs. This seems to be a safe value.
+       # Feel free to change it to a reasonable yet lower value if the test happens to fail otherwise.
+       [ "$(dlogutil -db kmsg | wc -l)" -gt 100 ] && ok || fail
+fi
 
 if [ "$quick" -ne 1 ]; then
-       LOG_DETAILS="testing if KMSG works in the raw format"
-       last_dmesg=$(dmesg | tail -n1 | sed -re "s/^\[[ 0-9]{5,}\.[0-9]{6}\] (.*)$/\1/g")
-       sleep 1 # To make sure dlog has already parsed the log
-       dlogutil -db kmsg -v raw | grep -Fm1 "$last_dmesg" >/dev/null && ok || fail
+       if [ "$type" != "zero-copy" ]; then # No KMSG in zero-copy
+               LOG_DETAILS="testing if KMSG works in the raw format"
+               last_dmesg=$(dmesg | tail -n1 | sed -re "s/^\[[ 0-9]{5,}\.[0-9]{6}\] (.*)$/\1/g")
+               sleep 1 # To make sure dlog has already parsed the log
+               dlogutil -db kmsg -v raw | grep -Fm1 "$last_dmesg" >/dev/null && ok || fail
+       fi
 
        LOG_DETAILS="testing if pid filtering works"
        dlogsend -b main -t DLOG_TESTSUITE pidTEST &
@@ -734,14 +782,19 @@ LOG_DETAILS="testing if tag filtering works (7/8)"
 LOG_DETAILS="testing if tag filtering works (8/8)"
 [ "$(dlogutil -dv raw 'DLOG_TESTSUITE_SAMSUNG*' | wc -l)" -eq 0 ] && ok || fail
 
-if [ "$TEST_DYNAMIC_FILTERS" = "true" ]; then
+if [ "$type" != "zero-copy" ]; then # No dynamic filters in zero-copy
        LOG_DETAILS="testing if limiter and runtime filtering works"
        dlogutil -c -b radio
        test_filters
        [ "$(dlogutil -d -b radio | wc -l)" -eq 12 ] && ok || fail
+       dlogutil -c -b radio
 
        LOG_DETAILS="testing proper SMACK label for dynamic config file location"
-       ORIG_FILTERS_DIR=$(cat "$ORIGINAL_CONFIG_PATH" | grep dynamic_config_path | awk -F "=" '{print $2}')
+       ORIG_FILTERS_DIR=$(grep dynamic_config_path "$ORIGINAL_CONFIG_PATH" | awk -F "=" '{print $2}')
+       # Running ls on an arbitrary directory and trying to make sense of results is problematic.
+       # However, this is not a problem in our usecase, as we only care about the first field, the security context.
+       # We don't even care about the filename, which isn't arbitrary anyway (-d on fixed path).
+       # shellcheck disable=SC2012
        [ "$(ls -dZ "$ORIG_FILTERS_DIR" | awk -F ' ' '{print $1}')" = "System::Shared" ] && ok || fail
 
        if [ "$quick" -ne 1 ]; then
@@ -807,20 +860,14 @@ if [ "$TEST_DYNAMIC_FILTERS" = "true" ]; then
                LOG_DETAILS="testing if PID limiting works (14/14)"
                [ "$(dlogutil --pid $DLOGSEND_PID -d | grep -c  blocked)" -eq 3 ] && ok || fail
 
-               # TODO: HACK ALERT!
-               # The following QoS tests make perfect sense for the pipe backend, since we kill the already
-               # existing dlog_logger and then start the new one, configured with QoS. However, on the logger
-               # backend this is impossible, as dlog_test uses the global service started by systemd then.
-               # This means that we have to just launch the second instance and hope nothing breaks.
-               # This can be improved by not using the global service in the logger backend, and by having it
-               # completely disabled in the config file -- this way, the tests would be completely uniform.
                PREQOS_CONFIG_PATH=$DLOG_CONFIG_PATH
                DLOG_CONFIG_PATH="@datadir@/dlog-$type.conf.qos"
-               if [ "$type" = "pipe" ]; then
-                       kill $LOGGER > /dev/null
-                       sleep 1
+               kill $LOGGER > /dev/null
+               sleep 1
+               if [ "$type" = "logger" ]; then
+                       dlogutil -cb main
                fi
-               dlog_logger &
+               dlog_logger -t 0 &
                LOGGER=$!
                sleep 1
 
@@ -832,19 +879,19 @@ if [ "$TEST_DYNAMIC_FILTERS" = "true" ]; then
                if [ "$type" = "logger" ]; then
                        dlogutil -cb main
                fi
-               dlog_logger &
+               dlog_logger -t 0 &
                LOGGER=$!
                sleep 1
 
                dlogsend -b main -t DLOG_QOS_TEST1 -c 300 -d 1 -f 20 "Some log spam"
                LOG_DETAILS="testing if QoS works (2/4)"
-               [ "$(dlogutil -d DLOG_QOS_TEST1 | grep -cv blocked)" -le 180 ] && ok || fail
+               [ "$(dlogutil -d DLOG_QOS_TEST1 | grep -cv blocked)" -le 210 ] && ok || fail
                kill $LOGGER > /dev/null
                sleep 1
                if [ "$type" = "logger" ]; then
                        dlogutil -cb main
                fi
-               dlog_logger &
+               dlog_logger -t 0 &
                LOGGER=$!
                sleep 1
 
@@ -853,42 +900,341 @@ if [ "$TEST_DYNAMIC_FILTERS" = "true" ]; then
                dlogsend -b main -t DLOG_QOS_TEST3 -c 270 -d 1 -f 18 "Some log spam"
                wait $DLOGSEND_PID
                LOG_DETAILS="testing if QoS works (3/4)"
-               [ "$(dlogutil -d DLOG_QOS_TEST2 DLOG_QOS_TEST3 | grep -cv blocked)" -le 180 ] && ok || fail
+               [ "$(dlogutil -d DLOG_QOS_TEST2 DLOG_QOS_TEST3 | grep -cv blocked)" -le 210 ] && ok || fail
                LOG_DETAILS="testing if QoS works (4/4)"
                [ "$(dlogutil -d DLOG_QOS_TEST2 | grep -cv blocked)" -gt 24 ] && ok || fail
 
                DLOG_CONFIG_PATH=$PREQOS_CONFIG_PATH
                kill $LOGGER > /dev/null
                sleep 1
-               if [ "$type" = "pipe" ]; then
-                       dlog_logger -b 99 -t 0 &
-                       LOGGER=$!
-                       sleep 1
-               else
-                       LOGGER=-1
-               fi
+               dlog_logger -t 0 &
+               LOGGER=$!
+               sleep 1
+
+               # limiter test (the feature allows to enable/disable particular log type)
+               dlogsend -c 11 -d 1 -t QWE blabla &
+
+               sleep 0.5
+               dlogctl -t QWE -s deny
+               LOG_DETAILS="testing if log limiter works (deny) (1/3)"
+               [ "$(dlogutil -d QWE | wc -l)" -eq 1 ] && ok || fail
+               sleep 6
+               LOG_DETAILS="testing if log limiter works (deny) (2/3)"
+               [ "$(dlogutil -d QWE | wc -l)" -eq 1 ] && ok || fail
+
+               dlogctl -t QWE -s allow
+               sleep 4
+               LOG_DETAILS="testing if log limiter works (allow) (3/3)"
+               [ "$(dlogutil -d QWE | wc -l)" -eq 5 ] && ok || fail
+
+               dlogutil -c
+       fi
+fi
+
+if [ "$LEGACY_LOGGER" -ne 1 ] && [ "$quick" -ne 1 ]; then
+       dlogutil -cb main
+
+       LOG_DETAILS="testing if basic stdout redirection works correctly (1/2)"
+       [ "$(dlog_redirect_stdout --outtag FOO -- /usr/bin/echo Hi)" = "" ] && ok || fail
+       sleep 1
+       LOG_DETAILS="testing if basic stdout redirection works correctly (2/2)"
+       [ "$(dlogutil -db main -v tag)" = "I/FOO     : Hi" ] && ok || fail
+       dlogutil -cb main
+
+       # No need to check output in this case, as nothing is written to stdout anyway
+       dlog_redirect_stdout --errtag BAR -- /usr/bin/sh -c "echo Hi >&2"
+       sleep 1
+       LOG_DETAILS="testing if basic stderr redirection works correctly"
+       [ "$(dlogutil -db main -v tag)" = "E/BAR     : Hi" ] && ok || fail
+       dlogutil -cb main
+
+       LOG_DETAILS="testing if redirector doesn't redirect anything by default (1/2)"
+       [ "$(dlog_redirect_stdout -- /usr/bin/echo Hi)" = "Hi" ] && ok || fail
+       sleep 1
+       LOG_DETAILS="testing if redirector doesn't redirect anything by default (2/2)"
+       [ "$(dlogutil -db main -v tag)" = "" ] && ok || fail
+       dlogutil -cb main
+
+       if [ "$type" != "zero-copy" ]; then # No buffers in zero-copy
+               dlog_redirect_stdout --outbuffer radio --outtag AN_INTERESTING_TAG --outprio W -- /usr/bin/echo Hi
+               sleep 1
+               LOG_DETAILS="testing if redirector settings work correctly on stdout (1/2)"
+               [ "$(dlogutil -db main -v tag)" = "" ] && ok || fail
+               LOG_DETAILS="testing if redirector settings work correctly on stdout (2/2)"
+               [ "$(dlogutil -db radio -v tag)" = "W/AN_INTERESTING_TAG: Hi" ] && ok || fail
+               dlogutil -cb radio
+
+               dlog_redirect_stdout --errbuffer radio --errtag ANOTHER_INTERESTING_TAG --errprio I -- /usr/bin/sh -c "echo Hi >&2"
+               sleep 1
+               LOG_DETAILS="testing if redirector settings work correctly on stderr (1/2)"
+               [ "$(dlogutil -db main -v tag)" = "" ] && ok || fail
+               LOG_DETAILS="testing if redirector settings work correctly on stderr (2/2)"
+               [ "$(dlogutil -db radio -v tag)" = "I/ANOTHER_INTERESTING_TAG: Hi" ] && ok || fail
+               dlogutil -cb radio
+       fi
+
+       echo "Testing" | dlog_redirect_stdout --outtag BAZ -- /usr/bin/cat
+       sleep 1
+       LOG_DETAILS="testing if redirector passes stdin correctly"
+       [ "$(dlogutil -db main -v tag)" = "I/BAZ     : Testing" ] && ok || fail
+       dlogutil -cb main
+
+       dlog_redirect_stdout --outtag QUUX -- /usr/bin/cat << EOF
+line 1
+line 2
+line 3
+line 4
+line 5
+EOF
+       sleep 1
+       LOG_DETAILS="testing if multiline logs are handled correctly"
+       [ "$(dlogutil -db main | wc -l)" -eq 5 ] && ok || fail
+       dlogutil -cb main
+
+       dlog_redirect_stdout --outtag QUUX -- /usr/bin/sh -c "printf \"line 1\0line 2\0line 3\0line 4\0line 5\""
+       sleep 1
+       LOG_DETAILS="testing if logs with the '\\0' character are handled correctly"
+       [ "$(dlogutil -db main | wc -l)" -eq 5 ] && ok || fail
+       dlogutil -cb main
+
+       dlog_redirect_stdout --outtag QUUX -- /usr/bin/sh -c "printf \"line 1\0line 2\nline 3\0line 4\nline 5\""
+       sleep 1
+       LOG_DETAILS="testing if logs with mixed delimiters are handled correctly"
+       [ "$(dlogutil -db main | wc -l)" -eq 5 ] && ok || fail
+       dlogutil -cb main
+
+       rm -f "$TESTDIR"/input
+       rm -f "$TESTDIR"/output
+       base64 -w 0 < /dev/urandom 2> /dev/null | head -c 250000 > "$TESTDIR"/input
+       dlog_redirect_stdout --outtag XYZZY -- /usr/bin/cat "$TESTDIR"/input
+       sleep 1
+       dlogutil -db main -v raw | tr -d '\n' > "$TESTDIR"/output
+       LOG_DETAILS="testing if long lines are handled correctly"
+       # Usually we would just diff or cmp the files. Unfortunately, as of writing, Tizen doesn't have such luxuries.
+       [ "$(sha256sum < "$TESTDIR"/input)" = "$(sha256sum < "$TESTDIR"/output)" ] && ok || fail
+       dlogutil -cb main
+
+       if [ "$type" = "pipe" ]; then
+               # TODO: Actually implement and enable this in the logger backend
+               dlogctl -b main --disable-stdout
+               LOG_DETAILS="testing if redirection can be disabled (1/3)"
+               [ "$(dlog_redirect_stdout --outtag THETAG -- /usr/bin/echo test)" = "" ] && ok || fail
+               sleep 1
+               LOG_DETAILS="testing if redirection can be disabled (2/3)"
+               [ "$(dlogutil -db main -v raw)" = "" ] && ok || fail
+               LOG_DETAILS="testing if redirection can be disabled (3/3)"
+               [ "$(dlogctl --get | grep 'main (regular)')" = "* main (regular): ENABLED" ] && ok || fail
+
+               dlogctl -b main --enable-stdout
+               LOG_DETAILS="testing if redirection can be reenabled (1/3)"
+               [ "$(dlog_redirect_stdout --outtag THETAG -- /usr/bin/echo test)" = "" ] && ok || fail
+               sleep 1
+               LOG_DETAILS="testing if redirection can be reenabled (2/3)"
+               [ "$(dlogutil -db main -v raw)" = "test" ] && ok || fail
+               LOG_DETAILS="testing if redirection can be reenabled (3/3)"
+               [ "$(dlogctl --get | grep 'main (regular)')" = "* main (regular): ENABLED" ] && ok || fail
+               dlogutil -cb main
+       fi
+
+       if [ "$type" != "zero-copy" ]; then # No buffers in zero-copy
+               dlogctl -b radio --disable-stdout
+               dlog_redirect_stdout --outtag THETAG -- /usr/bin/echo test
+               sleep 1
+               LOG_DETAILS="testing if dlogctl --disable-stdout respects buffer choice"
+               [ "$(dlogutil -db main -v raw)" = "test" ] && ok || fail
+               dlogutil -cb main
        fi
+
+       LOG_DETAILS="testing if redirection check works (1/5)"
+       test_libredirect 0 0 && ok || fail
+       LOG_DETAILS="testing if redirection check works (2/5)"
+       dlog_redirect_stdout -- /usr/libexec/libdlog/test_libredirect 0 0 && ok || fail
+       LOG_DETAILS="testing if redirection check works (3/5)"
+       dlog_redirect_stdout --outtag X -- /usr/libexec/libdlog/test_libredirect 1 0 && ok || fail
+       LOG_DETAILS="testing if redirection check works (4/5)"
+       dlog_redirect_stdout --errtag X -- /usr/libexec/libdlog/test_libredirect 0 1 && ok || fail
+       LOG_DETAILS="testing if redirection check works (5/5)"
+       dlog_redirect_stdout --outtag X --errtag Y -- /usr/libexec/libdlog/test_libredirect 1 1 && ok || fail
+
+       if [ "$type" != "zero-copy" ]; then # No buffers in zero-copy
+               LOG_DETAILS="testing if multiple redirections work (1/4)"
+               test_libredirect_multi && ok || fail
+               LOG_DETAILS="testing if multiple redirections work (2/4)"
+               [ "$(dlogutil -db main -v tag | grep "Message 1")" = "W/TAG1    : Message 1" ] && ok || fail
+               LOG_DETAILS="testing if multiple redirections work (3/4)"
+               [ "$(dlogutil -db main -v tag | grep "Message 2")" = "E/TAG2    : Message 2" ] && ok || fail
+               LOG_DETAILS="testing if multiple redirections work (4/4)"
+               [ "$(dlogutil -db system -v tag)" = "I/TAG3    : Message 3" ] && ok || fail
+               dlogutil -cb main -b system
+       fi
+fi
+
+if [ "$type" != "zero-copy" ]; then # No dynamic filters in zero-copy
+       dlogutil -c
+       echo "deduplicate_method=only_identical_neighbours" > "$RUNTIME_FILTERS_DIR/30-deduplicate.conf"
+       echo "deduplicate_interval_ms=10" >> "$RUNTIME_FILTERS_DIR/30-deduplicate.conf"
+
+       dlogsend -p Info -b main -c 9 -t DLOG_DEDUP_TEST "Basic deduplication, default warn_quantity"
+       LOG_DETAILS="testing if deduplication with warnings works properly (1/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'Basic deduplication, default warn_quantity')" -eq 1 ] && ok || fail
+       LOG_DETAILS="testing if deduplication with warnings works properly (2/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'Basic deduplication, default warn_quantity LOG DUPLICATED')" -eq 0 ] && ok || fail
+
+       dlogsend -p Info -b main -c 12 -t DLOG_DEDUP_TEST "Basic deduplication, default warn_quantity"
+       LOG_DETAILS="testing if deduplication with warnings works properly (3/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'Basic deduplication, default warn_quantity')" -eq 3 ] && ok || fail
+       LOG_DETAILS="testing if deduplication with warnings works properly (4/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'Basic deduplication, default warn_quantity LOG DUPLICATED')" -eq 1 ] && ok || fail
+
+       echo "deduplicate_warn_quantity=8" >> "$RUNTIME_FILTERS_DIR/30-deduplicate.conf"
+
+       dlogsend -p Info -b main -c 24 -t DLOG_DEDUP_TEST Message
+       LOG_DETAILS="testing if deduplication with warnings works properly (5/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c Message)" -eq 4 ] && ok || fail
+       LOG_DETAILS="testing if deduplication with warnings works properly (6/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'Message LOG DUPLICATED')" -eq 3 ] && ok || fail
+
+       dlogsend -p Info -b main -c 8 -t DLOG_DEDUP_TEST longerMessage
+       LOG_DETAILS="testing if deduplication with warnings works properly (7/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c longerMessage)" -eq 2 ] && ok || fail
+       LOG_DETAILS="testing if deduplication with warnings works properly (8/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c Message)" -eq 6 ] && ok || fail
+       LOG_DETAILS="testing if deduplication with warnings works properly (9/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'longerMessage LOG DUPLICATED')" -eq 1 ] && ok || fail
+
+       echo "deduplicate_warn_quantity=-1" >> "$RUNTIME_FILTERS_DIR/30-deduplicate.conf"
+
+       dlogsend -p Info -b main -c 12 -t DLOG_DEDUP_TEST "Basic deduplication, no warning"
+       LOG_DETAILS="testing if deduplication with warnings works properly (10/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'Basic deduplication, no warning')" -eq 1 ] && ok || fail
+       LOG_DETAILS="testing if deduplication with warnings works properly (11/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'Basic deduplication')" -eq 4 ] && ok || fail
+       LOG_DETAILS="testing if deduplication with warnings works properly (12/12)"
+       [ "$(dlogutil -d DLOG_DEDUP_TEST | grep -c 'Basic deduplication, no warning LOG DUPLICATED')" -eq 0 ] && ok || fail
+
+       rm "$RUNTIME_FILTERS_DIR/30-deduplicate.conf"
 fi
 
 LOG_DETAILS="testing if libdlogutil clears the buffer correctly"
+sleep 1 # make sure the earlier logs are handled so that they don't end up handled after the clear
 test_libdlogutil clear $LIBDLOGUTIL_CORRECT_PID $type && ok || fail
 
+if [ "$(date +%Y)" -le 2000 ]; then
+       # This implies that the date isn't set. Let's set it to some date to better test timestamps.
+       date -s "@2121212121" > /dev/null
+fi
+dlogsend -b main -t DLOG_TS_TEST "The future is now, old man"
+LOG_DETAILS="testing if the timestamps are correct"
+test_verifytime && ok || fail
+
+DLOG_PREV_PATH=$DLOG_CONFIG_PATH
+
+LOG_DETAILS="testing if config has control over redirecting to stdout (1/3)"
+DLOG_CONFIG_PATH="@datadir@/dlog-$type.conf.stdout_enable.1"
+
+test_config_redirect 1 1 1 1 && ok || fail
+
+LOG_DETAILS="testing if config has control over redirecting to stdout (2/3)"
+DLOG_CONFIG_PATH="@datadir@/dlog-$type.conf.stdout_enable.2"
+test_config_redirect 0 0 1 1 && ok || fail
+
+LOG_DETAILS="testing if config has control over redirecting to stdout (3/3)"
+DLOG_CONFIG_PATH="@datadir@/dlog-$type.conf.stdout_enable.3"
+test_config_redirect 1 1 0 0 && ok || fail
+
+DLOG_CONFIG_PATH=$DLOG_PREV_PATH
+
 if [ "$quick" -ne 1 ]; then
-       if [ "$type" = "pipe" ]; then
+       if [ "$type" != "zero-copy" ]; then # Backend autodection and logger daemon stuff don't really work on zero-copy
+               PREAUTODETECT_CONFIG_PATH=$DLOG_CONFIG_PATH
+               DLOG_CONFIG_PATH="@datadir@/dlog-$type.conf.autodetect"
+               kill $LOGGER > /dev/null
+               sleep 1
+               if [ "$type" = "logger" ]; then
+                       dlogutil -cb main
+               fi
+               dlog_logger -t 0 &
+               LOGGER=$!
+               sleep 1
+
+               LOG_DETAILS="testing if backend autodetection works properly (1/2)"
+               dlogsend -b main -t DLOG_AUTODETECT "xd" && ok || fail
+               sleep 1
+
+               DLOG_CONFIG_PATH=$PREAUTODETECT_CONFIG_PATH
+               LOG_DETAILS="testing if backend autodetection works properly (2/2)"
+               [ "$(dlogutil -db main -v raw)" = "xd" ] && ok || fail
+
+               kill $LOGGER > /dev/null
+               sleep 1
+               rm "$TESTDIR"/test*
+               dlog_logger -t 0 &
+               LOGGER=$!
+               sleep 1
+
                dlogsend -b main -t DLOG_LOGGER_TEST0 -c 100 "hi"
                sleep 1
-               LOG_DETAILS="testing if logger daemon persistent logging works"
-               [ "$(grep -c DLOG_LOGGER_TEST0 "$TESTDIR"/main)" -eq 100 ] && ok || fail
+               LOG_DETAILS="testing if logger daemon persistent logging works (1/3)"
+               [ "$(grep -c DLOG_LOGGER_TEST0 "$TESTDIR"/test0)" -eq 100 ] && ok || fail
+               LOG_DETAILS="testing if logger daemon persistent logging works (2/3)"
+               [ "$(grep -c DLOG_LOGGER_TEST0 "$TESTDIR"/test1)" -eq 100 ] && ok || fail
+               LOG_DETAILS="testing if logger daemon persistent logging works (3/3)"
+               [ "$(grep -c DLOG_LOGGER_TEST0 "$TESTDIR"/test2)" -eq 0 ] && ok || fail
 
                dlogsend -b main -t DLOG_LOGGER_TEST1 -c 500000 "hi"
                sleep 1
-               RESULT=$(du -c "$TESTDIR"/main* | tail -n 1 | cut -f 1)
+               RESULT=$(du -c "$TESTDIR"/test0* | tail -n 1 | cut -f 1)
                LOG_DETAILS="testing if logger daemon log rotating works (1/2)"
                [ "$RESULT" -gt 4096 ] && ok || fail # Min 4 MB
                LOG_DETAILS="testing if logger daemon log rotating works (2/2)"
                [ "$RESULT" -lt 6144 ] && ok || fail # Max 6 MB
 
                dlogutil -cb main
+               kill $LOGGER > /dev/null
+               sleep 1
+               rm "$TESTDIR"/test0*
+               dlog_logger -t 5 -b 100000 &
+               LOGGER=$!
+               sleep 1
+
+               dlogsend -b main -t DLOG_LOGGER_TEST2 -c 100 "hi"
+               sleep 1
+               LOG_DETAILS="testing if logger daemon buffering works (1/5)"
+               [ "$(grep -c DLOG_LOGGER_TEST2 "$TESTDIR"/test0)" -eq 0 ] && ok || fail
+
+               sleep 6
+               LOG_DETAILS="testing if logger daemon buffering works (2/5)"
+               [ "$(grep -c DLOG_LOGGER_TEST2 "$TESTDIR"/test0)" -eq 100 ] && ok || fail
+
+               dlogsend -b main -t DLOG_LOGGER_TEST3 -c 100 "hi"
+               sleep 1
+               LOG_DETAILS="testing if logger daemon buffering works (3/5)"
+               [ "$(grep -c DLOG_LOGGER_TEST3 "$TESTDIR"/test0)" -eq 0 ] && ok || fail
+
+               sleep 1
+               kill $LOGGER > /dev/null
+               LOGGER=-1
+               sleep 1
+               LOG_DETAILS="testing if logger daemon buffering works (4/5)"
+               [ "$(grep -c DLOG_LOGGER_TEST3 "$TESTDIR"/test0)" -eq 100 ] && ok || fail
+
+               dlogutil -cb main
+
+               dlog_logger -t 10000 -b 100 &
+               LOGGER=$!
+               sleep 1
+
+               dlogsend -b main -t DLOG_LOGGER_TEST4 -c 100 "hi"
+               sleep 1
+               LOG_DETAILS="testing if logger daemon buffering works (5/5)"
+               [ "$(grep -c DLOG_LOGGER_TEST4 "$TESTDIR"/test0)" -gt 90 ] && ok || fail
+
+               dlogutil -cb main
+               kill $LOGGER > /dev/null
+               sleep 1
+               dlog_logger -t 0 &
+               LOGGER=$!
+               sleep 1
        fi
 
        LOG_DETAILS="testing if the library works with multithreaded app"
@@ -912,7 +1258,7 @@ if [ "$quick" -ne 1 ]; then
        (
                for i in $(seq 1 $SPAWN_CNT); do
                        delay=$(shuf -i 1-5 -n 1)
-                       ( sleep $delay && dlogsend -b main -t DLOG_TESTSUITE $delay ) &
+                       ( sleep "$delay" && dlogsend -b main -t DLOG_TESTSUITE "$delay" ) &
                done
                wait
        )
@@ -932,7 +1278,7 @@ if [ "$quick" -ne 1 ]; then
                        LOG_DETAILS="testing if dlogutil --sort-by sorts correctly (${P}_mono)"
                        dlogutil -db main --sort-by "${P}_mono" -v json | sed -Ee "s/^.*\"${P}_mono\":([^,}]*).*\$/\\1/" | sort -c && ok || fail
                        LOG_DETAILS="testing if dlogutil --sort-by sorts correctly (${P}_real)"
-                       dlogutil -db main --sort-by "${P}_real" -v json | sed -Ee "s/^.*\"${P}_real\":\"([^\"]*)\".*\$/\\1/" | sort -c && ok || fail
+                       dlogutil -db main --sort-by "${P}_real" -v json | sed -Ee "s/^.*\"${P}_real\":\"([^\"]*)\",\"${P}_real_ns\":([^,}]*).*\$/\\1 \2/" | sort -c -k1,1 -k2,2g && ok || fail
                done
        fi
 
@@ -942,9 +1288,8 @@ if [ "$quick" -ne 1 ]; then
                LOG_DETAILS="testing if sorting by timestamp from random sources on heavy load works ($format format)"
 
                # collect data and analyze timestamps
-               dlogutil -b main -d -v $format | (
+               dlogutil -b main -d -v "$format" | (
                        prev_ts=0
-                       unsorted=""
                        prev_line=""
 
                        while read -r line; do
@@ -960,17 +1305,51 @@ if [ "$quick" -ne 1 ]; then
                                if [ "$ts" -ge "$prev_ts" ]; then
                                        prev_ts=$ts
                                else
-                                       printf -v unsorted '%s\n\n%s\n%s' "$unsorted" "$prev_line" "$line"
-                                       break
+                                       printf "%s\n%s\n\n" "$prev_line" "$line" || break
                                fi
                                prev_line=$line
                        done
+               ) | grep -q ^ && fail || ok
 
-                       [ -z "$unsorted" ] && ok || fail
-               )
        done
 fi
 
+if [ "$type" = "pipe" ]; then
+       kill $LOGGER > /dev/null
+       sleep 1
+
+       PRERESIZE_CONFIG_PATH="$DLOG_CONFIG_PATH"
+       DLOG_CONFIG_PATH="@datadir@/dlog-$type.conf.compress"
+
+       RUNTIME_FILTERS_DIR="/tmp/dlog-filters/"
+       mkdir -m 777 -p "$RUNTIME_FILTERS_DIR"
+
+       dlog_logger -t 0 &
+       LOGGER=$!
+       sleep 1
+
+       dlogsend -b main -c 9999 resizetestblalbl &
+       sleep 4
+       LOG_DETAILS="testing if compression-resize works (1/3)"
+       [ "$(dlogutil -d -m xyz123 | wc -l)" -ge 1 ] && ok || fail
+
+       dlogctl --compression-name xyz123 --compression-resize 1
+       sleep 5
+       LOG_DETAILS="testing if compression-resize works (2/3)"
+       [ "$(dlogutil -d -m xyz123 | wc -l)" -eq 0 ] && ok || fail
+
+       dlogctl --compression-name xyz123 --compression-resize 200000
+       dlogsend -b main -c 9999 resizetestblalbl &
+       sleep 4
+       LOG_DETAILS="testing if compression-resize works (3/3)"
+       [ "$(dlogutil -d -m xyz123 | wc -l)" -ge 1 ] && ok || fail
+
+       dlogutil -c
+       kill $LOGGER > /dev/null
+       DLOG_CONFIG_PATH=$PRERESIZE_CONFIG_PATH
+       rm -rf $RUNTIME_FILTERS_DIR
+fi
+
 # show results, clean up and return an exit code
 
 echo "$OKS / $TOTAL tests passed"
@@ -980,6 +1359,10 @@ if [ "$quick" -eq 1 ]; then
        echo "WARNING: quick mode!"
        echo "About 20% slowest running tests are disabled. Some functionality might be untested."
        echo "Rerun without '--quick' to run all tests."
+elif [ "$LEGACY_LOGGER" -eq 1 ]; then
+       echo "WARNING: legacy logger module!"
+       echo "Some functionality is untested."
+       echo "Rerun on a device with the out-of-tree logger module to run all tests."
 fi
 
 [ "$FAILS" -eq 0 ]