// -*- mode: c++; c-basic-offset: 4 -*- #ifndef CLICK_FROMHOST_HH #define CLICK_FROMHOST_HH #include #include #include #include /* =c FromHost(DEVNAME, ADDR/MASK [, I]) =s comm reads packets from Linux =d Captures packets orginating from the Linux kernel and pushes them on output 0. Output packets have Ethernet headers; only the protocol field is interesting. Installs a fake interface called DEVNAME, and changes the routing table so that 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 interface and changing the routing table is analogous to: % /sbin/ifconfig DEVNAME up % /sbin/route add -net ADDR netmask MASK DEVNAME This element is only available in the Linux kernel module. Keyword arguments are: =over 8 =item ETHER Ethernet address. Specifies the fake device's Ethernet address. Default is 00:01:02:03:04:05. =back =n Linux will send ARP queries to the fake device. You must respond to these queries in order to receive any IP packets, but you can obviously respond with 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_CXX_PROTECT #include #include CLICK_CXX_UNPROTECT #include #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 *port_count() const { return PORTS_0_1; } const char *processing() const { return PUSH; } net_device_stats *stats() { return &_stats; } int configure_phase() const { return CONFIGURE_PHASE_FROMHOST; } int configure(Vector &, 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