mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 07:22:25 +00:00
eba9c15746
The patch adjust the code of the base, base-<kernel>, and os repository. To adapt existing components to fix violations of the best practices suggested by "Effective C++" as reported by the -Weffc++ compiler argument. The changes follow the patterns outlined below: * A class with virtual functions can no longer publicly inherit base classed without a vtable. The inherited object may either be moved to a member variable, or inherited privately. The latter would be used for classes that inherit 'List::Element' or 'Avl_node'. In order to enable the 'List' and 'Avl_tree' to access the meta data, the 'List' must become a friend. * Instead of adding a virtual destructor to abstract base classes, we inherit the new 'Interface' class, which contains a virtual destructor. This way, single-line abstract base classes can stay as compact as they are now. The 'Interface' utility resides in base/include/util/interface.h. * With the new warnings enabled, all member variables must be explicitly initialized. Basic types may be initialized with '='. All other types are initialized with braces '{ ... }' or as class initializers. If basic types and non-basic types appear in a row, it is nice to only use the brace syntax (also for basic types) and align the braces. * If a class contains pointers as members, it must now also provide a copy constructor and assignment operator. In the most cases, one would make them private, effectively disallowing the objects to be copied. Unfortunately, this warning cannot be fixed be inheriting our existing 'Noncopyable' class (the compiler fails to detect that the inheriting class cannot be copied and still gives the error). For now, we have to manually add declarations for both the copy constructor and assignment operator as private class members. Those declarations should be prepended with a comment like this: /* * Noncopyable */ Thread(Thread const &); Thread &operator = (Thread const &); In the future, we should revisit these places and try to replace the pointers with references. In the presence of at least one reference member, the compiler would no longer implicitly generate a copy constructor. So we could remove the manual declaration. Issue #465
167 lines
5.0 KiB
C++
167 lines
5.0 KiB
C++
/*
|
|
* \brief Transmission Control Protocol
|
|
* \author Martin Stein
|
|
* \date 2016-06-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _TCP_H_
|
|
#define _TCP_H_
|
|
|
|
/* Genode includes */
|
|
#include <base/exception.h>
|
|
#include <base/stdint.h>
|
|
#include <util/endian.h>
|
|
#include <net/ethernet.h>
|
|
#include <net/ipv4.h>
|
|
#include <util/register.h>
|
|
#include <net/port.h>
|
|
|
|
namespace Net
|
|
{
|
|
class Tcp_state;
|
|
class Tcp_packet;
|
|
}
|
|
|
|
/**
|
|
* Data layout of this class conforms to an TCP packet (RFC 768)
|
|
*/
|
|
class Net::Tcp_packet
|
|
{
|
|
private:
|
|
|
|
using uint8_t = Genode::uint8_t;
|
|
using uint16_t = Genode::uint16_t;
|
|
using uint32_t = Genode::uint32_t;
|
|
using size_t = Genode::size_t;
|
|
using Exception = Genode::Exception;
|
|
|
|
uint16_t _src_port;
|
|
uint16_t _dst_port;
|
|
uint32_t _seq_nr;
|
|
uint32_t _ack_nr;
|
|
unsigned _data_offset : 4;
|
|
unsigned _reserved : 3;
|
|
unsigned _flags_msb : 1;
|
|
uint8_t _flags_lsb;
|
|
uint16_t _window_size;
|
|
uint16_t _checksum;
|
|
uint16_t _urgent_ptr;
|
|
uint32_t _data[0];
|
|
|
|
struct Flags : Genode::Register<16>
|
|
{
|
|
struct Fin : Bitfield<0, 1> { };
|
|
struct Syn : Bitfield<1, 1> { };
|
|
struct Rst : Bitfield<2, 1> { };
|
|
struct Psh : Bitfield<3, 1> { };
|
|
struct Ack : Bitfield<4, 1> { };
|
|
struct Urg : Bitfield<5, 1> { };
|
|
struct Ece : Bitfield<6, 1> { };
|
|
struct Crw : Bitfield<7, 1> { };
|
|
struct Ns : Bitfield<8, 1> { };
|
|
};
|
|
|
|
public:
|
|
|
|
class No_tcp_packet : Exception {};
|
|
|
|
static void validate_size(Genode::size_t size) {
|
|
if (size < sizeof(Tcp_packet)) { throw No_tcp_packet(); } }
|
|
|
|
|
|
/***************
|
|
** Accessors **
|
|
***************/
|
|
|
|
Port src_port() const { return Port(host_to_big_endian(_src_port)); }
|
|
Port dst_port() const { return Port(host_to_big_endian(_dst_port)); }
|
|
uint32_t seq_nr() const { return host_to_big_endian(_seq_nr); }
|
|
uint32_t ack_nr() const { return host_to_big_endian(_ack_nr); }
|
|
uint8_t data_offset() const { return _data_offset; }
|
|
uint16_t flags() const { return _flags_lsb | _flags_msb << 8; }
|
|
uint16_t window_size() const { return host_to_big_endian(_window_size); }
|
|
uint16_t checksum() const { return host_to_big_endian(_checksum); }
|
|
uint16_t urgent_ptr() const { return host_to_big_endian(_urgent_ptr); }
|
|
bool ns() const { return Flags::Ns::get(flags()); };
|
|
bool ece() const { return Flags::Ece::get(flags()); };
|
|
bool crw() const { return Flags::Crw::get(flags()); };
|
|
bool fin() const { return Flags::Fin::get(flags()); };
|
|
bool syn() const { return Flags::Syn::get(flags()); };
|
|
bool rst() const { return Flags::Rst::get(flags()); };
|
|
bool psh() const { return Flags::Psh::get(flags()); };
|
|
bool ack() const { return Flags::Ack::get(flags()); };
|
|
bool urg() const { return Flags::Urg::get(flags()); };
|
|
|
|
void src_port(Port p) { _src_port = host_to_big_endian(p.value); }
|
|
void dst_port(Port p) { _dst_port = host_to_big_endian(p.value); }
|
|
|
|
|
|
/**
|
|
* TCP checksum is calculated over the tcp datagram + an IPv4
|
|
* pseudo header.
|
|
*
|
|
* IPv4 pseudo header:
|
|
*
|
|
* --------------------------------------------------------------
|
|
* | src-ipaddr | dst-ipaddr | zero-field | prot.-id | tcp-length |
|
|
* | 4 bytes | 4 bytes | 1 byte | 1 byte | 2 bytes |
|
|
* --------------------------------------------------------------
|
|
*/
|
|
void update_checksum(Ipv4_address ip_src,
|
|
Ipv4_address ip_dst,
|
|
size_t tcp_size)
|
|
{
|
|
/* have to reset the checksum field for calculation */
|
|
_checksum = 0;
|
|
|
|
/* sum up pseudo header */
|
|
uint32_t sum = 0;
|
|
for (size_t i = 0; i < Ipv4_packet::ADDR_LEN; i += sizeof(uint16_t)) {
|
|
uint16_t s = ip_src.addr[i] << 8 | ip_src.addr[i + 1];
|
|
uint16_t d = ip_dst.addr[i] << 8 | ip_dst.addr[i + 1];
|
|
sum += s + d;
|
|
}
|
|
uint8_t prot[] = { 0, (uint8_t)Ipv4_packet::Protocol::TCP };
|
|
sum += host_to_big_endian(*(uint16_t *)&prot) + tcp_size;
|
|
|
|
/* sum up TCP packet itself */
|
|
size_t max = (tcp_size & 1) ? (tcp_size - 1) : tcp_size;
|
|
uint16_t * tcp = (uint16_t *)this;
|
|
for (size_t i = 0; i < max; i = i + sizeof(*tcp)) {
|
|
sum += host_to_big_endian(*tcp++); }
|
|
|
|
/* if TCP size is odd, append a zero byte */
|
|
if (tcp_size & 1) {
|
|
uint8_t last[] = { *((uint8_t *)this + (tcp_size - 1)), 0 };
|
|
sum += host_to_big_endian(*(uint16_t *)&last);
|
|
}
|
|
/* keep the last 16 bits of the 32 bit sum and add the carries */
|
|
while (sum >> 16) { sum = (sum & 0xffff) + (sum >> 16); }
|
|
|
|
/* one's complement of sum */
|
|
_checksum = host_to_big_endian((uint16_t)~sum);
|
|
}
|
|
|
|
/**
|
|
* Placement new
|
|
*/
|
|
void * operator new(__SIZE_TYPE__, void * addr) { return addr; }
|
|
|
|
|
|
/*********
|
|
** log **
|
|
*********/
|
|
|
|
void print(Genode::Output &output) const;
|
|
|
|
} __attribute__((packed));
|
|
|
|
#endif /* _TCP_H_ */
|