Construct (Python library)
Construct is a Python library for the construction and deconstruction of data structures in a declarative fashion. In this context, construction, or building, refers to the process of converting (serializing) a programmatic object into a binary representation.
Deconstruction, or parsing, refers to the opposite process of converting (deserializing) binary data into a programmatic object. Being declarative means that user code defines the data structure, instead of the convention of writing procedural code to accomplish the goal. Construct can work seamlessly with bit- and byte-level data granularity and various byte-ordering.
Benefits
Using declarative code has many benefits. For example, the same code that can parse can also build (symmetrical), debugging and testing are much simpler (provable to some extent), creating new constructs is easy (wrapping components), and many more.[citation needed] If one is familiar with the C (programming language), one can think of constructs as casting from char * to struct foo * and vice versa, rather than writing code that unpacks the data.
Example
The following example show how a TCP/IP protocol stack might be defined using Construct. Some code is omitted for brevity and simplicity. Also note that the following code is just Python code that creates objects.
First, the Ethernet header (layer 2):
ethernet = Struct(
"destination" / Bytes(6),
"source" / Bytes(6),
"type" / Enum(Int16ub,
IPv4=0x0800,
ARP=0x0806,
RARP=0x8035,
X25=0x0805,
IPX=0x8137,
IPv6=0x86DD,
),
)
Next, the IP header (layer 3):
ip = Struct(
"header" / BitStruct(
"version" / Const(Nibble, 4),
"header_length" / Nibble,
),
"tos" / BitStruct(
"precedence" / Bytes(3),
"minimize_delay" / Flag,
"high_throuput" / Flag,
"high_reliability" / Flag,
"minimize_cost" / Flag,
Padding(1),
),
"total_length" / Int16ub,
# ...
)
And finally, the TCP header (layer 4):
tcp = Struct(
"source" / Int16ub,
"destination" / Int16ub,
"seq" / Int32ub,
"ack" / Int32ub,
# ...
)
Now define the hierarchy of the protocol stack. The following code "binds" each pair of adjacent protocols into a separate unit. Each such unit will "select" the proper next layer based on its contained protocol.
layer4tcp = Struct(
tcp,
# ... payload
)
layer3ip = Struct(
ip,
"next" / Switch(this.protocol,
{
"TCP" : layer4tcp,
}
),
)
layer2ethernet = Struct(
ethernet,
"next" / Switch(this.type,
{
"IP" : layer3ip,
}
),
)
At this point, the code can parse captured TCP/IP frames into "packet" objects and build these packet objects back into binary representation.
tcpip_stack = layer2ethernet
packet = tcpip_stack.parse(b"...raw captured packet...")
raw_data = tcpip_stack.build(packet)
Ports and spin-offs
Perl
Data::ParseBinary[1] is a CPAN module that originated as a port of Construct to the Perl programming language. (see its main POD document for its inspiration). Since the initial version, some parts of the original API have been deprecated.
Java
A port to Java is available on GitHub.[2] Examples in Java, the Ethernet header (layer 2):
Construct ethernet_header = Struct("ethernet_header",
MacAddress("destination"),
MacAddress("source"),
Enum(UBInt16("type"),
"IPv4", 0x0800,
"ARP", 0x0806,
"RARP", 0x8035,
"X25", 0x0805,
"IPX", 0x8137,
"IPv6", 0x86DD,
"_default_", Pass
));
See also
References
- ^ "Data::ParseBinary - Yet Another parser for binary structures - metacpan.org". metacpan.org. Retrieved 2023-08-29.
- ^ Ziglioli, Emanuele (2022-12-29), ZiglioUK/construct, retrieved 2023-08-29
External links
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.