All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH] syscalls/fcntl: make OFD commands use fcntl64() syscall on 32-bit
@ 2018-09-17  8:53 Jan Stancek
  2018-10-17  8:39 ` Jan Stancek
  2018-10-17  9:59 ` Li Wang
  0 siblings, 2 replies; 4+ messages in thread
From: Jan Stancek @ 2018-09-17  8:53 UTC (permalink / raw)
  To: ltp

OFD commands require 64-bit argument (struct flock64). Until
glibc commit 06ab719d30b0 ("Fix Linux fcntl OFD locks for
non-LFS architectures (BZ#20251)") we relied on glibc passing
arg directly to syscall.

This creates problem for 32-bit version of the test, because old
glibc is passing arg directly, while new one is casting it to
struct flock.

We could add a configure check for glibc version, but that may
not help with other libc libraries.

We could do a runtime check that exploits non-zero l_pid returning
EINVAL. This however complicates SAFE_FCNTL macro substantially.

This patch changes 32-bit version of test to use syscall directly.

Signed-off-by: Jan Stancek <jstancek@redhat.com>
---
 testcases/kernel/syscalls/fcntl/fcntl34.c      | 10 ++++++--
 testcases/kernel/syscalls/fcntl/fcntl36.c      | 19 +++++++++++----
 testcases/kernel/syscalls/fcntl/fcntl_common.h | 33 ++++++++++++++++++++++++++
 3 files changed, 56 insertions(+), 6 deletions(-)
 create mode 100644 testcases/kernel/syscalls/fcntl/fcntl_common.h

diff --git a/testcases/kernel/syscalls/fcntl/fcntl34.c b/testcases/kernel/syscalls/fcntl/fcntl34.c
index aa29cf9ea0d8..90c40f9cf4c6 100644
--- a/testcases/kernel/syscalls/fcntl/fcntl34.c
+++ b/testcases/kernel/syscalls/fcntl/fcntl34.c
@@ -28,6 +28,7 @@
 #include "lapi/fcntl.h"
 #include "tst_safe_pthread.h"
 #include "tst_test.h"
+#include "fcntl_common.h"
 
 static int thread_cnt;
 static const int max_thread_cnt = 32;
@@ -68,7 +69,12 @@ void *thread_fn_01(void *arg)
 
 	memset(buf, (intptr_t)arg, write_size);
 
+/* see explanation in fcntl_common.h */
+#ifdef USE_STRUCT_FLOCK64
 	struct flock64 lck = {
+#else
+	struct flock lck = {
+#endif
 		.l_whence = SEEK_SET,
 		.l_start  = 0,
 		.l_len    = 1,
@@ -76,13 +82,13 @@ void *thread_fn_01(void *arg)
 
 	for (i = 0; i < writes_num; ++i) {
 		lck.l_type = F_WRLCK;
-		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
+		my_fcntl(fd, F_OFD_SETLKW, &lck);
 
 		SAFE_LSEEK(fd, 0, SEEK_END);
 		SAFE_WRITE(1, fd, buf, write_size);
 
 		lck.l_type = F_UNLCK;
-		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
+		my_fcntl(fd, F_OFD_SETLKW, &lck);
 
 		sched_yield();
 	}
diff --git a/testcases/kernel/syscalls/fcntl/fcntl36.c b/testcases/kernel/syscalls/fcntl/fcntl36.c
index 81bd5a647e4c..709fcd3a6239 100644
--- a/testcases/kernel/syscalls/fcntl/fcntl36.c
+++ b/testcases/kernel/syscalls/fcntl/fcntl36.c
@@ -57,6 +57,7 @@
 #include "lapi/fcntl.h"
 #include "tst_safe_pthread.h"
 #include "tst_test.h"
+#include "fcntl_common.h"
 
 static int thread_cnt;
 static int fail_flag = 0;
@@ -87,7 +88,12 @@ static void *fn_ofd_w(void *arg)
 	int fd = SAFE_OPEN(fname, O_RDWR);
 	long wt = pa->cnt;
 
+/* see explanation in fcntl_common.h */
+#ifdef USE_STRUCT_FLOCK64
 	struct flock64 lck = {
+#else
+	struct flock lck = {
+#endif
 		.l_whence = SEEK_SET,
 		.l_start  = pa->offset,
 		.l_len    = pa->length,
@@ -99,13 +105,13 @@ static void *fn_ofd_w(void *arg)
 		memset(buf, wt, pa->length);
 
 		lck.l_type = F_WRLCK;
-		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
+		my_fcntl(fd, F_OFD_SETLKW, &lck);
 
 		SAFE_LSEEK(fd, pa->offset, SEEK_SET);
 		SAFE_WRITE(1, fd, buf, pa->length);
 
 		lck.l_type = F_UNLCK;
-		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
+		my_fcntl(fd, F_OFD_SETLKW, &lck);
 
 		wt++;
 		if (wt >= 255)
@@ -166,7 +172,12 @@ static void *fn_ofd_r(void *arg)
 	int i;
 	int fd = SAFE_OPEN(fname, O_RDWR);
 
+/* see explanation in fcntl_common.h */
+#ifdef USE_STRUCT_FLOCK64
 	struct flock64 lck = {
+#else
+	struct flock lck = {
+#endif
 		.l_whence = SEEK_SET,
 		.l_start  = pa->offset,
 		.l_len    = pa->length,
@@ -178,7 +189,7 @@ static void *fn_ofd_r(void *arg)
 		memset(buf, 0, pa->length);
 
 		lck.l_type = F_RDLCK;
-		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
+		my_fcntl(fd, F_OFD_SETLKW, &lck);
 
 		/* rlock acquired */
 		SAFE_LSEEK(fd, pa->offset, SEEK_SET);
@@ -209,7 +220,7 @@ static void *fn_ofd_r(void *arg)
 		}
 
 		lck.l_type = F_UNLCK;
-		SAFE_FCNTL(fd, F_OFD_SETLK, &lck);
+		my_fcntl(fd, F_OFD_SETLK, &lck);
 
 		sched_yield();
 	}
diff --git a/testcases/kernel/syscalls/fcntl/fcntl_common.h b/testcases/kernel/syscalls/fcntl/fcntl_common.h
new file mode 100644
index 000000000000..d73e4624f3f6
--- /dev/null
+++ b/testcases/kernel/syscalls/fcntl/fcntl_common.h
@@ -0,0 +1,33 @@
+#include "lapi/syscalls.h"
+
+/*
+ * glibc commit:
+ *   06ab719d30b0 ("Fix Linux fcntl OFD locks for non-LFS architectures (BZ#20251)")
+ * changed behavior of arg parameter for OFD commands. It is no
+ * longer passing arg directly to syscall, but expects it to be
+ * 'struct flock'.
+ *
+ * On 64-bit or _FILE_OFFSET_BITS == 64 we can use fcntl() and
+ * struct flock with any glibc version. struct flock and flock64
+ * should be identical.
+ *
+ * On 32-bit, older glibc would pass arg directly, recent one treats
+ * it as 'struct flock' and converts it to 'struct flock64'.
+ * So, to support both version, on 32-bit we use fcntl64 syscall
+ * directly with struct flock64.
+ */
+#if __WORDSIZE == 64 || _FILE_OFFSET_BITS == 64
+static int my_fcntl(int fd, int cmd, void *lck)
+{
+	return SAFE_FCNTL(fd, cmd, lck);
+}
+#else
+#define USE_STRUCT_FLOCK64
+static int my_fcntl(int fd, int cmd, void *lck)
+{
+	int ret = tst_syscall(__NR_fcntl64, fd, cmd, lck);
+	if (ret == -1)
+		tst_brk(TBROK|TERRNO, "fcntl64");
+	return ret;
+}
+#endif
-- 
1.8.3.1


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

* [LTP] [PATCH] syscalls/fcntl: make OFD commands use fcntl64() syscall on 32-bit
  2018-09-17  8:53 [LTP] [PATCH] syscalls/fcntl: make OFD commands use fcntl64() syscall on 32-bit Jan Stancek
@ 2018-10-17  8:39 ` Jan Stancek
  2018-10-17  9:59 ` Li Wang
  1 sibling, 0 replies; 4+ messages in thread
From: Jan Stancek @ 2018-10-17  8:39 UTC (permalink / raw)
  To: ltp

ping, any thoughts about this one?


----- Original Message -----
> OFD commands require 64-bit argument (struct flock64). Until
> glibc commit 06ab719d30b0 ("Fix Linux fcntl OFD locks for
> non-LFS architectures (BZ#20251)") we relied on glibc passing
> arg directly to syscall.
> 
> This creates problem for 32-bit version of the test, because old
> glibc is passing arg directly, while new one is casting it to
> struct flock.
> 
> We could add a configure check for glibc version, but that may
> not help with other libc libraries.
> 
> We could do a runtime check that exploits non-zero l_pid returning
> EINVAL. This however complicates SAFE_FCNTL macro substantially.
> 
> This patch changes 32-bit version of test to use syscall directly.
> 
> Signed-off-by: Jan Stancek <jstancek@redhat.com>
> ---
>  testcases/kernel/syscalls/fcntl/fcntl34.c      | 10 ++++++--
>  testcases/kernel/syscalls/fcntl/fcntl36.c      | 19 +++++++++++----
>  testcases/kernel/syscalls/fcntl/fcntl_common.h | 33
>  ++++++++++++++++++++++++++
>  3 files changed, 56 insertions(+), 6 deletions(-)
>  create mode 100644 testcases/kernel/syscalls/fcntl/fcntl_common.h
> 
> diff --git a/testcases/kernel/syscalls/fcntl/fcntl34.c
> b/testcases/kernel/syscalls/fcntl/fcntl34.c
> index aa29cf9ea0d8..90c40f9cf4c6 100644
> --- a/testcases/kernel/syscalls/fcntl/fcntl34.c
> +++ b/testcases/kernel/syscalls/fcntl/fcntl34.c
> @@ -28,6 +28,7 @@
>  #include "lapi/fcntl.h"
>  #include "tst_safe_pthread.h"
>  #include "tst_test.h"
> +#include "fcntl_common.h"
>  
>  static int thread_cnt;
>  static const int max_thread_cnt = 32;
> @@ -68,7 +69,12 @@ void *thread_fn_01(void *arg)
>  
>  	memset(buf, (intptr_t)arg, write_size);
>  
> +/* see explanation in fcntl_common.h */
> +#ifdef USE_STRUCT_FLOCK64
>  	struct flock64 lck = {
> +#else
> +	struct flock lck = {
> +#endif
>  		.l_whence = SEEK_SET,
>  		.l_start  = 0,
>  		.l_len    = 1,
> @@ -76,13 +82,13 @@ void *thread_fn_01(void *arg)
>  
>  	for (i = 0; i < writes_num; ++i) {
>  		lck.l_type = F_WRLCK;
> -		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
> +		my_fcntl(fd, F_OFD_SETLKW, &lck);
>  
>  		SAFE_LSEEK(fd, 0, SEEK_END);
>  		SAFE_WRITE(1, fd, buf, write_size);
>  
>  		lck.l_type = F_UNLCK;
> -		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
> +		my_fcntl(fd, F_OFD_SETLKW, &lck);
>  
>  		sched_yield();
>  	}
> diff --git a/testcases/kernel/syscalls/fcntl/fcntl36.c
> b/testcases/kernel/syscalls/fcntl/fcntl36.c
> index 81bd5a647e4c..709fcd3a6239 100644
> --- a/testcases/kernel/syscalls/fcntl/fcntl36.c
> +++ b/testcases/kernel/syscalls/fcntl/fcntl36.c
> @@ -57,6 +57,7 @@
>  #include "lapi/fcntl.h"
>  #include "tst_safe_pthread.h"
>  #include "tst_test.h"
> +#include "fcntl_common.h"
>  
>  static int thread_cnt;
>  static int fail_flag = 0;
> @@ -87,7 +88,12 @@ static void *fn_ofd_w(void *arg)
>  	int fd = SAFE_OPEN(fname, O_RDWR);
>  	long wt = pa->cnt;
>  
> +/* see explanation in fcntl_common.h */
> +#ifdef USE_STRUCT_FLOCK64
>  	struct flock64 lck = {
> +#else
> +	struct flock lck = {
> +#endif
>  		.l_whence = SEEK_SET,
>  		.l_start  = pa->offset,
>  		.l_len    = pa->length,
> @@ -99,13 +105,13 @@ static void *fn_ofd_w(void *arg)
>  		memset(buf, wt, pa->length);
>  
>  		lck.l_type = F_WRLCK;
> -		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
> +		my_fcntl(fd, F_OFD_SETLKW, &lck);
>  
>  		SAFE_LSEEK(fd, pa->offset, SEEK_SET);
>  		SAFE_WRITE(1, fd, buf, pa->length);
>  
>  		lck.l_type = F_UNLCK;
> -		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
> +		my_fcntl(fd, F_OFD_SETLKW, &lck);
>  
>  		wt++;
>  		if (wt >= 255)
> @@ -166,7 +172,12 @@ static void *fn_ofd_r(void *arg)
>  	int i;
>  	int fd = SAFE_OPEN(fname, O_RDWR);
>  
> +/* see explanation in fcntl_common.h */
> +#ifdef USE_STRUCT_FLOCK64
>  	struct flock64 lck = {
> +#else
> +	struct flock lck = {
> +#endif
>  		.l_whence = SEEK_SET,
>  		.l_start  = pa->offset,
>  		.l_len    = pa->length,
> @@ -178,7 +189,7 @@ static void *fn_ofd_r(void *arg)
>  		memset(buf, 0, pa->length);
>  
>  		lck.l_type = F_RDLCK;
> -		SAFE_FCNTL(fd, F_OFD_SETLKW, &lck);
> +		my_fcntl(fd, F_OFD_SETLKW, &lck);
>  
>  		/* rlock acquired */
>  		SAFE_LSEEK(fd, pa->offset, SEEK_SET);
> @@ -209,7 +220,7 @@ static void *fn_ofd_r(void *arg)
>  		}
>  
>  		lck.l_type = F_UNLCK;
> -		SAFE_FCNTL(fd, F_OFD_SETLK, &lck);
> +		my_fcntl(fd, F_OFD_SETLK, &lck);
>  
>  		sched_yield();
>  	}
> diff --git a/testcases/kernel/syscalls/fcntl/fcntl_common.h
> b/testcases/kernel/syscalls/fcntl/fcntl_common.h
> new file mode 100644
> index 000000000000..d73e4624f3f6
> --- /dev/null
> +++ b/testcases/kernel/syscalls/fcntl/fcntl_common.h
> @@ -0,0 +1,33 @@
> +#include "lapi/syscalls.h"
> +
> +/*
> + * glibc commit:
> + *   06ab719d30b0 ("Fix Linux fcntl OFD locks for non-LFS architectures
> (BZ#20251)")
> + * changed behavior of arg parameter for OFD commands. It is no
> + * longer passing arg directly to syscall, but expects it to be
> + * 'struct flock'.
> + *
> + * On 64-bit or _FILE_OFFSET_BITS == 64 we can use fcntl() and
> + * struct flock with any glibc version. struct flock and flock64
> + * should be identical.
> + *
> + * On 32-bit, older glibc would pass arg directly, recent one treats
> + * it as 'struct flock' and converts it to 'struct flock64'.
> + * So, to support both version, on 32-bit we use fcntl64 syscall
> + * directly with struct flock64.
> + */
> +#if __WORDSIZE == 64 || _FILE_OFFSET_BITS == 64
> +static int my_fcntl(int fd, int cmd, void *lck)
> +{
> +	return SAFE_FCNTL(fd, cmd, lck);
> +}
> +#else
> +#define USE_STRUCT_FLOCK64
> +static int my_fcntl(int fd, int cmd, void *lck)
> +{
> +	int ret = tst_syscall(__NR_fcntl64, fd, cmd, lck);
> +	if (ret == -1)
> +		tst_brk(TBROK|TERRNO, "fcntl64");
> +	return ret;
> +}
> +#endif
> --
> 1.8.3.1
> 
> 
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
> 

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

* [LTP] [PATCH] syscalls/fcntl: make OFD commands use fcntl64() syscall on 32-bit
  2018-09-17  8:53 [LTP] [PATCH] syscalls/fcntl: make OFD commands use fcntl64() syscall on 32-bit Jan Stancek
  2018-10-17  8:39 ` Jan Stancek
@ 2018-10-17  9:59 ` Li Wang
  2018-10-17 10:42   ` Jan Stancek
  1 sibling, 1 reply; 4+ messages in thread
From: Li Wang @ 2018-10-17  9:59 UTC (permalink / raw)
  To: ltp

On Mon, Sep 17, 2018 at 4:53 PM, Jan Stancek <jstancek@redhat.com> wrote:

> OFD commands require 64-bit argument (struct flock64). Until
> glibc commit 06ab719d30b0 ("Fix Linux fcntl OFD locks for
> non-LFS architectures (BZ#20251)") we relied on glibc passing
> arg directly to syscall.
>
> This creates problem for 32-bit version of the test, because old
> glibc is passing arg directly, while new one is casting it to
> struct flock.
>
> We could add a configure check for glibc version, but that may
> not help with other libc libraries.
>
> We could do a runtime check that exploits non-zero l_pid returning
> EINVAL. This however complicates SAFE_FCNTL macro substantially.
>
> This patch changes 32-bit version of test to use syscall directly.
>
> Signed-off-by: Jan Stancek <jstancek@redhat.com>
> ---
>  testcases/kernel/syscalls/fcntl/fcntl34.c      | 10 ++++++--
>  testcases/kernel/syscalls/fcntl/fcntl36.c      | 19 +++++++++++----
>  testcases/kernel/syscalls/fcntl/fcntl_common.h | 33
> ++++++++++++++++++++++++++
>  3 files changed, 56 insertions(+), 6 deletions(-)
>  create mode 100644 testcases/kernel/syscalls/fcntl/fcntl_common.h
>
> diff --git a/testcases/kernel/syscalls/fcntl/fcntl34.c
> b/testcases/kernel/syscalls/fcntl/fcntl34.c
> index aa29cf9ea0d8..90c40f9cf4c6 100644
> --- a/testcases/kernel/syscalls/fcntl/fcntl34.c
> +++ b/testcases/kernel/syscalls/fcntl/fcntl34.c
> @@ -28,6 +28,7 @@
>  #include "lapi/fcntl.h"
>  #include "tst_safe_pthread.h"
>  #include "tst_test.h"
> +#include "fcntl_common.h"
>
>  static int thread_cnt;
>  static const int max_thread_cnt = 32;
> @@ -68,7 +69,12 @@ void *thread_fn_01(void *arg)
>
>         memset(buf, (intptr_t)arg, write_size);
>
> +/* see explanation in fcntl_common.h */
> +#ifdef USE_STRUCT_FLOCK64
>         struct flock64 lck = {
> +#else
> +       struct flock lck = {
> +#endif
>

It seems the 'struct flock64' can satisfy both 64-bit and 32-bit platform,
why here adding 'struct flock' here? Eventually, as the code comment says:
On 32-bit, ..., recent one treats it as 'struct flock' and converts it to
'struct flock64'. Why not use 'struct flock64'  directly?

-- 
Regards,
Li Wang
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linux.it/pipermail/ltp/attachments/20181017/5da77892/attachment.html>

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

* [LTP] [PATCH] syscalls/fcntl: make OFD commands use fcntl64() syscall on 32-bit
  2018-10-17  9:59 ` Li Wang
@ 2018-10-17 10:42   ` Jan Stancek
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Stancek @ 2018-10-17 10:42 UTC (permalink / raw)
  To: ltp



----- Original Message -----
> On Mon, Sep 17, 2018 at 4:53 PM, Jan Stancek <jstancek@redhat.com> wrote:
> 
> > OFD commands require 64-bit argument (struct flock64). Until
> > glibc commit 06ab719d30b0 ("Fix Linux fcntl OFD locks for
> > non-LFS architectures (BZ#20251)") we relied on glibc passing
> > arg directly to syscall.
> >
> > This creates problem for 32-bit version of the test, because old
> > glibc is passing arg directly, while new one is casting it to
> > struct flock.
> >
> > We could add a configure check for glibc version, but that may
> > not help with other libc libraries.
> >
> > We could do a runtime check that exploits non-zero l_pid returning
> > EINVAL. This however complicates SAFE_FCNTL macro substantially.
> >
> > This patch changes 32-bit version of test to use syscall directly.
> >
> > Signed-off-by: Jan Stancek <jstancek@redhat.com>
> > ---
> >  testcases/kernel/syscalls/fcntl/fcntl34.c      | 10 ++++++--
> >  testcases/kernel/syscalls/fcntl/fcntl36.c      | 19 +++++++++++----
> >  testcases/kernel/syscalls/fcntl/fcntl_common.h | 33
> > ++++++++++++++++++++++++++
> >  3 files changed, 56 insertions(+), 6 deletions(-)
> >  create mode 100644 testcases/kernel/syscalls/fcntl/fcntl_common.h
> >
> > diff --git a/testcases/kernel/syscalls/fcntl/fcntl34.c
> > b/testcases/kernel/syscalls/fcntl/fcntl34.c
> > index aa29cf9ea0d8..90c40f9cf4c6 100644
> > --- a/testcases/kernel/syscalls/fcntl/fcntl34.c
> > +++ b/testcases/kernel/syscalls/fcntl/fcntl34.c
> > @@ -28,6 +28,7 @@
> >  #include "lapi/fcntl.h"
> >  #include "tst_safe_pthread.h"
> >  #include "tst_test.h"
> > +#include "fcntl_common.h"
> >
> >  static int thread_cnt;
> >  static const int max_thread_cnt = 32;
> > @@ -68,7 +69,12 @@ void *thread_fn_01(void *arg)
> >
> >         memset(buf, (intptr_t)arg, write_size);
> >
> > +/* see explanation in fcntl_common.h */
> > +#ifdef USE_STRUCT_FLOCK64
> >         struct flock64 lck = {
> > +#else
> > +       struct flock lck = {
> > +#endif
> >
> 
> It seems the 'struct flock64' can satisfy both 64-bit and 32-bit platform,
> why here adding 'struct flock' here? Eventually, as the code comment says:
> On 32-bit, ..., recent one treats it as 'struct flock' and converts it to
> 'struct flock64'. Why not use 'struct flock64'  directly?

I wanted to make it clear that we use glibc+flock and syscall+flock64, but
we could use just flock64 - it should work, as you said. I can send v2.

Regards,
Jan

> 
> --
> Regards,
> Li Wang
> 

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

end of thread, other threads:[~2018-10-17 10:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-17  8:53 [LTP] [PATCH] syscalls/fcntl: make OFD commands use fcntl64() syscall on 32-bit Jan Stancek
2018-10-17  8:39 ` Jan Stancek
2018-10-17  9:59 ` Li Wang
2018-10-17 10:42   ` Jan Stancek

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.