mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
9d67f9fc8e
This patch removes old 'Allocator_guard' utility and replaces its use with the modern 'Constrained_ram_allocator'. The adjustment of core in this respect has the side effect of a more accurate capability accounting in core's CPU, TRACE, and RM services. In particular, the dataspace capabilities needed for core-internal allocations via the 'Sliced_heap' are accounted to the client now. The same goes for nitpicker and nic_dump as other former users of the allocator guard. Hence, the patch also touches code at the client and server sides related to these services. The only remaining user of the 'Allocator_guard' is the Intel GPU driver. As the adaptation of this component would be too invasive without testing, this patch leaves this component unchanged by keeping a copy of the 'allocator_guard.h' locally at the component. Fixes #3750
182 lines
5.4 KiB
Plaintext
182 lines
5.4 KiB
Plaintext
if {![have_include power_on/qemu]} {
|
|
puts "Run script is only supported on Qemu"
|
|
exit 0
|
|
}
|
|
|
|
if {[have_spec rpi3]} {
|
|
puts "\n Run script is not supported on this platform. \n";
|
|
exit 0
|
|
}
|
|
|
|
create_boot_directory
|
|
|
|
import_from_depot [depot_user]/src/[base_src] \
|
|
[depot_user]/pkg/[drivers_nic_pkg] \
|
|
[depot_user]/src/init \
|
|
[depot_user]/src/libc \
|
|
[depot_user]/src/nic_bridge \
|
|
[depot_user]/src/vfs_lwip \
|
|
[depot_user]/src/vfs
|
|
|
|
build { test/lwip }
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="100"/>
|
|
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start>
|
|
|
|
<start name="drivers" caps="1000">
|
|
<resource name="RAM" quantum="32M" constrain_phys="yes"/>
|
|
<binary name="init"/>
|
|
<route>
|
|
<service name="ROM" label="config"> <parent label="drivers.config"/> </service>
|
|
<service name="Timer"> <child name="timer"/> </service>
|
|
<any-service> <parent/> </any-service>
|
|
</route>
|
|
<provides> <service name="Nic"/> </provides>
|
|
</start>
|
|
|
|
<start name="nic_bridge" caps="200">
|
|
<resource name="RAM" quantum="24M"/>
|
|
<provides><service name="Nic"/></provides>
|
|
<config verbose="yes" mac="02:02:02:02:42:00">
|
|
<policy label_prefix="client_1"/>
|
|
<policy label_prefix="server_1" ip_addr="10.0.2.55"/>
|
|
<policy label_prefix="server_2" ip_addr="10.0.2.56" mac="02:02:02:02:23:00"/>
|
|
<policy label_prefix="client_2" mac="02:02:02:02:79:00"/>
|
|
</config>
|
|
<route>
|
|
<service name="Nic"> <child name="drivers"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
</start>
|
|
|
|
<start name="server_1" caps="120">
|
|
<binary name="test-lwip_httpsrv"/>
|
|
<resource name="RAM" quantum="32M"/>
|
|
<route>
|
|
<service name="Nic"> <child name="nic_bridge"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
<config port="80">
|
|
<vfs>
|
|
<dir name="socket">
|
|
<lwip ip_addr="10.0.2.55" netmask="255.255.255.0" gateway="10.0.2.1"/>
|
|
</dir>
|
|
<dir name="dev"> <log/> </dir>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" socket="/socket"/>
|
|
</config>
|
|
</start>
|
|
|
|
<start name="server_2" caps="120">
|
|
<binary name="test-lwip_httpsrv"/>
|
|
<resource name="RAM" quantum="32M"/>
|
|
<route>
|
|
<service name="Nic"> <child name="nic_bridge"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
<config port="80">
|
|
<vfs>
|
|
<dir name="socket">
|
|
<lwip ip_addr="10.0.2.56" netmask="255.255.255.0" gateway="10.0.2.1"/>
|
|
</dir>
|
|
<dir name="dev"> <log/> </dir>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" socket="/socket"/>
|
|
</config>
|
|
</start>
|
|
|
|
<start name="client_1" caps="120">
|
|
<binary name="test-http_clnt"/>
|
|
<resource name="RAM" quantum="32M"/>
|
|
<route>
|
|
<service name="Nic"> <child name="nic_bridge"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
<config server_ip="10.0.2.55" server_port="80">
|
|
<vfs>
|
|
<dir name="socket"> <lwip dhcp="yes"/> </dir>
|
|
<dir name="dev"> <log/> </dir>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" socket="/socket"/>
|
|
</config>
|
|
</start>
|
|
|
|
<start name="client_2" caps="120">
|
|
<binary name="test-http_clnt"/>
|
|
<resource name="RAM" quantum="32M"/>
|
|
<route>
|
|
<service name="Nic"> <child name="nic_bridge"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
<config server_ip="10.0.2.56" server_port="80">
|
|
<vfs>
|
|
<dir name="socket"> <lwip dhcp="yes"/> </dir>
|
|
<dir name="dev"> <log/> </dir>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" socket="/socket"/>
|
|
</config>
|
|
</start>
|
|
|
|
<start name="client_3" caps="120">
|
|
<binary name="test-http_clnt"/>
|
|
<resource name="RAM" quantum="32M"/>
|
|
<route>
|
|
<service name="Nic"> <child name="nic_bridge"/> </service>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</route>
|
|
<config server_ip="10.0.2.56" server_port="80">
|
|
<vfs>
|
|
<dir name="socket"> <lwip dhcp="yes"/> </dir>
|
|
<dir name="dev"> <log/> </dir>
|
|
</vfs>
|
|
<libc stdout="/dev/log" stderr="/dev/log" socket="/socket"/>
|
|
</config>
|
|
</start>
|
|
</config>}
|
|
|
|
build_boot_image {
|
|
test-http_clnt
|
|
test-lwip_httpsrv
|
|
}
|
|
|
|
proc qemu_nic_model {} {
|
|
if [have_spec x86] { return e1000 }
|
|
if [have_spec lan9118] { return lan9118 }
|
|
if [have_spec zynq] { return cadence_gem }
|
|
return nic_model_missing
|
|
}
|
|
|
|
append qemu_args " -nographic "
|
|
append qemu_args " -netdev user,id=net0 "
|
|
append qemu_args " -net nic,model=[qemu_nic_model],netdev=net0 "
|
|
|
|
append done_string {.*?\[init -> client_3] .\[31mError: Nic-session creation failed}
|
|
append done_string {.*?\[client_1 -> lwip] rcv .\[32mETH.\[0m 02:02:02:02:42:0.}
|
|
append done_string {.*?\[client_2 -> lwip] rcv .\[32mETH.\[0m 02:02:02:02:79:00}
|
|
append done_string {.*?\[server_1 -> lwip] rcv .\[32mETH.\[0m 02:02:02:02:42:0.}
|
|
append done_string {.*?\[server_2 -> lwip] rcv .\[32mETH.\[0m 02:02:02:02:23:00}
|
|
append done_string {.*?"client_." exited with exit value 0}
|
|
append done_string {.*?"client_." exited with exit value 0}
|
|
append done_string {.*?\n}
|
|
|
|
run_genode_until $done_string 40
|