1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
/*
This file is part of Kismet
Kismet is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Kismet is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Kismet; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WSP100SOURCE_H__
#define __WSP100SOURCE_H__
#ifdef HAVE_WSP100
#include "packetsource.h"
#include <netdb.h>
// Copy this from wtap for our own records
#define KWTAP_ENCAP_IEEE_802_11 18
// Cribbed from packet-tzsp ethereal code by Chris Waters
#define WSP100_TAG_PAD 0x00 // Null
#define WSP100_TAG_END 0x01 // End of list
#define WSP100_TAG_RADIO_SIGNAL 0x0a // Signal strength in dbm, signed
#define WSP100_TAG_RADIO_NOISE 0x0b // Noise level in dbm, signed
#define WSP100_TAG_RADIO_RATE 0x0c // Data rate
#define WSP100_TAG_RADIO_TIME 0x0d // timestamp
#define WSP100_TAG_RADIO_MSG 0x0e // packet type, unsigned byte
#define WSP100_TAG_RADIO_CF 0x0f // Arrived during CF
#define WSP100_TAG_RADIO_UNDECR 0x10 // Remote sensor couldn't decrypt the packet
#define WSP100_TAG_RADIO_FCSERR 0x11 // FCS error in packet
#define WSP100_TAG_RADIO_CHANNEL 0x12 // Channel, unsigned
#define TZSP_PORT 0x9090 // UDP port to send TZSP packets to
#define TZSP_NULL_PACKET {1,4,0,0} // Keepalive packet
#define TZSP_NULL_PACKET_SLICE 5 * SERVER_TIMESLICES_SEC // must be less than 32, and consists of timer slices (100000us)
int Wsp100PokeSensor(Timetracker::timer_event *evt, void *call_parm);
class Wsp100Source : public KisPacketSource {
public:
Wsp100Source(string in_name, string in_dev) : KisPacketSource(in_name, in_dev) { init_bits(in_dev); }
void init_bits(string in_dev);
int OpenSource();
int CloseSource();
int FetchDescriptor() { return udp_sock; }
int FetchPacket(kis_packet *packet, uint8_t *data, uint8_t *moddata);
void PokeSensor();
int FetchChannel();
int SetChannel(int chan);
protected:
int Wsp2Common(kis_packet *packet, uint8_t *data, uint8_t *moddata);
short int port;
int udp_sock;
int valid;
int read_len;
vector<string> wsp100_bits;
int wsp100chan;
struct sockaddr_in serv_sockaddr;
in_addr filter_addr;
uint8_t data[MAX_PACKET_LEN];
// For when we need to revoke this
int poke_event_id;
};
// Registrant bits
KisPacketSource *wsp100source_registrant(string in_name, string in_device,
char *in_err);
int monitor_wsp100(const char *in_dev, int initch, char *in_err, void **in_if, void *in_ext);
int chancontrol_wsp100(const char *in_dev, int in_ch, char *in_err, void *in_ext);
// wsp100
#endif
// ifdef
#endif
|