Source: ../../bgp/rib_ipc_handler.hh
|
|
|
|
// -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*-
// Copyright (c) 2001-2003 International Computer Science Institute
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software")
// to deal in the Software without restriction, subject to the conditions
// listed in the XORP LICENSE file. These conditions include: you must
// preserve this copyright notice, and you cannot mention the copyright
// holders in advertising related to the Software without their permission.
// The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This
// notice is a summary of the XORP LICENSE file; the license in that file is
// legally binding.
// $XORP: xorp/bgp/rib_ipc_handler.hh,v 1.13 2003/07/14 21:58:54 atanu Exp $
#ifndef __BGP_RIB_IPC_HANDLER_HH__
#define __BGP_RIB_IPC_HANDLER_HH__
#include <deque>
#include "peer_handler.hh"
#include "plumbing.hh"
#include "libxorp/eventloop.hh"
#include "libxorp/timer.hh"
#include "libxipc/xrl_std_router.hh"
#include "xrl/interfaces/rib_xif.hh"
class RibIpcHandler;
class EventLoop;
template <class A>
class XrlQueue {
public:
XrlQueue(RibIpcHandler *rib_ipc_handler, XrlStdRouter *xrl_router,
BGPMain *_bgp);
void queue_add_route(string ribname, bool ibgp, const IPNet<A>& net,
const A& nexthop);
void queue_delete_route(string ribname, bool ibgp, const IPNet<A>& net);
bool busy();
private:
RibIpcHandler *_rib_ipc_handler;
XrlStdRouter *_xrl_router;
BGPMain *_bgp;
uint32_t _id;
struct Queued {
bool add;
string ribname;
bool ibgp;
IPNet<A> net;
A nexthop;
uint32_t id;
};
deque <Queued> _xrl_queue;
static const size_t FLYING_LIMIT = 1;// XRL's allowed in flight
// at one time.
size_t _flying; //XRLs currently in flight
bool _previously_succeeded; //true if we've previously been
//successful in communicating with the RIB.
bool _synchronous_mode; //true if we've seen an error and dropped
//back to synchronous operation to give
//everything else time to recover.
uint32_t _errors; //no. of consecutive non-fatal errors where we retried.
bool _interface_failed; //we've seen a fatal error
XorpTimer _delayed_send_timer; //used to resend after a certain delay.
/**
* Start the transimission of XRLs to tbe RIB.
*/
void sendit();
/**
* The specialised method called by sendit to deal with IPv4/IPv6.
*
* @param q the queued command.
* @param rib XRL handle to RIB
* @param bgp "ibgp" or "ebgp".
* @return True if the add/delete was queued.
*/
bool sendit_spec(Queued& q, XrlRibV0p1Client& rib, const char *bgp);
void delayed_send(uint32_t delay_ms);
inline EventLoop& eventloop() { return _rib_ipc_handler->eventloop(); }
void route_command_done(const XrlError& error,
uint32_t sequence,
const char *comment);
};
/*
* RibIpcHandler's job is to convert to and from XRLs, and to handle the
* XRL state machine for talking to the RIB process
*/
class RibIpcHandler : public PeerHandler {
public:
RibIpcHandler(XrlStdRouter *xrl_router, EventLoop& eventloop,
BGPMain& bgp);
~RibIpcHandler();
/**
* Set the rib's name, allows for having a dummy rib or not having
* a RIB at all.
*/
bool register_ribname(const string& r);
int start_packet(bool ibgp);
/* add_route and delete_route are called to propagate a route *to*
the RIB. */
int add_route(const SubnetRoute<IPv4> &rt);
int add_route(const SubnetRoute<IPv6> &rt);
int replace_route(const SubnetRoute<IPv4> &old_rt,
const SubnetRoute<IPv4> &new_rt);
int replace_route(const SubnetRoute<IPv6> &old_rt,
const SubnetRoute<IPv6> &new_rt);
int delete_route(const SubnetRoute<IPv4> &rt);
int delete_route(const SubnetRoute<IPv6> &rt);
void rib_command_done(const XrlError& error, const char *comment);
PeerOutputState push_packet();
void set_plumbing(BGPPlumbing *plumbing) {_plumbing = plumbing;}
/*
** Insert fake static route into routing table.
*/
bool insert_static_route(const OriginType origin, const AsPath& aspath,
const IPv4& next_hop, const IPNet<IPv4>& nlri);
/*
** Delete static route from routing table.
*/
bool delete_static_route(const IPNet<IPv4>& nlri);
EventLoop& eventloop() {return _eventloop;}
/*
** Indicate to the RIB IPC handler that the Xrl interface to the
** RIB has suffered a fatal error
*/
void fatal_error(const string& reason);
/**
* Get the status of the RibIpcHandler
*
* @param reason the human-readable reason for any failure
*
* @return false if RibIpcHandler has suffered a fatal error,
* true otherwise
*/
bool status(string& reason) const;
private:
bool unregister_rib();
string _ribname;
XrlStdRouter *_xrl_router;
EventLoop& _eventloop;
bool _ibgp; //did the current update message originate in IBGP?
bool _interface_failed; //we've seen a fatal error
string _failure_reason;
XrlQueue<IPv4> _v4_queue;
XrlQueue<IPv6> _v6_queue;
};
#endif // __BGP_RIB_IPC_HANDLER_HH__
Generated by: pavlin on possum.icir.org on Thu Aug 28 12:52:17 2003, using kdoc 2.0a54+XORP. |