blob: 14658b009f1bb8b1d114021b68d5f56d18ae4ea0 [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001// SPDX-License-Identifier: GPL-2.0-only
Tony Luckca01d6d2010-12-28 14:25:21 -08002/*
3 * Persistent Storage - ramfs parts.
4 *
5 * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
Tony Luckca01d6d2010-12-28 14:25:21 -08006 */
7
8#include <linux/module.h>
9#include <linux/fs.h>
10#include <linux/fsnotify.h>
11#include <linux/pagemap.h>
12#include <linux/highmem.h>
13#include <linux/time.h>
14#include <linux/init.h>
Luck, Tony6dda9262011-08-11 15:14:39 -070015#include <linux/list.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080016#include <linux/string.h>
17#include <linux/mount.h>
Anton Vorontsov060287b2012-07-09 17:10:41 -070018#include <linux/seq_file.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080019#include <linux/ramfs.h>
Luck, Tony366f7e72011-03-18 15:33:43 -070020#include <linux/parser.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080021#include <linux/sched.h>
22#include <linux/magic.h>
23#include <linux/pstore.h>
24#include <linux/slab.h>
25#include <linux/uaccess.h>
26
27#include "internal.h"
28
29#define PSTORE_NAMELEN 64
30
Kees Cookdb234912020-05-04 19:07:04 -070031static DEFINE_MUTEX(records_list_lock);
Kees Cook47af61f2020-05-05 23:32:40 -070032static LIST_HEAD(records_list);
Luck, Tony6dda9262011-08-11 15:14:39 -070033
Kees Cook27e50412020-05-04 19:43:41 -070034static DEFINE_MUTEX(pstore_sb_lock);
35static struct super_block *pstore_sb;
36
Tony Luckca01d6d2010-12-28 14:25:21 -080037struct pstore_private {
Luck, Tony6dda9262011-08-11 15:14:39 -070038 struct list_head list;
Kees Cook609e28bb2020-05-04 19:46:53 -070039 struct dentry *dentry;
Kees Cook83f70f02017-03-04 23:12:24 -080040 struct pstore_record *record;
41 size_t total_size;
Tony Luckca01d6d2010-12-28 14:25:21 -080042};
43
Anton Vorontsov060287b2012-07-09 17:10:41 -070044struct pstore_ftrace_seq_data {
45 const void *ptr;
46 size_t off;
47 size_t size;
48};
49
50#define REC_SIZE sizeof(struct pstore_ftrace_record)
51
Kees Cook1dfff7d2017-03-04 22:46:41 -080052static void free_pstore_private(struct pstore_private *private)
53{
54 if (!private)
55 return;
Kees Cook83f70f02017-03-04 23:12:24 -080056 if (private->record) {
57 kfree(private->record->buf);
58 kfree(private->record);
59 }
Kees Cook1dfff7d2017-03-04 22:46:41 -080060 kfree(private);
61}
62
Anton Vorontsov060287b2012-07-09 17:10:41 -070063static void *pstore_ftrace_seq_start(struct seq_file *s, loff_t *pos)
64{
65 struct pstore_private *ps = s->private;
66 struct pstore_ftrace_seq_data *data;
67
68 data = kzalloc(sizeof(*data), GFP_KERNEL);
69 if (!data)
70 return NULL;
71
Kees Cook83f70f02017-03-04 23:12:24 -080072 data->off = ps->total_size % REC_SIZE;
Anton Vorontsov060287b2012-07-09 17:10:41 -070073 data->off += *pos * REC_SIZE;
Kees Cook83f70f02017-03-04 23:12:24 -080074 if (data->off + REC_SIZE > ps->total_size) {
Anton Vorontsov060287b2012-07-09 17:10:41 -070075 kfree(data);
76 return NULL;
77 }
78
79 return data;
80
81}
82
83static void pstore_ftrace_seq_stop(struct seq_file *s, void *v)
84{
85 kfree(v);
86}
87
88static void *pstore_ftrace_seq_next(struct seq_file *s, void *v, loff_t *pos)
89{
90 struct pstore_private *ps = s->private;
91 struct pstore_ftrace_seq_data *data = v;
92
Vasily Averin6c871b72020-02-25 11:11:20 +030093 (*pos)++;
Anton Vorontsov060287b2012-07-09 17:10:41 -070094 data->off += REC_SIZE;
Kees Cook83f70f02017-03-04 23:12:24 -080095 if (data->off + REC_SIZE > ps->total_size)
Anton Vorontsov060287b2012-07-09 17:10:41 -070096 return NULL;
97
Anton Vorontsov060287b2012-07-09 17:10:41 -070098 return data;
99}
100
101static int pstore_ftrace_seq_show(struct seq_file *s, void *v)
102{
103 struct pstore_private *ps = s->private;
104 struct pstore_ftrace_seq_data *data = v;
Kees Cook83f70f02017-03-04 23:12:24 -0800105 struct pstore_ftrace_record *rec;
106
Vasily Averin6c871b72020-02-25 11:11:20 +0300107 if (!data)
108 return 0;
109
Kees Cook83f70f02017-03-04 23:12:24 -0800110 rec = (struct pstore_ftrace_record *)(ps->record->buf + data->off);
Anton Vorontsov060287b2012-07-09 17:10:41 -0700111
Sakari Ailusd75f7732019-03-25 21:32:28 +0200112 seq_printf(s, "CPU:%d ts:%llu %08lx %08lx %ps <- %pS\n",
Joel Fernandesfbccdeb2016-10-20 00:34:05 -0700113 pstore_ftrace_decode_cpu(rec),
114 pstore_ftrace_read_timestamp(rec),
115 rec->ip, rec->parent_ip, (void *)rec->ip,
116 (void *)rec->parent_ip);
Anton Vorontsov060287b2012-07-09 17:10:41 -0700117
118 return 0;
119}
120
121static const struct seq_operations pstore_ftrace_seq_ops = {
122 .start = pstore_ftrace_seq_start,
123 .next = pstore_ftrace_seq_next,
124 .stop = pstore_ftrace_seq_stop,
125 .show = pstore_ftrace_seq_show,
126};
127
Tony Luckfbe0aa12011-03-17 16:29:15 -0700128static ssize_t pstore_file_read(struct file *file, char __user *userbuf,
129 size_t count, loff_t *ppos)
130{
Anton Vorontsov060287b2012-07-09 17:10:41 -0700131 struct seq_file *sf = file->private_data;
132 struct pstore_private *ps = sf->private;
Tony Luckfbe0aa12011-03-17 16:29:15 -0700133
Kees Cook83f70f02017-03-04 23:12:24 -0800134 if (ps->record->type == PSTORE_TYPE_FTRACE)
Anton Vorontsov060287b2012-07-09 17:10:41 -0700135 return seq_read(file, userbuf, count, ppos);
Kees Cook83f70f02017-03-04 23:12:24 -0800136 return simple_read_from_buffer(userbuf, count, ppos,
137 ps->record->buf, ps->total_size);
Tony Luckfbe0aa12011-03-17 16:29:15 -0700138}
139
Anton Vorontsov060287b2012-07-09 17:10:41 -0700140static int pstore_file_open(struct inode *inode, struct file *file)
141{
142 struct pstore_private *ps = inode->i_private;
143 struct seq_file *sf;
144 int err;
145 const struct seq_operations *sops = NULL;
146
Kees Cook83f70f02017-03-04 23:12:24 -0800147 if (ps->record->type == PSTORE_TYPE_FTRACE)
Anton Vorontsov060287b2012-07-09 17:10:41 -0700148 sops = &pstore_ftrace_seq_ops;
149
150 err = seq_open(file, sops);
151 if (err < 0)
152 return err;
153
154 sf = file->private_data;
155 sf->private = ps;
156
157 return 0;
158}
159
Andrew Morton965c8e52012-12-17 15:59:39 -0800160static loff_t pstore_file_llseek(struct file *file, loff_t off, int whence)
Anton Vorontsov060287b2012-07-09 17:10:41 -0700161{
162 struct seq_file *sf = file->private_data;
163
164 if (sf->op)
Andrew Morton965c8e52012-12-17 15:59:39 -0800165 return seq_lseek(file, off, whence);
166 return default_llseek(file, off, whence);
Anton Vorontsov060287b2012-07-09 17:10:41 -0700167}
168
Tony Luckfbe0aa12011-03-17 16:29:15 -0700169static const struct file_operations pstore_file_operations = {
Anton Vorontsov060287b2012-07-09 17:10:41 -0700170 .open = pstore_file_open,
171 .read = pstore_file_read,
172 .llseek = pstore_file_llseek,
173 .release = seq_release,
Tony Luckfbe0aa12011-03-17 16:29:15 -0700174};
Tony Luckca01d6d2010-12-28 14:25:21 -0800175
176/*
177 * When a file is unlinked from our file system we call the
178 * platform driver to erase the record from persistent store.
179 */
180static int pstore_unlink(struct inode *dir, struct dentry *dentry)
181{
David Howells2b0143b2015-03-17 22:25:59 +0000182 struct pstore_private *p = d_inode(dentry)->i_private;
Kees Cook83f70f02017-03-04 23:12:24 -0800183 struct pstore_record *record = p->record;
Kees Cook7a0ad542020-05-04 19:41:30 -0700184 int rc = 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800185
Kees Cooka61072a2017-03-04 23:31:19 -0800186 if (!record->psi->erase)
Aruna Balakrishnaiahbf288332013-06-25 14:33:56 +0530187 return -EPERM;
Kees Cooka61072a2017-03-04 23:31:19 -0800188
Kees Cook7a0ad542020-05-04 19:41:30 -0700189 /* Make sure we can't race while removing this file. */
190 mutex_lock(&records_list_lock);
191 if (!list_empty(&p->list))
192 list_del_init(&p->list);
193 else
194 rc = -ENOENT;
Kees Cook609e28bb2020-05-04 19:46:53 -0700195 p->dentry = NULL;
Kees Cook7a0ad542020-05-04 19:41:30 -0700196 mutex_unlock(&records_list_lock);
197 if (rc)
198 return rc;
199
Kees Cooka61072a2017-03-04 23:31:19 -0800200 mutex_lock(&record->psi->read_mutex);
201 record->psi->erase(record);
202 mutex_unlock(&record->psi->read_mutex);
Tony Luckca01d6d2010-12-28 14:25:21 -0800203
204 return simple_unlink(dir, dentry);
205}
206
Tony Lucka872d512011-03-18 11:44:48 -0700207static void pstore_evict_inode(struct inode *inode)
208{
Luck, Tony6dda9262011-08-11 15:14:39 -0700209 struct pstore_private *p = inode->i_private;
Luck, Tony6dda9262011-08-11 15:14:39 -0700210
Jan Karadbd57682012-05-03 14:48:02 +0200211 clear_inode(inode);
Kees Cook7a0ad542020-05-04 19:41:30 -0700212 free_pstore_private(p);
Tony Lucka872d512011-03-18 11:44:48 -0700213}
214
Tony Luckca01d6d2010-12-28 14:25:21 -0800215static const struct inode_operations pstore_dir_inode_operations = {
216 .lookup = simple_lookup,
217 .unlink = pstore_unlink,
218};
219
Al Viro22a71c32012-03-22 12:26:35 -0400220static struct inode *pstore_get_inode(struct super_block *sb)
Tony Luckfbe0aa12011-03-17 16:29:15 -0700221{
222 struct inode *inode = new_inode(sb);
Tony Luckfbe0aa12011-03-17 16:29:15 -0700223 if (inode) {
224 inode->i_ino = get_next_ino();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700225 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Tony Luckfbe0aa12011-03-17 16:29:15 -0700226 }
227 return inode;
228}
229
Luck, Tony366f7e72011-03-18 15:33:43 -0700230enum {
231 Opt_kmsg_bytes, Opt_err
232};
233
234static const match_table_t tokens = {
235 {Opt_kmsg_bytes, "kmsg_bytes=%u"},
236 {Opt_err, NULL}
237};
238
239static void parse_options(char *options)
240{
241 char *p;
242 substring_t args[MAX_OPT_ARGS];
243 int option;
244
245 if (!options)
246 return;
247
248 while ((p = strsep(&options, ",")) != NULL) {
249 int token;
250
251 if (!*p)
252 continue;
253
254 token = match_token(p, tokens, args);
255 switch (token) {
256 case Opt_kmsg_bytes:
257 if (!match_int(&args[0], &option))
258 pstore_set_kmsg_bytes(option);
259 break;
260 }
261 }
262}
263
David Howells349d7432017-07-05 16:24:34 +0100264/*
265 * Display the mount options in /proc/mounts.
266 */
267static int pstore_show_options(struct seq_file *m, struct dentry *root)
268{
Vasile-Laurentiu Stanimir26fecbf2020-11-04 15:05:32 +0200269 if (kmsg_bytes != CONFIG_PSTORE_DEFAULT_KMSG_BYTES)
David Howells349d7432017-07-05 16:24:34 +0100270 seq_printf(m, ",kmsg_bytes=%lu", kmsg_bytes);
271 return 0;
272}
273
Luck, Tony366f7e72011-03-18 15:33:43 -0700274static int pstore_remount(struct super_block *sb, int *flags, char *data)
275{
Theodore Ts'o02b99842014-03-13 10:14:33 -0400276 sync_filesystem(sb);
Luck, Tony366f7e72011-03-18 15:33:43 -0700277 parse_options(data);
278
279 return 0;
280}
281
Tony Luckca01d6d2010-12-28 14:25:21 -0800282static const struct super_operations pstore_ops = {
283 .statfs = simple_statfs,
284 .drop_inode = generic_delete_inode,
Tony Lucka872d512011-03-18 11:44:48 -0700285 .evict_inode = pstore_evict_inode,
Luck, Tony366f7e72011-03-18 15:33:43 -0700286 .remount_fs = pstore_remount,
David Howells349d7432017-07-05 16:24:34 +0100287 .show_options = pstore_show_options,
Tony Luckca01d6d2010-12-28 14:25:21 -0800288};
289
Kees Cook27e50412020-05-04 19:43:41 -0700290static struct dentry *psinfo_lock_root(void)
Tony Luckca01d6d2010-12-28 14:25:21 -0800291{
Kees Cook27e50412020-05-04 19:43:41 -0700292 struct dentry *root;
293
294 mutex_lock(&pstore_sb_lock);
295 /*
296 * Having no backend is fine -- no records appear.
297 * Not being mounted is fine -- nothing to do.
298 */
299 if (!psinfo || !pstore_sb) {
300 mutex_unlock(&pstore_sb_lock);
301 return NULL;
302 }
303
304 root = pstore_sb->s_root;
305 inode_lock(d_inode(root));
306 mutex_unlock(&pstore_sb_lock);
307
308 return root;
Tony Luckca01d6d2010-12-28 14:25:21 -0800309}
310
Kees Cook609e28bb2020-05-04 19:46:53 -0700311int pstore_put_backend_records(struct pstore_info *psi)
312{
313 struct pstore_private *pos, *tmp;
314 struct dentry *root;
315 int rc = 0;
316
317 root = psinfo_lock_root();
318 if (!root)
319 return 0;
320
321 mutex_lock(&records_list_lock);
322 list_for_each_entry_safe(pos, tmp, &records_list, list) {
323 if (pos->record->psi == psi) {
324 list_del_init(&pos->list);
325 rc = simple_unlink(d_inode(root), pos->dentry);
326 if (WARN_ON(rc))
327 break;
328 d_drop(pos->dentry);
329 dput(pos->dentry);
330 pos->dentry = NULL;
331 }
332 }
333 mutex_unlock(&records_list_lock);
334
335 inode_unlock(d_inode(root));
336
337 return rc;
338}
339
Tony Luckca01d6d2010-12-28 14:25:21 -0800340/*
341 * Make a regular file in the root directory of our file system.
342 * Load it up with "size" bytes of data from "buf".
343 * Set the mtime & ctime to the date that this record was originally stored.
344 */
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700345int pstore_mkfile(struct dentry *root, struct pstore_record *record)
Tony Luckca01d6d2010-12-28 14:25:21 -0800346{
Tony Luckca01d6d2010-12-28 14:25:21 -0800347 struct dentry *dentry;
348 struct inode *inode;
Luck, Tony6dda9262011-08-11 15:14:39 -0700349 int rc = 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800350 char name[PSTORE_NAMELEN];
Luck, Tony6dda9262011-08-11 15:14:39 -0700351 struct pstore_private *private, *pos;
Kees Cook1edd1aa2017-03-03 18:16:32 -0800352 size_t size = record->size + record->ecc_notice_size;
Luck, Tony6dda9262011-08-11 15:14:39 -0700353
Kees Cook27e50412020-05-04 19:43:41 -0700354 if (WARN_ON(!inode_is_locked(d_inode(root))))
355 return -EINVAL;
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700356
Kees Cook27e50412020-05-04 19:43:41 -0700357 rc = -EEXIST;
358 /* Skip records that are already present in the filesystem. */
Kees Cookdb234912020-05-04 19:07:04 -0700359 mutex_lock(&records_list_lock);
Kees Cook47af61f2020-05-05 23:32:40 -0700360 list_for_each_entry(pos, &records_list, list) {
Kees Cook83f70f02017-03-04 23:12:24 -0800361 if (pos->record->type == record->type &&
362 pos->record->id == record->id &&
Kees Cook27e50412020-05-04 19:43:41 -0700363 pos->record->psi == record->psi)
364 goto fail;
Luck, Tony6dda9262011-08-11 15:14:39 -0700365 }
Tony Luckca01d6d2010-12-28 14:25:21 -0800366
367 rc = -ENOMEM;
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700368 inode = pstore_get_inode(root->d_sb);
Tony Luckca01d6d2010-12-28 14:25:21 -0800369 if (!inode)
370 goto fail;
Al Viro22a71c32012-03-22 12:26:35 -0400371 inode->i_mode = S_IFREG | 0444;
372 inode->i_fop = &pstore_file_operations;
Joel Fernandes (Google)f0f23e52018-11-03 16:38:16 -0700373 scnprintf(name, sizeof(name), "%s-%s-%llu%s",
374 pstore_type_to_name(record->type),
375 record->psi->name, record->id,
376 record->compressed ? ".enc.z" : "");
Tony Luckca01d6d2010-12-28 14:25:21 -0800377
Norbert Manthey4c6d80e2019-07-05 15:06:00 +0200378 private = kzalloc(sizeof(*private), GFP_KERNEL);
379 if (!private)
380 goto fail_inode;
381
Tony Luckca01d6d2010-12-28 14:25:21 -0800382 dentry = d_alloc_name(root, name);
Dan Carpenterc39524e2013-08-14 10:55:49 -0700383 if (!dentry)
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700384 goto fail_private;
Tony Luckca01d6d2010-12-28 14:25:21 -0800385
Kees Cook609e28bb2020-05-04 19:46:53 -0700386 private->dentry = dentry;
Norbert Manthey4c6d80e2019-07-05 15:06:00 +0200387 private->record = record;
Kees Cook83f70f02017-03-04 23:12:24 -0800388 inode->i_size = private->total_size = size;
Tony Luckca01d6d2010-12-28 14:25:21 -0800389 inode->i_private = private;
390
Kees Cook1edd1aa2017-03-03 18:16:32 -0800391 if (record->time.tv_sec)
392 inode->i_mtime = inode->i_ctime = record->time;
Tony Luckca01d6d2010-12-28 14:25:21 -0800393
Tony Luckfbe0aa12011-03-17 16:29:15 -0700394 d_add(dentry, inode);
Tony Luckca01d6d2010-12-28 14:25:21 -0800395
Kees Cook47af61f2020-05-05 23:32:40 -0700396 list_add(&private->list, &records_list);
Kees Cookdb234912020-05-04 19:07:04 -0700397 mutex_unlock(&records_list_lock);
Luck, Tony6dda9262011-08-11 15:14:39 -0700398
Tony Luckfbe0aa12011-03-17 16:29:15 -0700399 return 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800400
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700401fail_private:
Kees Cook1dfff7d2017-03-04 22:46:41 -0800402 free_pstore_private(private);
Norbert Manthey4c6d80e2019-07-05 15:06:00 +0200403fail_inode:
Tony Luckca01d6d2010-12-28 14:25:21 -0800404 iput(inode);
Tony Luckca01d6d2010-12-28 14:25:21 -0800405fail:
Kees Cook27e50412020-05-04 19:43:41 -0700406 mutex_unlock(&records_list_lock);
Tony Luckca01d6d2010-12-28 14:25:21 -0800407 return rc;
408}
409
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700410/*
411 * Read all the records from the persistent store. Create
412 * files in our filesystem. Don't warn about -EEXIST errors
413 * when we are re-scanning the backing store looking to add new
414 * error records.
415 */
416void pstore_get_records(int quiet)
417{
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700418 struct dentry *root;
419
Kees Cook27e50412020-05-04 19:43:41 -0700420 root = psinfo_lock_root();
421 if (!root)
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700422 return;
423
Kees Cook27e50412020-05-04 19:43:41 -0700424 pstore_get_backend_records(psinfo, root, quiet);
Kees Cook3a7d2fd2017-04-27 15:53:21 -0700425 inode_unlock(d_inode(root));
426}
427
Anton Vorontsov364ed2f2012-05-26 06:07:53 -0700428static int pstore_fill_super(struct super_block *sb, void *data, int silent)
Tony Luckca01d6d2010-12-28 14:25:21 -0800429{
Al Viro318ceed2012-02-12 22:08:01 -0500430 struct inode *inode;
Tony Luckca01d6d2010-12-28 14:25:21 -0800431
Tony Luckca01d6d2010-12-28 14:25:21 -0800432 sb->s_maxbytes = MAX_LFS_FILESIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300433 sb->s_blocksize = PAGE_SIZE;
434 sb->s_blocksize_bits = PAGE_SHIFT;
Tony Luckca01d6d2010-12-28 14:25:21 -0800435 sb->s_magic = PSTOREFS_MAGIC;
436 sb->s_op = &pstore_ops;
437 sb->s_time_gran = 1;
438
Luck, Tony366f7e72011-03-18 15:33:43 -0700439 parse_options(data);
440
Al Viro22a71c32012-03-22 12:26:35 -0400441 inode = pstore_get_inode(sb);
Al Viro318ceed2012-02-12 22:08:01 -0500442 if (inode) {
Kees Cookd7caa332017-08-09 20:43:17 -0700443 inode->i_mode = S_IFDIR | 0750;
Al Viro318ceed2012-02-12 22:08:01 -0500444 inode->i_op = &pstore_dir_inode_operations;
Al Viro22a71c32012-03-22 12:26:35 -0400445 inode->i_fop = &simple_dir_operations;
446 inc_nlink(inode);
Tony Luckca01d6d2010-12-28 14:25:21 -0800447 }
Al Viro318ceed2012-02-12 22:08:01 -0500448 sb->s_root = d_make_root(inode);
449 if (!sb->s_root)
450 return -ENOMEM;
Tony Luckca01d6d2010-12-28 14:25:21 -0800451
Kees Cook27e50412020-05-04 19:43:41 -0700452 mutex_lock(&pstore_sb_lock);
453 pstore_sb = sb;
454 mutex_unlock(&pstore_sb_lock);
455
Luck, Tony6dda9262011-08-11 15:14:39 -0700456 pstore_get_records(0);
Tony Luckca01d6d2010-12-28 14:25:21 -0800457
458 return 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800459}
460
Tony Luckfbe0aa12011-03-17 16:29:15 -0700461static struct dentry *pstore_mount(struct file_system_type *fs_type,
462 int flags, const char *dev_name, void *data)
Tony Luckca01d6d2010-12-28 14:25:21 -0800463{
Tony Luckfbe0aa12011-03-17 16:29:15 -0700464 return mount_single(fs_type, flags, data, pstore_fill_super);
Tony Luckca01d6d2010-12-28 14:25:21 -0800465}
466
467static void pstore_kill_sb(struct super_block *sb)
468{
Kees Cook27e50412020-05-04 19:43:41 -0700469 mutex_lock(&pstore_sb_lock);
Tetsuo Handa9c7d83a2021-02-14 12:13:07 +0900470 WARN_ON(pstore_sb && pstore_sb != sb);
Kees Cook27e50412020-05-04 19:43:41 -0700471
Tony Luckca01d6d2010-12-28 14:25:21 -0800472 kill_litter_super(sb);
473 pstore_sb = NULL;
Kees Cook27e50412020-05-04 19:43:41 -0700474
475 mutex_lock(&records_list_lock);
Kees Cook7a0ad542020-05-04 19:41:30 -0700476 INIT_LIST_HEAD(&records_list);
Kees Cook27e50412020-05-04 19:43:41 -0700477 mutex_unlock(&records_list_lock);
478
479 mutex_unlock(&pstore_sb_lock);
Tony Luckca01d6d2010-12-28 14:25:21 -0800480}
481
482static struct file_system_type pstore_fs_type = {
Geliang Tangee1d2672015-10-20 00:39:03 -0700483 .owner = THIS_MODULE,
Tony Luckca01d6d2010-12-28 14:25:21 -0800484 .name = "pstore",
Tony Luckfbe0aa12011-03-17 16:29:15 -0700485 .mount = pstore_mount,
Tony Luckca01d6d2010-12-28 14:25:21 -0800486 .kill_sb = pstore_kill_sb,
487};
488
Kees Cookcb095af2018-10-18 11:17:42 -0700489int __init pstore_init_fs(void)
Tony Luckca01d6d2010-12-28 14:25:21 -0800490{
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500491 int err;
Josh Boyerfb0af3f2013-02-12 13:07:22 -0800492
493 /* Create a convenient mount point for people to access pstore */
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500494 err = sysfs_create_mount_point(fs_kobj, "pstore");
495 if (err)
Josh Boyerfb0af3f2013-02-12 13:07:22 -0800496 goto out;
Josh Boyerfb0af3f2013-02-12 13:07:22 -0800497
498 err = register_filesystem(&pstore_fs_type);
499 if (err < 0)
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500500 sysfs_remove_mount_point(fs_kobj, "pstore");
Josh Boyerfb0af3f2013-02-12 13:07:22 -0800501
502out:
503 return err;
Tony Luckca01d6d2010-12-28 14:25:21 -0800504}
Tony Luckca01d6d2010-12-28 14:25:21 -0800505
Kees Cookcb095af2018-10-18 11:17:42 -0700506void __exit pstore_exit_fs(void)
Geliang Tangee1d2672015-10-20 00:39:03 -0700507{
508 unregister_filesystem(&pstore_fs_type);
509 sysfs_remove_mount_point(fs_kobj, "pstore");
510}