search for: protocol_key

Displaying 15 results from an estimated 15 matches for "protocol_key".

2020 Jun 19
2
SegFault when using TunnelServer=yes
...ddress from Office: 94.155.19.130 port 13935 UDP address of Office set to 94.155.19.130 port 13935 Got REQ_KEY from Backbone (164.138.216.106 port 655): 15 Office Lukav_Beast Program received signal SIGSEGV, Segmentation fault. 0x000055555556de41 in send_ans_key (to=to at entry=0x555555851060) at protocol_key.c:382 382        return send_request(to->nexthop->connection, "%d %s %s %s %d %d %d %d", ANS_KEY, (gdb) bt #0  0x000055555556de41 in send_ans_key (to=to at entry=0x555555851060) at protocol_key.c:382 #1  0x000055555556e169 in req_key_h (c=0x555555851be0, request=0x555555854bb7 &q...
2020 Jul 27
3
SegFault when using TunnelServer=yes
...9.130 port 13935 > UDP address of Office set to 94.155.19.130 port 13935 > Got REQ_KEY from Backbone (164.138.216.106 port 655): 15 Office Lukav_Beast > > Program received signal SIGSEGV, Segmentation fault. > 0x000055555556de41 in send_ans_key (to=to at entry=0x555555851060) at > protocol_key.c:382 > 382        return send_request(to->nexthop->connection, "%d %s %s %s %d > %d %d %d", ANS_KEY, > (gdb) bt > #0  0x000055555556de41 in send_ans_key (to=to at entry=0x555555851060) at > protocol_key.c:382 > #1  0x000055555556e169 in req_key_h (c=0x555555851be0...
2020 Jul 27
0
SegFault when using TunnelServer=yes
...ddress from Office: 94.155.19.130 port 13935 UDP address of Office set to 94.155.19.130 port 13935 Got REQ_KEY from Backbone (164.138.216.106 port 655): 15 Office Lukav_Beast Program received signal SIGSEGV, Segmentation fault. 0x000055555556de41 in send_ans_key (to=to at entry=0x555555851060) at protocol_key.c:382 382        return send_request(to->nexthop->connection, "%d %s %s %s %d %d %d %d", ANS_KEY, (gdb) bt #0  0x000055555556de41 in send_ans_key (to=to at entry=0x555555851060) at protocol_key.c:382 #1  0x000055555556e169 in req_key_h (c=0x555555851be0, request=0x555555854bb7 &q...
2020 Jul 28
0
SegFault when using TunnelServer=yes
....130 port 13935 > UDP address of Office set to 94.155.19.130 port 13935 > Got REQ_KEY from Backbone (164.138.216.106 port 655): 15 Office Lukav_Beast > > Program received signal SIGSEGV, Segmentation fault. > 0x000055555556de41 in send_ans_key (to=to at entry=0x555555851060) at > protocol_key.c:382 > 382        return send_request(to->nexthop->connection, "%d %s %s %s %d > %d %d %d", ANS_KEY, > (gdb) bt > #0  0x000055555556de41 in send_ans_key (to=to at entry=0x555555851060) at > protocol_key.c:382 > #1  0x000055555556e169 in req_key_h (c=0x555555851be0...
2010 Nov 13
3
[PATCH 1/4] Experimental IFF_ONE_QUEUE support for Linux
--- doc/tinc.conf.5.in | 3 +++ src/linux/device.c | 7 +++++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/doc/tinc.conf.5.in b/doc/tinc.conf.5.in index 2bfd5fe..01f7f81 100644 --- a/doc/tinc.conf.5.in +++ b/doc/tinc.conf.5.in @@ -255,6 +255,9 @@ a lookup if your DNS server is not responding. This does not affect resolving hostnames to IP addresses from the host
2010 Sep 20
0
No subject
...} } =20 diff --git a/src/protocol.h b/src/protocol.h index 2aed26d..251e847 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -25,7 +25,7 @@ incompatible version have different protocols. */ =20 -#define PROT_CURRENT 17 +#define PROT_CURRENT 18 =20 /* Silly Windows */ =20 diff --git a/src/protocol_key.c b/src/protocol_key.c index e2e4be5..1dc694d 100644 --- a/src/protocol_key.c +++ b/src/protocol_key.c @@ -310,8 +310,16 @@ update_node_udp(from, &sa); } =20 - if(from->options & OPTION_PMTU_DISCOVERY && !from->mtuevent) - send_mtu_probe(from); - + if(from->options &a...
2005 Apr 08
1
TrustedNodes option in TINC
...c.conf like "TrustedNodes=aaa,bbb,ccc" ? With this option : (a) any ADD_EDGE/ADD_SUBNET/ANS_KEY/... will be cancelled if it comes from a non-trusted connection (b) all REQ_KEY will be sent to trusted nodes only. (a) is easy, but we do not know how to manage (b). In net_packet.c and protocol_key.c we see : send_req_key(n->nexthop->connection, myself, n); The question is : how to be sure that "n->nexthop->connection" will be a "trusted connection" ? (c->name in TrustedNode). One of our question is : if we cancel any ADD_* from untrusted node, ca...
2008 Sep 30
1
Problem compiling tinc-1.0.8 on gcc-2.95
...Sep 25 11:19:53 2008 @@ -260,7 +260,7 @@ /* If the node is not reachable anymore but we remember it had an edge to us, clean it up */ - if(!to->status.reachable) { + if(!to->status.st.reachable) { e = lookup_edge(to, myself); if(e) { if(!tunnelserver) diff -ubr tinc-1.0.8/src/protocol_key.c tinc-1.0.8.my/src/protocol_key.c --- tinc-1.0.8/src/protocol_key.c Wed Apr 26 15:53:05 2006 +++ tinc-1.0.8.my/src/protocol_key.c Thu Sep 25 11:56:40 2008 @@ -75,8 +75,8 @@ return false; } - n->status.validkey = false; - n->status.waitingforkey = false; + n->status.st.validkey = fa...
2006 Jun 01
1
compile cvs trunk
...ALEDIR=\"/usr/local/share/locale\" -DLOCALSTATEDIR=\"/usr/local/var\" -g -O2 -o tincd conf.o connection.o edge.o event.o graph.o logger.o meta.o net.o net_packet.o net_setup.o net_socket.o netutl.o node.o process.o protocol.o protocol_auth.o protocol_edge.o protocol_misc.o protocol_key.o protocol_subnet.o route.o subnet.o tincd.o ../lib/libvpn.a -lcrypto -lz -llzo graph.o: In function `sssp_bfs':/usr/src/tinc/src/graph.c:278: undefined reference to `device' ... tincd.o: In function `main':/usr/src/tinc/src/tincd.c:504: undefined reference to `dump_device_stats...
2014 Nov 22
2
Tinc 1.0.24 build failed on OSX Mavericks
...nnection.o dropin.o dummy_device.o edge.o event.o fake-getaddrinfo.o fake-getnameinfo.o getopt.o getopt1.o graph.o list.o logger.o meta.o multicast_device.o net.o net_packet.o net_setup.o net_socket.o netutl.o node.o pidfile.o process.o protocol.o protocol_auth.o protocol_edge.o protocol_misc.o protocol_key.o protocol_subnet.o raw_socket_device.o route.o subnet.o tincd.o utils.o xmalloc.o bsd/device.o -lcrypto -lz -llzo2 clang: warning: argument unused during compilation: '-pie' Undefined symbols for architecture x86_64: "_res_9_init", referenced from: _main_loop...
2009 Jun 21
0
Segmentation fault
...0 Delta tinc.ufonet[2366]: Old connection_t for Jupiter (82.170.170.203 port 655) status 00d0 still lingering, deleting... Jun 21 03:52:10 Delta tinc.ufonet[2366]: Got fatal signal 11 (Segmentation fault) Jun 21 03:52:10 Delta tinc.ufonet[2366]: Checkpoint trace: meta.c:42 <- protocol.c:76 <- protocol_key.c:91 <- net_packet.c:302 <- net_packet.c:69 <- event.c:106 <- event.c:115 <- protocol.c:238 <- route.c:140 <- conf.c:82 <- conf.c:82 <- conf.c:82 <- conf.c:82 <- conf.c:67 <- connection.c:79 <- connection.c:130... Jun 21 03:52:10 Delta tinc.ufonet[2366]: Tryin...
2007 Jul 20
1
Bugginess since crypto changes
...gnificant when there's still a crash going on. crash 1: ==28913== Invalid read of size 8 ==28913== at 0x412150: list_unlink_node (list.c:97) ==28913== by 0x412278: list_delete_node (list.c:111) ==28913== by 0x407143: flush_queue (net_packet.c:451) ==28913== by 0x40E2AE: ans_key_h (protocol_key.c:239) ==28913== by 0x40BC58: receive_request (protocol.c:157) ==28913== by 0x405B87: receive_meta (meta.c:138) ==28913== by 0x406867: handle_meta_connection_data (net.c:225) ==28913== by 0x4C0FAC0: event_base_loop (event.c:318) ==28913== by 0x40601F: main_loop (net.c:374) ==28913==...
2008 Sep 23
2
fatal signal 11 (segmentation)
....vpn[11682]: /dev/net/tun is a Linux tun/tap device (tun mode) Sep 21 18:29:38 tinc.vpn[11682]: Ready Sep 21 18:30:31 tinc.vpn[11682]: Got fatal signal 11 (Segmentation fault) Sep 21 18:30:31 tinc.vpn[11682]: Checkpoint trace: meta.c:42 <- protocol.c:76 <- node.c:157 <- node.c:157 <- protocol_key.c:168 <- protocol.c:137 <- meta.c:141 <- net.c:294 <- net.c:121 <- event.c:115 <- net.c:294 <- connection.c:79 <- connection.c:111 <- net.c:121 <- event.c:115 <- netutl.c:20 8... Sep 21 18:30:31 tinc.vpn[11682]: Trying to re-execute in 5 seconds... Sep 21 18:30...
2014 Apr 13
1
[Bug 915] New: segfault in error case : expr_evaluate_payload not checking payload->payload.desc being null
...= 0, first_column = 0, last_column = 0}, {nle = 0x0}}}, desc = 0x4321a0 <proto_ip>} (gdb) p ctx->pctx.protocol[2].desc $11 = (const struct proto_desc *) 0x4321a0 <proto_ip> (gdb) p *(ctx->pctx.protocol[2].desc) $12 = {name = 0x432150 "ip", base = PROTO_BASE_NETWORK_HDR, protocol_key = 8, protocols = {{num = 1, desc = 0x430c80 <proto_icmp>}, {num = 50, desc = 0x430440 <proto_esp>}, {num = 51, desc = 0x430140 <proto_ah>}, {num = 108, desc = 0x430740 <proto_comp>}, {num = 17, desc = 0x430fa0 <proto_udp>}, {num = 136, desc = 0x4312a0 <proto_...
2003 Aug 04
1
OpenBSD 3.2 and Release 1
...h U tinc/src/net_packet.c U tinc/src/net_setup.c U tinc/src/net_socket.c U tinc/src/netutl.c U tinc/src/netutl.h U tinc/src/node.c U tinc/src/node.h U tinc/src/process.c U tinc/src/process.h U tinc/src/protocol.c U tinc/src/protocol.h U tinc/src/protocol_auth.c U tinc/src/protocol_edge.c U tinc/src/protocol_key.c U tinc/src/protocol_misc.c U tinc/src/protocol_subnet.c U tinc/src/route.c U tinc/src/route.h U tinc/src/subnet.c U tinc/src/subnet.h U tinc/src/tincd.c cvs server: Updating tinc/src/cygwin U tinc/src/cygwin/device.c cvs server: Updating tinc/src/darwin U tinc/src/darwin/device.c cvs server: Upda...