📄 udpipencap.cc
字号:
/* * udpipencap.{cc,hh} -- element encapsulates packet in UDP/IP header * Benjie Chen, Eddie Kohler * * Copyright (c) 1999-2000 Massachusetts Institute of Technology * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, subject to the conditions * listed in the Click LICENSE file. These conditions include: you must * preserve this copyright notice, and you cannot mention the copyright * holders in advertising related to the Software without their permission. * The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This * notice is a summary of the Click LICENSE file; the license in that file is * legally binding. */#include <click/config.h>#include <clicknet/ip.h>#include "udpipencap.hh"#include <click/confparse.hh>#include <click/error.hh>#include <click/glue.hh>#include <click/standard/alignmentinfo.hh>#ifdef CLICK_LINUXMODULE# include <net/checksum.h>#endifCLICK_DECLSUDPIPEncap::UDPIPEncap() : Element(1, 1){}UDPIPEncap::~UDPIPEncap(){}intUDPIPEncap::configure(Vector<String> &conf, ErrorHandler *errh){ bool do_cksum = true; if (cp_va_parse(conf, this, errh, cpIPAddress, "source address", &_saddr, cpUDPPort, "source port", &_sport, cpIPAddress, "destination address", &_daddr, cpUDPPort, "destination port", &_dport, cpOptional, cpBool, "do UDP checksum?", &do_cksum, cpEnd) < 0) return -1; _id = 0; _cksum = do_cksum;#if HAVE_FAST_CHECKSUM && FAST_CHECKSUM_ALIGNED // check alignment { int ans, c, o; ans = AlignmentInfo::query(this, 0, c, o); _aligned = (ans && c == 4 && o == 0); if (!_aligned) errh->warning("IP header unaligned, cannot use fast IP checksum"); if (!ans) errh->message("(Try passing the configuration through `click-align'.)"); }#endif return 0;}Packet *UDPIPEncap::simple_action(Packet *p_in){ WritablePacket *p = p_in->push(sizeof(click_udp) + sizeof(click_ip)); click_ip *ip = reinterpret_cast<click_ip *>(p->data()); click_udp *udp = reinterpret_cast<click_udp *>(ip + 1); // set up IP header ip->ip_v = 4; ip->ip_hl = sizeof(click_ip) >> 2; ip->ip_len = htons(p->length()); ip->ip_id = htons(_id.read_and_add(1)); ip->ip_p = IP_PROTO_UDP; ip->ip_src = _saddr; ip->ip_dst = _daddr; ip->ip_tos = 0; ip->ip_off = 0; ip->ip_ttl = 250; ip->ip_sum = 0;#if HAVE_FAST_CHECKSUM && FAST_CHECKSUM_ALIGNED if (_aligned) ip->ip_sum = ip_fast_csum((unsigned char *)ip, sizeof(click_ip) >> 2); else ip->ip_sum = click_in_cksum((unsigned char *)ip, sizeof(click_ip));#elif HAVE_FAST_CHECKSUM ip->ip_sum = ip_fast_csum((unsigned char *)ip, sizeof(click_ip) >> 2);#else ip->ip_sum = click_in_cksum((unsigned char *)ip, sizeof(click_ip));#endif p->set_dst_ip_anno(IPAddress(_daddr)); p->set_ip_header(ip, sizeof(click_ip)); // set up UDP header udp->uh_sport = htons(_sport); udp->uh_dport = htons(_dport); uint16_t len = p->length() - sizeof(click_ip); udp->uh_ulen = htons(len); udp->uh_sum = 0; if (_cksum) { unsigned csum = click_in_cksum((unsigned char *)udp, len); udp->uh_sum = click_in_cksum_pseudohdr(csum, ip, len); } return p;}CLICK_ENDDECLSEXPORT_ELEMENT(UDPIPEncap)ELEMENT_MT_SAFE(UDPIPEncap)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -