1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright(c) 2022 Intel Corporation. */
3 
4 #include <linux/bitfield.h>
5 #include <linux/module.h>
6 #include <linux/kdev_t.h>
7 #include <linux/semaphore.h>
8 #include <linux/slab.h>
9 
10 #include <asm/cpu_device_id.h>
11 
12 #include "ifs.h"
13 
14 #define X86_MATCH(vfm, array_gen)				\
15 	X86_MATCH_VFM_FEATURE(vfm, X86_FEATURE_CORE_CAPABILITIES, array_gen)
16 
17 static const struct x86_cpu_id ifs_cpu_ids[] __initconst = {
18 	X86_MATCH(INTEL_SAPPHIRERAPIDS_X, ARRAY_GEN0),
19 	X86_MATCH(INTEL_EMERALDRAPIDS_X, ARRAY_GEN0),
20 	X86_MATCH(INTEL_GRANITERAPIDS_X, ARRAY_GEN0),
21 	X86_MATCH(INTEL_GRANITERAPIDS_D, ARRAY_GEN0),
22 	X86_MATCH(INTEL_ATOM_CRESTMONT_X, ARRAY_GEN1),
23 	X86_MATCH(INTEL_ATOM_DARKMONT_X, ARRAY_GEN1),
24 	{}
25 };
26 MODULE_DEVICE_TABLE(x86cpu, ifs_cpu_ids);
27 
28 ATTRIBUTE_GROUPS(plat_ifs);
29 ATTRIBUTE_GROUPS(plat_ifs_array);
30 
31 bool *ifs_pkg_auth;
32 
33 static const struct ifs_test_caps scan_test = {
34 	.integrity_cap_bit = MSR_INTEGRITY_CAPS_PERIODIC_BIST_BIT,
35 	.test_num = IFS_TYPE_SAF,
36 	.image_suffix = "scan",
37 };
38 
39 static const struct ifs_test_caps array_test = {
40 	.integrity_cap_bit = MSR_INTEGRITY_CAPS_ARRAY_BIST_BIT,
41 	.test_num = IFS_TYPE_ARRAY_BIST,
42 };
43 
44 static const struct ifs_test_msrs scan_msrs = {
45 	.copy_hashes = MSR_COPY_SCAN_HASHES,
46 	.copy_hashes_status = MSR_SCAN_HASHES_STATUS,
47 	.copy_chunks = MSR_AUTHENTICATE_AND_COPY_CHUNK,
48 	.copy_chunks_status = MSR_CHUNKS_AUTHENTICATION_STATUS,
49 	.test_ctrl = MSR_SAF_CTRL,
50 };
51 
52 static const struct ifs_test_msrs sbaf_msrs = {
53 	.copy_hashes = MSR_COPY_SBAF_HASHES,
54 	.copy_hashes_status = MSR_SBAF_HASHES_STATUS,
55 	.copy_chunks = MSR_AUTHENTICATE_AND_COPY_SBAF_CHUNK,
56 	.copy_chunks_status = MSR_SBAF_CHUNKS_AUTHENTICATION_STATUS,
57 	.test_ctrl = MSR_SBAF_CTRL,
58 };
59 
60 static const struct ifs_test_caps sbaf_test = {
61 	.integrity_cap_bit = MSR_INTEGRITY_CAPS_SBAF_BIT,
62 	.test_num = IFS_TYPE_SBAF,
63 	.image_suffix = "sbft",
64 };
65 
66 static struct ifs_device ifs_devices[] = {
67 	[IFS_TYPE_SAF] = {
68 		.test_caps = &scan_test,
69 		.test_msrs = &scan_msrs,
70 		.misc = {
71 			.name = "intel_ifs_0",
72 			.minor = MISC_DYNAMIC_MINOR,
73 			.groups = plat_ifs_groups,
74 		},
75 	},
76 	[IFS_TYPE_ARRAY_BIST] = {
77 		.test_caps = &array_test,
78 		.misc = {
79 			.name = "intel_ifs_1",
80 			.minor = MISC_DYNAMIC_MINOR,
81 			.groups = plat_ifs_array_groups,
82 		},
83 	},
84 	[IFS_TYPE_SBAF] = {
85 		.test_caps = &sbaf_test,
86 		.test_msrs = &sbaf_msrs,
87 		.misc = {
88 			.name = "intel_ifs_2",
89 			.minor = MISC_DYNAMIC_MINOR,
90 			.groups = plat_ifs_groups,
91 		},
92 	},
93 };
94 
95 #define IFS_NUMTESTS ARRAY_SIZE(ifs_devices)
96 
ifs_cleanup(void)97 static void ifs_cleanup(void)
98 {
99 	int i;
100 
101 	for (i = 0; i < IFS_NUMTESTS; i++) {
102 		if (ifs_devices[i].misc.this_device)
103 			misc_deregister(&ifs_devices[i].misc);
104 	}
105 	kfree(ifs_pkg_auth);
106 }
107 
ifs_init(void)108 static int __init ifs_init(void)
109 {
110 	const struct x86_cpu_id *m;
111 	u64 msrval;
112 	int i, ret;
113 
114 	m = x86_match_cpu(ifs_cpu_ids);
115 	if (!m)
116 		return -ENODEV;
117 
118 	if (rdmsrl_safe(MSR_IA32_CORE_CAPS, &msrval))
119 		return -ENODEV;
120 
121 	if (!(msrval & MSR_IA32_CORE_CAPS_INTEGRITY_CAPS))
122 		return -ENODEV;
123 
124 	if (rdmsrl_safe(MSR_INTEGRITY_CAPS, &msrval))
125 		return -ENODEV;
126 
127 	ifs_pkg_auth = kmalloc_array(topology_max_packages(), sizeof(bool), GFP_KERNEL);
128 	if (!ifs_pkg_auth)
129 		return -ENOMEM;
130 
131 	for (i = 0; i < IFS_NUMTESTS; i++) {
132 		if (!(msrval & BIT(ifs_devices[i].test_caps->integrity_cap_bit)))
133 			continue;
134 		ifs_devices[i].rw_data.generation = FIELD_GET(MSR_INTEGRITY_CAPS_SAF_GEN_MASK,
135 							      msrval);
136 		ifs_devices[i].rw_data.array_gen = (u32)m->driver_data;
137 		ret = misc_register(&ifs_devices[i].misc);
138 		if (ret)
139 			goto err_exit;
140 	}
141 	return 0;
142 
143 err_exit:
144 	ifs_cleanup();
145 	return ret;
146 }
147 
ifs_exit(void)148 static void __exit ifs_exit(void)
149 {
150 	ifs_cleanup();
151 }
152 
153 module_init(ifs_init);
154 module_exit(ifs_exit);
155 
156 MODULE_LICENSE("GPL");
157 MODULE_DESCRIPTION("Intel In Field Scan (IFS) device");
158