meta-uhmi: Run the UHMI daemons as the agl-driver user 29/30829/4
authorKenta <murakami.kenta002@jp.panasonic.com>
Thu, 27 Feb 2025 05:39:09 +0000 (14:39 +0900)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tue, 11 Mar 2025 08:33:34 +0000 (08:33 +0000)
Fixed all UHMI daemons to run as the agl-driver user by default.
In addition, created udev rules to authorize all UHMI device files to
be opened by the agl-driver user.

Bug-AGL: SPEC-5363

Change-Id: Id78611a7ff892767e29e9c34f14f624757cf8a43
Signed-off-by: Kenta <murakami.kenta002@jp.panasonic.com>
meta-uhmi/meta-agl-uhmi-demo/recipes-config/udev/uhmi-udev-conf/99-uhmi-user.rules [new file with mode: 0644]
meta-uhmi/meta-agl-uhmi-demo/recipes-config/udev/uhmi-udev-conf_1.0.bb [new file with mode: 0644]
meta-uhmi/meta-agl-uhmi-demo/recipes-config/uhmi-config/files/app.json
meta-uhmi/meta-agl-uhmi-demo/recipes-platform/images/agl-uhmi-demo-preconfigured-receiver-agl.bb
meta-uhmi/meta-agl-uhmi-demo/recipes-platform/images/agl-uhmi-demo-preconfigured-sender-agl.bb
meta-uhmi/recipes-core/ucl-tools/files/ucl-launcher.service
meta-uhmi/recipes-core/uhmi-agl-wm/files/uhmi-agl-wm.service
meta-uhmi/recipes-core/ula-tools/files/ula-node-agl.service
meta-uhmi/recipes-core/ula-tools/files/ula-node.service

diff --git a/meta-uhmi/meta-agl-uhmi-demo/recipes-config/udev/uhmi-udev-conf/99-uhmi-user.rules b/meta-uhmi/meta-agl-uhmi-demo/recipes-config/udev/uhmi-udev-conf/99-uhmi-user.rules
new file mode 100644 (file)
index 0000000..bf75adf
--- /dev/null
@@ -0,0 +1,4 @@
+KERNEL=="virtio-lo", GROUP="video", MODE="0660"
+KERNEL=="uinput", RUN="/usr/bin/chown agl-driver:input /dev/uinput"
+SUBSYSTEM=="drm", KERNEL=="card[1-9]*", ACTION=="add", PROGRAM="/bin/bash -c '[ -f /tmp/rvgpu-index ] && cat /tmp/rvgpu-index || echo \"\"'", RUN="/usr/bin/chown agl-driver:video /dev/dri/rvgpu_virtio%c"
+SUBSYSTEM=="input", KERNEL=="event[1-9]*", ACTION=="add", ATTRS{name}=="rvgpu*", PROGRAM="/bin/bash -c '[ -f /tmp/rvgpu-index ] && cat /tmp/rvgpu-index || echo \"\"'", RUN="/usr/bin/chown agl-driver:input /dev/input/%s{name}%c"
diff --git a/meta-uhmi/meta-agl-uhmi-demo/recipes-config/udev/uhmi-udev-conf_1.0.bb b/meta-uhmi/meta-agl-uhmi-demo/recipes-config/udev/uhmi-udev-conf_1.0.bb
new file mode 100644 (file)
index 0000000..6566208
--- /dev/null
@@ -0,0 +1,18 @@
+SUMMARY = "UHMI kernel devices user udev configuration"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+
+SRC_URI = "file://99-uhmi-user.rules"
+
+do_compile[noexec] = "1"
+
+do_install() {
+    if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
+        install -d ${D}${sysconfdir}/udev/rules.d
+        install -m 0644 ${WORKDIR}/99-uhmi-user.rules ${D}${sysconfdir}/udev/rules.d/
+    fi
+}
+
+FILES:${PN} += "${systemd_system_unitdir}"
+
+RDEPENDS:${PN} += "udev"
index 1dcce8a..4da7020 100644 (file)
@@ -28,7 +28,7 @@
                     "listen_port" : 33445,
                     "initial_screen_color" : "0x33333333"
                 },
-                "env" : "XDG_RUNTIME_DIR=/run/user/200 WAYLAND_DISPLAY=wayland-1"
+                "env" : ""
             },
             {
                 "launcher" : "agl-host1",
@@ -42,7 +42,7 @@
                     "listen_port" : 33445,
                     "initial_screen_color" : "0x33333333"
                 },
-                "env" : "XDG_RUNTIME_DIR=/run/user/200 WAYLAND_DISPLAY=wayland-1"
+                "env" : ""
             }
         ]
     }
index 37f289e..a954c90 100644 (file)
@@ -2,7 +2,9 @@
 Description=ucl-launcher
 
 [Service]
-Type=idle
+Type=simple
+User=agl-driver
+Environment=XDG_RUNTIME_DIR=/run/user/1001
 ExecStart=/usr/bin/ucl-launcher
 KillSignal=SIGTERM
 TimeoutStopSec=10
index 7e8d4d3..39ca19d 100644 (file)
@@ -3,9 +3,10 @@ Description=uhmi AGL window manager
 After=agl-compositor.service
 
 [Service]
-EnvironmentFile=-/etc/default/uhmi-agl-wm
-
 Type=simple
+User=agl-driver
+Environment=XDG_RUNTIME_DIR=/run/user/1001
+EnvironmentFile=-/etc/default/uhmi-agl-wm
 ExecStart=/usr/bin/uhmi-agl-wm
 KillSignal=SIGKILL
 Restart=always
index d07dd40..2d01b7c 100644 (file)
@@ -4,7 +4,9 @@ Requires=uhmi-agl-wm.service
 After=uhmi-agl-wm.service
 
 [Service]
-Type=idle
+Type=simple
+User=agl-driver
+Environment=XDG_RUNTIME_DIR=/run/user/1001
 ExecStart=/usr/bin/ula-node
 KillSignal=SIGTERM
 TimeoutStopSec=10
index edf69f3..44a3af4 100644 (file)
@@ -4,7 +4,9 @@ Requires=uhmi-ivi-wm.service
 After=uhmi-ivi-wm.service
 
 [Service]
-Type=idle
+Type=simple
+User=agl-driver
+Environment=XDG_RUNTIME_DIR=/run/user/1001
 ExecStart=/usr/bin/ula-node
 KillSignal=SIGTERM
 TimeoutStopSec=10