函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\bpf\syscall.c Create Date:2022-07-27 14:07:52
Last Modify:2022-05-19 18:06:12 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:bpf_task_fd_query_copy

函数原型:static int bpf_task_fd_query_copy(const union bpf_attr *attr, union bpf_attr __user *uattr, u32 prog_id, u32 fd_type, const char *buf, u64 probe_offset, u64 probe_addr)

返回类型:int

参数:

类型参数名称
const union bpf_attr *attr
union bpf_attr __user *uattr
u32prog_id
u32fd_type
const char *buf
u64probe_offset
u64probe_addr
2869  __userubuf等于u64_to_user_ptr(buf)
2870  len等于如果bufstrlen - Find the length of a string*@s: The string to be sized否则0
2871  err等于0
2873  如果put_user - Write a simple value into user space(len, & input/output: buf len )则返回:负EFAULT
2875  input_len等于 input/output: buf len
2876  如果input_lenubuf
2877  如果非len
2879  zero等于'\0'
2883  否则如果input_len大于等于len加1则
2885  如果copy_to_user(ubuf, buf, len + 1)则返回:负EFAULT
2887  否则
2891  zero等于'\0'
2893  err等于负ENOSPC
2894  如果copy_to_user(ubuf, buf, input_len - 1)则返回:负EFAULT
2901  如果put_user - Write a simple value into user space(prog_id, & output: prod_id )或put_user - Write a simple value into user space(fd_type, & output: BPF_FD_TYPE_* )或put_user - Write a simple value into user space(probe_offset, & output: probe_offset )或put_user - Write a simple value into user space(probe_addr, & output: probe_addr )则返回:负EFAULT
2907  返回:err
调用者
名称描述
bpf_task_fd_query