summaryrefslogtreecommitdiffstats
path: root/modules-available/serversetup-bwlp-ipxe/inc/scriptbuilderipxe.inc.php
blob: 385cd15f4c6cdc4ff7cc0cb005543f1b1fa0cbca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
<?php

class ScriptBuilderIpxe extends ScriptBuilderBase
{

	private function getUrlBase()
	{
		if (isset($_SERVER['REQUEST_URI'])) {
			$url = parse_url($_SERVER['REQUEST_URI']);
			if (isset($_SERVER['SCRIPT_URI']) && preg_match('#^(\w+://[^/]+)#', $_SERVER['SCRIPT_URI'], $out)) {
				$urlbase = $out[1];
			} elseif (isset($_SERVER['REQUEST_SCHEME']) && isset($_SERVER['SERVER_NAME'])) {
				$urlbase = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['SERVER_NAME'];
			} elseif (isset($_SERVER['REQUEST_SCHEME']) && isset($_SERVER['SERVER_ADDR'])) {
				$urlbase = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['SERVER_ADDR'];
			} else {
				$urlbase = 'http://' . $this->serverIp;
			}
			return $urlbase . $url['path'];
		}
		// Static fallback
		return 'http://' . $this->serverIp . '/boot/ipxe';

	}

	private function getUrlFull(&$hasExt, $key = null, $value = null)
	{
		$url = parse_url($_SERVER['REQUEST_URI']);
		$urlbase = $this->getUrlBase();
		if (empty($url['query'])) {
			$fromQuery = [];
		} else {
			parse_str($url['query'], $fromQuery);
			foreach ($fromQuery as &$v) {
				$v = urlencode($v);
			}
			unset($v);
		}
		unset($fromQuery['entryid'], $fromQuery['special']);
		if ($key !== null) {
			$fromQuery[$key] = $value;
		}
		$hasExt = isset($fromQuery['slx-extensions']);
		$required = [
			'uuid' => '${uuid}',
			'mac' => '${mac}',
			'manuf' => '${manufacturer:uristring}',
			'product' => '${product:uristring}',
			'platform' => '${platform:uristring}',
		];
		$fullQuery = '?';
		foreach ($required + $fromQuery as $k => $v) { // Loop instead of http_build_query since we don't want escaping for the varnames!
			$fullQuery .= $k . '=' . $v . '&';
		}
		return $urlbase . $fullQuery;
	}

	/**
	 * Redirect to same URL, but add our extended params
	 */
	private function redirect($key = null, $value = null)
	{
		// Redirect to self with added parameters
		$urlfull = $this->getUrlFull($hasExt, $key, $value);
		if ($hasExt) {
			$output = "#!ipxe\nset self {$urlfull} ||\n";
		} else {
			$output = <<<HERE
#!ipxe
set slxtest:string something ||
iseq \${slxtest:md5} \${} && set slxext 0 || set slxext 1 ||
clear slxtest ||
set self {$urlfull}slx-extensions=\${slxext} ||

HERE;
		}
		$output .= <<<HERE
:retry
echo Chaining to \${self}
chain -ar \${self} ||
echo Chaining to self failed with \${errno}, retrying in a bit...
sleep 5
goto retry

HERE;
		return $output;
	}

	/**
	 * Called when we handle a real client request, and don't just generate static data
	 * for whatever use-case that might have. In the latter case, it wouldn't make much sense
	 * to generate a redirect code snippet.
	 * @return string
	 */
	public function bootstrapLive()
	{
		// Check if required arguments are given; if not, spit out according script and chain to self
		if ($this->uuid === false || $this->platform === '') {
			// REQUIRED so we can hide incompatible entries
			return $this->redirect();
		}
		return false;
	}

	public function getBootEntry($entry)
	{
		if (!$entry) {
			return "#!ipxe\nprompt --timeout 5000 Invalid boot entry id\n";
		}
		return $entry->toScript($this);
	}

	public function getMenu(IPxeMenu $menu, bool $bootstrap)
	{
		if ($bootstrap) {
			return "#!ipxe\nimgfree ||\n" . $this->menuToScript($menu);
		}
		$base = $this->getUrlFull($he);
		return "#!ipxe\nset self {$base} ||\n" . $this->menuToScript($menu);
	}

	/**
	 * @param IPxeMenu $menu
	 */
	public function menuToScript($menu)
	{
		if ($this->hasExtension) {
			$slxConsoleUpdate = '--update';
		} else {
			$slxConsoleUpdate = '';
		}

		$output = <<<HERE
:start

imgstat bg-menu || imgfetch --name bg-menu /tftp/pxe-menu.png ||
console --left 55 --top 88 --right 63 --bottom 64 --keep --picture bg-menu ||

colour --rgb 0xffffff 7
colour --rgb 0xcccccc 5
colour --rgb 0x000000 0
colour --rgb 0xdddddd 6
cpair --foreground 0 --background 4 1
cpair --foreground 0 --background 5 2
cpair --foreground 7 --background 9 0

:slx_menu

console --left 55 --top 88 --right 63 --bottom 64 $slxConsoleUpdate --keep --picture bg-menu ||

menu -- {$menu->title} || prompt --timeout 5000 Error creating menu ||

HERE;
		foreach ($menu->items as $item) {
			$output .= $this->getMenuItemScript($menu->defaultEntryId, $item);
		}
		if ($menu->defaultEntryId === null) {
			$default = "poweroff || exit 1 ||";
		} else {
			$default = "chain -a \${self}&entryid={$menu->defaultEntryId} ||";
		}
		$output .= "choose";
		if ($menu->timeoutMs > 0) {
			$output .= " --timeout {$menu->timeoutMs}";
		}
		$output .= " selection || goto default || goto fail\n";
		$output .= <<<HERE
console --left 60 --top 130 --right 67 --bottom 86 $slxConsoleUpdate ||
chain -a \${self}&entryid=\${selection} ||
goto fail || goto start
goto \${target} ||
echo Could not find menu entry in script.
prompt Press any key to continue.
goto start
:default
$default
:fail
prompt Boot failed. Press any key to start.
goto start

HERE;

		/*

		:i5
		chain -a /tftp/memtest.0 passes=1 onepass || goto membad
		prompt Memory OK. Press a key.
		goto init

		:i8
		set x:int32 0
		:again
		console --left 60 --top 130 --right 67 --bottom 96 --picture bg-load --keep ||
		console --left 55 --top 88 --right 63 --bottom 64 --picture bg-menu --keep ||
		inc x
		iseq \${x} 20 || goto again
		prompt DONE. Press dein Knie.
		goto slx_menu

		:membad
		iseq \${errno} 0x1 || goto memaborted
		params
		param scrot \${vram}
		imgfetch -a http://132.230.8.113/screen.php##params ||
		prompt Memory is bad. Press a key.
		goto init

		:memaborted
		params
		param scrot \${vram}
		imgfetch -a http://132.230.8.113/screen.php##params ||
		prompt Memory test aborted. Press a key.
		goto init

		*/
		return $output;
	}

	/**
	 * @param $requestedDefaultId
	 * @param MenuEntry $entry
	 * @return string
	 */
	private function getMenuItemScript($requestedDefaultId, $entry)
	{
		$str = 'item ';
		if ($entry->gap) {
			$str .= '--gap -- ';
		} else {
			if ($entry->bootEntry === null || (!empty($this->platform) && !$entry->bootEntry->supportsMode($this->platform)))
				return '';
			if ($entry->hidden && $this->hasExtension) {
				if ($entry->hotkey === false)
					return ''; // Hidden entries without hotkey are illegal
				$str .= '--hidden ';
			}
			if ($entry->hotkey !== false) {
				$str .= '--key ' . $entry->hotkey . ' ';
			}
			if ($entry->menuentryid == $requestedDefaultId) {
				$str .= '--default ';
			}
			$str .= "-- {$entry->menuentryid} ";
		}
		if (empty($entry->title)) {
			$str .= '${}';
		} else {
			$str .= $entry->title;
		}
		return $str . " || prompt Could not create menu item for {$entry->menuentryid}\n";
	}

	public function getSpecial($special)
	{
		if ($special === 'localboot') {
			// Get preferred localboot method, depending on system model
			// Check if required arguments are given; if not, spit out according script and chain to self
			// Get platform - EFI or PCBIOS
			$manuf = Request::any('manuf', false, 'string');
			$product = Request::any('product', false, 'string');
			if ($this->uuid === false && $manuf === false && $product === false) {
				return $this->redirect('special', 'localboot');
			}
			$BOOT_METHODS = Localboot::BOOT_METHODS[$this->platform];
			$localboot = false;
			$model = false;
			if ($this->uuid !== false && Module::get('statistics') !== false) {
				// If we have the machine table, we rather try to look up the system model from there, using the UUID
				$row = Database::queryFirst('SELECT systemmodel FROM machine WHERE machineuuid = :uuid', ['uuid' => $this->uuid]);
				if ($row !== false && !empty($row['systemmodel'])) {
					$model = $row['systemmodel'];
				}
			}
			if ($model === false) {
				// Otherwise use what iPXE sent us
				$manuf = $this->modfilt($manuf);
				$product = $this->modfilt($product);
				if (!empty($product)) {
					$model = $product;
					if (!empty($manuf)) {
						$model .= " ($manuf)";
					}
					$model = Util::ansiToUtf8($model);
				}
			}
			// Query
			if ($model !== false) {
				$e = strtolower($this->platform); // We made sure $this->platform is either PCBIOS or EFI, so no injection possible
				$row = Database::queryFirst("SELECT $e AS bootmethod FROM serversetup_localboot WHERE systemmodel = :model LIMIT 1",
					['model' => $model]);
				if ($row !== false) {
					$localboot = $row['bootmethod'];
				}
			}
			if ($localboot === false || !isset($BOOT_METHODS[$localboot])) {
				$localboot = Localboot::getDefault()[$this->platform];
				if (!isset($BOOT_METHODS[$localboot])) {
					$localboot = array_keys($BOOT_METHODS)[0];
				}
			}
			// Convert to actual ipxe code
			if (isset($BOOT_METHODS[$localboot])) {
				$localboot = $BOOT_METHODS[$localboot];
			} else {
				$localboot = 'prompt Localboot not possible';
			}
			$output = <<<BLA
imgfree ||
console ||
$localboot || goto fail

BLA;
			//
		} else {
			$output = "prompt --timeout 5000 Unknown special command '$special' ||\nchain -ar \${self}\n";
		}
		return $output;
	}

	public function output($string)
	{
		setlocale(LC_ALL, 'de_DE.UTF-8', 'de_DE.utf-8', 'de_DE.utf8', 'de_DE', 'de', 'German', 'ge', 'en_US.UTF-8', 'en_US.utf-8');
		if ($this->platform === 'EFI') {
			$cs = 'ASCII';
		} else {
			$cs = 'IBM437';
		}
		Header('Content-Type: text/plain; charset=' . $cs);

		echo iconv('UTF-8', $cs . '//TRANSLIT//IGNORE', $string);
	}

	public function modfilt($str)
	{
		if (empty($str) || preg_match('/product\s+name|be\s+filled|unknown|default\s+string|system\s+model|manufacturer/i', $str))
			return false;
		return trim(preg_replace('/\s+/', ' ', $str));
	}

	/**
	 * @param IPxeMenu $menu
	 */
	private function menuCheckAutostart($menu)
	{
		// If this is a menu with a single item, treat a timeout of 0 as "boot immediately" instead of "infinite"
		if ($menu->itemCount() === 1 && $menu->timeoutMs() === 0 && ($tmp = $menu->getDefaultEntryId()) !== null) {
			if (empty($menu->items[0]->md5pass)) {
				return $menu->items[0]->getBootEntryScript($this);
			} else {
				return $this->passwordDialog($menu->items[0]);
			}
		}
		return '';
	}

	const PROP_PW_SALT = 'ipxe.salt.';

	/**
	 * @param MenuEntry $menuEntryId
	 */
	private function passwordDialog($entry)
	{
		if ($this->hasExtension) {
			$salt = dechex(mt_rand(0x100000, 0xFFFFFF));
			Property::addToList(self::PROP_PW_SALT . $this->clientIp, $salt, 5);
			return <<<HERE
set password \${} ||
login --nouser ||
set password \${password:md5}-{$entry->menuentryid}
set password \${password:md5}$salt
params
param pwhash \${password:md5}
chain -a \${self}&entryid={$entry->menuentryid}##params || goto fail ||

HERE;
		}
		return <<<HERE
set username PASSWORD ONLY ||
login ||
params
param pwplain \${password}
chain -a \${self}&entryid={$entry->menuentryid}##params || goto fail ||

HERE;
	}

	public function getMenuEntry($entry, $honorPassword = true)
	{
		if ($entry === null)
			return "#!ipxe\nprompt --timeout 10000 Invalid menu entry id\n";
		$base = $this->getUrlBase();
		$meid = $entry->menuEntryId();
		// Make sure legacy variables are set; they might get used
		$output = <<<HERE
#!ipxe
set ipappend1 ip=\${ip}:{$this->serverIp}:\${gateway}:\${netmask}
set ipappend2 BOOTIF=01-\${mac:hexhyp}
set serverip {$this->serverIp} ||
iseq \${idx} \${} && set idx:string X ||
iseq \${self} \${} && set self {$base}? ||
set menuentryid $meid ||

HERE;
		// Check for password
		if ($honorPassword && !empty($entry->md5pass)) {
			$pwh = Request::post('pwhash', false, 'string');
			$pwp = Request::post('pwplain', false, 'string');
			if ($pwh === false && $pwp === false) {
				return $output . $this->passwordDialog($entry);
			}
			$ok = false;
			if ($pwh !== false) {
				$list = Property::getList(self::PROP_PW_SALT . $this->clientIp);
				foreach ($list as $salt) {
					if ($pwh === md5($entry->md5pass . $salt)) {
						$ok = true;
						break;
					}
				}
			}
			if (!$ok && $pwp !== false && !empty($entry->plainpass)) {
				$ok = ($pwp === $entry->plainpass);
			}
			if (!$ok) {
				return $output . "prompt --timeout 10000 Wrong password ||\n";
			}
		}
		// Output actual entry
		$output .= str_replace('%fail%', 'fail', $entry->getBootEntryScript($this));
		$output .= <<<HERE

goto end
:fail
prompt --timeout 5000 Error launching selected boot entry ||
:end

HERE;
		return $output;
	}

	public function execDataToScript($agnostic, $bios, $efi) : string
	{
		if ($agnostic !== null)
			return $this->execDataToScriptInternal($agnostic) . "\ngoto fail\n";

		if (empty($this->platform)) {
			// output dynamic code that decides client-side
			$biosLabel = $this->getLabel();
			$output = 'iseq ${platform} efi || goto ' . $biosLabel . "\n";
			// EFI
			if ($efi !== null) {
				$output .= $this->execDataToScriptInternal($efi) . "\n";
			} else {
				$output .= "echo EFI not supported\n";
			}
			$output .=  "goto fail\n"
				. ':' . $biosLabel . "\n";
			if ($bios !== null) {
				$output .= $this->execDataToScriptInternal($bios) . "\n";
			} else {
				$output .= "echo BIOS not supported\n";
			}
			return $output . "goto fail\n";
		}
		// static, we know in advance
		if ($efi !== null && $this->platform === BootEntry::EFI)
			return $this->execDataToScriptInternal($efi) . "\ngoto fail\n";
		// Should be BIOS at this point
		return $this->execDataToScriptInternal($bios ?? $efi ?? new ExecData()) . "\ngoto fail\n";
	}

	private function execDataToScriptInternal(ExecData $entry) : string
	{
		$entry->sanitize();
		$script = '';
		if ($entry->resetConsole) {
			$script .= "console ||\n";
		}
		if ($entry->imageFree) {
			$script .= "imgfree ||\n";
		}
		foreach ($entry->dhcpOptions as $opt) {
			if (empty($opt['value'])) {
				$val = '${}';
			} else {
				if (empty($opt['hex'])) {
					$val = bin2hex($opt['value']);
				} else {
					$val = $opt['value'];
				}
				preg_match_all('/[0-9a-f]{2}/', $val, $out);
				$val = implode(':', $out[0]);
			}
			$script .= 'set net${idx}/' . $opt['opt'] . ':hex ' . $val
				. ' || prompt Cannot override DHCP server option ' . $opt['opt'] . ". Press any key to continue anyways.\n";
		}
		$initrds = [];
		if (!empty($entry->initRd)) {
			foreach (array_values($entry->initRd) as $i => $initrd) {
				if (empty($initrd))
					continue;
				$script .= "initrd --name initrd$i $initrd || goto fail\n";
				$initrds[] = "initrd$i";
			}
		}
		$script .= "boot ";
		if ($entry->autoUnload) {
			$script .= "-a ";
		}
		if ($entry->replace) {
			$script .= "-r ";
		}
		$script .= $entry->executable;
		if (!empty($initrds)) {
			foreach ($initrds as $initrd) {
				$script .= " initrd=$initrd";
			}
		}
		if (!empty($entry->commandLine)) {
			$script .= ' ' . $entry->commandLine . ' slx.ipxe.id=${menuentryid}';
		}
		$script .= " || goto fail\n";
		if ($entry->resetConsole) {
			$script .= "goto start ||\n";
		}
		return $script;
	}

}