Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Packetdrill_tarr_ext
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stefan Gense
Packetdrill_tarr_ext
Commits
d11f54de
Commit
d11f54de
authored
9 years ago
by
Michael Tüxen
Browse files
Options
Downloads
Patches
Plain Diff
Add constructor for I-DATA chunks.
parent
73af945d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gtests/net/packetdrill/sctp_packet.c
+76
-0
76 additions, 0 deletions
gtests/net/packetdrill/sctp_packet.c
gtests/net/packetdrill/sctp_packet.h
+11
-0
11 additions, 0 deletions
gtests/net/packetdrill/sctp_packet.h
with
87 additions
and
0 deletions
gtests/net/packetdrill/sctp_packet.c
+
76
−
0
View file @
d11f54de
...
@@ -1097,6 +1097,82 @@ sctp_shutdown_complete_chunk_new(s64 flgs)
...
@@ -1097,6 +1097,82 @@ sctp_shutdown_complete_chunk_new(s64 flgs)
sctp_cause_list_new
());
sctp_cause_list_new
());
}
}
struct
sctp_chunk_list_item
*
sctp_i_data_chunk_new
(
s64
flgs
,
s64
len
,
s64
tsn
,
s64
sid
,
s64
res
,
s64
mid
,
s64
ppid
,
s64
fsn
)
{
struct
sctp_i_data_chunk
*
chunk
;
u32
flags
;
u16
length
,
padding_length
;
flags
=
0
;
if
(
len
==
-
1
)
{
length
=
(
u16
)
sizeof
(
struct
sctp_i_data_chunk
);
}
else
{
length
=
(
u16
)
len
;
}
padding_length
=
length
%
4
;
if
(
padding_length
>
0
)
{
padding_length
=
4
-
padding_length
;
}
chunk
=
malloc
(
length
+
padding_length
);
assert
(
chunk
!=
NULL
);
chunk
->
type
=
SCTP_I_DATA_CHUNK_TYPE
;
if
(
flgs
==
-
1
)
{
chunk
->
flags
=
0
;
flags
|=
FLAG_CHUNK_FLAGS_NOCHECK
;
}
else
{
chunk
->
flags
=
(
u8
)
flgs
;
}
chunk
->
length
=
htons
(
length
);
if
(
len
==
-
1
)
{
flags
|=
FLAG_CHUNK_LENGTH_NOCHECK
;
flags
|=
FLAG_CHUNK_VALUE_NOCHECK
;
}
if
(
tsn
==
-
1
)
{
chunk
->
tsn
=
htonl
(
0
);
flags
|=
FLAG_I_DATA_CHUNK_TSN_NOCHECK
;
}
else
{
chunk
->
tsn
=
htonl
((
u32
)
tsn
);
}
if
(
sid
==
-
1
)
{
chunk
->
sid
=
htons
(
0
);
flags
|=
FLAG_I_DATA_CHUNK_SID_NOCHECK
;
}
else
{
chunk
->
sid
=
htons
((
u16
)
sid
);
}
if
(
res
==
-
1
)
{
chunk
->
res
=
htons
(
0
);
flags
|=
FLAG_I_DATA_CHUNK_RES_NOCHECK
;
}
else
{
chunk
->
res
=
htons
((
u16
)
res
);
}
if
(
mid
==
-
1
)
{
chunk
->
mid
=
htonl
(
0
);
flags
|=
FLAG_I_DATA_CHUNK_MID_NOCHECK
;
}
else
{
chunk
->
mid
=
htonl
((
u32
)
mid
);
}
if
(
ppid
==
-
1
)
{
chunk
->
field
.
ppid
=
htonl
(
0
);
flags
|=
FLAG_I_DATA_CHUNK_PPID_NOCHECK
;
}
else
{
chunk
->
field
.
ppid
=
htonl
((
u32
)
ppid
);
}
if
(
fsn
==
-
1
)
{
chunk
->
field
.
fsn
=
htonl
(
0
);
flags
|=
FLAG_I_DATA_CHUNK_FSN_NOCHECK
;
}
else
{
chunk
->
field
.
fsn
=
htonl
((
u32
)
fsn
);
}
memset
(
chunk
->
data
,
0
,
length
+
padding_length
-
sizeof
(
struct
sctp_i_data_chunk
));
return
sctp_chunk_list_item_new
((
struct
sctp_chunk
*
)
chunk
,
length
+
padding_length
,
flags
,
sctp_parameter_list_new
(),
sctp_cause_list_new
());
}
struct
sctp_chunk_list_item
*
struct
sctp_chunk_list_item
*
sctp_pad_chunk_new
(
s64
flgs
,
s64
len
,
u8
*
padding
)
sctp_pad_chunk_new
(
s64
flgs
,
s64
len
,
u8
*
padding
)
{
{
...
...
This diff is collapsed.
Click to expand it.
gtests/net/packetdrill/sctp_packet.h
+
11
−
0
View file @
d11f54de
...
@@ -275,6 +275,17 @@ sctp_cwr_chunk_new(s64 flgs, s64 lowest_tsn);
...
@@ -275,6 +275,17 @@ sctp_cwr_chunk_new(s64 flgs, s64 lowest_tsn);
struct
sctp_chunk_list_item
*
struct
sctp_chunk_list_item
*
sctp_shutdown_complete_chunk_new
(
s64
flgs
);
sctp_shutdown_complete_chunk_new
(
s64
flgs
);
#define FLAG_I_DATA_CHUNK_TSN_NOCHECK 0x00000100
#define FLAG_I_DATA_CHUNK_SID_NOCHECK 0x00000200
#define FLAG_I_DATA_CHUNK_RES_NOCHECK 0x00000400
#define FLAG_I_DATA_CHUNK_MID_NOCHECK 0x00000800
#define FLAG_I_DATA_CHUNK_PPID_NOCHECK 0x00001000
#define FLAG_I_DATA_CHUNK_FSN_NOCHECK 0x00002000
struct
sctp_chunk_list_item
*
sctp_i_data_chunk_new
(
s64
flgs
,
s64
len
,
s64
tsn
,
s64
sid
,
s64
res
,
s64
mid
,
s64
ppid
,
s64
fsn
);
struct
sctp_chunk_list_item
*
struct
sctp_chunk_list_item
*
sctp_pad_chunk_new
(
s64
flgs
,
s64
len
,
u8
*
padding
);
sctp_pad_chunk_new
(
s64
flgs
,
s64
len
,
u8
*
padding
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment