All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH v4 0/3] Kernel module detection (own implementation)
@ 2021-01-21 13:32 Petr Vorel
  2021-01-21 13:32 ` [LTP] [PATCH v4 1/3] lib: Fix kernel module detection on BusyBox Petr Vorel
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Petr Vorel @ 2021-01-21 13:32 UTC (permalink / raw)
  To: ltp

Hi,

changes v3->v4:
* fix memory leaks (add missing free())
* optimize handling input string (avoid unnecessary fgets())
* add missing static
* new commit: re-add tst_require_drivers veth in tst_net.sh

I'm for merging this variant which works with text files.
I haven't check the binary format yet, but it'd would most likely
require using libkmod. Do we want that?

Kind regards,
Petr

Petr Vorel (3):
  lib: Fix kernel module detection on BusyBox
  zram: Fix module detection on BusyBox
  tst_net.sh: Require veth for netns (again)

 lib/tst_kernel.c                              | 104 ++++++++++++++++--
 .../kernel/device-drivers/zram/zram_lib.sh    |   6 +-
 testcases/lib/tst_net.sh                      |   1 +
 3 files changed, 95 insertions(+), 16 deletions(-)

-- 
2.30.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [LTP] [PATCH v4 1/3] lib: Fix kernel module detection on BusyBox
  2021-01-21 13:32 [LTP] [PATCH v4 0/3] Kernel module detection (own implementation) Petr Vorel
@ 2021-01-21 13:32 ` Petr Vorel
  2021-01-21 16:25   ` Cyril Hrubis
  2021-01-21 13:32 ` [LTP] [PATCH v4 2/3] zram: Fix " Petr Vorel
  2021-01-21 13:32 ` [LTP] [PATCH v4 3/3] tst_net.sh: Require veth for netns (again) Petr Vorel
  2 siblings, 1 reply; 6+ messages in thread
From: Petr Vorel @ 2021-01-21 13:32 UTC (permalink / raw)
  To: ltp

BusyBox modprobe implementation does not support -n switch.

It does support -D, which could be used, *but* unless is busybox binary
configured with CONFIG_MODPROBE_SMALL=y (IMHO the default).

We could use modinfo and grep output for 'filename:', but we agreed on
ML that having our own implementation will be the best as it also
does not require modinfo as external dependency.

Implementation searches for for module presence in /lib/modules/$(uname
-r)/modules.{dep,builtin}. On Android expect files in /system/lib/modules
directory.

Also treat '-' and '_' in module name as the same (follow kmod implementation).

On Android still assume all drivers are available because modules.* files might
not be available. We could search modules in /system/lib/modules, but to
to determine built-in drivers we need modules.builtin (it's required
also by Busybox mod{info,probe} implementation).

This fixes many tests on BusyBox, e.g. *all* network tests (tests using
tst_net.sh) after 305a78e4c ("tst_net.sh: Require veth for netns").

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 lib/tst_kernel.c | 104 +++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 92 insertions(+), 12 deletions(-)

diff --git a/lib/tst_kernel.c b/lib/tst_kernel.c
index 57fa4b2be..b5caf7b20 100644
--- a/lib/tst_kernel.c
+++ b/lib/tst_kernel.c
@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2017 Cyril Hrubis <chrubis@suse.cz>
+ * Copyright (c) 2020-2021 Petr Vorel <pvorel@suse.cz>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -17,8 +18,11 @@
 
 #include <sys/personality.h>
 #include <sys/utsname.h>
+#include <limits.h>
+
 #include "test.h"
 #include "tst_kernel.h"
+#include "old_safe_stdio.h"
 
 static int get_kernel_bits_from_uname(struct utsname *buf)
 {
@@ -81,20 +85,96 @@ int tst_kernel_bits(void)
 	return kernel_bits;
 }
 
-int tst_check_driver(const char *name)
+static int tst_search_driver(const char *driver, const char *file)
 {
-#ifndef __ANDROID__
-	const char * const argv[] = { "modprobe", "-n", name, NULL };
-	int res = tst_cmd_(NULL, argv, "/dev/null", "/dev/null",
-			       TST_CMD_PASS_RETVAL);
-
-	/* 255 - it looks like modprobe not available */
-	return (res == 255) ? 0 : res;
-#else
-	/* Android modprobe may not have '-n', or properly installed
-	 * module.*.bin files to determine built-in drivers. Assume
-	 * all drivers are available.
+	struct stat st;
+	char buf[PATH_MAX];
+	char *path = NULL, *search = NULL, *sep = NULL;
+	FILE *f;
+	int ret = -1;
+
+	struct utsname uts;
+
+	if (uname(&uts)) {
+		tst_brkm(TBROK | TERRNO, NULL, "uname() failed");
+		return -1;
+	}
+	SAFE_ASPRINTF(NULL, &path, "/lib/modules/%s/%s", uts.release, file);
+
+	if (stat(path, &st) || !(S_ISREG(st.st_mode) || S_ISLNK(st.st_mode))) {
+		tst_resm(TWARN, "expected file %s does not exist or not a file", path);
+		return -1;
+	}
+
+	if (access(path, R_OK)) {
+		tst_resm(TWARN, "file %s cannot be read", path);
+		return -1;
+	}
+
+	SAFE_ASPRINTF(NULL, &search, "/%s.ko", driver);
+
+	f = SAFE_FOPEN(NULL, path, "r");
+
+	while (fgets(buf, sizeof(buf), f)) {
+		/* Cut dependencies after : */
+		if ((sep = strchr(buf, ':')))
+			*sep = 0;
+
+		if (strstr(buf, search) != NULL) {
+			ret = 0;
+			break;
+		}
+	}
+
+	SAFE_FCLOSE(NULL, f);
+	free(search);
+	free(path);
+
+	return ret;
+}
+
+static int tst_check_driver_(const char *driver)
+{
+	if (!tst_search_driver(driver, "modules.dep") ||
+		!tst_search_driver(driver, "modules.builtin"))
+		return 0;
+
+	return 1;
+}
+
+int tst_check_driver(const char *driver)
+{
+#ifdef __ANDROID__
+	/*
+	 * Android may not have properly installed modules.* files. We could
+	 * search modules in /system/lib/modules, but to to determine built-in
+	 * drivers we need modules.builtin. Therefore assume all drivers are
+	 * available.
 	 */
 	return 0;
 #endif
+
+	if (!tst_check_driver_(driver))
+		return 0;
+
+	int ret = 1;
+
+	if (strrchr(driver, '-') || strrchr(driver, '_')) {
+		char *driver2 = strdup(driver);
+		char *ix = driver2;
+		char find = '-', replace = '_';
+
+		if (strrchr(driver, '_')) {
+			find = '_';
+			replace = '-';
+		}
+
+		while ((ix = strchr(ix, find)))
+			*ix++ = replace;
+
+		ret = tst_check_driver_(driver2);
+		free(driver2);
+	}
+
+	return ret;
 }
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [LTP] [PATCH v4 2/3] zram: Fix module detection on BusyBox
  2021-01-21 13:32 [LTP] [PATCH v4 0/3] Kernel module detection (own implementation) Petr Vorel
  2021-01-21 13:32 ` [LTP] [PATCH v4 1/3] lib: Fix kernel module detection on BusyBox Petr Vorel
@ 2021-01-21 13:32 ` Petr Vorel
  2021-01-21 13:32 ` [LTP] [PATCH v4 3/3] tst_net.sh: Require veth for netns (again) Petr Vorel
  2 siblings, 0 replies; 6+ messages in thread
From: Petr Vorel @ 2021-01-21 13:32 UTC (permalink / raw)
  To: ltp

BusyBox modinfo implementation does not exit with 0 when module not
found. Our own API implementation used for module detection in
tst_check_driver() was fixed in previous commit thus use it.

Reported-by: Leo Yu-Chi Liang <ycliang@andestech.com>
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/kernel/device-drivers/zram/zram_lib.sh | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/testcases/kernel/device-drivers/zram/zram_lib.sh b/testcases/kernel/device-drivers/zram/zram_lib.sh
index 3f4d1d55f..bdbf2453a 100755
--- a/testcases/kernel/device-drivers/zram/zram_lib.sh
+++ b/testcases/kernel/device-drivers/zram/zram_lib.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 # Copyright (c) 2015 Oracle and/or its affiliates. All Rights Reserved.
-# Copyright (c) 2019 Petr Vorel <pvorel@suse.cz>
+# Copyright (c) 2019-2021 Petr Vorel <pvorel@suse.cz>
 # Author: Alexey Kodanev <alexey.kodanev@oracle.com>
 
 dev_makeswap=-1
@@ -9,6 +9,7 @@ dev_mounted=-1
 TST_NEEDS_TMPDIR=1
 TST_SETUP="zram_load"
 TST_CLEANUP="zram_cleanup"
+TST_NEEDS_DRIVERS="zram"
 . tst_test.sh
 
 zram_cleanup()
@@ -210,6 +211,3 @@ zram_mount()
 
 	tst_res TPASS "mount of zram device(s) succeeded"
 }
-
-modinfo zram > /dev/null 2>&1 ||
-	tst_brk TCONF "zram not configured in kernel"
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [LTP] [PATCH v4 3/3] tst_net.sh: Require veth for netns (again)
  2021-01-21 13:32 [LTP] [PATCH v4 0/3] Kernel module detection (own implementation) Petr Vorel
  2021-01-21 13:32 ` [LTP] [PATCH v4 1/3] lib: Fix kernel module detection on BusyBox Petr Vorel
  2021-01-21 13:32 ` [LTP] [PATCH v4 2/3] zram: Fix " Petr Vorel
@ 2021-01-21 13:32 ` Petr Vorel
  2 siblings, 0 replies; 6+ messages in thread
From: Petr Vorel @ 2021-01-21 13:32 UTC (permalink / raw)
  To: ltp

new error message is more informative:
tcp_fastopen_run 1 TCONF: veth driver not available

then the old one:
Error: Unknown device type.
tcp_fastopen_run 1 TBROK: ip li add name ltp_ns_veth1 type veth peer name ltp_ns_veth2 failed

NOTE: originally added in 305a78e4c and temporarily reverted in
7fe2ad11d due problems which were fixed in commit
"lib: Fix kernel module detection on BusyBox".

Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 testcases/lib/tst_net.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/testcases/lib/tst_net.sh b/testcases/lib/tst_net.sh
index ef9354903..1ddef2fea 100644
--- a/testcases/lib/tst_net.sh
+++ b/testcases/lib/tst_net.sh
@@ -106,6 +106,7 @@ init_ltp_netspace()
 		tst_require_cmds ip
 		tst_require_root
 
+		tst_require_drivers veth
 		ROD ip li add name ltp_ns_veth1 type veth peer name ltp_ns_veth2
 		pid="$(ROD ns_create net,mnt)"
 		mkdir -p /var/run/netns
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [LTP] [PATCH v4 1/3] lib: Fix kernel module detection on BusyBox
  2021-01-21 13:32 ` [LTP] [PATCH v4 1/3] lib: Fix kernel module detection on BusyBox Petr Vorel
@ 2021-01-21 16:25   ` Cyril Hrubis
  2021-01-21 16:40     ` Petr Vorel
  0 siblings, 1 reply; 6+ messages in thread
From: Cyril Hrubis @ 2021-01-21 16:25 UTC (permalink / raw)
  To: ltp

Hi!
> +int tst_check_driver(const char *driver)
> +{
> +#ifdef __ANDROID__
> +	/*
> +	 * Android may not have properly installed modules.* files. We could
> +	 * search modules in /system/lib/modules, but to to determine built-in
> +	 * drivers we need modules.builtin. Therefore assume all drivers are
> +	 * available.
>  	 */
>  	return 0;
>  #endif
> +
> +	if (!tst_check_driver_(driver))
> +		return 0;
> +
> +	int ret = 1;

One last nit, shouldn't this be -1?

Since the tst_check_driver_() returns either 0 or -1.

Or should we change tst_check_driver_() to return 0 or 1 instead?



Other than that this version looks good,

Reviewed-by: Cyril Hrubis <chrubis@suse.cz>

-- 
Cyril Hrubis
chrubis@suse.cz

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [LTP] [PATCH v4 1/3] lib: Fix kernel module detection on BusyBox
  2021-01-21 16:25   ` Cyril Hrubis
@ 2021-01-21 16:40     ` Petr Vorel
  0 siblings, 0 replies; 6+ messages in thread
From: Petr Vorel @ 2021-01-21 16:40 UTC (permalink / raw)
  To: ltp

Hi,

> Hi!
> > +int tst_check_driver(const char *driver)
> > +{
> > +#ifdef __ANDROID__
> > +	/*
> > +	 * Android may not have properly installed modules.* files. We could
> > +	 * search modules in /system/lib/modules, but to to determine built-in
> > +	 * drivers we need modules.builtin. Therefore assume all drivers are
> > +	 * available.
> >  	 */
> >  	return 0;
> >  #endif
> > +
> > +	if (!tst_check_driver_(driver))
> > +		return 0;
> > +
> > +	int ret = 1;

> One last nit, shouldn't this be -1?

> Since the tst_check_driver_() returns either 0 or -1.

> Or should we change tst_check_driver_() to return 0 or 1 instead?

Oops, yes the value should be the same.
I prefer -1 as that's error in syscalls, but no strong opinion about it.

> Other than that this version looks good,

> Reviewed-by: Cyril Hrubis <chrubis@suse.cz>

Thanks a lot for your patient review!

Kind regards,
Petr

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-01-21 16:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-21 13:32 [LTP] [PATCH v4 0/3] Kernel module detection (own implementation) Petr Vorel
2021-01-21 13:32 ` [LTP] [PATCH v4 1/3] lib: Fix kernel module detection on BusyBox Petr Vorel
2021-01-21 16:25   ` Cyril Hrubis
2021-01-21 16:40     ` Petr Vorel
2021-01-21 13:32 ` [LTP] [PATCH v4 2/3] zram: Fix " Petr Vorel
2021-01-21 13:32 ` [LTP] [PATCH v4 3/3] tst_net.sh: Require veth for netns (again) Petr Vorel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.