函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\crypto\keyring.c Create Date:2022-07-29 10:57:19
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:Find the specified master key in ->s_master_keys.* Returns ERR_PTR(-ENOKEY) if not found.

函数原型:struct key *fscrypt_find_master_key(struct super_block *sb, const struct fscrypt_key_specifier *mk_spec)

返回类型:struct key

参数:

类型参数名称
struct super_block *sb
const struct fscrypt_key_specifier *mk_spec
236  keyring等于READ_ONCE(s_master_keys)
237  如果(keyring == NULL)则返回:错误号
240  format_mk_description(description, mk_spec)
241  返回:Search ->s_master_keys or ->mk_users
调用者
名称描述
add_master_key
fscrypt_verify_key_addedVerify that the current user has added a master key with the given identifier* (returns -ENOKEY if not)
do_remove_keyTry to remove an fscrypt master encryption key
fscrypt_ioctl_get_key_statusRetrieve the status of an fscrypt master encryption key
setup_file_encryption_keyFind the master key, then set up the inode's actual encryption key.* If the master key is found in the filesystem-level keyring, then the* corresponding 'struct key' is returned in *master_key_ret with* ->mk_secret_sem read-locked