mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
broker integration: add events for incoming connection status updates
e.g. for the listen() side of connections to tell when peers have connected or disconnected.
This commit is contained in:
parent
0253f49a94
commit
afc5767165
14 changed files with 182 additions and 90 deletions
|
@ -1 +1 @@
|
|||
Subproject commit b0d97b1fcbdcb9027bd34031c8706be0c0ab315b
|
||||
Subproject commit 4fae86cd67b999f48a2f2f354c91e4b1b343b2a1
|
|
@ -8,6 +8,7 @@
|
|||
#include "util.h"
|
||||
#include "Var.h"
|
||||
#include "Reporter.h"
|
||||
#include "comm/comm.bif.h"
|
||||
#include "comm/data.bif.h"
|
||||
#include "comm/messaging.bif.h"
|
||||
#include "comm/store.bif.h"
|
||||
|
@ -444,7 +445,8 @@ int comm::Manager::GetFlags(Val* flags)
|
|||
void comm::Manager::GetFds(iosource::FD_Set* read, iosource::FD_Set* write,
|
||||
iosource::FD_Set* except)
|
||||
{
|
||||
read->Insert(endpoint->peer_status().fd());
|
||||
read->Insert(endpoint->outgoing_connection_status().fd());
|
||||
read->Insert(endpoint->incoming_connection_status().fd());
|
||||
|
||||
for ( const auto& ps : print_subscriptions )
|
||||
read->Insert(ps.second.fd());
|
||||
|
@ -523,56 +525,84 @@ static RecordVal* response_to_val(broker::store::response r)
|
|||
void comm::Manager::Process()
|
||||
{
|
||||
bool idle = true;
|
||||
auto peer_status_updates = endpoint->peer_status().want_pop();
|
||||
auto outgoing_connection_updates =
|
||||
endpoint->outgoing_connection_status().want_pop();
|
||||
auto incoming_connection_updates =
|
||||
endpoint->incoming_connection_status().want_pop();
|
||||
|
||||
if ( ! peer_status_updates.empty() )
|
||||
for ( auto& u : outgoing_connection_updates )
|
||||
{
|
||||
idle = false;
|
||||
|
||||
for ( auto& u : peer_status_updates )
|
||||
{
|
||||
if ( ! u.relation.remote() )
|
||||
continue;
|
||||
|
||||
switch ( u.status ) {
|
||||
case broker::peer_status::tag::established:
|
||||
if ( Comm::remote_connection_established )
|
||||
case broker::outgoing_connection_status::tag::established:
|
||||
if ( Comm::outgoing_connection_established )
|
||||
{
|
||||
val_list* vl = new val_list;
|
||||
vl->append(new StringVal(u.relation.remote_tuple().first));
|
||||
vl->append(new PortVal(u.relation.remote_tuple().second,
|
||||
TRANSPORT_TCP));
|
||||
vl->append(new StringVal(u.peer_name));
|
||||
mgr.QueueEvent(Comm::remote_connection_established, vl);
|
||||
mgr.QueueEvent(Comm::outgoing_connection_established, vl);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case broker::peer_status::tag::disconnected:
|
||||
if ( Comm::remote_connection_broken )
|
||||
case broker::outgoing_connection_status::tag::disconnected:
|
||||
if ( Comm::outgoing_connection_broken )
|
||||
{
|
||||
val_list* vl = new val_list;
|
||||
vl->append(new StringVal(u.relation.remote_tuple().first));
|
||||
vl->append(new PortVal(u.relation.remote_tuple().second,
|
||||
TRANSPORT_TCP));
|
||||
mgr.QueueEvent(Comm::remote_connection_broken, vl);
|
||||
mgr.QueueEvent(Comm::outgoing_connection_broken, vl);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case broker::peer_status::tag::incompatible:
|
||||
if ( Comm::remote_connection_incompatible )
|
||||
case broker::outgoing_connection_status::tag::incompatible:
|
||||
if ( Comm::outgoing_connection_incompatible )
|
||||
{
|
||||
val_list* vl = new val_list;
|
||||
vl->append(new StringVal(u.relation.remote_tuple().first));
|
||||
vl->append(new PortVal(u.relation.remote_tuple().second,
|
||||
TRANSPORT_TCP));
|
||||
mgr.QueueEvent(Comm::remote_connection_incompatible, vl);
|
||||
mgr.QueueEvent(Comm::outgoing_connection_incompatible, vl);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
reporter->InternalWarning("unknown broker::peer_status::tag : %d",
|
||||
reporter->InternalWarning(
|
||||
"unknown broker::outgoing_connection_status::tag : %d",
|
||||
static_cast<int>(u.status));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
for ( auto& u : incoming_connection_updates )
|
||||
{
|
||||
idle = false;
|
||||
|
||||
switch ( u.status ) {
|
||||
case broker::incoming_connection_status::tag::established:
|
||||
if ( Comm::incoming_connection_established )
|
||||
{
|
||||
val_list* vl = new val_list;
|
||||
vl->append(new StringVal(u.peer_name));
|
||||
mgr.QueueEvent(Comm::incoming_connection_established, vl);
|
||||
}
|
||||
break;
|
||||
|
||||
case broker::incoming_connection_status::tag::disconnected:
|
||||
if ( Comm::incoming_connection_broken )
|
||||
{
|
||||
val_list* vl = new val_list;
|
||||
vl->append(new StringVal(u.peer_name));
|
||||
mgr.QueueEvent(Comm::incoming_connection_broken, vl);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
reporter->InternalWarning(
|
||||
"unknown broker::incoming_connection_status::tag : %d",
|
||||
static_cast<int>(u.status));
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -11,3 +11,56 @@ function Comm::enable%(%): bool
|
|||
%{
|
||||
return new Val(comm_mgr->Enable(), TYPE_BOOL);
|
||||
%}
|
||||
|
||||
event Comm::outgoing_connection_established%(peer_address: string,
|
||||
peer_port: port,
|
||||
peer_name: string%);
|
||||
|
||||
event Comm::outgoing_connection_broken%(peer_address: string,
|
||||
peer_port: port%);
|
||||
|
||||
event Comm::outgoing_connection_incompatible%(peer_address: string,
|
||||
peer_port: port%);
|
||||
|
||||
event Comm::incoming_connection_established%(peer_name: string%);
|
||||
|
||||
event Comm::incoming_connection_broken%(peer_name: string%);
|
||||
|
||||
function Comm::listen%(p: port, a: string &default = "",
|
||||
reuse: bool &default = T%): bool
|
||||
%{
|
||||
if ( ! p->IsTCP() )
|
||||
{
|
||||
reporter->Error("listen port must use tcp");
|
||||
return new Val(false, TYPE_BOOL);
|
||||
}
|
||||
|
||||
auto rval = comm_mgr->Listen(p->Port(), a->Len() ? a->CheckString() : 0,
|
||||
reuse);
|
||||
return new Val(rval, TYPE_BOOL);
|
||||
%}
|
||||
|
||||
function Comm::connect%(a: string, p: port, retry: interval%): bool
|
||||
%{
|
||||
if ( ! p->IsTCP() )
|
||||
{
|
||||
reporter->Error("remote connection port must use tcp");
|
||||
return new Val(false, TYPE_BOOL);
|
||||
}
|
||||
|
||||
auto rval = comm_mgr->Connect(a->CheckString(), p->Port(),
|
||||
std::chrono::duration<double>(retry));
|
||||
return new Val(rval, TYPE_BOOL);
|
||||
%}
|
||||
|
||||
function Comm::disconnect%(a: string, p: port%): bool
|
||||
%{
|
||||
if ( ! p->IsTCP() )
|
||||
{
|
||||
reporter->Error("remote connection port must use tcp");
|
||||
return new Val(false, TYPE_BOOL);
|
||||
}
|
||||
|
||||
auto rval = comm_mgr->Disconnect(a->CheckString(), p->Port());
|
||||
return new Val(rval, TYPE_BOOL);
|
||||
%}
|
||||
|
|
|
@ -12,55 +12,6 @@ type Comm::SendFlags: record;
|
|||
|
||||
type Comm::EventArgs: record;
|
||||
|
||||
event Comm::remote_connection_established%(peer_address: string,
|
||||
peer_port: port,
|
||||
peer_name: string%);
|
||||
|
||||
event Comm::remote_connection_broken%(peer_address: string,
|
||||
peer_port: port%);
|
||||
|
||||
event Comm::remote_connection_incompatible%(peer_address: string,
|
||||
peer_port: port%);
|
||||
|
||||
function Comm::listen%(p: port, a: string &default = "",
|
||||
reuse: bool &default = T%): bool
|
||||
%{
|
||||
if ( ! p->IsTCP() )
|
||||
{
|
||||
reporter->Error("listen port must use tcp");
|
||||
return new Val(false, TYPE_BOOL);
|
||||
}
|
||||
|
||||
auto rval = comm_mgr->Listen(p->Port(), a->Len() ? a->CheckString() : 0,
|
||||
reuse);
|
||||
return new Val(rval, TYPE_BOOL);
|
||||
%}
|
||||
|
||||
function Comm::connect%(a: string, p: port, retry: interval%): bool
|
||||
%{
|
||||
if ( ! p->IsTCP() )
|
||||
{
|
||||
reporter->Error("remote connection port must use tcp");
|
||||
return new Val(false, TYPE_BOOL);
|
||||
}
|
||||
|
||||
auto rval = comm_mgr->Connect(a->CheckString(), p->Port(),
|
||||
std::chrono::duration<double>(retry));
|
||||
return new Val(rval, TYPE_BOOL);
|
||||
%}
|
||||
|
||||
function Comm::disconnect%(a: string, p: port%): bool
|
||||
%{
|
||||
if ( ! p->IsTCP() )
|
||||
{
|
||||
reporter->Error("remote connection port must use tcp");
|
||||
return new Val(false, TYPE_BOOL);
|
||||
}
|
||||
|
||||
auto rval = comm_mgr->Disconnect(a->CheckString(), p->Port());
|
||||
return new Val(rval, TYPE_BOOL);
|
||||
%}
|
||||
|
||||
event Comm::print_handler%(msg: string%);
|
||||
|
||||
function Comm::print%(topic: string, msg: string,
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Comm::incoming_connection_established, connector
|
||||
Comm::incoming_connection_broken, connector
|
|
@ -0,0 +1 @@
|
|||
Comm::outgoing_connection_established, 127.0.0.1, 9999/tcp, listener
|
|
@ -1,4 +1,4 @@
|
|||
Comm::remote_connection_established, 127.0.0.1, 9999/tcp
|
||||
Comm::outgoing_connection_established, 127.0.0.1, 9999/tcp
|
||||
got event msg, pong, 0
|
||||
got auto event msg, ping, 0
|
||||
got event msg, pong, 1
|
||||
|
|
|
@ -1 +1 @@
|
|||
Comm::remote_connection_established, 127.0.0.1, 9999/tcp
|
||||
Comm::outgoing_connection_established, 127.0.0.1, 9999/tcp
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Comm::remote_connection_established, 127.0.0.1, 9999/tcp
|
||||
Comm::outgoing_connection_established, 127.0.0.1, 9999/tcp
|
||||
got print msg, pong 0
|
||||
got print msg, pong 1
|
||||
got print msg, pong 2
|
||||
|
|
|
@ -81,7 +81,7 @@ event done()
|
|||
terminate();
|
||||
}
|
||||
|
||||
event Comm::remote_connection_established(peer_address: string,
|
||||
event Comm::outgoing_connection_established(peer_address: string,
|
||||
peer_port: port,
|
||||
peer_name: string)
|
||||
{
|
||||
|
|
55
testing/btest/comm/connection_updates.bro
Normal file
55
testing/btest/comm/connection_updates.bro
Normal file
|
@ -0,0 +1,55 @@
|
|||
# @TEST_SERIALIZE: brokercomm
|
||||
# @TEST_REQUIRES: grep -q ENABLE_BROKER $BUILD/CMakeCache.txt
|
||||
|
||||
# @TEST-EXEC: btest-bg-run recv "bro -b ../recv.bro >recv.out"
|
||||
# @TEST-EXEC: btest-bg-run send "bro -b ../send.bro >send.out"
|
||||
|
||||
# @TEST-EXEC: btest-bg-wait 20
|
||||
# @TEST-EXEC: btest-diff recv/recv.out
|
||||
# @TEST-EXEC: btest-diff send/send.out
|
||||
|
||||
@TEST-START-FILE recv.bro
|
||||
|
||||
redef exit_only_after_terminate = T;
|
||||
redef Comm::endpoint_name = "listener";
|
||||
|
||||
event bro_init()
|
||||
{
|
||||
Comm::enable();
|
||||
Comm::listen(9999/tcp, "127.0.0.1");
|
||||
}
|
||||
|
||||
event Comm::incoming_connection_established(peer_name: string)
|
||||
{
|
||||
print "Comm::incoming_connection_established", peer_name;;
|
||||
}
|
||||
|
||||
event Comm::incoming_connection_broken(peer_name: string)
|
||||
{
|
||||
print "Comm::incoming_connection_broken", peer_name;;
|
||||
terminate();
|
||||
}
|
||||
|
||||
@TEST-END-FILE
|
||||
|
||||
@TEST-START-FILE send.bro
|
||||
|
||||
redef exit_only_after_terminate = T;
|
||||
redef Comm::endpoint_name = "connector";
|
||||
|
||||
event bro_init()
|
||||
{
|
||||
Comm::enable();
|
||||
Comm::connect("127.0.0.1", 9999/tcp, 1sec);
|
||||
}
|
||||
|
||||
event Comm::outgoing_connection_established(peer_address: string,
|
||||
peer_port: port,
|
||||
peer_name: string)
|
||||
{
|
||||
print "Comm::outgoing_connection_established",
|
||||
peer_address, peer_port, peer_name;;
|
||||
terminate();
|
||||
}
|
||||
|
||||
@TEST-END-FILE
|
|
@ -55,11 +55,11 @@ event bro_init()
|
|||
|
||||
global event_count = 0;
|
||||
|
||||
event Comm::remote_connection_established(peer_address: string,
|
||||
event Comm::outgoing_connection_established(peer_address: string,
|
||||
peer_port: port,
|
||||
peer_name: string)
|
||||
{
|
||||
print "Comm::remote_connection_established", peer_address, peer_port;
|
||||
print "Comm::outgoing_connection_established", peer_address, peer_port;
|
||||
local args = Comm::event_args(event_handler, "ping", event_count);
|
||||
Comm::event("bro/event/hi", args);
|
||||
++event_count;
|
||||
|
|
|
@ -77,11 +77,11 @@ event do_write()
|
|||
}
|
||||
}
|
||||
|
||||
event Comm::remote_connection_established(peer_address: string,
|
||||
event Comm::outgoing_connection_established(peer_address: string,
|
||||
peer_port: port,
|
||||
peer_name: string)
|
||||
{
|
||||
print "Comm::remote_connection_established", peer_address, peer_port;
|
||||
print "Comm::outgoing_connection_established", peer_address, peer_port;
|
||||
event do_write();
|
||||
}
|
||||
|
||||
|
|
|
@ -46,11 +46,11 @@ event bro_init()
|
|||
|
||||
global n = 0;
|
||||
|
||||
event Comm::remote_connection_established(peer_address: string,
|
||||
event Comm::outgoing_connection_established(peer_address: string,
|
||||
peer_port: port,
|
||||
peer_name: string)
|
||||
{
|
||||
print "Comm::remote_connection_established", peer_address, peer_port;
|
||||
print "Comm::outgoing_connection_established", peer_address, peer_port;
|
||||
Comm::print("bro/print/hi", fmt("ping %d", n));
|
||||
++n;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue