-
Notifications
You must be signed in to change notification settings - Fork 48
/
xmake.lua
864 lines (786 loc) · 32.1 KB
/
xmake.lua
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
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
-- Copyright Microsoft and CHERIoT Contributors.
-- SPDX-License-Identifier: MIT
-- xmake has started refusing to pass flags that it doesn't recognise, so tell
-- it to stop doing that for now.
set_policy("check.auto_ignore_flags", false)
add_rules("mode.release", "mode.debug")
-- Disallow any modes other than release and debug. The only difference is the
-- value of the `NDEBUG` macro: We always enable debug info and optimise for
-- size in both modes, most things should use the --debug-{option}= flags for
-- finer-grained control.
set_allowedmodes("release", "debug")
set_allowedarchs("cheriot")
-- More work arounds for xmake's buggy flag detection.
if is_mode("release") then
add_defines("NDEBUG", {force = true})
end
option("scheduler-accounting")
set_default(false)
set_description("Track per-thread cycle counts in the scheduler");
set_showmenu(true)
option("allocator-rendering")
set_default(false)
set_description("Include heap_render() functionality in the allocator")
set_showmenu(true)
function debugOption(name)
option("debug-" .. name)
set_default(false)
set_description("Enable verbose output and assertions in the " .. name)
set_showmenu(true)
set_category("Debugging")
option_end()
end
debugOption("loader")
debugOption("scheduler")
debugOption("allocator")
debugOption("token_library")
function stackCheckOption(name)
option("stack-usage-check-" .. name)
set_default(false)
set_description("Enable dynamic stack usage checks in " .. name .. ". Do not enable this in debug builds!")
set_showmenu(true)
set_category("Debugging")
option_end()
end
stackCheckOption("allocator")
stackCheckOption("scheduler")
function testCheckOption(name)
option("testing-" .. name)
set_default(false)
set_description("Enable testing feature " .. name .. ". Do not enable this in builds that don't produce a UART log!")
set_showmenu(true)
set_category("Debugging")
option_end()
end
testCheckOption("model-output")
-- Force -Oz irrespective of build config. At -O0, we blow out our stack and
-- require much stronger alignment.
set_optimize("Oz")
--Capture the directory containing this script for later use. We need this to
--find the location of the linker scripts and so on.
local scriptdir = os.scriptdir()
-- The directory where we will find the core components
local coredir = path.join(scriptdir, "core")
-- Set up our llvm configuration.
toolchain("cheriot-clang")
set_kind("standalone")
set_toolset("cc", "clang")
set_toolset("cxx", "clang++")
set_toolset("ld", "ld.lld")
set_toolset("objdump", "llvm-objdump")
set_toolset("strip", "llvm-strip")
set_toolset("as", "clang")
--Set up the flags that we need.
on_load(function (toolchain)
local core_directory = scriptdir
local include_directory = path.join(core_directory, "include")
-- Flags used for C/C++ and assembly
local default_flags = {
"-target",
"riscv32-unknown-unknown",
"-mcpu=cheriot",
"-mabi=cheriot",
"-mxcheri-rvc",
"-mrelax",
"-fshort-wchar",
"-nostdinc",
"-Oz",
"-g",
"-ffunction-sections",
"-fdata-sections",
"-fomit-frame-pointer",
"-fno-builtin",
"-fno-exceptions",
"-fno-asynchronous-unwind-tables",
"-fno-c++-static-destructors",
"-fno-rtti",
"-Werror",
"-I" .. path.join(include_directory, "c++-config"),
"-I" .. path.join(include_directory, "libc++"),
"-I" .. include_directory,
}
-- C/C++ flags
toolchain:add("cxflags", default_flags, {force = true})
toolchain:add("cflags", default_flags)
toolchain:add("cxxflags", "-std=c++20")
toolchain:add("cflags", "-std=c2x", {force = true})
-- Assembly flags
toolchain:add("asflags", default_flags)
end)
toolchain_end()
set_defaultarchs("cheriot")
set_defaultplat("cheriot")
set_languages("c2x", "cxx20")
-- Common rules for any CHERI MCU component (library or compartment)
rule("cheriot.component")
-- Set some default config values for all cheriot components.
on_load(function (target)
-- Treat this as a static library, though we will replace the default linking steps.
target:set("kind", "static")
-- We don't want a lib prefix or equivalent.
target:set("prefixname", "")
end)
before_build(function (target)
if not target:get("cheriot.board_file") then
raise("target " .. target:name() .. " is being built but does not " ..
"appear to be connected to a firmware image. Please either use " ..
"add_deps(\"" .. target:name() .. "\" to add it or use set_default(false) " ..
"prevent it from being built when not linked")
end
end)
-- Custom link step, link this as a compartment, with the linker script
-- that will be provided in the specialisation of this rule.
on_linkcmd(function (target, batchcmds, opt)
-- Get a specified linker script
local linkerscript_name = target:get("cheriot.ldscript")
local linkerscript = path.join(scriptdir, linkerscript_name)
-- Link using the compartment's linker script.
batchcmds:show_progress(opt.progress, "linking " .. target:get("cheriot.type") .. ' ' .. target:filename())
batchcmds:mkdir(target:targetdir())
batchcmds:vrunv(target:tool("ld"), table.join({"--script=" .. linkerscript, "--compartment", "--gc-sections", "--relax", "-o", target:targetfile()}, target:objectfiles()), opt)
-- This depends on all of the object files and the linker script.
batchcmds:add_depfiles(linkerscript)
batchcmds:add_depfiles(target:objectfiles())
end)
-- CHERI MCU libraries are currently built as compartments, without a
-- `-cheri-compartment` flag. They should gain that flag once the compiler
-- supports more than one library.
rule("cheriot.library")
add_deps("cheriot.component")
on_load(function (target)
-- Mark this target as a CHERI MCU library.
target:set("cheriot.type", "library")
-- Libraries have a .library extension
target:set("extension", ".library")
-- Link with the library linker script, which drops .data* sections.
target:set("cheriot.ldscript", "library.ldscript")
end)
-- CHERI MCU compartments have an explicit compartment name passed to the
-- compiler.
rule("cheriot.compartment")
add_deps("cheriot.component")
on_load(function (target)
-- Mark this target as a CHERI MCU compartment.
target:set("cheriot.type", "compartment")
target:set("cheriot.ldscript", "compartment.ldscript")
target:set("extension", ".compartment")
end)
-- Add the compartment name flag. This defaults to the target's name but
-- can be overridden by setting the cheriot.compartment property.
after_load(function (target)
local compartment = target:get("cheriot.compartment") or target:name()
target:add("cxflags", "-cheri-compartment=" .. compartment, {force=true})
end)
-- Privileged compartments are built as compartments, but with a slightly
-- different linker script.
rule("cheriot.privileged-compartment")
add_deps("cheriot.compartment")
on_load(function (target)
target:set("cheriot.ldscript", "privileged-compartment.ldscript")
target:set("cheriot.type", "privileged compartment")
target:add("defines", "CHERIOT_AVOID_CAPRELOCS")
end)
rule("cheriot.privileged-library")
add_deps("cheriot.library")
on_load(function (target)
target:set("cheriot.type", "privileged library")
target:set("cheriot.ldscript", "privileged-compartment.ldscript")
end)
-- Build the switcher as an object file that we can import into the final
-- linker script. The switcher is independent of the firmware image
-- configuration and so can be built as a single target.
target("cheriot.switcher")
set_kind("object")
add_files(path.join(coredir, "switcher/entry.S"))
-- Build the allocator as a privileged compartment. The allocator is
-- independent of the firmware image configuration and so can be built as a
-- single target.
-- TODO: We should provide a mechanism for firmware images to either opt out of
-- having an allocator (or into providing a different allocator for a
-- particular application)
target("cheriot.allocator")
add_rules("cheriot.privileged-compartment", "cheriot.component-debug", "cheriot.component-stack-checks")
add_files(path.join(coredir, "allocator/main.cc"))
add_deps("locks")
add_deps("compartment_helpers")
on_load(function (target)
target:set("cheriot.compartment", "alloc")
target:set('cheriot.debug-name', "allocator")
target:add('defines', "HEAP_RENDER=" .. tostring(get_config("allocator-rendering")))
end)
target("cheriot.token_library")
add_rules("cheriot.privileged-library", "cheriot.component-debug")
add_files(path.join(coredir, "token_library/token_unseal.S"))
on_load(function (target)
target:set('cheriot.debug-name', "token_library")
end)
target("cheriot.software_revoker")
set_default(false)
add_files(path.join(coredir, "software_revoker/revoker.cc"))
add_rules("cheriot.privileged-compartment")
on_load(function (target)
target:set("cheriot.compartment", "software_revoker")
target:set("cheriot.ldscript", "software_revoker.ldscript")
end)
-- Helper to get the board file for a given target
local board_file = function(target)
local boardfile = target:values("board")
if not boardfile then
raise("target " .. target:name() .. " does not define a board name")
end
-- The directory containing the board file.
local boarddir = path.directory(boardfile);
if path.basename(boardfile) == boardfile then
boarddir = path.join(scriptdir, "boards")
boardfile = path.join(boarddir, boardfile .. '.json')
end
return boarddir, boardfile
end
-- Helper to visit all dependencies of a specified target exactly once and call
-- a callback.
local function visit_all_dependencies_of(target, callback)
local visited = {}
local function visit(target)
if not visited[target:name()] then
visited[target:name()] = true
callback(target)
for _, d in table.orderpairs(target:deps()) do
visit(d)
end
end
end
visit(target)
end
-- Rule for defining a firmware image.
rule("firmware")
on_run(function (target)
import("core.base.json")
import("core.project.config")
local boarddir, boardfile = board_file(target)
local board = json.loadfile(boardfile)
if not board.simulator then
raise("board description " .. boardfile .. " does not define a run command")
end
local simulator = board.simulator
simulator = string.gsub(simulator, "${(%w*)}", { sdk=scriptdir, board=boarddir })
local firmware = target:targetfile()
local directory = path.directory(firmware)
firmware = path.filename(firmware)
local run = function(simulator)
local simargs = { firmware }
if get_config("testing-model-output") then
modeldir = path.join(scriptdir,
"..",
"scripts",
"model_output",
path.basename(target:values("board")),
"examples")
local modelout = path.join(modeldir, firmware .. ".txt")
simargs[#simargs+1] = modelout
end
os.execv(simulator, simargs, { curdir = directory })
end
-- Try executing the simulator from the sdk directory, if it's there.
local tools_directory = config.get("sdk")
local simpath = path.join(tools_directory, simulator)
if os.isexec(simpath) then
run(simpath)
return
end
simpath = path.join(path.join(tools_directory, "bin"), simulator)
if os.isexec(simpath) then
run(simpath)
return
end
-- Otherwise, hope that it's in the path
run(simulator)
end)
-- Set up the thread defines and the information for the linker script.
-- This must be after load so that dependencies are resolved.
after_load(function (target)
import("core.base.json")
local function visit_all_dependencies(callback)
visit_all_dependencies_of(target, callback)
end
local boarddir, boardfile = board_file(target);
local board = json.loadfile(boardfile)
-- Add defines to all dependencies.
local add_defines = function (defines)
visit_all_dependencies(function (target)
target:add('defines', defines)
end)
end
local software_revoker = false
if board.revoker then
local temporal_defines = { "TEMPORAL_SAFETY" }
if board.revoker == "software" then
temporal_defines[#temporal_defines+1] = "SOFTWARE_REVOKER"
software_revoker = true
target:add('deps', "cheriot.software_revoker")
end
add_defines(temporal_defines)
end
-- Check that all dependences have a single board that they're targeting.
visit_all_dependencies(function (target)
local targetBoardFile = target:get("cheriot.board_file")
local targetBoardDir = target:get("cheriot.board_dir")
if not targetBoard then
target:set("cheriot.board_file", boardfile)
target:set("cheriot.board_dir", boarddir)
else
if targetBoardFile ~= boardfile or targetBoardDir ~= boarddir then
raise("target " .. target:name() .. " is used in two or more firmware targets with different boards")
end
end
end)
if board.driver_includes then
for _, include_path in ipairs(board.driver_includes) do
-- Allow ${sdk} to refer to the SDK directory, so that external
-- board includes can include generic platform bits.
include_path = string.gsub(include_path, "${(%w*)}", { sdk=scriptdir })
if not path.is_absolute(include_path) then
include_path = path.join(boarddir, include_path);
end
visit_all_dependencies(function (target)
target:add('includedirs', include_path)
end)
end
end
-- If this board defines any macros, add them to all targets
if board.defines then
add_defines(board.defines)
end
add_defines("CPU_TIMER_HZ=" .. math.floor(board.timer_hz))
add_defines("TICK_RATE_HZ=" .. math.floor(board.tickrate_hz))
if board.simulation then
add_defines("SIMULATION")
end
local loader = target:deps()['cheriot.loader'];
if board.stack_high_water_mark then
add_defines("CONFIG_MSHWM")
else
-- If we don't have the stack high watermark, the trusted stack is smaller.
loader:set('loader_trusted_stack_size', 176)
end
-- Build the MMIO space for the board
local mmio = ""
local mmio_start = 0xffffffff
local mmio_end = 0
-- Add start and end markers for all MMIO devices.
for name, range in table.orderpairs(board.devices) do
local start = range.start
local stop = range["end"]
if not stop then
if not range.length then
raise("Device " .. name .. " does not specify a length or an end)")
end
stop = start + range.length
end
add_defines("DEVICE_EXISTS_" .. name)
mmio_start = math.min(mmio_start, start)
mmio_end = math.max(mmio_end, stop)
mmio = format("%s__export_mem_%s = 0x%x;\n__export_mem_%s_end = 0x%x;\n",
mmio, name, start, name, stop);
end
-- Provide the range of the MMIO space and the heap.
mmio = format("__mmio_region_start = 0x%x;\n%s__mmio_region_end = 0x%x;\n__export_mem_heap_end = 0x%x;\n",
mmio_start, mmio, mmio_end, board.heap["end"])
local code_start = format("0x%x", board.instruction_memory.start)
-- Set the start of memory that can be revoked.
-- By default, this is the start of code memory but it can be
-- explicitly overwritten.
local revokable_memory_start = code_start;
if board.revokable_memory_start then
revokable_memory_start = format("0x%x", board.revokable_memory_start);
end
add_defines("REVOKABLE_MEMORY_START=" .. revokable_memory_start);
local heap_start = '.'
if board.heap.start then
heap_start = format("0x%x", board.heap.start)
end
if board.interrupts then
-- The macro used to provide the interrupt enumeration in the public header
local interruptNames = "CHERIOT_INTERRUPT_NAMES="
-- Define the macro that's used to initialise the scheduler's interrupt configuration.
local interruptConfiguration = "CHERIOT_INTERRUPT_CONFIGURATION="
for _, interrupt in ipairs(board.interrupts) do
interruptNames = interruptNames .. interrupt.name .. "=" .. math.floor(interrupt.number) .. ", "
interruptConfiguration = interruptConfiguration .. "{"
.. math.floor(interrupt.number) .. ","
.. math.floor(interrupt.priority) .. ","
.. (interrupt.edge_triggered and "true" or "false")
.. "},"
end
add_defines(interruptNames)
target:deps()[target:name() .. ".scheduler"]:add('defines', interruptConfiguration)
end
local loader_stack_size = loader:get('loader_stack_size')
local loader_trusted_stack_size = loader:get('loader_trusted_stack_size')
loader:add('defines', "CHERIOT_LOADER_TRUSTED_STACK_SIZE=" .. loader_trusted_stack_size)
-- Get the threads config and prepare the predefined macros that describe them
local threads = target:values("threads")
-- Declare space and start and end symbols for a thread's C stack
local thread_stack_template =
"\n\t. = ALIGN(16);" ..
"\n\t.thread_stack_${thread_id} : CAPALIGN" ..
"\n\t{" ..
"\n\t\t.thread_${thread_id}_stack_start = .;" ..
"\n\t\t. += ${stack_size};" ..
"\n\t\t.thread_${thread_id}_stack_end = .;" ..
"\n\t}\n"
-- Declare space and start and end symbols for a thread's trusted stack
local thread_trusted_stack_template =
"\n\t. = ALIGN(8);" ..
"\n\t.thread_trusted_stack_${thread_id} : CAPALIGN" ..
"\n\t{" ..
"\n\t\t.thread_${thread_id}_trusted_stack_start = .;" ..
"\n\t\t. += ${trusted_stack_size};" ..
"\n\t\t.thread_${thread_id}_trusted_stack_end = .;" ..
"\n\t}\n"
-- Build a `class ThreadConfig` for a thread
local thread_template =
"\n\t\tSHORT(${priority});" ..
"\n\t\tLONG(${mangled_entry_point});" ..
"\n\t\tLONG(.thread_${thread_id}_stack_start);" ..
"\n\t\tSHORT(.thread_${thread_id}_stack_end - .thread_${thread_id}_stack_start);" ..
"\n\t\tLONG(.thread_${thread_id}_trusted_stack_start);" ..
"\n\t\tSHORT(.thread_${thread_id}_trusted_stack_end - .thread_${thread_id}_trusted_stack_start);" ..
"\n\n"
--Pass the declared threads as macros when building the loader and the
--scheduler.
local thread_headers = ""
local thread_trusted_stacks =
"\n\t. = ALIGN(8);" ..
"\n\t.loader_trusted_stack : CAPALIGN" ..
"\n\t{" ..
"\n\t\tbootTStack = .;" ..
"\n\t\t. += " .. loader_trusted_stack_size .. ";" ..
"\n\t}\n"
local thread_stacks =
"\n\t. = ALIGN(16);" ..
"\n\t.loader_stack : CAPALIGN" ..
"\n\t{" ..
"\n\t\tbootStack = .;" ..
"\n\t\t. += " .. loader_stack_size .. ";" ..
"\n\t}\n"
-- Stacks must be less than this size or truncating them in compartment
-- switch may encounter precision errors.
local stack_size_limit = 8176
for i, thread in ipairs(threads) do
thread.mangled_entry_point = string.format("__export_%s__Z%d%sv", thread.compartment, string.len(thread.entry_point), thread.entry_point)
thread.thread_id = i
-- Trusted stack frame is 24 bytes. If this size is too small, the
-- loader will fail. If it is too big, we waste space.
thread.trusted_stack_size = loader_trusted_stack_size + (24 * thread.trusted_stack_frames)
if thread.stack_size > stack_size_limit then
raise("thread " .. i .. " requested a " .. thread.stack_size ..
" stack. Stacks over " .. stack_size_limit ..
" are not yet supported in the compartment switcher.")
end
thread_stacks = thread_stacks .. string.gsub(thread_stack_template, "${([_%w]*)}", thread)
thread_trusted_stacks = thread_trusted_stacks .. string.gsub(thread_trusted_stack_template, "${([_%w]*)}", thread)
thread_headers = thread_headers .. string.gsub(thread_template, "${([_%w]*)}", thread)
end
local add_defines = function(compartment, option_name)
target:deps()[compartment]:add('defines', "CONFIG_THREADS_NUM=" .. #(threads))
end
add_defines(target:name() .. ".scheduler", "scheduler")
-- Next set up the substitutions for the linker scripts.
-- Templates for parts of the linker script that are instantiated per compartment
local compartment_templates = {
compartment_headers =
"\n\t\tLONG(.${compartment}_code_start);" ..
"\n\t\tSHORT((SIZEOF(.${compartment}_code) + 7) / 8);" ..
"\n\t\tSHORT(.${compartment}_imports_end - .${compartment}_code_start);" ..
"\n\t\tLONG(.${compartment}_export_table);" ..
"\n\t\tSHORT(.${compartment}_export_table_end - .${compartment}_export_table);" ..
"\n\t\tLONG(.${compartment}_globals);" ..
"\n\t\tSHORT(SIZEOF(.${compartment}_globals));" ..
"\n\t\tSHORT(.${compartment}_bss_start - .${compartment}_globals);" ..
"\n\t\tLONG(.${compartment}_cap_relocs_start);" ..
"\n\t\tSHORT(.${compartment}_cap_relocs_end - .${compartment}_cap_relocs_start);" ..
"\n\t\tLONG(.${compartment}_sealed_objects_start);" ..
"\n\t\tSHORT(.${compartment}_sealed_objects_end - .${compartment}_sealed_objects_start);\n",
pcc_ld =
"\n\t.${compartment}_code : CAPALIGN" ..
"\n\t{" ..
"\n\t\t.${compartment}_code_start = .;" ..
"\n\t\t${obj}(.compartment_import_table);" ..
"\n\t\t.${compartment}_imports_end = .;" ..
"\n\t\t${obj}(.text);" ..
"\n\t\t${obj}(.init_array);" ..
"\n\t\t${obj}(.rodata);" ..
"\n\t\t. = ALIGN(8);" ..
"\n\t}\n",
gdc_ld =
"\n\t.${compartment}_globals : CAPALIGN" ..
"\n\t{" ..
"\n\t\t.${compartment}_globals = .;" ..
"\n\t\t${obj}(.data);" ..
"\n\t\t.${compartment}_bss_start = .;" ..
"\n\t\t${obj}(.bss)" ..
"\n\t}\n",
compartment_exports =
"\n\t\t.${compartment}_export_table = ALIGN(8);" ..
"\n\t\t${obj}(.compartment_export_table);" ..
"\n\t\t.${compartment}_export_table_end = .;\n",
cap_relocs =
"\n\t\t.${compartment}_cap_relocs_start = .;" ..
"\n\t\t${obj}(__cap_relocs);\n\t\t.${compartment}_cap_relocs_end = .;",
sealed_objects =
"\n\t\t.${compartment}_sealed_objects_start = .;" ..
"\n\t\t${obj}(.sealed_objects);\n\t\t.${compartment}_sealed_objects_end = .;"
}
--Library headers are almost identical to compartment headers, except
--that they don't have any globals.
local library_templates = {
compartment_headers =
"\n\t\tLONG(.${compartment}_code_start);" ..
"\n\t\tSHORT((SIZEOF(.${compartment}_code) + 7) / 8);" ..
"\n\t\tSHORT(.${compartment}_imports_end - .${compartment}_code_start);" ..
"\n\t\tLONG(.${compartment}_export_table);" ..
"\n\t\tSHORT(.${compartment}_export_table_end - .${compartment}_export_table);" ..
"\n\t\tLONG(0);" ..
"\n\t\tSHORT(0);" ..
"\n\t\tSHORT(0);" ..
"\n\t\tLONG(.${compartment}_cap_relocs_start);" ..
"\n\t\tSHORT(.${compartment}_cap_relocs_end - .${compartment}_cap_relocs_start);" ..
"\n\t\tLONG(.${compartment}_sealed_objects_start);" ..
"\n\t\tSHORT(.${compartment}_sealed_objects_end - .${compartment}_sealed_objects_start);\n",
pcc_ld = compartment_templates.pcc_ld,
gdc_ld = "",
library_exports = compartment_templates.compartment_exports,
cap_relocs = compartment_templates.cap_relocs,
sealed_objects = compartment_templates.sealed_objects
}
-- The substitutions that we're going to have in the final linker
-- script. Initialised as empty strings.
local ldscript_substitutions = {
compartment_exports="",
library_exports="",
cap_relocs="",
compartment_headers="",
pcc_ld="",
gdc_ld="",
software_revoker_code="",
software_revoker_globals="",
software_revoker_header="",
sealed_objects="",
mmio=mmio,
code_start=code_start,
heap_start=heap_start,
thread_count=#(threads),
thread_headers=thread_headers,
thread_trusted_stacks=thread_trusted_stacks,
thread_stacks=thread_stacks,
loader_stack_size=loader:get('loader_stack_size'),
loader_trusted_stack_size=loader:get('loader_trusted_stack_size')
}
-- Helper function to add a dependency to the linker script
local add_dependency = function (name, dep, templates)
local obj = path.relative(dep:targetfile(), "$(projdir)")
local obj = dep:targetfile()
-- Helper to substitute the current compartment name and object file into a template.
local substitute = function (str)
return string.gsub(str, "${(%w*)}", { obj=obj, compartment=name })
end
for key, template in table.orderpairs(templates) do
ldscript_substitutions[key] = ldscript_substitutions[key] .. substitute(template)
end
end
-- If this board requires the software revoker, add it as a dependency
-- and add the relevant bits to the linker script.
if software_revoker then
ldscript_substitutions.software_revoker_code =
"\tsoftware_revoker_code : CAPALIGN\n" ..
"\t{\n" ..
"\t\t.software_revoker_start = .;\n" ..
"\t\t.software_revoker_import_end = .;\n" ..
"\t\tsoftware_revoker.compartment(.text .text.* .rodata .rodata.* .data.rel.ro);\n" ..
"\t\t*/cheriot.software_revoker.compartment(.text .text.* .rodata .rodata.* .data.rel.ro);\n" ..
"\t}\n" ..
"\t.software_revoker_end = .;\n\n"
ldscript_substitutions.software_revoker_globals =
"\n\t.software_revoker_globals : CAPALIGN" ..
"\n\t{" ..
"\n\t\t.software_revoker_globals = .;" ..
"\n\t\t*/cheriot.software_revoker.compartment(.data .data.* .sdata .sdata.*);" ..
"\n\t\t.software_revoker_bss_start = .;" ..
"\n\t\t*/cheriot.software_revoker.compartment(.sbss .sbss.* .bss .bss.*)" ..
"\n\t}" ..
"\n\t.software_revoker_globals_end = .;\n"
ldscript_substitutions.compartment_exports =
"\n\t\t.software_revoker_export_table = ALIGN(8);" ..
"\n\t\t*/cheriot.software_revoker.compartment(.compartment_export_table);" ..
"\n\t\t.software_revoker_export_table_end = .;\n" ..
ldscript_substitutions.compartment_exports
ldscript_substitutions.software_revoker_header =
"\n\t\tLONG(.software_revoker_start);" ..
"\n\t\tSHORT(.software_revoker_end - .software_revoker_start);" ..
"\n\t\tLONG(.software_revoker_globals);" ..
"\n\t\tSHORT(SIZEOF(.software_revoker_globals));" ..
-- The software revoker has no import table.
"\n\t\tLONG(0)" ..
"\n\t\tSHORT(0)" ..
"\n\t\tLONG(.software_revoker_export_table);" ..
"\n\t\tSHORT(.software_revoker_export_table_end - .software_revoker_export_table);\n" ..
"\n\t\tLONG(0);" ..
"\n\t\tSHORT(0);\n"
end
-- Process all of the library dependencies.
local library_count = 0
visit_all_dependencies(function (target)
if target:get("cheriot.type") == "library" then
library_count = library_count + 1
add_dependency(target:name(), target, library_templates)
end
end)
-- Process all of the compartment dependencies.
local compartment_count = 0
visit_all_dependencies(function (target)
if target:get("cheriot.type") == "compartment" then
compartment_count = compartment_count + 1
add_dependency(target:name(), target, compartment_templates)
end
end)
local shared_objects = {
-- 32-bit counter for the hazard-pointer epoch.
allocator_epoch = 4,
-- Two hazard pointers per thread.
allocator_hazard_pointers = #(threads) * 8 * 2
}
visit_all_dependencies(function (target)
local globals = target:values("shared_objects")
if globals then
for name, size in pairs(globals) do
if not (name == "__wrap_locked__") then
if shared_objects[global] and (not (shared_objects[global] == size)) then
raise("Global " .. global .. " is declared with different sizes.")
end
shared_objects[name] = size
end
end
end
end)
-- TODO: We should sort pre-shared globals by size to minimise padding.
-- Each global is emitted as a separate section so that we can use
-- CAPALIGN and let the linker insert the required padding.
local shared_objects_template =
"\n\t\t. = ALIGN(MIN(${size}, 8));" ..
"\n\t\t__cheriot_shared_object_section_${global} : CAPALIGN" ..
"\n\t\t{" ..
"\n\t\t\t__cheriot_shared_object_${global} = .;" ..
"\n\t\t\t. += ${size};" ..
"\n\t\t\t__cheriot_shared_object_${global}_end = .;" ..
"\n\t\t}\n"
local shared_objects_section = ""
for global, size in table.orderpairs(shared_objects) do
shared_objects_section = shared_objects_section .. string.gsub(shared_objects_template, "${([_%w]*)}", {global=global, size=size})
end
ldscript_substitutions.shared_objects = shared_objects_section
-- Add the counts of libraries and compartments to the substitution list.
ldscript_substitutions.compartment_count = compartment_count
ldscript_substitutions.library_count = library_count
-- Set the each of the substitutions.
for key, value in pairs(ldscript_substitutions) do
target:set("configvar", key, value)
end
end)
-- Perform the final link step for a firmware image.
on_linkcmd(function (target, batchcmds, opt)
import("core.project.config")
-- Get a specified linker script, or set the default to the compartment
-- linker script.
local linkerscript = path.join(config.buildir(), target:name() .. "-firmware.ldscript")
-- Link using the firmware's linker script.
batchcmds:show_progress(opt.progress, "linking firmware " .. target:targetfile())
batchcmds:mkdir(target:targetdir())
local objects = target:objectfiles()
visit_all_dependencies_of(target, function (dep)
if (dep:get("cheriot.type") == "library") or
(dep:get("cheriot.type") == "compartment") or
(dep:get("cheriot.type") == "privileged compartment") or
(dep:get("cheriot.type") == "privileged library") then
table.insert(objects, dep:targetfile())
end
end)
batchcmds:vrunv(target:tool("ld"), table.join({"-n", "--script=" .. linkerscript, "--relax", "-o", target:targetfile(), "--compartment-report=" .. target:targetfile() .. ".json" }, objects), opt)
batchcmds:show_progress(opt.progress, "Creating firmware report " .. target:targetfile() .. ".json")
batchcmds:show_progress(opt.progress, "Creating firmware dump " .. target:targetfile() .. ".dump")
batchcmds:vexecv(target:tool("objdump"), {"-glxsdrS", "--demangle", target:targetfile()}, table.join(opt, {stdout = target:targetfile() .. ".dump"}))
batchcmds:add_depfiles(linkerscript)
batchcmds:add_depfiles(objects)
end)
-- Rule for conditionally enabling debug for a component.
rule("cheriot.component-debug")
after_load(function (target)
local name = target:get("cheriot.debug-name") or target:name()
target:add('options', "debug-" .. name)
target:add('defines', "DEBUG_" .. name:upper() .. "=" .. tostring(get_config("debug-"..name)))
end)
-- Rule for conditionally enabling stack checks for a component.
rule("cheriot.component-stack-checks")
after_load(function (target)
local name = target:get("cheriot.debug-name") or target:name()
target:add('options', "stack-usage-check-" .. name)
target:add('defines', "CHERIOT_STACK_CHECKS_" .. name:upper() .. "=" .. tostring(get_config("stack-usage-check-"..name)))
end)
-- Build the loader. The firmware rule will set the flags required for
-- this to create threads.
target("cheriot.loader")
add_rules("cheriot.component-debug")
set_kind("object")
-- FIXME: We should be setting this based on a board config file.
add_files(path.join(coredir, "loader/boot.S"), path.join(coredir, "loader/boot.cc"), {force = {cxflags = "-O1"}})
add_defines("CHERIOT_AVOID_CAPRELOCS")
on_load(function (target)
target:set('cheriot.debug-name', "loader")
local config = {
-- Size in bytes of the trusted stack.
loader_trusted_stack_size = 192,
-- Size in bytes of the loader's stack.
loader_stack_size = 1024
}
target:add('defines', "CHERIOT_LOADER_STACK_SIZE=" .. config.loader_stack_size)
target:set('cheriot_loader_config', config)
for k, v in pairs(config) do
target:set(k, v)
end
end)
-- Helper function to define firmware. Used as `target`.
function firmware(name)
-- Build the scheduler. The firmware rule will set the flags required for
-- this to create threads.
target(name .. ".scheduler")
add_rules("cheriot.privileged-compartment", "cheriot.component-debug")
add_deps("locks", "crt", "atomic1")
add_deps("compartment_helpers")
on_load(function (target)
target:set("cheriot.compartment", "sched")
target:set('cheriot.debug-name', "scheduler")
target:add('defines', "SCHEDULER_ACCOUNTING=" .. tostring(get_config("scheduler-accounting")))
end)
add_files(path.join(coredir, "scheduler/main.cc"))
-- Create the firmware target. This target remains open on return and so
-- the caller can add more rules to it.
target(name)
set_kind("binary")
add_rules("firmware")
-- TODO: Make linking the allocator optional.
add_deps(name .. ".scheduler", "cheriot.loader", "cheriot.switcher", "cheriot.allocator")
add_deps("cheriot.token_library")
-- The firmware linker script will be populated based on the set of
-- compartments.
add_configfiles(path.join(scriptdir, "firmware.ldscript.in"), {pattern = "@(.-)@", filename = name .. "-firmware.ldscript"})
end
-- Helper to create a library.
function library(name)
target(name)
add_rules("cheriot.library")
end
-- Helper to create a compartment.
function compartment(name)
target(name)
add_rules("cheriot.compartment")
end
includes("lib/")