-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlxc-vagrantizer.py
executable file
·464 lines (381 loc) · 17.1 KB
/
lxc-vagrantizer.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
#!/usr/bin/env python3
from __future__ import print_function
import os
import sys
import glob
import time
import json
import logging
import argparse
import platform
import datetime
import subprocess
import urllib.request
import multiprocessing
log = logging.getLogger()
SYSTEMS = {
'fedora': ['29', '30', '31', '32', '33', '34'],
'centos': ['7', '8'],
#'rhel': ['7', '8'],
'rhel': ['8'],
'ubuntu': ['16.04', '18.04', '18.10', '19.04', '19.10', '20.04', '21.04', '21.10', '22.04'],
'debian': ['8', '9', '10'],
'alpine': ['3.10', '3.11', '3.12', '3.13', '3.14', '3.15', '3.16', 'edge'],
}
def red(txt):
if sys.stdout.isatty():
return '\033[1;31m%s\033[0;0m' % txt
else:
return txt
def green(txt):
if sys.stdout.isatty():
return '\033[0;32m%s\033[0;0m' % txt
else:
return txt
def blue(txt):
if sys.stdout.isatty():
return '\033[0;34m%s\033[0;0m' % txt
else:
return txt
def get_system_revision():
system = platform.system()
system, revision, _ = platform.dist()
if system == 'debian':
if revision.startswith('8.'):
revision = '8'
elif system == 'redhat':
system = 'rhel'
if revision.startswith('8.'):
revision = '8'
return system.lower(), revision
class ExecutionError(Exception): pass
def execute(cmd, timeout=60, cwd=None, env=None, raise_error=True, dry_run=False, quiet=False, check_times=False, capture=False):
log.info('>>>>> Executing %s in %s', cmd, cwd if cwd else os.getcwd())
if not check_times:
timeout = None
if dry_run:
return 0
p = subprocess.Popen(cmd, cwd=cwd, env=env, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
t0 = time.time()
t1 = time.time()
output = ''
while p.poll() is None and (timeout is None or t1 - t0 < timeout):
line = p.stdout.readline()
if line:
if not quiet:
l = line.decode(errors='ignore').strip()
if not capture:
print(l + '\r')
output += l + '\n'
t1 = time.time()
if p.poll() is None:
raise ExecutionError('Execution timeout')
exitcode = p.returncode
if exitcode != 0 and raise_error:
raise ExecutionError("The command return non-zero exitcode %s, cmd: '%s'" % (exitcode, cmd))
return exitcode, output
class LXC(object):
def __init__(self, system, revision):
self.system = system
self.revision = revision
self.name = '%s-%s-bare' % (system, revision)
rev_map = {
'debian': {'8': 'jessie',
'9': 'stretch',
'10': 'buster'},
'ubuntu': {'14.04': 'trusty',
'16.04': 'xenial',
'18.04': 'bionic',
'18.10': 'cosmic',
'19.04': 'disco',
'19.10': 'eoan',
'20.04': 'focal',
'20.10': 'groovy',
'21.04': 'hirsute',
'21.10': 'impish',
'22.04': 'jammy'}
}
try:
self.alt_revision = rev_map[system][revision]
except:
self.alt_revision = revision
def create(self):
cmd = 'bash -c "echo -e \'{system}\\n{revision}\\namd64\' | sudo lxc-create -n {name} -t download"'
cmd = cmd.format(system=self.system, revision=self.alt_revision, name=self.name)
execute(cmd)
def start(self):
if self.get_state() != 'RUNNING':
execute('sudo lxc-start -d -n %s' % self.name)
def stop(self):
if self.get_state() != 'STOPPED':
execute('sudo lxc-stop -n %s' % self.name)
def is_present(self):
exitcode, _ = execute("sudo lxc-ls -1|grep '^%s$'" % self.name, raise_error=False)
return exitcode == 0
def destroy(self):
if not self.is_present():
return
self.stop()
execute('sudo lxc-destroy -n %s' % self.name)
def execute(self, cmd):
execute('sudo lxc-attach -n %s -- %s' % (self.name, cmd))
def get_container_dir(self):
return os.path.join('/var/lib/lxc', self.name)
def get_rootfs_dir(self):
return os.path.join(self.get_container_dir(), 'rootfs')
def get_state(self):
ret, out = execute('sudo lxc-info -n %s -s' % self.name, capture=True)
if 'STOPPED' in out:
return 'STOPPED'
elif 'RUNNING' in out:
return 'RUNNING'
else:
print(out)
raise NotImplementedError
def install_extras(lxc):
log.info('Installing extras...')
lxc.start()
time.sleep(5) # wait for network
if lxc.system in ['debian', 'ubuntu']:
lxc.execute('apt update')
lxc.execute('apt upgrade -y')
packages = ['vim', 'wget', 'openssh-server', 'ca-certificates', 'sudo', 'python3']
if lxc.system == 'debian' and lxc.revision == '8' or lxc.system == 'ubuntu' and lxc.revision == '16.04':
packages.extend(['dbus', 'libnss-myhostname'])
lxc.execute('mkdir -p /etc/systemd/system/systemd-hostnamed.service.d')
lxc.execute('bash -c "echo -e \'[Service]\\nPrivateDevices=no\\n\' > /etc/systemd/system/systemd-hostnamed.service.d/override.conf"')
elif lxc.system == 'ubuntu' and lxc.revision == '14.04':
lxc.execute('mount -o remount,ro /sys/fs/selinux')
cmd = 'apt install -y '
cmd += ' '.join(packages)
lxc.execute(cmd)
elif lxc.system == 'fedora' or (lxc.system == 'centos' and lxc.revision == '8'):
lxc.execute('dnf upgrade -y')
packages = ['vim-enhanced', 'wget', 'openssh-server', 'ca-certificates', 'sudo', 'python3']
cmd = 'dnf install -y '
cmd += ' '.join(packages)
lxc.execute(cmd)
elif lxc.system == 'centos' and lxc.revision == '7':
time.sleep(5) # 5secs more for network
lxc.execute('yum upgrade -y')
packages = ['vim-enhanced', 'wget', 'openssh-server', 'ca-certificates', 'sudo', 'python3']
cmd = 'yum install -y '
cmd += ' '.join(packages)
lxc.execute(cmd)
elif lxc.system in ['alpine']:
lxc.execute('apk update')
lxc.execute('apk upgrade')
lxc.execute('apk add vim wget openssh ca-certificates sudo python3 bash')
lxc.execute('rc-update add sshd')
else:
print(lxc.system)
raise NotImplementedError
log.info('Installing extras done.')
def clean(lxc):
lxc.start()
log.info('Cleaning...')
if lxc.system in ['debian', 'ubuntu']:
lxc.execute('apt-get clean')
elif lxc.system == 'fedora' or (lxc.system == 'centos' and lxc.revision == '8'):
lxc.execute('dnf clean packages')
elif lxc.system == 'centos' and lxc.revision == '7':
lxc.execute('yum clean packages')
lxc.stop()
rootfs = lxc.get_rootfs_dir()
if lxc.system in ['debian', 'ubuntu']:
execute('sudo rm -rf %s/var/lib/apt/lists/*' % rootfs)
execute('sudo rm -rf %s/usr/share/doc' % rootfs)
execute('sudo rm -rf %s/tmp/*' % rootfs)
execute('sudo rm -f %s/var/lib/dhcp/*' % rootfs)
def setup_vagrant_user(lxc):
vagrant_key = "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key"
log.info("Preparing vagrant user...")
lxc.stop()
rootfs_dir = lxc.get_rootfs_dir()
# Create vagrant user
exitcode, _ = execute("sudo grep -q 'vagrant' %s/etc/shadow" % rootfs_dir, raise_error=False)
if exitcode == 0:
log.info('Skipping vagrant user creation')
#elif $(grep -q 'ubuntu' ${ROOTFS}/etc/shadow); then
# debug 'vagrant user does not exist, renaming ubuntu user...'
# mv ${ROOTFS}/home/{ubuntu,vagrant}
# chroot ${ROOTFS} usermod -l vagrant -d /home/vagrant ubuntu &>> ${LOG}
# chroot ${ROOTFS} groupmod -n vagrant ubuntu &>> ${LOG}
# echo -n 'vagrant:vagrant' | chroot ${ROOTFS} chpasswd
# log 'Renamed ubuntu user to vagrant and changed password.'
#elif [ ${DISTRIBUTION} = 'centos' -o ${DISTRIBUTION} = 'fedora' ]; then
# debug 'Creating vagrant user...'
# chroot ${ROOTFS} useradd --create-home -s /bin/bash -u 1000 vagrant &>> ${LOG}
# echo -n 'vagrant:vagrant' | chroot ${ROOTFS} chpasswd
# sed -i 's/^Defaults\s\+requiretty/# Defaults requiretty/' $ROOTFS/etc/sudoers
# if [ ${RELEASE} -eq 6 ]; then
# info 'Disabling password aging for root...'
# # disable password aging (required on Centos 6)
# # pretend that password was changed today (won't fail during provisioning)
# chroot ${ROOTFS} chage -I -1 -m 0 -M 99999 -E -1 -d `date +%Y-%m-%d` root
# fi
elif lxc.system in ['debian', 'ubuntu']:
log.debug('Creating vagrant user...')
if lxc.system == 'ubuntu':
execute('sudo chroot %s userdel ubuntu' % rootfs_dir)
execute('sudo chroot %s useradd --create-home -s /bin/bash vagrant' % rootfs_dir)
execute('sudo chroot %s adduser vagrant sudo' % rootfs_dir)
execute("bash -c \"echo -n 'vagrant:vagrant' | sudo chroot %s chpasswd\"" % rootfs_dir)
elif lxc.system in ['fedora', 'centos']:
log.debug('Creating vagrant user...')
execute('sudo chroot %s useradd --create-home -s /bin/bash -u 1000 vagrant' % rootfs_dir)
execute("bash -c \"echo -n 'vagrant:vagrant' | sudo chroot %s chpasswd\"" % rootfs_dir)
execute("sudo sed -i 's/^Defaults\s\+requiretty/# Defaults requiretty/' %s/etc/sudoers" % rootfs_dir)
elif lxc.system in ['alpine']:
log.debug('Creating vagrant user...')
execute('sudo chroot %s adduser -D vagrant' % rootfs_dir)
execute("bash -c \"echo -n 'vagrant:vagrant' | sudo chroot %s chpasswd\"" % rootfs_dir)
execute("bash -c \"echo -n 'vagrant ALL=(ALL) NOPASSWD: ALL' | sudo chroot %s tee /etc/sudoers.d/vagrant\"" % rootfs_dir)
else:
raise NotImplementedError
# Configure SSH access
ssh_dir = os.path.join(rootfs_dir, 'home/vagrant/.ssh')
execute('sudo mkdir -p %s' % ssh_dir)
execute("sudo bash -c 'echo \"%s\" > %s/authorized_keys'" % (vagrant_key, ssh_dir))
execute("sudo chroot %s chown -R vagrant: /home/vagrant/.ssh" % rootfs_dir)
log.info('SSH credentials configured for the vagrant user.')
# Enable passwordless sudo for the vagrant user
execute('sudo bash -c \'echo "vagrant ALL=(ALL) NOPASSWD:ALL" > %s/etc/sudoers.d/vagrant\'' % rootfs_dir)
execute('sudo chmod 0440 %s/etc/sudoers.d/vagrant' % rootfs_dir)
log.info('Sudoers file created.')
log.info("Preparing vagrant user done.")
def package(lxc):
pkg_path = '%s.box' % lxc.name
pkg_path = os.path.abspath(os.path.join('work', pkg_path))
log.info("Packaging '%s' to '%s'...", lxc.name, pkg_path)
log.debug('Stopping container')
lxc.stop()
if not os.path.exists('work'):
os.mkdir('work')
if os.path.exists(pkg_path):
os.unlink(pkg_path)
working_dir = os.path.abspath(os.path.join('work', lxc.name))
if os.path.exists(working_dir):
execute('sudo rm -rf %s' % working_dir)
os.mkdir(working_dir)
log.info("Compressing container's rootfs")
execute('sudo bash -c "cd %s && tar --numeric-owner --anchored --exclude=./rootfs/dev/log -czf %s/rootfs.tar.gz ./rootfs/*"' % (lxc.get_container_dir(), working_dir))
# Prepare package contents
log.info('Preparing box package contents')
execute('sudo cp lxc-confs/%s-%s %s/lxc-config' % (lxc.system, lxc.revision, working_dir))
execute('sudo chown `id -un`:`id -gn` *', cwd=working_dir)
with open(os.path.join(working_dir, 'metadata.json'), 'w') as f:
now = datetime.datetime.now()
f.write('{\n')
f.write(' "provider": "lxc",\n')
f.write(' "version": "1.0.0",\n')
f.write(' "built-on": "%s"\n' % now.strftime('%c'))
f.write('}\n')
# Vagrant box!
log.info('Packaging box')
execute('tar -czf %s ./*' % pkg_path, cwd=working_dir)
execute('sudo rm -rf %s' % working_dir)
return pkg_path
def upload(org_name, system, revision, box_path):
# retrieve metadata from the cloud
box_name = "%s/lxc-%s-%s" % (org_name, system, revision)
url = 'https://app.vagrantup.com/api/v1/box/' + box_name
try:
with urllib.request.urlopen(url) as response:
data = response.read()
data = json.loads(data)
except:
log.exception('ignored exception')
data = None
log.info(data)
# establish latest version
if data and 'versions' in data:
latest_version = 0
for ver in data['versions']:
log.info(ver)
provider_found = False
for p in ver['providers']:
if p['name'] == 'lxc':
provider_found = True
break
if provider_found:
v = int(ver['number'])
if v > latest_version:
latest_version = v
else:
latest_version = 0
# upload image to the cloud
new_version = latest_version + 1
cmd = "vagrant cloud publish --no-private -f -r %s %s lxc %s"
cmd = cmd % (box_name, new_version, box_path)
execute(cmd, timeout=60)
def list_systems():
pass
def parse_args():
parser = argparse.ArgumentParser(description='Kea develepment environment management tool.')
parser.add_argument('command', choices=['build', 'attach', 'list-systems', 'ensure-lxc-vagrantizer-deps'],
help='Commands.')
parser.add_argument('-s', '--system', default='all', choices=list(SYSTEMS.keys()) + ['all'],
help="Build is executed on selected system. If 'all' then build is executed several times on all systems. "
"If provider is 'local' then this option is ignored. Default is 'all'.")
parser.add_argument('-r', '--revision', default='all',
help="Revision of selected system. If 'all' then build is executed several times "
"on all revisions of selected system. To list supported systems and their revisions invoke 'list-systems'. "
"Default is 'all'.")
#parser.add_argument('-w', '--with', nargs='+', default=set(), choices=ALL_FEATURES,
# help="Enabled, comma-separated features. Default is '%s'." % ' '.join(DEFAULT_FEATURES))
#parser.add_argument('-x', '--without', nargs='+', default=set(), choices=ALL_FEATURES,
# help="Disabled, comma-separated features. Default is ''.")
parser.add_argument('-l', '--leave-system', action='store_true',
help='At the end of command do not destroy vagrant system. Default behavior is destroing the system.')
parser.add_argument('-v', '--verbose', action='store_true', help='Enable verbose mode.')
parser.add_argument('-q', '--quiet', action='store_true', help='Enable quiet mode.')
parser.add_argument('-n', '--dry-run', action='store_true', help='Print only what would be done.')
parser.add_argument('-c', '--clean-start', action='store_true', help='If there is pre-existing system then it is destroyed first.')
parser.add_argument('-i', '--check-times', action='store_true', help='Do not allow executing commands infinitelly.')
parser.add_argument('-u', '--upload', help='Upload to Vagrant Cloud under indicated org name.')
args = parser.parse_args()
return args
def main():
os.environ['LC_ALL'] = os.environ['LANG'] = 'C'
args = parse_args()
format = '[LXC-VAGRANTIZER] %(asctime)-15s %(message)s'
logging.basicConfig(format=format, level=logging.DEBUG)
if args.command == 'list-systems':
list_systems()
elif args.command == "build":
if args.system == 'all':
systems = SYSTEMS.keys()
else:
systems = [args.system]
plan = []
results = {}
log.info('Build plan:')
for system in systems:
if args.revision == 'all':
revisions = SYSTEMS[system]
else:
revisions = [args.revision]
for revision in revisions:
plan.append((system, revision))
log.info(' - %s, %s', system, revision)
results[(system, revision)] = (0, 'not run')
fail = False
for system, revision in plan:
lxc = LXC(system, revision)
try:
lxc.destroy()
lxc.create()
install_extras(lxc)
setup_vagrant_user(lxc)
clean(lxc)
box_path = package(lxc)
if args.upload:
upload(args.upload, system, revision, box_path)
except:
log.exception('something went wrong')
lxc.destroy()
elif args.command == "ensure-lxc-vagrantizer-deps":
ensure_lxc_vagrantizer_deps()
if __name__ == '__main__':
main()