From: Gautier Harmel <Gautier.Harmel@qosmos.net>
To: linux-kernel@vger.kernel.org
Subject: How to pass packets up to protocols layer ?
Date: Thu, 28 Jun 2001 11:58:54 +0200 [thread overview]
Message-ID: <3B3AFFDE.2763D18F@qosmos.net> (raw)
I'm writing a module on Kernel 2.4. A part of this module can be view as
a firewall.
My module is logically located between the IP layer and the link layer.
In fact, the binding is done on NF_IP_POST_ROUTING for packets outgoing,
and on NF_IP_PRE_ROUTING for packets incoming.
I'd like my firewall to respond by an TCP/RST packet when a packet is
forbidden.
There is no problem with that when I send this packet over the network.
To do that :
- I created a new skbuff, that I properly fill with TCP/IP headers.
- I find the route by calling something like :
if (ip_route_output(&rt, iph->daddr, iph->saddr,
RT_TOS(iph->tos), 0) != 0)
return NULL;
dev = rt->u.dst.dev;
-Then I fill properly my sk_buff,
-Later I send the packet with a code like that:
static inline int output_maybe_reroute(struct sk_buff *skb)
{
return skb->dst->output(skb);
}
NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, skb->dev,
output_maybe_reroute);
There is no problem with that, it work fine in that way !
My problem is that sometimes, I'd like to pass those RST packets UP to
the protocol layer.
Instead of sending packets on the network, I'd like to pass them up.
As it works for the sending way, I'm trying to do the same and just
modifying the last step by something like :
- Pass my packet up to the protocol layer
static inline int input_maybe_reroute(struct sk_buff *skb) {
return skb->dst->input(skb);
}
NF_HOOK(PF_INET, NF_IP_LOCAL_IN skb, skb->dev, NULL,
input_maybe_reroute);
But of course it fails, (in fact I don't even know what should do the
skb->dst->input() function) !
Anyone has an idea on how to do something like that or where to find
doc. ?
When do we have to call ip_route_input() ?
Thank you for help
Gautier Harmel
PS : As I've not subscribe to the mailing list, could you, please, put
my email adress in CC
Gautier.Harmel@qosmos.net
next reply other threads:[~2001-06-28 9:57 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-06-28 9:58 Gautier Harmel [this message]
[not found] <3B3AFFDE.2763D18F@qosmos.net.suse.lists.linux.kernel>
2001-06-28 12:42 ` How to pass packets up to protocols layer ? Andi Kleen
2001-06-28 13:40 ` Alexey Vyskubov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3B3AFFDE.2763D18F@qosmos.net \
--to=gautier.harmel@qosmos.net \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox