aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/proc.c')
-rw-r--r--crypto/proc.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/crypto/proc.c b/crypto/proc.c
index 1d616adead0d..37a13d05636d 100644
--- a/crypto/proc.c
+++ b/crypto/proc.c
@@ -19,8 +19,53 @@
19#include <linux/rwsem.h> 19#include <linux/rwsem.h>
20#include <linux/proc_fs.h> 20#include <linux/proc_fs.h>
21#include <linux/seq_file.h> 21#include <linux/seq_file.h>
22#include <linux/sysctl.h>
22#include "internal.h" 23#include "internal.h"
23 24
25#ifdef CONFIG_CRYPTO_FIPS
26static struct ctl_table crypto_sysctl_table[] = {
27 {
28 .ctl_name = CTL_UNNUMBERED,
29 .procname = "fips_enabled",
30 .data = &fips_enabled,
31 .maxlen = sizeof(int),
32 .mode = 0444,
33 .proc_handler = &proc_dointvec
34 },
35 {
36 .ctl_name = 0,
37 },
38};
39
40static struct ctl_table crypto_dir_table[] = {
41 {
42 .ctl_name = CTL_UNNUMBERED,
43 .procname = "crypto",
44 .mode = 0555,
45 .child = crypto_sysctl_table
46 },
47 {
48 .ctl_name = 0,
49 },
50};
51
52static struct ctl_table_header *crypto_sysctls;
53
54static void crypto_proc_fips_init(void)
55{
56 crypto_sysctls = register_sysctl_table(crypto_dir_table);
57}
58
59static void crypto_proc_fips_exit(void)
60{
61 if (crypto_sysctls)
62 unregister_sysctl_table(crypto_sysctls);
63}
64#else
65#define crypto_proc_fips_init()
66#define crypto_proc_fips_exit()
67#endif
68
24static void *c_start(struct seq_file *m, loff_t *pos) 69static void *c_start(struct seq_file *m, loff_t *pos)
25{ 70{
26 down_read(&crypto_alg_sem); 71 down_read(&crypto_alg_sem);
@@ -106,9 +151,11 @@ static const struct file_operations proc_crypto_ops = {
106void __init crypto_init_proc(void) 151void __init crypto_init_proc(void)
107{ 152{
108 proc_create("crypto", 0, NULL, &proc_crypto_ops); 153 proc_create("crypto", 0, NULL, &proc_crypto_ops);
154 crypto_proc_fips_init();
109} 155}
110 156
111void __exit crypto_exit_proc(void) 157void __exit crypto_exit_proc(void)
112{ 158{
159 crypto_proc_fips_exit();
113 remove_proc_entry("crypto", NULL); 160 remove_proc_entry("crypto", NULL);
114} 161}