📄 fromhost.hh
字号:
// -*- mode: c++; c-basic-offset: 4 -*-#ifndef CLICK_FROMHOST_HH#define CLICK_FROMHOST_HH#include <click/element.hh>#include <click/etheraddress.hh>#include <click/timer.hh>#include <click/notifier.hh>/*=cFromHost(DEVNAME, ADDR/MASK [, I<KEYWORDS>])=s sourcesreads packets from Linux=dCaptures packets orginating from the Linux kernel and pushes them on output0. Output packets have Ethernet headers; only the protocol field isinteresting.Installs a fake interface called DEVNAME, and changes the routing table sothat every packet destined for ADDR/MASK is sent through that interface.The packet then leaves on output 0. The device's native address is ADDR.After the fake device is created, the effect of bringing up the interfaceand changing the routing table is analogous to: % /sbin/ifconfig DEVNAME up % /sbin/route add -net ADDR netmask MASK DEVNAMEThis element is only available in the Linux kernel module.Keyword arguments are:=over 8=item ETHEREthernet address. Specifies the fake device's Ethernet address. Default is00:01:02:03:04:05.=back=nLinux will send ARP queries to the fake device. You must respond to thesequeries in order to receive any IP packets, but you can obviously respondwith any Ethernet address you'd like. Here is one common idiom: FromHost(fake0, 192.0.0.1/8) -> fromhost_cl :: Classifier(12/0806, 12/0800); fromhost_cl[0] -> ARPResponder(0.0.0.0/0 1:1:1:1:1:1) -> ToHost; fromhost_cl[1] -> ... // IP packets=e FromHost(fake0, 192.0.0.1/8) -> ...;=a ToHost, FromDevice, PollDevice, ToDevice */#include <click/cxxprotect.h>CLICK_CXX_PROTECT#include <linux/netdevice.h>#include <linux/route.h>CLICK_CXX_UNPROTECT#include <click/cxxunprotect.h>#include "elements/linuxmodule/anydevice.hh"class EtherAddress;class FromHost : public AnyDevice { public: FromHost(); ~FromHost(); static void static_initialize(); const char *class_name() const { return "FromHost"; } const char *processing() const { return PUSH; } net_device_stats *stats() { return &_stats; } int configure_phase() const { return CONFIGURE_PHASE_FROMHOST; } int configure(Vector<String> &, ErrorHandler *); int initialize(ErrorHandler *); void cleanup(CleanupStage); int set_device_addresses(ErrorHandler *); bool run_task(); private: EtherAddress _macaddr; IPAddress _destaddr; IPAddress _destmask; net_device_stats _stats; Task _task; Timer _wakeup_timer; Packet *_queue; // to prevent race conditions NotifierSignal _nonfull_signal; static net_device *new_device(const char *); static int fl_tx(struct sk_buff *, net_device *); };#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -