2012-08-22 08:14:40 +00:00
|
|
|
#
|
|
|
|
# \brief Example for hosting the genode.org website on Genode
|
|
|
|
# \author Norman Feske
|
|
|
|
# \date 2012-08-16
|
|
|
|
#
|
2014-04-14 09:57:22 +00:00
|
|
|
# This run script uses the lighttpd web server to host the genode.org website.
|
|
|
|
# When executed the first time, the genode.org website is downloaded to
|
|
|
|
# 'bin/genode_org/website'. When the web server is up, you may point your web
|
|
|
|
# browser to http://localhost:5555
|
2012-08-22 08:14:40 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
create_boot_directory
|
2019-04-24 13:09:49 +00:00
|
|
|
import_from_depot [depot_user]/src/[base_src] \
|
|
|
|
[depot_user]/pkg/[drivers_nic_pkg] \
|
|
|
|
[depot_user]/src/init \
|
2021-01-08 16:27:24 +00:00
|
|
|
[depot_user]/src/nic_router \
|
2019-04-24 13:09:49 +00:00
|
|
|
[depot_user]/src/libc \
|
|
|
|
[depot_user]/src/libssh \
|
|
|
|
[depot_user]/src/lighttpd \
|
2020-03-18 15:27:28 +00:00
|
|
|
[depot_user]/src/openssl \
|
2019-04-24 13:09:49 +00:00
|
|
|
[depot_user]/src/posix \
|
|
|
|
[depot_user]/src/vfs \
|
|
|
|
[depot_user]/src/vfs_lwip \
|
|
|
|
[depot_user]/src/zlib
|
|
|
|
|
|
|
|
install_config {
|
2012-08-22 08:14:40 +00:00
|
|
|
<config>
|
|
|
|
<parent-provides>
|
|
|
|
<service name="ROM"/>
|
|
|
|
<service name="LOG"/>
|
|
|
|
<service name="RM"/>
|
|
|
|
<service name="CPU"/>
|
|
|
|
<service name="PD"/>
|
|
|
|
<service name="IRQ"/>
|
|
|
|
<service name="IO_PORT"/>
|
|
|
|
<service name="IO_MEM"/>
|
|
|
|
</parent-provides>
|
|
|
|
<default-route>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</default-route>
|
2017-07-25 11:50:05 +00:00
|
|
|
<default caps="100"/>
|
2019-04-24 13:09:49 +00:00
|
|
|
|
2012-08-22 08:14:40 +00:00
|
|
|
<start name="timer">
|
|
|
|
<resource name="RAM" quantum="1M"/>
|
|
|
|
<provides><service name="Timer"/></provides>
|
2019-04-24 13:09:49 +00:00
|
|
|
</start>
|
|
|
|
|
2024-05-30 13:46:57 +00:00
|
|
|
<start name="nic" caps="1000" managing_system="yes">
|
2020-07-10 11:04:12 +00:00
|
|
|
<resource name="RAM" quantum="32M"/>
|
2019-04-24 13:09:49 +00:00
|
|
|
<binary name="init"/>
|
|
|
|
<route>
|
|
|
|
<service name="ROM" label="config"> <parent label="drivers.config"/> </service>
|
|
|
|
<service name="Timer"> <child name="timer"/> </service>
|
2021-01-08 16:27:24 +00:00
|
|
|
<service name="Uplink"> <child name="nic_router"/> </service>
|
2019-04-24 13:09:49 +00:00
|
|
|
<any-service> <parent/> </any-service>
|
|
|
|
</route>
|
2021-01-08 16:27:24 +00:00
|
|
|
</start>
|
|
|
|
|
|
|
|
<start name="nic_router" caps="200">
|
|
|
|
<resource name="RAM" quantum="10M"/>
|
|
|
|
<provides>
|
|
|
|
<service name="Nic"/>
|
|
|
|
<service name="Uplink"/>
|
|
|
|
</provides>
|
|
|
|
<config verbose_domain_state="yes">
|
|
|
|
|
|
|
|
<policy label_prefix="lighttpd" domain="downlink"/>
|
2024-05-30 13:46:57 +00:00
|
|
|
<policy label_prefix="nic" domain="uplink"/>
|
2021-01-08 16:27:24 +00:00
|
|
|
|
|
|
|
<domain name="uplink" interface="10.0.2.55/24" gateway="10.0.2.1">
|
|
|
|
|
|
|
|
<nat domain="downlink"
|
|
|
|
tcp-ports="16384"
|
|
|
|
udp-ports="16384"
|
|
|
|
icmp-ids="16384"/>
|
|
|
|
|
|
|
|
<tcp-forward port="80" domain="downlink" to="10.0.3.2"/>
|
|
|
|
|
|
|
|
</domain>
|
|
|
|
|
|
|
|
<domain name="downlink" interface="10.0.3.1/24">
|
|
|
|
|
|
|
|
<dhcp-server ip_first="10.0.3.2" ip_last="10.0.3.2">
|
|
|
|
<dns-server ip="8.8.8.8"/>
|
|
|
|
<dns-server ip="1.1.1.1"/>
|
|
|
|
</dhcp-server>
|
|
|
|
|
|
|
|
<tcp dst="0.0.0.0/0"><permit-any domain="uplink" /></tcp>
|
|
|
|
<udp dst="0.0.0.0/0"><permit-any domain="uplink" /></udp>
|
|
|
|
<icmp dst="0.0.0.0/0" domain="uplink"/>
|
|
|
|
|
|
|
|
</domain>
|
|
|
|
|
|
|
|
</config>
|
2019-04-24 13:09:49 +00:00
|
|
|
</start>
|
2013-11-13 13:10:49 +00:00
|
|
|
|
2017-07-25 11:50:05 +00:00
|
|
|
<start name="lighttpd" caps="1000">
|
2012-08-22 08:14:40 +00:00
|
|
|
<resource name="RAM" quantum="1G" />
|
|
|
|
<config>
|
|
|
|
<arg value="lighttpd" />
|
|
|
|
<arg value="-f" />
|
|
|
|
<arg value="/etc/lighttpd/lighttpd.conf" />
|
|
|
|
<arg value="-D" />
|
2017-03-09 13:03:46 +00:00
|
|
|
<vfs>
|
|
|
|
<dir name="dev">
|
|
|
|
<log/>
|
|
|
|
<null/>
|
|
|
|
</dir>
|
2018-08-31 09:03:13 +00:00
|
|
|
<dir name="socket">
|
|
|
|
<lwip dhcp="yes"/> </dir>
|
2017-03-09 13:03:46 +00:00
|
|
|
<tar name="genode_org.tar"/>
|
|
|
|
</vfs>
|
2018-08-31 09:03:13 +00:00
|
|
|
<libc stdin="/dev/null" stdout="/dev/log" stderr="/dev/log"
|
|
|
|
socket="/socket" />
|
2012-08-22 08:14:40 +00:00
|
|
|
</config>
|
2021-01-08 16:27:24 +00:00
|
|
|
<route>
|
|
|
|
<service name="Nic"> <child name="nic_router"/> </service>
|
|
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
|
|
</route>
|
2019-04-24 13:09:49 +00:00
|
|
|
</start>
|
2021-01-08 16:27:24 +00:00
|
|
|
|
2012-08-22 08:14:40 +00:00
|
|
|
</config>}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create TAR archive containting the web-server configuration and the
|
|
|
|
# website content.
|
|
|
|
#
|
|
|
|
|
|
|
|
# lighttpd configuration
|
|
|
|
exec mkdir -p bin/genode_org/etc/lighttpd
|
|
|
|
set fd [open "bin/genode_org/etc/lighttpd/lighttpd.conf" w]
|
|
|
|
puts $fd {
|
|
|
|
server.port = 80
|
|
|
|
server.document-root = "/website"
|
|
|
|
server.event-handler = "select"
|
|
|
|
server.network-backend = "write"
|
|
|
|
server.max-keep-alive-requests = 0
|
|
|
|
index-file.names = ( "index", "index.html", "index.htm" )
|
|
|
|
mimetype.assign = (
|
|
|
|
".png" => "image/png",
|
|
|
|
".jpg" => "image/jpeg",
|
|
|
|
".jpeg" => "image/jpeg",
|
|
|
|
".gif" => "image/gif",
|
|
|
|
".css" => "text/css",
|
|
|
|
".html" => "text/html",
|
|
|
|
".htm" => "text/html",
|
|
|
|
"" => "text/html",
|
|
|
|
) }
|
|
|
|
close $fd
|
|
|
|
|
|
|
|
# mirror of genode.org website
|
|
|
|
if {![file exists bin/genode_org/website/index]} {
|
|
|
|
puts "mirroring genode.org website to bin/genode_org/website..."
|
|
|
|
exec mkdir -p bin/genode_org/website
|
|
|
|
|
|
|
|
# ignore wget errors
|
|
|
|
catch {
|
2019-10-15 18:36:46 +00:00
|
|
|
exec wget -nH -Lrc -P bin/genode_org/website https://genode.org
|
2012-08-22 08:14:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exec tar cfv bin/genode_org.tar -h -C bin/genode_org .
|
|
|
|
|
2019-04-24 13:09:49 +00:00
|
|
|
build_boot_image { genode_org.tar }
|
2012-08-22 08:14:40 +00:00
|
|
|
|
2020-04-06 14:05:54 +00:00
|
|
|
append qemu_args " -nographic "
|
2020-04-02 19:20:50 +00:00
|
|
|
append_qemu_nic_args "hostfwd=tcp::5555-:80"
|
2012-08-22 08:14:40 +00:00
|
|
|
|
|
|
|
run_genode_until forever
|