Git Product home page Git Product logo

playos's Introduction

PlayOS

PlayOS is a Linux system to act as an application kiosk. PlayOS is a layer on top of NixOS.

The base layer functionality of PlayOS is:

  • Automatic A/B update mechanism
  • Read-only system partitions, with selected persisted configuration data
  • Web-based configuration interface for
    • network (LAN, WLAN, HTTP proxy, static IP),
    • localization,
    • system status,
    • remote maintenance.
  • Installer
  • Live system
  • Remote maintenance via ZeroTier

The application layer may be defined in a single Nix file.

This repository contains the application layer for running the Dividat Play web app and supporting system services in a fullscreen kiosk.

See the documentation and user manual for more information.

Quick start

Running nix build will create following (in result/):

  • bin/: Tools
  • playos-VERSION-UNSIGNED.raucb: RAUC bundle that can be used to update systems. Note that it is signed with a dummy development key. Real deployments would resign the bundle with rauc resign.
  • playos-installer-VERSION.iso: Bootable ISO image that can install the system.
  • disk.img: Preinstalled disk with bootloader, system partitions A/B and data partitions for testing (but without test instrumentation).

Choose what to build

For quicker development cycles you may pass following arguments to the build:

  • buildInstaller: Should the installer ISO image be built.
  • buildBundle: Should the RAUC bundle be built.
  • buildDisk: Should the preinstalled disk image be built.
  • buildLive: Should the PlayOS live system image be built.

For example: nix build --arg buildInstaller false --arg buildBundle false will only build the system toplevels and the preinstalled disk image.

A virtual machine (with test instrumentation) can be started without any of the above builds.

Components

Controller

The controller service orchestrates the system's self-update and acts as a configuration interface for the options exposed to the user. It may be run directly on a Linux host for development purposes.

Kiosk

The kiosk browser is used in the default configuration of PlayOS to run any web application in a full screen kiosk. It can be run directly on most hosts for development purposes.

System Testing

To test integrated portions of the PlayOS system, there are several options/levels available:

  • Running a single system partition with QEMU (fast, partial, isolated)
  • Running a full system inside a virtual machine such as VirtualBox (slow, simulated full, isolated)
  • Running a single system partition from a USB stick on a physical machine (medium fast, partial, isolated)
  • Running a full system on a physical machine (slow, full, isolated)

QEMU VM

Most changes to system configuration and/or the controller can be tested in a virtual machine. To create and run a VM, run:

./build vm
./result/bin/run-in-vm

In order to get the vm system journal, look at the output of run-in-vm for a command starting with socat.

See the output of ./result/bin/run-in-vm --help for more information.

Guest networking

The default user-mode network stack is used to create a virtual Ethernet connection with bridged Internet access for the guest. If you find that the guest has a dysfunctional Internet connection, check your host's firewall settings. If using ConnMan on the host, restart the ConnMan service and try again.

VirtualBox VM

PlayOS can also be tested on a VM like VirtualBox, which can simulate a system more fully, including the installer, Grub and A/B partitions. Guidance for setting this up can be found here.

Testing on PlayOS hardware

Changes such as NixOS upgrades, or to anything else that directly interacts with system hardware may necessitate testing on physical hardware. This can be done by booting from a live system or performing a complete installation.

To build only a live system:

nix-build --arg buildInstaller false --arg buildBundle false --arg buildDisk false

To build only an installer:

nix-build --arg buildLive false --arg buildBundle false --arg buildDisk false

Flash the ISO in ./result/ to a USB stick and boot or install PlayOS.

Building a complete system takes time, so it is a good idea to test at the component or QEMU VM level first, where possible.

Automated Testing

Subcomponent tests using the NixOS test framework may be added to test/integration.

Run tests with

testing/run

or individual tests with

nix-build testing/integration/EXAMPLE.nix

Tests added to test/integration are executed via a GitHub Action when pushing or creating pull requests.

Deployment

Update bundles are hosted on Amazon S3. The script bin/deploy-update will handle signing and uploading of bundle.

The arguments updateUrl (from where updates will be fetched by PlayOS systems), deployURL (where bundles should be deployed to) must be specified. For example: nix build --arg updateUrl https://dist.dividat.com/releases/playos/master/ --arg deployUrl s3://dist.dividat.ch/releases/playos/master/.

Commonly used update and deploy URLs (channels) can be used with shortcuts defined in ./build.

To release an update to the develop channel:

./build develop
./result/bin/deploy-update --key PATH_TO_KEY.pem

Key switch

When switching key pairs on a channel, the new certficiate must be built into the bundle, which must then be signed with the old key. For this purpose, the --override-cert option of the deploy script is needed to provide RAUC with a certificate matching the new key.

Change Log

Update the change log for every release. See http://keepachangelog.com/ for formatting and conventions.

Dev tools

The following dev tools are available:

  • Simulate a captive portal

Related work

  • Yocto: A builder for embedded Linux distributions. Widely used but not very well suited for desktop functionality (such as browser).
  • Buildroot: Builder for embedded Linux systems. Also not very well suited for desktop functionality.
  • not-os: A NixOS based system generator. Much more minimal than NixOS, does not use systemd and is not compatible with existing NixOS modules.

Attribution and Licensing

Most code in this repository is authored by the Dividat AG and the project contributors. This code is licensed under an MIT license.

Some source files in this project are portions of other open-source project and may be released under different licenses. The applicable licenses are stated here as well as in the relevant subdirectories.

Copyright (c) 2003-2018 Eelco Dolstra and the Nixpkgs/NixOS contributors

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The MIT License (MIT)

Copyright (c) 2013-2017 Cole Bemis

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

playos's People

Contributors

fabianhauser avatar guyonvarch avatar knuton avatar krksgbr avatar pukkamustard avatar stoeffel avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.