blob: 1c33d7469e4a2779d0f7282d130efd69aff420d2 [file] [log] [blame]
Matt Fleming04851772013-02-08 15:48:51 +00001#include <linux/efi.h>
2#include <linux/module.h>
3#include <linux/pstore.h>
Linus Torvalds20b4fb42013-05-01 17:51:54 -07004#include <linux/slab.h>
Matt Fleminga614e192013-04-30 11:30:24 +01005#include <linux/ucs2_string.h>
Matt Fleming04851772013-02-08 15:48:51 +00006
7#define DUMP_NAME_LEN 52
8
9static bool efivars_pstore_disable =
10 IS_ENABLED(CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE);
11
12module_param_named(pstore_disable, efivars_pstore_disable, bool, 0644);
13
14#define PSTORE_EFI_ATTRIBUTES \
15 (EFI_VARIABLE_NON_VOLATILE | \
16 EFI_VARIABLE_BOOTSERVICE_ACCESS | \
17 EFI_VARIABLE_RUNTIME_ACCESS)
18
19static int efi_pstore_open(struct pstore_info *psi)
20{
Matt Fleming04851772013-02-08 15:48:51 +000021 psi->data = NULL;
22 return 0;
23}
24
25static int efi_pstore_close(struct pstore_info *psi)
26{
Matt Fleming04851772013-02-08 15:48:51 +000027 psi->data = NULL;
28 return 0;
29}
30
31struct pstore_read_data {
32 u64 *id;
33 enum pstore_type_id *type;
34 int *count;
35 struct timespec *timespec;
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -070036 bool *compressed;
Geliang Tang8cfc8dd2016-02-18 22:04:22 +080037 ssize_t *ecc_notice_size;
Matt Fleming04851772013-02-08 15:48:51 +000038 char **buf;
39};
40
Madper Xiefdeadb42013-11-29 15:58:57 +080041static inline u64 generic_id(unsigned long timestamp,
42 unsigned int part, int count)
43{
Andrzej Zaborowski783ee432014-06-09 16:50:40 +020044 return ((u64) timestamp * 100 + part) * 1000 + count;
Madper Xiefdeadb42013-11-29 15:58:57 +080045}
46
Matt Fleming04851772013-02-08 15:48:51 +000047static int efi_pstore_read_func(struct efivar_entry *entry, void *data)
48{
49 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
50 struct pstore_read_data *cb_data = data;
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -070051 char name[DUMP_NAME_LEN], data_type;
Matt Fleming04851772013-02-08 15:48:51 +000052 int i;
53 int cnt;
54 unsigned int part;
55 unsigned long time, size;
56
57 if (efi_guidcmp(entry->var.VendorGuid, vendor))
58 return 0;
59
60 for (i = 0; i < DUMP_NAME_LEN; i++)
61 name[i] = entry->var.VariableName[i];
62
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -070063 if (sscanf(name, "dump-type%u-%u-%d-%lu-%c",
64 cb_data->type, &part, &cnt, &time, &data_type) == 5) {
Madper Xiefdeadb42013-11-29 15:58:57 +080065 *cb_data->id = generic_id(time, part, cnt);
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -070066 *cb_data->count = cnt;
67 cb_data->timespec->tv_sec = time;
68 cb_data->timespec->tv_nsec = 0;
69 if (data_type == 'C')
70 *cb_data->compressed = true;
71 else
72 *cb_data->compressed = false;
Geliang Tang8cfc8dd2016-02-18 22:04:22 +080073 *cb_data->ecc_notice_size = 0;
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -070074 } else if (sscanf(name, "dump-type%u-%u-%d-%lu",
Matt Fleming04851772013-02-08 15:48:51 +000075 cb_data->type, &part, &cnt, &time) == 4) {
Madper Xiefdeadb42013-11-29 15:58:57 +080076 *cb_data->id = generic_id(time, part, cnt);
Matt Fleming04851772013-02-08 15:48:51 +000077 *cb_data->count = cnt;
78 cb_data->timespec->tv_sec = time;
79 cb_data->timespec->tv_nsec = 0;
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -070080 *cb_data->compressed = false;
Geliang Tang8cfc8dd2016-02-18 22:04:22 +080081 *cb_data->ecc_notice_size = 0;
Matt Fleming04851772013-02-08 15:48:51 +000082 } else if (sscanf(name, "dump-type%u-%u-%lu",
83 cb_data->type, &part, &time) == 3) {
84 /*
85 * Check if an old format,
86 * which doesn't support holding
87 * multiple logs, remains.
88 */
Madper Xiefdeadb42013-11-29 15:58:57 +080089 *cb_data->id = generic_id(time, part, 0);
Matt Fleming04851772013-02-08 15:48:51 +000090 *cb_data->count = 0;
91 cb_data->timespec->tv_sec = time;
92 cb_data->timespec->tv_nsec = 0;
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -070093 *cb_data->compressed = false;
Geliang Tang8cfc8dd2016-02-18 22:04:22 +080094 *cb_data->ecc_notice_size = 0;
Matt Fleming04851772013-02-08 15:48:51 +000095 } else
96 return 0;
97
Matt Fleming8a415b82013-04-29 20:08:02 +010098 entry->var.DataSize = 1024;
99 __efivar_entry_get(entry, &entry->var.Attributes,
100 &entry->var.DataSize, entry->var.Data);
101 size = entry->var.DataSize;
Seiji Aguchie0d59732013-10-30 15:27:26 -0400102 memcpy(*cb_data->buf, entry->var.Data,
103 (size_t)min_t(unsigned long, EFIVARS_DATA_SIZE_MAX, size));
Matt Fleming8a415b82013-04-29 20:08:02 +0100104
Matt Fleming04851772013-02-08 15:48:51 +0000105 return size;
106}
107
Seiji Aguchie0d59732013-10-30 15:27:26 -0400108/**
109 * efi_pstore_scan_sysfs_enter
Geliang Tanga07e7442015-10-31 23:23:14 +0800110 * @pos: scanning entry
Seiji Aguchie0d59732013-10-30 15:27:26 -0400111 * @next: next entry
112 * @head: list head
113 */
114static void efi_pstore_scan_sysfs_enter(struct efivar_entry *pos,
115 struct efivar_entry *next,
116 struct list_head *head)
117{
118 pos->scanning = true;
119 if (&next->list != head)
120 next->scanning = true;
121}
122
123/**
124 * __efi_pstore_scan_sysfs_exit
125 * @entry: deleting entry
126 * @turn_off_scanning: Check if a scanning flag should be turned off
127 */
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200128static inline int __efi_pstore_scan_sysfs_exit(struct efivar_entry *entry,
Seiji Aguchie0d59732013-10-30 15:27:26 -0400129 bool turn_off_scanning)
130{
131 if (entry->deleting) {
132 list_del(&entry->list);
133 efivar_entry_iter_end();
134 efivar_unregister(entry);
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200135 if (efivar_entry_iter_begin())
136 return -EINTR;
Seiji Aguchie0d59732013-10-30 15:27:26 -0400137 } else if (turn_off_scanning)
138 entry->scanning = false;
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200139
140 return 0;
Seiji Aguchie0d59732013-10-30 15:27:26 -0400141}
142
143/**
144 * efi_pstore_scan_sysfs_exit
145 * @pos: scanning entry
146 * @next: next entry
147 * @head: list head
148 * @stop: a flag checking if scanning will stop
149 */
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200150static int efi_pstore_scan_sysfs_exit(struct efivar_entry *pos,
Seiji Aguchie0d59732013-10-30 15:27:26 -0400151 struct efivar_entry *next,
152 struct list_head *head, bool stop)
153{
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200154 int ret = __efi_pstore_scan_sysfs_exit(pos, true);
155
156 if (ret)
157 return ret;
158
Seiji Aguchie0d59732013-10-30 15:27:26 -0400159 if (stop)
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200160 ret = __efi_pstore_scan_sysfs_exit(next, &next->list != head);
161 return ret;
Seiji Aguchie0d59732013-10-30 15:27:26 -0400162}
163
164/**
165 * efi_pstore_sysfs_entry_iter
166 *
167 * @data: function-specific data to pass to callback
168 * @pos: entry to begin iterating from
169 *
170 * You MUST call efivar_enter_iter_begin() before this function, and
171 * efivar_entry_iter_end() afterwards.
172 *
173 * It is possible to begin iteration from an arbitrary entry within
174 * the list by passing @pos. @pos is updated on return to point to
175 * the next entry of the last one passed to efi_pstore_read_func().
176 * To begin iterating from the beginning of the list @pos must be %NULL.
177 */
178static int efi_pstore_sysfs_entry_iter(void *data, struct efivar_entry **pos)
179{
180 struct efivar_entry *entry, *n;
181 struct list_head *head = &efivar_sysfs_list;
182 int size = 0;
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200183 int ret;
Seiji Aguchie0d59732013-10-30 15:27:26 -0400184
185 if (!*pos) {
186 list_for_each_entry_safe(entry, n, head, list) {
187 efi_pstore_scan_sysfs_enter(entry, n, head);
188
189 size = efi_pstore_read_func(entry, data);
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200190 ret = efi_pstore_scan_sysfs_exit(entry, n, head,
191 size < 0);
192 if (ret)
193 return ret;
Seiji Aguchie0d59732013-10-30 15:27:26 -0400194 if (size)
195 break;
196 }
197 *pos = n;
198 return size;
199 }
200
201 list_for_each_entry_safe_from((*pos), n, head, list) {
202 efi_pstore_scan_sysfs_enter((*pos), n, head);
203
204 size = efi_pstore_read_func((*pos), data);
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200205 ret = efi_pstore_scan_sysfs_exit((*pos), n, head, size < 0);
206 if (ret)
207 return ret;
Seiji Aguchie0d59732013-10-30 15:27:26 -0400208 if (size)
209 break;
210 }
211 *pos = n;
212 return size;
213}
214
215/**
216 * efi_pstore_read
217 *
218 * This function returns a size of NVRAM entry logged via efi_pstore_write().
219 * The meaning and behavior of efi_pstore/pstore are as below.
220 *
221 * size > 0: Got data of an entry logged via efi_pstore_write() successfully,
222 * and pstore filesystem will continue reading subsequent entries.
223 * size == 0: Entry was not logged via efi_pstore_write(),
224 * and efi_pstore driver will continue reading subsequent entries.
225 * size < 0: Failed to get data of entry logging via efi_pstore_write(),
226 * and pstore will stop reading entry.
227 */
Matt Fleming04851772013-02-08 15:48:51 +0000228static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
229 int *count, struct timespec *timespec,
Aruna Balakrishnaiah9a4e1392013-08-16 13:53:19 -0700230 char **buf, bool *compressed,
Geliang Tang8cfc8dd2016-02-18 22:04:22 +0800231 ssize_t *ecc_notice_size,
Aruna Balakrishnaiah9a4e1392013-08-16 13:53:19 -0700232 struct pstore_info *psi)
Matt Fleming04851772013-02-08 15:48:51 +0000233{
234 struct pstore_read_data data;
Seiji Aguchie0d59732013-10-30 15:27:26 -0400235 ssize_t size;
Matt Fleming04851772013-02-08 15:48:51 +0000236
237 data.id = id;
238 data.type = type;
239 data.count = count;
240 data.timespec = timespec;
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -0700241 data.compressed = compressed;
Geliang Tang8cfc8dd2016-02-18 22:04:22 +0800242 data.ecc_notice_size = ecc_notice_size;
Matt Fleming04851772013-02-08 15:48:51 +0000243 data.buf = buf;
244
Seiji Aguchie0d59732013-10-30 15:27:26 -0400245 *data.buf = kzalloc(EFIVARS_DATA_SIZE_MAX, GFP_KERNEL);
246 if (!*data.buf)
247 return -ENOMEM;
248
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200249 if (efivar_entry_iter_begin()) {
250 kfree(*data.buf);
251 return -EINTR;
252 }
Seiji Aguchie0d59732013-10-30 15:27:26 -0400253 size = efi_pstore_sysfs_entry_iter(&data,
254 (struct efivar_entry **)&psi->data);
255 efivar_entry_iter_end();
256 if (size <= 0)
257 kfree(*data.buf);
258 return size;
Matt Fleming04851772013-02-08 15:48:51 +0000259}
260
261static int efi_pstore_write(enum pstore_type_id type,
262 enum kmsg_dump_reason reason, u64 *id,
Aruna Balakrishnaiahb3b515b2013-08-16 13:52:47 -0700263 unsigned int part, int count, bool compressed, size_t size,
Matt Fleming04851772013-02-08 15:48:51 +0000264 struct pstore_info *psi)
265{
266 char name[DUMP_NAME_LEN];
267 efi_char16_t efi_name[DUMP_NAME_LEN];
268 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
269 int i, ret = 0;
270
Aruna Balakrishnaiahf8c62f32013-08-16 13:57:51 -0700271 sprintf(name, "dump-type%u-%u-%d-%lu-%c", type, part, count,
272 get_seconds(), compressed ? 'C' : 'D');
Matt Fleming04851772013-02-08 15:48:51 +0000273
274 for (i = 0; i < DUMP_NAME_LEN; i++)
275 efi_name[i] = name[i];
276
277 efivar_entry_set_safe(efi_name, vendor, PSTORE_EFI_ATTRIBUTES,
278 !pstore_cannot_block_path(reason),
279 size, psi->buf);
280
281 if (reason == KMSG_DUMP_OOPS)
282 efivar_run_worker();
283
284 *id = part;
285 return ret;
286};
287
288struct pstore_erase_data {
289 u64 id;
290 enum pstore_type_id type;
291 int count;
292 struct timespec time;
293 efi_char16_t *name;
294};
295
296/*
297 * Clean up an entry with the same name
298 */
299static int efi_pstore_erase_func(struct efivar_entry *entry, void *data)
300{
301 struct pstore_erase_data *ed = data;
302 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
303 efi_char16_t efi_name_old[DUMP_NAME_LEN];
304 efi_char16_t *efi_name = ed->name;
Matt Fleminga614e192013-04-30 11:30:24 +0100305 unsigned long ucs2_len = ucs2_strlen(ed->name);
Matt Fleming04851772013-02-08 15:48:51 +0000306 char name_old[DUMP_NAME_LEN];
307 int i;
308
309 if (efi_guidcmp(entry->var.VendorGuid, vendor))
310 return 0;
311
Matt Fleminga614e192013-04-30 11:30:24 +0100312 if (ucs2_strncmp(entry->var.VariableName,
313 efi_name, (size_t)ucs2_len)) {
Matt Fleming04851772013-02-08 15:48:51 +0000314 /*
315 * Check if an old format, which doesn't support
316 * holding multiple logs, remains.
317 */
318 sprintf(name_old, "dump-type%u-%u-%lu", ed->type,
319 (unsigned int)ed->id, ed->time.tv_sec);
320
321 for (i = 0; i < DUMP_NAME_LEN; i++)
322 efi_name_old[i] = name_old[i];
323
Matt Fleminga614e192013-04-30 11:30:24 +0100324 if (ucs2_strncmp(entry->var.VariableName, efi_name_old,
325 ucs2_strlen(efi_name_old)))
Matt Fleming04851772013-02-08 15:48:51 +0000326 return 0;
327 }
328
Seiji Aguchie0d59732013-10-30 15:27:26 -0400329 if (entry->scanning) {
330 /*
331 * Skip deletion because this entry will be deleted
332 * after scanning is completed.
333 */
334 entry->deleting = true;
335 } else
336 list_del(&entry->list);
337
Matt Fleming04851772013-02-08 15:48:51 +0000338 /* found */
339 __efivar_entry_delete(entry);
Matt Fleming12abcfd2013-04-29 20:06:37 +0100340
Matt Fleming04851772013-02-08 15:48:51 +0000341 return 1;
342}
343
344static int efi_pstore_erase(enum pstore_type_id type, u64 id, int count,
345 struct timespec time, struct pstore_info *psi)
346{
347 struct pstore_erase_data edata;
Matt Fleming4ee39e92013-04-29 19:31:45 +0100348 struct efivar_entry *entry = NULL;
Matt Fleming04851772013-02-08 15:48:51 +0000349 char name[DUMP_NAME_LEN];
350 efi_char16_t efi_name[DUMP_NAME_LEN];
351 int found, i;
Madper Xiefdeadb42013-11-29 15:58:57 +0800352 unsigned int part;
Matt Fleming04851772013-02-08 15:48:51 +0000353
Madper Xiefdeadb42013-11-29 15:58:57 +0800354 do_div(id, 1000);
355 part = do_div(id, 100);
356 sprintf(name, "dump-type%u-%u-%d-%lu", type, part, count, time.tv_sec);
Matt Fleming04851772013-02-08 15:48:51 +0000357
358 for (i = 0; i < DUMP_NAME_LEN; i++)
359 efi_name[i] = name[i];
360
Madper Xiefdeadb42013-11-29 15:58:57 +0800361 edata.id = part;
Matt Fleming04851772013-02-08 15:48:51 +0000362 edata.type = type;
363 edata.count = count;
364 edata.time = time;
365 edata.name = efi_name;
366
Sylvain Chouleur21b3ddd2016-07-15 21:36:30 +0200367 if (efivar_entry_iter_begin())
368 return -EINTR;
Matt Fleming04851772013-02-08 15:48:51 +0000369 found = __efivar_entry_iter(efi_pstore_erase_func, &efivar_sysfs_list, &edata, &entry);
Matt Fleming04851772013-02-08 15:48:51 +0000370
Seiji Aguchie0d59732013-10-30 15:27:26 -0400371 if (found && !entry->scanning) {
372 efivar_entry_iter_end();
Matt Fleming04851772013-02-08 15:48:51 +0000373 efivar_unregister(entry);
Seiji Aguchie0d59732013-10-30 15:27:26 -0400374 } else
375 efivar_entry_iter_end();
Matt Fleming04851772013-02-08 15:48:51 +0000376
377 return 0;
378}
379
380static struct pstore_info efi_pstore_info = {
381 .owner = THIS_MODULE,
382 .name = "efi",
Luck, Tonydf36ac12013-12-18 15:17:10 -0800383 .flags = PSTORE_FLAGS_FRAGILE,
Matt Fleming04851772013-02-08 15:48:51 +0000384 .open = efi_pstore_open,
385 .close = efi_pstore_close,
386 .read = efi_pstore_read,
387 .write = efi_pstore_write,
388 .erase = efi_pstore_erase,
389};
390
391static __init int efivars_pstore_init(void)
392{
393 if (!efi_enabled(EFI_RUNTIME_SERVICES))
394 return 0;
395
396 if (!efivars_kobject())
397 return 0;
398
399 if (efivars_pstore_disable)
400 return 0;
401
402 efi_pstore_info.buf = kmalloc(4096, GFP_KERNEL);
403 if (!efi_pstore_info.buf)
404 return -ENOMEM;
405
406 efi_pstore_info.bufsize = 1024;
407 spin_lock_init(&efi_pstore_info.buf_lock);
408
Lenny Szubowicz0d838342013-06-28 16:14:11 -0400409 if (pstore_register(&efi_pstore_info)) {
410 kfree(efi_pstore_info.buf);
411 efi_pstore_info.buf = NULL;
412 efi_pstore_info.bufsize = 0;
413 }
Matt Fleming04851772013-02-08 15:48:51 +0000414
415 return 0;
416}
417
418static __exit void efivars_pstore_exit(void)
419{
Geliang Tangcae73162015-11-07 12:43:48 +0800420 if (!efi_pstore_info.bufsize)
421 return;
422
423 pstore_unregister(&efi_pstore_info);
424 kfree(efi_pstore_info.buf);
425 efi_pstore_info.buf = NULL;
426 efi_pstore_info.bufsize = 0;
Matt Fleming04851772013-02-08 15:48:51 +0000427}
428
429module_init(efivars_pstore_init);
430module_exit(efivars_pstore_exit);
431
432MODULE_DESCRIPTION("EFI variable backend for pstore");
433MODULE_LICENSE("GPL");
Ben Hutchings9ac4d5a2015-09-28 01:44:16 +0100434MODULE_ALIAS("platform:efivars");