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

通讯编程

开发平台:

Visual C++

  1. // -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*-
  2. /*
  3.  * mac-tdma.cc
  4.  * Copyright (C) 1999 by the University of Southern California
  5.  * $Id: mac-tdma.cc,v 1.16 2006/02/22 13:25:43 mahrenho Exp $
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License,
  9.  * version 2, as published by the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License along
  17.  * with this program; if not, write to the Free Software Foundation, Inc.,
  18.  * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19.  *
  20.  *
  21.  * The copyright of this module includes the following
  22.  * linking-with-specific-other-licenses addition:
  23.  *
  24.  * In addition, as a special exception, the copyright holders of
  25.  * this module give you permission to combine (via static or
  26.  * dynamic linking) this module with free software programs or
  27.  * libraries that are released under the GNU LGPL and with code
  28.  * included in the standard release of ns-2 under the Apache 2.0
  29.  * license or under otherwise-compatible licenses with advertising
  30.  * requirements (or modified versions of such code, with unchanged
  31.  * license).  You may copy and distribute such a system following the
  32.  * terms of the GNU GPL for this module and the licenses of the
  33.  * other code concerned, provided that you include the source code of
  34.  * that other code when and as the GNU GPL requires distribution of
  35.  * source code.
  36.  *
  37.  * Note that people who make modified versions of this module
  38.  * are not obligated to grant this special exception for their
  39.  * modified versions; it is their choice whether to do so.  The GNU
  40.  * General Public License gives permission to release a modified
  41.  * version without this exception; this exception also makes it
  42.  * possible to release a modified version which carries forward this
  43.  * exception.
  44.  *
  45.  */
  46. //
  47. // $Header: /cvsroot/nsnam/ns-2/mac/mac-tdma.cc,v 1.16 2006/02/22 13:25:43 mahrenho Exp $
  48. //
  49. // mac-tdma.cc
  50. // by Xuan Chen (xuanc@isi.edu), ISI/USC
  51. //
  52. // Preamble TDMA MAC layer for single hop.
  53. // Centralized slot assignment computing.
  54. #include "delay.h"
  55. #include "connector.h"
  56. #include "packet.h"
  57. #include "random.h"
  58. // #define DEBUG
  59. //#include <debug.h>
  60. #include "arp.h"
  61. #include "ll.h"
  62. #include "mac.h"
  63. #include "mac-tdma.h"
  64. #include "wireless-phy.h"
  65. #include "cmu-trace.h"
  66. #include <stddef.h>
  67. #define SET_RX_STATE(x)
  68. {
  69. rx_state_ = (x);
  70. }
  71. #define SET_TX_STATE(x)
  72. {
  73. tx_state_ = (x);
  74. }
  75. /* Phy specs from 802.11 */
  76. static PHY_MIB PMIB = {
  77. DSSS_CWMin, DSSS_CWMax, DSSS_SlotTime, DSSS_CCATime,
  78. DSSS_RxTxTurnaroundTime, DSSS_SIFSTime, DSSS_PreambleLength,
  79. DSSS_PLCPHeaderLength
  80. };
  81. /* Timers */
  82. void MacTdmaTimer::start(Packet *p, double time)
  83. {
  84. Scheduler &s = Scheduler::instance();
  85. assert(busy_ == 0);
  86.   
  87. busy_ = 1;
  88. paused_ = 0;
  89. stime = s.clock();
  90. rtime = time;
  91. assert(rtime >= 0.0);
  92.   
  93. s.schedule(this, p, rtime);
  94. }
  95. void MacTdmaTimer::stop(Packet *p) 
  96. {
  97. Scheduler &s = Scheduler::instance();
  98. assert(busy_);
  99.   
  100. if(paused_ == 0)
  101. s.cancel((Event *)p);
  102. // Should free the packet p.
  103. Packet::free(p);
  104.   
  105. busy_ = 0;
  106. paused_ = 0;
  107. stime = 0.0;
  108. rtime = 0.0;
  109. }
  110. /* Slot timer for TDMA scheduling. */
  111. void SlotTdmaTimer::handle(Event *e)
  112. {       
  113. busy_ = 0;
  114. paused_ = 0;
  115. stime = 0.0;
  116. rtime = 0.0;
  117.   
  118. mac->slotHandler(e);
  119. }
  120. /* Receive Timer */
  121. void RxPktTdmaTimer::handle(Event *e) 
  122. {       
  123. busy_ = 0;
  124. paused_ = 0;
  125. stime = 0.0;
  126. rtime = 0.0;
  127.   
  128. mac->recvHandler(e);
  129. }
  130. /* Send Timer */
  131. void TxPktTdmaTimer::handle(Event *e) 
  132. {       
  133. busy_ = 0;
  134. paused_ = 0;
  135. stime = 0.0;
  136. rtime = 0.0;
  137. mac->sendHandler(e);
  138. }
  139. /* ======================================================================
  140.    TCL Hooks for the simulator
  141.    ====================================================================== */
  142. static class MacTdmaClass : public TclClass {
  143. public:
  144. MacTdmaClass() : TclClass("Mac/Tdma") {}
  145. TclObject* create(int, const char*const*) {
  146. return (new MacTdma(&PMIB));
  147. }
  148. } class_mac_tdma;
  149. // Mac Tdma definitions
  150. // Frame format:
  151. // Pamble Slot1 Slot2 Slot3...
  152. MacTdma::MacTdma(PHY_MIB* p) : 
  153. Mac(), mhSlot_(this), mhTxPkt_(this), mhRxPkt_(this){
  154. /* Global variables setting. */
  155. // Setup the phy specs.
  156. phymib_ = p;
  157. /* Get the parameters of the link (which in bound in mac.cc, 2M by default),
  158.    the packet length within one TDMA slot (1500 byte by default), 
  159.    and the max number of nodes (64) in the simulations.*/
  160. bind("slot_packet_len_", &slot_packet_len_);
  161. bind("max_node_num_", &max_node_num_);
  162. //  slot_packet_len_ = 1500;
  163. //  max_node_num_ = 64;
  164. // Calculate the slot time based on the MAX allowed data length.
  165. slot_time_ = DATA_Time(slot_packet_len_);
  166. /* Calsulate the max slot num within on frame from max node num.
  167.    In the simple case now, they are just equal. 
  168. */
  169. max_slot_num_ = max_node_num_;
  170. /* Much simplified centralized scheduling algorithm for single hop
  171.    topology, like WLAN etc. 
  172. */
  173. // Initualize the tdma schedule and preamble data structure.
  174. tdma_schedule_ = new int[max_slot_num_];
  175. tdma_preamble_ = new int[max_slot_num_];
  176. /* Do each node's initialization. */
  177. // Record the initial active node number.
  178. active_node_++;
  179. if (active_node_ > max_node_num_) {
  180. printf("Too many nodes taking part in the simulations, aborting...n");
  181. exit(-1);
  182. }
  183.     
  184. // Initial channel / transceiver states. 
  185. tx_state_ = rx_state_ = MAC_IDLE;
  186. tx_active_ = 0;
  187. // Initialy, the radio is off. NOTE: can't use radioSwitch(OFF) here.
  188. radio_active_ = 0;
  189. // Do slot scheduling.
  190. re_schedule();
  191. /* Deal with preamble. */
  192. // Can't send anything in the first frame.
  193. slot_count_ = FIRST_ROUND;
  194. tdma_preamble_[slot_num_] = NOTHING_TO_SEND;
  195. //Start the Slot timer..
  196. mhSlot_.start((Packet *) (& intr_), 0);  
  197. }
  198. /* similar to 802.11, no cached node lookup. */
  199. int MacTdma::command(int argc, const char*const* argv)
  200. {
  201. if (argc == 3) {
  202. if (strcmp(argv[1], "log-target") == 0) {
  203. logtarget_ = (NsObject*) TclObject::lookup(argv[2]);
  204. if(logtarget_ == 0)
  205. return TCL_ERROR;
  206. return TCL_OK;
  207. }
  208. }
  209. return Mac::command(argc, argv);
  210. }
  211. /* ======================================================================
  212.    Debugging Routines
  213.    ====================================================================== */
  214. void MacTdma::trace_pkt(Packet *p) 
  215. {
  216. struct hdr_cmn *ch = HDR_CMN(p);
  217. struct hdr_mac_tdma* dh = HDR_MAC_TDMA(p);
  218. u_int16_t *t = (u_int16_t*) &dh->dh_fc;
  219. fprintf(stderr, "t[ %2x %2x %2x %2x ] %x %s %dn",
  220. *t, dh->dh_duration,
  221. ETHER_ADDR(dh->dh_da), ETHER_ADDR(dh->dh_sa),
  222. index_, packet_info.name(ch->ptype()), ch->size());
  223. }
  224. void MacTdma::dump(char *fname)
  225. {
  226. fprintf(stderr, "n%s --- (INDEX: %d, time: %2.9f)n", fname, 
  227. index_, Scheduler::instance().clock());
  228. fprintf(stderr, "ttx_state_: %x, rx_state_: %x, idle: %dn", 
  229. tx_state_, rx_state_, is_idle());
  230. fprintf(stderr, "tpktTx_: %lx, pktRx_: %lx, callback: %lxn", 
  231. (long) pktTx_, (long) pktRx_, (long) callback_);
  232. }
  233. /* ======================================================================
  234.    Packet Headers Routines
  235.    ====================================================================== */
  236. int MacTdma::hdr_dst(char* hdr, int dst )
  237. {
  238. struct hdr_mac_tdma *dh = (struct hdr_mac_tdma*) hdr;
  239. if(dst > -2)
  240. STORE4BYTE(&dst, (dh->dh_da));
  241. return ETHER_ADDR(dh->dh_da);
  242. }
  243. int MacTdma::hdr_src(char* hdr, int src )
  244. {
  245. struct hdr_mac_tdma *dh = (struct hdr_mac_tdma*) hdr;
  246. if(src > -2)
  247. STORE4BYTE(&src, (dh->dh_sa));
  248.   
  249. return ETHER_ADDR(dh->dh_sa);
  250. }
  251. int MacTdma::hdr_type(char* hdr, u_int16_t type) 
  252. {
  253. struct hdr_mac_tdma *dh = (struct hdr_mac_tdma*) hdr;
  254. if(type)
  255. STORE2BYTE(&type,(dh->dh_body));
  256. return GET2BYTE(dh->dh_body);
  257. }
  258. /* Test if the channel is idle. */
  259. int MacTdma::is_idle() {
  260. if(rx_state_ != MAC_IDLE)
  261. return 0;
  262. if(tx_state_ != MAC_IDLE)
  263. return 0;
  264. return 1;
  265. }
  266. /* Do the slot re-scheduling:
  267.    The idea of postphone the slot scheduling for one slot time may be useful.
  268. */
  269. void MacTdma::re_schedule() {
  270. static int slot_pointer = 0;
  271. // Record the start time of the new schedule.
  272. start_time_ = NOW;
  273. /* Seperate slot_num_ and the node id: 
  274.    we may have flexibility as node number changes.
  275. */
  276. slot_num_ = slot_pointer++;
  277. tdma_schedule_[slot_num_] = (char) index_;
  278. }
  279. /* To handle incoming packet. */
  280. void MacTdma::recv(Packet* p, Handler* h) {
  281. struct hdr_cmn *ch = HDR_CMN(p);
  282. /* Incoming packets from phy layer, send UP to ll layer. 
  283.    Now, it is in receiving mode. 
  284. */
  285. if (ch->direction() == hdr_cmn::UP) {
  286. // Since we can't really turn the radio off at lower level, 
  287. // we just discard the packet.
  288. if (!radio_active_) {
  289. free(p);
  290. //printf("<%d>, %f, I am sleeping...n", index_, NOW);
  291. return;
  292. }
  293. sendUp(p);
  294. //printf("<%d> packet recved: %dn", index_, tdma_pr_++);
  295. return;
  296. }
  297. /* Packets coming down from ll layer (from ifq actually),
  298.    send them to phy layer. 
  299.    Now, it is in transmitting mode. */
  300. callback_ = h;
  301. state(MAC_SEND);
  302. sendDown(p);
  303. //printf("<%d> packet sent down: %dn", index_, tdma_ps_++);
  304. }
  305. void MacTdma::sendUp(Packet* p) 
  306. {
  307. struct hdr_cmn *ch = HDR_CMN(p);
  308. /* Can't receive while transmitting. Should not happen...?*/
  309. if (tx_state_ && ch->error() == 0) {
  310. printf("<%d>, can't receive while transmitting!n", index_);
  311. ch->error() = 1;
  312. };
  313. /* Detect if there is any collision happened. should not happen...?*/
  314. if (rx_state_ == MAC_IDLE) {
  315. SET_RX_STATE(MAC_RECV);     // Change the state to recv.
  316. pktRx_ = p;                 // Save the packet for timer reference.
  317. /* Schedule the reception of this packet, 
  318.    since we just see the packet header. */
  319. double rtime = TX_Time(p);
  320. assert(rtime >= 0);
  321. /* Start the timer for receiving, will end when receiving finishes. */
  322. mhRxPkt_.start(p, rtime);
  323. } else {
  324. /* Note: we don't take the channel status into account, 
  325.    as collision should not happen...
  326. */
  327. printf("<%d>, receiving, but the channel is not idle....???n", index_);
  328. }
  329. }
  330. /* Actually receive data packet when RxPktTimer times out. */
  331. void MacTdma::recvDATA(Packet *p){
  332. /*Adjust the MAC packet size: strip off the mac header.*/
  333. struct hdr_cmn *ch = HDR_CMN(p);
  334. ch->size() -= ETHER_HDR_LEN;
  335. ch->num_forwards() += 1;
  336. /* Pass the packet up to the link-layer.*/
  337. uptarget_->recv(p, (Handler*) 0);
  338. }
  339. /* Send packet down to the physical layer. 
  340.    Need to calculate a certain time slot for transmission. */
  341. void MacTdma::sendDown(Packet* p) {
  342. u_int32_t dst, src, size;
  343.   
  344. struct hdr_cmn* ch = HDR_CMN(p);
  345. struct hdr_mac_tdma* dh = HDR_MAC_TDMA(p);
  346. /* Update the MAC header, same as 802.11 */
  347. ch->size() += ETHER_HDR_LEN;
  348. dh->dh_fc.fc_protocol_version = MAC_ProtocolVersion;
  349. dh->dh_fc.fc_type       = MAC_Type_Data;
  350. dh->dh_fc.fc_subtype    = MAC_Subtype_Data;
  351. dh->dh_fc.fc_to_ds      = 0;
  352. dh->dh_fc.fc_from_ds    = 0;
  353. dh->dh_fc.fc_more_frag  = 0;
  354. dh->dh_fc.fc_retry      = 0;
  355. dh->dh_fc.fc_pwr_mgt    = 0;
  356. dh->dh_fc.fc_more_data  = 0;
  357. dh->dh_fc.fc_wep        = 0;
  358. dh->dh_fc.fc_order      = 0;
  359. if((u_int32_t)ETHER_ADDR(dh->dh_da) != MAC_BROADCAST)
  360. dh->dh_duration = DATA_DURATION;
  361. else
  362. dh->dh_duration = 0;
  363. dst = ETHER_ADDR(dh->dh_da);
  364. src = ETHER_ADDR(dh->dh_sa);
  365. size = ch->size();
  366. /* buffer the packet to be sent. */
  367. pktTx_ = p;
  368. }
  369. /* Actually send the packet. */
  370. void MacTdma::send() 
  371. {
  372. u_int32_t dst, src, size;
  373. struct hdr_cmn* ch;
  374. struct hdr_mac_tdma* dh;
  375. double stime;
  376. /* Check if there is any packet buffered. */
  377. if (!pktTx_) {
  378. printf("<%d>, %f, no packet buffered.n", index_, NOW);
  379. return;
  380. }
  381. /* Perform carrier sence...should not be collision...? */
  382. if(!is_idle()) {
  383. /* Note: we don't take the channel status into account, ie. no collision,
  384.    as collision should not happen...
  385. */
  386. printf("<%d>, %f, transmitting, but the channel is not idle...???n", index_, NOW);
  387. return;
  388. }
  389. ch = HDR_CMN(pktTx_);
  390. dh = HDR_MAC_TDMA(pktTx_);  
  391. dst = ETHER_ADDR(dh->dh_da);
  392. src = ETHER_ADDR(dh->dh_sa);
  393. size = ch->size();
  394. stime = TX_Time(pktTx_);
  395. ch->txtime() = stime;
  396. /* Turn on the radio and transmit! */
  397. SET_TX_STATE(MAC_SEND);      
  398. radioSwitch(ON);
  399. /* Start a timer that expires when the packet transmission is complete. */
  400. mhTxPkt_.start(pktTx_->copy(), stime);
  401. downtarget_->recv(pktTx_, this);        
  402. pktTx_ = 0;
  403. }
  404. // Turn on / off the radio
  405. void MacTdma::radioSwitch(int i) 
  406. {
  407. radio_active_ = i;
  408. //EnergyModel *em = netif_->node()->energy_model();
  409. if (i == ON) {
  410. //if (em && em->sleep())
  411. //em->set_node_sleep(0);
  412. //    printf("<%d>, %f, turn radio ONn", index_, NOW); 
  413. Phy *p;
  414. p = netif_;
  415. ((WirelessPhy *)p)->node_wakeup();
  416. return;
  417. }
  418. if (i == OFF) {
  419. //if (em && !em->sleep()) {
  420. //em->set_node_sleep(1);
  421. //    netif_->node()->set_node_state(INROUTE);
  422. Phy *p;
  423. p = netif_;
  424. ((WirelessPhy *)p)->node_sleep();
  425. //    printf("<%d>, %f, turn radio OFFn", index_, NOW);
  426. return;
  427. }
  428. }
  429. // make the new preamble.
  430. void MacTdma::makePreamble() 
  431. {
  432. u_int32_t dst;
  433. struct hdr_mac_tdma* dh;
  434. // If there is a packet buffered, file its destination to preamble.
  435. if (pktTx_) {
  436. dh = HDR_MAC_TDMA(pktTx_);  
  437. dst = ETHER_ADDR(dh->dh_da);
  438. //printf("<%d>, %f, write %d to slot %d in preamblen", index_, NOW, dst, slot_num_);
  439. tdma_preamble_[slot_num_] = dst;
  440. } else {
  441. //printf("<%d>, %f, write NO_PKT to slot %d in preamblen", index_, NOW, slot_num_);
  442. tdma_preamble_[slot_num_] = NOTHING_TO_SEND;
  443. }
  444. }
  445. /* Timers' handlers */
  446. /* Slot Timer:
  447.    For the preamble calculation, we should have it:
  448.    occupy one slot time,
  449.    radio turned on for the whole slot.
  450. */
  451. void MacTdma::slotHandler(Event *e) 
  452. {
  453. // Restart timer for next slot.
  454. mhSlot_.start((Packet *)e, slot_time_);
  455. // Make a new presamble for next frame.
  456. if ((slot_count_ == active_node_) || (slot_count_ == FIRST_ROUND)) {
  457. //printf("<%d>, %f, make the new preamble now.n", index_, NOW);
  458. // We should turn the radio on for the whole slot time.
  459. radioSwitch(ON);
  460. makePreamble();
  461. slot_count_ = 0;
  462. return;
  463. }
  464. // If it is the sending slot for me.
  465. if (slot_count_ == slot_num_) {
  466. //printf("<%d>, %f, time to send.n", index_, NOW);
  467. // We have to check the preamble first to avoid the packets coming in the middle.
  468. if (tdma_preamble_[slot_num_] != NOTHING_TO_SEND)
  469. send();
  470. else
  471. radioSwitch(OFF);
  472. slot_count_++;
  473. return;
  474. }
  475.  
  476. // If I am supposed to listen in this slot
  477. if ((tdma_preamble_[slot_count_] == index_) || ((u_int32_t)tdma_preamble_[slot_count_] == MAC_BROADCAST)) {
  478. //printf("<%d>, %f, preamble[%d]=%d, I am supposed to receive now.n", index_, NOW, slot_count_, tdma_preamble_[slot_count_]);
  479. slot_count_++;
  480. // Wake up the receive packets.
  481. radioSwitch(ON);
  482. return;
  483. }
  484. // If I dont send / recv, do nothing.
  485. //printf("<%d>, %f, preamble[%d]=%d, nothing to do now.n", index_, NOW, slot_count_, tdma_preamble_[slot_count_]);
  486. radioSwitch(OFF);
  487. slot_count_++;
  488. return;
  489. }
  490. void MacTdma::recvHandler(Event *e) 
  491. {
  492. u_int32_t dst, src; 
  493. int size;
  494. struct hdr_cmn *ch = HDR_CMN(pktRx_);
  495. struct hdr_mac_tdma *dh = HDR_MAC_TDMA(pktRx_);
  496. /* Check if any collision happened while receiving. */
  497. if (rx_state_ == MAC_COLL) 
  498. ch->error() = 1;
  499. SET_RX_STATE(MAC_IDLE);
  500.   
  501. /* check if this packet was unicast and not intended for me, drop it.*/   
  502. dst = ETHER_ADDR(dh->dh_da);
  503. src = ETHER_ADDR(dh->dh_sa);
  504. size = ch->size();
  505. //printf("<%d>, %f, recv a packet [from %d to %d], size = %dn", index_, NOW, src, dst, size);
  506. // Turn the radio off after receiving the whole packet
  507. radioSwitch(OFF);
  508. /* Ordinary operations on the incoming packet */
  509. // Not a pcket destinated to me.
  510. if ((dst != MAC_BROADCAST) && (dst != (u_int32_t)index_)) {
  511. drop(pktRx_);
  512. return;
  513. }
  514.   
  515. /* Now forward packet upwards. */
  516. recvDATA(pktRx_);
  517. }
  518. /* After transmission a certain packet. Turn off the radio. */
  519. void MacTdma::sendHandler(Event *e) 
  520. {
  521. //  printf("<%d>, %f, send a packet finished.n", index_, NOW);
  522. /* Once transmission is complete, drop the packet. 
  523.    p  is just for schedule a event. */
  524. SET_TX_STATE(MAC_IDLE);
  525. Packet::free((Packet *)e);
  526.   
  527. // Turn off the radio after sending the whole packet
  528. radioSwitch(OFF);
  529. /* unlock IFQ. */
  530. if(callback_) {
  531. Handler *h = callback_;
  532. callback_ = 0;
  533. h->handle((Event*) 0);
  534. }