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 66
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
)
25 static int efi_pstore_close(struct pstore_info
*psi
)
31 static inline u64
generic_id(unsigned long timestamp
,
32 unsigned int part
, int count
)
34 return ((u64
) timestamp
* 100 + part
) * 1000 + count
;
37 static int efi_pstore_read_func(struct efivar_entry
*entry
,
38 struct pstore_record
*record
)
40 efi_guid_t vendor
= LINUX_EFI_CRASH_GUID
;
41 char name
[DUMP_NAME_LEN
], data_type
;
45 unsigned long time
, size
;
47 if (efi_guidcmp(entry
->var
.VendorGuid
, vendor
))
50 for (i
= 0; i
< DUMP_NAME_LEN
; i
++)
51 name
[i
] = entry
->var
.VariableName
[i
];
53 if (sscanf(name
, "dump-type%u-%u-%d-%lu-%c",
54 &record
->type
, &part
, &cnt
, &time
, &data_type
) == 5) {
55 record
->id
= generic_id(time
, part
, cnt
);
58 record
->time
.tv_sec
= time
;
59 record
->time
.tv_nsec
= 0;
61 record
->compressed
= true;
63 record
->compressed
= false;
64 record
->ecc_notice_size
= 0;
65 } else if (sscanf(name
, "dump-type%u-%u-%d-%lu",
66 &record
->type
, &part
, &cnt
, &time
) == 4) {
67 record
->id
= generic_id(time
, part
, cnt
);
70 record
->time
.tv_sec
= time
;
71 record
->time
.tv_nsec
= 0;
72 record
->compressed
= false;
73 record
->ecc_notice_size
= 0;
74 } else if (sscanf(name
, "dump-type%u-%u-%lu",
75 &record
->type
, &part
, &time
) == 3) {
77 * Check if an old format,
78 * which doesn't support holding
79 * multiple logs, remains.
81 record
->id
= generic_id(time
, part
, 0);
84 record
->time
.tv_sec
= time
;
85 record
->time
.tv_nsec
= 0;
86 record
->compressed
= false;
87 record
->ecc_notice_size
= 0;
91 entry
->var
.DataSize
= 1024;
92 __efivar_entry_get(entry
, &entry
->var
.Attributes
,
93 &entry
->var
.DataSize
, entry
->var
.Data
);
94 size
= entry
->var
.DataSize
;
95 memcpy(record
->buf
, entry
->var
.Data
,
96 (size_t)min_t(unsigned long, EFIVARS_DATA_SIZE_MAX
, size
));
102 * efi_pstore_scan_sysfs_enter
103 * @pos: scanning entry
107 static void efi_pstore_scan_sysfs_enter(struct efivar_entry
*pos
,
108 struct efivar_entry
*next
,
109 struct list_head
*head
)
111 pos
->scanning
= true;
112 if (&next
->list
!= head
)
113 next
->scanning
= true;
117 * __efi_pstore_scan_sysfs_exit
118 * @entry: deleting entry
119 * @turn_off_scanning: Check if a scanning flag should be turned off
121 static inline int __efi_pstore_scan_sysfs_exit(struct efivar_entry
*entry
,
122 bool turn_off_scanning
)
124 if (entry
->deleting
) {
125 list_del(&entry
->list
);
126 efivar_entry_iter_end();
127 efivar_unregister(entry
);
128 if (efivar_entry_iter_begin())
130 } else if (turn_off_scanning
)
131 entry
->scanning
= false;
137 * efi_pstore_scan_sysfs_exit
138 * @pos: scanning entry
141 * @stop: a flag checking if scanning will stop
143 static int efi_pstore_scan_sysfs_exit(struct efivar_entry
*pos
,
144 struct efivar_entry
*next
,
145 struct list_head
*head
, bool stop
)
147 int ret
= __efi_pstore_scan_sysfs_exit(pos
, true);
153 ret
= __efi_pstore_scan_sysfs_exit(next
, &next
->list
!= head
);
158 * efi_pstore_sysfs_entry_iter
160 * @record: pstore record to pass to callback
162 * You MUST call efivar_enter_iter_begin() before this function, and
163 * efivar_entry_iter_end() afterwards.
166 static int efi_pstore_sysfs_entry_iter(struct pstore_record
*record
)
168 struct efivar_entry
**pos
= (struct efivar_entry
**)&record
->psi
->data
;
169 struct efivar_entry
*entry
, *n
;
170 struct list_head
*head
= &efivar_sysfs_list
;
175 list_for_each_entry_safe(entry
, n
, head
, list
) {
176 efi_pstore_scan_sysfs_enter(entry
, n
, head
);
178 size
= efi_pstore_read_func(entry
, record
);
179 ret
= efi_pstore_scan_sysfs_exit(entry
, n
, head
,
190 list_for_each_entry_safe_from((*pos
), n
, head
, list
) {
191 efi_pstore_scan_sysfs_enter((*pos
), n
, head
);
193 size
= efi_pstore_read_func((*pos
), record
);
194 ret
= efi_pstore_scan_sysfs_exit((*pos
), n
, head
, size
< 0);
207 * This function returns a size of NVRAM entry logged via efi_pstore_write().
208 * The meaning and behavior of efi_pstore/pstore are as below.
210 * size > 0: Got data of an entry logged via efi_pstore_write() successfully,
211 * and pstore filesystem will continue reading subsequent entries.
212 * size == 0: Entry was not logged via efi_pstore_write(),
213 * and efi_pstore driver will continue reading subsequent entries.
214 * size < 0: Failed to get data of entry logging via efi_pstore_write(),
215 * and pstore will stop reading entry.
217 static ssize_t
efi_pstore_read(struct pstore_record
*record
)
221 record
->buf
= kzalloc(EFIVARS_DATA_SIZE_MAX
, GFP_KERNEL
);
225 if (efivar_entry_iter_begin()) {
229 size
= efi_pstore_sysfs_entry_iter(record
);
230 efivar_entry_iter_end();
240 static int efi_pstore_write(struct pstore_record
*record
)
242 char name
[DUMP_NAME_LEN
];
243 efi_char16_t efi_name
[DUMP_NAME_LEN
];
244 efi_guid_t vendor
= LINUX_EFI_CRASH_GUID
;
247 record
->id
= generic_id(record
->time
.tv_sec
, record
->part
,
250 /* Since we copy the entire length of name, make sure it is wiped. */
251 memset(name
, 0, sizeof(name
));
253 snprintf(name
, sizeof(name
), "dump-type%u-%u-%d-%lu-%c",
254 record
->type
, record
->part
, record
->count
,
255 record
->time
.tv_sec
, record
->compressed
? 'C' : 'D');
257 for (i
= 0; i
< DUMP_NAME_LEN
; i
++)
258 efi_name
[i
] = name
[i
];
260 ret
= efivar_entry_set_safe(efi_name
, vendor
, PSTORE_EFI_ATTRIBUTES
,
261 !pstore_cannot_block_path(record
->reason
),
262 record
->size
, record
->psi
->buf
);
264 if (record
->reason
== KMSG_DUMP_OOPS
)
271 * Clean up an entry with the same name
273 static int efi_pstore_erase_func(struct efivar_entry
*entry
, void *data
)
275 efi_char16_t
*efi_name
= data
;
276 efi_guid_t vendor
= LINUX_EFI_CRASH_GUID
;
277 unsigned long ucs2_len
= ucs2_strlen(efi_name
);
279 if (efi_guidcmp(entry
->var
.VendorGuid
, vendor
))
282 if (ucs2_strncmp(entry
->var
.VariableName
, efi_name
, (size_t)ucs2_len
))
285 if (entry
->scanning
) {
287 * Skip deletion because this entry will be deleted
288 * after scanning is completed.
290 entry
->deleting
= true;
292 list_del(&entry
->list
);
295 __efivar_entry_delete(entry
);
300 static int efi_pstore_erase_name(const char *name
)
302 struct efivar_entry
*entry
= NULL
;
303 efi_char16_t efi_name
[DUMP_NAME_LEN
];
306 for (i
= 0; i
< DUMP_NAME_LEN
; i
++) {
307 efi_name
[i
] = name
[i
];
312 if (efivar_entry_iter_begin())
315 found
= __efivar_entry_iter(efi_pstore_erase_func
, &efivar_sysfs_list
,
317 efivar_entry_iter_end();
319 if (found
&& !entry
->scanning
)
320 efivar_unregister(entry
);
322 return found
? 0 : -ENOENT
;
325 static int efi_pstore_erase(struct pstore_record
*record
)
327 char name
[DUMP_NAME_LEN
];
330 snprintf(name
, sizeof(name
), "dump-type%u-%u-%d-%lu",
331 record
->type
, record
->part
, record
->count
,
332 record
->time
.tv_sec
);
333 ret
= efi_pstore_erase_name(name
);
337 snprintf(name
, sizeof(name
), "dump-type%u-%u-%lu",
338 record
->type
, record
->part
, record
->time
.tv_sec
);
339 ret
= efi_pstore_erase_name(name
);
344 static struct pstore_info efi_pstore_info
= {
345 .owner
= THIS_MODULE
,
347 .flags
= PSTORE_FLAGS_DMESG
,
348 .open
= efi_pstore_open
,
349 .close
= efi_pstore_close
,
350 .read
= efi_pstore_read
,
351 .write
= efi_pstore_write
,
352 .erase
= efi_pstore_erase
,
355 static __init
int efivars_pstore_init(void)
357 if (!efi_enabled(EFI_RUNTIME_SERVICES
))
360 if (!efivars_kobject())
363 if (efivars_pstore_disable
)
366 efi_pstore_info
.buf
= kmalloc(4096, GFP_KERNEL
);
367 if (!efi_pstore_info
.buf
)
370 efi_pstore_info
.bufsize
= 1024;
371 spin_lock_init(&efi_pstore_info
.buf_lock
);
373 if (pstore_register(&efi_pstore_info
)) {
374 kfree(efi_pstore_info
.buf
);
375 efi_pstore_info
.buf
= NULL
;
376 efi_pstore_info
.bufsize
= 0;
382 static __exit
void efivars_pstore_exit(void)
384 if (!efi_pstore_info
.bufsize
)
387 pstore_unregister(&efi_pstore_info
);
388 kfree(efi_pstore_info
.buf
);
389 efi_pstore_info
.buf
= NULL
;
390 efi_pstore_info
.bufsize
= 0;
393 module_init(efivars_pstore_init
);
394 module_exit(efivars_pstore_exit
);
396 MODULE_DESCRIPTION("EFI variable backend for pstore");
397 MODULE_LICENSE("GPL");
398 MODULE_ALIAS("platform:efivars");