📄 checkudpheader.cc
字号:
/* * checkudpheader.{cc,hh} -- element checks UDP header for correctness * (checksums, lengths) * 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 "checkudpheader.hh"#include <clicknet/ip.h>#include <clicknet/udp.h>#include <click/glue.hh>#include <click/confparse.hh>#include <click/error.hh>#include <click/straccum.hh>#ifdef CLICK_LINUXMODULE# include <net/checksum.h>#endifCLICK_DECLSconst char *CheckUDPHeader::reason_texts[NREASONS] = { "not UDP", "bad packet length", "bad UDP checksum"};CheckUDPHeader::CheckUDPHeader() : Element(1, 1), _reason_drops(0){ _drops = 0;}CheckUDPHeader::~CheckUDPHeader(){ delete[] _reason_drops;}voidCheckUDPHeader::notify_noutputs(int n){ set_noutputs(n < 2 ? 1 : 2);}intCheckUDPHeader::configure(Vector<String> &conf, ErrorHandler *errh){ bool verbose = false; bool details = false; if (cp_va_parse(conf, this, errh, cpKeywords, "VERBOSE", cpBool, "be verbose?", &verbose, "DETAILS", cpBool, "keep detailed counts?", &details, cpEnd) < 0) return -1; _verbose = verbose; if (details) _reason_drops = new atomic_uint32_t[NREASONS]; return 0;}Packet *CheckUDPHeader::drop(Reason reason, Packet *p){ if (_drops == 0 || _verbose) click_chatter("UDP header check failed: %s", reason_texts[reason]); _drops++; if (_reason_drops) _reason_drops[reason]++; if (noutputs() == 2) output(1).push(p); else p->kill(); return 0;}Packet *CheckUDPHeader::simple_action(Packet *p){ const click_ip *iph = p->ip_header(); const click_udp *udph = p->udp_header(); unsigned len, iph_len; if (!iph || iph->ip_p != IP_PROTO_UDP) return drop(NOT_UDP, p); iph_len = iph->ip_hl << 2; len = ntohs(udph->uh_ulen); if (len < sizeof(click_udp) || p->length() < len + iph_len + p->ip_header_offset()) return drop(BAD_LENGTH, p); if (udph->uh_sum != 0) { unsigned csum = click_in_cksum((unsigned char *)udph, len); if (click_in_cksum_pseudohdr(csum, iph, len) != 0) return drop(BAD_CHECKSUM, p); } return p;}StringCheckUDPHeader::read_handler(Element *e, void *thunk){ CheckUDPHeader *c = reinterpret_cast<CheckUDPHeader *>(e); switch ((intptr_t)thunk) { case 0: // drops return String(c->_drops) + "\n"; case 1: { // drop_details StringAccum sa; for (int i = 0; i < NREASONS; i++) sa << c->_reason_drops[i] << '\t' << reason_texts[i] << '\n'; return sa.take_string(); } default: return String("<error>\n"); }}voidCheckUDPHeader::add_handlers(){ add_read_handler("drops", read_handler, (void *)0); if (_reason_drops) add_read_handler("drop_details", read_handler, (void *)1);}CLICK_ENDDECLSEXPORT_ELEMENT(CheckUDPHeader)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -