* [PATCH net-next] netlabel: remove impossible return value in netlbl_bitmap_walk
@ 2024-02-27 9:36 Zhengchao Shao
2024-02-27 12:35 ` Jiri Pirko
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Zhengchao Shao @ 2024-02-27 9:36 UTC (permalink / raw)
To: netdev, linux-security-module, davem, dsahern, edumazet, kuba,
pabeni
Cc: paul, weiyongjun1, yuehaibing, shaozhengchao
Since commit 446fda4f2682 ("[NetLabel]: CIPSOv4 engine"), *bitmap_walk
function only returns -1. Nearly 18 years have passed, -2 scenes never
come up, so there's no need to consider it.
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
---
net/ipv4/cipso_ipv4.c | 5 +----
net/ipv6/calipso.c | 5 +----
net/netlabel/netlabel_kapi.c | 2 +-
3 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/net/ipv4/cipso_ipv4.c b/net/ipv4/cipso_ipv4.c
index d048aa833293..8b17d83e5fde 100644
--- a/net/ipv4/cipso_ipv4.c
+++ b/net/ipv4/cipso_ipv4.c
@@ -864,11 +864,8 @@ static int cipso_v4_map_cat_rbm_ntoh(const struct cipso_v4_doi *doi_def,
net_clen_bits,
net_spot + 1,
1);
- if (net_spot < 0) {
- if (net_spot == -2)
- return -EFAULT;
+ if (net_spot < 0)
return 0;
- }
switch (doi_def->type) {
case CIPSO_V4_MAP_PASS:
diff --git a/net/ipv6/calipso.c b/net/ipv6/calipso.c
index 1578ed9e97d8..eb8ee1e9373a 100644
--- a/net/ipv6/calipso.c
+++ b/net/ipv6/calipso.c
@@ -657,11 +657,8 @@ static int calipso_map_cat_ntoh(const struct calipso_doi *doi_def,
net_clen_bits,
spot + 1,
1);
- if (spot < 0) {
- if (spot == -2)
- return -EFAULT;
+ if (spot < 0)
return 0;
- }
ret_val = netlbl_catmap_setbit(&secattr->attr.mls.cat,
spot,
diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c
index 7b844581ebee..1ba4f58e1d35 100644
--- a/net/netlabel/netlabel_kapi.c
+++ b/net/netlabel/netlabel_kapi.c
@@ -876,7 +876,7 @@ int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap,
* Description:
* Starting at @offset, walk the bitmap from left to right until either the
* desired bit is found or we reach the end. Return the bit offset, -1 if
- * not found, or -2 if error.
+ * not found.
*/
int netlbl_bitmap_walk(const unsigned char *bitmap, u32 bitmap_len,
u32 offset, u8 state)
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] netlabel: remove impossible return value in netlbl_bitmap_walk
2024-02-27 9:36 [PATCH net-next] netlabel: remove impossible return value in netlbl_bitmap_walk Zhengchao Shao
@ 2024-02-27 12:35 ` Jiri Pirko
2024-02-27 15:54 ` Paul Moore
2024-02-29 3:50 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Jiri Pirko @ 2024-02-27 12:35 UTC (permalink / raw)
To: Zhengchao Shao
Cc: netdev, linux-security-module, davem, dsahern, edumazet, kuba,
pabeni, paul, weiyongjun1, yuehaibing
Tue, Feb 27, 2024 at 10:36:04AM CET, shaozhengchao@huawei.com wrote:
>Since commit 446fda4f2682 ("[NetLabel]: CIPSOv4 engine"), *bitmap_walk
>function only returns -1. Nearly 18 years have passed, -2 scenes never
>come up, so there's no need to consider it.
>
>Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] netlabel: remove impossible return value in netlbl_bitmap_walk
2024-02-27 9:36 [PATCH net-next] netlabel: remove impossible return value in netlbl_bitmap_walk Zhengchao Shao
2024-02-27 12:35 ` Jiri Pirko
@ 2024-02-27 15:54 ` Paul Moore
2024-02-29 3:50 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Paul Moore @ 2024-02-27 15:54 UTC (permalink / raw)
To: Zhengchao Shao
Cc: netdev, linux-security-module, davem, dsahern, edumazet, kuba,
pabeni, weiyongjun1, yuehaibing
On Tue, Feb 27, 2024 at 4:28 AM Zhengchao Shao <shaozhengchao@huawei.com> wrote:
>
> Since commit 446fda4f2682 ("[NetLabel]: CIPSOv4 engine"), *bitmap_walk
> function only returns -1. Nearly 18 years have passed, -2 scenes never
> come up, so there's no need to consider it.
>
> Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
> ---
> net/ipv4/cipso_ipv4.c | 5 +----
> net/ipv6/calipso.c | 5 +----
> net/netlabel/netlabel_kapi.c | 2 +-
> 3 files changed, 3 insertions(+), 9 deletions(-)
Looks good to me, thanks for the patch.
Acked-by: Paul Moore <paul@paul-moore.com>
--
paul-moore.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net-next] netlabel: remove impossible return value in netlbl_bitmap_walk
2024-02-27 9:36 [PATCH net-next] netlabel: remove impossible return value in netlbl_bitmap_walk Zhengchao Shao
2024-02-27 12:35 ` Jiri Pirko
2024-02-27 15:54 ` Paul Moore
@ 2024-02-29 3:50 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-02-29 3:50 UTC (permalink / raw)
To: Zhengchao Shao
Cc: netdev, linux-security-module, davem, dsahern, edumazet, kuba,
pabeni, paul, weiyongjun1, yuehaibing
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Tue, 27 Feb 2024 17:36:04 +0800 you wrote:
> Since commit 446fda4f2682 ("[NetLabel]: CIPSOv4 engine"), *bitmap_walk
> function only returns -1. Nearly 18 years have passed, -2 scenes never
> come up, so there's no need to consider it.
>
> Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
> ---
> net/ipv4/cipso_ipv4.c | 5 +----
> net/ipv6/calipso.c | 5 +----
> net/netlabel/netlabel_kapi.c | 2 +-
> 3 files changed, 3 insertions(+), 9 deletions(-)
Here is the summary with links:
- [net-next] netlabel: remove impossible return value in netlbl_bitmap_walk
https://git.kernel.org/netdev/net-next/c/9ff74d77180a
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-02-29 3:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-27 9:36 [PATCH net-next] netlabel: remove impossible return value in netlbl_bitmap_walk Zhengchao Shao
2024-02-27 12:35 ` Jiri Pirko
2024-02-27 15:54 ` Paul Moore
2024-02-29 3:50 ` patchwork-bot+netdevbpf
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 NNTP newsgroup(s).