Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
115e23ac
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
115e23ac
编写于
8月 26, 2012
作者:
P
Patrick McHardy
提交者:
Pablo Neira Ayuso
8月 30, 2012
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
netfilter: ip6tables: add REDIRECT target
Signed-off-by:
N
Patrick McHardy
<
kaber@trash.net
>
上级
b3f644fc
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
110 addition
and
0 deletion
+110
-0
net/ipv6/netfilter/Kconfig
net/ipv6/netfilter/Kconfig
+11
-0
net/ipv6/netfilter/Makefile
net/ipv6/netfilter/Makefile
+1
-0
net/ipv6/netfilter/ip6t_REDIRECT.c
net/ipv6/netfilter/ip6t_REDIRECT.c
+98
-0
未找到文件。
net/ipv6/netfilter/Kconfig
浏览文件 @
115e23ac
...
...
@@ -156,6 +156,17 @@ config IP6_NF_TARGET_MASQUERADE
To compile it as a module, choose M here. If unsure, say N.
config IP6_NF_TARGET_REDIRECT
tristate "REDIRECT target support"
depends on NF_NAT_IPV6
help
REDIRECT is a special case of NAT: all incoming connections are
mapped onto the incoming interface's address, causing the packets to
come to the local machine instead of passing through. This is
useful for transparent proxies.
To compile it as a module, choose M here. If unsure, say N.
config IP6_NF_FILTER
tristate "Packet filtering"
default m if NETFILTER_ADVANCED=n
...
...
net/ipv6/netfilter/Makefile
浏览文件 @
115e23ac
...
...
@@ -35,4 +35,5 @@ obj-$(CONFIG_IP6_NF_MATCH_RT) += ip6t_rt.o
# targets
obj-$(CONFIG_IP6_NF_TARGET_MASQUERADE)
+=
ip6t_MASQUERADE.o
obj-$(CONFIG_IP6_NF_TARGET_REDIRECT)
+=
ip6t_REDIRECT.o
obj-$(CONFIG_IP6_NF_TARGET_REJECT)
+=
ip6t_REJECT.o
net/ipv6/netfilter/ip6t_REDIRECT.c
0 → 100644
浏览文件 @
115e23ac
/*
* Copyright (c) 2011 Patrick McHardy <kaber@trash.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Based on Rusty Russell's IPv4 REDIRECT target. Development of IPv6
* NAT funded by Astaro.
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/netfilter.h>
#include <linux/netfilter_ipv6.h>
#include <linux/netfilter/x_tables.h>
#include <net/addrconf.h>
#include <net/netfilter/nf_nat.h>
static
const
struct
in6_addr
loopback_addr
=
IN6ADDR_LOOPBACK_INIT
;
static
unsigned
int
redirect_tg6
(
struct
sk_buff
*
skb
,
const
struct
xt_action_param
*
par
)
{
const
struct
nf_nat_range
*
range
=
par
->
targinfo
;
struct
nf_nat_range
newrange
;
struct
in6_addr
newdst
;
enum
ip_conntrack_info
ctinfo
;
struct
nf_conn
*
ct
;
ct
=
nf_ct_get
(
skb
,
&
ctinfo
);
if
(
par
->
hooknum
==
NF_INET_LOCAL_OUT
)
newdst
=
loopback_addr
;
else
{
struct
inet6_dev
*
idev
;
struct
inet6_ifaddr
*
ifa
;
bool
addr
=
false
;
rcu_read_lock
();
idev
=
__in6_dev_get
(
skb
->
dev
);
if
(
idev
!=
NULL
)
{
list_for_each_entry
(
ifa
,
&
idev
->
addr_list
,
if_list
)
{
newdst
=
ifa
->
addr
;
addr
=
true
;
break
;
}
}
rcu_read_unlock
();
if
(
!
addr
)
return
NF_DROP
;
}
newrange
.
flags
=
range
->
flags
|
NF_NAT_RANGE_MAP_IPS
;
newrange
.
min_addr
.
in6
=
newdst
;
newrange
.
max_addr
.
in6
=
newdst
;
newrange
.
min_proto
=
range
->
min_proto
;
newrange
.
max_proto
=
range
->
max_proto
;
return
nf_nat_setup_info
(
ct
,
&
newrange
,
NF_NAT_MANIP_DST
);
}
static
int
redirect_tg6_checkentry
(
const
struct
xt_tgchk_param
*
par
)
{
const
struct
nf_nat_range
*
range
=
par
->
targinfo
;
if
(
range
->
flags
&
NF_NAT_RANGE_MAP_IPS
)
return
-
EINVAL
;
return
0
;
}
static
struct
xt_target
redirect_tg6_reg
__read_mostly
=
{
.
name
=
"REDIRECT"
,
.
family
=
NFPROTO_IPV6
,
.
checkentry
=
redirect_tg6_checkentry
,
.
target
=
redirect_tg6
,
.
targetsize
=
sizeof
(
struct
nf_nat_range
),
.
table
=
"nat"
,
.
hooks
=
(
1
<<
NF_INET_PRE_ROUTING
)
|
(
1
<<
NF_INET_LOCAL_OUT
),
.
me
=
THIS_MODULE
,
};
static
int
__init
redirect_tg6_init
(
void
)
{
return
xt_register_target
(
&
redirect_tg6_reg
);
}
static
void
__exit
redirect_tg6_exit
(
void
)
{
xt_unregister_target
(
&
redirect_tg6_reg
);
}
module_init
(
redirect_tg6_init
);
module_exit
(
redirect_tg6_exit
);
MODULE_LICENSE
(
"GPL"
);
MODULE_AUTHOR
(
"Patrick McHardy <kaber@trash.net>"
);
MODULE_DESCRIPTION
(
"Xtables: Connection redirection to localhost"
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录