Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
canghaiwuhen
OpenXG-RAN
Commits
b4dd000f
Commit
b4dd000f
authored
Dec 05, 2014
by
Lionel Gauthier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git-svn-id:
http://svn.eurecom.fr/openair4G/trunk@6176
818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent
74a47a27
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
119 additions
and
49 deletions
+119
-49
openair-cn/SGW-LITE/sgw_lite_task.c
openair-cn/SGW-LITE/sgw_lite_task.c
+1
-0
openair-cn/SGW-LITE/spgw_config.c
openair-cn/SGW-LITE/spgw_config.c
+117
-49
openair-cn/SGW-LITE/spgw_config.h
openair-cn/SGW-LITE/spgw_config.h
+1
-0
No files found.
openair-cn/SGW-LITE/sgw_lite_task.c
View file @
b4dd000f
...
@@ -150,6 +150,7 @@ int sgw_lite_init(char* config_file_name_pP)
...
@@ -150,6 +150,7 @@ int sgw_lite_init(char* config_file_name_pP)
spgw_system
(
"insmod $OPENAIRCN_DIR/GTPV1-U/GTPURH/Bin/xt_GTPURH.ko"
,
1
);
spgw_system
(
"insmod $OPENAIRCN_DIR/GTPV1-U/GTPURH/Bin/xt_GTPURH.ko"
,
1
);
#endif
#endif
spgw_config_init
(
config_file_name_pP
,
&
spgw_config
);
spgw_config_init
(
config_file_name_pP
,
&
spgw_config
);
spgw_config_process
(
&
spgw_config
);
pgw_lite_load_pool_ip_addresses
();
pgw_lite_load_pool_ip_addresses
();
sgw_app
.
s11teid2mme_hashtable
=
hashtable_create
(
8192
,
NULL
,
NULL
);
sgw_app
.
s11teid2mme_hashtable
=
hashtable_create
(
8192
,
NULL
,
NULL
);
...
...
openair-cn/SGW-LITE/spgw_config.c
View file @
b4dd000f
...
@@ -147,6 +147,123 @@ int spgw_system(char *command_pP, int abort_on_errorP) {
...
@@ -147,6 +147,123 @@ int spgw_system(char *command_pP, int abort_on_errorP) {
return
ret
;
return
ret
;
}
}
int
spgw_config_process
(
spgw_config_t
*
config_pP
)
{
char
system_cmd
[
256
];
struct
in_addr
inaddr
;
int
ret
=
0
;
if
(
strncasecmp
(
"tun"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
,
strlen
(
"tun"
))
==
0
)
{
if
(
snprintf
(
system_cmd
,
256
,
"ip link set %s down ;openvpn --rmtun --dev %s"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
)
>
0
)
{
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Del %s
\n
"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
);
ret
=
-
1
;
}
if
(
snprintf
(
system_cmd
,
256
,
"openvpn --mktun --dev %s;sync;ifconfig %s up;sync"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
)
>
0
)
{
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Create %s
\n
"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
);
ret
=
-
1
;
}
inaddr
.
s_addr
=
config_pP
->
sgw_config
.
ipv4
.
sgw_ipv4_address_for_S1u_S12_S4_up
;
if
(
snprintf
(
system_cmd
,
256
,
"ip -4 addr add %s dev %s"
,
inet_ntoa
(
inaddr
),
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
)
>
0
)
{
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Set IPv4 address on %s
\n
"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
);
ret
=
-
1
;
}
if
(
snprintf
(
system_cmd
,
128
,
"iptables -t filter -I INPUT -i lo -d %s --protocol sctp -j DROP"
,
inet_ntoa
(
inaddr
))
>
0
)
{
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Drop SCTP traffic on S1U
\n
"
);
ret
=
-
1
;
}
if
(
snprintf
(
system_cmd
,
128
,
"iptables -t filter -I INPUT -i lo -s %s --protocol sctp -j DROP"
,
inet_ntoa
(
inaddr
))
>
0
)
{
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Drop SCTP traffic on S1U
\n
"
);
ret
=
-
1
;
}
}
#if defined (ENABLE_USE_GTPU_IN_KERNEL)
ret
+=
spgw_system
(
"echo 0 > /proc/sys/net/ipv4/conf/all/send_redirects"
,
1
);
#endif
if
(
snprintf
(
system_cmd
,
256
,
"ip link set dev %s mtu %u"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
,
config_pP
->
sgw_config
.
sgw_interface_mtu_for_S1u_S12_S4_up
)
>
0
)
{
SPGW_APP_INFO
(
"Set S1U interface MTU: %s
\n
"
,
system_cmd
);
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Set S1U interface MTU
\n
"
);
ret
=
-
1
;
}
if
(
config_pP
->
sgw_config
.
sgw_drop_uplink_traffic
)
{
if
(
snprintf
(
system_cmd
,
128
,
"iptables -t raw -I PREROUTING -i %s --protocol udp --destination-port 2152 -j DROP"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
)
>
0
)
{
SPGW_APP_INFO
(
"Drop uplink traffic: %s
\n
"
,
system_cmd
);
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Drop uplink traffic
\n
"
);
ret
=
-
1
;
}
}
if
(
config_pP
->
pgw_config
.
pgw_masquerade_SGI
)
{
if
(
snprintf
(
system_cmd
,
128
,
"iptables -t nat -A POSTROUTING -o %s ! --protocol sctp -j MASQUERADE"
,
config_pP
->
pgw_config
.
ipv4
.
pgw_interface_name_for_SGI
)
>
0
)
{
SPGW_APP_INFO
(
"Masquerade SGI: %s
\n
"
,
system_cmd
);
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Masquerade SGI
\n
"
);
ret
=
-
1
;
}
}
#if defined (ENABLE_USE_GTPU_IN_KERNEL)
if
(
snprintf
(
system_cmd
,
128
,
//"iptables -I POSTROUTING -t mangle -o %s -m state --state NEW -m mark ! --mark 0 ! --protocol sctp -j CONNMARK --save-mark",
"iptables -I POSTROUTING -t mangle -o %s -m mark ! --mark 0 ! --protocol sctp -j CONNMARK --save-mark"
,
config_pP
->
pgw_config
.
ipv4
.
pgw_interface_name_for_SGI
)
>
0
)
{
SPGW_APP_INFO
(
"Save mark: %s
\n
"
,
system_cmd
);
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Save mark
\n
"
);
ret
=
-
1
;
}
if
(
snprintf
(
system_cmd
,
128
,
"iptables -I PREROUTING -t mangle -i %s ! --protocol sctp -j CONNMARK --restore-mark"
,
config_pP
->
pgw_config
.
ipv4
.
pgw_interface_name_for_SGI
)
>
0
)
{
SPGW_APP_INFO
(
"Restore mark: %s
\n
"
,
system_cmd
);
ret
+=
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Restore mark
\n
"
);
ret
=
-
1
;
}
#endif
return
ret
;
}
int
spgw_config_init
(
char
*
lib_config_file_name_pP
,
spgw_config_t
*
config_pP
)
{
int
spgw_config_init
(
char
*
lib_config_file_name_pP
,
spgw_config_t
*
config_pP
)
{
config_t
cfg
;
config_t
cfg
;
...
@@ -239,9 +356,6 @@ int spgw_config_init(char* lib_config_file_name_pP, spgw_config_t* config_pP) {
...
@@ -239,9 +356,6 @@ int spgw_config_init(char* lib_config_file_name_pP, spgw_config_t* config_pP) {
config_pP
->
sgw_config
.
ipv4
.
sgw_ip_netmask_for_S1u_S12_S4_up
=
atoi
(
mask
);
config_pP
->
sgw_config
.
ipv4
.
sgw_ip_netmask_for_S1u_S12_S4_up
=
atoi
(
mask
);
free
(
cidr
);
free
(
cidr
);
#if defined (ENABLE_USE_GTPU_IN_KERNEL)
spgw_system
(
"echo 0 > /proc/sys/net/ipv4/conf/all/send_redirects"
,
1
);
#endif
in_addr_var
.
s_addr
=
config_pP
->
sgw_config
.
ipv4
.
sgw_ipv4_address_for_S1u_S12_S4_up
;
in_addr_var
.
s_addr
=
config_pP
->
sgw_config
.
ipv4
.
sgw_ipv4_address_for_S1u_S12_S4_up
;
SPGW_APP_INFO
(
"Parsing configuration file found sgw_ipv4_address_for_S1u_S12_S4_up: %s/%d on %s
\n
"
,
SPGW_APP_INFO
(
"Parsing configuration file found sgw_ipv4_address_for_S1u_S12_S4_up: %s/%d on %s
\n
"
,
inet_ntoa
(
in_addr_var
),
inet_ntoa
(
in_addr_var
),
...
@@ -282,15 +396,6 @@ int spgw_config_init(char* lib_config_file_name_pP, spgw_config_t* config_pP) {
...
@@ -282,15 +396,6 @@ int spgw_config_init(char* lib_config_file_name_pP, spgw_config_t* config_pP) {
&
sgw_interface_mtu_for_S1u_S12_S4_up
)
&
sgw_interface_mtu_for_S1u_S12_S4_up
)
)
{
)
{
config_pP
->
sgw_config
.
sgw_interface_mtu_for_S1u_S12_S4_up
=
sgw_interface_mtu_for_S1u_S12_S4_up
;
config_pP
->
sgw_config
.
sgw_interface_mtu_for_S1u_S12_S4_up
=
sgw_interface_mtu_for_S1u_S12_S4_up
;
if
(
snprintf
(
system_cmd
,
128
,
"ip link set dev %s mtu %u"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
,
config_pP
->
sgw_config
.
sgw_interface_mtu_for_S1u_S12_S4_up
)
>
0
)
{
SPGW_APP_INFO
(
"Set S1U interface MTU: %s
\n
"
,
system_cmd
);
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Set S1U interface MTU
\n
"
);
}
}
}
}
}
if
(
(
if
(
(
...
@@ -302,15 +407,6 @@ int spgw_config_init(char* lib_config_file_name_pP, spgw_config_t* config_pP) {
...
@@ -302,15 +407,6 @@ int spgw_config_init(char* lib_config_file_name_pP, spgw_config_t* config_pP) {
)
{
)
{
if
(
strcasecmp
(
sgw_drop_uplink_s1u_traffic
,
"yes"
)
==
0
)
{
if
(
strcasecmp
(
sgw_drop_uplink_s1u_traffic
,
"yes"
)
==
0
)
{
config_pP
->
sgw_config
.
sgw_drop_uplink_traffic
=
1
;
config_pP
->
sgw_config
.
sgw_drop_uplink_traffic
=
1
;
if
(
snprintf
(
system_cmd
,
128
,
"iptables -t raw -I PREROUTING -i %s --protocol udp --destination-port 2152 -j DROP"
,
config_pP
->
sgw_config
.
ipv4
.
sgw_interface_name_for_S1u_S12_S4_up
)
>
0
)
{
SPGW_APP_INFO
(
"Drop uplink traffic: %s
\n
"
,
system_cmd
);
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Drop uplink traffic
\n
"
);
}
}
else
{
}
else
{
config_pP
->
sgw_config
.
sgw_drop_uplink_traffic
=
0
;
config_pP
->
sgw_config
.
sgw_drop_uplink_traffic
=
0
;
}
}
...
@@ -373,38 +469,10 @@ int spgw_config_init(char* lib_config_file_name_pP, spgw_config_t* config_pP) {
...
@@ -373,38 +469,10 @@ int spgw_config_init(char* lib_config_file_name_pP, spgw_config_t* config_pP) {
if
(
strcasecmp
(
pgw_masquerade_SGI
,
"yes"
)
==
0
)
{
if
(
strcasecmp
(
pgw_masquerade_SGI
,
"yes"
)
==
0
)
{
config_pP
->
pgw_config
.
pgw_masquerade_SGI
=
1
;
config_pP
->
pgw_config
.
pgw_masquerade_SGI
=
1
;
if
(
snprintf
(
system_cmd
,
128
,
"iptables -t nat -A POSTROUTING -o %s ! --protocol sctp -j MASQUERADE"
,
config_pP
->
pgw_config
.
ipv4
.
pgw_interface_name_for_SGI
)
>
0
)
{
SPGW_APP_INFO
(
"Masquerade SGI: %s
\n
"
,
system_cmd
);
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Masquerade SGI
\n
"
);
}
}
else
{
}
else
{
config_pP
->
pgw_config
.
pgw_masquerade_SGI
=
0
;
config_pP
->
pgw_config
.
pgw_masquerade_SGI
=
0
;
SPGW_APP_INFO
(
"No masquerading for SGI
\n
"
);
SPGW_APP_INFO
(
"No masquerading for SGI
\n
"
);
}
}
#if defined (ENABLE_USE_GTPU_IN_KERNEL)
if
(
snprintf
(
system_cmd
,
128
,
//"iptables -I POSTROUTING -t mangle -o %s -m state --state NEW -m mark ! --mark 0 ! --protocol sctp -j CONNMARK --save-mark",
"iptables -I POSTROUTING -t mangle -o %s -m mark ! --mark 0 ! --protocol sctp -j CONNMARK --save-mark"
,
config_pP
->
pgw_config
.
ipv4
.
pgw_interface_name_for_SGI
)
>
0
)
{
SPGW_APP_INFO
(
"Save mark: %s
\n
"
,
system_cmd
);
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Save mark
\n
"
);
}
if
(
snprintf
(
system_cmd
,
128
,
"iptables -I PREROUTING -t mangle -i %s ! --protocol sctp -j CONNMARK --restore-mark"
,
config_pP
->
pgw_config
.
ipv4
.
pgw_interface_name_for_SGI
)
>
0
)
{
SPGW_APP_INFO
(
"Restore mark: %s
\n
"
,
system_cmd
);
spgw_system
(
system_cmd
,
1
);
}
else
{
SPGW_APP_ERROR
(
"Restore mark
\n
"
);
}
#endif
}
else
{
}
else
{
SPGW_APP_WARN
(
"CONFIG P-GW / NETWORK INTERFACES parsing failed
\n
"
);
SPGW_APP_WARN
(
"CONFIG P-GW / NETWORK INTERFACES parsing failed
\n
"
);
}
}
...
...
openair-cn/SGW-LITE/spgw_config.h
View file @
b4dd000f
...
@@ -147,6 +147,7 @@ extern spgw_config_t spgw_config;
...
@@ -147,6 +147,7 @@ extern spgw_config_t spgw_config;
#endif
#endif
int
spgw_system
(
char
*
command_pP
,
int
abort_on_errorP
);
int
spgw_system
(
char
*
command_pP
,
int
abort_on_errorP
);
int
spgw_config_process
(
spgw_config_t
*
config_pP
);
int
spgw_config_init
(
char
*
lib_config_file_name_pP
,
spgw_config_t
*
config_pP
);
int
spgw_config_init
(
char
*
lib_config_file_name_pP
,
spgw_config_t
*
config_pP
);
#endif
/* ENB_CONFIG_H_ */
#endif
/* ENB_CONFIG_H_ */
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