blob: a98787bab3e64da3b09a2eac7c2783f39f3be734 [file] [log] [blame]
Tony Luckca01d6d2010-12-28 14:25:21 -08001/*
2 * Persistent Storage - ramfs parts.
3 *
4 * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/module.h>
21#include <linux/fs.h>
22#include <linux/fsnotify.h>
23#include <linux/pagemap.h>
24#include <linux/highmem.h>
25#include <linux/time.h>
26#include <linux/init.h>
Luck, Tony6dda9262011-08-11 15:14:39 -070027#include <linux/list.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080028#include <linux/string.h>
29#include <linux/mount.h>
Anton Vorontsov060287b2012-07-09 17:10:41 -070030#include <linux/seq_file.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080031#include <linux/ramfs.h>
Luck, Tony366f7e72011-03-18 15:33:43 -070032#include <linux/parser.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080033#include <linux/sched.h>
34#include <linux/magic.h>
35#include <linux/pstore.h>
36#include <linux/slab.h>
Luck, Tony6dda9262011-08-11 15:14:39 -070037#include <linux/spinlock.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080038#include <linux/uaccess.h>
Sebastian Schmidt68c4a4f2014-10-19 20:05:15 +020039#include <linux/syslog.h>
Tony Luckca01d6d2010-12-28 14:25:21 -080040
41#include "internal.h"
42
43#define PSTORE_NAMELEN 64
44
Luck, Tony6dda9262011-08-11 15:14:39 -070045static DEFINE_SPINLOCK(allpstore_lock);
46static LIST_HEAD(allpstore);
47
Tony Luckca01d6d2010-12-28 14:25:21 -080048struct pstore_private {
Luck, Tony6dda9262011-08-11 15:14:39 -070049 struct list_head list;
Matthew Garrett638c1fd2011-07-21 16:57:52 -040050 struct pstore_info *psi;
Matthew Garrett56280682011-07-21 16:57:53 -040051 enum pstore_type_id type;
52 u64 id;
Seiji Aguchi755d4fe2012-11-26 16:07:44 -080053 int count;
Tony Luckfbe0aa12011-03-17 16:29:15 -070054 ssize_t size;
55 char data[];
Tony Luckca01d6d2010-12-28 14:25:21 -080056};
57
Anton Vorontsov060287b2012-07-09 17:10:41 -070058struct pstore_ftrace_seq_data {
59 const void *ptr;
60 size_t off;
61 size_t size;
62};
63
64#define REC_SIZE sizeof(struct pstore_ftrace_record)
65
66static void *pstore_ftrace_seq_start(struct seq_file *s, loff_t *pos)
67{
68 struct pstore_private *ps = s->private;
69 struct pstore_ftrace_seq_data *data;
70
71 data = kzalloc(sizeof(*data), GFP_KERNEL);
72 if (!data)
73 return NULL;
74
75 data->off = ps->size % REC_SIZE;
76 data->off += *pos * REC_SIZE;
77 if (data->off + REC_SIZE > ps->size) {
78 kfree(data);
79 return NULL;
80 }
81
82 return data;
83
84}
85
86static void pstore_ftrace_seq_stop(struct seq_file *s, void *v)
87{
88 kfree(v);
89}
90
91static void *pstore_ftrace_seq_next(struct seq_file *s, void *v, loff_t *pos)
92{
93 struct pstore_private *ps = s->private;
94 struct pstore_ftrace_seq_data *data = v;
95
96 data->off += REC_SIZE;
97 if (data->off + REC_SIZE > ps->size)
98 return NULL;
99
100 (*pos)++;
101 return data;
102}
103
104static int pstore_ftrace_seq_show(struct seq_file *s, void *v)
105{
106 struct pstore_private *ps = s->private;
107 struct pstore_ftrace_seq_data *data = v;
108 struct pstore_ftrace_record *rec = (void *)(ps->data + data->off);
109
Joel Fernandesfbccdeb2016-10-20 00:34:05 -0700110 seq_printf(s, "CPU:%d ts:%llu %08lx %08lx %pf <- %pF\n",
111 pstore_ftrace_decode_cpu(rec),
112 pstore_ftrace_read_timestamp(rec),
113 rec->ip, rec->parent_ip, (void *)rec->ip,
114 (void *)rec->parent_ip);
Anton Vorontsov060287b2012-07-09 17:10:41 -0700115
116 return 0;
117}
118
119static const struct seq_operations pstore_ftrace_seq_ops = {
120 .start = pstore_ftrace_seq_start,
121 .next = pstore_ftrace_seq_next,
122 .stop = pstore_ftrace_seq_stop,
123 .show = pstore_ftrace_seq_show,
124};
125
Sebastian Schmidt68c4a4f2014-10-19 20:05:15 +0200126static int pstore_check_syslog_permissions(struct pstore_private *ps)
127{
128 switch (ps->type) {
129 case PSTORE_TYPE_DMESG:
130 case PSTORE_TYPE_CONSOLE:
131 return check_syslog_permissions(SYSLOG_ACTION_READ_ALL,
132 SYSLOG_FROM_READER);
133 default:
134 return 0;
135 }
136}
137
Tony Luckfbe0aa12011-03-17 16:29:15 -0700138static ssize_t pstore_file_read(struct file *file, char __user *userbuf,
139 size_t count, loff_t *ppos)
140{
Anton Vorontsov060287b2012-07-09 17:10:41 -0700141 struct seq_file *sf = file->private_data;
142 struct pstore_private *ps = sf->private;
Tony Luckfbe0aa12011-03-17 16:29:15 -0700143
Anton Vorontsov060287b2012-07-09 17:10:41 -0700144 if (ps->type == PSTORE_TYPE_FTRACE)
145 return seq_read(file, userbuf, count, ppos);
Tony Luckfbe0aa12011-03-17 16:29:15 -0700146 return simple_read_from_buffer(userbuf, count, ppos, ps->data, ps->size);
147}
148
Anton Vorontsov060287b2012-07-09 17:10:41 -0700149static int pstore_file_open(struct inode *inode, struct file *file)
150{
151 struct pstore_private *ps = inode->i_private;
152 struct seq_file *sf;
153 int err;
154 const struct seq_operations *sops = NULL;
155
Sebastian Schmidt68c4a4f2014-10-19 20:05:15 +0200156 err = pstore_check_syslog_permissions(ps);
157 if (err)
158 return err;
159
Anton Vorontsov060287b2012-07-09 17:10:41 -0700160 if (ps->type == PSTORE_TYPE_FTRACE)
161 sops = &pstore_ftrace_seq_ops;
162
163 err = seq_open(file, sops);
164 if (err < 0)
165 return err;
166
167 sf = file->private_data;
168 sf->private = ps;
169
170 return 0;
171}
172
Andrew Morton965c8e52012-12-17 15:59:39 -0800173static loff_t pstore_file_llseek(struct file *file, loff_t off, int whence)
Anton Vorontsov060287b2012-07-09 17:10:41 -0700174{
175 struct seq_file *sf = file->private_data;
176
177 if (sf->op)
Andrew Morton965c8e52012-12-17 15:59:39 -0800178 return seq_lseek(file, off, whence);
179 return default_llseek(file, off, whence);
Anton Vorontsov060287b2012-07-09 17:10:41 -0700180}
181
Tony Luckfbe0aa12011-03-17 16:29:15 -0700182static const struct file_operations pstore_file_operations = {
Anton Vorontsov060287b2012-07-09 17:10:41 -0700183 .open = pstore_file_open,
184 .read = pstore_file_read,
185 .llseek = pstore_file_llseek,
186 .release = seq_release,
Tony Luckfbe0aa12011-03-17 16:29:15 -0700187};
Tony Luckca01d6d2010-12-28 14:25:21 -0800188
189/*
190 * When a file is unlinked from our file system we call the
191 * platform driver to erase the record from persistent store.
192 */
193static int pstore_unlink(struct inode *dir, struct dentry *dentry)
194{
David Howells2b0143b2015-03-17 22:25:59 +0000195 struct pstore_private *p = d_inode(dentry)->i_private;
Sebastian Schmidt68c4a4f2014-10-19 20:05:15 +0200196 int err;
197
198 err = pstore_check_syslog_permissions(p);
199 if (err)
200 return err;
Tony Luckca01d6d2010-12-28 14:25:21 -0800201
Namhyung Kime9e360b2016-10-19 10:23:40 +0900202 if (p->psi->erase) {
203 mutex_lock(&p->psi->read_mutex);
Seiji Aguchi755d4fe2012-11-26 16:07:44 -0800204 p->psi->erase(p->type, p->id, p->count,
David Howells2b0143b2015-03-17 22:25:59 +0000205 d_inode(dentry)->i_ctime, p->psi);
Namhyung Kime9e360b2016-10-19 10:23:40 +0900206 mutex_unlock(&p->psi->read_mutex);
207 } else {
Aruna Balakrishnaiahbf288332013-06-25 14:33:56 +0530208 return -EPERM;
Namhyung Kime9e360b2016-10-19 10:23:40 +0900209 }
Tony Luckca01d6d2010-12-28 14:25:21 -0800210
211 return simple_unlink(dir, dentry);
212}
213
Tony Lucka872d512011-03-18 11:44:48 -0700214static void pstore_evict_inode(struct inode *inode)
215{
Luck, Tony6dda9262011-08-11 15:14:39 -0700216 struct pstore_private *p = inode->i_private;
217 unsigned long flags;
218
Jan Karadbd57682012-05-03 14:48:02 +0200219 clear_inode(inode);
Luck, Tony6dda9262011-08-11 15:14:39 -0700220 if (p) {
221 spin_lock_irqsave(&allpstore_lock, flags);
222 list_del(&p->list);
223 spin_unlock_irqrestore(&allpstore_lock, flags);
224 kfree(p);
225 }
Tony Lucka872d512011-03-18 11:44:48 -0700226}
227
Tony Luckca01d6d2010-12-28 14:25:21 -0800228static const struct inode_operations pstore_dir_inode_operations = {
229 .lookup = simple_lookup,
230 .unlink = pstore_unlink,
231};
232
Al Viro22a71c32012-03-22 12:26:35 -0400233static struct inode *pstore_get_inode(struct super_block *sb)
Tony Luckfbe0aa12011-03-17 16:29:15 -0700234{
235 struct inode *inode = new_inode(sb);
Tony Luckfbe0aa12011-03-17 16:29:15 -0700236 if (inode) {
237 inode->i_ino = get_next_ino();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700238 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Tony Luckfbe0aa12011-03-17 16:29:15 -0700239 }
240 return inode;
241}
242
Luck, Tony366f7e72011-03-18 15:33:43 -0700243enum {
244 Opt_kmsg_bytes, Opt_err
245};
246
247static const match_table_t tokens = {
248 {Opt_kmsg_bytes, "kmsg_bytes=%u"},
249 {Opt_err, NULL}
250};
251
252static void parse_options(char *options)
253{
254 char *p;
255 substring_t args[MAX_OPT_ARGS];
256 int option;
257
258 if (!options)
259 return;
260
261 while ((p = strsep(&options, ",")) != NULL) {
262 int token;
263
264 if (!*p)
265 continue;
266
267 token = match_token(p, tokens, args);
268 switch (token) {
269 case Opt_kmsg_bytes:
270 if (!match_int(&args[0], &option))
271 pstore_set_kmsg_bytes(option);
272 break;
273 }
274 }
275}
276
277static int pstore_remount(struct super_block *sb, int *flags, char *data)
278{
Theodore Ts'o02b99842014-03-13 10:14:33 -0400279 sync_filesystem(sb);
Luck, Tony366f7e72011-03-18 15:33:43 -0700280 parse_options(data);
281
282 return 0;
283}
284
Tony Luckca01d6d2010-12-28 14:25:21 -0800285static const struct super_operations pstore_ops = {
286 .statfs = simple_statfs,
287 .drop_inode = generic_delete_inode,
Tony Lucka872d512011-03-18 11:44:48 -0700288 .evict_inode = pstore_evict_inode,
Luck, Tony366f7e72011-03-18 15:33:43 -0700289 .remount_fs = pstore_remount,
Tony Luckca01d6d2010-12-28 14:25:21 -0800290 .show_options = generic_show_options,
291};
292
293static struct super_block *pstore_sb;
Tony Luckca01d6d2010-12-28 14:25:21 -0800294
Geliang Tang7e26e9f2015-10-22 01:02:33 -0700295bool pstore_is_mounted(void)
Tony Luckca01d6d2010-12-28 14:25:21 -0800296{
Tony Luckfbe0aa12011-03-17 16:29:15 -0700297 return pstore_sb != NULL;
Tony Luckca01d6d2010-12-28 14:25:21 -0800298}
299
300/*
301 * Make a regular file in the root directory of our file system.
302 * Load it up with "size" bytes of data from "buf".
303 * Set the mtime & ctime to the date that this record was originally stored.
304 */
Kees Cook1edd1aa2017-03-03 18:16:32 -0800305int pstore_mkfile(struct pstore_record *record)
Tony Luckca01d6d2010-12-28 14:25:21 -0800306{
307 struct dentry *root = pstore_sb->s_root;
308 struct dentry *dentry;
309 struct inode *inode;
Luck, Tony6dda9262011-08-11 15:14:39 -0700310 int rc = 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800311 char name[PSTORE_NAMELEN];
Luck, Tony6dda9262011-08-11 15:14:39 -0700312 struct pstore_private *private, *pos;
313 unsigned long flags;
Kees Cook1edd1aa2017-03-03 18:16:32 -0800314 size_t size = record->size + record->ecc_notice_size;
Luck, Tony6dda9262011-08-11 15:14:39 -0700315
316 spin_lock_irqsave(&allpstore_lock, flags);
317 list_for_each_entry(pos, &allpstore, list) {
Kees Cook1edd1aa2017-03-03 18:16:32 -0800318 if (pos->type == record->type &&
319 pos->id == record->id &&
320 pos->psi == record->psi) {
Luck, Tony6dda9262011-08-11 15:14:39 -0700321 rc = -EEXIST;
322 break;
323 }
324 }
325 spin_unlock_irqrestore(&allpstore_lock, flags);
326 if (rc)
327 return rc;
Tony Luckca01d6d2010-12-28 14:25:21 -0800328
329 rc = -ENOMEM;
Al Viro22a71c32012-03-22 12:26:35 -0400330 inode = pstore_get_inode(pstore_sb);
Tony Luckca01d6d2010-12-28 14:25:21 -0800331 if (!inode)
332 goto fail;
Al Viro22a71c32012-03-22 12:26:35 -0400333 inode->i_mode = S_IFREG | 0444;
334 inode->i_fop = &pstore_file_operations;
Tony Luckfbe0aa12011-03-17 16:29:15 -0700335 private = kmalloc(sizeof *private + size, GFP_KERNEL);
Tony Luckca01d6d2010-12-28 14:25:21 -0800336 if (!private)
337 goto fail_alloc;
Kees Cook1edd1aa2017-03-03 18:16:32 -0800338 private->type = record->type;
339 private->id = record->id;
340 private->count = record->count;
341 private->psi = record->psi;
Tony Luckca01d6d2010-12-28 14:25:21 -0800342
Kees Cook1edd1aa2017-03-03 18:16:32 -0800343 switch (record->type) {
Tony Luckca01d6d2010-12-28 14:25:21 -0800344 case PSTORE_TYPE_DMESG:
Mark Salyzyndbaffde2015-01-06 11:18:24 -0800345 scnprintf(name, sizeof(name), "dmesg-%s-%lld%s",
Kees Cook1edd1aa2017-03-03 18:16:32 -0800346 record->psi->name, record->id,
347 record->compressed ? ".enc.z" : "");
Tony Luckca01d6d2010-12-28 14:25:21 -0800348 break;
Anton Vorontsovf29e5952012-05-26 06:20:19 -0700349 case PSTORE_TYPE_CONSOLE:
Kees Cook1edd1aa2017-03-03 18:16:32 -0800350 scnprintf(name, sizeof(name), "console-%s-%lld",
351 record->psi->name, record->id);
Anton Vorontsovf29e5952012-05-26 06:20:19 -0700352 break;
Anton Vorontsov060287b2012-07-09 17:10:41 -0700353 case PSTORE_TYPE_FTRACE:
Kees Cook1edd1aa2017-03-03 18:16:32 -0800354 scnprintf(name, sizeof(name), "ftrace-%s-%lld",
355 record->psi->name, record->id);
Anton Vorontsov060287b2012-07-09 17:10:41 -0700356 break;
Tony Luckca01d6d2010-12-28 14:25:21 -0800357 case PSTORE_TYPE_MCE:
Kees Cook1edd1aa2017-03-03 18:16:32 -0800358 scnprintf(name, sizeof(name), "mce-%s-%lld",
359 record->psi->name, record->id);
Tony Luckca01d6d2010-12-28 14:25:21 -0800360 break;
Aruna Balakrishnaiah69020ee2013-06-06 00:21:44 +0530361 case PSTORE_TYPE_PPC_RTAS:
Kees Cook1edd1aa2017-03-03 18:16:32 -0800362 scnprintf(name, sizeof(name), "rtas-%s-%lld",
363 record->psi->name, record->id);
Aruna Balakrishnaiah69020ee2013-06-06 00:21:44 +0530364 break;
Aruna Balakrishnaiahf33f7482013-06-06 00:22:10 +0530365 case PSTORE_TYPE_PPC_OF:
Mark Salyzyndbaffde2015-01-06 11:18:24 -0800366 scnprintf(name, sizeof(name), "powerpc-ofw-%s-%lld",
Kees Cook1edd1aa2017-03-03 18:16:32 -0800367 record->psi->name, record->id);
Aruna Balakrishnaiahf33f7482013-06-06 00:22:10 +0530368 break;
Aruna Balakrishnaiaha5e47972013-06-06 00:22:20 +0530369 case PSTORE_TYPE_PPC_COMMON:
Mark Salyzyndbaffde2015-01-06 11:18:24 -0800370 scnprintf(name, sizeof(name), "powerpc-common-%s-%lld",
Kees Cook1edd1aa2017-03-03 18:16:32 -0800371 record->psi->name, record->id);
Aruna Balakrishnaiaha5e47972013-06-06 00:22:20 +0530372 break;
Mark Salyzyn9d5438f2015-01-16 16:01:10 -0800373 case PSTORE_TYPE_PMSG:
Kees Cook1edd1aa2017-03-03 18:16:32 -0800374 scnprintf(name, sizeof(name), "pmsg-%s-%lld",
375 record->psi->name, record->id);
Mark Salyzyn9d5438f2015-01-16 16:01:10 -0800376 break;
Hari Bathiniae011d22015-02-06 01:06:28 +0530377 case PSTORE_TYPE_PPC_OPAL:
Kees Cook1edd1aa2017-03-03 18:16:32 -0800378 scnprintf(name, sizeof(name), "powerpc-opal-%s-%lld",
379 record->psi->name, record->id);
Hari Bathiniae011d22015-02-06 01:06:28 +0530380 break;
Tony Luckca01d6d2010-12-28 14:25:21 -0800381 case PSTORE_TYPE_UNKNOWN:
Kees Cook1edd1aa2017-03-03 18:16:32 -0800382 scnprintf(name, sizeof(name), "unknown-%s-%lld",
383 record->psi->name, record->id);
Tony Luckca01d6d2010-12-28 14:25:21 -0800384 break;
385 default:
Mark Salyzyndbaffde2015-01-06 11:18:24 -0800386 scnprintf(name, sizeof(name), "type%d-%s-%lld",
Kees Cook1edd1aa2017-03-03 18:16:32 -0800387 record->type, record->psi->name, record->id);
Tony Luckca01d6d2010-12-28 14:25:21 -0800388 break;
389 }
390
Al Viro59551022016-01-22 15:40:57 -0500391 inode_lock(d_inode(root));
Tony Luckca01d6d2010-12-28 14:25:21 -0800392
Tony Luckca01d6d2010-12-28 14:25:21 -0800393 dentry = d_alloc_name(root, name);
Dan Carpenterc39524e2013-08-14 10:55:49 -0700394 if (!dentry)
Tony Luckca01d6d2010-12-28 14:25:21 -0800395 goto fail_lockedalloc;
396
Kees Cook1edd1aa2017-03-03 18:16:32 -0800397 memcpy(private->data, record->buf, size);
Tony Luckfbe0aa12011-03-17 16:29:15 -0700398 inode->i_size = private->size = size;
Tony Luckca01d6d2010-12-28 14:25:21 -0800399
400 inode->i_private = private;
401
Kees Cook1edd1aa2017-03-03 18:16:32 -0800402 if (record->time.tv_sec)
403 inode->i_mtime = inode->i_ctime = record->time;
Tony Luckca01d6d2010-12-28 14:25:21 -0800404
Tony Luckfbe0aa12011-03-17 16:29:15 -0700405 d_add(dentry, inode);
Tony Luckca01d6d2010-12-28 14:25:21 -0800406
Luck, Tony6dda9262011-08-11 15:14:39 -0700407 spin_lock_irqsave(&allpstore_lock, flags);
408 list_add(&private->list, &allpstore);
409 spin_unlock_irqrestore(&allpstore_lock, flags);
410
Al Viro59551022016-01-22 15:40:57 -0500411 inode_unlock(d_inode(root));
Tony Luckfbe0aa12011-03-17 16:29:15 -0700412
413 return 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800414
415fail_lockedalloc:
Al Viro59551022016-01-22 15:40:57 -0500416 inode_unlock(d_inode(root));
Tony Luckca01d6d2010-12-28 14:25:21 -0800417 kfree(private);
418fail_alloc:
419 iput(inode);
420
421fail:
422 return rc;
423}
424
Anton Vorontsov364ed2f2012-05-26 06:07:53 -0700425static int pstore_fill_super(struct super_block *sb, void *data, int silent)
Tony Luckca01d6d2010-12-28 14:25:21 -0800426{
Al Viro318ceed2012-02-12 22:08:01 -0500427 struct inode *inode;
Tony Luckca01d6d2010-12-28 14:25:21 -0800428
429 save_mount_options(sb, data);
430
431 pstore_sb = sb;
432
433 sb->s_maxbytes = MAX_LFS_FILESIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300434 sb->s_blocksize = PAGE_SIZE;
435 sb->s_blocksize_bits = PAGE_SHIFT;
Tony Luckca01d6d2010-12-28 14:25:21 -0800436 sb->s_magic = PSTOREFS_MAGIC;
437 sb->s_op = &pstore_ops;
438 sb->s_time_gran = 1;
439
Luck, Tony366f7e72011-03-18 15:33:43 -0700440 parse_options(data);
441
Al Viro22a71c32012-03-22 12:26:35 -0400442 inode = pstore_get_inode(sb);
Al Viro318ceed2012-02-12 22:08:01 -0500443 if (inode) {
Al Viro22a71c32012-03-22 12:26:35 -0400444 inode->i_mode = S_IFDIR | 0755;
Al Viro318ceed2012-02-12 22:08:01 -0500445 inode->i_op = &pstore_dir_inode_operations;
Al Viro22a71c32012-03-22 12:26:35 -0400446 inode->i_fop = &simple_dir_operations;
447 inc_nlink(inode);
Tony Luckca01d6d2010-12-28 14:25:21 -0800448 }
Al Viro318ceed2012-02-12 22:08:01 -0500449 sb->s_root = d_make_root(inode);
450 if (!sb->s_root)
451 return -ENOMEM;
Tony Luckca01d6d2010-12-28 14:25:21 -0800452
Luck, Tony6dda9262011-08-11 15:14:39 -0700453 pstore_get_records(0);
Tony Luckca01d6d2010-12-28 14:25:21 -0800454
455 return 0;
Tony Luckca01d6d2010-12-28 14:25:21 -0800456}
457
Tony Luckfbe0aa12011-03-17 16:29:15 -0700458static struct dentry *pstore_mount(struct file_system_type *fs_type,
459 int flags, const char *dev_name, void *data)
Tony Luckca01d6d2010-12-28 14:25:21 -0800460{
Tony Luckfbe0aa12011-03-17 16:29:15 -0700461 return mount_single(fs_type, flags, data, pstore_fill_super);
Tony Luckca01d6d2010-12-28 14:25:21 -0800462}
463
464static void pstore_kill_sb(struct super_block *sb)
465{
466 kill_litter_super(sb);
467 pstore_sb = NULL;
Tony Luckca01d6d2010-12-28 14:25:21 -0800468}
469
470static struct file_system_type pstore_fs_type = {
Geliang Tangee1d2672015-10-20 00:39:03 -0700471 .owner = THIS_MODULE,
Tony Luckca01d6d2010-12-28 14:25:21 -0800472 .name = "pstore",
Tony Luckfbe0aa12011-03-17 16:29:15 -0700473 .mount = pstore_mount,
Tony Luckca01d6d2010-12-28 14:25:21 -0800474 .kill_sb = pstore_kill_sb,
475};
476
477static int __init init_pstore_fs(void)
478{
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500479 int err;
Josh Boyerfb0af3f2013-02-12 13:07:22 -0800480
481 /* Create a convenient mount point for people to access pstore */
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500482 err = sysfs_create_mount_point(fs_kobj, "pstore");
483 if (err)
Josh Boyerfb0af3f2013-02-12 13:07:22 -0800484 goto out;
Josh Boyerfb0af3f2013-02-12 13:07:22 -0800485
486 err = register_filesystem(&pstore_fs_type);
487 if (err < 0)
Eric W. Biedermanf9bb4882015-05-13 17:35:41 -0500488 sysfs_remove_mount_point(fs_kobj, "pstore");
Josh Boyerfb0af3f2013-02-12 13:07:22 -0800489
490out:
491 return err;
Tony Luckca01d6d2010-12-28 14:25:21 -0800492}
493module_init(init_pstore_fs)
494
Geliang Tangee1d2672015-10-20 00:39:03 -0700495static void __exit exit_pstore_fs(void)
496{
497 unregister_filesystem(&pstore_fs_type);
498 sysfs_remove_mount_point(fs_kobj, "pstore");
499}
500module_exit(exit_pstore_fs)
501
Tony Luckca01d6d2010-12-28 14:25:21 -0800502MODULE_AUTHOR("Tony Luck <tony.luck@intel.com>");
503MODULE_LICENSE("GPL");