Source: ../../bgp/update_attrib.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/update_attrib.hh,v 1.7 2003/03/10 23:20:07 hodson Exp $
#ifndef __BGP_UPDATE_ATTRIB_HH__
#define __BGP_UPDATE_ATTRIB_HH__
#include "libxorp/ipvxnet.hh"
#include "libxorp/exceptions.hh"
#include "exceptions.hh"
#include <list>
/**
* Encoding used in BGP update packets to encode prefixes
* (IPv4 only) for withdrawn routes and NLRI information.
*
* The prefixes are passed on the wire in a compressed format:
* 1 byte: prefix length L (in bits)
* n bytes: prefix, L bits (n = (L+7)/8)
*
* Effectively, this class is just an IPv4Net.
* We only need methods to encode and decode the objects.
*/
class BGPUpdateAttrib : public IPv4Net
{
public:
/**
* construct from an address d and masklength s
*/
BGPUpdateAttrib(const IPv4& d, uint8_t s) : IPv4Net(d, s) {}
BGPUpdateAttrib(const IPv4Net& p) : IPv4Net(p) {}
/**
* Construct from wire format
*/
BGPUpdateAttrib(const uint8_t *d);
/**
* store in memory in wire format
*/
void copy_out(uint8_t *d) const;
/**
* total size in encoded format
*/
size_t wire_size() const {
return calc_byte_size() + 1;
}
// size of next operand in memory
static size_t size(const uint8_t *d) throw(CorruptMessage) {
if (d[0] > 32)
xorp_throw(CorruptMessage,
c_format("inconsistent length %d", d[0]),
0, 0); // XXX change codes!
return (d[0] + 7)/8 + 1;
}
size_t calc_byte_size() const {
return (prefix_len() + 7) / 8;
}
const IPv4Net& net() const {
return (IPv4Net &)(*this);
}
string str(string nlri_or_withdraw) const {
return nlri_or_withdraw + " " + net().str();
}
protected:
private:
};
class BGPUpdateAttribList : public list <BGPUpdateAttrib> {
public:
typedef list <BGPUpdateAttrib>::const_iterator const_iterator;
typedef list <BGPUpdateAttrib>::iterator iterator;
size_t wire_size() const;
uint8_t *encode(size_t &l, uint8_t *buf = 0) const;
void decode(const uint8_t *d, size_t len)
throw(CorruptMessage);
string str(string) const;
// XXX this needs to be fixed, we do not want to sort all the times.
bool operator== (const BGPUpdateAttribList& other) {
if (size() != other.size())
return false;
BGPUpdateAttribList me(*this);
BGPUpdateAttribList him(other);
me.sort();
him.sort();
const_iterator i, j;
// only check one iterator as we know length is the same
for (i=me.begin(), j=him.begin(); i!=me.end(); ++i, ++j)
if ( *i != *j )
return false;
return true;
}
};
#endif // __BGP_UPDATE_ATTRIB_HH__
Generated by: pavlin on possum.icir.org on Mon Mar 10 19:34:59 2003, using kdoc 2.0a54+XORP. |