Imported Upstream version 0.3.5
[anytun.git] / src / anyrtpproxy / rtpSession.h
1 /*
2  *  anytun
3  *
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 methods 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.
12  *
13  *
14  *  Copyright (C) 2007-2014 Markus Grüneis, Othmar Gsenger, Erwin Nindl,
15  *                          Christian Pointner <satp@wirdorange.org>
16  *
17  *  This file is part of Anytun.
18  *
19  *  Anytun is free software: you can redistribute it and/or modify
20  *  it under the terms of the GNU General Public License as published by
21  *  the Free Software Foundation, either version 3 of the License, or
22  *  any later version.
23  *
24  *  Anytun is distributed in the hope that it will be useful,
25  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  *  GNU General Public License for more details.
28  *
29  *  You should have received a copy of the GNU General Public License
30  *  along with Anytun.  If not, see <http://www.gnu.org/licenses/>.
31  *
32  *  In addition, as a special exception, the copyright holders give
33  *  permission to link the code of portions of this program with the
34  *  OpenSSL library under certain conditions as described in each
35  *  individual source file, and distribute linked combinations
36  *  including the two.
37  *  You must obey the GNU General Public License in all respects
38  *  for all of the code used other than OpenSSL.  If you modify
39  *  file(s) with this exception, you may extend this exception to your
40  *  version of the file(s), but you are not obligated to do so.  If you
41  *  do not wish to do so, delete this exception statement from your
42  *  version.  If you delete this exception statement from all source
43  *  files in the program, then also delete it here.
44  */
45
46 #ifndef _RTPSESSION_H_
47 #define _RTPSESSION_H_
48
49 #include <boost/asio.hpp>
50
51 #include "../threadUtils.hpp"
52
53 #include <boost/archive/text_oarchive.hpp>
54 #include <boost/archive/text_iarchive.hpp>
55
56 class RtpSession
57 {
58 public:
59   typedef boost::asio::ip::udp proto;
60
61   RtpSession(const std::string& call_id);
62
63   bool isDead();
64   bool isDead(bool d);
65
66   bool isComplete();
67   bool isComplete(bool c);
68
69   proto::endpoint getLocalEnd1();
70   RtpSession& setLocalEnd1(proto::endpoint e);
71   proto::endpoint getLocalEnd2();
72   RtpSession& setLocalEnd2(proto::endpoint e);
73
74   proto::endpoint getRemoteEnd1();
75   RtpSession& setRemoteEnd1(proto::endpoint e);
76   proto::endpoint getRemoteEnd2();
77   RtpSession& setRemoteEnd2(proto::endpoint e);
78
79   RtpSession& setSeen1();
80   bool getSeen1();
81
82   RtpSession& setSeen2();
83   bool getSeen2();
84
85 private:
86   RtpSession(const RtpSession& src);
87
88   void reinit();
89
90   //TODO: check if this is ok
91   friend class boost::serialization::access;
92   template<class Archive>
93   void serialize(Archive& ar, const unsigned int version) {
94     Lock lock(mutex_);
95
96     // address of local_end1 and local_end2 are always equal
97     std::string local_addr(local_end1_.address().to_string());
98     uint16_t local_port1 = local_end1_.port();
99     uint16_t local_port2 = local_end2_.port();
100
101     std::string remote_addr1(remote_end1_.address().to_string());
102     uint16_t remote_port1 = remote_end1_.port();
103     std::string remote_addr2(remote_end2_.address().to_string());
104     uint16_t remote_port2 = remote_end2_.port();
105
106     ar& dead_;
107     ar& complete_;
108     ar& local_addr;
109     ar& local_port1;
110     ar& local_port2;
111     ar& remote_addr1;
112     ar& remote_port1;
113     ar& remote_addr2;
114     ar& remote_port2;
115     ar& seen1_;
116     ar& seen2_;
117
118     proto::endpoint local_end1(boost::asio::ip::address::from_string(local_addr), local_port1);
119     local_end1_ = local_end1;
120     proto::endpoint local_end2(boost::asio::ip::address::from_string(local_addr), local_port2);
121     local_end2_ = local_end2;
122
123     proto::endpoint remote_end1(boost::asio::ip::address::from_string(remote_addr1), remote_port1);
124     remote_end1_ = remote_end1;
125     proto::endpoint remote_end2(boost::asio::ip::address::from_string(remote_addr2), remote_port2);
126     remote_end2_ = remote_end2;
127
128     if(complete_ && !dead_) {
129       reinit();
130     }
131
132     in_sync_ = true;
133   }
134
135   bool in_sync_;
136   ::Mutex mutex_;
137
138   const std::string& call_id_;
139   bool dead_;
140   bool complete_;
141   proto::endpoint local_end1_, local_end2_;
142   proto::endpoint remote_end1_, remote_end2_;
143   bool seen1_,seen2_; //has at least 1 packet been recieved?
144 };
145
146
147 #endif