ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/connection.C
(Generate patch)

Comparing gvpe/src/connection.C (file contents):
Revision 1.64 by pcg, Tue Dec 4 15:01:12 2007 UTC vs.
Revision 1.67 by pcg, Thu Aug 7 16:34:21 2008 UTC

91 rsachallenge chg; 91 rsachallenge chg;
92}; 92};
93 93
94struct rsa_cache : list<rsa_entry> 94struct rsa_cache : list<rsa_entry>
95{ 95{
96 void cleaner_cb (ev::timer &w, int revents); ev::timer cleaner; 96 inline void cleaner_cb (ev::timer &w, int revents); ev::timer cleaner;
97 97
98 bool find (const rsaid &id, rsachallenge &chg) 98 bool find (const rsaid &id, rsachallenge &chg)
99 { 99 {
100 for (iterator i = begin (); i != end (); ++i) 100 for (iterator i = begin (); i != end (); ++i)
101 { 101 {
130 if (!cleaner.is_active ()) 130 if (!cleaner.is_active ())
131 cleaner.again (); 131 cleaner.again ();
132 } 132 }
133 133
134 rsa_cache () 134 rsa_cache ()
135 : cleaner (this, &rsa_cache::cleaner_cb)
136 { 135 {
136 cleaner.set<rsa_cache, &rsa_cache::cleaner_cb> (this);
137 cleaner.set (RSA_TTL, RSA_TTL); 137 cleaner.set (RSA_TTL, RSA_TTL);
138 } 138 }
139 139
140} rsa_cache; 140} rsa_cache;
141 141
153 } 153 }
154} 154}
155 155
156////////////////////////////////////////////////////////////////////////////// 156//////////////////////////////////////////////////////////////////////////////
157 157
158void pkt_queue::put (net_packet *p) 158pkt_queue::pkt_queue (double max_ttl, int max_queue)
159: max_ttl (max_ttl), max_queue (max_queue)
159{ 160{
160 if (queue[i]) 161 queue = new pkt [max_queue];
161 {
162 delete queue[i];
163 j = (j + 1) % QUEUEDEPTH;
164 }
165 162
166 queue[i] = p;
167
168 i = (i + 1) % QUEUEDEPTH;
169}
170
171net_packet *pkt_queue::get ()
172{
173 net_packet *p = queue[j];
174
175 if (p)
176 {
177 queue[j] = 0;
178 j = (j + 1) % QUEUEDEPTH;
179 }
180
181 return p;
182}
183
184pkt_queue::pkt_queue ()
185{
186 memset (queue, 0, sizeof (queue));
187 i = 0; 163 i = 0;
188 j = 0; 164 j = 0;
165
166 expire.set<pkt_queue, &pkt_queue::expire_cb> (this);
189} 167}
190 168
191pkt_queue::~pkt_queue () 169pkt_queue::~pkt_queue ()
192{ 170{
193 for (i = QUEUEDEPTH; --i > 0; ) 171 while (net_packet *p = get ())
172 delete p;
173
194 delete queue[i]; 174 delete [] queue;
175}
176
177void pkt_queue::expire_cb (ev::timer &w, int revents)
178{
179 ev_tstamp expire = ev_now () - max_ttl;
180
181 for (;;)
182 {
183 if (empty ())
184 break;
185
186 double diff = queue[j].tstamp - expire;
187
188 if (diff >= 0.)
189 {
190 w.start (diff > 0.5 ? diff : 0.5);
191 break;
192 }
193
194 delete get ();
195 }
196}
197
198void pkt_queue::put (net_packet *p)
199{
200 ev_tstamp now = ev_now ();
201
202 // start expiry timer
203 if (empty ())
204 expire.start (max_ttl);
205
206 int ni = i + 1 == max_queue ? 0 : i + 1;
207
208 if (ni == j)
209 delete get ();
210
211 queue[i].pkt = p;
212 queue[i].tstamp = now;
213
214 i = ni;
215}
216
217net_packet *pkt_queue::get ()
218{
219 if (empty ())
220 return 0;
221
222 net_packet *p = queue[j].pkt;
223 queue[j].pkt = 0;
224
225 j = j + 1 == max_queue ? 0 : j + 1;
226
227 return p;
195} 228}
196 229
197struct net_rateinfo 230struct net_rateinfo
198{ 231{
199 u32 host; 232 u32 host;
590{ 623{
591 slog (L_TRACE, _("%s: possible connection establish (ictx %d, octx %d)"), conf->nodename, !!ictx, !!octx); 624 slog (L_TRACE, _("%s: possible connection establish (ictx %d, octx %d)"), conf->nodename, !!ictx, !!octx);
592 625
593 if (ictx && octx) 626 if (ictx && octx)
594 { 627 {
595 connectmode = conf->connectmode;
596
597 // make sure rekeying timeouts are slightly asymmetric 628 // make sure rekeying timeouts are slightly asymmetric
598 ev::tstamp rekey_interval = ::conf.rekey + (conf->id > THISNODE->id ? 10 : 0); 629 ev::tstamp rekey_interval = ::conf.rekey + (conf->id > THISNODE->id ? 10 : 0);
599 rekey.start (rekey_interval, rekey_interval); 630 rekey.start (rekey_interval, rekey_interval);
600 keepalive.start (::conf.keepalive); 631 keepalive.start (::conf.keepalive);
601 632
602 // send queued packets 633 // send queued packets
603 if (ictx && octx) 634 if (ictx && octx)
604 { 635 {
605 while (tap_packet *p = (tap_packet *)data_queue.get ()) 636 while (tap_packet *p = (tap_packet *)data_queue.get ())
606 { 637 {
607 send_data_packet (p); 638 if (p->len) send_data_packet (p);
608 delete p; 639 delete p;
609 } 640 }
610 641
611 while (vpn_packet *p = (vpn_packet *)vpn_queue.get ()) 642 while (vpn_packet *p = (vpn_packet *)vpn_queue.get ())
612 { 643 {
613 send_vpn_packet (p, si, IPTOS_RELIABILITY); 644 if (p->len) send_vpn_packet (p, si, IPTOS_RELIABILITY);
614 delete p; 645 delete p;
615 } 646 }
616 } 647 }
617 } 648 }
618 else 649 else
745 send_vpn_packet (r, si); 776 send_vpn_packet (r, si);
746 777
747 delete r; 778 delete r;
748} 779}
749 780
750void 781inline void
751connection::establish_connection_cb (ev::timer &w, int revents) 782connection::establish_connection_cb (ev::timer &w, int revents)
752{ 783{
753 if (!ictx 784 if (!ictx
754 && conf != THISNODE 785 && conf != THISNODE
755 && connectmode != conf_node::C_NEVER 786 && connectmode != conf_node::C_NEVER
756 && connectmode != conf_node::C_DISABLED 787 && connectmode != conf_node::C_DISABLED
757 && !w.is_active ()) 788 && !w.is_active ())
758 { 789 {
790 // a bit hacky, if ondemand, and packets are no longer queued, then reset the connection
791 // and stop trying. should probably be handled by a per-connection expire handler.
792 if (connectmode == conf_node::C_ONDEMAND && vpn_queue.empty () && data_queue.empty ())
793 {
794 reset_connection ();
795 return;
796 }
797
759 ev::tstamp retry_int = ev::tstamp (retry_cnt & 3 798 ev::tstamp retry_int = ev::tstamp (retry_cnt & 3
760 ? (retry_cnt & 3) + 1 799 ? (retry_cnt & 3) + 1
761 : 1 << (retry_cnt >> 2)); 800 : 1 << (retry_cnt >> 2));
762 801
763 reset_si (); 802 reset_si ();
808 conf->nodename, (const char *)si); 847 conf->nodename, (const char *)si);
809 848
810 if (::conf.script_node_down) 849 if (::conf.script_node_down)
811 { 850 {
812 run_script_cb cb; 851 run_script_cb cb;
813 callback_set (cb, this, connection, script_node_down); 852 cb.set<connection, &connection::script_node_down> (this);
814 if (!run_script (cb, false)) 853 if (!run_script (cb, false))
815 slog (L_WARN, _("node-down command execution failed, continuing.")); 854 slog (L_WARN, _("node-down command execution failed, continuing."));
816 } 855 }
817 } 856 }
818 857
839 send_reset (si); 878 send_reset (si);
840 879
841 reset_connection (); 880 reset_connection ();
842} 881}
843 882
844void 883inline void
845connection::rekey_cb (ev::timer &w, int revents) 884connection::rekey_cb (ev::timer &w, int revents)
846{ 885{
847 reset_connection (); 886 reset_connection ();
848 establish_connection (); 887 establish_connection ();
849} 888}
1047 p->prot_major, p->prot_minor); 1086 p->prot_major, p->prot_minor);
1048 1087
1049 if (::conf.script_node_up) 1088 if (::conf.script_node_up)
1050 { 1089 {
1051 run_script_cb cb; 1090 run_script_cb cb;
1052 callback_set (cb, this, connection, script_node_up); 1091 cb.set<connection, &connection::script_node_up> (this);
1053 if (!run_script (cb, false)) 1092 if (!run_script (cb, false))
1054 slog (L_WARN, _("node-up command execution failed, continuing.")); 1093 slog (L_WARN, _("node-up command execution failed, continuing."));
1055 } 1094 }
1056 1095
1057 break; 1096 break;
1176 send_reset (rsi); 1215 send_reset (rsi);
1177 break; 1216 break;
1178 } 1217 }
1179} 1218}
1180 1219
1220inline void
1181void connection::keepalive_cb (ev::timer &w, int revents) 1221connection::keepalive_cb (ev::timer &w, int revents)
1182{ 1222{
1183 if (ev_now () >= last_activity + ::conf.keepalive + 30) 1223 if (ev_now () >= last_activity + ::conf.keepalive + 30)
1184 { 1224 {
1185 reset_connection (); 1225 reset_connection ();
1186 establish_connection (); 1226 establish_connection ();
1231 asprintf (&env, "DESTNODE=%s", conf->nodename); putenv (env); 1271 asprintf (&env, "DESTNODE=%s", conf->nodename); putenv (env);
1232 asprintf (&env, "DESTIP=%s", si.ntoa ()); putenv (env); 1272 asprintf (&env, "DESTIP=%s", si.ntoa ()); putenv (env);
1233 asprintf (&env, "DESTPORT=%d", ntohs (si.port)); putenv (env); 1273 asprintf (&env, "DESTPORT=%d", ntohs (si.port)); putenv (env);
1234} 1274}
1235 1275
1276inline const char *
1236const char *connection::script_node_up () 1277connection::script_node_up ()
1237{ 1278{
1238 script_init_connect_env (); 1279 script_init_connect_env ();
1239 1280
1240 putenv ((char *)"STATE=up"); 1281 putenv ((char *)"STATE=up");
1241 1282
1246 ::conf.script_node_up ? ::conf.script_node_up : "node-up"); 1287 ::conf.script_node_up ? ::conf.script_node_up : "node-up");
1247 1288
1248 return filename; 1289 return filename;
1249} 1290}
1250 1291
1292inline const char *
1251const char *connection::script_node_down () 1293connection::script_node_down ()
1252{ 1294{
1253 script_init_connect_env (); 1295 script_init_connect_env ();
1254 1296
1255 putenv ((char *)"STATE=down"); 1297 putenv ((char *)"STATE=down");
1256 1298
1262 1304
1263 return filename; 1305 return filename;
1264} 1306}
1265 1307
1266connection::connection (struct vpn *vpn, conf_node *conf) 1308connection::connection (struct vpn *vpn, conf_node *conf)
1267: vpn(vpn), conf(conf) 1309: vpn(vpn), conf(conf),
1268, rekey (this, &connection::rekey_cb)
1269, keepalive (this, &connection::keepalive_cb)
1270, establish_connection (this, &connection::establish_connection_cb)
1271#if ENABLE_DNS 1310#if ENABLE_DNS
1272, dns (0) 1311 dns (0),
1273#endif 1312#endif
1313 data_queue(conf->max_ttl, conf->max_queue),
1314 vpn_queue(conf->max_ttl, conf->max_queue)
1274{ 1315{
1316 rekey .set<connection, &connection::rekey_cb > (this);
1317 keepalive .set<connection, &connection::keepalive_cb > (this);
1318 establish_connection.set<connection, &connection::establish_connection_cb> (this);
1319
1275 octx = ictx = 0; 1320 octx = ictx = 0;
1276 retry_cnt = 0; 1321 retry_cnt = 0;
1277 1322
1278 if (!conf->protocols) // make sure some protocol is enabled 1323 if (!conf->protocols) // make sure some protocol is enabled
1279 conf->protocols = PROT_UDPv4; 1324 conf->protocols = PROT_UDPv4;
1280 1325
1281 connectmode = conf_node::C_ALWAYS; // initial setting 1326 connectmode = conf->connectmode;
1327
1328 // queue a dummy packet to force an initial connection attempt
1329 if (connectmode != conf_node::C_ALWAYS && connectmode != conf_node::C_DISABLED)
1330 {
1331 net_packet *p = new net_packet;
1332 p->len = 0;
1333 vpn_queue.put (p);
1334 }
1335
1282 reset_connection (); 1336 reset_connection ();
1283} 1337}
1284 1338
1285connection::~connection () 1339connection::~connection ()
1286{ 1340{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines