public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] config: android-recommended: Disable BPF_UNPRIV_DEFAULT_OFF for netd
@ 2022-02-02  9:33 Marijn Suijten
  2022-02-02  9:38 ` Marijn Suijten
  0 siblings, 1 reply; 3+ messages in thread
From: Marijn Suijten @ 2022-02-02  9:33 UTC (permalink / raw)
  To: phone-devel, Rob Herring
  Cc: Marijn Suijten, linux-kernel, Amit Pundir, Greg Kroah-Hartman,
	John Stultz, Marijn Suijten

From: Marijn Suijten <marijns95@gmail.com>

AOSP's `netd` process fails to start on Android S:

    E ClatdController: getClatEgress4MapFd() failure: Operation not permitted
    I netd    : Initializing ClatdController: 410us
    E netd    : Failed to start trafficcontroller: (Status[code: 1, msg: "Pinned map not accessible or does not exist: (/sys/fs/bpf/map_netd_cookie_tag_map): Operation not permitted"])
    E netd    : CRITICAL: sleeping 60 seconds, netd exiting with failure, crash loop likely!

And on Android R:

    I ClatdController: 4.9+ kernel and device shipped with P - clat ebpf might work.
    E ClatdController: getClatEgressMapFd() failure: Operation not permitted
    I netd    : Initializing ClatdController: 1409us
    E netd    : Failed to start trafficcontroller: (Status[code: 1, msg: "Pinned map not accessible or does not exist: (/sys/fs/bpf/map_netd_cookie_tag_map): Operation not permitted"])

These permission issues are caused by 08389d888287 ("bpf: Add kconfig
knob for disabling unpriv bpf by default") because AOSP does not provide
netd the `SYS_ADMIN` capability, and also has no userspace support for
the `BPF` capability yet.

Cc: Amit Pundir <amit.pundir@linaro.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: John Stultz <john.stultz@linaro.org>
[John suggested this in https://linaro.atlassian.net/browse/ACK-107?focusedCommentId=117382]
Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org>
---
 kernel/configs/android-recommended.config | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/configs/android-recommended.config b/kernel/configs/android-recommended.config
index 22bd76e43aca..e400fbbc8aba 100644
--- a/kernel/configs/android-recommended.config
+++ b/kernel/configs/android-recommended.config
@@ -1,4 +1,5 @@
 #  KEEP ALPHABETICALLY SORTED
+# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set
 # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
 # CONFIG_INPUT_MOUSE is not set
 # CONFIG_LEGACY_PTYS is not set
-- 
2.35.1


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

* Re: [PATCH 2/2] config: android-recommended: Disable BPF_UNPRIV_DEFAULT_OFF for netd
  2022-02-02  9:33 [PATCH 2/2] config: android-recommended: Disable BPF_UNPRIV_DEFAULT_OFF for netd Marijn Suijten
@ 2022-02-02  9:38 ` Marijn Suijten
  2022-02-02  9:43   ` Greg Kroah-Hartman
  0 siblings, 1 reply; 3+ messages in thread
From: Marijn Suijten @ 2022-02-02  9:38 UTC (permalink / raw)
  To: phone-devel, Rob Herring
  Cc: Marijn Suijten, linux-kernel, Amit Pundir, Greg Kroah-Hartman,
	John Stultz

On 2022-02-02 10:33:55, Marijn Suijten wrote:
> From: Marijn Suijten <marijns95@gmail.com>

Feel free to disregard this `From:` override, didn't catch it when
preparing the patches from a different machine.

- Marijn

> AOSP's `netd` process fails to start on Android S:
> 
>     E ClatdController: getClatEgress4MapFd() failure: Operation not permitted
>     I netd    : Initializing ClatdController: 410us
>     E netd    : Failed to start trafficcontroller: (Status[code: 1, msg: "Pinned map not accessible or does not exist: (/sys/fs/bpf/map_netd_cookie_tag_map): Operation not permitted"])
>     E netd    : CRITICAL: sleeping 60 seconds, netd exiting with failure, crash loop likely!
> 
> And on Android R:
> 
>     I ClatdController: 4.9+ kernel and device shipped with P - clat ebpf might work.
>     E ClatdController: getClatEgressMapFd() failure: Operation not permitted
>     I netd    : Initializing ClatdController: 1409us
>     E netd    : Failed to start trafficcontroller: (Status[code: 1, msg: "Pinned map not accessible or does not exist: (/sys/fs/bpf/map_netd_cookie_tag_map): Operation not permitted"])
> 
> These permission issues are caused by 08389d888287 ("bpf: Add kconfig
> knob for disabling unpriv bpf by default") because AOSP does not provide
> netd the `SYS_ADMIN` capability, and also has no userspace support for
> the `BPF` capability yet.
> 
> Cc: Amit Pundir <amit.pundir@linaro.org>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Suggested-by: John Stultz <john.stultz@linaro.org>
> [John suggested this in https://linaro.atlassian.net/browse/ACK-107?focusedCommentId=117382]
> Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org>
> ---
>  kernel/configs/android-recommended.config | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/kernel/configs/android-recommended.config b/kernel/configs/android-recommended.config
> index 22bd76e43aca..e400fbbc8aba 100644
> --- a/kernel/configs/android-recommended.config
> +++ b/kernel/configs/android-recommended.config
> @@ -1,4 +1,5 @@
>  #  KEEP ALPHABETICALLY SORTED
> +# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set
>  # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
>  # CONFIG_INPUT_MOUSE is not set
>  # CONFIG_LEGACY_PTYS is not set
> -- 
> 2.35.1
> 

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

* Re: [PATCH 2/2] config: android-recommended: Disable BPF_UNPRIV_DEFAULT_OFF for netd
  2022-02-02  9:38 ` Marijn Suijten
@ 2022-02-02  9:43   ` Greg Kroah-Hartman
  0 siblings, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2022-02-02  9:43 UTC (permalink / raw)
  To: Marijn Suijten, phone-devel, Rob Herring, Marijn Suijten,
	linux-kernel, Amit Pundir, John Stultz

On Wed, Feb 02, 2022 at 10:38:58AM +0100, Marijn Suijten wrote:
> On 2022-02-02 10:33:55, Marijn Suijten wrote:
> > From: Marijn Suijten <marijns95@gmail.com>
> 
> Feel free to disregard this `From:` override, didn't catch it when
> preparing the patches from a different machine.

Please resend with the correct one, otherwise our tools will get this
wrong when we try to commit it.

thanks,

greg k-h

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

end of thread, other threads:[~2022-02-02  9:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-02  9:33 [PATCH 2/2] config: android-recommended: Disable BPF_UNPRIV_DEFAULT_OFF for netd Marijn Suijten
2022-02-02  9:38 ` Marijn Suijten
2022-02-02  9:43   ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox