Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
Tenjin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nawasan Wisitsingkhon
Tenjin
Commits
2c3f7f20
Commit
2c3f7f20
authored
Apr 16, 2024
by
Nawasan Wisitsingkhon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save state
parent
9de005e8
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
762 additions
and
398 deletions
+762
-398
.gitignore
.gitignore
+1
-1
Cargo.toml
Cargo.toml
+15
-14
LICENSE
LICENSE
+201
-201
README.md
README.md
+10
-9
ether_type.rs
src/etherparser/ether_type.rs
+15
-0
ethernet.rs
src/etherparser/ethernet.rs
+60
-0
mod.rs
src/etherparser/mod.rs
+9
-0
arp.rs
src/etherparser/packet/arp.rs
+0
-0
icmp.rs
src/etherparser/packet/icmp.rs
+31
-0
ipv4.rs
src/etherparser/packet/ipv4.rs
+108
-0
mod.rs
src/etherparser/packet/mod.rs
+11
-0
tcp.rs
src/etherparser/packet/tcp.rs
+78
-0
udp.rs
src/etherparser/packet/udp.rs
+31
-0
bits.rs
src/etherparser/tools/bits.rs
+3
-0
mod.rs
src/etherparser/tools/mod.rs
+2
-0
lib.rs
src/lib.rs
+4
-2
main.rs
src/main.rs
+65
-64
controller.rs
src/openflow/controller.rs
+50
-39
header.rs
src/openflow/header.rs
+45
-45
message.rs
src/openflow/message.rs
+15
-15
mod.rs
src/openflow/mod.rs
+8
-8
No files found.
.gitignore
View file @
2c3f7f20
/target
/target
Cargo.toml
View file @
2c3f7f20
[package]
name
=
"tenjin"
version
=
"0.1.0"
edition
=
"2021"
[lib]
name
=
"tenjin"
path
=
"src/lib.rs"
[[bin]]
name
=
"tenjin"
path
=
"src/main.rs"
[dependencies]
[package]
name
=
"tenjin"
version
=
"0.1.0"
edition
=
"2021"
[lib]
name
=
"tenjin"
path
=
"src/lib.rs"
[[bin]]
name
=
"tenjin"
path
=
"src/main.rs"
[dependencies]
byteorder
=
"1.0.0"
\ No newline at end of file
LICENSE
View file @
2c3f7f20
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
README.md
View file @
2c3f7f20
# Tenjin SDN
## Goals
To understand The software-defined networking well, I trying to create a simple SDN with Rust language to support Openflow 1.0 first and 1.3 later.
## TODOs
-
[
]
design structure of code and working.
# Tenjin SDN
## Goals
To understand The software-defined networking well, I trying to create a simple SDN with Rust language to support Openflow 1.0 first and 1.3 later.
## TODOs
-
[
]
design structure of code and working.
-
[
]
write more description in README.
\ No newline at end of file
src/etherparser/ether_type.rs
0 → 100644
View file @
2c3f7f20
pub
enum
EtherType
{
IP
=
0x0800
,
ARP
=
0x0806
,
TEB
=
0x6558
,
VLAN
=
0x8100
,
IPV6
=
0x86dd
,
SLOW
=
0x8809
,
MPLS
=
0x8847
,
SVLAN
=
0x88a8
,
LLDP
=
0x88cc
,
PBB
=
0x88e7
,
IEEE802_3
=
0x05dc
,
CFM
=
0x8902
,
NSH
=
0x894f
,
}
src/etherparser/ethernet.rs
0 → 100644
View file @
2c3f7f20
use
crate
::
etherparser
::
ether_type
::
EtherType
;
use
std
::
io
::{
BufRead
,
Cursor
};
use
byteorder
::{
BigEndian
,
ReadBytesExt
};
use
super
::
packet
::
IP
;
struct
EthernetFrame
{
mac_des
:
u64
,
mac_src
:
u64
,
vlan
:
Option
<
u16
>
,
vlan_pcp
:
u8
,
valn_dei
:
bool
,
vlan_vid
:
u16
,
}
impl
EthernetFrame
{
fn
parse
(
payload
:
&
Vec
<
u8
>
)
{
let
mut
bytes
=
Cursor
::
new
(
*
payload
);
let
mut
mac_des
=
vec!
[
0u8
;
6
];
let
mut
mac_src
=
vec!
[
0u8
;
6
];
for
i
in
0
..
6
{
mac_des
[
i
]
=
bytes
.read_u8
()
.unwrap
();
}
for
i
in
0
..
6
{
mac_src
[
i
]
=
bytes
.read_u8
()
.unwrap
();
}
// check 802.1q tag tpid
let
typ
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
(
pcp
,
dei
,
vid
,
typ
)
=
match
typ
{
tp
if
tp
==
EtherType
::
VLAN
as
u16
=>
{
let
tci
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
pcp
=
tci
>>
13
;
let
dei
=
(
tci
&
0x1000
)
>
0
;
let
vid
=
tci
&
0xfff
;
(
pcp
as
u8
,
dei
,
Some
(
vid
),
typ
)
}
_
=>
(
0x0
,
false
,
None
,
typ
),
};
let
ip_header
=
match
typ
{
tp
if
tp
==
EtherType
::
IP
as
u16
=>
{
let
ip
=
IP
::
parse
(
&
mut
bytes
);
if
ip
.is_some
()
{
Network
::
IP
(
ip
.unwrap
())
}
else
{
Network
::
Unparsable
(
typ
,
bytes
.fill_buf
()
.unwrap
()
.to_vec
())
}
}
// tp if tp == (EtherType::ARP as u16) => {
// }
_
=>
Network
::
Unparsable
(
typ
,
bytes
.fill_buf
()
.unwrap
()
.to_vec
()),
};
}
}
pub
enum
Network
{
IP
(
IP
),
Unparsable
(
u16
,
Vec
<
u8
>
),
}
src/etherparser/mod.rs
0 → 100644
View file @
2c3f7f20
pub
mod
ether_type
;
pub
mod
ethernet
;
pub
mod
packet
;
pub
mod
tools
;
\ No newline at end of file
src/etherparser/packet/arp.rs
0 → 100644
View file @
2c3f7f20
src/etherparser/packet/icmp.rs
0 → 100644
View file @
2c3f7f20
use
std
::
io
::{
BufRead
,
Cursor
};
use
byteorder
::{
BigEndian
,
ReadBytesExt
};
pub
struct
ICMP
{
pub
typ
:
u8
,
pub
code
:
u8
,
pub
checksum
:
u16
,
pub
payload
:
Vec
<
u8
>
,
}
impl
ICMP
{
pub
fn
size_of
()
->
usize
{
4
}
pub
fn
parse
(
bytes
:
&
mut
Cursor
<
Vec
<
u8
>>
)
->
Option
<
ICMP
>
{
if
bytes
.get_ref
()
.len
()
<
4
{
return
None
;
}
let
typ
=
bytes
.read_u8
()
.unwrap
();
let
code
=
bytes
.read_u8
()
.unwrap
();
let
checksum
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
payload
=
bytes
.fill_buf
()
.unwrap
()
.to_vec
();
Some
(
ICMP
{
typ
,
code
,
checksum
,
payload
,
})
}
}
src/etherparser/packet/ipv4.rs
0 → 100644
View file @
2c3f7f20
use
super
::{
tcp
::
TCP
,
udp
::
UDP
,
ICMP
};
use
byteorder
::{
BigEndian
,
ReadBytesExt
};
use
std
::
io
::{
BufRead
,
Cursor
,
Read
};
struct
Flags
{
dont_flagment
:
bool
,
more_fragments
:
bool
,
}
pub
struct
IP
{
pub
version
:
u8
,
pub
ihl
:
u8
,
pub
tos
:
u8
,
pub
length
:
u16
,
pub
ident
:
u16
,
pub
flags
:
Flags
,
pub
fragment
:
u16
,
pub
ttl
:
u8
,
pub
protocol
:
u8
,
pub
checksum
:
u16
,
pub
src
:
u32
,
pub
des
:
u32
,
pub
options
:
Vec
<
u8
>
,
}
pub
enum
IpProtocol
{
ICMP
=
0x01
,
TCP
=
0x06
,
UDP
=
0x11
,
}
impl
IP
{
pub
fn
parse
(
bytes
:
&
mut
Cursor
<
Vec
<
u8
>>
)
->
Option
<
IP
>
{
if
bytes
.get_ref
()
.len
()
<
20
{
return
None
;
}
let
version_ihl
=
bytes
.read_u8
()
.unwrap
();
let
version
=
version_ihl
>>
4
;
if
version
!=
4
{
return
None
;
}
let
ihl
=
version_ihl
&
0x0f
;
let
tos
=
bytes
.read_u8
()
.unwrap
();
let
length
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
ident
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
fragment
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
flags
=
Flags
{
dont_flagment
:
(
fragment
&
0x8000
)
>
0
,
more_fragments
:
(
fragment
>>
0x4000
)
>
0
,
};
let
ttl
=
bytes
.read_u8
()
.unwrap
();
let
protocol
=
bytes
.read_u8
()
.unwrap
();
let
checksum
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
src
=
bytes
.read_u32
::
<
BigEndian
>
()
.unwrap
();
let
des
=
bytes
.read_u32
::
<
BigEndian
>
()
.unwrap
();
let
option_len
=
(
ihl
*
4
)
as
usize
-
20
;
let
mut
options
=
vec!
[
0u8
;
option_len
];
bytes
.read_exact
(
&
mut
options
)
.unwrap
();
let
ptcol
=
match
protocol
{
ptc
if
ptc
==
(
IpProtocol
::
ICMP
as
u8
)
=>
{
let
icmp
=
ICMP
::
parse
(
bytes
);
match
icmp
{
Some
(
v
)
=>
EtherData
::
ICMP
(
v
),
None
=>
EtherData
::
Unparse
(
protocol
,
bytes
.fill_buf
()
.unwrap
()
.to_vec
()),
}
}
ptc
if
ptc
==
(
IpProtocol
::
TCP
as
u8
)
=>
{
let
tcp
=
TCP
::
parser
(
bytes
);
if
tcp
.is_some
()
{
EtherData
::
TCP
(
tcp
.unwrap
())
}
else
{
EtherData
::
Unparse
(
protocol
,
bytes
.fill_buf
()
.unwrap
()
.to_vec
())
}
}
ptc
if
ptc
==
(
IpProtocol
::
UDP
as
u8
)
=>
{
let
udp
=
UDP
::
parser
(
bytes
);
if
udp
.is_some
()
{
EtherData
::
UDP
(
udp
.unwrap
())
}
else
{
EtherData
::
Unparse
(
protocol
,
bytes
.fill_buf
()
.unwrap
()
.to_vec
())
}
}
_
=>
EtherData
::
Unparse
(
protocol
,
bytes
.fill_buf
()
.unwrap
()
.to_vec
()),
};
Some
(
IP
{
version
,
ihl
,
length
,
protocol
,
tos
,
ident
,
flags
,
fragment
,
ttl
,
checksum
,
src
,
des
,
options
,
})
}
}
pub
enum
EtherData
{
ICMP
(
ICMP
),
TCP
(
TCP
),
UDP
(
UDP
),
Unparse
(
u8
,
Vec
<
u8
>
),
}
src/etherparser/packet/mod.rs
0 → 100644
View file @
2c3f7f20
pub
mod
icmp
;
pub
use
icmp
::
ICMP
;
pub
mod
tcp
;
pub
use
tcp
::
TCP
;
pub
mod
udp
;
pub
mod
ipv4
;
pub
use
ipv4
::{
IP
,
EtherData
,
IpProtocol
};
\ No newline at end of file
src/etherparser/packet/tcp.rs
0 → 100644
View file @
2c3f7f20
use
crate
::
etherparser
::
tools
::
bits
::
bit_bool
;
use
byteorder
::{
BigEndian
,
ReadBytesExt
};
use
std
::
io
::{
BufRead
,
Cursor
};
pub
struct
TCP
{
pub
src_port
:
u16
,
pub
des_port
:
u16
,
pub
seq
:
u32
,
pub
ack
:
u32
,
pub
offset
:
u8
,
pub
flags
:
TcpFlags
,
pub
window
:
u16
,
pub
checksum
:
u16
,
pub
urgent
:
u16
,
pub
payload
:
Vec
<
u8
>
,
}
impl
TCP
{
pub
fn
size_of
()
->
usize
{
20
}
pub
fn
parser
(
bytes
:
&
mut
Cursor
<
Vec
<
u8
>>
)
->
Option
<
TCP
>
{
if
bytes
.get_ref
()
.len
()
<
TCP
::
size_of
()
{
return
None
;
}
let
src_port
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
des_port
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
seq
=
bytes
.read_u32
::
<
BigEndian
>
()
.unwrap
();
let
ack
=
bytes
.read_u32
::
<
BigEndian
>
()
.unwrap
();
let
dataoff_reserv_flags
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
flags
=
TcpFlags
::
parser
(
dataoff_reserv_flags
);
let
offset
=
(
dataoff_reserv_flags
>>
12
)
as
u8
&
0x0f
;
let
window
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
checksum
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
urgent
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
payload
=
bytes
.fill_buf
()
.unwrap
()
.to_vec
();
Some
(
TCP
{
src_port
,
des_port
,
seq
,
ack
,
offset
,
flags
,
window
,
checksum
,
urgent
,
payload
,
})
}
}
pub
struct
TcpFlags
{
pub
ns
:
bool
,
pub
cwr
:
bool
,
pub
ece
:
bool
,
pub
urg
:
bool
,
pub
ack
:
bool
,
pub
psh
:
bool
,
pub
rst
:
bool
,
pub
syn
:
bool
,
pub
fin
:
bool
,
}
impl
TcpFlags
{
pub
fn
parser
(
bytes
:
u16
)
->
TcpFlags
{
TcpFlags
{
ns
:
bit_bool
(
0
,
bytes
),
cwr
:
bit_bool
(
1
,
bytes
),
ece
:
bit_bool
(
2
,
bytes
),
urg
:
bit_bool
(
3
,
bytes
),
ack
:
bit_bool
(
4
,
bytes
),
psh
:
bit_bool
(
5
,
bytes
),
rst
:
bit_bool
(
6
,
bytes
),
syn
:
bit_bool
(
7
,
bytes
),
fin
:
bit_bool
(
8
,
bytes
),
}
}
}
src/etherparser/packet/udp.rs
0 → 100644
View file @
2c3f7f20
use
std
::
io
::{
BufRead
,
Cursor
};
use
byteorder
::{
BigEndian
,
ReadBytesExt
};
pub
struct
UDP
{
pub
src_port
:
u16
,
pub
des_port
:
u16
,
pub
checksum
:
u16
,
pub
payload
:
Vec
<
u8
>
,
}
impl
UDP
{
pub
fn
sizeof
()
->
usize
{
8
}
pub
fn
parser
(
bytes
:
&
mut
Cursor
<
Vec
<
u8
>>
)
->
Option
<
UDP
>
{
if
bytes
.get_ref
()
.len
()
<
UDP
::
sizeof
()
{
return
None
;
}
let
src_port
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
des_port
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
checksum
=
bytes
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
payload
=
bytes
.fill_buf
()
.unwrap
()
.to_vec
();
Some
(
UDP
{
src_port
,
des_port
,
checksum
,
payload
,
})
}
}
src/etherparser/tools/bits.rs
0 → 100644
View file @
2c3f7f20
pub
fn
bit_bool
(
position
:
u16
,
byte
:
u16
)
->
bool
{
(
byte
>>
position
)
&
1
==
1
}
src/etherparser/tools/mod.rs
0 → 100644
View file @
2c3f7f20
pub
mod
bits
;
\ No newline at end of file
src/lib.rs
View file @
2c3f7f20
pub
mod
openflow
;
\ No newline at end of file
pub
mod
openflow
;
pub
mod
etherparser
;
\ No newline at end of file
src/main.rs
View file @
2c3f7f20
use
tenjin
::
openflow
::{
Controller
,
Msg
,
OfpHeader
};
use
std
::
io
::
Read
;
use
std
::
net
::
TcpListener
;
extern
crate
byteorder
;
fn
main
()
->
Result
<
(),
std
::
io
::
Error
>
{
let
controller
=
Controller
::
new
(
Controller
::
OFP_1_0
);
let
listener
=
TcpListener
::
bind
((
"127.0.0.1"
,
6633
))
.unwrap
();
let
mut
buf
=
vec!
[
0u8
;
8
];
for
stream
in
listener
.incoming
()
{
println!
(
"{:?}"
,
stream
);
match
stream
{
Ok
(
mut
stream
)
=>
{
// std::thread::spawn(move || {
println!
(
"=================== connection ======================="
);
// after tcp is connected, it will send hello message
controller
.hello
(
&
mut
stream
);
// loop for receive data
loop
{
// first receive with Openflow header 64 bit to buf
match
stream
.read
(
&
mut
buf
)
{
Ok
(
v
)
if
v
>
0
=>
{
let
packet
=
OfpHeader
::
parse
(
&
buf
);
// length_payload is var to receive payload if the packet has
// and assign size by length
let
length_payload
=
packet
.size
();
let
mut
payload
=
vec!
[
0u8
;
length_payload
];
stream
.read
(
&
mut
payload
)
?
;
let
message
=
Msg
::
parse
(
packet
.message
,
&
payload
);
match
message
{
// 0 is Hello message
Msg
::
Hello
=>
{
// after get Hello, send fetureReq
controller
.feture_req
(
packet
.xid
,
&
mut
stream
);
println!
(
"Hello event"
);
}
Msg
::
PacketIn
(
b
)
=>
{
println!
(
"PacketIn event"
);
}
_
=>
{
println!
(
"others message"
);
}
}
}
Ok
(
_
)
|
Err
(
_
)
=>
break
,
}
}
println!
(
"======================================================"
);
// });
}
Err
(
_
)
=>
{
// connection failed
panic!
(
"Connection failed"
)
}
}
}
Ok
(())
}
use
tenjin
::
openflow
::{
Controller
,
Msg
,
OfpHeader
};
use
std
::
io
::
Read
;
use
std
::
net
::
TcpListener
;
extern
crate
byteorder
;
fn
main
()
->
Result
<
(),
std
::
io
::
Error
>
{
let
controller
=
Controller
::
new
(
Controller
::
OFP_1_0
);
let
listener
=
TcpListener
::
bind
((
"127.0.0.1"
,
6633
))
.unwrap
();
let
mut
buf
=
vec!
[
0u8
;
8
];
for
stream
in
listener
.incoming
()
{
println!
(
"{:?}"
,
stream
);
match
stream
{
Ok
(
mut
stream
)
=>
{
// std::thread::spawn(move || {
println!
(
"=================== connection ======================="
);
// after tcp is connected, it will send hello message
controller
.hello
(
&
mut
stream
);
// loop for receive data
loop
{
// first receive with Openflow header 64 bit to buf
match
stream
.read
(
&
mut
buf
)
{
Ok
(
v
)
if
v
>
0
=>
{
let
packet
=
OfpHeader
::
parse
(
&
buf
);
// length_payload is var to receive payload if the packet has
// and assign size by length
let
length_payload
=
packet
.size
();
let
mut
payload
=
vec!
[
0u8
;
length_payload
];
stream
.read
(
&
mut
payload
)
?
;
let
message
=
Msg
::
parse
(
packet
.message
,
&
payload
);
match
message
{
// 0 is Hello message
Msg
::
Hello
=>
{
// after get Hello, send fetureReq
controller
.feture_req
(
packet
.xid
,
&
mut
stream
);
println!
(
"Hello event"
);
}
Msg
::
PacketIn
(
b
)
=>
{
controller
.packetIn
(
xid
,
&
payload
,
&
mut
stream
);
println!
(
"PacketIn event"
);
}
_
=>
{
println!
(
"others message"
);
}
}
}
Ok
(
_
)
|
Err
(
_
)
=>
break
,
}
}
println!
(
"======================================================"
);
// });
}
Err
(
_
)
=>
{
// connection failed
panic!
(
"Connection failed"
)
}
}
}
Ok
(())
}
src/openflow/controller.rs
View file @
2c3f7f20
use
std
::{
io
::
Write
,
mem
::
size_of
,
net
::
TcpStream
};
use
byteorder
::{
BigEndian
,
WriteBytesExt
};
use
super
::
OfpHeader
;
pub
struct
Controller
{
version
:
u8
,
}
impl
Controller
{
pub
const
OFP_1_0
:
u8
=
1
;
pub
fn
new
(
version
:
u8
)
->
Self
{
Self
{
version
}
}
pub
fn
hello
(
&
self
,
stream
:
&
mut
TcpStream
)
{
let
header
=
OfpHeader
::
new
(
self
.version
,
0
,
size_of
::
<
OfpHeader
>
()
as
u16
,
0
);
let
mut
bytes
:
Vec
<
u8
>
=
Vec
::
new
();
header
.marshal
(
&
mut
bytes
);
stream
.write_all
(
&
bytes
)
.unwrap
();
}
pub
fn
feture_req
(
&
self
,
xid
:
u32
,
stream
:
&
mut
TcpStream
)
{
let
header
=
OfpHeader
::
new
(
self
.version
,
5
,
8
,
xid
);
let
mut
bytes
:
Vec
<
u8
>
=
Vec
::
new
();
header
.marshal
(
&
mut
bytes
);
stream
.write_all
(
&
bytes
)
.unwrap
();
}
pub
fn
send
(
&
self
,
xid
:
u32
,
message
:
u8
,
payload
:
&
Vec
<
u8
>
,
stream
:
&
mut
TcpStream
)
{
let
length
=
size_of
::
<
OfpHeader
>
()
+
payload
.len
();
let
header
=
OfpHeader
::
new
(
self
.version
,
message
,
length
as
u16
,
xid
);
let
mut
bytes
:
Vec
<
u8
>
=
Vec
::
new
();
header
.marshal
(
&
mut
bytes
);
stream
.write_all
(
&
bytes
)
.unwrap
();
}
}
use
std
::{
io
::
Write
,
mem
::
size_of
,
net
::
TcpStream
};
use
byteorder
::{
BigEndian
,
WriteBytesExt
};
use
etherparse
::
SlicedPacket
;
use
super
::
OfpHeader
;
pub
struct
Controller
{
version
:
u8
,
}
impl
Controller
{
pub
const
OFP_1_0
:
u8
=
1
;
pub
fn
new
(
version
:
u8
)
->
Self
{
Self
{
version
}
}
pub
fn
hello
(
&
self
,
stream
:
&
mut
TcpStream
)
{
let
header
=
OfpHeader
::
new
(
self
.version
,
0
,
size_of
::
<
OfpHeader
>
()
as
u16
,
0
);
let
mut
bytes
:
Vec
<
u8
>
=
Vec
::
new
();
header
.marshal
(
&
mut
bytes
);
stream
.write_all
(
&
bytes
)
.unwrap
();
}
pub
fn
feture_req
(
&
self
,
xid
:
u32
,
stream
:
&
mut
TcpStream
)
{
let
header
=
OfpHeader
::
new
(
self
.version
,
5
,
8
,
xid
);
let
mut
bytes
:
Vec
<
u8
>
=
Vec
::
new
();
header
.marshal
(
&
mut
bytes
);
stream
.write_all
(
&
bytes
)
.unwrap
();
}
pub
fn
packetIn
(
&
self
,
xid
:
u32
,
payload
:
&
Vec
<
u8
>
,
stream
:
&
mut
TcpStream
)
{
match
SlicedPacket
::
from_ethernet
(
&
payload
)
{
Ok
(
value
)
=>
{
println!
(
"vlan {:?}"
,
value
.vlan
);
println!
(
"net {:?}"
,
value
.net
);
},
Err
(
_
)
=>
println!
(
"Error"
),
}
}
pub
fn
send
(
&
self
,
xid
:
u32
,
message
:
u8
,
payload
:
&
Vec
<
u8
>
,
stream
:
&
mut
TcpStream
)
{
let
length
=
size_of
::
<
OfpHeader
>
()
+
payload
.len
();
let
header
=
OfpHeader
::
new
(
self
.version
,
message
,
length
as
u16
,
xid
);
let
mut
bytes
:
Vec
<
u8
>
=
Vec
::
new
();
header
.marshal
(
&
mut
bytes
);
stream
.write_all
(
&
bytes
)
.unwrap
();
}
}
src/openflow/header.rs
View file @
2c3f7f20
use
std
::{
io
::
Cursor
,
mem
::
size_of
};
use
byteorder
::{
BigEndian
,
ReadBytesExt
,
WriteBytesExt
};
pub
struct
OfpHeader
{
pub
version
:
u8
,
pub
message
:
u8
,
pub
length
:
u16
,
pub
xid
:
u32
,
}
impl
OfpHeader
{
pub
fn
size
(
&
self
)
->
usize
{
return
self
.length
as
usize
-
size_of
::
<
OfpHeader
>
();
}
pub
fn
new
(
version
:
u8
,
message
:
u8
,
length
:
u16
,
xid
:
u32
)
->
Self
{
Self
{
version
,
message
,
length
,
xid
,
}
}
pub
fn
parse
(
buf
:
&
Vec
<
u8
>
)
->
Self
{
let
mut
buf_cursor
=
Cursor
::
new
(
buf
);
// split data from header
let
version
=
buf_cursor
.read_u8
()
.unwrap
();
let
message
=
buf_cursor
.read_u8
()
.unwrap
();
// size is size of packet
let
length
=
buf_cursor
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
xid
=
buf_cursor
.read_u32
::
<
BigEndian
>
()
.unwrap
();
Self
{
version
,
message
,
length
,
xid
,
}
}
pub
fn
marshal
(
&
self
,
bytes
:
&
mut
Vec
<
u8
>
)
{
bytes
.write_u8
(
self
.version
)
.unwrap
();
bytes
.write_u8
(
self
.message
)
.unwrap
();
bytes
.write_u16
::
<
BigEndian
>
(
self
.length
)
.unwrap
();
bytes
.write_u32
::
<
BigEndian
>
(
self
.xid
)
.unwrap
();
}
}
use
std
::{
io
::
Cursor
,
mem
::
size_of
};
use
byteorder
::{
BigEndian
,
ReadBytesExt
,
WriteBytesExt
};
pub
struct
OfpHeader
{
pub
version
:
u8
,
pub
message
:
u8
,
pub
length
:
u16
,
pub
xid
:
u32
,
}
impl
OfpHeader
{
pub
fn
size
(
&
self
)
->
usize
{
return
self
.length
as
usize
-
size_of
::
<
OfpHeader
>
();
}
pub
fn
new
(
version
:
u8
,
message
:
u8
,
length
:
u16
,
xid
:
u32
)
->
Self
{
Self
{
version
,
message
,
length
,
xid
,
}
}
pub
fn
parse
(
buf
:
&
Vec
<
u8
>
)
->
Self
{
let
mut
buf_cursor
=
Cursor
::
new
(
buf
);
// split data from header
let
version
=
buf_cursor
.read_u8
()
.unwrap
();
let
message
=
buf_cursor
.read_u8
()
.unwrap
();
// size is size of packet
let
length
=
buf_cursor
.read_u16
::
<
BigEndian
>
()
.unwrap
();
let
xid
=
buf_cursor
.read_u32
::
<
BigEndian
>
()
.unwrap
();
Self
{
version
,
message
,
length
,
xid
,
}
}
pub
fn
marshal
(
&
self
,
bytes
:
&
mut
Vec
<
u8
>
)
{
bytes
.write_u8
(
self
.version
)
.unwrap
();
bytes
.write_u8
(
self
.message
)
.unwrap
();
bytes
.write_u16
::
<
BigEndian
>
(
self
.length
)
.unwrap
();
bytes
.write_u32
::
<
BigEndian
>
(
self
.xid
)
.unwrap
();
}
}
src/openflow/message.rs
View file @
2c3f7f20
pub
enum
Msg
{
Hello
,
PacketIn
(
Vec
<
u8
>
),
NotFound
,
}
impl
Msg
{
pub
fn
parse
(
message_code
:
u8
,
payload
:
&
Vec
<
u8
>
)
->
Self
{
match
message_code
{
0
=>
Msg
::
Hello
,
8
=>
Msg
::
PacketIn
(
payload
.clone
()),
_
=>
Msg
::
NotFound
,
}
}
}
pub
enum
Msg
{
Hello
,
PacketIn
(
Vec
<
u8
>
),
NotFound
,
}
impl
Msg
{
pub
fn
parse
(
message_code
:
u8
,
payload
:
&
Vec
<
u8
>
)
->
Self
{
match
message_code
{
0
=>
Msg
::
Hello
,
8
=>
Msg
::
PacketIn
(
payload
.clone
()),
_
=>
Msg
::
NotFound
,
}
}
}
src/openflow/mod.rs
View file @
2c3f7f20
pub
mod
header
;
pub
use
header
::
OfpHeader
;
pub
mod
message
;
pub
use
message
::
Msg
;
pub
mod
controller
;
pub
use
controller
::
Controller
;
pub
mod
header
;
pub
use
header
::
OfpHeader
;
pub
mod
message
;
pub
use
message
::
Msg
;
pub
mod
controller
;
pub
use
controller
::
Controller
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment