|
19 | 19 | #include <linux/rwsem.h>
|
20 | 20 | #include <linux/proc_fs.h>
|
21 | 21 | #include <linux/seq_file.h>
|
| 22 | +#include <linux/sysctl.h> |
22 | 23 | #include "internal.h"
|
23 | 24 |
|
| 25 | +#ifdef CONFIG_CRYPTO_FIPS |
| 26 | +static 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 | + |
| 40 | +static 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 | + |
| 52 | +static struct ctl_table_header *crypto_sysctls; |
| 53 | + |
| 54 | +static void crypto_proc_fips_init(void) |
| 55 | +{ |
| 56 | + crypto_sysctls = register_sysctl_table(crypto_dir_table); |
| 57 | +} |
| 58 | + |
| 59 | +static 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 | + |
24 | 69 | static void *c_start(struct seq_file *m, loff_t *pos)
|
25 | 70 | {
|
26 | 71 | down_read(&crypto_alg_sem);
|
@@ -106,9 +151,11 @@ static const struct file_operations proc_crypto_ops = {
|
106 | 151 | void __init crypto_init_proc(void)
|
107 | 152 | {
|
108 | 153 | proc_create("crypto", 0, NULL, &proc_crypto_ops);
|
| 154 | + crypto_proc_fips_init(); |
109 | 155 | }
|
110 | 156 |
|
111 | 157 | void __exit crypto_exit_proc(void)
|
112 | 158 | {
|
| 159 | + crypto_proc_fips_exit(); |
113 | 160 | remove_proc_entry("crypto", NULL);
|
114 | 161 | }
|
0 commit comments