Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * OS info memory interface
4 *
5 * Copyright IBM Corp. 2012
6 * Author(s): Michael Holzheu <holzheu@linux.vnet.ibm.com>
7 */
8
9#define KMSG_COMPONENT "os_info"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
12#include <linux/crash_dump.h>
13#include <linux/kernel.h>
14#include <linux/slab.h>
15#include <asm/checksum.h>
16#include <asm/abs_lowcore.h>
17#include <asm/os_info.h>
18#include <asm/physmem_info.h>
19#include <asm/maccess.h>
20#include <asm/asm-offsets.h>
21#include <asm/ipl.h>
22
23/*
24 * OS info structure has to be page aligned
25 */
26static struct os_info os_info __page_aligned_data;
27
28/*
29 * Compute checksum over OS info structure
30 */
31u32 os_info_csum(struct os_info *os_info)
32{
33 int size = sizeof(*os_info) - offsetof(struct os_info, version_major);
34 return (__force u32)cksm(&os_info->version_major, size, 0);
35}
36
37/*
38 * Add crashkernel info to OS info and update checksum
39 */
40void os_info_crashkernel_add(unsigned long base, unsigned long size)
41{
42 os_info.crashkernel_addr = (u64)(unsigned long)base;
43 os_info.crashkernel_size = (u64)(unsigned long)size;
44 os_info.csum = os_info_csum(&os_info);
45}
46
47/*
48 * Add OS info data entry and update checksum
49 */
50void os_info_entry_add_data(int nr, void *ptr, u64 size)
51{
52 os_info.entry[nr].addr = __pa(ptr);
53 os_info.entry[nr].size = size;
54 os_info.entry[nr].csum = (__force u32)cksm(ptr, size, 0);
55 os_info.csum = os_info_csum(&os_info);
56}
57
58/*
59 * Add OS info value entry and update checksum
60 */
61void os_info_entry_add_val(int nr, u64 value)
62{
63 os_info.entry[nr].val = value;
64 os_info.entry[nr].size = 0;
65 os_info.entry[nr].csum = 0;
66 os_info.csum = os_info_csum(&os_info);
67}
68
69/*
70 * Initialize OS info structure and set lowcore pointer
71 */
72void __init os_info_init(void)
73{
74 struct lowcore *abs_lc;
75
76 BUILD_BUG_ON(sizeof(struct os_info) != PAGE_SIZE);
77 os_info.version_major = OS_INFO_VERSION_MAJOR;
78 os_info.version_minor = OS_INFO_VERSION_MINOR;
79 os_info.magic = OS_INFO_MAGIC;
80 os_info_entry_add_val(OS_INFO_IDENTITY_BASE, __identity_base);
81 os_info_entry_add_val(OS_INFO_KASLR_OFFSET, kaslr_offset());
82 os_info_entry_add_val(OS_INFO_KASLR_OFF_PHYS, __kaslr_offset_phys);
83 os_info_entry_add_val(OS_INFO_VMEMMAP, (unsigned long)vmemmap);
84 os_info_entry_add_val(OS_INFO_AMODE31_START, AMODE31_START);
85 os_info_entry_add_val(OS_INFO_AMODE31_END, AMODE31_END);
86 os_info_entry_add_val(OS_INFO_IMAGE_START, (unsigned long)_stext);
87 os_info_entry_add_val(OS_INFO_IMAGE_END, (unsigned long)_end);
88 os_info_entry_add_val(OS_INFO_IMAGE_PHYS, __pa_symbol(_stext));
89 os_info.csum = os_info_csum(&os_info);
90 abs_lc = get_abs_lowcore();
91 abs_lc->os_info = __pa(&os_info);
92 put_abs_lowcore(abs_lc);
93}
94
95#ifdef CONFIG_CRASH_DUMP
96
97static struct os_info *os_info_old;
98
99/*
100 * Allocate and copy OS info entry from oldmem
101 */
102static void os_info_old_alloc(int nr, int align)
103{
104 unsigned long addr, size = 0;
105 char *buf, *buf_align, *msg;
106 u32 csum;
107
108 addr = os_info_old->entry[nr].addr;
109 if (!addr) {
110 msg = "not available";
111 goto fail;
112 }
113 size = os_info_old->entry[nr].size;
114 buf = kmalloc(size + align - 1, GFP_KERNEL);
115 if (!buf) {
116 msg = "alloc failed";
117 goto fail;
118 }
119 buf_align = PTR_ALIGN(buf, align);
120 if (copy_oldmem_kernel(buf_align, addr, size)) {
121 msg = "copy failed";
122 goto fail_free;
123 }
124 csum = (__force u32)cksm(buf_align, size, 0);
125 if (csum != os_info_old->entry[nr].csum) {
126 msg = "checksum failed";
127 goto fail_free;
128 }
129 os_info_old->entry[nr].addr = (u64)(unsigned long)buf_align;
130 msg = "copied";
131 goto out;
132fail_free:
133 kfree(buf);
134fail:
135 os_info_old->entry[nr].addr = 0;
136out:
137 pr_info("entry %i: %s (addr=0x%lx size=%lu)\n",
138 nr, msg, addr, size);
139}
140
141/*
142 * Initialize os info and os info entries from oldmem
143 */
144static void os_info_old_init(void)
145{
146 static int os_info_init;
147 unsigned long addr;
148
149 if (os_info_init)
150 return;
151 if (!oldmem_data.start && !is_ipl_type_dump())
152 goto fail;
153 if (copy_oldmem_kernel(&addr, __LC_OS_INFO, sizeof(addr)))
154 goto fail;
155 if (addr == 0 || addr % PAGE_SIZE)
156 goto fail;
157 os_info_old = kzalloc(sizeof(*os_info_old), GFP_KERNEL);
158 if (!os_info_old)
159 goto fail;
160 if (copy_oldmem_kernel(os_info_old, addr, sizeof(*os_info_old)))
161 goto fail_free;
162 if (os_info_old->magic != OS_INFO_MAGIC)
163 goto fail_free;
164 if (os_info_old->csum != os_info_csum(os_info_old))
165 goto fail_free;
166 if (os_info_old->version_major > OS_INFO_VERSION_MAJOR)
167 goto fail_free;
168 os_info_old_alloc(OS_INFO_VMCOREINFO, 1);
169 os_info_old_alloc(OS_INFO_REIPL_BLOCK, 1);
170 pr_info("crashkernel: addr=0x%lx size=%lu\n",
171 (unsigned long) os_info_old->crashkernel_addr,
172 (unsigned long) os_info_old->crashkernel_size);
173 os_info_init = 1;
174 return;
175fail_free:
176 kfree(os_info_old);
177fail:
178 os_info_init = 1;
179 os_info_old = NULL;
180}
181
182/*
183 * Return pointer to os info entry and its size
184 */
185void *os_info_old_entry(int nr, unsigned long *size)
186{
187 os_info_old_init();
188
189 if (!os_info_old)
190 return NULL;
191 if (!os_info_old->entry[nr].addr)
192 return NULL;
193 *size = (unsigned long) os_info_old->entry[nr].size;
194 return (void *)(unsigned long)os_info_old->entry[nr].addr;
195}
196#endif
1/*
2 * OS info memory interface
3 *
4 * Copyright IBM Corp. 2012
5 * Author(s): Michael Holzheu <holzheu@linux.vnet.ibm.com>
6 */
7
8#define KMSG_COMPONENT "os_info"
9#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10
11#include <linux/crash_dump.h>
12#include <linux/kernel.h>
13#include <asm/checksum.h>
14#include <asm/lowcore.h>
15#include <asm/os_info.h>
16
17/*
18 * OS info structure has to be page aligned
19 */
20static struct os_info os_info __page_aligned_data;
21
22/*
23 * Compute checksum over OS info structure
24 */
25u32 os_info_csum(struct os_info *os_info)
26{
27 int size = sizeof(*os_info) - offsetof(struct os_info, version_major);
28 return csum_partial(&os_info->version_major, size, 0);
29}
30
31/*
32 * Add crashkernel info to OS info and update checksum
33 */
34void os_info_crashkernel_add(unsigned long base, unsigned long size)
35{
36 os_info.crashkernel_addr = (u64)(unsigned long)base;
37 os_info.crashkernel_size = (u64)(unsigned long)size;
38 os_info.csum = os_info_csum(&os_info);
39}
40
41/*
42 * Add OS info entry and update checksum
43 */
44void os_info_entry_add(int nr, void *ptr, u64 size)
45{
46 os_info.entry[nr].addr = (u64)(unsigned long)ptr;
47 os_info.entry[nr].size = size;
48 os_info.entry[nr].csum = csum_partial(ptr, size, 0);
49 os_info.csum = os_info_csum(&os_info);
50}
51
52/*
53 * Initialize OS info struture and set lowcore pointer
54 */
55void __init os_info_init(void)
56{
57 void *ptr = &os_info;
58
59 os_info.version_major = OS_INFO_VERSION_MAJOR;
60 os_info.version_minor = OS_INFO_VERSION_MINOR;
61 os_info.magic = OS_INFO_MAGIC;
62 os_info.csum = os_info_csum(&os_info);
63 memcpy_absolute(&S390_lowcore.os_info, &ptr, sizeof(ptr));
64}
65
66#ifdef CONFIG_CRASH_DUMP
67
68static struct os_info *os_info_old;
69
70/*
71 * Allocate and copy OS info entry from oldmem
72 */
73static void os_info_old_alloc(int nr, int align)
74{
75 unsigned long addr, size = 0;
76 char *buf, *buf_align, *msg;
77 u32 csum;
78
79 addr = os_info_old->entry[nr].addr;
80 if (!addr) {
81 msg = "not available";
82 goto fail;
83 }
84 size = os_info_old->entry[nr].size;
85 buf = kmalloc(size + align - 1, GFP_KERNEL);
86 if (!buf) {
87 msg = "alloc failed";
88 goto fail;
89 }
90 buf_align = PTR_ALIGN(buf, align);
91 if (copy_from_oldmem(buf_align, (void *) addr, size)) {
92 msg = "copy failed";
93 goto fail_free;
94 }
95 csum = csum_partial(buf_align, size, 0);
96 if (csum != os_info_old->entry[nr].csum) {
97 msg = "checksum failed";
98 goto fail_free;
99 }
100 os_info_old->entry[nr].addr = (u64)(unsigned long)buf_align;
101 msg = "copied";
102 goto out;
103fail_free:
104 kfree(buf);
105fail:
106 os_info_old->entry[nr].addr = 0;
107out:
108 pr_info("entry %i: %s (addr=0x%lx size=%lu)\n",
109 nr, msg, addr, size);
110}
111
112/*
113 * Initialize os info and os info entries from oldmem
114 */
115static void os_info_old_init(void)
116{
117 static int os_info_init;
118 unsigned long addr;
119
120 if (os_info_init)
121 return;
122 if (!OLDMEM_BASE)
123 goto fail;
124 if (copy_from_oldmem(&addr, &S390_lowcore.os_info, sizeof(addr)))
125 goto fail;
126 if (addr == 0 || addr % PAGE_SIZE)
127 goto fail;
128 os_info_old = kzalloc(sizeof(*os_info_old), GFP_KERNEL);
129 if (!os_info_old)
130 goto fail;
131 if (copy_from_oldmem(os_info_old, (void *) addr, sizeof(*os_info_old)))
132 goto fail_free;
133 if (os_info_old->magic != OS_INFO_MAGIC)
134 goto fail_free;
135 if (os_info_old->csum != os_info_csum(os_info_old))
136 goto fail_free;
137 if (os_info_old->version_major > OS_INFO_VERSION_MAJOR)
138 goto fail_free;
139 os_info_old_alloc(OS_INFO_VMCOREINFO, 1);
140 os_info_old_alloc(OS_INFO_REIPL_BLOCK, 1);
141 pr_info("crashkernel: addr=0x%lx size=%lu\n",
142 (unsigned long) os_info_old->crashkernel_addr,
143 (unsigned long) os_info_old->crashkernel_size);
144 os_info_init = 1;
145 return;
146fail_free:
147 kfree(os_info_old);
148fail:
149 os_info_init = 1;
150 os_info_old = NULL;
151}
152
153/*
154 * Return pointer to os infor entry and its size
155 */
156void *os_info_old_entry(int nr, unsigned long *size)
157{
158 os_info_old_init();
159
160 if (!os_info_old)
161 return NULL;
162 if (!os_info_old->entry[nr].addr)
163 return NULL;
164 *size = (unsigned long) os_info_old->entry[nr].size;
165 return (void *)(unsigned long)os_info_old->entry[nr].addr;
166}
167#endif