📄 classifier-nix.cc
字号:
/* -*- Mode:C++; c-basic-offset:2; tab-width:2; indent-tabs-mode:f -*- *//* * Copyright (c) 1997 The Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Network Research * Group at Lawrence Berkeley National Laboratory. * 4. Neither the name of the University nor of the Laboratory may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *//* NixVector classifier for stateless routing *//* George F. Riley, Georgia Tech, Spring 2000 */#include <stdio.h>#include "ip.h"#include "nixvec.h"#include "classifier-nix.h"#include "hdr_nv.h"/* Define the TCL Class */static class NixClassifierClass : public TclClass {public: NixClassifierClass() : TclClass("Classifier/Nix") {} TclObject* create(int, const char*const*) { return (new NixClassifier()); }} class_nix_classifier;/****************** NixClassifier Methods ************/NsObject* NixClassifier::find(Packet* p){ if (m_NodeId == NODE_NONE) { printf("NixClassifier::find(), Unknown node id\n"); return(NULL); } NixNode* pN = NixNode::GetNodeObject(m_NodeId); hdr_ip* ip = hdr_ip::access(p); if (ip->daddr() == pN->Id()) { // Arrived at destination, pass on to the dmux object if(0)printf("Returning Dmux objet %p\n", m_Dmux); return m_Dmux; } hdr_nv* nv = hdr_nv::access(p); NixVec* pNv = nv->nv(); if (pNv == NULL) { printf("Error! NixClassifier %s called with no NixVector\n", name()); return(NULL); } if (pN == NULL) { printf("NixClassifier::find(), can't find node id %ld\n", m_NodeId); return(NULL); } Nix_t Nix = pNv->Extract(pN->GetNixl(), nv->used()); // Get the next nix nodeid_t n = pN->GetNeighbor(Nix,pNv); // this is just for debug print NsObject* nsobj = pN->GetNsNeighbor(Nix); if(0)printf("Classifier %s, Node %ld next hop %ld (%s)\n", name(), pN->Id(), n, nsobj->name()); return(nsobj); // And return the nexthop head object}int NixClassifier::command(int argc, const char*const* argv){ if (argc == 3 && strcmp(argv[1],"set-node-id") == 0) { m_NodeId = atoi(argv[2]); return(TCL_OK); } if (argc == 4 && strcmp(argv[1],"install") == 0) { int target = atoi(argv[2]); NixNode* pN = NixNode::GetNodeObject(m_NodeId); if (pN) { if(0)printf("%s NixClassifier::Command node %ld install %s %s\n", name(), pN->Id(), argv[2], argv[3]); if (target == pN->Id()) { // This is the only case we care about, need to note the dmux obj m_Dmux = (NsObject*)TclObject::lookup(argv[3]); if(0)printf("m_Dmux obj is %p\n", m_Dmux); } } return(TCL_OK); } return (Classifier::command(argc, argv));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -