diff options
author | Casey Schaufler <casey@schaufler-ca.com> | 2018-11-12 12:02:49 -0800 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2019-01-08 13:18:44 -0800 |
commit | 33bf60cabcc7687b194a689b068b65e9ecd556be (patch) | |
tree | f8bbf4c27ce73e33ab5f1efa7e99448ab9755373 /include/linux/lsm_hooks.h | |
parent | f28952ac900822a189fc383a5b73631e72c69356 (diff) | |
download | lwn-33bf60cabcc7687b194a689b068b65e9ecd556be.tar.gz lwn-33bf60cabcc7687b194a689b068b65e9ecd556be.zip |
LSM: Infrastructure management of the file security
Move management of the file->f_security blob out of the
individual security modules and into the infrastructure.
The modules no longer allocate or free the data, instead
they tell the infrastructure how much space they require.
Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
[kees: adjusted for ordered init series]
Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'include/linux/lsm_hooks.h')
-rw-r--r-- | include/linux/lsm_hooks.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/lsm_hooks.h b/include/linux/lsm_hooks.h index dd33666567bc..e8cef019b645 100644 --- a/include/linux/lsm_hooks.h +++ b/include/linux/lsm_hooks.h @@ -2032,6 +2032,7 @@ struct security_hook_list { */ struct lsm_blob_sizes { int lbs_cred; + int lbs_file; }; /* |