函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:moyo_correct_word2 - Validate a string.*@string: The string to check. Maybe non-'\0'-terminated.*@len: Length of @string.* Check whether the given string follows the naming rules.* Returns true if @string follows the naming rules, false otherwise.

函数原型:static bool tomoyo_correct_word2(const char *string, size_t len)

返回类型:bool

参数:

类型参数名称
const char *string
size_tlen
435  start等于string
436  bool in_repetition = false
441  如果非len则转到:out
443 len自减循环
444  c等于string自加
445  如果c恒等于'\\'则
446  如果非len自减则转到:out
448  c等于string自加
450  :c恒等于'\\'
451  继续下一循环
452  :c恒等于'$'
453  :c恒等于'+'
454  :c恒等于'?'
455  :c恒等于'*'
456  :c恒等于'@'
457  :c恒等于'x'
458  :c恒等于'X'
459  :c恒等于'a'
460  :c恒等于'A'
461  :c恒等于'-'
462  继续下一循环
463  :c恒等于'{'
464  如果string减3小于start或*string减3的差不等于'/'则退出
466  in_repetition = true
467  继续下一循环
468  :c恒等于'}'
469  如果string不等于'/'则退出
471  如果非in_repetition退出
473  in_repetition = false
474  继续下一循环
475  :c恒等于'0'
476  :c恒等于'1'
477  :c恒等于'2'
478  :c恒等于'3'
479  如果非len自减或非len自减则退出
481  d等于string自加
482  e等于string自加
483  如果d小于'0'或d大于'7'或e小于'0'或e大于'7'则退出
486  如果c小于等于' '或c大于等于127则继续下一循环
489  转到:out
490  否则如果in_repetitionc恒等于'/'则
491  转到:out
492  否则如果c小于等于' '或c大于等于127则
493  转到:out
496  如果in_repetition则转到:out
498  返回:true
499  out :
500  返回:false
调用者
名称描述
tomoyo_correct_wordmoyo_correct_word - Validate a string.*@string: The string to check.* Check whether the given string follows the naming rules.* Returns true if @string follows the naming rules, false otherwise.
tomoyo_correct_domainmoyo_correct_domain - Check whether the given domainname follows the naming rules.*@domainname: The domainname to check.* Returns true if @domainname follows the naming rules, false otherwise.
tomoyo_domain_defmoyo_domain_def - Check whether the given token can be a domainname.*@buffer: The token to check.* Returns true if @buffer possibly be a domainname, false otherwise.