]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/kernel/atags_proc.c
UBUNTU: Ubuntu-4.15.0-96.97
[mirror_ubuntu-bionic-kernel.git] / arch / arm / kernel / atags_proc.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
4cd9d6f7 2#include <linux/slab.h>
4cd9d6f7
RP
3#include <linux/proc_fs.h>
4#include <asm/setup.h>
5#include <asm/types.h>
6#include <asm/page.h>
7
8struct buffer {
9 size_t size;
f7b0b939 10 char data[];
4cd9d6f7 11};
4cd9d6f7 12
03b642a7
AV
13static ssize_t atags_read(struct file *file, char __user *buf,
14 size_t count, loff_t *ppos)
4cd9d6f7 15{
d9dda78b 16 struct buffer *b = PDE_DATA(file_inode(file));
03b642a7 17 return simple_read_from_buffer(buf, count, ppos, b->data, b->size);
4cd9d6f7
RP
18}
19
03b642a7
AV
20static const struct file_operations atags_fops = {
21 .read = atags_read,
22 .llseek = default_llseek,
23};
24
8ff7f2a4 25#define BOOT_PARAMS_SIZE 1536
f7b0b939 26static char __initdata atags_copy[BOOT_PARAMS_SIZE];
4cd9d6f7
RP
27
28void __init save_atags(const struct tag *tags)
29{
f7b0b939 30 memcpy(atags_copy, tags, sizeof(atags_copy));
4cd9d6f7
RP
31}
32
4cd9d6f7
RP
33static int __init init_atags_procfs(void)
34{
f7b0b939
UKK
35 /*
36 * This cannot go into save_atags() because kmalloc and proc don't work
37 * yet when it is called.
38 */
39 struct proc_dir_entry *tags_entry;
40 struct tag *tag = (struct tag *)atags_copy;
41 struct buffer *b;
42 size_t size;
4cd9d6f7 43
f7b0b939 44 if (tag->hdr.tag != ATAG_CORE) {
4ed89f22 45 pr_info("No ATAGs?");
f7b0b939 46 return -EINVAL;
4cd9d6f7
RP
47 }
48
f7b0b939 49 for (; tag->hdr.size; tag = tag_next(tag))
4cd9d6f7
RP
50 ;
51
f7b0b939
UKK
52 /* include the terminating ATAG_NONE */
53 size = (char *)tag - atags_copy + sizeof(struct tag_header);
4cd9d6f7 54
f7b0b939
UKK
55 WARN_ON(tag->hdr.tag != ATAG_NONE);
56
57 b = kmalloc(sizeof(*b) + size, GFP_KERNEL);
58 if (!b)
59 goto nomem;
4cd9d6f7 60
f7b0b939
UKK
61 b->size = size;
62 memcpy(b->data, atags_copy, size);
63
03b642a7 64 tags_entry = proc_create_data("atags", 0400, NULL, &atags_fops, b);
f7b0b939
UKK
65 if (!tags_entry)
66 goto nomem;
67
68 return 0;
69
70nomem:
71 kfree(b);
4ed89f22 72 pr_err("Exporting ATAGs: not enough memory\n");
f7b0b939
UKK
73
74 return -ENOMEM;
75}
4cd9d6f7 76arch_initcall(init_atags_procfs);