KEYS: Add a facility to restrict new links into a keyring
Add a facility whereby proposed new links to be added to a keyring can be vetted, permitting them to be rejected if necessary. This can be used to block public keys from which the signature cannot be verified or for which the signature verification fails. It could also be used to provide blacklisting. This affects operations like add_key(), KEYCTL_LINK and KEYCTL_INSTANTIATE. To this end: (1) A function pointer is added to the key struct that, if set, points to the vetting function. This is called as: int (*restrict_link)(struct key *keyring, const struct key_type *key_type, unsigned long key_flags, const union key_payload *key_payload), where 'keyring' will be the keyring being added to, key_type and key_payload will describe the key being added and key_flags[*] can be AND'ed with KEY_FLAG_TRUSTED. [*] This parameter will be removed in a later patch when KEY_FLAG_TRUSTED is removed...
Showing
- Documentation/security/keys.txt 22 additions, 0 deletionsDocumentation/security/keys.txt
- certs/system_keyring.c 4 additions, 4 deletionscerts/system_keyring.c
- fs/cifs/cifsacl.c 1 addition, 1 deletionfs/cifs/cifsacl.c
- fs/nfs/nfs4idmap.c 1 addition, 1 deletionfs/nfs/nfs4idmap.c
- include/linux/key.h 43 additions, 10 deletionsinclude/linux/key.h
- net/dns_resolver/dns_key.c 1 addition, 1 deletionnet/dns_resolver/dns_key.c
- net/rxrpc/ar-key.c 2 additions, 2 deletionsnet/rxrpc/ar-key.c
- security/integrity/digsig.c 3 additions, 4 deletionssecurity/integrity/digsig.c
- security/integrity/ima/ima_mok.c 4 additions, 4 deletionssecurity/integrity/ima/ima_mok.c
- security/keys/key.c 36 additions, 7 deletionssecurity/keys/key.c
- security/keys/keyring.c 66 additions, 7 deletionssecurity/keys/keyring.c
- security/keys/persistent.c 2 additions, 2 deletionssecurity/keys/persistent.c
- security/keys/process_keys.c 10 additions, 6 deletionssecurity/keys/process_keys.c
- security/keys/request_key.c 2 additions, 2 deletionssecurity/keys/request_key.c
- security/keys/request_key_auth.c 1 addition, 1 deletionsecurity/keys/request_key_auth.c
Please register or sign in to comment