sh_eth: fix EESIPR values for SH77{34|63}
[linux/fpc-iii.git] / drivers / firmware / efi / efi-pstore.c
blobf402ba2eed46461d0402c403db87b9a017399659
1 #include <linux/efi.h>
2 #include <linux/module.h>
3 #include <linux/pstore.h>
4 #include <linux/slab.h>
5 #include <linux/ucs2_string.h>
7 #define DUMP_NAME_LEN 52
9 static bool efivars_pstore_disable =
10 IS_ENABLED(CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE);
12 module_param_named(pstore_disable, efivars_pstore_disable, bool, 0644);
14 #define PSTORE_EFI_ATTRIBUTES \
15 (EFI_VARIABLE_NON_VOLATILE | \
16 EFI_VARIABLE_BOOTSERVICE_ACCESS | \
17 EFI_VARIABLE_RUNTIME_ACCESS)
19 static int efi_pstore_open(struct pstore_info *psi)
21 psi->data = NULL;
22 return 0;
25 static int efi_pstore_close(struct pstore_info *psi)
27 psi->data = NULL;
28 return 0;
31 struct pstore_read_data {
32 u64 *id;
33 enum pstore_type_id *type;
34 int *count;
35 struct timespec *timespec;
36 bool *compressed;
37 ssize_t *ecc_notice_size;
38 char **buf;
41 static inline u64 generic_id(unsigned long timestamp,
42 unsigned int part, int count)
44 return ((u64) timestamp * 100 + part) * 1000 + count;
47 static int efi_pstore_read_func(struct efivar_entry *entry, void *data)
49 efi_guid_t vendor = LINUX_EFI_CRASH_GUID;
50 struct pstore_read_data *cb_data = data;
51 char name[DUMP_NAME_LEN], data_type;
52 int i;
53 int cnt;
54 unsigned int part;
55 unsigned long time, size;
57 if (efi_guidcmp(entry->var.VendorGuid, vendor))
58 return 0;
60 for (i = 0; i < DUMP_NAME_LEN; i++)
61 name[i] = entry->var.VariableName[i];
63 if (sscanf(name, "dump-type%u-%u-%d-%lu-%c",
64 cb_data->type, &part, &cnt, &time, &data_type) == 5) {
65 *cb_data->id = generic_id(time, part, cnt);
66 *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;
73 *cb_data->ecc_notice_size = 0;
74 } else if (sscanf(name, "dump-type%u-%u-%d-%lu",
75 cb_data->type, &part, &cnt, &time) == 4) {
76 *cb_data->id = generic_id(time, part, cnt);
77 *cb_data->count = cnt;
78 cb_data->timespec->tv_sec = time;
79 cb_data->timespec->tv_nsec = 0;
80 *cb_data->compressed = false;
81 *cb_data->ecc_notice_size = 0;
82 } else if (sscanf(name, "dump-type%u-%u-%lu",
83 cb_data->type, &part, &time) == 3) {
85 * Check if an old format,
86 * which doesn't support holding
87 * multiple logs, remains.
89 *cb_data->id = generic_id(time, part, 0);
90 *cb_data->count = 0;
91 cb_data->timespec->tv_sec = time;
92 cb_data->timespec->tv_nsec = 0;
93 *cb_data->compressed = false;
94 *cb_data->ecc_notice_size = 0;
95 } else
96 return 0;
98 entry->var.DataSize = 1024;
99 __efivar_entry_get(entry, &entry->var.Attributes,
100 &entry->var.DataSize, entry->var.Data);
101 size = entry->var.DataSize;
102 memcpy(*cb_data->buf, entry->var.Data,
103 (size_t)min_t(unsigned long, EFIVARS_DATA_SIZE_MAX, size));
105 return size;
109 * efi_pstore_scan_sysfs_enter
110 * @pos: scanning entry
111 * @next: next entry
112 * @head: list head
114 static void efi_pstore_scan_sysfs_enter(struct efivar_entry *pos,
115 struct efivar_entry *next,
116 struct list_head *head)
118 pos->scanning = true;
119 if (&next->list != head)
120 next->scanning = true;
124 * __efi_pstore_scan_sysfs_exit
125 * @entry: deleting entry
126 * @turn_off_scanning: Check if a scanning flag should be turned off
128 static inline int __efi_pstore_scan_sysfs_exit(struct efivar_entry *entry,
129 bool turn_off_scanning)
131 if (entry->deleting) {
132 list_del(&entry->list);
133 efivar_entry_iter_end();
134 efivar_unregister(entry);
135 if (efivar_entry_iter_begin())
136 return -EINTR;
137 } else if (turn_off_scanning)
138 entry->scanning = false;
140 return 0;
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
150 static int efi_pstore_scan_sysfs_exit(struct efivar_entry *pos,
151 struct efivar_entry *next,
152 struct list_head *head, bool stop)
154 int ret = __efi_pstore_scan_sysfs_exit(pos, true);
156 if (ret)
157 return ret;
159 if (stop)
160 ret = __efi_pstore_scan_sysfs_exit(next, &next->list != head);
161 return ret;
165 * efi_pstore_sysfs_entry_iter
167 * @data: function-specific data to pass to callback
168 * @pos: entry to begin iterating from
170 * You MUST call efivar_enter_iter_begin() before this function, and
171 * efivar_entry_iter_end() afterwards.
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.
178 static int efi_pstore_sysfs_entry_iter(void *data, struct efivar_entry **pos)
180 struct efivar_entry *entry, *n;
181 struct list_head *head = &efivar_sysfs_list;
182 int size = 0;
183 int ret;
185 if (!*pos) {
186 list_for_each_entry_safe(entry, n, head, list) {
187 efi_pstore_scan_sysfs_enter(entry, n, head);
189 size = efi_pstore_read_func(entry, data);
190 ret = efi_pstore_scan_sysfs_exit(entry, n, head,
191 size < 0);
192 if (ret)
193 return ret;
194 if (size)
195 break;
197 *pos = n;
198 return size;
201 list_for_each_entry_safe_from((*pos), n, head, list) {
202 efi_pstore_scan_sysfs_enter((*pos), n, head);
204 size = efi_pstore_read_func((*pos), data);
205 ret = efi_pstore_scan_sysfs_exit((*pos), n, head, size < 0);
206 if (ret)
207 return ret;
208 if (size)
209 break;
211 *pos = n;
212 return size;
216 * efi_pstore_read
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.
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.
228 static ssize_t efi_pstore_read(u64 *id, enum pstore_type_id *type,
229 int *count, struct timespec *timespec,
230 char **buf, bool *compressed,
231 ssize_t *ecc_notice_size,
232 struct pstore_info *psi)
234 struct pstore_read_data data;
235 ssize_t size;
237 data.id = id;
238 data.type = type;
239 data.count = count;
240 data.timespec = timespec;
241 data.compressed = compressed;
242 data.ecc_notice_size = ecc_notice_size;
243 data.buf = buf;
245 *data.buf = kzalloc(EFIVARS_DATA_SIZE_MAX, GFP_KERNEL);
246 if (!*data.buf)
247 return -ENOMEM;
249 if (efivar_entry_iter_begin()) {
250 kfree(*data.buf);
251 return -EINTR;
253 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;
261 static int efi_pstore_write(enum pstore_type_id type,
262 enum kmsg_dump_reason reason, u64 *id,
263 unsigned int part, int count, bool compressed, size_t size,
264 struct pstore_info *psi)
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;
271 sprintf(name, "dump-type%u-%u-%d-%lu-%c", type, part, count,
272 get_seconds(), compressed ? 'C' : 'D');
274 for (i = 0; i < DUMP_NAME_LEN; i++)
275 efi_name[i] = name[i];
277 efivar_entry_set_safe(efi_name, vendor, PSTORE_EFI_ATTRIBUTES,
278 !pstore_cannot_block_path(reason),
279 size, psi->buf);
281 if (reason == KMSG_DUMP_OOPS)
282 efivar_run_worker();
284 *id = part;
285 return ret;
288 struct pstore_erase_data {
289 u64 id;
290 enum pstore_type_id type;
291 int count;
292 struct timespec time;
293 efi_char16_t *name;
297 * Clean up an entry with the same name
299 static int efi_pstore_erase_func(struct efivar_entry *entry, void *data)
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;
305 unsigned long ucs2_len = ucs2_strlen(ed->name);
306 char name_old[DUMP_NAME_LEN];
307 int i;
309 if (efi_guidcmp(entry->var.VendorGuid, vendor))
310 return 0;
312 if (ucs2_strncmp(entry->var.VariableName,
313 efi_name, (size_t)ucs2_len)) {
315 * Check if an old format, which doesn't support
316 * holding multiple logs, remains.
318 sprintf(name_old, "dump-type%u-%u-%lu", ed->type,
319 (unsigned int)ed->id, ed->time.tv_sec);
321 for (i = 0; i < DUMP_NAME_LEN; i++)
322 efi_name_old[i] = name_old[i];
324 if (ucs2_strncmp(entry->var.VariableName, efi_name_old,
325 ucs2_strlen(efi_name_old)))
326 return 0;
329 if (entry->scanning) {
331 * Skip deletion because this entry will be deleted
332 * after scanning is completed.
334 entry->deleting = true;
335 } else
336 list_del(&entry->list);
338 /* found */
339 __efivar_entry_delete(entry);
341 return 1;
344 static int efi_pstore_erase(enum pstore_type_id type, u64 id, int count,
345 struct timespec time, struct pstore_info *psi)
347 struct pstore_erase_data edata;
348 struct efivar_entry *entry = NULL;
349 char name[DUMP_NAME_LEN];
350 efi_char16_t efi_name[DUMP_NAME_LEN];
351 int found, i;
352 unsigned int part;
354 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);
358 for (i = 0; i < DUMP_NAME_LEN; i++)
359 efi_name[i] = name[i];
361 edata.id = part;
362 edata.type = type;
363 edata.count = count;
364 edata.time = time;
365 edata.name = efi_name;
367 if (efivar_entry_iter_begin())
368 return -EINTR;
369 found = __efivar_entry_iter(efi_pstore_erase_func, &efivar_sysfs_list, &edata, &entry);
371 if (found && !entry->scanning) {
372 efivar_entry_iter_end();
373 efivar_unregister(entry);
374 } else
375 efivar_entry_iter_end();
377 return 0;
380 static struct pstore_info efi_pstore_info = {
381 .owner = THIS_MODULE,
382 .name = "efi",
383 .flags = PSTORE_FLAGS_DMESG,
384 .open = efi_pstore_open,
385 .close = efi_pstore_close,
386 .read = efi_pstore_read,
387 .write = efi_pstore_write,
388 .erase = efi_pstore_erase,
391 static __init int efivars_pstore_init(void)
393 if (!efi_enabled(EFI_RUNTIME_SERVICES))
394 return 0;
396 if (!efivars_kobject())
397 return 0;
399 if (efivars_pstore_disable)
400 return 0;
402 efi_pstore_info.buf = kmalloc(4096, GFP_KERNEL);
403 if (!efi_pstore_info.buf)
404 return -ENOMEM;
406 efi_pstore_info.bufsize = 1024;
407 spin_lock_init(&efi_pstore_info.buf_lock);
409 if (pstore_register(&efi_pstore_info)) {
410 kfree(efi_pstore_info.buf);
411 efi_pstore_info.buf = NULL;
412 efi_pstore_info.bufsize = 0;
415 return 0;
418 static __exit void efivars_pstore_exit(void)
420 if (!efi_pstore_info.bufsize)
421 return;
423 pstore_unregister(&efi_pstore_info);
424 kfree(efi_pstore_info.buf);
425 efi_pstore_info.buf = NULL;
426 efi_pstore_info.bufsize = 0;
429 module_init(efivars_pstore_init);
430 module_exit(efivars_pstore_exit);
432 MODULE_DESCRIPTION("EFI variable backend for pstore");
433 MODULE_LICENSE("GPL");
434 MODULE_ALIAS("platform:efivars");