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
af398df7
Commit
af398df7
authored
Jul 24, 2024
by
Nawasan Wisitsingkhon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
matchfields parser
parent
fe0a1f48
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
146 additions
and
8 deletions
+146
-8
match_fields.rs
src/openflow/ofp13/events/flow_mod/match_fields.rs
+139
-7
packet_in.rs
src/openflow/ofp13/events/packet_in.rs
+7
-1
No files found.
src/openflow/ofp13/events/flow_mod/match_fields.rs
View file @
af398df7
use
std
::
net
::{
Ipv4Addr
,
Ipv6Addr
};
use
std
::{
error
::
Error
,
io
::{
BufRead
,
Cursor
},
mem
::
transmute
,
net
::{
Ipv4Addr
,
Ipv6Addr
},
};
use
byteorder
::{
BigEndian
,
WriteBytesExt
};
use
byteorder
::{
BigEndian
,
ReadBytesExt
,
WriteBytesExt
};
use
crate
::
etherparser
::
MacAddr
;
use
crate
::
etherparser
::
MacAddr
;
...
@@ -157,6 +162,16 @@ pub enum OxmMatchFields {
...
@@ -157,6 +162,16 @@ pub enum OxmMatchFields {
ActsetOutput
=
43
,
// Output port from action set metadata
ActsetOutput
=
43
,
// Output port from action set metadata
}
}
impl
From
<
u8
>
for
OxmMatchFields
{
fn
from
(
value
:
u8
)
->
Self
{
if
value
<
44
{
unsafe
{
transmute
(
value
)
}
}
else
{
Self
::
ActsetOutput
}
}
}
impl
From
<
OxmMatchFields
>
for
u8
{
impl
From
<
OxmMatchFields
>
for
u8
{
fn
from
(
value
:
OxmMatchFields
)
->
Self
{
fn
from
(
value
:
OxmMatchFields
)
->
Self
{
value
as
u8
value
as
u8
...
@@ -260,9 +275,126 @@ impl MatchFields {
...
@@ -260,9 +275,126 @@ impl MatchFields {
ofp_match
.marshal
(
bytes
);
ofp_match
.marshal
(
bytes
);
}
}
// pub fn parse(bytes: &mut Cursor<Vec<u8>>) {
pub
fn
parse
(
bytes
:
&
mut
Cursor
<
Vec
<
u8
>>
)
->
Result
<
MatchFields
,
Box
<
dyn
Error
>>
{
/*
let
mut
matcher
=
MatchFields
::
match_all
();
* TODO Soon
*/
let
typ
=
bytes
.read_u16
::
<
BigEndian
>
()
?
;
// }
let
length
=
bytes
.read_u16
::
<
BigEndian
>
()
?
;
let
mut
pkt_len
=
length
-
4
;
while
pkt_len
>
0
{
let
oxm_class
=
bytes
.read_u16
::
<
BigEndian
>
()
?
;
let
oxm_field
=
bytes
.read_u8
()
?
;
let
hash_mask
=
oxm_field
&
1
==
1
;
let
oxm_field
:
OxmMatchFields
=
(
oxm_field
>>
1
)
.into
();
let
oxm_length
=
bytes
.read_u8
()
?
;
match
oxm_field
{
OxmMatchFields
::
InPort
=>
{
let
port
=
bytes
.read_u32
::
<
BigEndian
>
()
?
;
let
mask
=
if
hash_mask
{
Some
(
bytes
.read_u32
::
<
BigEndian
>
())
}
else
{
None
};
matcher
.in_port
=
Some
(
port
);
}
OxmMatchFields
::
MacDest
=>
{
let
mut
mac
=
[
0u8
;
6
];
for
i
in
0
..
6
{
mac
[
i
]
=
bytes
.read_u8
()
?
;
}
if
hash_mask
{
bytes
.consume
(
6
);
}
matcher
.eth_dst
=
Some
(
MacAddr
::
new
(
mac
));
}
OxmMatchFields
::
MacSrc
=>
{
let
mut
mac
=
[
0u8
;
6
];
for
i
in
0
..
6
{
mac
[
i
]
=
bytes
.read_u8
()
?
;
}
if
hash_mask
{
bytes
.consume
(
6
);
}
matcher
.eth_src
=
Some
(
MacAddr
::
new
(
mac
));
}
OxmMatchFields
::
EthernetType
=>
{
let
eth_typ
=
bytes
.read_u16
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
2
);
}
matcher
.eth_typ
=
Some
(
eth_typ
);
}
OxmMatchFields
::
Protocol
=>
{
let
proto
=
bytes
.read_u8
()
?
;
if
hash_mask
{
bytes
.consume
(
1
);
}
matcher
.ip_proto
=
Some
(
proto
);
}
OxmMatchFields
::
IpSrc
=>
{
let
ip
=
bytes
.read_u32
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
4
);
}
matcher
.ipv4_src
=
Some
(
Ipv4Addr
::
from
(
ip
));
}
OxmMatchFields
::
IpDst
=>
{
let
ip
=
bytes
.read_u32
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
4
);
}
matcher
.ipv4_dst
=
Some
(
Ipv4Addr
::
from
(
ip
));
}
OxmMatchFields
::
Ipv6Src
=>
{
let
ipv6
=
bytes
.read_u128
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
16
);
}
matcher
.ipv6_src
=
Some
(
Ipv6Addr
::
from
(
ipv6
));
}
OxmMatchFields
::
Ipv6Dst
=>
{
let
ipv6
=
bytes
.read_u128
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
16
);
}
matcher
.ipv6_dst
=
Some
(
Ipv6Addr
::
from
(
ipv6
));
}
OxmMatchFields
::
TcpSrc
=>
{
let
tcp
=
bytes
.read_u16
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
2
);
}
matcher
.tcp_src
=
Some
(
tcp
);
}
OxmMatchFields
::
TcpDst
=>
{
let
tcp
=
bytes
.read_u16
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
2
);
}
matcher
.tcp_dst
=
Some
(
tcp
);
}
OxmMatchFields
::
UdpSrc
=>
{
let
udp
=
bytes
.read_u16
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
2
);
}
matcher
.udp_src
=
Some
(
udp
);
}
OxmMatchFields
::
UdpDst
=>
{
let
udp
=
bytes
.read_u16
::
<
BigEndian
>
()
?
;
if
hash_mask
{
bytes
.consume
(
2
);
}
matcher
.udp_dst
=
Some
(
udp
);
}
_
=>
{
bytes
.consume
((
oxm_length
-
4
)
.into
());
}
}
pkt_len
=
pkt_len
-
(
oxm_length
as
u16
);
}
Ok
(
matcher
)
}
}
}
src/openflow/ofp13/events/packet_in.rs
View file @
af398df7
...
@@ -4,6 +4,7 @@ use super::Payload;
...
@@ -4,6 +4,7 @@ use super::Payload;
use
byteorder
::{
BigEndian
,
ReadBytesExt
};
use
byteorder
::{
BigEndian
,
ReadBytesExt
};
use
std
::
io
::{
BufRead
,
Cursor
,
Error
};
use
std
::
io
::{
BufRead
,
Cursor
,
Error
};
#[repr(u8)]
#[derive(Debug)]
#[derive(Debug)]
pub
enum
PacketInReason
{
pub
enum
PacketInReason
{
NoMatch
,
NoMatch
,
...
@@ -26,9 +27,14 @@ impl PacketInReason {
...
@@ -26,9 +27,14 @@ impl PacketInReason {
pub
struct
PacketInEvent
{
pub
struct
PacketInEvent
{
pub
buf_id
:
Option
<
u32
>
,
pub
buf_id
:
Option
<
u32
>
,
pub
total_len
:
u16
,
pub
total_len
:
u16
,
pub
in_port
:
u16
,
pub
reason
:
PacketInReason
,
pub
reason
:
PacketInReason
,
pub
table_id
:
u8
,
pub
table_id
:
u8
,
pub
cookie
:
u64
,
/**
* TODO
* Ofp Match
*/
pub
in_port
:
u16
,
pub
payload
:
Payload
,
pub
payload
:
Payload
,
}
}
...
...
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