-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
797 lines (694 loc) · 23.6 KB
/
Rakefile
File metadata and controls
797 lines (694 loc) · 23.6 KB
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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
# -*- mode: ruby -*-
# vi: set ft=ruby :
#
# Tails: https://tails.net/
# Copyright © 2012 Tails developers <tails@boum.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
require 'date'
require 'English'
require 'libvirt'
require 'open3'
require 'rbconfig'
require 'uri'
require_relative 'vagrant/lib/tails_build_settings'
# Path to the directory which holds our Vagrantfile
VAGRANT_PATH = File.expand_path('vagrant', __dir__)
# Branches that are considered 'stable' (used to select SquashFS compression)
STABLE_BRANCH_NAMES = ['stable', 'testing'].freeze
EXPORTED_VARIABLES = [
'MKSQUASHFS_OPTIONS',
'APT_SNAPSHOTS_SERIALS',
'TAILS_ACNG_PROXY',
'TAILS_BUILD_FAILURE_RESCUE',
'TAILS_DATE_OFFSET',
'TAILS_OFFLINE_MODE',
'TAILS_PROXY',
'TAILS_PROXY_TYPE',
'TAILS_RAM_BUILD',
'TAILS_WEBSITE_CACHE',
'GIT_COMMIT',
'GIT_REF',
'BASE_BRANCH_GIT_COMMIT',
'FEATURE_BRANCH_GIT_COMMIT',
].freeze
ENV['EXPORTED_VARIABLES'] = EXPORTED_VARIABLES.join(' ')
EXTERNAL_HTTP_PROXY = ENV['http_proxy']
# In-VM proxy URL
INTERNAL_HTTP_PROXY = 'http://127.0.0.1:3142'.freeze
ENV['ARTIFACTS'] ||= '.'
ENV['APT_SNAPSHOTS_SERIALS'] ||= ''
class CommandError < StandardError
attr_reader :status, :stderr
def initialize(message, **opts)
opts[:status] ||= nil
opts[:stderr] ||= nil
@status = opts[:status]
@stderr = opts[:stderr]
super(format(message, status: @status, stderr: @stderr))
end
end
def run_command(*args, **kwargs)
Process.wait Kernel.spawn(*args, **kwargs)
return if $CHILD_STATUS.exitstatus.zero?
raise CommandError.new("command #{args}, #{kwargs} failed with exit status %<status>s",
status: $CHILD_STATUS.exitstatus)
end
def capture_command(*args, **kwargs)
stdout, stderr, proc_status = Open3.capture3(*args, **kwargs)
if proc_status.exitstatus != 0
raise CommandError.new("command #{args}, #{kwargs} failed with exit status " \
'%<status>s: %<stderr>s',
stderr: stderr, status: proc_status.exitstatus)
end
[stdout, stderr]
end
def git_helper(*args, **kwargs)
question = args.first.end_with?('?')
args.first.sub!(/\?$/, '')
status = 0
stdout = ''
begin
stdout, = capture_command('auto/scripts/utils.sh', *args, **kwargs)
rescue CommandError => e
status = e.status
end
question ? status.zero? : stdout.chomp
end
class VagrantCommandError < CommandError
end
# Runs the vagrant command, letting stdout/stderr through. Throws an
# exception unless the vagrant command succeeds.
def run_vagrant(*args, **kwargs)
run_command('vagrant', *args, chdir: './vagrant', **kwargs)
rescue CommandError => e
raise(VagrantCommandError, "'vagrant #{args}' command failed with exit " \
"status #{e.status}")
end
# Runs the vagrant command, not letting stdout/stderr through, and
# returns [stdout, stderr, Process::Status].
def capture_vagrant(*args, **kwargs)
capture_command('vagrant', *args, chdir: './vagrant', **kwargs)
rescue CommandError => e
raise(VagrantCommandError, "'vagrant #{args}' command failed with exit " \
"status #{e.status}: #{e.stderr}")
end
[:run_vagrant, :capture_vagrant].each do |m|
define_method "#{m}_ssh" do |*args|
method(m).call('ssh', '-c', *args, '--', '-q')
end
end
def vagrant_ssh_config(key)
# Cache results
if $vagrant_ssh_config.nil?
$vagrant_ssh_config = capture_vagrant('ssh-config')
.first.split("\n") \
.map { |line| line.strip.split(/\s+/, 2) }.to_h
# The path in the ssh-config output is quoted, which is not what
# is expected outside of a shell, so let's get rid of the quotes.
$vagrant_ssh_config['IdentityFile'].gsub!(/^"|"$/, '')
end
$vagrant_ssh_config[key]
end
def current_vm_cpus
capture_vagrant_ssh('grep -c "^processor\s*:" /proc/cpuinfo').first.chomp.to_i
end
def vm_state
out, = capture_vagrant('status')
status_line = out.split("\n")[2]
if status_line['not created']
:not_created
elsif status_line['shutoff']
:poweroff
elsif status_line['running']
:running
else
raise 'could not determine VM state'
end
end
def enough_free_host_memory_for_ram_build?
return false unless RbConfig::CONFIG['host_os'] =~ /linux/i
begin
usable_free_mem = `free`.split[12].to_i
usable_free_mem > VM_MEMORY_FOR_RAM_BUILDS * 1024
rescue StandardError
false
end
end
def free_vm_memory
capture_vagrant_ssh('free').first.chomp.split[12].to_i
end
def enough_free_vm_memory_for_ram_build?
free_vm_memory > BUILD_SPACE_REQUIREMENT * 1024
end
def enough_free_memory_for_ram_build?
if vm_state == :running
enough_free_vm_memory_for_ram_build?
else
enough_free_host_memory_for_ram_build?
end
end
def releasing?
git_helper('git_on_a_tag?')
end
def system_cpus
return unless RbConfig::CONFIG['host_os'] =~ /linux/i
begin
File.read('/proc/cpuinfo').scan(/^processor\s+:/).count
rescue StandardError
nil
end
end
ENV['TAILS_WEBSITE_CACHE'] = releasing? ? '0' : '1'
task :parse_build_options do
options = []
# Default to in-memory builds if there is enough RAM available
options << 'ram' if enough_free_memory_for_ram_build?
# Default to build using the in-VM proxy
options << 'vmproxy'
# Default to fast compression on development branches
options << 'fastcomp' unless releasing?
# Default to the number of system CPUs when we can figure it out
cpus = system_cpus
options << "cpus=#{cpus}" if cpus
options += ENV['TAILS_BUILD_OPTIONS'].split if ENV['TAILS_BUILD_OPTIONS']
options.uniq.each do |opt| # rubocop:disable Metrics/BlockLength
case opt
# Memory build settings
when 'ram'
ENV['TAILS_RAM_BUILD'] = '1'
when 'noram'
ENV['TAILS_RAM_BUILD'] = nil
# Bootstrap cache settings
# HTTP proxy settings
when 'extproxy'
unless EXTERNAL_HTTP_PROXY
abort 'No HTTP proxy set, but one is required by ' \
'TAILS_BUILD_OPTIONS. Aborting.'
end
ENV['TAILS_PROXY'] = EXTERNAL_HTTP_PROXY
ENV['TAILS_PROXY_TYPE'] = 'extproxy'
when 'vmproxy', 'vmproxy+extproxy'
ENV['TAILS_PROXY'] = INTERNAL_HTTP_PROXY
ENV['TAILS_PROXY_TYPE'] = 'vmproxy'
if opt == 'vmproxy+extproxy'
unless EXTERNAL_HTTP_PROXY
abort 'No HTTP proxy set, but one is required by ' \
'TAILS_BUILD_OPTIONS. Aborting.'
end
ENV['TAILS_ACNG_PROXY'] = EXTERNAL_HTTP_PROXY
end
when 'noproxy'
ENV['TAILS_PROXY'] = nil
ENV['TAILS_PROXY_TYPE'] = 'noproxy'
when 'offline'
ENV['TAILS_OFFLINE_MODE'] = '1'
when /cachewebsite(?:=([a-z]+))?/
value = Regexp.last_match(1)
if releasing?
warn "Building a release ⇒ ignoring #{opt} build option"
ENV['TAILS_WEBSITE_CACHE'] = '0'
else
value = 'yes' if value.nil?
case value
when 'yes'
ENV['TAILS_WEBSITE_CACHE'] = '1'
when 'no'
ENV['TAILS_WEBSITE_CACHE'] = '0'
else
raise "Unsupported value for cachewebsite option: #{value}"
end
end
# SquashFS compression settings
when 'fastcomp', 'gzipcomp'
if releasing?
warn "Building a release ⇒ ignoring #{opt} build option"
ENV['MKSQUASHFS_OPTIONS'] = nil
else
ENV['MKSQUASHFS_OPTIONS'] = '-comp zstd -no-exports'
end
when 'defaultcomp'
ENV['MKSQUASHFS_OPTIONS'] = nil
# Virtual hardware settings
when /machinetype=([a-zA-Z0-9_.-]+)/
ENV['TAILS_BUILD_MACHINE_TYPE'] = Regexp.last_match(1)
when /cpus=(\d+)/
ENV['TAILS_BUILD_CPUS'] = Regexp.last_match(1)
when /cpumodel=([a-zA-Z0-9_-]+)/
ENV['TAILS_BUILD_CPU_MODEL'] = Regexp.last_match(1)
# Git settings
when 'ignorechanges'
ENV['TAILS_BUILD_IGNORE_CHANGES'] = '1'
when /dateoffset=([-+]\d+)/
ENV['TAILS_DATE_OFFSET'] = Regexp.last_match(1)
# Developer convenience features
when 'keeprunning'
$keep_running = true
$force_cleanup = false
when 'forcecleanup'
$force_cleanup = true
$keep_running = false
when 'rescue'
$keep_running = true
ENV['TAILS_BUILD_FAILURE_RESCUE'] = '1'
# Jenkins
when 'nomergebasebranch'
$skip_mergebasebranch = true
else
raise "Unknown Tails build option '#{opt}'"
end
end
if ENV['TAILS_OFFLINE_MODE'] == '1' && ENV['TAILS_PROXY'].nil?
abort 'You must use a caching proxy when building offline'
end
end
task :ensure_clean_repository do
git_status = `git status --porcelain`
unless git_status.empty?
if ENV['TAILS_BUILD_IGNORE_CHANGES']
warn <<-END_OF_MESSAGE.gsub(/^ /, '')
You have uncommitted changes in the Git repository. They will
be ignored for the upcoming build:
#{git_status}
END_OF_MESSAGE
else
warn <<-END_OF_MESSAGE.gsub(/^ /, '')
You have uncommitted changes in the Git repository. Due to limitations
of the build system, you need to commit them before building Tails:
#{git_status}
If you don't care about those changes and want to build Tails nonetheless,
please add `ignorechanges` to the TAILS_BUILD_OPTIONS environment
variable.
END_OF_MESSAGE
abort 'Uncommitted changes. Aborting.'
end
end
end
def list_artifacts
user = vagrant_ssh_config('User')
stdout = capture_vagrant_ssh("find '/home/#{user}/amnesia/' -maxdepth 1 " \
"-name 'tails-amd64-*' " \
'-o -name tails-build-env.list').first
stdout.split("\n")
rescue VagrantCommandError
[]
end
def remove_artifacts
list_artifacts.each do |artifact|
run_vagrant_ssh("sudo rm -f '#{artifact}'")
end
end
task ensure_clean_home_directory: ['vm:up'] do
remove_artifacts
end
task :validate_http_proxy do
if ENV['TAILS_PROXY']
proxy_host = URI.parse(ENV['TAILS_PROXY']).host
if proxy_host.nil?
ENV['TAILS_PROXY'] = nil
abort "Invalid HTTP proxy: #{ENV['TAILS_PROXY']}"
end
if ENV['TAILS_PROXY_TYPE'] == 'vmproxy'
warn 'Using the internal VM proxy'
else
if ['localhost', '[::1]'].include?(proxy_host) \
|| proxy_host.start_with?('127.0.0.')
abort 'Using an HTTP proxy listening on the host\'s loopback ' \
'is doomed to fail. Aborting.'
end
warn "Using HTTP proxy: #{ENV['TAILS_PROXY']}"
end
else
warn 'No HTTP proxy set.'
end
end
task :validate_git_state do
if git_helper('git_in_detached_head?') && !git_helper('git_on_a_tag?')
raise 'We are in detached head but the current commit is not tagged'
end
end
task setup_environment: ['validate_git_state'] do
ENV['GIT_COMMIT'] ||= git_helper('git_current_commit')
ENV['GIT_REF'] ||= git_helper('git_current_head_name')
if on_jenkins?
jenkins_branch = (ENV['GIT_BRANCH'] || '').sub(%r{^origin/}, '')
if !releasing? && jenkins_branch != ENV['GIT_REF']
raise "We expected to build the Git ref '#{ENV['GIT_REF']}', " \
"but GIT_REF in the environment says '#{jenkins_branch}'. Aborting!"
end
end
ENV['BASE_BRANCH_GIT_COMMIT'] ||= git_helper('git_base_branch_head')
['GIT_COMMIT', 'GIT_REF', 'BASE_BRANCH_GIT_COMMIT'].each do |var|
next unless ENV[var].empty?
raise "Variable '#{var}' is empty, which should not be possible: " \
"either validate_git_state is buggy or the 'origin' remote " \
'does not point to the official Tails Git repository.'
end
end
task merge_base_branch: ['parse_build_options', 'setup_environment'] do
next if $skip_mergebasebranch
branch = git_helper('git_current_branch')
base_branch = git_helper('base_branch')
source_date_faketime = `date --utc --date="$(dpkg-parsechangelog --show-field=Date)" '+%Y-%m-%d %H:%M:%S'`.chomp
next if releasing? || branch == base_branch
commit_before_merge = git_helper('git_current_commit')
warn "Merging base branch '#{base_branch}' (at commit " \
"#{ENV['BASE_BRANCH_GIT_COMMIT']}) ..."
begin
run_command('faketime', '-f', source_date_faketime, \
'git', 'merge', '--no-edit', ENV['BASE_BRANCH_GIT_COMMIT'])
rescue CommandError
run_command('git', 'merge', '--abort')
raise <<-END_OF_MESSAGE.gsub(/^ /, '')
There were conflicts when merging the base branch; either
merge it yourself and resolve conflicts, or skip this merge
by rebuilding with the 'nomergebasebranch' option.
END_OF_MESSAGE
end
run_command('git', 'submodule', 'update', '--init')
# If we actually merged anything we'll re-run rake in the new Git
# state in order to avoid subtle build errors due to mixed state.
next if commit_before_merge == git_helper('git_current_commit')
ENV['GIT_COMMIT'] = git_helper('git_current_commit')
ENV['FEATURE_BRANCH_GIT_COMMIT'] = commit_before_merge
ENV['TAILS_BUILD_OPTIONS'] = (ENV['TAILS_BUILD_OPTIONS'] || '') + \
' nomergebasebranch'
Kernel.exec('rake', *ARGV)
end
task :maybe_clean_up_builder_vms do
clean_up_builder_vms if $force_cleanup
end
task :ensure_correct_permissions do
FileUtils.chmod('go+x', '.')
FileUtils.chmod_R('go+rX', ['.git', 'submodules', 'vagrant'])
# Changing permissions outside of the working copy, in particular on
# parent directories such as $HOME, feels too blunt and can have
# problematic security consequences, so we don't forcibly do that.
# Instead, when the permissions are not OK, display a nicer error
# message than "Virtio-9p Failed to initialize fs-driver […]"
begin
capture_command('sudo', '-u', 'libvirt-qemu', 'stat', '.git')
rescue CommandError
abort <<-END_OF_MESSAGE.gsub(/^ /, '')
Incorrect permissions: the libvirt-qemu user needs to be allowed
to traverse the filesystem up to #{ENV['PWD']}.
To fix this, you can for example run the following command
on every parent directory of #{ENV['PWD']} up to #{ENV['HOME']}
(inclusive):
chmod g+rx DIR && setfacl -m user:libvirt-qemu:rx DIR
END_OF_MESSAGE
end
end
desc 'Build Tails'
task build: [
'parse_build_options',
'ensure_clean_repository',
'maybe_clean_up_builder_vms',
'validate_git_state',
'setup_environment',
'merge_base_branch',
'validate_http_proxy',
'ensure_correct_permissions',
'vm:up',
'ensure_clean_home_directory',
] do
if ENV['TAILS_RAM_BUILD'] && !enough_free_memory_for_ram_build?
warn <<-END_OF_MESSAGE.gsub(/^ /, '')
The virtual machine is not currently set with enough memory to
perform an in-memory build. Either remove the `ram` option from
the TAILS_BUILD_OPTIONS environment variable, or shut the
virtual machine down using `rake vm:halt` before trying again.
END_OF_MESSAGE
abort 'Not enough memory for the virtual machine to run an in-memory ' \
'build. Aborting.'
end
if ENV['TAILS_BUILD_CPUS'] \
&& current_vm_cpus != ENV['TAILS_BUILD_CPUS'].to_i
warn <<-END_OF_MESSAGE.gsub(/^ /, '')
The virtual machine is currently running with #{current_vm_cpus}
virtual CPU(s). In order to change that number, you need to
stop the VM first, using `rake vm:halt`. Otherwise, please
adjust the `cpus` options accordingly.
END_OF_MESSAGE
abort 'The virtual machine needs to be reloaded to change the number ' \
'of CPUs. Aborting.'
end
exported_env = EXPORTED_VARIABLES
.select { |k| ENV[k] }
.map { |k| "#{k}='#{ENV[k]}'" }.join(' ')
begin
retrieved_artifacts = false
run_vagrant_ssh("#{exported_env} build-tails")
rescue VagrantCommandError
retrieve_artifacts(missing_ok: true)
retrieved_artifacts = true
ensure
retrieve_artifacts(missing_ok: false) unless retrieved_artifacts
clean_up_builder_vms unless $keep_running
end
ensure
clean_up_builder_vms if $force_cleanup
end
desc 'Retrieve build artifacts from the Vagrant box'
task :retrieve_artifacts do
retrieve_artifacts
end
def retrieve_artifacts(missing_ok: false)
artifacts = list_artifacts
if artifacts.empty?
msg = 'No build artifacts were found!'
raise msg unless missing_ok
warn msg
return
end
user = vagrant_ssh_config('User')
hostname = vagrant_ssh_config('HostName')
key_file = vagrant_ssh_config('IdentityFile')
warn 'Retrieving artifacts from Vagrant build box.'
run_vagrant_ssh(
"sudo chown #{user} " + artifacts.map { |a| "'#{a}'" }.join(' ')
)
fetch_command = [
'scp',
'-i', key_file,
# We don't want to use any identity saved in ssh agent'
'-o', 'IdentityAgent=none',
# We need this since the user will not necessarily have a
# known_hosts entry. It is safe since an attacker must
# compromise libvirt's network config or the user running the
# command to modify the #{hostname} below.
'-o', 'StrictHostKeyChecking=no',
'-o', 'UserKnownHostsFile=/dev/null',
# Speed up the copy
'-o', 'Compression=no',
]
fetch_command += artifacts.map { |a| "#{user}@#{hostname}:#{a}" }
fetch_command << ENV['ARTIFACTS']
run_command(*fetch_command)
end
def box?
!capture_vagrant('box', 'list').grep(/^#{box_name}\s+\(libvirt,/).empty?
end
def domain_name
"#{box_name}_default"
end
# XXX: giving up on a few worst offenders for now
# rubocop:disable Metrics/AbcSize
# rubocop:disable Metrics/MethodLength
def clean_up_builder_vms
libvirt = Libvirt.open('qemu:///system')
clean_up_domain = proc do |domain|
next if domain.nil?
domain.destroy if domain.active?
domain.undefine
begin
libvirt
.lookup_storage_pool_by_name('default')
.lookup_volume_by_name("#{domain.name}.img")
.delete
rescue Libvirt::RetrieveError
# Expected if the pool or disk does not exist
end
end
# Let's ensure that the VM we are about to create is cleaned up ...
previous_domain = libvirt.list_all_domains.find { |d| d.name == domain_name }
if previous_domain&.active?
begin
run_vagrant_ssh('mountpoint -q /var/cache/apt-cacher-ng')
rescue VagrantCommandError
# Nothing to unmount.
else
run_vagrant_ssh('sudo systemctl stop apt-cacher-ng.service')
run_vagrant_ssh('sudo umount /var/cache/apt-cacher-ng')
run_vagrant_ssh('sudo sync')
end
begin
run_vagrant_ssh('mountpoint -q /var/cache/tails-website')
rescue VagrantCommandError
# Nothing to unmount.
else
run_vagrant_ssh('sudo umount /var/cache/tails-website')
run_vagrant_ssh('sudo sync')
end
end
clean_up_domain.call(previous_domain)
# ... and the same for any residual VM based on another box (=>
# another domain name) that Vagrant still keeps track of.
old_domain =
begin
old_domain_uuid =
open('vagrant/.vagrant/machines/default/libvirt/id', 'r', &:read)
.strip
libvirt.lookup_domain_by_uuid(old_domain_uuid)
rescue Errno::ENOENT, Libvirt::RetrieveError
# Expected if we don't have vagrant/.vagrant, or if the VM was
# undefined for other reasons (e.g. manually).
nil
end
clean_up_domain.call(old_domain)
# We could use `vagrant destroy` here but due to vagrant-libvirt's
# upstream issue #746 we then risk losing the apt-cacher-ng data.
# Since we essentially implement `vagrant destroy` without this bug
# above, but in a way so it works even if `vagrant/.vagrant` does
# not exist, let's just do what is safest, i.e. avoiding `vagrant
# destroy`. For details, see the upstream issue:
# https://github.com/vagrant-libvirt/vagrant-libvirt/issues/746
FileUtils.rm_rf('vagrant/.vagrant')
ensure
libvirt.close
end
# rubocop:enable Metrics/AbcSize
# rubocop:enable Metrics/MethodLength
desc 'Remove all libvirt volumes named tails-builder-* (run at your own risk!)'
task :clean_up_libvirt_volumes do
libvirt = Libvirt.open('qemu:///system')
begin
pool = libvirt.lookup_storage_pool_by_name('default')
rescue Libvirt::RetrieveError
# Expected if the pool does not exist
else
pool.list_volumes.each do |disk|
next unless /^tails-builder-/.match(disk)
begin
pool.lookup_volume_by_name(disk).delete
rescue Libvirt::RetrieveError
# Expected if the disk does not exist
end
end
ensure
libvirt.close
end
end
def on_jenkins?
!ENV['JENKINS_URL'].nil?
end
desc 'Clean up all build related files'
task clean_all: ['vm:destroy', 'basebox:clean_all']
namespace :vm do
desc 'Start the build virtual machine'
task up: [
'parse_build_options',
'validate_http_proxy',
'setup_environment',
'basebox:create',
] do
case vm_state
when :not_created
clean_up_builder_vms
end
begin
run_vagrant('up', '--provision')
rescue VagrantCommandError => e
clean_up_builder_vms if $force_cleanup
raise e
end
end
desc 'SSH into the builder VM'
task :ssh do
run_vagrant('ssh')
end
desc 'Stop the build virtual machine'
task :halt do
run_vagrant('halt')
end
desc 'Re-run virtual machine setup'
task provision: [
'parse_build_options',
'validate_http_proxy',
'setup_environment',
] do
run_vagrant('provision')
end
desc 'Destroy build virtual machine (clean up all files except the ' \
"vmproxy's apt-cacher-ng data and the website cache)"
task :destroy do
clean_up_builder_vms
end
end
namespace :basebox do
desc 'Create and import the base box unless already done'
task :create do
next if box?
warn <<-END_OF_MESSAGE.gsub(/^ /, '')
This is the first time we are using this Vagrant base box so we
will have to bootstrap by building it from scratch. This will
take around 20 minutes (depending on your hardware) plus the
time needed for downloading around 250 MiB of Debian packages.
END_OF_MESSAGE
run_command("#{VAGRANT_PATH}/definitions/tails-builder/generate-tails-builder-box.sh")
box_dir = Dir.pwd
# Let's use an absolute path since run_vagrant changes the working
# directory but File.delete doesn't
box_path = "#{box_dir}/#{box_name}.box"
run_vagrant('box', 'add', '--name', box_name, box_path)
File.delete(box_path)
end
def basebox_date(box)
Date.parse(/^tails-builder-[^-]+-[^-]+-(\d{8})/.match(box)[1])
end
def baseboxes
capture_vagrant('box', 'list')
.first.lines
.grep(/^tails-builder-.*/)
.map { |x| x.chomp.sub(/\s.*$/, '') }
end
def clean_up_basebox(box)
run_vagrant('box', 'remove', '--force', box)
begin
libvirt = Libvirt.open('qemu:///system')
libvirt
.lookup_storage_pool_by_name('default')
.lookup_volume_by_name("#{box}_vagrant_box_image_0.img")
.delete
rescue Libvirt::RetrieveError
# Expected if the pool or disk does not exist
ensure
libvirt.close
end
end
desc 'Remove all base boxes'
task :clean_all do
baseboxes.each { |box| clean_up_basebox(box) }
end
desc 'Remove all base boxes older than six months'
task :clean_old do
boxes = baseboxes
# We always want to keep the newest basebox
boxes.sort! { |a, b| basebox_date(a) <=> basebox_date(b) }
boxes.pop
boxes.each do |box|
clean_up_basebox(box) if basebox_date(box) < Date.today - 365.0 / 2.0
end
end
end