]> git.plutz.net Git - rpi_small/blob - README.md
updated submodule
[rpi_small] / README.md
1 # Oktopus Boot
2
3 Generator for Oktopus boot media.
4
5 ## Purpose
6 The Oktopus sensor computer displays data on devices connected via Bluetooth. To enable this it opens a Bluetooth network access point. This AP allows connections by any device. To enable IP connectivity a DHCP server will be started on Oktopus. Oktopus identifies itself as an internet gateway to connecting devices. All attempts by those clients to connect to any websites will be directed to the local sensor display. This is enabled by a "fake" DNS server running on Oktopus, which resolves all domain names to the sensor computer itself.
7
8 In order to provide the necessary combination of Bluetooth, DHCP, and DNS settings, we provide a custom operating system image. This git repository contains the scripts and configuration files to assemble this image.
9
10 ## Requirements and Compatibility:
11 The build system must support Linux style loopback devices. The script as it is will only run on Linux OSes, and it strictly requires the `losetup` utility from the GNU userland package. In addition the main script is a GNU style makefile. This software will _not_ work on BSD or Mac OS X, without modification. It will also not work on `busybox` based Linux OSes.
12
13 The Raspberry environment is configured via ARM CPU emulation using qemu. A static qemu binary for ARM emulation must be provided, as well as the accompanying binfmt support in the kernel.
14
15 Required Programs are:
16  * a Linux Kernel with loop support (almost always available)
17  * `make` (GNU flavour)
18  * `losetup` (GNU flavour)
19  * `qemu-arm-static` (e.g. from the `qemu-user-static` Debian package)
20  *  a C compiler for the ARM platform (i.e. `gcc-arm-linux-gnueabi`, see submodule `teesock`)
21  * `mkfs.ext4`
22  * `mkfs.fat`
23  * `sfdisk`
24  * `debootstrap`
25  * `ssh-keygen` (optional)
26
27 `debootstrap` is available in all Debian derivatives, including Ubuntu. It can be installed in some Non-Debian distributions as well.
28
29 ## Usage
30 The script must be run as root. The target is `raspi.img`. I.e. you should run (as root):
31
32     make raspi.img
33
34 The resulting `raspi.img` file can be written to an SD-Card using `dd`. And a Raspberry Pi can be booted from this SD-Card.
35
36 Some configuration options can be set in `config.mk`. See `config.example` as a template, but do not edit `config.example`directly, as it is tracked by git.
37 `config.mk` is particularly useful to set up an APT-Proxy, and to set up Wifi credentials. If Wifi credentials are set up, the Oktopus computer will attempt to connect to the specified wireless network to provide SSH access. Network configuration on the Wifi network is derived via DHCP, the Oktopus DHCP server will not interfere with the wifi network.
38
39 ## Log in on the Sensor Computer
40 Oktopus provides only a root login using SSH key authentication. There is no user account, no `sudo`, and no password login. You can provide an SSH public key before staring the build, which can later be used for the root login. In order to do this you just need to copy your public key to `id_rsa.pub` in the root folder of this repository. Note that even EC, or DSA keys should be named `id_rsa.pub`.
41 If you do not provide your own SSH key, the build script will conveniently generate one. You can then later login to Oktopus, by typing:
42
43     ssh -i id_rsa root@oktopus
44
45 ## Function outline
46
47 ### OS Image
48 The Makefile uses `debootstrap` to set up a Raspbian environment. Package signatures will be verified. Operations within the Raspbian environment are performed using `qemu`. Thus building on a x86 host platform is possible. The environment is then copied to an image file using loopback mounting. The `files` directory contains an overlay of Raspbian config files, which are copied into the image file at this stage. Since this happens at _image_ creation, the debootstrapped root _directory_ is modified as little as possible. 
49
50 The list of raspbian packages which are installed in the chroot environmant can be extended in `config.mk`.
51
52 ### Bluetooth and Wifi Networking
53 DHCP and DNS services on Oktopus are provided by `dnsmasq`. Bluetooth networking is provided by the regular Linux Bluetooth stack using hci, bridge, and ip/ifup utilities. All attempts to connect to the Bluetooth network ap are trusted automatically, this is facilitated by a shell loop in (`files/`)`etc/rc.local` (autotrust is not otherwise provided by the Bluetooth stack).
54 As a matter of convenience during testing and debugging the sensor computer can also join an existing Wifi network. Wifi credentials can be provided in `config.mk`. Because Oktopus will not provide DHCP and DNS on Wifi, the name resolution for Oktopus services will not work on Wifi and the sensor webapp may not be usable. Only Bluetooth networking is intended for this kind of operation.
55
56 ### Sensor readout and Webapp
57
58 > The sensor application is currently under development. The `gummikraken` submodule provides virtual sensors with simulation data. Gummikraken will be gradually replaced by working sensor drivers.
59
60 > The display application (oktopus_frontend) is developed as a separate project. See its respective repository for a detailed documentation.
61
62 Also see git submodules:
63   * gummikraken (to be removed)
64   * teesock
65   * gummikraken/oktopus_frontend (submodule to be moved to the main repo)
66
67 The sensor application resides under `/srv/` in the generated system image. Each sensor is read periodically by a distinct program. Each sensor program provides sensor readout on stdout in a short time interval of its own choosing. All sensor programs are launched in parallel by `hatch.sh`. The sensor data is accumulated and provided on a Unix socket (`/tmp/oktopus.sock`) by the program `teesock`. Each connection to this socket will yield a copy of the current sensor stream.
68
69 The display application is served over HTTP by the busybox httpd, which is launched from inetd. The display reads the sensor data as an HTTP Event Stream from port 8200 (Okt-Two-pus ;-). The Event Stream is generated from the sensor stream on the aforementioned Unix socket. Conversion of the seonsor readout to the HTTP Event Stream format is done by `tentacles.sh`, which is also launched via inetd.
70
71 ## ToDo
72  * include the sensor driver and utilities (so far: temperature, ...)
73  * ~~include the display application~~ (done)
74  * ~~provide the display application via web server~~ (done)
75  * possibly counter DNS rebind protection by identifying as gateway and redirect via `iptables` (may not be necessary)
76
77 ## Legal
78 This program was originally developed on behalf of the Hochschule für Technik und Wirtschaft Berlin. The program is licensed under the GNU Affero General Public License. See LICENSE.TXT for details.