09:00 - 09:45 |
P06A: Role-based Access Control in BCHS Web Applications
Kristaps Dzonsons (kristaps@bsd.lv)
- Abstract
Web applications export an attractive attack surface. First, since they're open front-ends to valuable data sources. And second, since they usually accept a non-trivial set of inputs (forms, JPGs, etc.), perform complex tasks, and produce diverse outputs---where each step along the way may be manipulated by a skilled attacker. Or an unskilled one with well-built tools. A great deal of active research concerns itself with restricting system resources from attackers, but there remain few resources for protecting an application's internal data sources: most importantly, the database. In this talk, I describe recent developments in BCHS web applications that allow programmers to define, enforce, and audit access roles of the application and its data source. We'll show real-world applications with hard guarantees on access control.
- Speaker
Contributes to BSD.lv open source projects.
|
P06B: Virtualization on ARMv8-A: bhyvearm64 Current Status and the Porting Process
Alexandru Elisei (alexandru.elisei@gmail.com)
- Abstract
Virtualization allows a host computer to run multiple virtual machines. A virtual machine makes it possible for a guest operating system to run in an environment that from its point of view acts like the native hardware. The ARMv8 family of processors developed by ARM provide various hardware features which make virtualization efficient by removing or reducing some of the overhead usually associated with running virtual machines. We are working on porting the FreeBSD bhyve hypervisor to this architecture, a port we have called bhyvearm64. This paper describes the porting process and the modifications we have made to the FreeBSD kernel and to the bhyve hypervisor
- Speaker
Alexandru Elisei is a 4th year college student studying Computer Science at University Politehnica of Bucharest. He is very passionate about computers and open source software. Alexandru Elisei has made contributions to various open source projects, like Gentoo's package manager, Portage, Moodle core and Moodle plugins, and libmraa. He has also taken part in Google Summer of Code as a student developer.
|
10:00 - 10:45 |
P07A: OpenBSD/x-ray - OpenBSD on medical x-ray machines
Henning Brauer (henning@openbsd.org)
- Abstract
Modern, digital x-ray machines are pretty complex beasts. They contain several networked systems and must in turn be connected to the hospital or doctor's office network - basically, requests with the patient data are being sent to the x-ray machine, the operator processes these requests and the records are sent back with the images attached. To further complicate matters, there are external image readers in some cases, connected to the external network, not the x-ray machine itself, that the x-ray machine needs to talk to. Thanks to the wonderful combination of high certification costs and monopolies in certain areas, some of these sensors only speak ftp. The x-ray machine's internal network must be the same layer 2 network as the external one thanks to the mandantory protocols involved, and medical regulations make any kind of investigation or information gathering on production systems outright impossible. The same regulations impose very very strict limits on remote access - only if the machine is in maintainance mode and not operational, of course. Certification requirements make upgrading hard, and the field engineers are x-ray engineers, not networking specialists. Even a DoS has unexpected consequences - if the data transfer between the image sensor and the imaging station fails, the x-ray process has to be repeated, and that is considered bodily injury. While most vendors just ignore the problem, at least one has its digital x-ray and fluoroscopy (think x-ray movies) ship with an OpenBSD bridge for roughly 10 years now to seperate the internal from the external network. This system as recently been redone and is getting rolled out to their CT and MRI machines as well. I will show how OpenBSD is being used on this scenario, dive into the arp filter I wrote for the bridge in the process as well as several smaller pf changes, and provide new insights - even literally.
- Speaker
Henning has been an OpenBSD developer since 2002. He's the lead pf developer for many years now. Henning also started OpenBGPD and OpenNTPD, and the framework he wrote for them is the base of all newer network deamons in OpenBSD. Aside from OpenBSD, Henning is the CEO of BS Web Services GmbH, an ISP, and net-activities GmbH, and also runs Henning Brauer Consulting. He also is an elected member of the Hamburg Chamber of Commerce plenary, on the Board of Directors at the EuroBSDcon Foundation and co-chair of Standpunkt.Schanze e. V.
|
P07B: Implementing a Virtual Generic Interrupt Controller for the FreeBSD Hypervisor
Mihai Carabas (mihai.carabas@cs.pub.ro)
- Abstract
Interrupts are used in modern systems to signal events that require immediate action. Current CPUs implement interrupts using some type of controller circuit. As such, the ARM architecture uses a system called Generic Interrupt Controller to manage interrupts. In order for virtualization to be possible on ARM hardware, a Virtual Generic Interrupt Controller needs to be present to manage interrupts for guest operating systems. This research project describes implementing such a system for an ARMv7 processor running the FreeBSD hypervisor - bhyve.
- Speaker
My name is Mihai Carabas and I'm a assistant profesor at University POLITEHNICA of Bucharest in the domains like computer architecture and operating systems. I've contributed over the last five years in FreeBSD and DragonFlyBSD virtualization code. I've started working on BSD systems four years ago, on DragonFly BSD, tweaking its scheduler to be SMT (or HT) aware. In the next year I've implemented hardware nested page table support (EPT for Intel) for the DragonFly BSD vkernels eliminating the need of shadow page tables. In 2014 I've worked on a bhyve project where I've tried to minimize the impact of instruction emulation by caching the emulated instructions. Thus, at further usage, we use the hot cache instead of fetch-and-decode the faulted instruction again (the work has been presented during AsiaBSDCon 2015). In 2015 I've started working on porting the bhyve hypervisor on ARM-based platforms. I had to write from scratch the low-level context switch code and adapt it to a Type-2 hypervisor: ARM, by its design, ensures support for Type-1 hypervisors (a hypervisor that runs without a host OS). bhyve is written to be part of the FreeBSD and use its management features and thus its a Type-2 hypervisor. Another problem was to fork the current bhyve code base and reuse it with minor modifications for ARM (basically to preserve the same API - in the near future to be able to create a generic code-base for bhyve and only the context switch code to reside in the machine-dependant code). Until now I've manage to run a virtual machine on top of the bhyve hypervisor using FastModels simulation platform. There is work in progress at the virtualization of the interrupts to have a fully functional GuestOS. From 2014 in parallel with the work at bhyve I've promoted bhyve in my University and coordinated students to do bhyve-related projects. The current main projects I'm coordinating are: - save/restore feature for x86_64 bhyve and porting bhyve to ARM architecture.
|
11:00 - 11:45 |
P08A: Improving netdump hardware support and performance with iflib
Sam Gwydir (sam@samgwydir.com)
- Abstract
Kernel coredumps over the network are useful for debugging embedded machines, disk driver and machines with large amounts of RAM relative to swap partitton size. There has been a netdump patch for FreeBSD since the early 2000s. iflib was introduced in the fall of 2017 providing a standarized set of functions for network driver implementation. iflib currently supports most In- tel drivers and Broadcom NetExtreme Family cards, with vtnet support and more planned. Porting netdump to iflib gives all drivers that iflib support netdump support. Improving the netdump facility by generalizing it’s driver support with iflib will ease supporting new hardware. Modern network cards can transmit at 10, 40, or 100 Gbps. The ability of the netdump server to receive core dumps is variable based on traffic on that network inter- face, especially when handiling multiple dump stream at once. Improving core dump performance on >= 10G net- work cards is a question of solving the congestion control problem in netdumpd, and the netdump client, which is similar to an embedded environment without iterrupts or dynamic memory allocation.
- Speaker
Sam Gwydir is an engineer at Joyent, Inc. There he works on their cloud platform,. A FreeBSD user since 9.0, Sam was previously been a systems engineer at Groupon.
|
P08B: FreeBSD VirtIO devices on ARM systems
Darius Mihai (dariusmihaim@gmail.com)
- Abstract
As ARM-based processors achieve better per-watt performance compared to the more complicated x86-based CPUs, while also being powerful enough to complete some of the most demanding tasks, servers created with ARM processors at their core become increasingly viable. Server systems usually rely on virtualization technology for resource management and component isolation. Depending on application type, the guest may need large amounts of data to be transferred to, and from, the virtual machine through the host. However, the limited amount of computational resources means that their superfluous use will reduce performance. Consequently, creating communication mechanisms between guest and host with as little overhead as possible is a must. VirtIO devices are a solution to this problem, reducing data transfer overhead by employing paravirtualization techniques.
- Speaker
My name is Darius Mihai. I am a first year Master's student at University POLITEHNICA of Bucharest in the field of Security of Complex Networks. I began my work on FreeBSD virtualization on ARM systems in March 2017 as part of my Bachelor Diploma project, when I worked on debugging a faulty implementation of caches in virtual machines and the virtual machine power-off mechanism. I began work on the current project (porting the VirtIO devices to bhyve on ARM) in August 2017. Besides the somewhat obvious interests in operating systems and security, I love video games and tinkering with code for fun (in C).
|
12:00 - 13:30 |
Lunch |
13:30 - 15:00 |
Keynote K01: Linux rumpkernel: yet another virtualization with a librarified kernel
Hajime Tazaki (tazaki@iij.ad.jp)
- Abstract
- Speaker
Hajime Tazaki is a Senior Researcher at IIJ research laboratory, Japan since 2016, working on network architecture stuff from protocol design, analysis to implementation and deployment (hopefully :-). He obtained his PhD from Keio University in 2011 for mobile network architecture. His main interests are the Internet, especially freeform networks, mobile network architectures, ad hoc networks, network experimental stuffs, and distributed systems.
|
15:00 - 15:30 |
Break |
15:30 - 16:15 |
P09A: Introducing FreeBSD VPC
Sean Chittenden (sean@chittenden.org)
- Abstract
FreeBSD's use in virtualization workloads has been hampered by its lack of Virtual Private Cloud ("VPC") functionality. While the bhyve(4) hypervisor has proven to be robust and performant Hardware Virtual Machine ("HVM"), it has lacked the necessary companion networking stack in order to be used as a first-class hypervisor for cloud computing workloads. The FreeBSD vpc(4) subsystem was designed to augment the capabilities of bhyve(4) in order to support the demands of cloud workloads. After experimentation and extending with the existing network interfaces (e.g. bridge(4), tap(4), ptnetmap(9)), it became clear that it would be necessary to implement a new networking subsystem custom built for virtualization workloadschange course. We settled on implementing vpc(4) by extending the iflib(9) framework, a generalized NIC interface in the FreeBSD kernel. Using iflib(9) we created a suite of network services that allow FreeBSD to be used as a performant and flexible hypervisor for cloud workloads. Depending on the configuration and policies, it is also possible to use vpc(4) for desktop applications, too. We outline the intial performance achieved, both with ptnetmap(9) and iflib(9), the list of services in vpc(4), and how to deploy a cloud environment.
- Speaker
Sean Chittenden is a pluralist infrastructure engineer. He is a long-time participant of the FreeBSD and PostgreSQL communities with over 15+ years experience at building and managing data center applications. Sean tick-tocks back-and-forth between operations and engineering roles. At Groupon Sean helped design and build Groupon's internal Database-as-a-Service. More recently Sean worked at HashiCorp and is currently at Joyent where he is working to meet the needs of Samsung-scale computing.
|
P09B: FreeBSD Save & Restore feature for bhyve for AMD CPUs
Maria-Elena Mihailescu (elenamihailescu22@gmail.com)
- Abstract
Virtualization is one of the most powerful concepts of today's technology and virtual machine migration becomes a common operation in online service management. To do that, we need a state save and restore mechanism implemented in the hypervisor we use. VMware, VirtualBox or Hyper-V have such features already implemented for their products. Bhyve, FreeBSD's own hypervisor, does not have this kind of feature implemented yet, although it is necessary. An ongoing project at the University POLITEHNICA of Bucharest is implementing this feature for bhyve. This paper presents two contributions to the Save & Restore Project. The first one is related to the process of saving and restoring a virtual machine's device structures such as VATPIC, VATPIT, VRTC, VPMTMR. The second one presents the way the save and restore feature is implemented for virtual machines which run on AMD CPUs.
- Speaker
My name is Maria-Elena Mihailescu. I am currently pursuing a Master's degree in Security of Complex Network at The Faculty of Automatic Control and Computer Science, University POLITEHNICA of Bucharest. My domain of interests includes operating systems internals and computer security. I have started working on FreeBSD virtualization in September 2017 when I began implementing a Save and Restore feature for bhyve for AMD CPUs.
|
16:15 - 17:00 |
Work-in-Progress Session |
17:00 - 17:00 |
Closing |