added licence header to wireshark lua script
[anytun.git] / src / encryptedPacket.h
blob1d834f51e2d5b1826d39085498bf3792ca83ae07
1 /*
2 * anytun
4 * The secure anycast tunneling protocol (satp) defines a protocol used
5 * for communication between any combination of unicast and anycast
6 * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel
7 * mode and allows tunneling of every ETHER TYPE protocol (e.g.
8 * ethernet, ip, arp ...). satp directly includes cryptography and
9 * message authentication based on the methodes used by SRTP. It is
10 * intended to deliver a generic, scaleable and secure solution for
11 * tunneling and relaying of packets of any protocol.
14 * Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl,
15 * Christian Pointner <satp@wirdorange.org>
17 * This file is part of Anytun.
19 * Anytun is free software: you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License version 3 as
21 * published by the Free Software Foundation.
23 * Anytun is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with anytun. If not, see <http://www.gnu.org/licenses/>.
32 #ifndef _ENCRYPTED_PACKET_H_
33 #define _ENCRYPTED_PACKET_H_
35 #include "datatypes.h"
36 #include "buffer.h"
38 class Cipher;
39 class EncryptedPacket : public Buffer
41 public:
43 /**
44 * Packet constructor
45 * @param the length of the payload
46 * @param allow reallocation of buffer
48 EncryptedPacket(u_int32_t payload_length, bool allow_realloc = false);
50 /**
51 * Packet destructor
53 ~EncryptedPacket() {};
55 /**
56 * Get the sequence number
57 * @return seqence number
59 seq_nr_t getSeqNr() const;
61 /**
62 * Set the seqence number
63 * @param seq_nr sequence number
65 void setSeqNr(seq_nr_t seq_nr);
67 /**
68 * Get the sender id
69 * @return sender id
71 sender_id_t getSenderId() const;
73 /**
74 * Set the sender id
75 * @param sender_id sender id
77 void setSenderId(sender_id_t sender_id);
79 /**
80 * Get the mulitplex id
81 * @return multiplex id
83 mux_t getMux() const;
85 /**
86 * Set the multiplex id
87 * @param mux multiplex id
89 void setMux(mux_t mux);
91 /**
92 * Set the header of a packet
93 * @param seq_nr sequence number
94 * @param sender_id sender id
95 * @param mux multiplex id
97 void setHeader(seq_nr_t seq_nr, sender_id_t sender_id, mux_t mux);
99 /**
100 * Get the length of the payload
101 * @return the length of the payload
103 u_int32_t getPayloadLength() const;
106 * Set the length of the payload
107 * @param length length of the payload
109 void setPayloadLength(u_int32_t payload_length);
112 * Get the the payload
113 * @return the Pointer to the payload
115 u_int8_t* getPayload();
118 u_int8_t* getAuthenticatedPortion();
119 u_int32_t getAuthenticatedPortionLength();
121 void withAuthTag(bool b);
122 void addAuthTag();
123 void removeAuthTag();
124 u_int8_t* getAuthTag();
125 u_int32_t getAuthTagLength();
127 private:
128 EncryptedPacket();
129 EncryptedPacket(const EncryptedPacket &src);
131 void reinit();
133 struct HeaderStruct
135 seq_nr_t seq_nr;
136 sender_id_t sender_id;
137 mux_t mux;
138 }__attribute__((__packed__));
140 struct HeaderStruct* header_;
141 u_int8_t * payload_;
142 u_int8_t * auth_tag_;
143 static const u_int32_t AUTHTAG_SIZE = 10; // TODO: hardcoded size
146 #endif