mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	bpf: add bpffs pretty print for program array map
Added bpffs pretty print for program array map. For a particular array index, if the program array points to a valid program, the "<index>: <prog_id>" will be printed out like 0: 6 which means bpf program with id "6" is installed at index "0". Signed-off-by: Yonghong Song <yhs@fb.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
		
							parent
							
								
									f6f3bac08f
								
							
						
					
					
						commit
						a7c19db38d
					
				
					 1 changed files with 24 additions and 1 deletions
				
			
		| 
						 | 
					@ -553,6 +553,29 @@ static void bpf_fd_array_map_clear(struct bpf_map *map)
 | 
				
			||||||
		fd_array_map_delete_elem(map, &i);
 | 
							fd_array_map_delete_elem(map, &i);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static void prog_array_map_seq_show_elem(struct bpf_map *map, void *key,
 | 
				
			||||||
 | 
										 struct seq_file *m)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						void **elem, *ptr;
 | 
				
			||||||
 | 
						u32 prog_id;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						rcu_read_lock();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						elem = array_map_lookup_elem(map, key);
 | 
				
			||||||
 | 
						if (elem) {
 | 
				
			||||||
 | 
							ptr = READ_ONCE(*elem);
 | 
				
			||||||
 | 
							if (ptr) {
 | 
				
			||||||
 | 
								seq_printf(m, "%u: ", *(u32 *)key);
 | 
				
			||||||
 | 
								prog_id = prog_fd_array_sys_lookup_elem(ptr);
 | 
				
			||||||
 | 
								btf_type_seq_show(map->btf, map->btf_value_type_id,
 | 
				
			||||||
 | 
										  &prog_id, m);
 | 
				
			||||||
 | 
								seq_puts(m, "\n");
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						rcu_read_unlock();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const struct bpf_map_ops prog_array_map_ops = {
 | 
					const struct bpf_map_ops prog_array_map_ops = {
 | 
				
			||||||
	.map_alloc_check = fd_array_map_alloc_check,
 | 
						.map_alloc_check = fd_array_map_alloc_check,
 | 
				
			||||||
	.map_alloc = array_map_alloc,
 | 
						.map_alloc = array_map_alloc,
 | 
				
			||||||
| 
						 | 
					@ -564,7 +587,7 @@ const struct bpf_map_ops prog_array_map_ops = {
 | 
				
			||||||
	.map_fd_put_ptr = prog_fd_array_put_ptr,
 | 
						.map_fd_put_ptr = prog_fd_array_put_ptr,
 | 
				
			||||||
	.map_fd_sys_lookup_elem = prog_fd_array_sys_lookup_elem,
 | 
						.map_fd_sys_lookup_elem = prog_fd_array_sys_lookup_elem,
 | 
				
			||||||
	.map_release_uref = bpf_fd_array_map_clear,
 | 
						.map_release_uref = bpf_fd_array_map_clear,
 | 
				
			||||||
	.map_check_btf = map_check_no_btf,
 | 
						.map_seq_show_elem = prog_array_map_seq_show_elem,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static struct bpf_event_entry *bpf_event_entry_gen(struct file *perf_file,
 | 
					static struct bpf_event_entry *bpf_event_entry_gen(struct file *perf_file,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue