67 lines
1.7 KiB
Python
Raw Normal View History

2013-12-21 17:42:33 -07:00
#
# Copyright (C) 2013 GNS3 Technologies Inc.
#
# This program 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 3 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, see <http://www.gnu.org/licenses/>.
"""
Interface for TAP NIOs (UNIX based OSes only).
"""
2015-02-09 18:24:13 -07:00
import asyncio
import uuid
2013-12-21 17:42:33 -07:00
from .nio import NIO
import logging
2021-04-13 18:46:50 +09:30
log = logging.getLogger(__name__)
2013-12-21 17:42:33 -07:00
2015-02-11 19:21:34 -07:00
class NIOTAP(NIO):
2015-02-13 14:43:28 +01:00
2013-12-21 17:42:33 -07:00
"""
Dynamips TAP NIO.
2014-02-27 21:50:46 -07:00
:param hypervisor: Dynamips hypervisor instance
2013-12-21 17:42:33 -07:00
:param tap_device: TAP device name (e.g. tap0)
"""
def __init__(self, hypervisor, tap_device):
# create an unique name
2021-04-13 18:46:50 +09:30
name = f"tap-{uuid.uuid4()}"
2013-12-21 17:42:33 -07:00
self._tap_device = tap_device
2015-04-08 11:17:34 -06:00
super().__init__(name, hypervisor)
2013-12-21 17:42:33 -07:00
async def create(self):
2015-02-09 18:24:13 -07:00
2021-04-13 18:37:58 +09:30
await self._hypervisor.send(f"nio create_tap {self._name} {self._tap_device}")
log.info(f"NIO TAP {self._name} created with device {self._tap_device}")
2015-02-09 18:24:13 -07:00
2013-12-21 17:42:33 -07:00
@property
def tap_device(self):
"""
Returns the TAP device used by this NIO.
:returns: the TAP device name
"""
return self._tap_device
2015-02-13 15:11:14 -07:00
2021-04-17 23:34:28 +09:30
def asdict(self):
2015-02-13 15:11:14 -07:00
2021-04-17 18:36:32 +09:30
return {
"type": "nio_tap",
"tap_device": self._tap_device
}