public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella Netto <adhemerval.zanella@linaro.org>
To: libc-alpha@sourceware.org
Subject: Re: [PATCH 4/5] arm: Add the clone3 wrapper
Date: Thu, 25 May 2023 14:36:38 -0300	[thread overview]
Message-ID: <21db8fa4-c173-27d6-d0ab-2ce2d0258eb8@linaro.org> (raw)
In-Reply-To: <20230203171237.1220878-5-adhemerval.zanella@linaro.org>

Ping.

On 03/02/23 14:12, Adhemerval Zanella wrote:
> It follows the internal signature:
> 
>   extern int clone3 (struct clone_args *__cl_args, size_t __size,
> 		    int (*__func) (void *__arg), void *__arg);
> 
> Checked on arm-linux-gnueabihf.
> ---
>  sysdeps/unix/sysv/linux/arm/clone3.S | 80 ++++++++++++++++++++++++++++
>  sysdeps/unix/sysv/linux/arm/sysdep.h |  1 +
>  2 files changed, 81 insertions(+)
>  create mode 100644 sysdeps/unix/sysv/linux/arm/clone3.S
> 
> diff --git a/sysdeps/unix/sysv/linux/arm/clone3.S b/sysdeps/unix/sysv/linux/arm/clone3.S
> new file mode 100644
> index 0000000000..f236d18390
> --- /dev/null
> +++ b/sysdeps/unix/sysv/linux/arm/clone3.S
> @@ -0,0 +1,80 @@
> +/* The clone3 syscall wrapper.  Linux/arm version.
> +   Copyright (C) 2023 Free Software Foundation, Inc.
> +
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library; if not, see
> +   <https://www.gnu.org/licenses/>.  */
> +
> +#include <sysdep.h>
> +#define _ERRNO_H	1
> +#include <bits/errno.h>
> +
> +/* The userland implementation is:
> +   int clone3 (struct clone_args *cl_args, size_t size,
> +               int (*func)(void *arg), void *arg);
> +
> +   the kernel entry is:
> +   int clone3 (struct clone_args *cl_args, size_t size);
> +
> +   The parameters are passed in registers from userland:
> +   r0: cl_args
> +   r1: size
> +   r2: func
> +   r3: arg  */
> +
> +        .text
> +ENTRY(__clone3)
> +	/* Sanity check args.  */
> +	cmp	r0, #0
> +	ite	ne
> +	cmpne	r1, #0
> +	moveq	r0, #-EINVAL
> +	beq	PLTJMP(syscall_error)
> +
> +	/* Do the syscall, the kernel expects:
> +	   r7: system call number:
> +	   r0: cl_args
> +	   r1: size  */
> +	push    { r7 }
> +	cfi_adjust_cfa_offset (4)
> +	cfi_rel_offset (r7, 0)
> +	ldr     r7, =SYS_ify(clone3)
> +	swi	0x0
> +	cfi_endproc
> +
> +	cmp	r0, #0
> +	beq	1f
> +	pop     {r7}
> +	blt	PLTJMP(C_SYMBOL_NAME(__syscall_error))
> +	RETINSTR(, lr)
> +
> +	cfi_startproc
> +PSEUDO_END (__clone3)
> +
> +1:
> +	.fnstart
> +	.cantunwind
> +	mov	r0, r3
> +	mov	ip, r2
> +	BLX (ip)
> +
> +	/* And we are done, passing the return value through r0.  */
> +	ldr	r7, =SYS_ify(exit)
> +	swi	0x0
> +
> +	.fnend
> +
> +libc_hidden_def (__clone3)
> +weak_alias (__clone3, clone3)
> diff --git a/sysdeps/unix/sysv/linux/arm/sysdep.h b/sysdeps/unix/sysv/linux/arm/sysdep.h
> index 2f321881c8..57fc5f16bd 100644
> --- a/sysdeps/unix/sysv/linux/arm/sysdep.h
> +++ b/sysdeps/unix/sysv/linux/arm/sysdep.h
> @@ -362,6 +362,7 @@ __local_syscall_error:						\
>  #define HAVE_CLOCK_GETTIME_VSYSCALL	"__vdso_clock_gettime"
>  #define HAVE_CLOCK_GETTIME64_VSYSCALL	"__vdso_clock_gettime64"
>  #define HAVE_GETTIMEOFDAY_VSYSCALL	"__vdso_gettimeofday"
> +#define HAVE_CLONE3_WRAPPER		1
>  
>  #define LOAD_ARGS_0()
>  #define ASM_ARGS_0

  reply	other threads:[~2023-05-25 17:36 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-03 17:12 [PATCH 0/5] Add clone3 support for multiple architectures Adhemerval Zanella
2023-02-03 17:12 ` [PATCH 1/5] powerpc64: Add the clone3 wrapper Adhemerval Zanella
2023-02-03 21:13   ` Paul E Murphy
2023-02-03 17:12 ` [PATCH 2/5] s390x: " Adhemerval Zanella
2023-05-25 17:36   ` Adhemerval Zanella Netto
2023-02-03 17:12 ` [PATCH 3/5] riscv: " Adhemerval Zanella
2023-05-25 17:36   ` Adhemerval Zanella Netto
2023-05-29 14:04   ` Palmer Dabbelt
2023-05-29 20:38     ` Adhemerval Zanella Netto
2023-02-03 17:12 ` [PATCH 4/5] arm: " Adhemerval Zanella
2023-05-25 17:36   ` Adhemerval Zanella Netto [this message]
2023-02-03 17:12 ` [PATCH 5/5] mips: " Adhemerval Zanella
2023-05-25 17:36   ` Adhemerval Zanella Netto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=21db8fa4-c173-27d6-d0ab-2ce2d0258eb8@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).