mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	This adds a basic test for bpf_override_return to verify it works. We override the main function for mounting a btrfs fs so it'll return -ENOMEM and then make sure that trying to mount a btrfs fs will fail. Acked-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Josef Bacik <jbacik@fb.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <uapi/linux/ptrace.h>
 | 
						|
#include <uapi/linux/bpf.h>
 | 
						|
#include <linux/version.h>
 | 
						|
#include "bpf_helpers.h"
 | 
						|
 | 
						|
SEC("kprobe/open_ctree")
 | 
						|
int bpf_prog1(struct pt_regs *ctx)
 | 
						|
{
 | 
						|
	unsigned long rc = -12;
 | 
						|
 | 
						|
	bpf_override_return(ctx, rc);
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
char _license[] SEC("license") = "GPL";
 | 
						|
u32 _version SEC("version") = LINUX_VERSION_CODE;
 |