trace-ip.cc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) 1997 Regents of the University of California.
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  * This product includes software developed by the Daedalus Research
  17.  * Group at the University of California Berkeley.
  18.  * 4. Neither the name of the University nor of the Laboratory may be used
  19.  *    to endorse or promote products derived from this software without
  20.  *    specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  * Contributed by Giao Nguyen, http://daedalus.cs.berkeley.edu/~gnguyen
  35.  */
  36. #include "ip.h"
  37. #include "trace.h"
  38. #include "mac.h"
  39. //#include "packet.h"
  40. class TraceIp : public Trace {
  41. public:
  42. TraceIp(int type) : Trace(type) {
  43. bind("mask_", &mask_);
  44. bind("shift_", &shift_);
  45. }
  46. void recv(Packet*, Handler*);
  47. protected:
  48. int mask_;
  49. int shift_;
  50. };
  51. class TraceIpMac : public TraceIp {
  52. public:
  53. TraceIpMac(int type) : TraceIp(type) {}
  54. void recv(Packet*, Handler*);
  55. };
  56. class TraceIpClass : public TclClass {
  57. public:
  58. TraceIpClass() : TclClass("TraceIp") { }
  59. TclObject* create(int args, const char*const* argv) {
  60. if (args >= 5)
  61. return (new TraceIp(*argv[4]));
  62. else
  63. return NULL;
  64. }
  65. } traceip_class;
  66. class TraceIpMacClass : public TclClass {
  67. public:
  68. TraceIpMacClass() : TclClass("TraceIp/Mac") { }
  69. TclObject* create(int args, const char*const* argv) {
  70. if (args >= 5)
  71. return (new TraceIpMac(*argv[4]));
  72. else
  73. return NULL;
  74. }
  75. } trace_ip_mac_class;
  76. void TraceIp::recv(Packet* p, Handler* h)
  77. {
  78. // XXX: convert IP address to node number
  79. hdr_ip *iph = hdr_ip::access(p);
  80. int src = (src_ >= 0) ? src_ : (iph->saddr() >> shift_) & mask_;
  81. int dst = (iph->daddr() >> shift_) & mask_;
  82. format(type_, src, dst , p);
  83. pt_->dump();
  84. target_ ? send(p, h) : Packet::free(p);
  85. }
  86. void TraceIpMac::recv(Packet* p, Handler* h)
  87. {
  88. // XXX: convert IP address to node number
  89. // hdr_ip *iph = hdr_ip::access(p);
  90. hdr_ip *iph = HDR_IP(p);
  91. int src = (src_ >= 0) ? src_ : (iph->saddr() >> shift_) & mask_;
  92. int dst = (iph->daddr() >> shift_) & mask_;
  93. hdr_mac* mh = HDR_MAC(p);
  94. if (mh->ftype() == MF_ACK || mh->ftype() == MF_CTS)
  95. format(type_, dst, src , p);
  96. else
  97. format(type_, src, dst , p);
  98. pt_->dump();
  99. target_ ? send(p, h) : Packet::free(p);
  100. }