Source code for libioc.BridgeInterface

# Copyright (c) 2017-2019, Stefan Grönke
# Copyright (c) 2014-2018, iocage
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted providing that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
"""ioc host bridge interface module."""
import typing


[docs]class BridgeInterface: """Representation of an ioc host bridge interface.""" name: str secure_vnet: bool insecure: bool SECURE_BRIDGE_PREFIX = ":" def __init__( self, name: str, secure_vnet: typing.Optional[bool]=None ) -> None: """ Initialize a (Secure VNET) bridge interface. Args: name (string): The bridge interface name. secure_vnet (bool): (optional) Secure VNET interfaces are prefixed with a colon. Either this flag can be set to True or the name may begin with `:` to enable this mode. The use of this flag and class property is to toggle the colon notation on output. insecure (bool): (default=False) Disables shlex.quote when returning the bridge name as string. """ if name.startswith(self.SECURE_BRIDGE_PREFIX): self.secure_vnet = True _name = name[len(self.SECURE_BRIDGE_PREFIX):] else: self.secure_vnet = (secure_vnet or (secure_vnet is None)) is False _name = name self.name = _name # may override name set secure_vnet mode if secure_vnet is not None: self.secure_vnet = secure_vnet def __str__(self) -> str: """ Return the internal interface name string. It begins with a colon when an additional virtual bridge interface is used to mitigate ARP spoofing with IPFW. """ if self.secure_vnet is True: return f"{self.SECURE_BRIDGE_PREFIX}{self.name}" else: return self.name