函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\trace\trace_probe.c Create Date:2022-07-27 13:53:42
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:@buf must has MAX_EVENT_NAME_LEN size

函数原型:int traceprobe_parse_event_name(const char **pevent, const char **pgroup, char *buf, int offset)

返回类型:int

参数:

类型参数名称
const char **pevent
const char **pgroup
char *buf
intoffset
232  event等于pevent
235  slash等于strchr - Find the first occurrence of the character c in the string s.*@s: the string to be searched*@c: the character to search for
236  如果slash
237  如果slash恒等于event
239  返回:负EINVAL
241  如果slashevent加1大于MAX_EVENT_NAME_LEN
243  返回:负EINVAL
245  长字符串复制
248  返回:负EINVAL
250  pgroup等于buf
251  pevent等于slash加1
252  offset加等于slashevent加1
253  event等于pevent
255  len等于strlen - Find the length of a string*@s: The string to be sized
256  如果len恒等于0则
257  trace_probe_log_err(offset, NO_EVENT_NAME)
258  返回:负EINVAL
259  否则如果len大于MAX_EVENT_NAME_LEN
260  trace_probe_log_err(offset, EVENT_TOO_LONG)
261  返回:负EINVAL
263  如果非Check the name is good for event/group/fields
264  trace_probe_log_err(offset, BAD_EVENT_NAME)
265  返回:负EINVAL
267  返回:0
调用者
名称描述
trace_uprobe_create
trace_kprobe_create