Re: [PATCH] audit: add CLONE3 auxiliary record to log process cloning

Paul Moore <[email protected]> Wed, 29 Jul 2026 18:02:56 -0400
Newsgroups org.kernel.vger.audit,org.kernel.vger.linux-kernel,org.kvack.linux-mm
Message-ID <CAHC9VhSzhyw--ycYMG_RaT5wpRQWDPBSuaNixsVrWrRXKc9hzw@mail.gmail.com>
On Fri, Jul 24, 2026 at 11:03=E2=80=AFAM Ricardo Robaina <[email protected]=
om> wrote:
>
> The clone3(2) syscall moves most parameters to struct clone_args.
> For this reason, the generic SYSCALL audit record does not capture
> the structured arguments.
>
> Add a CLONE3 auxiliary record that logs: flags, exit_signal, cgroup,
> and pidfd fields from struct clone_args. When CLONE_PIDFD is set and
> the syscall succeeds, the resolved pidfd is logged; otherwise
> pidfd=3D(null).
>
>  ----
>  type=3DSYSCALL : syscall=3Dclone3 a0=3D0x7ffe7f1ec640 a1=3D0x58 a2=3D0x0=
 ...
>  type=3DCLONE3 : cl3_flags=3D0x1000 exit_signal=3D17 cgroup=3D0 pidfd=3D3
>
> Link: https://github.com/linux-audit/audit-kernel/issues/151
> Signed-off-by: Ricardo Robaina <[email protected]>
> ---
>  include/linux/audit.h      | 10 ++++++++++
>  include/uapi/linux/audit.h |  1 +
>  kernel/auditsc.c           | 20 ++++++++++++++++++++
>  kernel/fork.c              |  4 +++-
>  4 files changed, 34 insertions(+), 1 deletion(-)
>
> diff --git a/include/linux/audit.h b/include/linux/audit.h
> index 45abb3722d30..833f349bf415 100644
> --- a/include/linux/audit.h
> +++ b/include/linux/audit.h
> @@ -449,6 +449,7 @@ extern void __audit_tk_injoffset(struct timespec64 of=
fset);
>  extern void __audit_ntp_log(const struct audit_ntp_data *ad);
>  extern void __audit_log_nfcfg(const char *name, u8 af, unsigned int nent=
ries,
>                               enum audit_nfcfgop op, gfp_t gfp);
> +extern void __audit_log_clone3(struct kernel_clone_args *kargs, int ret)=
;
>
>  static inline void audit_ipc_obj(struct kern_ipc_perm *ipcp)
>  {
> @@ -598,6 +599,12 @@ static inline void audit_log_nfcfg(const char *name,=
 u8 af,
>                 __audit_log_nfcfg(name, af, nentries, op, gfp);
>  }
>
> +static inline void audit_log_clone3(struct kernel_clone_args *kargs, int=
 ret)
> +{
> +       if (!audit_dummy_context())
> +               __audit_log_clone3(kargs, ret);
> +}
> +
>  extern int audit_n_rules;
>  extern int audit_signals;
>  #else /* CONFIG_AUDITSYSCALL */
> @@ -730,6 +737,9 @@ static inline void audit_log_nfcfg(const char *name, =
u8 af,
>                                    enum audit_nfcfgop op, gfp_t gfp)
>  { }
>
> +static inline void audit_log_clone3(struct kernel_clone_args *kargs, int=
 ret)
> +{ }
> +
>  #define audit_n_rules 0
>  #define audit_signals 0
>  #endif /* CONFIG_AUDITSYSCALL */
> diff --git a/include/uapi/linux/audit.h b/include/uapi/linux/audit.h
> index e8f5ce677df7..37357e17adbf 100644
> --- a/include/uapi/linux/audit.h
> +++ b/include/uapi/linux/audit.h
> @@ -122,6 +122,7 @@
>  #define AUDIT_OPENAT2          1337    /* Record showing openat2 how arg=
s */
>  #define AUDIT_DM_CTRL          1338    /* Device Mapper target control *=
/
>  #define AUDIT_DM_EVENT         1339    /* Device Mapper events */
> +#define AUDIT_CLONE3           1343    /* Record showing clone3 args */
>
>  #define AUDIT_AVC              1400    /* SE Linux avc denial or grant *=
/
>  #define AUDIT_SELINUX_ERR      1401    /* Internal SE Linux Errors */
> diff --git a/kernel/auditsc.c b/kernel/auditsc.c
> index 6610e667c728..c0106bb71c19 100644
> --- a/kernel/auditsc.c
> +++ b/kernel/auditsc.c
> @@ -2882,6 +2882,26 @@ void __audit_log_nfcfg(const char *name, u8 af, un=
signed int nentries,
>  }
>  EXPORT_SYMBOL_GPL(__audit_log_nfcfg);
>
> +void __audit_log_clone3(struct kernel_clone_args *kargs, int ret)
> +{
> +       struct audit_buffer *ab;
> +       int pidfd;
> +
> +       ab =3D audit_log_start(audit_context(), GFP_KERNEL,
> +                            AUDIT_CLONE3);
> +       if (!ab)
> +               return;
> +
> +       audit_log_format(ab, "cl3_flags=3D0x%llx exit_signal=3D%d cgroup=
=3D%d",
> +                        kargs->flags, kargs->exit_signal, kargs->cgroup)=
;
> +       if ((kargs->flags & CLONE_PIDFD) && ret >=3D 0 &&
> +           !get_user(pidfd, kargs->pidfd))
> +               audit_log_format(ab, " pidfd=3D%d", pidfd);

Do we care about distinguishing between the combination of CLONE_PIDFD
and CLONE_THREAD vs CLONE_PIDFD alone?  In other words, do we care if
the "pidfd" field sometimes represents a pidfd of the child process vs
a thread in the current process?

> +       else
> +               audit_log_format(ab, " pidfd=3D(null)");
> +       audit_log_end(ab);
> +}
> +
>  static void audit_log_task(struct audit_buffer *ab)
>  {
>         kuid_t auid, uid;
> diff --git a/kernel/fork.c b/kernel/fork.c
> index f0e2e131a9a5..0f52e8c0e900 100644
> --- a/kernel/fork.c
> +++ b/kernel/fork.c
> @@ -3047,7 +3047,9 @@ SYSCALL_DEFINE2(clone3, struct clone_args __user *,=
 uargs, size_t, size)
>         if (!clone3_args_valid(&kargs))
>                 return -EINVAL;
>
> -       return kernel_clone(&kargs);
> +       err =3D kernel_clone(&kargs);
> +       audit_log_clone3(&kargs, err);
> +       return err;
>  }
>
>  void walk_process_tree(struct task_struct *top, proc_visitor visitor, vo=
id *data)
> --
> 2.53.0

--=20
paul-moore.com