forked from turnkeylinux/confconsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
confconsole.py
executable file
·742 lines (581 loc) · 24.1 KB
/
confconsole.py
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
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
#!/usr/bin/python3
# Copyright (c) 2008 Alon Swartz <[email protected]> - all rights reserved
"""TurnKey Configuration Console
Options:
-h, --help Display this help and exit
--usage Display usage screen without Advanced Menu
--nointeractive Do not display interactive dialog
--plugin=<name> Run plugin directly
"""
import os
import sys
import dialog
from dialog import DialogError
import ipaddr
from string import Template
import ifutil
import netinfo
import getopt
import conf
from io import StringIO
import traceback
import subprocess
from subprocess import PIPE, CalledProcessError
import shlex
import plugin
PLUGIN_PATH = os.path.join(os.path.dirname(os.path.realpath(__file__)),
'plugins.d')
class Error(Exception):
pass
def fatal(e):
print("error:", e, file=sys.stderr)
sys.exit(1)
def usage(e=None):
if e:
print("Error:", e, file=sys.stderr)
print("Syntax: %s" % sys.argv[0], file=sys.stderr)
print(__doc__.strip(), file=sys.stderr)
sys.exit(1)
def format_fields(fields):
'''Takes fields in format (label, field, label_length, field_length) and
outputs fields in format (label, ly, lx, item, iy, ix, field_length,
input_length)
'''
out = []
for i, (label, field, l_length, f_length) in enumerate(fields):
out.append((label, i+1, 1, field, i+1, l_length+1, l_length, f_length))
return out
class Console:
def __init__(self, title=None, width=60, height=20):
self.width = width
self.height = height
self.console = dialog.Dialog(dialog="dialog")
self.console.add_persistent_args(["--no-collapse"])
self.console.add_persistent_args(["--ok-label", "Select"])
self.console.add_persistent_args(["--cancel-label", "Back"])
self.console.add_persistent_args(["--colors"])
if conf.Conf().copy_paste:
self.console.add_persistent_args(["--no-mouse"])
if title:
self.console.add_persistent_args(["--backtitle", title])
def _handle_exitcode(self, retcode):
if retcode == 'esc':
text = "Do you really want to quit?"
if self.console.yesno(text) == 0:
sys.exit(0)
return False
return True
def _wrapper(self, dialog, text, *args, **kws):
try:
method = getattr(self.console, dialog)
except AttributeError:
raise Error("dialog not supported: " + dialog)
while 1:
try:
ret = method("\n" + text, *args, **kws)
except DialogError as e:
if "Can't make new window" in e.message:
self.console.msgbox(
"Terminal too small for UI, resize terminal and press OK",
ok_label='OK'
)
continue
else:
raise
if type(ret) is str:
retcode = ret
else:
retcode = ret[0]
if self._handle_exitcode(retcode):
break
return ret
def infobox(self, text):
return self._wrapper("infobox", text)
def yesno(self, text, autosize=False):
if autosize:
text += '\n '
height, width = 0, 0
else:
height, width = 10, 30
return self._wrapper("yesno", text, height, width)
def msgbox(self, title, text, button_label="ok", autosize=False):
if autosize:
text += '\n '
height, width = 0, 0
else:
height, width = self.height, self.width
return self._wrapper("msgbox", text, height, width,
title=title, ok_label=button_label)
def inputbox(self, title, text, init='', ok_label="OK",
cancel_label="Cancel"):
no_cancel = True if cancel_label == "" else False
return self._wrapper("inputbox", text, self.height, self.width,
title=title, init=init, ok_label=ok_label,
cancel_label=cancel_label, no_cancel=no_cancel)
def menu(self, title, text, choices, no_cancel=False):
return self._wrapper("menu", text, self.height, self.width,
menu_height=len(choices)+1,
title=title, choices=choices, no_cancel=no_cancel)
def form(self, title, text, fields, ok_label="Apply",
cancel_label="Cancel", autosize=False):
if autosize:
text += '\n '
height, width = 0, 0
else:
height, width = self.height, self.width
return self._wrapper("form", text, fields,
height=height, width=width,
form_height=len(fields)+1,
title=title,
ok_label=ok_label, cancel_label=cancel_label)
class Installer:
def __init__(self, path):
self.path = path
self.available = self._is_available()
def _is_available(self):
if not os.path.exists(self.path):
return False
with open('/proc/cmdline') as fob:
return 'boot=live' in fob.readline().split()
return False
def execute(self):
if not self.available:
raise Error("installer is not available to be executed")
subprocess.run([self.path])
class TurnkeyConsole:
OK = 'ok'
CANCEL = 1
def __init__(self, pluginManager, eventManager, advanced_enabled=True):
title = "TurnKey GNU/Linux Configuration Console"
self.width = 60
self.height = 20
self.console = Console(title, self.width, self.height)
self.appname = "TurnKey GNU/Linux %s" % netinfo.get_hostname().upper()
self.installer = Installer(path='/usr/bin/di-live')
self.advanced_enabled = advanced_enabled
# self.eventManager = plugin.EventManager()
# self.pluginManager = plugin.PluginManager(
# PLUGIN_PATH,
# {'eventManager': self.eventManager, 'console': self.console})
self.eventManager = eventManager
self.pluginManager = pluginManager
self.pluginManager.updateGlobals({'console': self.console})
@staticmethod
def _get_filtered_ifnames():
ifnames = []
for ifname in netinfo.get_ifnames():
if ifname.startswith(('lo', 'tap', 'br', 'natbr', 'tun',
'vmnet', 'veth', 'wmaster')):
continue
ifnames.append(ifname)
# handle bridged LXC where br0 is the default outward-facing interface
defifname = conf.Conf().default_nic
if defifname and defifname.startswith('br'):
ifnames.append(defifname)
bridgedif = subprocess.check_output(
['brctl', 'show', defifname],
text=True).split('\n')[1].split('\t')[-1]
ifnames.remove(bridgedif)
ifnames.sort()
return ifnames
@classmethod
def _get_default_nic(cls):
def _validip(ifname):
ip = ifutil.get_ipconf(ifname)[0]
if ip and not ip.startswith('169'):
return True
return False
defifname = conf.Conf().default_nic
if defifname and _validip(defifname):
return defifname
for ifname in cls._get_filtered_ifnames():
if _validip(ifname):
return ifname
return None
@classmethod
def _get_public_ipaddr(cls):
publicip_cmd = conf.Conf().publicip_cmd
if publicip_cmd:
command = subprocess.run(shlex.split(publicip_cmd),
stdout=PIPE,
encoding='utf-8')
if command.returncode == 0:
return command.stdout.strip()
return None
def _get_advmenu(self):
items = []
if conf.Conf().networking:
items.append(("Networking", "Configure appliance networking"))
if self.installer.available:
items.append(("Install", "Install to hard disk"))
plugin_map = {}
for path in self.pluginManager.path_map:
plug = self.pluginManager.path_map[path]
if os.path.dirname(path) == PLUGIN_PATH:
if isinstance(plug, plugin.Plugin) and hasattr(plug.module,
'run'):
items.append((plug.module_name.capitalize(),
str(plug.module.__doc__)))
elif isinstance(plug, plugin.PluginDir):
items.append((plug.module_name.capitalize(),
plug.description))
plugin_map[plug.module_name.capitalize()] = plug
items.append(("Reboot", "Reboot the appliance"))
items.append(("Shutdown", "Shutdown the appliance"))
items.append(("Quit", "Quit the configuration console"))
return items, plugin_map
def _get_netmenu(self):
menu = []
for ifname in self._get_filtered_ifnames():
addr = ifutil.get_ipconf(ifname)[0]
ifmethod = ifutil.get_ifmethod(ifname)
if addr:
desc = addr
if ifmethod:
desc += " (%s)" % ifmethod
if ifname == self._get_default_nic():
desc += " [*]"
else:
desc = "not configured"
menu.append((ifname, desc))
return menu
def _get_ifconfmenu(self, ifname):
menu = []
menu.append(("DHCP", "Configure networking automatically"))
menu.append(("StaticIP", "Configure networking manually"))
if not ifname == self._get_default_nic() and \
len(self._get_filtered_ifnames()) > 1 and \
ifutil.get_ipconf(ifname)[0] is not None:
menu.append(("Default", "Show this adapter's IP address in Usage"))
return menu
def _get_ifconftext(self, ifname):
addr, netmask, gateway, nameservers = ifutil.get_ipconf(ifname)
if addr is None:
return "Network adapter is not configured\n"
text = "IP Address: %s\n" % addr
text += "Netmask: %s\n" % netmask
text += "Default Gateway: %s\n" % gateway
text += "Name Server(s): %s\n\n" % " ".join(nameservers)
ifmethod = ifutil.get_ifmethod(ifname)
if ifmethod:
text += "Networking configuration method: %s\n" % ifmethod
if len(self._get_filtered_ifnames()) > 1:
text += "Is this adapter's IP address displayed in Usage: "
if ifname == self._get_default_nic():
text += "yes\n"
else:
text += "no\n"
return text
def usage(self):
if self.advanced_enabled:
default_button_label = "Advanced Menu"
default_return_value = "advanced"
else:
default_button_label = "Quit"
default_return_value = "quit"
# if no interfaces at all - display error and go to advanced
if len(self._get_filtered_ifnames()) == 0:
error = "No network adapters detected"
if not self.advanced_enabled:
fatal(error)
self.console.msgbox("Error", error)
return "advanced"
# if interfaces but no default - display error and go to networking
ifname = self._get_default_nic()
if not ifname:
error = "Networking is not yet configured"
if not self.advanced_enabled:
fatal(error)
self.console.msgbox("Error", error)
return "networking"
# tklbam integration
tklbamstatus_cmd = subprocess.run(['which', 'tklbam-status'],
stdout=PIPE,
encoding='utf-8').stdout.strip()
if tklbamstatus_cmd:
tklbam_status = subprocess.run([tklbamstatus_cmd, "--short"],
stdout=PIPE,
encoding='utf-8').stdout
else:
tklbam_status = ("TKLBAM not found - please check that it's"
" installed.")
# display usage
ip_addr = self._get_public_ipaddr()
if not ip_addr:
ip_addr = ifutil.get_ipconf(ifname)[0]
hostname = netinfo.get_hostname().upper()
try:
with open(conf.path('services.txt'), 'r') as fob:
t = fob.read().rstrip()
except conf.Error:
t = ""
text = Template(t).substitute(ipaddr=ip_addr)
text += "\n\n%s\n\n" % tklbam_status
text += "\n" * (self.height - len(text.splitlines()) - 7)
text += " TurnKey Backups and Cloud Deployment\n"
text += " https://hub.turnkeylinux.org"
retcode = self.console.msgbox("%s appliance services" % hostname,
text,
button_label=default_button_label)
if retcode is not self.OK:
self.running = False
return default_return_value
def advanced(self):
# dont display cancel button when no interfaces at all
no_cancel = False
if len(self._get_filtered_ifnames()) == 0:
no_cancel = True
items, plugin_map = self._get_advmenu()
retcode, choice = self.console.menu("Advanced Menu",
self.appname + " Advanced Menu\n",
items,
no_cancel=no_cancel)
if retcode is not self.OK:
return "usage"
if choice in plugin_map:
return plugin_map[choice].path
return "_adv_" + choice.lower()
def networking(self):
ifnames = self._get_filtered_ifnames()
# if no interfaces at all - display error and go to advanced
if len(ifnames) == 0:
self.console.msgbox("Error", "No network adapters detected")
return "advanced"
# if only 1 interface, dont display menu - just configure it
if len(ifnames) == 1:
self.ifname = ifnames[0]
return "ifconf"
# display networking
text = "Choose network adapter to configure\n"
if self._get_default_nic():
text += "[*] This adapter's IP address is displayed in Usage"
retcode, self.ifname = self.console.menu("Networking configuration",
text, self._get_netmenu())
if retcode is not self.OK:
return "advanced"
return "ifconf"
def ifconf(self):
retcode, choice = self.console.menu("%s configuration" % self.ifname,
self._get_ifconftext(self.ifname),
self._get_ifconfmenu(self.ifname))
if retcode is not self.OK:
# if multiple interfaces go back to networking
if len(self._get_filtered_ifnames()) > 1:
return "networking"
return "advanced"
return "_ifconf_" + choice.lower()
def _ifconf_staticip(self):
def _validate(addr, netmask, gateway, nameservers):
"""Validate Static IP form parameters. Returns an empty array on
success, an array of strings describing errors otherwise"""
errors = []
if not addr:
errors.append("No IP address provided")
elif not ipaddr.is_legal_ip(addr):
errors.append("Invalid IP address: %s" % addr)
if not netmask:
errors.append("No netmask provided")
elif not ipaddr.is_legal_ip(netmask):
errors.append("Invalid netmask: %s" % netmask)
for nameserver in nameservers:
if nameserver and not ipaddr.is_legal_ip(nameserver):
errors.append("Invalid nameserver: %s" % nameserver)
if len(nameservers) != len(set(nameservers)):
errors.append("Duplicate nameservers specified")
if errors:
return errors
if gateway:
if not ipaddr.is_legal_ip(gateway):
return ["Invalid gateway: %s" % gateway]
else:
iprange = ipaddr.IPRange(addr, netmask)
if gateway not in iprange:
return ["Gateway (%s) not in IP range (%s)"
"" % (gateway, iprange)]
return []
warnings = []
try:
addr, netmask, gateway, nameservers = ifutil.get_ipconf(self.ifname, True)
except CalledProcessError:
warnings.append('`route -n` returned non-0 exit code! (unable to get gateway)')
addr, netmask, gateway, nameservers = None, None, '', []
except netinfo.NetInfoError:
warnings.append('failed to find default gateway!')
addr, netmask, gateway, nameservers = None, None, '', []
if addr is None:
warnings.append('failed to assertain current address!')
addr = ''
if netmask is None:
warnings.append('failed to assertain current netmask!')
netmask = ''
if warnings:
warnings.append('\nWill leave relevant fields blank')
if warnings:
self.console.msgbox("Warning", '\n'.join(warnings))
input = [addr, netmask, gateway]
input.extend(nameservers)
# include minimum 2 nameserver fields and 1 blank one
if len(input) < 4:
input.append('')
if input[-1]:
input.append('')
field_width = 30
field_limit = 15
while 1:
fields = [
("IP Address", input[0], field_width, field_limit),
("Netmask", input[1], field_width, field_limit),
("Default Gateway", input[2], field_width, field_limit),
]
for i in range(len(input[3:])):
fields.append(("Name Server", input[3+i],
field_width, field_limit))
fields = format_fields(fields)
text = "Static IP configuration (%s)" % self.ifname
retcode, input = self.console.form("Network settings",
text, fields)
if retcode is not self.OK:
break
# remove any whitespaces the user might of included
for i in range(len(input)):
input[i] = input[i].strip()
# unconfigure the nic if all entries are empty
if not input[0] and not input[1] and not input[2] and not input[3]:
ifutil.unconfigure_if(self.ifname)
break
addr, netmask, gateway = input[:3]
nameservers = input[3:]
for i in range(nameservers.count('')):
nameservers.remove('')
err = _validate(addr, netmask, gateway, nameservers)
if err:
err = "\n".join(err)
else:
in_ssh = 'SSH_CONNECTION' in os.environ
if not in_ssh or (in_ssh and self.console.yesno(
"Warning: Changing ip while an ssh session is active will"
" drop said ssh session!", autosize=True) == self.OK):
err = ifutil.set_static(self.ifname, addr, netmask,
gateway, nameservers)
if not err:
break
else:
break
self.console.msgbox("Error", err)
return "ifconf"
def _ifconf_dhcp(self):
in_ssh = 'SSH_CONNECTION' in os.environ
if not in_ssh or (in_ssh and self.console.yesno(
"Warning: Changing ip while an ssh session is active will"
" drop said ssh session!", autosize=True) == self.OK):
self.console.infobox("Requesting DHCP for %s..." % self.ifname)
err = ifutil.set_dhcp(self.ifname)
if err:
self.console.msgbox("Error", err)
return "ifconf"
def _ifconf_default(self):
conf.Conf().set_default_nic(self.ifname)
return "ifconf"
def _adv_install(self):
text = "Please note that any changes you may have made to the\n"
text += "live system will *not* be installed to the hard disk.\n\n"
self.console.msgbox("Installer", text)
self.installer.execute()
return "advanced"
def _shutdown(self, text, opt):
if self.console.yesno(text) == self.OK:
self.running = False
cmd = "shutdown %s now" % opt
fgvt = os.environ.get("FGVT")
if fgvt:
cmd = "chvt %s; " % fgvt + cmd
os.system(cmd)
return "advanced"
def _adv_reboot(self):
return self._shutdown("Reboot the appliance?", "-r")
def _adv_shutdown(self):
return self._shutdown("Shutdown the appliance?", "-h")
def _adv_quit(self):
if not self.advanced_enabled:
self.running = False
return "usage"
if self.console.yesno("Do you really want to quit?",
autosize=True) == self.OK:
self.running = False
return "advanced"
_adv_networking = networking
quit = _adv_quit
def loop(self, dialog="usage"):
self.running = True
prev_dialog = dialog
standalone = dialog != 'usage' # no "back" for plugins
while dialog and self.running:
try:
if not dialog.startswith(PLUGIN_PATH):
try:
method = getattr(self, dialog)
except AttributeError:
raise Error("dialog not supported: " + dialog)
else:
try:
method = self.pluginManager.path_map[dialog].run
except KeyError:
raise Error("could not find plugin dialog: " + dialog)
new_dialog = method()
if standalone: # XXX This feels dirty
break
prev_dialog = dialog
dialog = new_dialog
except Exception as e:
sio = StringIO()
traceback.print_exc(file=sio)
self.console.msgbox("Caught exception", sio.getvalue())
dialog = prev_dialog
def main():
interactive = True
advanced_enabled = True
plugin_name = None
if os.geteuid() != 0:
fatal("confconsole needs root privileges to run")
try:
l_opts = ["help", "usage", "nointeractive", "plugin="]
opts, args = getopt.gnu_getopt(sys.argv[1:], "hn", l_opts)
except getopt.GetoptError as e:
usage(e)
for opt, val in opts:
if opt in ("-h", "--help"):
usage()
elif opt == "--usage":
advanced_enabled = False
elif opt == "--nointeractive":
interactive = False
elif opt == "--plugin":
plugin_name = val
else:
usage()
em = plugin.EventManager()
pm = plugin.PluginManager(PLUGIN_PATH,
{'eventManager': em, 'interactive': interactive})
if plugin_name:
ps = filter(lambda x: isinstance(x, plugin.Plugin),
pm.getByName(plugin_name))
if len(ps) > 1:
fatal('plugin name ambiguous, matches all of %s' % ps)
elif len(ps) == 1:
p = ps[0]
if interactive:
tc = TurnkeyConsole(pm, em, advanced_enabled)
tc.loop(dialog=p.path) # calls .run()
else:
p.module.run()
else:
fatal('no such plugin')
else:
tc = TurnkeyConsole(pm, em, advanced_enabled)
tc.loop()
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
subprocess.run(['stty', 'sane'])
traceback.print_exc()