aboutsummaryrefslogtreecommitdiffstats
path: root/common/scripts/service-ids-check.sh
blob: f1fbef1607cf086487f7bac2ddb6a6511f940d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash
#-----------------------------------------------------
# This scripts allows to check the ids (user and/or group)
# of running services.
# It doesn't check that the service runs because this is
# the object of other tests.
# If a process doesn't run it emits an unknown status for
# the service, but not a fail.
# When there are multiple instance of a service, it checks
# that at least one instance matches expectation.
# Author: jose.bollo@iot.bzh
#-----------------------------------------------------

# out of LAVA run
if ! type lava-test-case 2>/dev/null; then
	lava-test-case() { echo "lava-test-case $*"; }
fi
if ! type lava-test-set 2>/dev/null; then
	lava-test-set() { echo "lava-test-set $*"; }
fi

# extraction of numeric ids for user and group
get-id() {
	local id="$1" file="$2"
	if grep -q "^${id}:" "$file"; then
		grep "^${id}:" "$file" | cut -d: -f3
	else
		echo -n "$id"
	fi
}
get-uid() { get-id "$1" /etc/passwd; }
get-gid() { get-id "$1" /etc/group; }

# extraction of numeric effective ids of processes
get-p-id() {
	local pid="$1" field="$2"
	grep "$field" "/proc/$pid/status" | cut -f3
}
get-p-uid() { get-p-id "$1" "Uid:"; }
get-p-gid() { get-p-id "$1" "Gid:"; }

# check the process status
check-p-ids() {
	local pid="$1" uid="$2" gid="$3"
	local u=$(get-p-uid "$pid")
	local g=$(get-p-gid "$pid")
	[[ -z "$uid" || "$uid" -eq "$u" ]] && [[ -z "$gid" || "$gid" -eq "$g" ]]
}
check-user-group() {
	local service="$1" user="$2" group="$3"
	local name="${service}-${user}-${group}"
	local pid uid=$(get-uid "$user") gid=$(get-gid "$group")

	if ! pgrep -c "^$service\$" > /dev/null 2>&1; then
		lava-test-case "$name" --result unknown
		return 0
	fi

	for pid in $(pgrep "^$service\$"); do
		if check-p-ids "$pid" "$uid" "$gid"; then
			lava-test-case "$name" --result pass
			return 0
		fi
	done
	lava-test-case "$name" --result fail
	return 1
}
check-user() { check-user-group "$1" "$2" ""; }
check-group() { check-user-group "$1" "" "$2"; }

# the test effective
lava-test-set start check-services-user-group

check-user-group	weston		display		display

lava-test-set stop check-services-user-group

exit 0
S specification upstream to discuss an addition along these lines. // - The signal makes more sense in kilometers wrt VSS expectations, so // conversion from meters happens here for now to avoid changing the // existing clients. This may be worth revisiting down the road. m_vs->set("Vehicle.Cabin.Infotainment.Navigation.ElapsedDistance", QString::number(dst / 1000, 'f', 9)); } void Navigation::broadcastRouteInfo(double lat, double lon, double route_lat, double route_lon) { if (!(m_vs && m_connected)) return; m_vs->set("Vehicle.CurrentLocation.Latitude", QString::number(lat, 'f', 9)); m_vs->set("Vehicle.CurrentLocation.Longitude", QString::number(lon, 'f', 9)); m_vs->set("Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Latitude", QString::number(route_lat, 'f', 9)); m_vs->set("Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Longitude", QString::number(route_lon, 'f', 9)); } void Navigation::broadcastStatus(QString state) { if (!(m_vs && m_connected)) return; m_vs->set("Vehicle.Cabin.Infotainment.Navigation.State", state); } void Navigation::onConnected() { if (!m_vs) return; m_vs->authorize(); } void Navigation::onAuthorized() { if (!m_vs) return; m_connected = true; QObject::connect(m_vs, &VehicleSignals::signalNotification, this, &Navigation::onSignalNotification); // NOTE: This signal is another AGL addition where it is possible // upstream may be open to adding it to VSS. m_vs->subscribe("Vehicle.Cabin.Infotainment.Navigation.State"); m_vs->subscribe("Vehicle.CurrentLocation.Latitude"); m_vs->subscribe("Vehicle.CurrentLocation.Longitude"); m_vs->subscribe("Vehicle.CurrentLocation.Heading"); m_vs->subscribe("Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Latitude"); m_vs->subscribe("Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Longitude"); m_vs->subscribe("Vehicle.Cabin.Infotainment.Navigation.ElapsedDistance"); } void Navigation::onDisconnected() { QObject::disconnect(m_vs, &VehicleSignals::signalNotification, this, &Navigation::onSignalNotification); m_connected = false; } void Navigation::onSignalNotification(QString path, QString value, QString timestamp) { // NOTE: Since all the known AGL users of the VSS signals are users of // this API, we know that updates occur in certain sequences and // can leverage this to roll up for emitting the existing events. // This is the path of least effort with respect to changing // the existing clients, but it may make sense down the road to // either switch them to using VehicleSignals directly or having // a more granular signal scheme that maps more directly onto // VSS. if (path == "Vehicle.Cabin.Infotainment.Navigation.State") { QVariantMap event; event["state"] = value; emit statusEvent(event); } else if (path == "Vehicle.CurrentLocation.Latitude") { m_latitude = value.toDouble(); } else if (path == "Vehicle.CurrentLocation.Longitude") { m_longitude = value.toDouble(); } else if (path == "Vehicle.CurrentLocation.Heading") { m_heading = value.toDouble(); } else if (path == "Vehicle.Cabin.Infotainment.Navigation.ElapsedDistance") { m_distance = value.toDouble(); QVariantMap event; event["position"] = "car"; event["latitude"] = m_latitude; event["longitude"] = m_longitude; event["direction"] = m_heading; event["distance"] = m_distance * 1000; emit positionEvent(event); } else if (path == "Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Latitude") { m_dest_latitude = value.toDouble(); } else if (path == "Vehicle.Cabin.Infotainment.Navigation.DestinationSet.Longitude") { m_dest_longitude = value.toDouble(); QVariantMap event; event["position"] = "route"; event["latitude"] = m_latitude; event["longitude"] = m_longitude; event["route_latitude"] = m_dest_latitude; event["route_longitude"] = m_dest_longitude; emit positionEvent(event); // NOTE: Potentially could emit a waypointsEvent here, but // nothing in the demo currently requires it, so do // not bother for now. If something like Alexa is // added it or some other replacement / rework will // be required. } }