Virtio: Towards a De-Facto Standard for Virtual I/O Devices

Total Page:16

File Type:pdf, Size:1020Kb

Virtio: Towards a De-Facto Standard for Virtual I/O Devices virtio: Towards a De-Facto Standard For Virtual I/O Devices Rusty Russell IBM OzLabs 8 Brisbane Ave Canberra, Australia [email protected] ABSTRACT The Linux kernel has been ported to a huge number of plat- The Linux Kernel currently supports at least 8 distinct vir- forms; the official kernel tree contains 24 separate architec- tualization systems: Xen, KVM, VMware’s VMI, IBM’s Sys- ture directories and almost 2 million lines of architecture- tem p, IBM’s System z, User Mode Linux, lguest and IBM’s specific code out of 8.4 million. Most of these architectures legacy iSeries. It seems likely that more such systems will contain support for multiple platform variants. Unfortu- appear, and until recently each of these had its own block, nately we are aware of only one platform which has been network, console and other drivers with varying features and deleted from the tree (as the last machine of its kind was optimizations. destroyed) while new hardware variants sprout like weeds after a rain. With around 10,000 lines changing every day, The attempt to address this is virtio: a series of efficient, the kernel has at least one of everything you can imagine. well-maintained Linux drivers which can be adapted for vari- ous different hypervisor implementations using a shim layer. When we look at Linux as a guest under virtualization, we This includes a simple extensible feature mechanism for each are particularly blessed: IBM’s System p, System z and driver. We also provide an obvious ring buffer transport im- legacy iSeries are all supported. User Mode Linux[4] has plementation called vring, which is currently used by KVM long been included, for running Linux as a userspace process and lguest. This has the subtle effect of providing a path on Power, IA64 and 32 and 64 bit x86 machines. In the last of least resistance for any new hypervisors: supporting this two years the x86 architecture has proven particularly fe- efficient transport mechanism will immediately reduce the cund, with support for Xen[2] from XenSource, VMI[1] from amount of work which needs to be done. Finally, we pro- VMware and KVM[5] from Qumranet. Last and least, we vide an implementation which presents the vring transport should mention my own contribution to this mess, lguest[7]: and device configuration as a PCI device: this means guest a toy hypervisor which is useful for development and teach- operating systems merely need a new PCI driver, and hy- ing and snuck quietly into the tree last year. pervisors need only add vring support to the virtual devices they implement (currently only KVM does this). Each of these eight platforms want their own block, net- work and console drivers, and sometimes a boutique frame- This paper will describe the virtio API layer as implemented buffer, USB controller, host filesystem and virtual kitchen in Linux, then the vring implementation, and finally its em- sink controller. Few of them have optimized their drivers in bodiment in a PCI device for simple adoption on otherwise any significant way, and offer overlapping but often slightly fully-virtualized guests. We’ll wrap up with some of the pre- different sets of features. Importantly, no-one seems par- liminary work to integrate this I/O mechanism deeper into ticularly delighted with their drivers, or having to maintain the Linux host kernel. them. General Terms This question became particularly pertinent as the KVM Virtio, vring, virtio pci project, which garnered much attention when it burst onto the Linux scene in late 2006, did not yet have a paravirtual Keywords device model. The performance limitations of emulating de- vices were becoming clear[6], and yet the prospect of either Virtualization, I/O, ring buffer, Linux, KVM, lguest adopting the very-Xen-centric driver model was almost as unappealing as developing Yet Another driver model. Hav- 1. INTRODUCTION ing worked on the Xen device model, we believe it possible to create a general virtual I/O mechanism which is efficient[14], works on multiple hypervisors and platforms, and atones for Rusty’s involvement with the Xen device configuration sys- tem. 2. VIRTIO: THE THREE GOALS Our initial goal of driver unification is fairly straight-forward: all the work is inside the Linux kernel so there’s no need for any buy-in by other parties. If developers of boutique vir- The second part is the configuration space: this is effec- tual I/O mechanisms are familiar with Linux, it might guide tively a structure associated with the virtual device contain- them to map the Linux API neatly onto their own ABI. But ing device-specific information. This can be both read and “if” and “might” are insufficient: We can be more ambitious written by the guest. For example, network devices have a than this. VIRTIO_NET_F_MAC feature bit, which indicates that the host wants the device to have a particular MAC address, and the Experience has shown that boutique transport mechanisms configuration space contains the value. tend to be particular not only to a given hypervisor and ar- chitecture, but often to each particular kind of device. So These mechanisms give us room to grow in future, and for the next obvious step in our attempt to guide towards uni- hosts to add features to devices with the only requirement formity is to provide a common ABI for general publication being that the feature bit numbers and configuration space and use of buffers. Deliberately, our virtio ring implemen- layout be agreed upon. tation is not at all revolutionary: developers should look at this code and see nothing to dislike. There are also operations to set and get an 8 bit device status word which the guest uses to indicate the status of Finally, we provide a two complete ABI implementations, device probe; when the VIRTIO_CONFIG_S_DRIVER_OK is set, using the virtio ring infrastructure and the Linux API for it shows that the guest driver has completed feature probing. virtual I/O devices. These implement the final part of vir- At this point the host knows what features it understands tual I/O: device probing and configuration. Importantly, and wants to use. they demonstrate how simple it is to use the Linux virtual I/O API to provide feature negotiation in a forward and Finally, the reset operation is expected to reset the device, backward compatible manner so that future Linux driver its configuration and status bits. This is necessary for mod- features can be detected and used by any host implementa- ular drivers which may be removed and then re-added, thus tion. encountering a previously initialized device. It also avoids the problem of removing buffers from a device on driver The explicit separation of drivers, transport and configura- shutdown: after reset the buffers can be freed in the sure tion represents a change in thinking from current implemen- knowledge that the device won’t overwrite them. It could tations. For example, you can’t really use the Xen’s Linux also be used to attempt driver recovery in the guest. network driver in a new hypervisor unless you support Xen- Bus probing and configuration system. 3.1 Virtqueues: A Transport Abstraction Our configuration API is important, but the performance- critical part of the API is the actual I/O mechanism. Our 3. VIRTIO: A LINUX-INTERNAL ABSTRAC- abstraction for this is a virtqueue: the configuration oper- TION API ations have a find_vq which returns a populated structure If we want to reduce duplication in virtual device drivers, for the queue, given the virtio device and an index number. we need a decent abstraction so drivers can share code. One Some devices have only one queue, such as the virtio block method is to provide a set of common helpers which virtual device, but others such as networking and console devices drivers can use, but more ambitious is to use common drivers have a queue for input and one for output. and an operations structure: a series of function pointers which are handed to the generic driver to interface with any A virtqueue is simply a queue into which buffers are posted of several transport implementations. The task is to create a by the guest for consumption by the host. Each buffer is transport abstraction for all virtual devices which is simple, a scatter-gather array consisting of readable and writable close to optimal for an efficient transport, and yet allows a parts: the structure of the data is dependent on the device shim to existing transports without undue pain. type. The virtqueue operations structure looks like so: The current result (integrated in 2.6.24) is that virtio drivers struct virtqueue_ops { register themselves to handle a particular 32-bit device type, int (*add_buf)(struct virtqueue *vq, optionally restricting to a specific 32-bit vendor field. The struct scatterlist sg[], driver’s probe function is called when a suitable virtio device unsigned int out_num, is found: the struct virtio_device passed in has a vir- unsigned int in_num, tio_config_ops pointer which the driver uses to unpack the void *data); device configuration. void (*kick)(struct virtqueue *vq); void *(*get_buf)(struct virtqueue *vq, The configuration operations can be divided into four parts: unsigned int *len); reading and writing feature bits, reading and writing the void (*disable_cb)(struct virtqueue *vq); configuration space, reading and writing the status bits and bool (*enable_cb)(struct virtqueue *vq); device reset. The device looks for device-type-specific fea- }; ture bits corresponding to features it wants to use, such as the VIRTIO_NET_F_CSUM feature bit indicating whether a network device supports checksum offload.
Recommended publications
  • Filesystem Hierarchy Standard
    Filesystem Hierarchy Standard LSB Workgroup, The Linux Foundation Filesystem Hierarchy Standard LSB Workgroup, The Linux Foundation Version 3.0 Publication date March 19, 2015 Copyright © 2015 The Linux Foundation Copyright © 1994-2004 Daniel Quinlan Copyright © 2001-2004 Paul 'Rusty' Russell Copyright © 2003-2004 Christopher Yeoh Abstract This standard consists of a set of requirements and guidelines for file and directory placement under UNIX-like operating systems. The guidelines are intended to support interoperability of applications, system administration tools, development tools, and scripts as well as greater uniformity of documentation for these systems. All trademarks and copyrights are owned by their owners, unless specifically noted otherwise. Use of a term in this document should not be regarded as affecting the validity of any trademark or service mark. Permission is granted to make and distribute verbatim copies of this standard provided the copyright and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this standard under the conditions for verbatim copying, provided also that the title page is labeled as modified including a reference to the original standard, provided that information on retrieving the original standard is included, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this standard into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the copyright holder. Dedication This release is dedicated to the memory of Christopher Yeoh, a long-time friend and colleague, and one of the original editors of the FHS.
    [Show full text]
  • Fuss, Futexes and Furwocks: Fast Userlevel Locking in Linux
    Fuss, Futexes and Furwocks: Fast Userlevel Locking in Linux Hubertus Franke Rusty Russell IBM Thomas J. Watson Research Center IBM Linux Technology Center [email protected] [email protected] Matthew Kirkwood [email protected] Abstract makes it now feasible to deploy even more de- manding enterprise applications such as high Fast userlevel locking is an alternative locking end databases, business intelligence software mechanism to the typically heavy weight ker- and application servers. As a result, whole en- nel approaches such as fcntl locking and Sys- terprise business suites and middleware such 2 tem V semaphores. Here, multiple processes as SAP™, Websphere™, Oracle, DB2™ , etc., communicate locking state through shared are now available for Linux. memory regions and atomic operations. Ker- For these enterprise applications to run effi- nel involvement is only necessary when there ciently on Linux, or on any other operating is contention on a lock, in order to perform system for that matter, the OS must provide queueing and scheduling functions. In this pa- the proper abstractions and services. Enter- per we discuss the issues related to user level prise applications and applications suites are locking by following the history of ideas and increasingly built as multi process / multi- the code to the current day. We present the ef- threaded applications. Multi-threaded appli- ficacy of "futexes" through benchmarks, both cations can take better advantage of SMP synthetic and through adaptations to existing hardware, while multiple processes allows for databases. We conclude by presenting the po- higher degrees of fault tolerance, i.e., a single tential future directions of the "futex" inter- process abort does not necessarily bring the en- face.
    [Show full text]
  • Information on Open Source Software When Filling in The
    Information on Open Source Software When filling in the below list, please follow these instructions: - Use a separate sheet for each firmware version. - Mark the firmware version and the product in which the firmware is used on the first side. - It is of utmost importance that the list includes all Open Source software contained in the firmware. - Specify the precise name of the software including its version number (Example: Siproxd – SIP proxy/masquerading daemon Version: 0.5.10). - Specify the license under which the software is released including (if applicable) its version (Example: General Public License Version 2 or BSD-3 clause license). - If available, add any information on copyright notice or eventual remarks. Firmware and version: AT904L-03.18 Product: AT904L Software and version number License and License Version Copyright notice / remarks Encode and Decode base64 files Public domain John Walker 1.5 bridge-utils 1.4 General Public License Version 2 Lennert Buytenhek BusyBox 1.16.2 General Public License Version 2 Peter Willis, Emanuele Aina, Erik Andersen, Laurence Anderson, Jeff Angielski, Enrik Berkhan, Jim Bauer, Edward Betts, John Beppu, David Brownell, Brian Candler, Randolph Chung, Dave Cinege, Jordan Crouse, Magnus Damm, Larry Doolittle, Glenn Engel, Gen- nady Feldman, Robert Griebl, Karl M. Hegbloom, Daniel Jacobowitz, Matt Kraai, Rob Landley, Stephan Linz, John Lombardo, Glenn Mc- Grath, Manuel Novoa III, Vladimir Oleynik, Bruce Perens, Rodney Radford, Tim Riker, Kent Robotti, Chip Rosenthal, Pavel Roskin, Gyepi Sam, Rob Sullivan, Linus Torvalds, Mark Whitley, Charles P. Wright, Enrique Zanardi, Tito Ra- gusa, Paul Fox, Roberto A. Fogli- etta, Bernhard Reutner-Fischer, Mike Frysinger, Jie Zhang Mac 802.11 2011-04-19 General Public License Version 2 Luis R.
    [Show full text]
  • (C) 1995 Microsoft Corporation. All Rights Reserved
    (c) 1995 Microsoft Corporation. All rights reserved. Developed by ActiveWare Internet Corp., http://www.ActiveWare.com (C) 2000-2002 by the netfilter coreteam <[email protected]>: Paul 'Rusty' Russell <[email protected]> Marc Boucher <[email protected]> James Morris <[email protected]> Harald Welte <[email protected]> Jozsef Kadlecsik <[email protected]> (c) 2002-2008 Erik de Castro Lopo" ; src_get_version */ (c) 2003, 2004 Phil Blundell <[email protected]> (c) 2004 Mihnea Stoenescu, under the same license: (c) 2009-2013 Zoltan Herczeg All rights reserved. (C) 2016 Panasonic System Networks Co., Ltd. (c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under (c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under i) the Original License or ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed. Distribution of Compiled Forms of the Standard Version or Modified Versions without the Source (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses.
    [Show full text]
  • Fault Injection Test Harness a Tool for Validating Driver Robustness
    Fault Injection Test Harness a tool for validating driver robustness Louis Zhuang Stanley Wang Intel Corp. Intel Corp. [email protected], [email protected] [email protected] Kevin Gao Intel Corp. [email protected] Abstract 1 Introduction FITH (Fault Injection Test Harness) is a tool High-availability (HA) systems must respond for validating driver robustness. Without gracefully to fault conditions and remain oper- changing existing code, it can intercept arbi- ational during unexpected software and hard- trary MMIO/PIO access and IRQ handler in ware failures. Each layer of the software stack driver. of a HA system must be fault tolerant, produc- ing acceptable output or results when encoun- Firstly I’ll first list the requirements and design tering system, software or hardware faults, in- for Fault Injection. Next, we discuss a cou- cluding faults that theoretically should not oc- ple of new generally useful implementation in cur. An empirical study [2] shows that 60- FITH 70% of kernel space defects can be attributed to device driver software. Some defect con- 1. KMMIO - the ability to dynamically hook ditions (such as hardware failure, system re- into arbitrary MMIO operations. source shortages, and so forth) seldom hap- pen, however, it is difficult to simulate and reproduce without special assistant hardware, 2. KIRQ - the ability to hook into an arbi- such as an In-Circuit Emulator. In these situa- trary IRQ handler, tions, it is difficult to predict what would hap- pen should such a fault occur at some time in the future. Consequently, device drivers that Then I’ll demonstrate how the FITH can help are highly available or hardened are designed developers to trace and identify tricky issues to minimize the impact of failures to a system’s in their driver.
    [Show full text]
  • Université De Montréal Low-Impact Operating
    UNIVERSITE´ DE MONTREAL´ LOW-IMPACT OPERATING SYSTEM TRACING MATHIEU DESNOYERS DEPARTEMENT´ DE GENIE´ INFORMATIQUE ET GENIE´ LOGICIEL ECOLE´ POLYTECHNIQUE DE MONTREAL´ THESE` PRESENT´ EE´ EN VUE DE L’OBTENTION DU DIPLOMEˆ DE PHILOSOPHIÆ DOCTOR (Ph.D.) (GENIE´ INFORMATIQUE) DECEMBRE´ 2009 c Mathieu Desnoyers, 2009. UNIVERSITE´ DE MONTREAL´ ECOL´ E POLYTECHNIQUE DE MONTREAL´ Cette th`ese intitul´ee : LOW-IMPACT OPERATING SYSTEM TRACING pr´esent´ee par : DESNOYERS Mathieu en vue de l’obtention du diplˆome de : Philosophiæ Doctor a ´et´edˆument accept´ee par le jury constitu´ede : Mme. BOUCHENEB Hanifa, Doctorat, pr´esidente M. DAGENAIS Michel, Ph.D., membre et directeur de recherche M. BOYER Fran¸cois-Raymond, Ph.D., membre M. STUMM Michael, Ph.D., membre iii I dedicate this thesis to my family, to my friends, who help me keeping balance between the joy of sharing my work, my quest for knowledge and life. Je d´edie cette th`ese `ama famille, `ames amis, qui m’aident `aconserver l’´equilibre entre la joie de partager mon travail, ma quˆete de connaissance et la vie. iv Acknowledgements I would like to thank Michel Dagenais, my advisor, for believing in my poten- tial and letting me explore the field of operating systems since the beginning of my undergraduate studies. I would also like to thank my mentors, Robert Wisniewski from IBM Research and Martin Bligh, from Google, who have been guiding me through the internships I have done in the industry. I keep a good memory of these experiences and am honored to have worked with them. A special thanks to Paul E.
    [Show full text]
  • Linux IPCHAINS-HOWTO
    Linux IPCHAINS−HOWTO Linux IPCHAINS−HOWTO Table of Contents Linux IPCHAINS−HOWTO..............................................................................................................................1 Rusty Russell...........................................................................................................................................1 1.Introduction...........................................................................................................................................1 2.Packet Filtering Basics..........................................................................................................................1 3.I'm confused! Routing, masquerading, portforwarding, ipautofw.......................................................1 4.IP Firewalling Chains...........................................................................................................................1 5.Miscellaneous.......................................................................................................................................2 6.Common Problems...............................................................................................................................2 7.A Serious Example...............................................................................................................................2 8.Appendix: Differences between ipchains and ipfwadm.......................................................................2 9.Appendix: Using the ipfwadm−wrapper script.....................................................................................3
    [Show full text]
  • Unreliable Guide to Locking
    Unreliable Guide To Locking Paul Rusty Russell [email protected] Unreliable Guide To Locking by Paul Rusty Russell Copyright © 2000 by Paul Russell This documentation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA For more details see the file COPYING in the source distribution of Linux. Table of Contents 1. Introduction............................................................................................................................................5 The Problem With Concurrency ........................................................................................................5 2. Two Main Types of Kernel Locks: Spinlocks and Semaphores.........................................................7 Locks and Uniprocessor Kernels .......................................................................................................7 Read/Write Lock Variants..................................................................................................................7
    [Show full text]
  • Virtio PCI Card Specification V0.9.5 DRAFT
    Virtio PCI Card Specication v0.9.5 DRAFT - Rusty Russell <[email protected]> IBM Corporation (Editor) 2012 May 7. Chapter 1 Purpose and Description This document describes the specications of the virtio family of PCI de- vices. These are devices are found in virtual environments, yet by design they are not all that dierent from physical PCI devices, and this document treats them as such. This allows the guest to use standard PCI drivers and discovery mechanisms. The purpose of virtio and this specication is that virtual environments and guests should have a straightforward, ecient, standard and extensible mecha- nism for virtual devices, rather than boutique per-environment or per-OS mech- anisms. Straightforward: Virtio PCI devices use normal PCI mechanisms of inter- rupts and DMA which should be familiar to any device driver author. There is no exotic page-ipping or COW mechanism: it's just a PCI de- vice.1 Ecient: Virtio PCI devices consist of rings of descriptors for input and out- put, which are neatly separated to avoid cache eects from both guest and device writing to the same cache lines. Standard: Virtio PCI makes no assumptions about the environment in which it operates, beyond supporting PCI. In fact the virtio devices specied in the appendices do not require PCI at all: they have been implemented on non-PCI buses.2 1This lack of page-sharing implies that the implementation of the device (e.g. the hyper- visor or host) needs full access to the guest memory. Communication with untrusted parties (i.e. inter-guest communication) requires copying.
    [Show full text]
  • Open Source Software License Information
    Open Source Software license information This document contains an open source software license information for the product VACUU·SELECT. The product VACUU·SELECT contains open source components which are licensed under the applicable open source licenses. The applicable open source licenses are listed below. The open source software licenses are granted by the respective right holders directly. The open source licenses prevail all other license information with regard to the respective open source software components contained in the product. Modifications of our programs which are linked to LGPL libraries are permitted for the customer's own use and reverse engineering for debugging such modifications. However, forwarding the information acquired during reverse engineering or debugging to third parties is prohibited. Furthermore, it is prohibited to distribute modified versions of our programs. In any case, the warranty for the product VACUU·SELECT will expire, as long as the customer cannot prove that the defect would also occur without these modification. WARRANTY DISCLAIMER THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the applicable licenses for more details. Written offer This product VACUU·SELECT contains software components that are licensed by the holder of the rights as free software, or Open Source software, under GNU General Public License, Versions 2 and 3, or GNU Lesser General Public License, Versions 2.1, or GNU Library General Public License, Version 2, respectively. The source code for these software components can be obtained from us on a data carrier (e.g.
    [Show full text]
  • Rusty's Unreliable Guide to Kernel Hacking
    Rusty’s Unreliable Guide To Kernel Hacking Paul ‘Rusty’ Russell IBM Copyright (c) 2002 Paul ‘Rusty’ Russell, IBM. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections being LIST THEIR TITLES, with no Front-Cover Texts, and with no Back-Cover Texts. Revision History Revision 1 Tue Aug 27 2002 The Linux Kernel contains 5 million lines of source. It is difficult to know where to start, when you want to modify it in some way. This tutorial will cover various kernel programming conceps in depth: you will gain an appreciation for the Linux kernel by reading some of the code some of the great programmers, including of Linus Torvalds and Ingo Molnar, and an insight into Linux kernel development methods and politics (this is a preliminary version, the final version for the Congress may still suffer some changes. The Editors). Table of Contents 1. Target Audience ............................................................................... 2 2. Principles ..................................................................................... 2 2.1. The Kernel Tree ........................................................................ 2 2.2. Overview .............................................................................. 3 2.3. Fundamental Constraints ................................................................ 3 2.4. The Three Kernel Entry Points ..........................................................
    [Show full text]
  • Linux Advanced Routing & Traffic Control HOWTO
    Linux Advanced Routing & Traffic Control HOWTO Bert Hubert Netherlabs BV <[email protected]> Gregory Maxwell <[email protected]> Remco van Mook <[email protected]> Martijn van Oosterhout <[email protected]> Paul B Schroeder <[email protected]> Jasper Spaans <[email protected]> Revision History Revision 1.1 2002−07−22 DocBook Edition A very hands−on approach to iproute2, traffic shaping and a bit of netfilter. Linux Advanced Routing & Traffic Control HOWTO Table of Contents Chapter 1. Dedication.........................................................................................................................................1 Chapter 2. Introduction......................................................................................................................................2 2.1. Disclaimer & License.......................................................................................................................2 2.2. Prior knowledge................................................................................................................................2 2.3. What Linux can do for you...............................................................................................................3 2.4. Housekeeping notes..........................................................................................................................3 2.5. Access, CVS & submitting updates..................................................................................................3 2.6. Mailing list........................................................................................................................................4
    [Show full text]