software update for iot: the current state of play

27
Software update for IoT the current state of play Chris Simmonds OpenIoT Summit 2016 Software update for IoT 1 Copyright © 2011-2016, 2net Ltd

Upload: chris-simmonds

Post on 15-Jan-2017

323 views

Category:

Software


5 download

TRANSCRIPT

Page 1: Software update for IoT: the current state of play

Software update for IoTthe current state of play

Chris Simmonds

OpenIoT Summit 2016

Software update for IoT 1 Copyright © 2011-2016, 2net Ltd

Page 2: Software update for IoT: the current state of play

License

These slides are available under a Creative Commons Attribution-ShareAlike 3.0license. You can read the full text of the license herehttp://creativecommons.org/licenses/by-sa/3.0/legalcodeYou are free to

• copy, distribute, display, and perform the work

• make derivative works

• make commercial use of the work

Under the following conditions

• Attribution: you must give the original author credit

• Share Alike: if you alter, transform, or build upon this work, you may distributethe resulting work only under a license identical to this one (i.e. include thispage exactly as it is)

• For any reuse or distribution, you must make clear to others the license terms ofthis work

Software update for IoT 2 Copyright © 2011-2016, 2net Ltd

Page 3: Software update for IoT: the current state of play

About Chris Simmonds• Consultant and trainer• Author of Mastering Embedded Linux

Programming• Working with embedded Linux since 1999• Android since 2009• Speaker at many conferences and

workshops"Looking after the Inner Penguin" blog at http://2net.co.uk/

https://uk.linkedin.com/in/chrisdsimmonds/

https://google.com/+chrissimmonds

Software update for IoT 3 Copyright © 2011-2016, 2net Ltd

Page 4: Software update for IoT: the current state of play

Overview

• Software update 101

• Update clients

• OTA update

• OTA implementations

Software update for IoT 4 Copyright © 2011-2016, 2net Ltd

Page 5: Software update for IoT: the current state of play

What could possibly go wrong?

• Mirai: a recent > 600 GbpsDDoS attack

• Very simple: looks for openTelnet ports and logs on usingdefault, well-known, nameand password

• Prime target: Dahua IP CCTVcameras

Details on PenTestPartners:

https://www.pentestpartners.com/blog/

optimising-mirai-a-better-iot-ddos-botnet

Software update for IoT 5 Copyright © 2011-2016, 2net Ltd

Page 6: Software update for IoT: the current state of play

Problems

Problem 1

• Embedded software is non-trivial (=> has bugs!)

• Devices are often connected to the Internet

• Allowing intruders to exploit the bugs remotely

Problem 2

• We would like to deploy new features, improveperformance, etc.

Conclusion

• We need a software update mechanism

Software update for IoT 6 Copyright © 2011-2016, 2net Ltd

Page 7: Software update for IoT: the current state of play

Requirements for SW update

• Secure, to prevent the device from being hijacked

• Robust, so that an update does not render the deviceunusable

• Atomic, meaning that an update must be installedcompletely or not at all

• Fail-safe, so that there is a fall-back mode if all elsefails

• Preserve persistent state

Software update for IoT 7 Copyright © 2011-2016, 2net Ltd

Page 8: Software update for IoT: the current state of play

What to update?

Frequency

Ease of update

Bootloader

Kernel

Root file system

System applications

Software update for IoT 8 Copyright © 2011-2016, 2net Ltd

Page 9: Software update for IoT: the current state of play

Update granularity• File:

• not an option: hard to achieve atomicity over a groupof file updates

• Package:

• apt-get update works fine for servers but not fordevices

• Container:

• neat idea, so long as you have containerisedapplications

• Image:

• the most common option: fairy easy to implement andverify

Software update for IoT 9 Copyright © 2011-2016, 2net Ltd

Page 10: Software update for IoT: the current state of play

Device update != server update

• Server

• Secure environment, no power outage, no networkoutage

• If update fails, human intervention is possible

• Device:

• Intermittent power and network mean update quitelikely to be interrupted

• Failed update may be difficult (and expensive) toresolve

Software update for IoT 10 Copyright © 2011-2016, 2net Ltd

Page 11: Software update for IoT: the current state of play

Options for image update

Symmetric A/B(Android afterNougat)

Bootloader Userdata

Bootflag

OS Copy 1

OS Copy 2

Bootloader

Main OS

Recovery OS

Userdata

Bootflag

Asymmetricnormal/recovery(Android beforeNougat)

Software update for IoT 11 Copyright © 2011-2016, 2net Ltd

Page 12: Software update for IoT: the current state of play

Statelessness

• Image update of a filesystem implies no state isstored in that filesystem

• See my talk about read-only rootfshttp://www.slideshare.net/chrissimmonds/readonly-rootfs-theory-and-practice

Software update for IoT 12 Copyright © 2011-2016, 2net Ltd

Page 13: Software update for IoT: the current state of play

Update agent

• Update agent is the code on the device that managesthe update

• Tasks

• Receive update from local storage (e.g. USB) or fromremote server

• Apply the update

• Toggle boot flag

Software update for IoT 13 Copyright © 2011-2016, 2net Ltd

Page 14: Software update for IoT: the current state of play

swupdate

• Image-based update client

• License: GPLv2

• Code https://github.com/sbabic/swupdate

• Documentationhttp://sbabic.github.io/swupdate/index.html

Software update for IoT 14 Copyright © 2011-2016, 2net Ltd

Page 15: Software update for IoT: the current state of play

swupdate features

• Symmetric and asymmetric update

• Bootloader support: U-Boot

• Volume formats: MTD, UBI, MBR and UEFI partitions

• Yocto Project layer: meta-swupdate

• Remote/streaming using curl (http/https/ssh/ftp)

• integrated REST client connector to hawkBit

• Signed images

Software update for IoT 15 Copyright © 2011-2016, 2net Ltd

Page 16: Software update for IoT: the current state of play

RAUC - Robust Auto-Update Controller

• Image-based update client

• License: LGPLv2.1

• Source Code: https://github.com/jluebbe/rauc

• Documentation: https://rauc.readthedocs.org/

Software update for IoT 16 Copyright © 2011-2016, 2net Ltd

Page 17: Software update for IoT: the current state of play

RAUC features

• Symmetric and asymmetric update

• Bootloader support: grub, barebox

• Volume formats: MTD, UBI, MBR and UEFI partitions

• Build systems: Yocto Project (meta-ptx), PTXDist

• Remote/streaming using curl (http/https/ssh/ftp)

• Cryptographic verification using OpenSSL(signatures based on x.509 certificates)

Software update for IoT 17 Copyright © 2011-2016, 2net Ltd

Page 18: Software update for IoT: the current state of play

OTA update

• Solutions so far are mostly suitable for

• Local update (man with a USB thumb drive)

• User initiated/attended remote update

• Local or attended remote update does not scale

• Hence, OTA (Over The Air) update

• Updates pushed from central server

• Update is automatic (or semi-automatic as withAndroid/IoS)

Software update for IoT 18 Copyright © 2011-2016, 2net Ltd

Page 19: Software update for IoT: the current state of play

OTA update components

Device softwarebuild system

Firmwareimages

Sign withauthentication

key

Updateserver

DeviceUpdateagent

Software update for IoT 19 Copyright © 2011-2016, 2net Ltd

Page 20: Software update for IoT: the current state of play

Complexities of OTA update

• Authentication (is this update legit?)

• Security (am I receiving what you are sending?)

• Roll-back (if update fails to boot, switch to previousversion)

• Scale (roll out to large populations)

• Monitoring (keeping track of status of the populationof devices)

Software update for IoT 20 Copyright © 2011-2016, 2net Ltd

Page 21: Software update for IoT: the current state of play

Roll-back• Boot limit count

• Feature of bootloader (e.g U-Boot)

• Increment count in bootloader

• Reset after successful boot

• If reboot with count > 0, bootloader knows boot failedand loads alternate rootfs

• Hardware watchdog

• If hang in early boot, watchdog times out and resetsCPU

• Bootloader checks reset reason

• If watchdog, loads alternate rootfs

Software update for IoT 21 Copyright © 2011-2016, 2net Ltd

Page 22: Software update for IoT: the current state of play

Mender.io

• OTA update server and client

• Full system image update

• Licenses: Server and Client: Apache 2

• Code (client):https://github.com/mendersoftware/mender

• Documentation: https://docs.mender.io

Software update for IoT 22 Copyright © 2011-2016, 2net Ltd

Page 23: Software update for IoT: the current state of play

Mender.io features

• Symmetric A/B image update client

• Bootloader support: U-Boot

• Volume formats: MBR and UEFI partitions

• Update commit and roll-back

• Build system: Yocto Project (meta-mender)

• Remote features: deployment server, build artifactmanagement, device management console

Software update for IoT 23 Copyright © 2011-2016, 2net Ltd

Page 24: Software update for IoT: the current state of play

Resin.io

• OTA update server and client

• Container (Docker) based updates

• Licenses: Client: Apache2; Server: proprietary

• Code (client):https://github.com/resin-os/meta-resin

• Documentation:https://docs.resin.io/introduction

Software update for IoT 24 Copyright © 2011-2016, 2net Ltd

Page 25: Software update for IoT: the current state of play

resin.io features

• Symetric A/B rootfs for core OS ("Resinhup")

• Applications packaged into Docker containers

• Build integration: Yocto Project (meta-resin)

• Docker images can be preloaded into YP build

• Remote features: deployment server, integration withgit

Software update for IoT 25 Copyright © 2011-2016, 2net Ltd

Page 26: Software update for IoT: the current state of play

Brillo

• Brillo is cut-down Android for IoT

• License: Apache 2.0

• Android OTA update client

• Symmetric and asymmetric image update

• Licenses: Client: Apache2; Server: proprietary

• Code (client): https://android.googlesource.com

• Documentation:https://developers.google.com/brillo

Software update for IoT 26 Copyright © 2011-2016, 2net Ltd

Page 27: Software update for IoT: the current state of play

Conclusion• Software update is a hot topic

• Open source solutions described in this presentation:

• Stand-alone update clients

• swupdaed

• RAUC

• End-to-end solutions

• mender.io

• resin.io

This and other topics associated with building robust embeddedsystems are coverred in my training courseshttp://www.2net.co.uk/training.html

Software update for IoT 27 Copyright © 2011-2016, 2net Ltd