函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:Format a string of no more than slen characters into the audit buffer,* enclosed in quote marks.

函数原型:void audit_log_n_string(struct audit_buffer *ab, const char *string, size_t slen)

返回类型:void

参数:

类型参数名称
struct audit_buffer *ab
const char *string
size_tslen
1946  如果非ab则返回
1949  BUG_ON(!rmatted skb ready to send )
1950  skb等于rmatted skb ready to send
1951  avail等于缓存区尾部字节
1952  new_len等于slen加3
1953  如果new_len大于avail
1954  avail等于audit_expand - expand skb in the audit buffer*@ab: audit_buffer*@extra: space to add at tail of the skb* Returns 0 (no space) on failed expansion, or available space if* successful.
1955  如果非avail则返回
1958  ptr等于skb_tail_pointer(skb)
1959  ptr自加等于'"'
1960  内存复制(ptr, string, slen)
1961  ptr加等于slen
1962  ptr自加等于'"'
1963  ptr等于0
1964  设置数据在缓存区
调用者
名称描述
audit_log_n_untrustedstringaudit_log_n_untrustedstring - log a string that may contain random characters*@ab: audit_buffer*@len: length of string (not including trailing null)*@string: string to be logged* This code will escape a string that is passed to it if the string* contains
audit_log_execve_info
audit_log_string
aa_label_xaudit