2019-05-19 20:08:20 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-17 06:20:36 +08:00
|
|
|
/**
|
2006-05-14 08:51:54 +08:00
|
|
|
* Copyright (c) ???? Jochen Schäuble <psionic@psionic.de>
|
2008-02-06 17:38:02 +08:00
|
|
|
* Copyright (c) 2003-2004 Joern Engel <joern@wh.fh-wedel.de>
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
*
|
|
|
|
* one commend line parameter per device, each in the form:
|
|
|
|
* phram=<name>,<start>,<len>
|
|
|
|
* <name> may be up to 63 characters.
|
|
|
|
* <start> and <len> can be octal, decimal or hexadecimal. If followed
|
|
|
|
* by "ki", "Mi" or "Gi", the numbers will be interpreted as kilo, mega or
|
|
|
|
* gigabytes.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* phram=swap,64Mi,128Mi phram=test,900Mi,1Mi
|
|
|
|
*/
|
2009-06-17 03:20:40 +08:00
|
|
|
|
2010-10-21 01:39:22 +08:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
2009-06-17 03:20:40 +08:00
|
|
|
|
2014-10-22 03:01:09 +08:00
|
|
|
#include <linux/io.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/moduleparam.h>
|
2005-10-31 07:03:48 +08:00
|
|
|
#include <linux/slab.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/mtd/mtd.h>
|
|
|
|
|
|
|
|
struct phram_mtd_list {
|
|
|
|
struct mtd_info mtd;
|
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
|
|
|
|
static LIST_HEAD(phram_list);
|
|
|
|
|
|
|
|
static int phram_erase(struct mtd_info *mtd, struct erase_info *instr)
|
|
|
|
{
|
|
|
|
u_char *start = mtd->priv;
|
|
|
|
|
|
|
|
memset(start + instr->addr, 0xff, instr->len);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int phram_point(struct mtd_info *mtd, loff_t from, size_t len,
|
2008-04-30 14:26:49 +08:00
|
|
|
size_t *retlen, void **virt, resource_size_t *phys)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-04-30 14:26:49 +08:00
|
|
|
*virt = mtd->priv + from;
|
2005-04-17 06:20:36 +08:00
|
|
|
*retlen = len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-03 19:20:43 +08:00
|
|
|
static int phram_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2012-02-03 19:20:43 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int phram_read(struct mtd_info *mtd, loff_t from, size_t len,
|
|
|
|
size_t *retlen, u_char *buf)
|
|
|
|
{
|
|
|
|
u_char *start = mtd->priv;
|
|
|
|
|
|
|
|
memcpy(buf, start + from, len);
|
|
|
|
*retlen = len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int phram_write(struct mtd_info *mtd, loff_t to, size_t len,
|
|
|
|
size_t *retlen, const u_char *buf)
|
|
|
|
{
|
|
|
|
u_char *start = mtd->priv;
|
|
|
|
|
|
|
|
memcpy(start + to, buf, len);
|
|
|
|
*retlen = len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void unregister_devices(void)
|
|
|
|
{
|
2005-02-24 03:37:11 +08:00
|
|
|
struct phram_mtd_list *this, *safe;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-02-24 03:37:11 +08:00
|
|
|
list_for_each_entry_safe(this, safe, &phram_list, list) {
|
2011-05-23 17:23:40 +08:00
|
|
|
mtd_device_unregister(&this->mtd);
|
2005-04-17 06:20:36 +08:00
|
|
|
iounmap(this->mtd.priv);
|
2011-01-30 17:31:48 +08:00
|
|
|
kfree(this->mtd.name);
|
2005-04-17 06:20:36 +08:00
|
|
|
kfree(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-03 00:42:29 +08:00
|
|
|
static int register_device(char *name, phys_addr_t start, size_t len)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
struct phram_mtd_list *new;
|
|
|
|
int ret = -ENOMEM;
|
|
|
|
|
2006-11-16 03:10:29 +08:00
|
|
|
new = kzalloc(sizeof(*new), GFP_KERNEL);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!new)
|
|
|
|
goto out0;
|
|
|
|
|
|
|
|
ret = -EIO;
|
|
|
|
new->mtd.priv = ioremap(start, len);
|
|
|
|
if (!new->mtd.priv) {
|
2009-06-17 03:20:40 +08:00
|
|
|
pr_err("ioremap failed\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
goto out1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
new->mtd.name = name;
|
|
|
|
new->mtd.size = len;
|
2006-04-14 00:54:34 +08:00
|
|
|
new->mtd.flags = MTD_CAP_RAM;
|
2012-01-30 20:58:32 +08:00
|
|
|
new->mtd._erase = phram_erase;
|
|
|
|
new->mtd._point = phram_point;
|
|
|
|
new->mtd._unpoint = phram_unpoint;
|
|
|
|
new->mtd._read = phram_read;
|
|
|
|
new->mtd._write = phram_write;
|
2005-04-17 06:20:36 +08:00
|
|
|
new->mtd.owner = THIS_MODULE;
|
2006-06-15 04:39:48 +08:00
|
|
|
new->mtd.type = MTD_RAM;
|
2005-03-08 05:43:42 +08:00
|
|
|
new->mtd.erasesize = PAGE_SIZE;
|
2006-06-22 22:15:48 +08:00
|
|
|
new->mtd.writesize = 1;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
ret = -EAGAIN;
|
2011-05-23 17:23:40 +08:00
|
|
|
if (mtd_device_register(&new->mtd, NULL, 0)) {
|
2009-06-17 03:20:40 +08:00
|
|
|
pr_err("Failed to register new device\n");
|
2005-04-17 06:20:36 +08:00
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_add_tail(&new->list, &phram_list);
|
2005-11-07 19:15:40 +08:00
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
out2:
|
|
|
|
iounmap(new->mtd.priv);
|
|
|
|
out1:
|
|
|
|
kfree(new);
|
|
|
|
out0:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-03 00:42:29 +08:00
|
|
|
static int parse_num64(uint64_t *num64, char *token)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-10-03 00:42:29 +08:00
|
|
|
size_t len;
|
|
|
|
int shift = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
len = strlen(token);
|
2005-04-17 06:20:36 +08:00
|
|
|
/* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
|
2013-10-03 00:42:29 +08:00
|
|
|
if (len > 2) {
|
|
|
|
if (token[len - 1] == 'i') {
|
|
|
|
switch (token[len - 2]) {
|
|
|
|
case 'G':
|
|
|
|
shift += 10;
|
2019-02-09 02:09:11 +08:00
|
|
|
/* fall through */
|
2013-10-03 00:42:29 +08:00
|
|
|
case 'M':
|
|
|
|
shift += 10;
|
2019-02-09 02:09:11 +08:00
|
|
|
/* fall through */
|
2013-10-03 00:42:29 +08:00
|
|
|
case 'k':
|
|
|
|
shift += 10;
|
|
|
|
token[len - 2] = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2013-10-03 00:42:29 +08:00
|
|
|
ret = kstrtou64(token, 0, num64);
|
|
|
|
*num64 <<= shift;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-10-03 00:42:29 +08:00
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_name(char **pname, const char *token)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
len = strlen(token) + 1;
|
|
|
|
if (len > 64)
|
|
|
|
return -ENOSPC;
|
|
|
|
|
2014-05-29 04:31:28 +08:00
|
|
|
name = kstrdup(token, GFP_KERNEL);
|
2005-04-17 06:20:36 +08:00
|
|
|
if (!name)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
*pname = name;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-03-08 05:43:42 +08:00
|
|
|
|
|
|
|
static inline void kill_final_newline(char *str)
|
|
|
|
{
|
|
|
|
char *newline = strrchr(str, '\n');
|
2014-07-14 03:39:01 +08:00
|
|
|
|
2005-03-08 05:43:42 +08:00
|
|
|
if (newline && !newline[1])
|
|
|
|
*newline = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#define parse_err(fmt, args...) do { \
|
2009-06-17 03:20:40 +08:00
|
|
|
pr_err(fmt , ## args); \
|
|
|
|
return 1; \
|
2005-04-17 06:20:36 +08:00
|
|
|
} while (0)
|
|
|
|
|
2013-10-15 00:52:23 +08:00
|
|
|
#ifndef MODULE
|
|
|
|
static int phram_init_called;
|
2012-03-13 23:07:53 +08:00
|
|
|
/*
|
|
|
|
* This shall contain the module parameter if any. It is of the form:
|
|
|
|
* - phram=<device>,<address>,<size> for module case
|
|
|
|
* - phram.phram=<device>,<address>,<size> for built-in case
|
2013-10-03 00:42:29 +08:00
|
|
|
* We leave 64 bytes for the device name, 20 for the address and 20 for the
|
2012-03-13 23:07:53 +08:00
|
|
|
* size.
|
|
|
|
* Example: phram.phram=rootfs,0xa0000000,512Mi
|
|
|
|
*/
|
2013-10-15 00:52:23 +08:00
|
|
|
static char phram_paramline[64 + 20 + 20];
|
|
|
|
#endif
|
2012-03-13 23:07:53 +08:00
|
|
|
|
2013-10-15 00:52:23 +08:00
|
|
|
static int phram_setup(const char *val)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-10-03 00:42:29 +08:00
|
|
|
char buf[64 + 20 + 20], *str = buf;
|
2005-04-17 06:20:36 +08:00
|
|
|
char *token[3];
|
|
|
|
char *name;
|
2013-10-03 00:42:29 +08:00
|
|
|
uint64_t start;
|
|
|
|
uint64_t len;
|
2005-04-17 06:20:36 +08:00
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
if (strnlen(val, sizeof(buf)) >= sizeof(buf))
|
|
|
|
parse_err("parameter too long\n");
|
|
|
|
|
|
|
|
strcpy(str, val);
|
2005-03-08 05:43:42 +08:00
|
|
|
kill_final_newline(str);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2014-07-14 03:39:01 +08:00
|
|
|
for (i = 0; i < 3; i++)
|
2005-04-17 06:20:36 +08:00
|
|
|
token[i] = strsep(&str, ",");
|
|
|
|
|
|
|
|
if (str)
|
|
|
|
parse_err("too many arguments\n");
|
|
|
|
|
|
|
|
if (!token[2])
|
|
|
|
parse_err("not enough arguments\n");
|
|
|
|
|
|
|
|
ret = parse_name(&name, token[0]);
|
|
|
|
if (ret)
|
2009-06-17 03:20:40 +08:00
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-10-03 00:42:29 +08:00
|
|
|
ret = parse_num64(&start, token[1]);
|
2006-05-14 07:07:18 +08:00
|
|
|
if (ret) {
|
2005-04-17 06:20:36 +08:00
|
|
|
parse_err("illegal start address\n");
|
2024-06-11 20:26:44 +08:00
|
|
|
goto error;
|
2006-05-14 07:07:18 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-10-03 00:42:29 +08:00
|
|
|
ret = parse_num64(&len, token[2]);
|
2006-05-14 07:07:18 +08:00
|
|
|
if (ret) {
|
2005-04-17 06:20:36 +08:00
|
|
|
parse_err("illegal device length\n");
|
2024-06-11 20:26:44 +08:00
|
|
|
goto error;
|
2006-05-14 07:07:18 +08:00
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-06-17 03:20:40 +08:00
|
|
|
ret = register_device(name, start, len);
|
2024-06-11 20:26:44 +08:00
|
|
|
if (ret)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
pr_info("%s device: %#llx at %#llx\n", name, len, start);
|
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
error:
|
|
|
|
kfree(name);
|
2009-06-17 03:20:40 +08:00
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
treewide: Fix function prototypes for module_param_call()
Several function prototypes for the set/get functions defined by
module_param_call() have a slightly wrong argument types. This fixes
those in an effort to clean up the calls when running under type-enforced
compiler instrumentation for CFI. This is the result of running the
following semantic patch:
@match_module_param_call_function@
declarer name module_param_call;
identifier _name, _set_func, _get_func;
expression _arg, _mode;
@@
module_param_call(_name, _set_func, _get_func, _arg, _mode);
@fix_set_prototype
depends on match_module_param_call_function@
identifier match_module_param_call_function._set_func;
identifier _val, _param;
type _val_type, _param_type;
@@
int _set_func(
-_val_type _val
+const char * _val
,
-_param_type _param
+const struct kernel_param * _param
) { ... }
@fix_get_prototype
depends on match_module_param_call_function@
identifier match_module_param_call_function._get_func;
identifier _val, _param;
type _val_type, _param_type;
@@
int _get_func(
-_val_type _val
+char * _val
,
-_param_type _param
+const struct kernel_param * _param
) { ... }
Two additional by-hand changes are included for places where the above
Coccinelle script didn't notice them:
drivers/platform/x86/thinkpad_acpi.c
fs/lockd/svc.c
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
2017-10-18 10:04:42 +08:00
|
|
|
static int phram_param_call(const char *val, const struct kernel_param *kp)
|
2012-03-13 23:07:53 +08:00
|
|
|
{
|
2013-10-15 00:52:23 +08:00
|
|
|
#ifdef MODULE
|
|
|
|
return phram_setup(val);
|
|
|
|
#else
|
2012-03-13 23:07:53 +08:00
|
|
|
/*
|
2013-10-15 00:52:23 +08:00
|
|
|
* If more parameters are later passed in via
|
|
|
|
* /sys/module/phram/parameters/phram
|
|
|
|
* and init_phram() has already been called,
|
|
|
|
* we can parse the argument now.
|
2012-03-13 23:07:53 +08:00
|
|
|
*/
|
2013-10-15 00:52:23 +08:00
|
|
|
|
|
|
|
if (phram_init_called)
|
|
|
|
return phram_setup(val);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* During early boot stage, we only save the parameters
|
|
|
|
* here. We must parse them later: if the param passed
|
|
|
|
* from kernel boot command line, phram_param_call() is
|
|
|
|
* called so early that it is not possible to resolve
|
|
|
|
* the device (even kmalloc() fails). Defer that work to
|
|
|
|
* phram_setup().
|
|
|
|
*/
|
|
|
|
|
2012-03-13 23:07:53 +08:00
|
|
|
if (strlen(val) >= sizeof(phram_paramline))
|
|
|
|
return -ENOSPC;
|
|
|
|
strcpy(phram_paramline, val);
|
|
|
|
|
|
|
|
return 0;
|
2013-10-15 00:52:23 +08:00
|
|
|
#endif
|
2012-03-13 23:07:53 +08:00
|
|
|
}
|
|
|
|
|
2019-07-14 11:57:18 +08:00
|
|
|
module_param_call(phram, phram_param_call, NULL, NULL, 0200);
|
2008-03-31 21:25:03 +08:00
|
|
|
MODULE_PARM_DESC(phram, "Memory region to map. \"phram=<name>,<start>,<length>\"");
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
static int __init init_phram(void)
|
|
|
|
{
|
2013-10-15 00:52:23 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
#ifndef MODULE
|
2012-03-13 23:07:53 +08:00
|
|
|
if (phram_paramline[0])
|
2013-10-15 00:52:23 +08:00
|
|
|
ret = phram_setup(phram_paramline);
|
|
|
|
phram_init_called = 1;
|
|
|
|
#endif
|
2012-03-13 23:07:53 +08:00
|
|
|
|
2013-10-15 00:52:23 +08:00
|
|
|
return ret;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit cleanup_phram(void)
|
|
|
|
{
|
|
|
|
unregister_devices();
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(init_phram);
|
|
|
|
module_exit(cleanup_phram);
|
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
2008-02-06 17:38:02 +08:00
|
|
|
MODULE_AUTHOR("Joern Engel <joern@wh.fh-wedel.de>");
|
2005-04-17 06:20:36 +08:00
|
|
|
MODULE_DESCRIPTION("MTD driver for physical RAM");
|