-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganized file schema for the Ethernet protocol
- Loading branch information
Showing
25 changed files
with
145 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"python.analysis.extraPaths": [ | ||
"./pytcp" | ||
"./" | ||
], | ||
"python.formatting.provider": "none", | ||
"[python]": { | ||
"editor.defaultFormatter": "mikoz.black-py" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
#!/usr/bin/env python3 | ||
|
||
############################################################################ | ||
# # | ||
# PyTCP - Python TCP/IP stack # | ||
# Copyright (C) 2020-present Sebastian Majewski # | ||
# # | ||
# 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 <https://www.gnu.org/licenses/>. # | ||
# # | ||
# Author's email: [email protected] # | ||
# Github repository: https://github.com/ccie18643/PyTCP # | ||
# # | ||
############################################################################ | ||
|
||
|
||
""" | ||
Module contains packet structure information for the Ethernet protccol. | ||
pytcp/protocols/ethernet/base.py | ||
ver 2.9 | ||
""" | ||
|
||
|
||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING, TypeAlias, override | ||
|
||
from pytcp.lib.proto import Proto | ||
from pytcp.protocols.ethernet.header import EthernetHeaderProperties | ||
|
||
if TYPE_CHECKING: | ||
from pytcp.protocols.arp.assembler import ArpAssembler | ||
from pytcp.protocols.ethernet.header import EthernetHeader | ||
from pytcp.protocols.ip4.fpa import Ip4Assembler, Ip4FragAssembler | ||
from pytcp.protocols.ip6.fpa import Ip6Assembler | ||
from pytcp.protocols.raw.fpa import RawAssembler | ||
|
||
EthernetPayload: TypeAlias = ( | ||
ArpAssembler | ||
| Ip4Assembler | ||
| Ip4FragAssembler | ||
| Ip6Assembler | ||
| RawAssembler | ||
) | ||
|
||
|
||
class Ethernet(Proto, EthernetHeaderProperties): | ||
""" | ||
Base class for Ethernet packet parser and assembler. | ||
""" | ||
|
||
_header: EthernetHeader | ||
|
||
@override | ||
def __str__(self) -> str: | ||
""" | ||
Get the packet log string. | ||
""" | ||
|
||
return ( | ||
f"ETHER {self._header.src} > {self._header.dst}, " | ||
f"0x{int(self._header.type):0>4x} " | ||
f"({self._header.type}), plen {len(self)}" | ||
) | ||
|
||
@override | ||
def __repr__(self) -> str: | ||
""" | ||
Get the packet representation string. | ||
""" | ||
|
||
return f"{self.__class__.__name__}({self._header})" | ||
|
||
@override | ||
def __bytes__(self) -> bytes: | ||
""" | ||
Get the packet in raw form. | ||
""" | ||
|
||
return bytes(self._header) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.