提交 67ca3966 编写于 作者: P Pablo Neira Ayuso 提交者: David S. Miller

[NETFILTER]: nfnetlink: remove early debugging messages from nfnetlink

Signed-off-by: NPablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: NPatrick McHardy <kaber@trash.net>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 010c7d6f
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* *
* (C) 2001 by Jay Schulist <jschlst@samba.org>, * (C) 2001 by Jay Schulist <jschlst@samba.org>,
* (C) 2002-2005 by Harald Welte <laforge@gnumonks.org> * (C) 2002-2005 by Harald Welte <laforge@gnumonks.org>
* (C) 2005 by Pablo Neira Ayuso <pablo@eurodev.net> * (C) 2005,2007 by Pablo Neira Ayuso <pablo@netfilter.org>
* *
* Initial netfilter messages via netlink development funded and * Initial netfilter messages via netlink development funded and
* generally made possible by Network Robots, Inc. (www.networkrobots.com) * generally made possible by Network Robots, Inc. (www.networkrobots.com)
...@@ -42,14 +42,6 @@ MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER); ...@@ -42,14 +42,6 @@ MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_NETFILTER);
static char __initdata nfversion[] = "0.30"; static char __initdata nfversion[] = "0.30";
#if 0
#define DEBUGP(format, args...) \
printk(KERN_DEBUG "%s(%d):%s(): " format, __FILE__, \
__LINE__, __FUNCTION__, ## args)
#else
#define DEBUGP(format, args...)
#endif
static struct sock *nfnl = NULL; static struct sock *nfnl = NULL;
static struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT]; static struct nfnetlink_subsystem *subsys_table[NFNL_SUBSYS_COUNT];
static DEFINE_MUTEX(nfnl_mutex); static DEFINE_MUTEX(nfnl_mutex);
...@@ -78,8 +70,6 @@ static void nfnl_unlock(void) ...@@ -78,8 +70,6 @@ static void nfnl_unlock(void)
int nfnetlink_subsys_register(struct nfnetlink_subsystem *n) int nfnetlink_subsys_register(struct nfnetlink_subsystem *n)
{ {
DEBUGP("registering subsystem ID %u\n", n->subsys_id);
nfnl_lock(); nfnl_lock();
if (subsys_table[n->subsys_id]) { if (subsys_table[n->subsys_id]) {
nfnl_unlock(); nfnl_unlock();
...@@ -93,8 +83,6 @@ int nfnetlink_subsys_register(struct nfnetlink_subsystem *n) ...@@ -93,8 +83,6 @@ int nfnetlink_subsys_register(struct nfnetlink_subsystem *n)
int nfnetlink_subsys_unregister(struct nfnetlink_subsystem *n) int nfnetlink_subsys_unregister(struct nfnetlink_subsystem *n)
{ {
DEBUGP("unregistering subsystem ID %u\n", n->subsys_id);
nfnl_lock(); nfnl_lock();
subsys_table[n->subsys_id] = NULL; subsys_table[n->subsys_id] = NULL;
nfnl_unlock(); nfnl_unlock();
...@@ -118,10 +106,8 @@ nfnetlink_find_client(u_int16_t type, struct nfnetlink_subsystem *ss) ...@@ -118,10 +106,8 @@ nfnetlink_find_client(u_int16_t type, struct nfnetlink_subsystem *ss)
{ {
u_int8_t cb_id = NFNL_MSG_TYPE(type); u_int8_t cb_id = NFNL_MSG_TYPE(type);
if (cb_id >= ss->cb_count) { if (cb_id >= ss->cb_count)
DEBUGP("msgtype %u >= %u, returning\n", type, ss->cb_count);
return NULL; return NULL;
}
return &ss->cb[cb_id]; return &ss->cb[cb_id];
} }
...@@ -167,11 +153,8 @@ nfnetlink_check_attributes(struct nfnetlink_subsystem *subsys, ...@@ -167,11 +153,8 @@ nfnetlink_check_attributes(struct nfnetlink_subsystem *subsys,
u_int16_t attr_count; u_int16_t attr_count;
u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type); u_int8_t cb_id = NFNL_MSG_TYPE(nlh->nlmsg_type);
if (unlikely(cb_id >= subsys->cb_count)) { if (unlikely(cb_id >= subsys->cb_count))
DEBUGP("msgtype %u >= %u, returning\n",
cb_id, subsys->cb_count);
return -EINVAL; return -EINVAL;
}
min_len = NLMSG_SPACE(sizeof(struct nfgenmsg)); min_len = NLMSG_SPACE(sizeof(struct nfgenmsg));
if (unlikely(nlh->nlmsg_len < min_len)) if (unlikely(nlh->nlmsg_len < min_len))
...@@ -235,27 +218,18 @@ static int nfnetlink_rcv_msg(struct sk_buff *skb, ...@@ -235,27 +218,18 @@ static int nfnetlink_rcv_msg(struct sk_buff *skb,
struct nfnetlink_subsystem *ss; struct nfnetlink_subsystem *ss;
int type, err = 0; int type, err = 0;
DEBUGP("entered; subsys=%u, msgtype=%u\n",
NFNL_SUBSYS_ID(nlh->nlmsg_type),
NFNL_MSG_TYPE(nlh->nlmsg_type));
if (security_netlink_recv(skb, CAP_NET_ADMIN)) { if (security_netlink_recv(skb, CAP_NET_ADMIN)) {
DEBUGP("missing CAP_NET_ADMIN\n");
*errp = -EPERM; *errp = -EPERM;
return -1; return -1;
} }
/* Only requests are handled by kernel now. */ /* Only requests are handled by kernel now. */
if (!(nlh->nlmsg_flags & NLM_F_REQUEST)) { if (!(nlh->nlmsg_flags & NLM_F_REQUEST))
DEBUGP("received non-request message\n");
return 0; return 0;
}
/* All the messages must at least contain nfgenmsg */ /* All the messages must at least contain nfgenmsg */
if (nlh->nlmsg_len < NLMSG_SPACE(sizeof(struct nfgenmsg))) { if (nlh->nlmsg_len < NLMSG_SPACE(sizeof(struct nfgenmsg)))
DEBUGP("received message was too short\n");
return 0; return 0;
}
type = nlh->nlmsg_type; type = nlh->nlmsg_type;
ss = nfnetlink_get_subsys(type); ss = nfnetlink_get_subsys(type);
...@@ -273,10 +247,8 @@ static int nfnetlink_rcv_msg(struct sk_buff *skb, ...@@ -273,10 +247,8 @@ static int nfnetlink_rcv_msg(struct sk_buff *skb,
} }
nc = nfnetlink_find_client(type, ss); nc = nfnetlink_find_client(type, ss);
if (!nc) { if (!nc)
DEBUGP("unable to find client for type %d\n", type);
goto err_inval; goto err_inval;
}
{ {
u_int16_t attr_count = u_int16_t attr_count =
...@@ -289,14 +261,12 @@ static int nfnetlink_rcv_msg(struct sk_buff *skb, ...@@ -289,14 +261,12 @@ static int nfnetlink_rcv_msg(struct sk_buff *skb,
if (err < 0) if (err < 0)
goto err_inval; goto err_inval;
DEBUGP("calling handler\n");
err = nc->call(nfnl, skb, nlh, cda, errp); err = nc->call(nfnl, skb, nlh, cda, errp);
*errp = err; *errp = err;
return err; return err;
} }
err_inval: err_inval:
DEBUGP("returning -EINVAL\n");
*errp = -EINVAL; *errp = -EINVAL;
return -1; return -1;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册