📄 openauthresponder.cc
字号:
/* * openauthresponder.{cc,hh} -- sends 802.11 probe responses from requests. * John Bicket * * Copyright (c) 2004 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/wifi.h>#include <click/etheraddress.hh>#include <click/confparse.hh>#include <click/error.hh>#include <click/glue.hh>#include <clicknet/llc.h>#include <click/straccum.hh>#include <click/vector.hh>#include <click/hashmap.hh>#include <click/packet_anno.hh>#include <click/error.hh>#include "openauthresponder.hh"#include <elements/wifi/wirelessinfo.hh>CLICK_DECLSOpenAuthResponder::OpenAuthResponder(){}OpenAuthResponder::~OpenAuthResponder(){}intOpenAuthResponder::configure(Vector<String> &conf, ErrorHandler *errh){ _debug = false; if (cp_va_kparse(conf, this, errh, "DEBUG", 0, cpBool, &_debug, "WIRELESS_INFO", 0, cpElement, &_winfo, cpEnd) < 0) return -1; if (!_winfo || _winfo->cast("WirelessInfo") == 0) return errh->error("No WIRELESS_INFO or it's not a WirelessInfo element\n"); return 0;}voidOpenAuthResponder::push(int, Packet *p){ uint8_t dir; uint8_t type; uint8_t subtype; if (p->length() < sizeof(struct click_wifi)) { click_chatter("%{element}: packet too small: %d vs %d\n", this, p->length(), sizeof(struct click_wifi)); p->kill(); return; } struct click_wifi *w = (struct click_wifi *) p->data(); dir = w->i_fc[1] & WIFI_FC1_DIR_MASK; type = w->i_fc[0] & WIFI_FC0_TYPE_MASK; subtype = w->i_fc[0] & WIFI_FC0_SUBTYPE_MASK; if (type != WIFI_FC0_TYPE_MGT) { click_chatter("%{element}: received non-management packet\n", this); p->kill(); return; } if (subtype != WIFI_FC0_SUBTYPE_AUTH) { click_chatter("%{element}: received non-probe-req packet\n", this); p->kill(); return; } uint8_t *ptr; ptr = (uint8_t *) p->data() + sizeof(struct click_wifi); uint16_t algo = le16_to_cpu(*(uint16_t *) ptr); ptr += 2; uint16_t seq =le16_to_cpu(*(uint16_t *) ptr); ptr += 2; uint16_t status =le16_to_cpu(*(uint16_t *) ptr); ptr += 2; EtherAddress src = EtherAddress(w->i_addr2); if (algo != WIFI_AUTH_ALG_OPEN) { click_chatter("%{element}: auth %d from %s not supported\n", this, algo, src.unparse().c_str()); p->kill(); return; } if (seq != 1) { click_chatter("%{element}: auth %d weird sequence number %d\n", this, algo, seq); p->kill(); return; } if (_debug) { click_chatter("%{element}: auth %d seq %d status %d\n", this, algo, seq, status); } send_auth_response(src, 2, WIFI_STATUS_SUCCESS); p->kill(); return;}voidOpenAuthResponder::send_auth_response(EtherAddress dst, uint16_t seq, uint16_t status){ int len = sizeof (struct click_wifi) + 2 + /* alg */ 2 + /* seq */ 2 + /* status */ 0; WritablePacket *p = Packet::make(len); if (p == 0) return; struct click_wifi *w = (struct click_wifi *) p->data(); w->i_fc[0] = WIFI_FC0_VERSION_0 | WIFI_FC0_TYPE_MGT | WIFI_FC0_SUBTYPE_AUTH; w->i_fc[1] = WIFI_FC1_DIR_NODS; memcpy(w->i_addr1, dst.data(), 6); memcpy(w->i_addr2, _winfo->_bssid.data(), 6); memcpy(w->i_addr3, _winfo->_bssid.data(), 6); *(uint16_t *) w->i_dur = 0; *(uint16_t *) w->i_seq = 0; uint8_t *ptr; ptr = (uint8_t *) p->data() + sizeof(struct click_wifi); *(uint16_t *)ptr = cpu_to_le16(WIFI_AUTH_ALG_OPEN); ptr += 2; *(uint16_t *)ptr = cpu_to_le16(seq); ptr += 2; *(uint16_t *)ptr = cpu_to_le16(status); ptr += 2; output(0).push(p);}enum {H_DEBUG};static StringOpenAuthResponder_read_param(Element *e, void *thunk){ OpenAuthResponder *td = (OpenAuthResponder *)e; switch ((uintptr_t) thunk) { case H_DEBUG: return String(td->_debug) + "\n"; default: return String(); }}static intOpenAuthResponder_write_param(const String &in_s, Element *e, void *vparam, ErrorHandler *errh){ OpenAuthResponder *f = (OpenAuthResponder *)e; String s = cp_uncomment(in_s); switch((intptr_t)vparam) { case H_DEBUG: { //debug bool debug; if (!cp_bool(s, &debug)) return errh->error("debug parameter must be boolean"); f->_debug = debug; break; } } return 0;}voidOpenAuthResponder::add_handlers(){ add_read_handler("debug", OpenAuthResponder_read_param, (void *) H_DEBUG); add_write_handler("debug", OpenAuthResponder_write_param, (void *) H_DEBUG);}CLICK_ENDDECLSEXPORT_ELEMENT(OpenAuthResponder)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -