1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Completed LLC. Not tested yet

This commit is contained in:
Santiago Alessandri
2012-03-19 08:06:52 -03:00
parent f06bf568d5
commit 937a4d66cc
3 changed files with 330 additions and 12 deletions

View File

@@ -22,7 +22,8 @@
#ifndef __IEEE8022_H
#define __IEEE8022_H
#include <list>
#include <utility>
#include <stdint.h>
#include "pdu.h"
#include "utils.h"
@@ -30,10 +31,9 @@
namespace Tins {
/**
* \brief Class representing a SNAP frame.
* \brief Class representing a LLC frame.
*
* Note that this PDU contains the 802.3 LLC structure + SNAP frame.
* So far only unnumbered information structure is supported.
* This PDU follows the standard LLC frame described in the IEEE 802.2 specs.
*/
class LLC : public PDU {
public:
@@ -95,12 +95,12 @@ namespace Tins {
/**
* \brief Copy constructor.
*/
LLC(const SNAP &other);
LLC(const LLC &other);
/**
* \brief Copy assignment operator.
*/
LLC &operator= (const SNAP &other);
LLC &operator= (const LLC &other);
/* Setters */
@@ -149,10 +149,10 @@ namespace Tins {
void receive_seq_number(uint8_t seq_number);
/**
* \brief Setter for the poll flag.
* \brief Setter for the poll/final flag.
* \param value Bool indicating the value of the flag.
*/
void poll(bool value);
void poll_final(bool value);
/**
* \brief Setter for the supervisory function.
@@ -181,10 +181,93 @@ namespace Tins {
/* Getters */
/**
* \brief Getter for the group destination bit.
* \return Whether the group bit is set or not.
*/
inline bool group() {return _header.dsap & 0x01; }
/**
* \brief Getter for the dsap field.
* \return The dsap field value
*/
inline uint8_t dsap() {return _header.dsap; }
/**
* \brief Getter for the command bit.
* \return Wheter the command bit is set or not.
*/
inline bool command() {return _header.ssap & 0x01; }
/**
* \brief Getter for the ssap field.
* \return The ssap field.
*/
inline uint8_t ssap() {return _header.ssap; }
/**
* \brief Getter for the LLC frame format type.
* \return The LLC frame format.
*/
inline uint8_t type() {return control_field & 0x03; }
/**
* \brief Getter for sender send sequence number.
*
* \return The sender send sequence number if format is INFORMATION else 0.
*/
inline uint8_t send_seq_number() {
return (type() == INFORMATION) ? (control_field & 0x00FE) >> 1 : 0;
}
/**
* \brief Getter for sender receive sequence number.
*
* \return The sender receive sequence number if format is
* INFORMATION or SUPERVISORY else 0.
*/
inline uint8_t receive_seq_number() {
if (type() == INFORMATION || type() == SUPERVISORY)
return (control_field & 0xFE00) >> 9;
else
return 0;
}
/**
* \brief Getter for the poll/final flag.
* \return Whether the poll/final flag is set.
*/
inline bool poll_final() {
if (type() == UNNUMBERED)
return control_field & 0x10;
else
return control_field & 0x0100;
}
/**
* \brief Getter for the supervisory function.
*
* \return The supervisory function if format is SUPERVISORY else 0.
*/
inline uint8_t supervisory_function() {
if (type() == SUPERVISORY)
return control_field & 0x0C;
return 0;
}
/**
* \brief Getter for the modifier function field.
*
* \return The modifier function if format is UNNUMBERED else 0.
*/
inline uint8_t modifier_function() {
if (type() == UNNUMBERED)
return control_field & 0xEC;
return 0;
}
/**
* \brief Returns the SNAP frame's header length.
* \brief Returns the LLC frame's header length.
*
* \return The header's size.
* \sa PDU::header_size()
@@ -195,7 +278,12 @@ namespace Tins {
* \brief Getter for the PDU's type.
* \sa PDU::pdu_type
*/
PDUType pdu_type() const { return PDU::SNAP; }
PDUType pdu_type() const { return PDU::LLC; }
/**
* \brief Delete all the information fields added.
*/
void clear_information_fields();
/**
* \brief Clones this PDU.
@@ -212,11 +300,11 @@ namespace Tins {
void copy_fields(const LLC *other);
void write_serialization(uint8_t *buffer, uint32_t total_sz, const PDU *parent);
llchdr _snap;
llchdr _header;
uint8_t control_field_length;
uint16_t control_field;
uint8_t information_field_length;
uint8_t* information_field;
std::list<std::pair<uint8_t,uint8_t*> > information_fields;
};
};

View File

@@ -75,6 +75,7 @@ namespace Tins {
DOT11_REASSOC_RESP,
DOT11_RTS,
DOT11_QOS_DATA,
LLC,
SNAP,
IP,
ARP,

229
src/llc.cpp Normal file
View File

@@ -0,0 +1,229 @@
/*
* libtins is a net packet wrapper library for crafting and
* interpreting sniffed packets.
*
* Copyright (C) 2012 Nasel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdexcept>
#include <cstring>
#include <cassert>
#include <list>
#include <utility>
#include "pdu.h"
#include "llc.h"
#include "utils.h"
#include "rawpdu.h"
using std::list;
using std::pair;
using Tins::LLC;
const uint8_t LLC::GLOBAL_DSAP_ADDR = 0xFF;
const uint8_t LLC::NULL_ADDR = 0x00;
LLC::LLC(PDU *child) : PDU(0xff, child) {
memset(&_header, 0, sizeof(llchdr));
control_field_length = 2;
control_field = 0;
information_field_length = 0;
}
LLC::LLC(const uint8_t *buffer, uint32_t total_sz) : PDU(0xff) {
if(total_sz < sizeof(_header) + 1)
throw std::runtime_error("Not enough size for a LLC header in the buffer.");
std::memcpy(&_header, buffer, sizeof(_header));
buffer += sizeof(_header);
total_sz -= sizeof(_header);
if ((buffer[0] & 0x03) == LLC::UNNUMBERED) {
control_field_length = 1;
control_field = buffer[0];
buffer++;
total_sz -= 1;
//TODO: Create information fields if corresponding.
}
else {
control_field_length = 2;
control_field = Utils::net_to_host_s(((uint16_t*)buffer)[0]);
buffer += 2;
total_sz -= 2;
}
inner_pdu(new Tins::RawPDU(buffer, total_sz));
}
LLC::LLC(const LLC &other): PDU(other) {
copy_fields(&other);
}
LLC &LLC::operator= (const LLC &other) {
copy_fields(&other);
copy_inner_pdu(other);
return *this;
}
void LLC::group(bool value) {
if (value) {
_header.dsap |= 0x01;
}
else {
_header.dsap &= 0xFE;
}
}
void LLC::dsap(uint8_t new_dsap) {
_header.dsap = new_dsap;
}
void LLC::command(bool value) {
if (value) {
_header.ssap |= 0x01;
}
else {
_header.ssap &= 0xFE;
}
}
void LLC::ssap(uint8_t new_ssap) {
_header.ssap = new_ssap;
}
void LLC::type(LLC::Format type) {
switch (type) {
case LLC::INFORMATION:
control_field_length = 2;
control_field &= 0xFFFE;
break;
case LLC::SUPERVISORY:
control_field_length = 2;
control_field &= 0xFFFD;
control_field |= type;
break;
case LLC::UNNUMBERED:
control_field_length = 1;
control_field &= 0xFD;
control_field |= type;
break;
}
}
void LLC::send_seq_number(uint8_t seq_number) {
if (type() != LLC::INFORMATION)
return;
control_field &= 0xFF01;
control_field |= seq_number;
}
void LLC::receive_seq_number(uint8_t seq_number) {
if (type() == LLC::UNNUMBERED)
return;
uint16_t to_mask = seq_number <<= 9;
control_field &= 0x01FF;
control_field |= to_mask;
}
void LLC::poll_final(bool value) {
uint16_t mask = 0;
switch (type()) {
case LLC::UNNUMBERED:
mask = 0xFFEF;
break;
case LLC::INFORMATION:
case LLC::SUPERVISORY:
mask = 0xFEFF;
break;
}
if (value)
control_field |= ~mask;
else
control_field &= mask;
}
void LLC::supervisory_function(LLC::SupervisoryFunctions new_func) {
if (type() != LLC::SUPERVISORY)
return;
control_field &= 0xFFF3;
control_field |= new_func;
}
void LLC::modifier_function(LLC::ModifierFunctions mod_func) {
if (type() != LLC::UNNUMBERED)
return;
control_field &= 0xEC;
control_field |= mod_func;
}
void LLC::add_xid_information(uint8_t xid_id, uint8_t llc_type_class, uint8_t receive_window) {
uint8_t* XID = new uint8_t[3];
XID[0] = 0;
XID[0] = xid_id;
XID[1] = 0;
XID[1] = llc_type_class;
XID[2] = 0;
XID[2] = receive_window & 0x7F;
information_field_length += 3;
information_fields.push_back(std::pair<uint8_t, uint8_t*>(3, XID));
}
uint32_t LLC::header_size() const {
return sizeof(_header) + control_field_length + information_field_length;
}
void LLC::clear_information_fields() {
information_field_length = 0;
information_fields.clear();
}
Tins::PDU *LLC::clone_pdu() const {
LLC *new_pdu = new LLC();
new_pdu->copy_fields(this);
return new_pdu;
}
void LLC::copy_fields(const LLC *other) {
std::memcpy(&_header, &other->_header, sizeof(_header));
control_field_length = other->control_field_length;
control_field = other->control_field;
information_field_length = other->information_field_length;
for (list<pair<uint8_t, uint8_t*> >::const_iterator it = other->information_fields.begin(); it != other->information_fields.end(); it++) {
uint8_t* new_info_field = new uint8_t[it->first];
std::memcpy(new_info_field, it->second, it->first);
information_fields.push_back(pair<uint8_t, uint8_t*>(it->first, new_info_field));
}
}
void LLC::write_serialization(uint8_t *buffer, uint32_t total_sz, const Tins::PDU *parent) {
assert(total_sz >= header_size());
std::memcpy(buffer, &_header, sizeof(_header));
buffer += sizeof(_header);
if (control_field_length == 1) {
*buffer = (uint8_t)control_field;
buffer++;
}
else {
*((uint16_t*)buffer) = Utils::net_to_host_s(control_field);
buffer += 2;
}
for (list<pair<uint8_t, uint8_t*> >::iterator it = information_fields.begin(); it != information_fields.end(); it++) {
std::memcpy(buffer, it->second, it->first);
buffer += it->first;
}
}