blob: 8e222a6660250dcab3e3d0a391331b2e0e1957af [file] [log] [blame]
Vasily Gorbik49698742018-05-15 13:28:53 +02001// SPDX-License-Identifier: GPL-2.0
Vasily Gorbik6d85dac2019-02-27 17:36:35 +01002#include <linux/kernel.h>
Vasily Gorbik49698742018-05-15 13:28:53 +02003#include <linux/init.h>
4#include <linux/ctype.h>
Mike Rapoport65fddcf2020-06-08 21:32:42 -07005#include <linux/pgtable.h>
Vasily Gorbik49698742018-05-15 13:28:53 +02006#include <asm/ebcdic.h>
7#include <asm/sclp.h>
8#include <asm/sections.h>
9#include <asm/boot_data.h>
Vasily Gorbikb5e80452019-02-27 16:52:42 +010010#include <asm/facility.h>
Vasily Gorbikdb9492c2019-04-01 19:11:04 +020011#include <asm/uv.h>
Vasily Gorbik49698742018-05-15 13:28:53 +020012#include "boot.h"
13
14char __bootdata(early_command_line)[COMMAND_LINE_SIZE];
Vasily Gorbik1e941d32019-04-01 19:10:51 +020015struct ipl_parameter_block __bootdata_preserved(ipl_block);
16int __bootdata_preserved(ipl_block_valid);
Mikhail Zaslonkoc65e6812020-01-30 22:16:27 -080017unsigned int __bootdata_preserved(zlib_dfltcc_support) = ZLIB_DFLTCC_FULL;
Vasily Gorbik49698742018-05-15 13:28:53 +020018
Vasily Gorbik59793c52019-08-02 12:28:20 +020019unsigned long __bootdata(vmalloc_size) = VMALLOC_DEFAULT_SIZE;
Vasily Gorbik49698742018-05-15 13:28:53 +020020unsigned long __bootdata(memory_end);
21int __bootdata(memory_end_set);
Vasily Gorbikd58106c2017-11-17 18:44:28 +010022int __bootdata(noexec_disabled);
Vasily Gorbik49698742018-05-15 13:28:53 +020023
Gerald Schaeferb2d24b92019-02-03 21:37:20 +010024int kaslr_enabled __section(.data);
25
Vasily Gorbik49698742018-05-15 13:28:53 +020026static inline int __diag308(unsigned long subcode, void *addr)
27{
28 register unsigned long _addr asm("0") = (unsigned long)addr;
29 register unsigned long _rc asm("1") = 0;
30 unsigned long reg1, reg2;
31 psw_t old = S390_lowcore.program_new_psw;
32
33 asm volatile(
34 " epsw %0,%1\n"
35 " st %0,%[psw_pgm]\n"
36 " st %1,%[psw_pgm]+4\n"
37 " larl %0,1f\n"
38 " stg %0,%[psw_pgm]+8\n"
39 " diag %[addr],%[subcode],0x308\n"
40 "1: nopr %%r7\n"
41 : "=&d" (reg1), "=&a" (reg2),
42 [psw_pgm] "=Q" (S390_lowcore.program_new_psw),
43 [addr] "+d" (_addr), "+d" (_rc)
44 : [subcode] "d" (subcode)
45 : "cc", "memory");
46 S390_lowcore.program_new_psw = old;
47 return _rc;
48}
49
50void store_ipl_parmblock(void)
51{
52 int rc;
53
Vasily Gorbik1e941d32019-04-01 19:10:51 +020054 rc = __diag308(DIAG308_STORE, &ipl_block);
Vasily Gorbik49698742018-05-15 13:28:53 +020055 if (rc == DIAG308_RC_OK &&
Vasily Gorbik1e941d32019-04-01 19:10:51 +020056 ipl_block.hdr.version <= IPL_MAX_SUPPORTED_VERSION)
57 ipl_block_valid = 1;
Vasily Gorbik49698742018-05-15 13:28:53 +020058}
59
Arnd Bergmann4ae98782019-04-15 10:35:54 +020060static size_t scpdata_length(const u8 *buf, size_t count)
Vasily Gorbik49698742018-05-15 13:28:53 +020061{
62 while (count) {
63 if (buf[count - 1] != '\0' && buf[count - 1] != ' ')
64 break;
65 count--;
66 }
67 return count;
68}
69
70static size_t ipl_block_get_ascii_scpdata(char *dest, size_t size,
71 const struct ipl_parameter_block *ipb)
72{
73 size_t count;
74 size_t i;
75 int has_lowercase;
76
Martin Schwidefsky86c74d82019-02-20 14:08:26 +010077 count = min(size - 1, scpdata_length(ipb->fcp.scp_data,
78 ipb->fcp.scp_data_len));
Vasily Gorbik49698742018-05-15 13:28:53 +020079 if (!count)
80 goto out;
81
82 has_lowercase = 0;
83 for (i = 0; i < count; i++) {
Martin Schwidefsky86c74d82019-02-20 14:08:26 +010084 if (!isascii(ipb->fcp.scp_data[i])) {
Vasily Gorbik49698742018-05-15 13:28:53 +020085 count = 0;
86 goto out;
87 }
Martin Schwidefsky86c74d82019-02-20 14:08:26 +010088 if (!has_lowercase && islower(ipb->fcp.scp_data[i]))
Vasily Gorbik49698742018-05-15 13:28:53 +020089 has_lowercase = 1;
90 }
91
92 if (has_lowercase)
Martin Schwidefsky86c74d82019-02-20 14:08:26 +010093 memcpy(dest, ipb->fcp.scp_data, count);
Vasily Gorbik49698742018-05-15 13:28:53 +020094 else
95 for (i = 0; i < count; i++)
Martin Schwidefsky86c74d82019-02-20 14:08:26 +010096 dest[i] = tolower(ipb->fcp.scp_data[i]);
Vasily Gorbik49698742018-05-15 13:28:53 +020097out:
98 dest[count] = '\0';
99 return count;
100}
101
102static void append_ipl_block_parm(void)
103{
104 char *parm, *delim;
105 size_t len, rc = 0;
106
107 len = strlen(early_command_line);
108
109 delim = early_command_line + len; /* '\0' character position */
110 parm = early_command_line + len + 1; /* append right after '\0' */
111
Martin Schwidefsky5f1207f2019-02-20 14:26:51 +0100112 switch (ipl_block.pb0_hdr.pbt) {
113 case IPL_PBT_CCW:
Vasily Gorbik49698742018-05-15 13:28:53 +0200114 rc = ipl_block_get_ascii_vmparm(
Vasily Gorbik1e941d32019-04-01 19:10:51 +0200115 parm, COMMAND_LINE_SIZE - len - 1, &ipl_block);
Vasily Gorbik49698742018-05-15 13:28:53 +0200116 break;
Martin Schwidefsky5f1207f2019-02-20 14:26:51 +0100117 case IPL_PBT_FCP:
Vasily Gorbik49698742018-05-15 13:28:53 +0200118 rc = ipl_block_get_ascii_scpdata(
Vasily Gorbik1e941d32019-04-01 19:10:51 +0200119 parm, COMMAND_LINE_SIZE - len - 1, &ipl_block);
Vasily Gorbik49698742018-05-15 13:28:53 +0200120 break;
121 }
122 if (rc) {
123 if (*parm == '=')
124 memmove(early_command_line, parm + 1, rc);
125 else
126 *delim = ' '; /* replace '\0' with space */
127 }
128}
129
130static inline int has_ebcdic_char(const char *str)
131{
132 int i;
133
134 for (i = 0; str[i]; i++)
135 if (str[i] & 0x80)
136 return 1;
137 return 0;
138}
139
140void setup_boot_command_line(void)
141{
142 COMMAND_LINE[ARCH_COMMAND_LINE_SIZE - 1] = 0;
143 /* convert arch command line to ascii if necessary */
144 if (has_ebcdic_char(COMMAND_LINE))
145 EBCASC(COMMAND_LINE, ARCH_COMMAND_LINE_SIZE);
146 /* copy arch command line */
147 strcpy(early_command_line, strim(COMMAND_LINE));
148
149 /* append IPL PARM data to the boot command line */
Vasily Gorbik093ddcc2019-04-01 19:11:08 +0200150 if (!is_prot_virt_guest() && ipl_block_valid)
Vasily Gorbik49698742018-05-15 13:28:53 +0200151 append_ipl_block_parm();
152}
153
Vasily Gorbikb5e80452019-02-27 16:52:42 +0100154static void modify_facility(unsigned long nr, bool clear)
155{
156 if (clear)
157 __clear_facility(nr, S390_lowcore.stfle_fac_list);
158 else
159 __set_facility(nr, S390_lowcore.stfle_fac_list);
160}
161
Vasily Gorbik6d85dac2019-02-27 17:36:35 +0100162static void check_cleared_facilities(void)
163{
164 unsigned long als[] = { FACILITIES_ALS };
165 int i;
166
167 for (i = 0; i < ARRAY_SIZE(als); i++) {
168 if ((S390_lowcore.stfle_fac_list[i] & als[i]) != als[i]) {
169 sclp_early_printk("Warning: The Linux kernel requires facilities cleared via command line option\n");
170 print_missing_facilities();
171 break;
172 }
173 }
174}
175
Vasily Gorbikb5e80452019-02-27 16:52:42 +0100176static void modify_fac_list(char *str)
177{
178 unsigned long val, endval;
179 char *endp;
180 bool clear;
181
182 while (*str) {
183 clear = false;
184 if (*str == '!') {
185 clear = true;
186 str++;
187 }
188 val = simple_strtoull(str, &endp, 0);
189 if (str == endp)
190 break;
191 str = endp;
192 if (*str == '-') {
193 str++;
194 endval = simple_strtoull(str, &endp, 0);
195 if (str == endp)
196 break;
197 str = endp;
198 while (val <= endval) {
199 modify_facility(val, clear);
200 val++;
201 }
202 } else {
203 modify_facility(val, clear);
204 }
205 if (*str != ',')
206 break;
207 str++;
208 }
Vasily Gorbik6d85dac2019-02-27 17:36:35 +0100209 check_cleared_facilities();
Vasily Gorbikb5e80452019-02-27 16:52:42 +0100210}
211
Vasily Gorbik49698742018-05-15 13:28:53 +0200212static char command_line_buf[COMMAND_LINE_SIZE] __section(.data);
Vasily Gorbikb5e80452019-02-27 16:52:42 +0100213void parse_boot_command_line(void)
Vasily Gorbik49698742018-05-15 13:28:53 +0200214{
Vasily Gorbik49698742018-05-15 13:28:53 +0200215 char *param, *val;
Vasily Gorbikd58106c2017-11-17 18:44:28 +0100216 bool enabled;
217 char *args;
218 int rc;
Vasily Gorbik49698742018-05-15 13:28:53 +0200219
Gerald Schaeferb2d24b92019-02-03 21:37:20 +0100220 kaslr_enabled = IS_ENABLED(CONFIG_RANDOMIZE_BASE);
Vasily Gorbik49698742018-05-15 13:28:53 +0200221 args = strcpy(command_line_buf, early_command_line);
222 while (*args) {
223 args = next_arg(args, &param, &val);
224
Vasily Gorbik227f52a2019-08-19 10:49:53 +0200225 if (!strcmp(param, "mem") && val) {
Vasily Gorbik22a33c72019-08-16 10:43:55 +0200226 memory_end = round_down(memparse(val, NULL), PAGE_SIZE);
Vasily Gorbik49698742018-05-15 13:28:53 +0200227 memory_end_set = 1;
228 }
Vasily Gorbikd58106c2017-11-17 18:44:28 +0100229
Vasily Gorbik227f52a2019-08-19 10:49:53 +0200230 if (!strcmp(param, "vmalloc") && val)
Vasily Gorbik59793c52019-08-02 12:28:20 +0200231 vmalloc_size = round_up(memparse(val, NULL), PAGE_SIZE);
232
Mikhail Zaslonkoc65e6812020-01-30 22:16:27 -0800233 if (!strcmp(param, "dfltcc")) {
234 if (!strcmp(val, "off"))
235 zlib_dfltcc_support = ZLIB_DFLTCC_DISABLED;
236 else if (!strcmp(val, "on"))
237 zlib_dfltcc_support = ZLIB_DFLTCC_FULL;
238 else if (!strcmp(val, "def_only"))
239 zlib_dfltcc_support = ZLIB_DFLTCC_DEFLATE_ONLY;
240 else if (!strcmp(val, "inf_only"))
241 zlib_dfltcc_support = ZLIB_DFLTCC_INFLATE_ONLY;
242 else if (!strcmp(val, "always"))
243 zlib_dfltcc_support = ZLIB_DFLTCC_FULL_DEBUG;
244 }
245
Vasily Gorbikd58106c2017-11-17 18:44:28 +0100246 if (!strcmp(param, "noexec")) {
247 rc = kstrtobool(val, &enabled);
248 if (!rc && !enabled)
249 noexec_disabled = 1;
250 }
Vasily Gorbikb5e80452019-02-27 16:52:42 +0100251
Vasily Gorbik227f52a2019-08-19 10:49:53 +0200252 if (!strcmp(param, "facilities") && val)
Vasily Gorbikb5e80452019-02-27 16:52:42 +0100253 modify_fac_list(val);
Gerald Schaeferb2d24b92019-02-03 21:37:20 +0100254
255 if (!strcmp(param, "nokaslr"))
256 kaslr_enabled = 0;
Vasily Gorbik49698742018-05-15 13:28:53 +0200257 }
258}
259
260void setup_memory_end(void)
261{
Vasily Gorbik49698742018-05-15 13:28:53 +0200262#ifdef CONFIG_CRASH_DUMP
Gerald Schaeferb2d24b92019-02-03 21:37:20 +0100263 if (OLDMEM_BASE) {
264 kaslr_enabled = 0;
265 } else if (ipl_block_valid &&
266 ipl_block.pb0_hdr.pbt == IPL_PBT_FCP &&
267 ipl_block.fcp.opt == IPL_PB0_FCP_OPT_DUMP) {
268 kaslr_enabled = 0;
Vasily Gorbik49698742018-05-15 13:28:53 +0200269 if (!sclp_early_get_hsa_size(&memory_end) && memory_end)
270 memory_end_set = 1;
271 }
272#endif
273}