Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit be2d04d1 authored by Mathieu Malaterre's avatar Mathieu Malaterre Committed by Daniel Borkmann
Browse files

bpf: add __printf verification to bpf_verifier_vlog



__printf is useful to verify format and arguments. ‘bpf_verifier_vlog’
function is used twice in verifier.c in both cases the caller function
already uses the __printf gcc attribute.

Remove the following warning, triggered with W=1:

  kernel/bpf/verifier.c:176:2: warning: function might be possible candidate for ‘gnu_printf’ format attribute [-Wsuggest-attribute=format]

Signed-off-by: default avatarMathieu Malaterre <malat@debian.org>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent 44edef77
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -200,8 +200,8 @@ struct bpf_verifier_env {
	u32 subprog_cnt;
	u32 subprog_cnt;
};
};


void bpf_verifier_vlog(struct bpf_verifier_log *log, const char *fmt,
__printf(2, 0) void bpf_verifier_vlog(struct bpf_verifier_log *log,
		       va_list args);
				      const char *fmt, va_list args);
__printf(2, 3) void bpf_verifier_log_write(struct bpf_verifier_env *env,
__printf(2, 3) void bpf_verifier_log_write(struct bpf_verifier_env *env,
					   const char *fmt, ...);
					   const char *fmt, ...);