1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2014 Google, Inc.
6 #include <linux/cdev.h>
7 #include <linux/device.h>
9 #include <linux/uaccess.h>
12 static DEFINE_MUTEX(pmsg_lock
);
14 static ssize_t
write_pmsg(struct file
*file
, const char __user
*buf
,
15 size_t count
, loff_t
*ppos
)
17 struct pstore_record record
;
23 pstore_record_init(&record
, psinfo
);
24 record
.type
= PSTORE_TYPE_PMSG
;
27 /* check outside lock, page in any data. write_user also checks */
28 if (!access_ok(buf
, count
))
31 mutex_lock(&pmsg_lock
);
32 ret
= psinfo
->write_user(&record
, buf
);
33 mutex_unlock(&pmsg_lock
);
34 return ret
? ret
: count
;
37 static const struct file_operations pmsg_fops
= {
39 .llseek
= noop_llseek
,
43 static struct class *pmsg_class
;
44 static int pmsg_major
;
45 #define PMSG_NAME "pmsg"
47 #define pr_fmt(fmt) PMSG_NAME ": " fmt
49 static char *pmsg_devnode(struct device
*dev
, umode_t
*mode
)
56 void pstore_register_pmsg(void)
58 struct device
*pmsg_device
;
60 pmsg_major
= register_chrdev(0, PMSG_NAME
, &pmsg_fops
);
62 pr_err("register_chrdev failed\n");
66 pmsg_class
= class_create(THIS_MODULE
, PMSG_NAME
);
67 if (IS_ERR(pmsg_class
)) {
68 pr_err("device class file already in use\n");
71 pmsg_class
->devnode
= pmsg_devnode
;
73 pmsg_device
= device_create(pmsg_class
, NULL
, MKDEV(pmsg_major
, 0),
74 NULL
, "%s%d", PMSG_NAME
, 0);
75 if (IS_ERR(pmsg_device
)) {
76 pr_err("failed to create device\n");
82 class_destroy(pmsg_class
);
84 unregister_chrdev(pmsg_major
, PMSG_NAME
);
89 void pstore_unregister_pmsg(void)
91 device_destroy(pmsg_class
, MKDEV(pmsg_major
, 0));
92 class_destroy(pmsg_class
);
93 unregister_chrdev(pmsg_major
, PMSG_NAME
);