strip.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:97k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 1996 The Board of Trustees of The Leland Stanford
  3.  * Junior University. All Rights Reserved.
  4.  *
  5.  * Permission to use, copy, modify, and distribute this
  6.  * software and its documentation for any purpose and without
  7.  * fee is hereby granted, provided that the above copyright
  8.  * notice appear in all copies.  Stanford University
  9.  * makes no representations about the suitability of this
  10.  * software for any purpose.  It is provided "as is" without
  11.  * express or implied warranty.
  12.  *
  13.  * strip.c This module implements Starmode Radio IP (STRIP)
  14.  * for kernel-based devices like TTY.  It interfaces between a
  15.  * raw TTY, and the kernel's INET protocol layers (via DDI).
  16.  *
  17.  * Version: @(#)strip.c 1.3 July 1997
  18.  *
  19.  * Author: Stuart Cheshire <cheshire@cs.stanford.edu>
  20.  *
  21.  * Fixes: v0.9 12th Feb 1996 (SC)
  22.  * New byte stuffing (2+6 run-length encoding)
  23.  * New watchdog timer task
  24.  * New Protocol key (SIP0)
  25.  *
  26.  * v0.9.1 3rd March 1996 (SC)
  27.  * Changed to dynamic device allocation -- no more compile
  28.  * time (or boot time) limit on the number of STRIP devices.
  29.  *
  30.  * v0.9.2 13th March 1996 (SC)
  31.  * Uses arp cache lookups (but doesn't send arp packets yet)
  32.  *
  33.  * v0.9.3 17th April 1996 (SC)
  34.  * Fixed bug where STR_ERROR flag was getting set unneccessarily
  35.  * (causing otherwise good packets to be unneccessarily dropped)
  36.  *
  37.  * v0.9.4 27th April 1996 (SC)
  38.  * First attempt at using "&COMMAND" Starmode AT commands
  39.  *
  40.  * v0.9.5 29th May 1996 (SC)
  41.  * First attempt at sending (unicast) ARP packets
  42.  *
  43.  * v0.9.6 5th June 1996 (Elliot)
  44.  * Put "message level" tags in every "printk" statement
  45.  *
  46.  * v0.9.7 13th June 1996 (laik)
  47.  * Added support for the /proc fs
  48.  *
  49.  *              v0.9.8 July 1996 (Mema)
  50.  *              Added packet logging
  51.  *
  52.  *              v1.0 November 1996 (SC)
  53.  *              Fixed (severe) memory leaks in the /proc fs code
  54.  *              Fixed race conditions in the logging code
  55.  *
  56.  *              v1.1 January 1997 (SC)
  57.  *              Deleted packet logging (use tcpdump instead)
  58.  *              Added support for Metricom Firmware v204 features
  59.  *              (like message checksums)
  60.  *
  61.  *              v1.2 January 1997 (SC)
  62.  *              Put portables list back in
  63.  *
  64.  *              v1.3 July 1997 (SC)
  65.  *              Made STRIP driver set the radio's baud rate automatically.
  66.  *              It is no longer necessarily to manually set the radio's
  67.  *              rate permanently to 115200 -- the driver handles setting
  68.  *              the rate automatically.
  69.  */
  70. #ifdef MODULE
  71. static const char StripVersion[] = "1.3-STUART.CHESHIRE-MODULAR";
  72. #else
  73. static const char StripVersion[] = "1.3-STUART.CHESHIRE";
  74. #endif
  75. #define TICKLE_TIMERS 0
  76. #define EXT_COUNTERS 1
  77. /************************************************************************/
  78. /* Header files */
  79. #include <linux/config.h>
  80. #include <linux/module.h>
  81. #include <linux/version.h>
  82. #include <linux/init.h>
  83. #include <asm/system.h>
  84. #include <asm/uaccess.h>
  85. #include <asm/segment.h>
  86. #include <asm/bitops.h>
  87. /*
  88.  * isdigit() and isspace() use the ctype[] array, which is not available
  89.  * to kernel modules.  If compiling as a module,  use  a local definition
  90.  * of isdigit() and isspace() until  _ctype is added to ksyms.
  91.  */
  92. #ifdef MODULE
  93. # define isdigit(c) ('0' <= (c) && (c)  <= '9')
  94. # define isspace(c) ((c) == ' ' || (c)  == 't')
  95. #else
  96. # include <linux/ctype.h>
  97. #endif
  98. #include <linux/string.h>
  99. #include <linux/mm.h>
  100. #include <linux/interrupt.h>
  101. #include <linux/in.h>
  102. #include <linux/tty.h>
  103. #include <linux/errno.h>
  104. #include <linux/netdevice.h>
  105. #include <linux/inetdevice.h>
  106. #include <linux/etherdevice.h>
  107. #include <linux/skbuff.h>
  108. #include <linux/if_arp.h>
  109. #include <linux/if_strip.h>
  110. #include <linux/proc_fs.h>
  111. #include <linux/serial.h>
  112. #include <linux/serialP.h>
  113. #include <net/arp.h>
  114. #include <linux/ip.h>
  115. #include <linux/tcp.h>
  116. #include <linux/time.h>
  117. /************************************************************************/
  118. /* Useful structures and definitions */
  119. /*
  120.  * A MetricomKey identifies the protocol being carried inside a Metricom
  121.  * Starmode packet.
  122.  */
  123. typedef union
  124. {
  125.     __u8 c[4];
  126.     __u32 l;
  127. } MetricomKey;
  128. /*
  129.  * An IP address can be viewed as four bytes in memory (which is what it is) or as
  130.  * a single 32-bit long (which is convenient for assignment, equality testing etc.)
  131.  */
  132. typedef union
  133. {
  134.     __u8 b[4];
  135.     __u32 l;
  136. } IPaddr;
  137. /*
  138.  * A MetricomAddressString is used to hold a printable representation of
  139.  * a Metricom address.
  140.  */
  141. typedef struct
  142. {
  143.     __u8 c[24];
  144. } MetricomAddressString;
  145. /* Encapsulation can expand packet of size x to 65/64x + 1
  146.  * Sent packet looks like "<CR>*<address>*<key><encaps payload><CR>"
  147.  *                           1 1   1-18  1  4         ?         1
  148.  * eg.                     <CR>*0000-1234*SIP0<encaps payload><CR>
  149.  * We allow 31 bytes for the stars, the key, the address and the <CR>s
  150.  */
  151. #define STRIP_ENCAP_SIZE(X) (32 + (X)*65L/64L)
  152. /*
  153.  * A STRIP_Header is never really sent over the radio, but making a dummy
  154.  * header for internal use within the kernel that looks like an Ethernet
  155.  * header makes certain other software happier. For example, tcpdump
  156.  * already understands Ethernet headers.
  157.  */
  158. typedef struct
  159. {
  160.     MetricomAddress dst_addr; /* Destination address, e.g. "0000-1234"   */
  161.     MetricomAddress src_addr; /* Source address, e.g. "0000-5678"        */
  162.     unsigned short  protocol; /* The protocol type, using Ethernet codes */
  163. } STRIP_Header;
  164. typedef struct
  165. {
  166.     char c[60];
  167. } MetricomNode;
  168. #define NODE_TABLE_SIZE 32
  169. typedef struct
  170. {
  171.     struct timeval timestamp;
  172.     int            num_nodes;
  173.     MetricomNode   node[NODE_TABLE_SIZE];
  174. } MetricomNodeTable;
  175. enum { FALSE = 0, TRUE = 1 };
  176. /*
  177.  * Holds the radio's firmware version.
  178.  */
  179. typedef struct
  180. {
  181.     char c[50];
  182. } FirmwareVersion;
  183. /*
  184.  * Holds the radio's serial number.
  185.  */
  186. typedef struct
  187. {
  188.     char c[18];
  189. } SerialNumber;
  190. /*
  191.  * Holds the radio's battery voltage.
  192.  */
  193. typedef struct
  194. {
  195.     char c[11];
  196. } BatteryVoltage;
  197. typedef struct
  198. {
  199.     char c[8];
  200. } char8;
  201. enum
  202. {
  203.     NoStructure = 0, /* Really old firmware */
  204.     StructuredMessages = 1, /* Parsable AT response msgs */
  205.     ChecksummedMessages = 2 /* Parsable AT response msgs with checksums */
  206. } FirmwareLevel;
  207. struct strip
  208. {
  209.     int magic;
  210.     /*
  211.      * These are pointers to the malloc()ed frame buffers.
  212.      */
  213.     unsigned char     *rx_buff; /* buffer for received IP packet*/
  214.     unsigned char     *sx_buff; /* buffer for received serial data*/
  215.     int                sx_count; /* received serial data counter */
  216.     int                sx_size; /* Serial buffer size */
  217.     unsigned char     *tx_buff; /* transmitter buffer           */
  218.     unsigned char     *tx_head; /* pointer to next byte to XMIT */
  219.     int                tx_left; /* bytes left in XMIT queue     */
  220.     int                tx_size; /* Serial buffer size */
  221.     /*
  222.      * STRIP interface statistics.
  223.      */
  224.     unsigned long      rx_packets; /* inbound frames counter */
  225.     unsigned long      tx_packets; /* outbound frames counter */
  226.     unsigned long      rx_errors; /* Parity, etc. errors */
  227.     unsigned long      tx_errors; /* Planned stuff */
  228.     unsigned long      rx_dropped; /* No memory for skb */
  229.     unsigned long      tx_dropped; /* When MTU change */
  230.     unsigned long      rx_over_errors; /* Frame bigger then STRIP buf. */
  231.     unsigned long      pps_timer; /* Timer to determine pps */
  232.     unsigned long      rx_pps_count; /* Counter to determine pps */
  233.     unsigned long      tx_pps_count; /* Counter to determine pps */
  234.     unsigned long      sx_pps_count; /* Counter to determine pps */
  235.     unsigned long      rx_average_pps; /* rx packets per second * 8 */
  236.     unsigned long      tx_average_pps; /* tx packets per second * 8 */
  237.     unsigned long      sx_average_pps; /* sent packets per second * 8 */
  238. #ifdef EXT_COUNTERS
  239.     unsigned long      rx_bytes;                /* total received bytes */
  240.     unsigned long      tx_bytes;                /* total received bytes */
  241.     unsigned long      rx_rbytes;               /* bytes thru radio i/f */
  242.     unsigned long      tx_rbytes;               /* bytes thru radio i/f */
  243.     unsigned long      rx_sbytes;               /* tot bytes thru serial i/f */
  244.     unsigned long      tx_sbytes;               /* tot bytes thru serial i/f */
  245.     unsigned long      rx_ebytes;               /* tot stat/err bytes */
  246.     unsigned long      tx_ebytes;               /* tot stat/err bytes */
  247. #endif
  248.     /*
  249.      * Internal variables.
  250.      */
  251.     struct strip      *next; /* The next struct in the list */
  252.     struct strip     **referrer; /* The pointer that points to us*/
  253.     int                discard; /* Set if serial error */
  254.     int                working; /* Is radio working correctly? */
  255.     int                firmware_level; /* Message structuring level */
  256.     int                next_command; /* Next periodic command */
  257.     unsigned int       user_baud; /* The user-selected baud rate  */
  258.     int                mtu; /* Our mtu (to spot changes!) */
  259.     long               watchdog_doprobe; /* Next time to test the radio */
  260.     long               watchdog_doreset; /* Time to do next reset */
  261.     long               gratuitous_arp; /* Time to send next ARP refresh*/
  262.     long               arp_interval; /* Next ARP interval */
  263.     struct timer_list  idle_timer; /* For periodic wakeup calls */
  264.     MetricomAddress    true_dev_addr; /* True address of radio */
  265.     int                manual_dev_addr; /* Hack: See note below         */
  266.     FirmwareVersion    firmware_version; /* The radio's firmware version */
  267.     SerialNumber       serial_number; /* The radio's serial number    */
  268.     BatteryVoltage     battery_voltage; /* The radio's battery voltage  */
  269.     /*
  270.      * Other useful structures.
  271.      */
  272.     struct tty_struct *tty; /* ptr to TTY structure */
  273.     struct net_device      dev; /* Our device structure */
  274.     /*
  275.      * Neighbour radio records
  276.      */
  277.     MetricomNodeTable  portables;
  278.     MetricomNodeTable  poletops;
  279. };
  280. /*
  281.  * Note: manual_dev_addr hack
  282.  * 
  283.  * It is not possible to change the hardware address of a Metricom radio,
  284.  * or to send packets with a user-specified hardware source address, thus
  285.  * trying to manually set a hardware source address is a questionable
  286.  * thing to do.  However, if the user *does* manually set the hardware
  287.  * source address of a STRIP interface, then the kernel will believe it,
  288.  * and use it in certain places. For example, the hardware address listed
  289.  * by ifconfig will be the manual address, not the true one.
  290.  * (Both addresses are listed in /proc/net/strip.)
  291.  * Also, ARP packets will be sent out giving the user-specified address as
  292.  * the source address, not the real address. This is dangerous, because
  293.  * it means you won't receive any replies -- the ARP replies will go to
  294.  * the specified address, which will be some other radio. The case where
  295.  * this is useful is when that other radio is also connected to the same
  296.  * machine. This allows you to connect a pair of radios to one machine,
  297.  * and to use one exclusively for inbound traffic, and the other
  298.  * exclusively for outbound traffic. Pretty neat, huh?
  299.  * 
  300.  * Here's the full procedure to set this up:
  301.  * 
  302.  * 1. "slattach" two interfaces, e.g. st0 for outgoing packets,
  303.  *    and st1 for incoming packets
  304.  * 
  305.  * 2. "ifconfig" st0 (outbound radio) to have the hardware address
  306.  *    which is the real hardware address of st1 (inbound radio).
  307.  *    Now when it sends out packets, it will masquerade as st1, and
  308.  *    replies will be sent to that radio, which is exactly what we want.
  309.  * 
  310.  * 3. Set the route table entry ("route add default ..." or
  311.  *    "route add -net ...", as appropriate) to send packets via the st0
  312.  *    interface (outbound radio). Do not add any route which sends packets
  313.  *    out via the st1 interface -- that radio is for inbound traffic only.
  314.  * 
  315.  * 4. "ifconfig" st1 (inbound radio) to have hardware address zero.
  316.  *    This tells the STRIP driver to "shut down" that interface and not
  317.  *    send any packets through it. In particular, it stops sending the
  318.  *    periodic gratuitous ARP packets that a STRIP interface normally sends.
  319.  *    Also, when packets arrive on that interface, it will search the
  320.  *    interface list to see if there is another interface who's manual
  321.  *    hardware address matches its own real address (i.e. st0 in this
  322.  *    example) and if so it will transfer ownership of the skbuff to
  323.  *    that interface, so that it looks to the kernel as if the packet
  324.  *    arrived on that interface. This is necessary because when the
  325.  *    kernel sends an ARP packet on st0, it expects to get a reply on
  326.  *    st0, and if it sees the reply come from st1 then it will ignore
  327.  *    it (to be accurate, it puts the entry in the ARP table, but
  328.  *    labelled in such a way that st0 can't use it).
  329.  * 
  330.  * Thanks to Petros Maniatis for coming up with the idea of splitting
  331.  * inbound and outbound traffic between two interfaces, which turned
  332.  * out to be really easy to implement, even if it is a bit of a hack.
  333.  * 
  334.  * Having set a manual address on an interface, you can restore it
  335.  * to automatic operation (where the address is automatically kept
  336.  * consistent with the real address of the radio) by setting a manual
  337.  * address of all ones, e.g. "ifconfig st0 hw strip FFFFFFFFFFFF"
  338.  * This 'turns off' manual override mode for the device address.
  339.  * 
  340.  * Note: The IEEE 802 headers reported in tcpdump will show the *real*
  341.  * radio addresses the packets were sent and received from, so that you
  342.  * can see what is really going on with packets, and which interfaces
  343.  * they are really going through.
  344.  */
  345. /************************************************************************/
  346. /* Constants */
  347. /*
  348.  * CommandString1 works on all radios
  349.  * Other CommandStrings are only used with firmware that provides structured responses.
  350.  * 
  351.  * ats319=1 Enables Info message for node additions and deletions
  352.  * ats319=2 Enables Info message for a new best node
  353.  * ats319=4 Enables checksums
  354.  * ats319=8 Enables ACK messages
  355.  */
  356. static const int MaxCommandStringLength = 32;
  357. static const int CompatibilityCommand = 1;
  358. static const char CommandString0[] = "*&COMMAND*ATS319=7"; /* Turn on checksums & info messages */
  359. static const char CommandString1[] = "*&COMMAND*ATS305?"; /* Query radio name */
  360. static const char CommandString2[] = "*&COMMAND*ATS325?"; /* Query battery voltage */
  361. static const char CommandString3[] = "*&COMMAND*ATS300?"; /* Query version information */
  362. static const char CommandString4[] = "*&COMMAND*ATS311?"; /* Query poletop list */
  363. static const char CommandString5[] = "*&COMMAND*AT~LA"; /* Query portables list */
  364. typedef struct { const char *string; long length; } StringDescriptor;
  365. static const StringDescriptor CommandString[] =
  366.     {
  367.     { CommandString0, sizeof(CommandString0)-1 },
  368.     { CommandString1, sizeof(CommandString1)-1 },
  369.     { CommandString2, sizeof(CommandString2)-1 },
  370.     { CommandString3, sizeof(CommandString3)-1 },
  371.     { CommandString4, sizeof(CommandString4)-1 },
  372.     { CommandString5, sizeof(CommandString5)-1 }
  373.     };
  374. #define GOT_ALL_RADIO_INFO(S)      
  375.     ((S)->firmware_version.c[0] && 
  376.      (S)->battery_voltage.c[0]  && 
  377.      memcmp(&(S)->true_dev_addr, zero_address.c, sizeof(zero_address)))
  378. static const char            hextable[16]      = "0123456789ABCDEF";
  379. static const MetricomAddress zero_address;
  380. static const MetricomAddress broadcast_address = { { 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF } };
  381. static const MetricomKey     SIP0Key           = { { "SIP0" } };
  382. static const MetricomKey     ARP0Key           = { { "ARP0" } };
  383. static const MetricomKey     ATR_Key           = { { "ATR " } };
  384. static const MetricomKey     ACK_Key           = { { "ACK_" } };
  385. static const MetricomKey     INF_Key           = { { "INF_" } };
  386. static const MetricomKey     ERR_Key           = { { "ERR_" } };
  387. static const long            MaxARPInterval    = 60 * HZ;          /* One minute */
  388. /*
  389.  * Maximum Starmode packet length is 1183 bytes. Allowing 4 bytes for
  390.  * protocol key, 4 bytes for checksum, one byte for CR, and 65/64 expansion
  391.  * for STRIP encoding, that translates to a maximum payload MTU of 1155.
  392.  * Note: A standard NFS 1K data packet is a total of 0x480 (1152) bytes
  393.  * long, including IP header, UDP header, and NFS header. Setting the STRIP
  394.  * MTU to 1152 allows us to send default sized NFS packets without fragmentation.
  395.  */
  396. static const unsigned short  MAX_SEND_MTU          = 1152;
  397. static const unsigned short  MAX_RECV_MTU          = 1500; /* Hoping for Ethernet sized packets in the future! */
  398. static const unsigned short  DEFAULT_STRIP_MTU      = 1152;
  399. static const int             STRIP_MAGIC            = 0x5303;
  400. static const long            LongTime               = 0x7FFFFFFF;
  401. /************************************************************************/
  402. /* Global variables */
  403. static struct strip *struct_strip_list;
  404. /************************************************************************/
  405. /* Macros */
  406. /* Returns TRUE if text T begins with prefix P */
  407. #define has_prefix(T,L,P) (((L) >= sizeof(P)-1) && !strncmp((T), (P), sizeof(P)-1))
  408. /* Returns TRUE if text T of length L is equal to string S */
  409. #define text_equal(T,L,S) (((L) == sizeof(S)-1) && !strncmp((T), (S), sizeof(S)-1))
  410. #define READHEX(X) ((X)>='0' && (X)<='9' ? (X)-'0' :      
  411.                     (X)>='a' && (X)<='f' ? (X)-'a'+10 :   
  412.                     (X)>='A' && (X)<='F' ? (X)-'A'+10 : 0 )
  413. #define READHEX16(X) ((__u16)(READHEX(X)))
  414. #define READDEC(X) ((X)>='0' && (X)<='9' ? (X)-'0' : 0)
  415. #define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
  416. #define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
  417. #define ELEMENTS_OF(X) (sizeof(X) / sizeof((X)[0]))
  418. #define ARRAY_END(X) (&((X)[ELEMENTS_OF(X)]))
  419. #define JIFFIE_TO_SEC(X) ((X) / HZ)
  420. /************************************************************************/
  421. /* Utility routines */
  422. typedef unsigned long InterruptStatus;
  423. static inline InterruptStatus DisableInterrupts(void)
  424. {
  425.     InterruptStatus x;
  426.     save_flags(x);
  427.     cli();
  428.     return(x);
  429. }
  430. static inline void RestoreInterrupts(InterruptStatus x)
  431. {
  432.     restore_flags(x);
  433. }
  434. static int arp_query(unsigned char *haddr, u32 paddr, struct net_device * dev)
  435. {
  436.     struct neighbour *neighbor_entry;
  437.     neighbor_entry = neigh_lookup(&arp_tbl, &paddr, dev);
  438.     if (neighbor_entry != NULL)
  439.     {
  440. neighbor_entry->used = jiffies;
  441. if (neighbor_entry->nud_state & NUD_VALID)
  442. {
  443.     memcpy(haddr, neighbor_entry->ha, dev->addr_len);
  444.     return 1;
  445. }
  446.     }
  447.     return 0;
  448. }
  449. static void DumpData(char *msg, struct strip *strip_info, __u8 *ptr, __u8 *end)
  450. {
  451.     static const int MAX_DumpData = 80;
  452.     __u8 pkt_text[MAX_DumpData], *p = pkt_text;
  453.     *p++ = '"';
  454.     while (ptr<end && p < &pkt_text[MAX_DumpData-4])
  455.     {
  456.         if (*ptr == '\')
  457.         {
  458.             *p++ = '\';
  459.             *p++ = '\';
  460.         }
  461.         else
  462.         {
  463.             if (*ptr >= 32 && *ptr <= 126)
  464.             {
  465.                 *p++ = *ptr;
  466.             }
  467.             else
  468.             {
  469.                 sprintf(p, "\%02X", *ptr);
  470.                 p+= 3;
  471.             }
  472.         }
  473.         ptr++;
  474.     }
  475.     if (ptr == end)
  476.     {
  477.         *p++ = '"';
  478.     }
  479.     *p++ = 0;
  480.     printk(KERN_INFO "%s: %-13s%sn", strip_info->dev.name, msg, pkt_text);
  481. }
  482. #if 0
  483. static void HexDump(char *msg, struct strip *strip_info, __u8 *start, __u8 *end)
  484. {
  485.     __u8 *ptr = start;
  486.     printk(KERN_INFO "%s: %s: %d bytesn", strip_info->dev.name, msg, end-ptr);
  487.     while (ptr < end)
  488.     {
  489.         long offset = ptr - start;
  490.         __u8 text[80], *p = text;
  491.         while (ptr < end && p < &text[16*3])
  492.         {
  493.             *p++ = hextable[*ptr >> 4];
  494.             *p++ = hextable[*ptr++ & 0xF];
  495.             *p++ = ' ';
  496.         }
  497.         p[-1] = 0;
  498.         printk(KERN_INFO "%s: %4lX %sn", strip_info->dev.name, offset, text);
  499.     }
  500. }
  501. #endif
  502. /************************************************************************/
  503. /* Byte stuffing/unstuffing routines */
  504. /* Stuffing scheme:
  505.  * 00    Unused (reserved character)
  506.  * 01-3F Run of 2-64 different characters
  507.  * 40-7F Run of 1-64 different characters plus a single zero at the end
  508.  * 80-BF Run of 1-64 of the same character
  509.  * C0-FF Run of 1-64 zeroes (ASCII 0)
  510.  */
  511. typedef enum
  512. {
  513.     Stuff_Diff      = 0x00,
  514.     Stuff_DiffZero  = 0x40,
  515.     Stuff_Same      = 0x80,
  516.     Stuff_Zero      = 0xC0,
  517.     Stuff_NoCode    = 0xFF, /* Special code, meaning no code selected */
  518.     Stuff_CodeMask  = 0xC0,
  519.     Stuff_CountMask = 0x3F,
  520.     Stuff_MaxCount  = 0x3F,
  521.     Stuff_Magic     = 0x0D /* The value we are eliminating */
  522. } StuffingCode;
  523. /* StuffData encodes the data starting at "src" for "length" bytes.
  524.  * It writes it to the buffer pointed to by "dst" (which must be at least
  525.  * as long as 1 + 65/64 of the input length). The output may be up to 1.6%
  526.  * larger than the input for pathological input, but will usually be smaller.
  527.  * StuffData returns the new value of the dst pointer as its result.
  528.  * "code_ptr_ptr" points to a "__u8 *" which is used to hold encoding state
  529.  * between calls, allowing an encoded packet to be incrementally built up
  530.  * from small parts. On the first call, the "__u8 *" pointed to should be
  531.  * initialized to NULL; between subsequent calls the calling routine should
  532.  * leave the value alone and simply pass it back unchanged so that the
  533.  * encoder can recover its current state.
  534.  */
  535. #define StuffData_FinishBlock(X) 
  536. (*code_ptr = (X) ^ Stuff_Magic, code = Stuff_NoCode)
  537. static __u8 *StuffData(__u8 *src, __u32 length, __u8 *dst, __u8 **code_ptr_ptr)
  538. {
  539.     __u8 *end = src + length;
  540.     __u8 *code_ptr = *code_ptr_ptr;
  541.      __u8 code = Stuff_NoCode, count = 0;
  542.     if (!length)
  543.         return(dst);
  544.     if (code_ptr)
  545.     {
  546.         /*
  547.          * Recover state from last call, if applicable
  548.          */
  549.         code  = (*code_ptr ^ Stuff_Magic) & Stuff_CodeMask;
  550.         count = (*code_ptr ^ Stuff_Magic) & Stuff_CountMask;
  551.     }
  552.     while (src < end)
  553.     {
  554.         switch (code)
  555.         {
  556.             /* Stuff_NoCode: If no current code, select one */
  557.             case Stuff_NoCode:
  558.                 /* Record where we're going to put this code */
  559.                 code_ptr = dst++;
  560.                 count = 0;    /* Reset the count (zero means one instance) */
  561.                 /* Tentatively start a new block */
  562.                 if (*src == 0)
  563.                 {
  564.                     code = Stuff_Zero;
  565.                     src++;
  566.                 }
  567.                 else
  568.                 {
  569.                     code = Stuff_Same;
  570.                     *dst++ = *src++ ^ Stuff_Magic;
  571.                 }
  572.                 /* Note: We optimistically assume run of same -- */
  573.                 /* which will be fixed later in Stuff_Same */
  574.                 /* if it turns out not to be true. */
  575.                 break;
  576.             /* Stuff_Zero: We already have at least one zero encoded */
  577.             case Stuff_Zero:
  578.                 /* If another zero, count it, else finish this code block */
  579.                 if (*src == 0)
  580.                 {
  581.                     count++;
  582.                     src++;
  583.                 }
  584.                 else
  585.                 {
  586.                     StuffData_FinishBlock(Stuff_Zero + count);
  587.                 }
  588.                 break;
  589.             /* Stuff_Same: We already have at least one byte encoded */
  590.             case Stuff_Same:
  591.                 /* If another one the same, count it */
  592.                 if ((*src ^ Stuff_Magic) == code_ptr[1])
  593.                 {
  594.                     count++;
  595.                     src++;
  596.                     break;
  597.                 }
  598.                 /* else, this byte does not match this block. */
  599.                 /* If we already have two or more bytes encoded, finish this code block */
  600.                 if (count)
  601.                 {
  602.                     StuffData_FinishBlock(Stuff_Same + count);
  603.                     break;
  604.                 }
  605.                 /* else, we only have one so far, so switch to Stuff_Diff code */
  606.                 code = Stuff_Diff;
  607.                 /* and fall through to Stuff_Diff case below
  608.                  * Note cunning cleverness here: case Stuff_Diff compares 
  609.                  * the current character with the previous two to see if it
  610.                  * has a run of three the same. Won't this be an error if
  611.                  * there aren't two previous characters stored to compare with?
  612.                  * No. Because we know the current character is *not* the same
  613.                  * as the previous one, the first test below will necessarily
  614.                  * fail and the send half of the "if" won't be executed.
  615.                  */
  616.             /* Stuff_Diff: We have at least two *different* bytes encoded */
  617.             case Stuff_Diff:
  618.                 /* If this is a zero, must encode a Stuff_DiffZero, and begin a new block */
  619.                 if (*src == 0)
  620.                 {
  621.                     StuffData_FinishBlock(Stuff_DiffZero + count);
  622.                 }
  623.                 /* else, if we have three in a row, it is worth starting a Stuff_Same block */
  624.                 else if ((*src ^ Stuff_Magic)==dst[-1] && dst[-1]==dst[-2])
  625.                 {
  626.                     /* Back off the last two characters we encoded */
  627.                     code += count-2;
  628.                     /* Note: "Stuff_Diff + 0" is an illegal code */
  629.                     if (code == Stuff_Diff + 0)
  630.                     {
  631.                         code = Stuff_Same + 0;
  632.                     }
  633.                     StuffData_FinishBlock(code);
  634.                     code_ptr = dst-2;
  635.                     /* dst[-1] already holds the correct value */
  636.                     count = 2;        /* 2 means three bytes encoded */
  637.                     code = Stuff_Same;
  638.                 }
  639.                 /* else, another different byte, so add it to the block */
  640.                 else
  641.                 {
  642.                     *dst++ = *src ^ Stuff_Magic;
  643.                     count++;
  644.                 }
  645.                 src++;    /* Consume the byte */
  646.                 break;
  647.         }
  648.         if (count == Stuff_MaxCount)
  649.         {
  650.             StuffData_FinishBlock(code + count);
  651.         }
  652.     }
  653.     if (code == Stuff_NoCode)
  654.     {
  655.         *code_ptr_ptr = NULL;
  656.     }
  657.     else
  658.     {
  659.         *code_ptr_ptr = code_ptr;
  660.         StuffData_FinishBlock(code + count);
  661.     }
  662.     return(dst);
  663. }
  664. /*
  665.  * UnStuffData decodes the data at "src", up to (but not including) "end".
  666.  * It writes the decoded data into the buffer pointed to by "dst", up to a
  667.  * maximum of "dst_length", and returns the new value of "src" so that a
  668.  * follow-on call can read more data, continuing from where the first left off.
  669.  * 
  670.  * There are three types of results:
  671.  * 1. The source data runs out before extracting "dst_length" bytes:
  672.  *    UnStuffData returns NULL to indicate failure.
  673.  * 2. The source data produces exactly "dst_length" bytes:
  674.  *    UnStuffData returns new_src = end to indicate that all bytes were consumed.
  675.  * 3. "dst_length" bytes are extracted, with more remaining.
  676.  *    UnStuffData returns new_src < end to indicate that there are more bytes
  677.  *    to be read.
  678.  * 
  679.  * Note: The decoding may be destructive, in that it may alter the source
  680.  * data in the process of decoding it (this is necessary to allow a follow-on
  681.  * call to resume correctly).
  682.  */
  683. static __u8 *UnStuffData(__u8 *src, __u8 *end, __u8 *dst, __u32 dst_length)
  684. {
  685.     __u8 *dst_end = dst + dst_length;
  686.     /* Sanity check */
  687.     if (!src || !end || !dst || !dst_length)
  688.         return(NULL);
  689.     while (src < end && dst < dst_end)
  690.     {
  691.         int count = (*src ^ Stuff_Magic) & Stuff_CountMask;
  692.         switch ((*src ^ Stuff_Magic) & Stuff_CodeMask)
  693.         {
  694.             case Stuff_Diff:
  695.                 if (src+1+count >= end)
  696.                     return(NULL);
  697.                 do
  698.                 {
  699.                     *dst++ = *++src ^ Stuff_Magic;
  700.                 }
  701.                 while(--count >= 0 && dst < dst_end);
  702.                 if (count < 0)
  703.                     src += 1;
  704.                 else
  705.                 {
  706.                     if (count == 0)
  707.                         *src = Stuff_Same ^ Stuff_Magic;
  708.                     else
  709.                         *src = (Stuff_Diff + count) ^ Stuff_Magic;
  710.                 }
  711.                 break;
  712.             case Stuff_DiffZero:
  713.                 if (src+1+count >= end)
  714.                     return(NULL);
  715.                 do
  716.                 {
  717.                     *dst++ = *++src ^ Stuff_Magic;
  718.                 }
  719.                 while(--count >= 0 && dst < dst_end);
  720.                 if (count < 0)
  721.                     *src = Stuff_Zero ^ Stuff_Magic;
  722.                 else
  723.                     *src = (Stuff_DiffZero + count) ^ Stuff_Magic;
  724.                 break;
  725.             case Stuff_Same:
  726.                 if (src+1 >= end)
  727.                     return(NULL);
  728.                 do
  729.                 {
  730.                     *dst++ = src[1] ^ Stuff_Magic;
  731.                 }
  732.                 while(--count >= 0 && dst < dst_end);
  733.                 if (count < 0)
  734.                     src += 2;
  735.                 else
  736.                     *src = (Stuff_Same + count) ^ Stuff_Magic;
  737.                 break;
  738.             case Stuff_Zero:
  739.                 do
  740.                 {
  741.                     *dst++ = 0;
  742.                 }
  743.                 while(--count >= 0 && dst < dst_end);
  744.                 if (count < 0)
  745.                     src += 1;
  746.                 else
  747.                     *src = (Stuff_Zero + count) ^ Stuff_Magic;
  748.                 break;
  749.         }
  750.     }
  751.     if (dst < dst_end)
  752.         return(NULL);
  753.     else
  754.         return(src);
  755. }
  756. /************************************************************************/
  757. /* General routines for STRIP */
  758. /*
  759.  * get_baud returns the current baud rate, as one of the constants defined in
  760.  * termbits.h
  761.  * If the user has issued a baud rate override using the 'setserial' command
  762.  * and the logical current rate is set to 38.4, then the true baud rate
  763.  * currently in effect (57.6 or 115.2) is returned.
  764.  */
  765. static unsigned int get_baud(struct tty_struct *tty)
  766.     {
  767.     if (!tty || !tty->termios) return(0);
  768.     if ((tty->termios->c_cflag & CBAUD) == B38400 && tty->driver_data)
  769.         {
  770.         struct async_struct *info = (struct async_struct *)tty->driver_data;
  771.         if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI ) return(B57600);
  772.         if ((info->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI) return(B115200);
  773.         }
  774.     return(tty->termios->c_cflag & CBAUD);
  775.     }
  776. /*
  777.  * set_baud sets the baud rate to the rate defined by baudcode
  778.  * Note: The rate B38400 should be avoided, because the user may have
  779.  * issued a 'setserial' speed override to map that to a different speed.
  780.  * We could achieve a true rate of 38400 if we needed to by cancelling
  781.  * any user speed override that is in place, but that might annoy the
  782.  * user, so it is simplest to just avoid using 38400.
  783.  */
  784. static void set_baud(struct tty_struct *tty, unsigned int baudcode)
  785.     {
  786.     struct termios old_termios = *(tty->termios);
  787.     tty->termios->c_cflag &= ~CBAUD; /* Clear the old baud setting */
  788.     tty->termios->c_cflag |= baudcode; /* Set the new baud setting */
  789.     tty->driver.set_termios(tty, &old_termios);
  790.     }
  791. /*
  792.  * Convert a string to a Metricom Address.
  793.  */
  794. #define IS_RADIO_ADDRESS(p) (                                                 
  795.   isdigit((p)[0]) && isdigit((p)[1]) && isdigit((p)[2]) && isdigit((p)[3]) && 
  796.   (p)[4] == '-' &&                                                            
  797.   isdigit((p)[5]) && isdigit((p)[6]) && isdigit((p)[7]) && isdigit((p)[8])    )
  798. static int string_to_radio_address(MetricomAddress *addr, __u8 *p)
  799. {
  800.     if (!IS_RADIO_ADDRESS(p)) return(1);
  801.     addr->c[0] = 0;
  802.     addr->c[1] = 0;
  803.     addr->c[2] = READHEX(p[0]) << 4 | READHEX(p[1]);
  804.     addr->c[3] = READHEX(p[2]) << 4 | READHEX(p[3]);
  805.     addr->c[4] = READHEX(p[5]) << 4 | READHEX(p[6]);
  806.     addr->c[5] = READHEX(p[7]) << 4 | READHEX(p[8]);
  807.     return(0);
  808. }
  809. /*
  810.  * Convert a Metricom Address to a string.
  811.  */
  812. static __u8 *radio_address_to_string(const MetricomAddress *addr, MetricomAddressString *p)
  813. {
  814.     sprintf(p->c, "%02X%02X-%02X%02X", addr->c[2], addr->c[3], addr->c[4], addr->c[5]);
  815.     return(p->c);
  816. }
  817. /*
  818.  * Note: Must make sure sx_size is big enough to receive a stuffed
  819.  * MAX_RECV_MTU packet. Additionally, we also want to ensure that it's
  820.  * big enough to receive a large radio neighbour list (currently 4K).
  821.  */
  822. static int allocate_buffers(struct strip *strip_info)
  823. {
  824.     struct net_device *dev = &strip_info->dev;
  825.     int sx_size    = MAX(STRIP_ENCAP_SIZE(MAX_RECV_MTU), 4096);
  826.     int tx_size    = STRIP_ENCAP_SIZE(dev->mtu) + MaxCommandStringLength;
  827.     __u8 *r = kmalloc(MAX_RECV_MTU, GFP_ATOMIC);
  828.     __u8 *s = kmalloc(sx_size,      GFP_ATOMIC);
  829.     __u8 *t = kmalloc(tx_size,      GFP_ATOMIC);
  830.     if (r && s && t)
  831.     {
  832.         strip_info->rx_buff = r;
  833.         strip_info->sx_buff = s;
  834.         strip_info->tx_buff = t;
  835.         strip_info->sx_size = sx_size;
  836.         strip_info->tx_size = tx_size;
  837.         strip_info->mtu     = dev->mtu;
  838.         return(1);
  839.     }
  840.     if (r) kfree(r);
  841.     if (s) kfree(s);
  842.     if (t) kfree(t);
  843.     return(0);
  844. }
  845. /*
  846.  * MTU has been changed by the IP layer. Unfortunately we are not told
  847.  * about this, but we spot it ourselves and fix things up. We could be in
  848.  * an upcall from the tty driver, or in an ip packet queue.
  849.  */
  850. static void strip_changedmtu(struct strip *strip_info)
  851. {
  852.     int old_mtu           = strip_info->mtu;
  853.     struct net_device *dev    = &strip_info->dev;
  854.     unsigned char *orbuff = strip_info->rx_buff;
  855.     unsigned char *osbuff = strip_info->sx_buff;
  856.     unsigned char *otbuff = strip_info->tx_buff;
  857.     InterruptStatus intstat;
  858.     if (dev->mtu > MAX_SEND_MTU)
  859.     {
  860.         printk(KERN_ERR "%s: MTU exceeds maximum allowable (%d), MTU change cancelled.n",
  861.             strip_info->dev.name, MAX_SEND_MTU);
  862.         dev->mtu = old_mtu;
  863.         return;
  864.     }
  865.     /*
  866.      * Have to disable interrupts here because we're reallocating and resizing
  867.      * the serial buffers, and we can't have data arriving in them while we're
  868.      * moving them around in memory. This may cause data to be lost on the serial
  869.      * port, but hopefully people won't change MTU that often.
  870.      * Also note, this may not work on a symmetric multi-processor system.
  871.      */
  872.     intstat = DisableInterrupts();
  873.     if (!allocate_buffers(strip_info))
  874.     {
  875.         RestoreInterrupts(intstat);
  876.         printk(KERN_ERR "%s: unable to grow strip buffers, MTU change cancelled.n",
  877.             strip_info->dev.name);
  878.         dev->mtu = old_mtu;
  879.         return;
  880.     }
  881.     if (strip_info->sx_count)
  882.     {
  883.         if (strip_info->sx_count <= strip_info->sx_size)
  884.             memcpy(strip_info->sx_buff, osbuff, strip_info->sx_count);
  885.         else
  886.         {
  887.             strip_info->discard = strip_info->sx_count;
  888.             strip_info->rx_over_errors++;
  889.         }
  890.     }
  891.     if (strip_info->tx_left)
  892.     {
  893.         if (strip_info->tx_left <= strip_info->tx_size)
  894.             memcpy(strip_info->tx_buff, strip_info->tx_head, strip_info->tx_left);
  895.         else
  896.         {
  897.             strip_info->tx_left = 0;
  898.             strip_info->tx_dropped++;
  899.         }
  900.     }
  901.     strip_info->tx_head = strip_info->tx_buff;
  902.     RestoreInterrupts(intstat);
  903.     printk(KERN_NOTICE "%s: strip MTU changed fom %d to %d.n",
  904.         strip_info->dev.name, old_mtu, strip_info->mtu);
  905.     if (orbuff) kfree(orbuff);
  906.     if (osbuff) kfree(osbuff);
  907.     if (otbuff) kfree(otbuff);
  908. }
  909. static void strip_unlock(struct strip *strip_info)
  910. {
  911.     /*
  912.      * Set the timer to go off in one second.
  913.      */
  914.     strip_info->idle_timer.expires = jiffies + 1*HZ;
  915.     add_timer(&strip_info->idle_timer);
  916.     netif_wake_queue(&strip_info->dev);
  917. }
  918. /************************************************************************/
  919. /* Callback routines for exporting information through /proc */
  920. /*
  921.  * This function updates the total amount of data printed so far. It then
  922.  * determines if the amount of data printed into a buffer  has reached the
  923.  * offset requested. If it hasn't, then the buffer is shifted over so that
  924.  * the next bit of data can be printed over the old bit. If the total
  925.  * amount printed so far exceeds the total amount requested, then this
  926.  * function returns 1, otherwise 0.
  927.  */
  928. static int 
  929. shift_buffer(char *buffer, int requested_offset, int requested_len,
  930.              int *total, int *slop, char **buf)
  931. {
  932.     int printed;
  933.     /* printk(KERN_DEBUG "shift: buffer: %d o: %d l: %d t: %d buf: %dn",
  934.            (int) buffer, requested_offset, requested_len, *total,
  935.            (int) *buf); */
  936.     printed = *buf - buffer;
  937.     if (*total + printed <= requested_offset) {
  938.         *total += printed;
  939.         *buf = buffer;
  940.     }
  941.     else {
  942.         if (*total < requested_offset) {
  943.             *slop = requested_offset - *total;
  944.         }
  945.         *total = requested_offset + printed - *slop;
  946.     }
  947.     if (*total > requested_offset + requested_len) {
  948.         return 1;
  949.     }
  950.     else {
  951.         return 0;
  952.     }
  953. }
  954. /*
  955.  * This function calculates the actual start of the requested data
  956.  * in the buffer. It also calculates actual length of data returned,
  957.  * which could be less that the amount of data requested.
  958.  */
  959. static int
  960. calc_start_len(char *buffer, char **start, int requested_offset,
  961.                int requested_len, int total, char *buf)
  962. {
  963.     int return_len, buffer_len;
  964.     buffer_len = buf - buffer;
  965.     if (buffer_len >= 4095) {
  966.   printk(KERN_ERR "STRIP: exceeded /proc buffer sizen");
  967.     }
  968.     /*
  969.      * There may be bytes before and after the
  970.      * chunk that was actually requested.
  971.      */
  972.     return_len = total - requested_offset;
  973.     if (return_len < 0) {
  974.         return_len = 0;
  975.     }
  976.     *start = buf - return_len;
  977.     if (return_len > requested_len) {
  978.         return_len = requested_len;
  979.     }
  980.     /* printk(KERN_DEBUG "return_len: %dn", return_len); */
  981.     return return_len;
  982. }
  983. /*
  984.  * If the time is in the near future, time_delta prints the number of
  985.  * seconds to go into the buffer and returns the address of the buffer.
  986.  * If the time is not in the near future, it returns the address of the
  987.  * string "Not scheduled" The buffer must be long enough to contain the
  988.  * ascii representation of the number plus 9 charactes for the " seconds"
  989.  * and the null character.
  990.  */
  991. static char *time_delta(char buffer[], long time)
  992. {
  993.     time -= jiffies;
  994.     if (time > LongTime / 2) return("Not scheduled");
  995.     if(time < 0) time = 0;  /* Don't print negative times */
  996.     sprintf(buffer, "%ld seconds", time / HZ);
  997.     return(buffer);
  998. }
  999. static int sprintf_neighbours(char *buffer, MetricomNodeTable *table, char *title)
  1000. {
  1001.     /* We wrap this in a do/while loop, so if the table changes */
  1002.     /* while we're reading it, we just go around and try again. */
  1003.     struct timeval t;
  1004.     char *ptr;
  1005.     do
  1006.         {
  1007.         int i;
  1008.         t = table->timestamp;
  1009.         ptr = buffer;
  1010.         if (table->num_nodes) ptr += sprintf(ptr, "n %sn", title);
  1011.         for (i=0; i<table->num_nodes; i++)
  1012.             {
  1013.             InterruptStatus intstat = DisableInterrupts();
  1014.             MetricomNode node = table->node[i];
  1015.             RestoreInterrupts(intstat);
  1016.             ptr += sprintf(ptr, "  %sn", node.c);
  1017.             }
  1018.         } while (table->timestamp.tv_sec != t.tv_sec || table->timestamp.tv_usec != t.tv_usec);
  1019.     return ptr - buffer;
  1020. }
  1021. /*
  1022.  * This function prints radio status information into the specified buffer.
  1023.  * I think the buffer size is 4K, so this routine should never print more
  1024.  * than 4K of data into it. With the maximum of 32 portables and 32 poletops
  1025.  * reported, the routine outputs 3107 bytes into the buffer.
  1026.  */
  1027. static int
  1028. sprintf_status_info(char *buffer, struct strip *strip_info)
  1029. {
  1030.     char temp[32];
  1031.     char *p = buffer;
  1032.     MetricomAddressString addr_string;
  1033.     /* First, we must copy all of our data to a safe place, */
  1034.     /* in case a serial interrupt comes in and changes it.  */
  1035.     InterruptStatus intstat = DisableInterrupts();
  1036.     int                tx_left             = strip_info->tx_left;
  1037.     unsigned long      rx_average_pps      = strip_info->rx_average_pps;
  1038.     unsigned long      tx_average_pps      = strip_info->tx_average_pps;
  1039.     unsigned long      sx_average_pps      = strip_info->sx_average_pps;
  1040.     int                working             = strip_info->working;
  1041.     int                firmware_level      = strip_info->firmware_level;
  1042.     long               watchdog_doprobe    = strip_info->watchdog_doprobe;
  1043.     long               watchdog_doreset    = strip_info->watchdog_doreset;
  1044.     long               gratuitous_arp      = strip_info->gratuitous_arp;
  1045.     long               arp_interval        = strip_info->arp_interval;
  1046.     FirmwareVersion    firmware_version    = strip_info->firmware_version;
  1047.     SerialNumber       serial_number       = strip_info->serial_number;
  1048.     BatteryVoltage     battery_voltage     = strip_info->battery_voltage;
  1049.     char*              if_name             = strip_info->dev.name;
  1050.     MetricomAddress    true_dev_addr       = strip_info->true_dev_addr;
  1051.     MetricomAddress    dev_dev_addr        = *(MetricomAddress*)strip_info->dev.dev_addr;
  1052.     int                manual_dev_addr     = strip_info->manual_dev_addr;
  1053. #ifdef EXT_COUNTERS
  1054.     unsigned long      rx_bytes            = strip_info->rx_bytes;
  1055.     unsigned long      tx_bytes            = strip_info->tx_bytes;
  1056.     unsigned long      rx_rbytes           = strip_info->rx_rbytes;
  1057.     unsigned long      tx_rbytes           = strip_info->tx_rbytes;
  1058.     unsigned long      rx_sbytes           = strip_info->rx_sbytes;
  1059.     unsigned long      tx_sbytes           = strip_info->tx_sbytes;
  1060.     unsigned long      rx_ebytes           = strip_info->rx_ebytes;
  1061.     unsigned long      tx_ebytes           = strip_info->tx_ebytes;
  1062. #endif
  1063.     RestoreInterrupts(intstat);
  1064.     p += sprintf(p, "nInterface namett%sn", if_name);
  1065.     p += sprintf(p, " Radio working:tt%sn", working ? "Yes" : "No");
  1066.     radio_address_to_string(&true_dev_addr, &addr_string);
  1067.     p += sprintf(p, " Radio address:tt%sn", addr_string.c);
  1068.     if (manual_dev_addr)
  1069.     {
  1070.         radio_address_to_string(&dev_dev_addr, &addr_string);
  1071.         p += sprintf(p, " Device address:t%sn", addr_string.c);
  1072.     }
  1073.     p += sprintf(p, " Firmware version:t%s", !working        ? "Unknown" :
  1074.                                               !firmware_level ? "Should be upgraded" :
  1075.                                               firmware_version.c);
  1076.     if (firmware_level >= ChecksummedMessages) p += sprintf(p, " (Checksums Enabled)");
  1077.     p += sprintf(p, "n");
  1078.     p += sprintf(p, " Serial number:tt%sn", serial_number.c);
  1079.     p += sprintf(p, " Battery voltage:t%sn", battery_voltage.c);
  1080.     p += sprintf(p, " Transmit queue (bytes):%dn", tx_left);
  1081.     p += sprintf(p, " Receive packet rate:   %ld packets per secondn", rx_average_pps / 8);
  1082.     p += sprintf(p, " Transmit packet rate:  %ld packets per secondn", tx_average_pps / 8);
  1083.     p += sprintf(p, " Sent packet rate:      %ld packets per secondn", sx_average_pps / 8);
  1084.     p += sprintf(p, " Next watchdog probe:t%sn", time_delta(temp, watchdog_doprobe));
  1085.     p += sprintf(p, " Next watchdog reset:t%sn", time_delta(temp, watchdog_doreset));
  1086.     p += sprintf(p, " Next gratuitous ARP:t");
  1087.     if (!memcmp(strip_info->dev.dev_addr, zero_address.c, sizeof(zero_address)))
  1088.         p += sprintf(p, "Disabledn");
  1089.     else
  1090.     {
  1091.         p += sprintf(p, "%sn", time_delta(temp, gratuitous_arp));
  1092.         p += sprintf(p, " Next ARP interval:t%ld secondsn", JIFFIE_TO_SEC(arp_interval));
  1093.     }
  1094.     if (working)
  1095.         {
  1096. #ifdef EXT_COUNTERS
  1097.           p += sprintf(p, "n");
  1098.           p += sprintf(p, " Total bytes:         trx:t%luttx:t%lun", rx_bytes, tx_bytes);
  1099.           p += sprintf(p, "  thru radio:         trx:t%luttx:t%lun", rx_rbytes, tx_rbytes);
  1100.           p += sprintf(p, "  thru serial port:   trx:t%luttx:t%lun", rx_sbytes, tx_sbytes);
  1101.           p += sprintf(p, " Total stat/err bytes:trx:t%luttx:t%lun", rx_ebytes, tx_ebytes);
  1102. #endif
  1103.         p += sprintf_neighbours(p, &strip_info->poletops, "Poletops:");
  1104.         p += sprintf_neighbours(p, &strip_info->portables, "Portables:");
  1105.         }
  1106.     return p - buffer;
  1107. }
  1108. /*
  1109.  * This function is exports status information from the STRIP driver through
  1110.  * the /proc file system.
  1111.  */
  1112. static int get_status_info(char *buffer, char **start, off_t req_offset, int req_len)
  1113. {
  1114.     int           total = 0, slop = 0;
  1115.     struct strip *strip_info = struct_strip_list;
  1116.     char         *buf = buffer;
  1117.     buf += sprintf(buf, "strip_version: %sn", StripVersion);
  1118.     if (shift_buffer(buffer, req_offset, req_len, &total, &slop, &buf)) goto exit;
  1119.     while (strip_info != NULL)
  1120.         {
  1121.         buf += sprintf_status_info(buf, strip_info);
  1122.         if (shift_buffer(buffer, req_offset, req_len, &total, &slop, &buf)) break;
  1123.         strip_info = strip_info->next;
  1124.         }
  1125.     exit:
  1126.     return(calc_start_len(buffer, start, req_offset, req_len, total, buf));
  1127. }
  1128. /************************************************************************/
  1129. /* Sending routines */
  1130. static void ResetRadio(struct strip *strip_info)
  1131. {
  1132.     struct tty_struct *tty = strip_info->tty;
  1133.     static const char init[] = "ate0q1dt**starmoder**";
  1134.     StringDescriptor s = { init, sizeof(init)-1 };
  1135.     /* 
  1136.      * If the radio isn't working anymore,
  1137.      * we should clear the old status information.
  1138.      */
  1139.     if (strip_info->working)
  1140.     {
  1141.         printk(KERN_INFO "%s: No response: Resetting radio.n", strip_info->dev.name);
  1142.         strip_info->firmware_version.c[0] = '';
  1143.         strip_info->serial_number.c[0] = '';
  1144.         strip_info->battery_voltage.c[0] = '';
  1145.         strip_info->portables.num_nodes = 0;
  1146.         do_gettimeofday(&strip_info->portables.timestamp);
  1147.         strip_info->poletops.num_nodes = 0;
  1148.         do_gettimeofday(&strip_info->poletops.timestamp);
  1149.     }
  1150.     strip_info->pps_timer      = jiffies;
  1151.     strip_info->rx_pps_count   = 0;
  1152.     strip_info->tx_pps_count   = 0;
  1153.     strip_info->sx_pps_count   = 0;
  1154.     strip_info->rx_average_pps = 0;
  1155.     strip_info->tx_average_pps = 0;
  1156.     strip_info->sx_average_pps = 0;
  1157.     /* Mark radio address as unknown */
  1158.     *(MetricomAddress*)&strip_info->true_dev_addr = zero_address;
  1159.     if (!strip_info->manual_dev_addr)
  1160.         *(MetricomAddress*)strip_info->dev.dev_addr = zero_address;
  1161.     strip_info->working = FALSE;
  1162.     strip_info->firmware_level = NoStructure;
  1163.     strip_info->next_command   = CompatibilityCommand;
  1164.     strip_info->watchdog_doprobe = jiffies + 10 * HZ;
  1165.     strip_info->watchdog_doreset = jiffies + 1 * HZ;
  1166.     /* If the user has selected a baud rate above 38.4 see what magic we have to do */
  1167.     if (strip_info->user_baud > B38400)
  1168.         {
  1169.         /*
  1170.          * Subtle stuff: Pay attention :-)
  1171.          * If the serial port is currently at the user's selected (>38.4) rate,
  1172.          * then we temporarily switch to 19.2 and issue the ATS304 command
  1173.          * to tell the radio to switch to the user's selected rate.
  1174.          * If the serial port is not currently at that rate, that means we just
  1175.          * issued the ATS304 command last time through, so this time we restore
  1176.          * the user's selected rate and issue the normal starmode reset string.
  1177.          */
  1178.         if (strip_info->user_baud == get_baud(tty))
  1179.     {
  1180.     static const char b0[] = "ate0q1s304=57600r";
  1181.     static const char b1[] = "ate0q1s304=115200r";
  1182.     static const StringDescriptor baudstring[2] =
  1183.                 { { b0, sizeof(b0)-1 }, { b1, sizeof(b1)-1 } };
  1184.     set_baud(tty, B19200);
  1185.     if      (strip_info->user_baud == B57600 ) s = baudstring[0];
  1186.     else if (strip_info->user_baud == B115200) s = baudstring[1];
  1187.     else s = baudstring[1]; /* For now */
  1188.     }
  1189.         else set_baud(tty, strip_info->user_baud);
  1190.         }
  1191.     tty->driver.write(tty, 0, s.string, s.length);
  1192. #ifdef EXT_COUNTERS
  1193.     strip_info->tx_ebytes += s.length;
  1194. #endif
  1195. }
  1196. /*
  1197.  * Called by the driver when there's room for more data.  If we have
  1198.  * more packets to send, we send them here.
  1199.  */
  1200. static void strip_write_some_more(struct tty_struct *tty)
  1201. {
  1202.     struct strip *strip_info = (struct strip *) tty->disc_data;
  1203.     /* First make sure we're connected. */
  1204.     if (!strip_info || strip_info->magic != STRIP_MAGIC || 
  1205.      !netif_running(&strip_info->dev))
  1206.         return;
  1207.     if (strip_info->tx_left > 0)
  1208.     {
  1209.         /*
  1210.          * If some data left, send it
  1211.          * Note: There's a kernel design bug here. The write_wakeup routine has to
  1212.          * know how many bytes were written in the previous call, but the number of
  1213.          * bytes written is returned as the result of the tty->driver.write call,
  1214.          * and there's no guarantee that the tty->driver.write routine will have
  1215.          * returned before the write_wakeup routine is invoked. If the PC has fast
  1216.          * Serial DMA hardware, then it's quite possible that the write could complete
  1217.          * almost instantaneously, meaning that my write_wakeup routine could be
  1218.          * called immediately, before tty->driver.write has had a chance to return
  1219.          * the number of bytes that it wrote. In an attempt to guard against this,
  1220.          * I disable interrupts around the call to tty->driver.write, although even
  1221.          * this might not work on a symmetric multi-processor system.
  1222.          */
  1223.         InterruptStatus intstat = DisableInterrupts();
  1224.         int num_written = tty->driver.write(tty, 0, strip_info->tx_head, strip_info->tx_left);
  1225.         strip_info->tx_left -= num_written;
  1226.         strip_info->tx_head += num_written;
  1227. #ifdef EXT_COUNTERS
  1228.         strip_info->tx_sbytes += num_written;
  1229. #endif
  1230.         RestoreInterrupts(intstat);
  1231.     }
  1232.     else            /* Else start transmission of another packet */
  1233.     {
  1234.         tty->flags &= ~(1 << TTY_DO_WRITE_WAKEUP);
  1235.         strip_unlock(strip_info);
  1236.     }
  1237. }
  1238. static __u8 *add_checksum(__u8 *buffer, __u8 *end)
  1239. {
  1240.     __u16 sum = 0;
  1241.     __u8 *p = buffer;
  1242.     while (p < end) sum += *p++;
  1243.     end[3] = hextable[sum & 0xF]; sum >>= 4;
  1244.     end[2] = hextable[sum & 0xF]; sum >>= 4;
  1245.     end[1] = hextable[sum & 0xF]; sum >>= 4;
  1246.     end[0] = hextable[sum & 0xF];
  1247.     return(end+4);
  1248. }
  1249. static unsigned char *strip_make_packet(unsigned char *buffer, struct strip *strip_info, struct sk_buff *skb)
  1250. {
  1251.     __u8           *ptr = buffer;
  1252.     __u8           *stuffstate = NULL;
  1253.     STRIP_Header   *header     = (STRIP_Header *)skb->data;
  1254.     MetricomAddress haddr      = header->dst_addr;
  1255.     int             len        = skb->len - sizeof(STRIP_Header);
  1256.     MetricomKey     key;
  1257.     /*HexDump("strip_make_packet", strip_info, skb->data, skb->data + skb->len);*/
  1258.     if      (header->protocol == htons(ETH_P_IP))  key = SIP0Key;
  1259.     else if (header->protocol == htons(ETH_P_ARP)) key = ARP0Key;
  1260.     else
  1261.     {
  1262.         printk(KERN_ERR "%s: strip_make_packet: Unknown packet type 0x%04Xn",
  1263.             strip_info->dev.name, ntohs(header->protocol));
  1264.         return(NULL);
  1265.     }
  1266.     if (len > strip_info->mtu)
  1267.     {
  1268.         printk(KERN_ERR "%s: Dropping oversized transmit packet: %d bytesn",
  1269.             strip_info->dev.name, len);
  1270.         return(NULL);
  1271.     }
  1272.     /*
  1273.      * If we're sending to ourselves, discard the packet.
  1274.      * (Metricom radios choke if they try to send a packet to their own address.)
  1275.      */
  1276.     if (!memcmp(haddr.c, strip_info->true_dev_addr.c, sizeof(haddr)))
  1277.     {
  1278.         printk(KERN_ERR "%s: Dropping packet addressed to selfn", strip_info->dev.name);
  1279.         return(NULL);
  1280.     }
  1281.     /*
  1282.      * If this is a broadcast packet, send it to our designated Metricom
  1283.      * 'broadcast hub' radio (First byte of address being 0xFF means broadcast)
  1284.      */
  1285.     if (haddr.c[0] == 0xFF)
  1286.     {
  1287. u32 brd = 0;
  1288.   struct in_device *in_dev = in_dev_get(&strip_info->dev);
  1289. if (in_dev == NULL)
  1290. return NULL;
  1291. read_lock(&in_dev->lock);
  1292. if (in_dev->ifa_list)
  1293. brd = in_dev->ifa_list->ifa_broadcast;
  1294. read_unlock(&in_dev->lock);
  1295. in_dev_put(in_dev);
  1296. /* arp_query returns 1 if it succeeds in looking up the address, 0 if it fails */
  1297.         if (!arp_query(haddr.c, brd, &strip_info->dev))
  1298.         {
  1299.             printk(KERN_ERR "%s: Unable to send packet (no broadcast hub configured)n",
  1300.                 strip_info->dev.name);
  1301.             return(NULL);
  1302.         }
  1303. /*
  1304.  * If we are the broadcast hub, don't bother sending to ourselves.
  1305.  * (Metricom radios choke if they try to send a packet to their own address.)
  1306.  */
  1307.         if (!memcmp(haddr.c, strip_info->true_dev_addr.c, sizeof(haddr))) return(NULL);
  1308.     }
  1309.     *ptr++ = 0x0D;
  1310.     *ptr++ = '*';
  1311.     *ptr++ = hextable[haddr.c[2] >> 4];
  1312.     *ptr++ = hextable[haddr.c[2] & 0xF];
  1313.     *ptr++ = hextable[haddr.c[3] >> 4];
  1314.     *ptr++ = hextable[haddr.c[3] & 0xF];
  1315.     *ptr++ = '-';
  1316.     *ptr++ = hextable[haddr.c[4] >> 4];
  1317.     *ptr++ = hextable[haddr.c[4] & 0xF];
  1318.     *ptr++ = hextable[haddr.c[5] >> 4];
  1319.     *ptr++ = hextable[haddr.c[5] & 0xF];
  1320.     *ptr++ = '*';
  1321.     *ptr++ = key.c[0];
  1322.     *ptr++ = key.c[1];
  1323.     *ptr++ = key.c[2];
  1324.     *ptr++ = key.c[3];
  1325.     ptr = StuffData(skb->data + sizeof(STRIP_Header), len, ptr, &stuffstate);
  1326.     if (strip_info->firmware_level >= ChecksummedMessages) ptr = add_checksum(buffer+1, ptr);
  1327.     *ptr++ = 0x0D;
  1328.     return(ptr);
  1329. }
  1330. static void strip_send(struct strip *strip_info, struct sk_buff *skb)
  1331. {
  1332.     MetricomAddress haddr;
  1333.     unsigned char *ptr = strip_info->tx_buff;
  1334.     int doreset = (long)jiffies - strip_info->watchdog_doreset >= 0;
  1335.     int doprobe = (long)jiffies - strip_info->watchdog_doprobe >= 0 && !doreset;
  1336.     u32 addr, brd;
  1337.     /*
  1338.      * 1. If we have a packet, encapsulate it and put it in the buffer
  1339.      */
  1340.     if (skb)
  1341.     {
  1342.         char *newptr = strip_make_packet(ptr, strip_info, skb);
  1343.         strip_info->tx_pps_count++;
  1344.         if (!newptr) strip_info->tx_dropped++;
  1345.         else
  1346.         {
  1347.             ptr = newptr;
  1348.             strip_info->sx_pps_count++;
  1349.             strip_info->tx_packets++;        /* Count another successful packet */
  1350. #ifdef EXT_COUNTERS
  1351.             strip_info->tx_bytes += skb->len;
  1352.             strip_info->tx_rbytes += ptr - strip_info->tx_buff;
  1353. #endif
  1354.             /*DumpData("Sending:", strip_info, strip_info->tx_buff, ptr);*/
  1355.             /*HexDump("Sending", strip_info, strip_info->tx_buff, ptr);*/
  1356.         }
  1357.     }
  1358.     /*
  1359.      * 2. If it is time for another tickle, tack it on, after the packet
  1360.      */
  1361.     if (doprobe)
  1362.     {
  1363.         StringDescriptor ts = CommandString[strip_info->next_command];
  1364. #if TICKLE_TIMERS
  1365.         {
  1366.         struct timeval tv;
  1367.         do_gettimeofday(&tv);
  1368.         printk(KERN_INFO "**** Sending tickle string %d      at %02d.%06dn",
  1369.             strip_info->next_command, tv.tv_sec % 100, tv.tv_usec);
  1370.         }
  1371. #endif
  1372.         if (ptr == strip_info->tx_buff) *ptr++ = 0x0D;
  1373.         *ptr++ = '*'; /* First send "**" to provoke an error message */
  1374.         *ptr++ = '*';
  1375.         /* Then add the command */
  1376.         memcpy(ptr, ts.string, ts.length);
  1377.         /* Add a checksum ? */
  1378.         if (strip_info->firmware_level < ChecksummedMessages) ptr += ts.length;
  1379.         else ptr = add_checksum(ptr, ptr + ts.length);
  1380.         *ptr++ = 0x0D; /* Terminate the command with a <CR> */
  1381.         /* Cycle to next periodic command? */
  1382.         if (strip_info->firmware_level >= StructuredMessages)
  1383.                 if (++strip_info->next_command >= ELEMENTS_OF(CommandString))
  1384.                         strip_info->next_command = 0;
  1385. #ifdef EXT_COUNTERS
  1386.         strip_info->tx_ebytes += ts.length;
  1387. #endif
  1388.         strip_info->watchdog_doprobe = jiffies + 10 * HZ;
  1389.         strip_info->watchdog_doreset = jiffies + 1 * HZ;
  1390.         /*printk(KERN_INFO "%s: Routine radio test.n", strip_info->dev.name);*/
  1391.     }
  1392.     /*
  1393.      * 3. Set up the strip_info ready to send the data (if any).
  1394.      */
  1395.     strip_info->tx_head = strip_info->tx_buff;
  1396.     strip_info->tx_left = ptr - strip_info->tx_buff;
  1397.     strip_info->tty->flags |= (1 << TTY_DO_WRITE_WAKEUP);
  1398.     /*
  1399.      * 4. Debugging check to make sure we're not overflowing the buffer.
  1400.      */
  1401.     if (strip_info->tx_size - strip_info->tx_left < 20)
  1402.         printk(KERN_ERR "%s: Sending%5d bytes;%5d bytes free.n", strip_info->dev.name,
  1403.             strip_info->tx_left, strip_info->tx_size - strip_info->tx_left);
  1404.     /*
  1405.      * 5. If watchdog has expired, reset the radio. Note: if there's data waiting in
  1406.      * the buffer, strip_write_some_more will send it after the reset has finished
  1407.      */
  1408.     if (doreset) { ResetRadio(strip_info); return; }
  1409.     if (1) {
  1410.     struct in_device *in_dev = in_dev_get(&strip_info->dev);
  1411.     brd = addr = 0;
  1412.     if (in_dev) {
  1413.     read_lock(&in_dev->lock);
  1414.     if (in_dev->ifa_list) {
  1415.     brd = in_dev->ifa_list->ifa_broadcast;
  1416.     addr = in_dev->ifa_list->ifa_local;
  1417.     }
  1418.     read_unlock(&in_dev->lock);
  1419.     in_dev_put(in_dev);
  1420.     }
  1421.     }
  1422.     
  1423.     /*
  1424.      * 6. If it is time for a periodic ARP, queue one up to be sent.
  1425.      * We only do this if:
  1426.      *  1. The radio is working
  1427.      *  2. It's time to send another periodic ARP
  1428.      *  3. We really know what our address is (and it is not manually set to zero)
  1429.      *  4. We have a designated broadcast address configured
  1430.      * If we queue up an ARP packet when we don't have a designated broadcast
  1431.      * address configured, then the packet will just have to be discarded in
  1432.      * strip_make_packet. This is not fatal, but it causes misleading information
  1433.      * to be displayed in tcpdump. tcpdump will report that periodic APRs are
  1434.      * being sent, when in fact they are not, because they are all being dropped
  1435.      * in the strip_make_packet routine.
  1436.      */
  1437.     if (strip_info->working && (long)jiffies - strip_info->gratuitous_arp >= 0 &&
  1438.         memcmp(strip_info->dev.dev_addr, zero_address.c, sizeof(zero_address)) &&
  1439.         arp_query(haddr.c, brd, &strip_info->dev))
  1440.     {
  1441.         /*printk(KERN_INFO "%s: Sending gratuitous ARP with interval %ldn",
  1442.             strip_info->dev.name, strip_info->arp_interval / HZ);*/
  1443.         strip_info->gratuitous_arp = jiffies + strip_info->arp_interval;
  1444.         strip_info->arp_interval *= 2;
  1445.         if (strip_info->arp_interval > MaxARPInterval)
  1446.             strip_info->arp_interval = MaxARPInterval;
  1447. if (addr)
  1448.     arp_send(
  1449. ARPOP_REPLY, ETH_P_ARP,
  1450. addr, /* Target address of ARP packet is our address */
  1451. &strip_info->dev,        /* Device to send packet on */
  1452. addr, /* Source IP address this ARP packet comes from */
  1453. NULL,        /* Destination HW address is NULL (broadcast it) */
  1454. strip_info->dev.dev_addr,      /* Source HW address is our HW address */
  1455. strip_info->dev.dev_addr);     /* Target HW address is our HW address (redundant) */
  1456.     }
  1457.     /*
  1458.      * 7. All ready. Start the transmission
  1459.      */
  1460.     strip_write_some_more(strip_info->tty);
  1461. }
  1462. /* Encapsulate a datagram and kick it into a TTY queue. */
  1463. static int strip_xmit(struct sk_buff *skb, struct net_device *dev)
  1464. {
  1465.     struct strip *strip_info = (struct strip *)(dev->priv);
  1466.     if (!netif_running(dev))
  1467.     {
  1468.         printk(KERN_ERR "%s: xmit call when iface is downn", dev->name);
  1469.         return(1);
  1470.     }
  1471.     netif_stop_queue(dev);
  1472.     
  1473.     del_timer(&strip_info->idle_timer);
  1474.     /* See if someone has been ifconfigging */
  1475.     if (strip_info->mtu != strip_info->dev.mtu)
  1476.         strip_changedmtu(strip_info);
  1477.     if (jiffies - strip_info->pps_timer > HZ)
  1478.     {
  1479.         unsigned long t = jiffies - strip_info->pps_timer;
  1480.         unsigned long rx_pps_count = (strip_info->rx_pps_count * HZ * 8 + t/2) / t;
  1481.         unsigned long tx_pps_count = (strip_info->tx_pps_count * HZ * 8 + t/2) / t;
  1482.         unsigned long sx_pps_count = (strip_info->sx_pps_count * HZ * 8 + t/2) / t;
  1483.         strip_info->pps_timer = jiffies;
  1484.         strip_info->rx_pps_count = 0;
  1485.         strip_info->tx_pps_count = 0;
  1486.         strip_info->sx_pps_count = 0;
  1487.         strip_info->rx_average_pps = (strip_info->rx_average_pps + rx_pps_count + 1) / 2;
  1488.         strip_info->tx_average_pps = (strip_info->tx_average_pps + tx_pps_count + 1) / 2;
  1489.         strip_info->sx_average_pps = (strip_info->sx_average_pps + sx_pps_count + 1) / 2;
  1490.         if (rx_pps_count / 8 >= 10)
  1491.             printk(KERN_INFO "%s: WARNING: Receiving %ld packets per second.n",
  1492.                 strip_info->dev.name, rx_pps_count / 8);
  1493.         if (tx_pps_count / 8 >= 10)
  1494.             printk(KERN_INFO "%s: WARNING: Tx        %ld packets per second.n",
  1495.                 strip_info->dev.name, tx_pps_count / 8);
  1496.         if (sx_pps_count / 8 >= 10)
  1497.             printk(KERN_INFO "%s: WARNING: Sending   %ld packets per second.n",
  1498.                 strip_info->dev.name, sx_pps_count / 8);
  1499.     }
  1500.     strip_send(strip_info, skb);
  1501.     if (skb)
  1502.      dev_kfree_skb(skb);
  1503.     return(0);
  1504. }
  1505. /*
  1506.  * IdleTask periodically calls strip_xmit, so even when we have no IP packets
  1507.  * to send for an extended period of time, the watchdog processing still gets
  1508.  * done to ensure that the radio stays in Starmode
  1509.  */
  1510. static void strip_IdleTask(unsigned long parameter)
  1511. {
  1512.     strip_xmit(NULL, (struct net_device *)parameter);
  1513. }
  1514. /*
  1515.  * Create the MAC header for an arbitrary protocol layer
  1516.  *
  1517.  * saddr!=NULL        means use this specific address (n/a for Metricom)
  1518.  * saddr==NULL        means use default device source address
  1519.  * daddr!=NULL        means use this destination address
  1520.  * daddr==NULL        means leave destination address alone
  1521.  *                 (e.g. unresolved arp -- kernel will call
  1522.  *                 rebuild_header later to fill in the address)
  1523.  */
  1524. static int strip_header(struct sk_buff *skb, struct net_device *dev,
  1525.         unsigned short type, void *daddr, void *saddr, unsigned len)
  1526. {
  1527.     struct strip *strip_info = (struct strip *)(dev->priv);
  1528.     STRIP_Header *header = (STRIP_Header *)skb_push(skb, sizeof(STRIP_Header));
  1529.     /*printk(KERN_INFO "%s: strip_header 0x%04X %sn", dev->name, type,
  1530.         type == ETH_P_IP ? "IP" : type == ETH_P_ARP ? "ARP" : "");*/
  1531.     header->src_addr = strip_info->true_dev_addr;
  1532.     header->protocol = htons(type);
  1533.     /*HexDump("strip_header", (struct strip *)(dev->priv), skb->data, skb->data + skb->len);*/
  1534.     if (!daddr) return(-dev->hard_header_len);
  1535.     header->dst_addr = *(MetricomAddress*)daddr;
  1536.     return(dev->hard_header_len);
  1537. }
  1538. /*
  1539.  * Rebuild the MAC header. This is called after an ARP
  1540.  * (or in future other address resolution) has completed on this
  1541.  * sk_buff. We now let ARP fill in the other fields.
  1542.  * I think this should return zero if packet is ready to send,
  1543.  * or non-zero if it needs more time to do an address lookup
  1544.  */
  1545. static int strip_rebuild_header(struct sk_buff *skb)
  1546. {
  1547. #ifdef CONFIG_INET
  1548.     STRIP_Header *header = (STRIP_Header *) skb->data;
  1549.     /* Arp find returns zero if if knows the address, */
  1550.     /* or if it doesn't know the address it sends an ARP packet and returns non-zero */
  1551.     return arp_find(header->dst_addr.c, skb)? 1 : 0;
  1552. #else
  1553.     return 0;
  1554. #endif
  1555. }
  1556. /************************************************************************/
  1557. /* Receiving routines */
  1558. static int strip_receive_room(struct tty_struct *tty)
  1559. {
  1560.     return 0x10000;  /* We can handle an infinite amount of data. :-) */
  1561. }
  1562. /*
  1563.  * This function parses the response to the ATS300? command,
  1564.  * extracting the radio version and serial number.
  1565.  */
  1566. static void get_radio_version(struct strip *strip_info, __u8 *ptr, __u8 *end)
  1567. {
  1568.     __u8 *p, *value_begin, *value_end;
  1569.     int len;
  1570.     
  1571.     /* Determine the beginning of the second line of the payload */
  1572.     p = ptr;
  1573.     while (p < end && *p != 10) p++;
  1574.     if (p >= end) return;
  1575.     p++;
  1576.     value_begin = p;
  1577.     
  1578.     /* Determine the end of line */
  1579.     while (p < end && *p != 10) p++;
  1580.     if (p >= end) return;
  1581.     value_end = p;
  1582.     p++;
  1583.      
  1584.     len = value_end - value_begin;
  1585.     len = MIN(len, sizeof(FirmwareVersion) - 1);
  1586.     if (strip_info->firmware_version.c[0] == 0)
  1587.         printk(KERN_INFO "%s: Radio Firmware: %.*sn",
  1588.             strip_info->dev.name, len, value_begin);
  1589.     sprintf(strip_info->firmware_version.c, "%.*s", len, value_begin);
  1590.     
  1591.     /* Look for the first colon */
  1592.     while (p < end && *p != ':') p++;
  1593.     if (p >= end) return;
  1594.     /* Skip over the space */
  1595.     p += 2;
  1596.     len = sizeof(SerialNumber) - 1;
  1597.     if (p + len <= end) {
  1598.         sprintf(strip_info->serial_number.c, "%.*s", len, p);
  1599.     }
  1600.     else {
  1601.       printk(KERN_DEBUG "STRIP: radio serial number shorter (%d) than expected (%d)n",
  1602.              end - p, len);
  1603.     }
  1604. }
  1605. /*
  1606.  * This function parses the response to the ATS325? command,
  1607.  * extracting the radio battery voltage.
  1608.  */
  1609. static void get_radio_voltage(struct strip *strip_info, __u8 *ptr, __u8 *end)
  1610. {
  1611.     int len;
  1612.     len = sizeof(BatteryVoltage) - 1;
  1613.     if (ptr + len <= end) {
  1614.         sprintf(strip_info->battery_voltage.c, "%.*s", len, ptr);
  1615.     }
  1616.     else {
  1617.   printk(KERN_DEBUG "STRIP: radio voltage string shorter (%d) than expected (%d)n",
  1618.          end - ptr, len);
  1619.     }
  1620. }
  1621. /*
  1622.  * This function parses the responses to the AT~LA and ATS311 commands,
  1623.  * which list the radio's neighbours.
  1624.  */
  1625. static void get_radio_neighbours(MetricomNodeTable *table, __u8 *ptr, __u8 *end)
  1626. {
  1627.     table->num_nodes = 0;
  1628.     while (ptr < end && table->num_nodes < NODE_TABLE_SIZE)
  1629.         {
  1630.         MetricomNode *node = &table->node[table->num_nodes++];
  1631.         char *dst = node->c, *limit = dst + sizeof(*node) - 1;
  1632.         while (ptr < end && *ptr <= 32) ptr++;
  1633.         while (ptr < end && dst < limit && *ptr != 10) *dst++ = *ptr++;
  1634.         *dst++ = 0;
  1635.         while (ptr < end && ptr[-1] != 10) ptr++;
  1636.         }
  1637.     do_gettimeofday(&table->timestamp);
  1638. }
  1639. static int get_radio_address(struct strip *strip_info, __u8 *p)
  1640. {
  1641.     MetricomAddress addr;
  1642.     if (string_to_radio_address(&addr, p)) return(1);
  1643.     /* See if our radio address has changed */
  1644.     if (memcmp(strip_info->true_dev_addr.c, addr.c, sizeof(addr)))
  1645.     {
  1646.         MetricomAddressString addr_string;
  1647.         radio_address_to_string(&addr, &addr_string);
  1648.         printk(KERN_INFO "%s: Radio address = %sn", strip_info->dev.name, addr_string.c);
  1649.         strip_info->true_dev_addr = addr;
  1650.         if (!strip_info->manual_dev_addr) *(MetricomAddress*)strip_info->dev.dev_addr = addr;
  1651.         /* Give the radio a few seconds to get its head straight, then send an arp */
  1652.         strip_info->gratuitous_arp = jiffies + 15 * HZ;
  1653.         strip_info->arp_interval = 1 * HZ;
  1654.     }
  1655.     return(0);
  1656. }
  1657. static int verify_checksum(struct strip *strip_info)
  1658. {
  1659.     __u8 *p = strip_info->sx_buff;
  1660.     __u8 *end = strip_info->sx_buff + strip_info->sx_count - 4;
  1661.     u_short sum = (READHEX16(end[0]) << 12) | (READHEX16(end[1]) << 8) |
  1662.                   (READHEX16(end[2]) <<  4) | (READHEX16(end[3]));
  1663.     while (p < end) sum -= *p++;
  1664.     if (sum == 0 && strip_info->firmware_level == StructuredMessages)
  1665.     {
  1666.         strip_info->firmware_level = ChecksummedMessages;
  1667.         printk(KERN_INFO "%s: Radio provides message checksumsn", strip_info->dev.name);
  1668.     }
  1669.     return(sum == 0);
  1670. }
  1671. static void RecvErr(char *msg, struct strip *strip_info)
  1672. {
  1673.     __u8 *ptr = strip_info->sx_buff;
  1674.     __u8 *end = strip_info->sx_buff + strip_info->sx_count;
  1675.     DumpData(msg, strip_info, ptr, end);
  1676.     strip_info->rx_errors++;
  1677. }
  1678. static void RecvErr_Message(struct strip *strip_info, __u8 *sendername, const __u8 *msg, u_long len)
  1679. {
  1680.     if (has_prefix(msg, len, "001")) /* Not in StarMode! */
  1681.     {
  1682.         RecvErr("Error Msg:", strip_info);
  1683.         printk(KERN_INFO "%s: Radio %s is not in StarModen",
  1684.             strip_info->dev.name, sendername);
  1685.     }
  1686.     else if (has_prefix(msg, len, "002")) /* Remap handle */
  1687.     {
  1688. /* We ignore "Remap handle" messages for now */
  1689.     }
  1690.     else if (has_prefix(msg, len, "003")) /* Can't resolve name */
  1691.     {
  1692.         RecvErr("Error Msg:", strip_info);
  1693.         printk(KERN_INFO "%s: Destination radio name is unknownn",
  1694.             strip_info->dev.name);
  1695.     }
  1696.     else if (has_prefix(msg, len, "004")) /* Name too small or missing */
  1697.     {
  1698.         strip_info->watchdog_doreset = jiffies + LongTime;
  1699. #if TICKLE_TIMERS
  1700.         {
  1701.         struct timeval tv;
  1702.         do_gettimeofday(&tv);
  1703.         printk(KERN_INFO "**** Got ERR_004 response         at %02d.%06dn",
  1704.             tv.tv_sec % 100, tv.tv_usec);
  1705.         }
  1706. #endif
  1707.         if (!strip_info->working)
  1708.         {
  1709.             strip_info->working = TRUE;
  1710.             printk(KERN_INFO "%s: Radio now in starmoden", strip_info->dev.name);
  1711.             /*
  1712.              * If the radio has just entered a working state, we should do our first
  1713.              * probe ASAP, so that we find out our radio address etc. without delay.
  1714.              */
  1715.             strip_info->watchdog_doprobe = jiffies;
  1716.         }
  1717.         if (strip_info->firmware_level == NoStructure && sendername)
  1718.         {
  1719.             strip_info->firmware_level = StructuredMessages;
  1720.             strip_info->next_command   = 0; /* Try to enable checksums ASAP */
  1721.             printk(KERN_INFO "%s: Radio provides structured messagesn", strip_info->dev.name);
  1722.         }
  1723.         if (strip_info->firmware_level >= StructuredMessages)
  1724.         {
  1725.             /*
  1726.              * If this message has a valid checksum on the end, then the call to verify_checksum
  1727.              * will elevate the firmware_level to ChecksummedMessages for us. (The actual return
  1728.              * code from verify_checksum is ignored here.)
  1729.              */
  1730.             verify_checksum(strip_info);
  1731.             /*
  1732.              * If the radio has structured messages but we don't yet have all our information about it,
  1733.              * we should do probes without delay, until we have gathered all the information
  1734.              */
  1735.             if (!GOT_ALL_RADIO_INFO(strip_info)) strip_info->watchdog_doprobe = jiffies;
  1736.         }
  1737.     }
  1738.     else if (has_prefix(msg, len, "005")) /* Bad count specification */
  1739.         RecvErr("Error Msg:", strip_info);
  1740.     else if (has_prefix(msg, len, "006")) /* Header too big */
  1741.         RecvErr("Error Msg:", strip_info);
  1742.     else if (has_prefix(msg, len, "007")) /* Body too big */
  1743.     {
  1744.         RecvErr("Error Msg:", strip_info);
  1745.         printk(KERN_ERR "%s: Error! Packet size too big for radio.n",
  1746.             strip_info->dev.name);
  1747.     }
  1748.     else if (has_prefix(msg, len, "008")) /* Bad character in name */
  1749.     {
  1750.         RecvErr("Error Msg:", strip_info);
  1751.         printk(KERN_ERR "%s: Radio name contains illegal charactern",
  1752.             strip_info->dev.name);
  1753.     }
  1754.     else if (has_prefix(msg, len, "009")) /* No count or line terminator */
  1755.         RecvErr("Error Msg:", strip_info);
  1756.     else if (has_prefix(msg, len, "010")) /* Invalid checksum */
  1757.         RecvErr("Error Msg:", strip_info);
  1758.     else if (has_prefix(msg, len, "011")) /* Checksum didn't match */
  1759.         RecvErr("Error Msg:", strip_info);
  1760.     else if (has_prefix(msg, len, "012")) /* Failed to transmit packet */
  1761.         RecvErr("Error Msg:", strip_info);
  1762.     else
  1763.         RecvErr("Error Msg:", strip_info);
  1764. }
  1765. static void process_AT_response(struct strip *strip_info, __u8 *ptr, __u8 *end)
  1766. {
  1767.     u_long len;
  1768.     __u8 *p = ptr;
  1769.     while (p < end && p[-1] != 10) p++; /* Skip past first newline character */
  1770.     /* Now ptr points to the AT command, and p points to the text of the response. */
  1771.     len = p-ptr;
  1772. #if TICKLE_TIMERS
  1773.     {
  1774.     struct timeval tv;
  1775.     do_gettimeofday(&tv);
  1776.     printk(KERN_INFO "**** Got AT response %.7s      at %02d.%06dn",
  1777.         ptr, tv.tv_sec % 100, tv.tv_usec);
  1778.     }
  1779. #endif
  1780.     if      (has_prefix(ptr, len, "ATS300?" )) get_radio_version(strip_info, p, end);
  1781.     else if (has_prefix(ptr, len, "ATS305?" )) get_radio_address(strip_info, p);
  1782.     else if (has_prefix(ptr, len, "ATS311?" )) get_radio_neighbours(&strip_info->poletops, p, end);
  1783.     else if (has_prefix(ptr, len, "ATS319=7")) verify_checksum(strip_info);
  1784.     else if (has_prefix(ptr, len, "ATS325?" )) get_radio_voltage(strip_info, p, end);
  1785.     else if (has_prefix(ptr, len, "AT~LA"   )) get_radio_neighbours(&strip_info->portables, p, end);
  1786.     else                                       RecvErr("Unknown AT Response:", strip_info);
  1787. }
  1788. static void process_ACK(struct strip *strip_info, __u8 *ptr, __u8 *end)
  1789. {
  1790.     /* Currently we don't do anything with ACKs from the radio */
  1791. }
  1792. static void process_Info(struct strip *strip_info, __u8 *ptr, __u8 *end)
  1793. {
  1794.     if (ptr+16 > end) RecvErr("Bad Info Msg:", strip_info);
  1795. }
  1796. static struct net_device *get_strip_dev(struct strip *strip_info)
  1797. {
  1798.     /* If our hardware address is *manually set* to zero, and we know our */
  1799.     /* real radio hardware address, try to find another strip device that has been */
  1800.     /* manually set to that address that we can 'transfer ownership' of this packet to  */
  1801.     if (strip_info->manual_dev_addr &&
  1802.         !memcmp(strip_info->dev.dev_addr, zero_address.c, sizeof(zero_address)) &&
  1803.         memcmp(&strip_info->true_dev_addr, zero_address.c, sizeof(zero_address)))
  1804.     {
  1805.         struct net_device *dev;
  1806. read_lock_bh(&dev_base_lock);
  1807. dev = dev_base;
  1808.         while (dev)
  1809.         {
  1810.             if (dev->type == strip_info->dev.type &&
  1811.                 !memcmp(dev->dev_addr, &strip_info->true_dev_addr, sizeof(MetricomAddress)))
  1812.             {
  1813.                 printk(KERN_INFO "%s: Transferred packet ownership to %s.n",
  1814.                     strip_info->dev.name, dev->name);
  1815. read_unlock_bh(&dev_base_lock);
  1816.                 return(dev);
  1817.             }
  1818.             dev = dev->next;
  1819.         }
  1820. read_unlock_bh(&dev_base_lock);
  1821.     }
  1822.     return(&strip_info->dev);
  1823. }
  1824. /*
  1825.  * Send one completely decapsulated datagram to the next layer.
  1826.  */
  1827. static void deliver_packet(struct strip *strip_info, STRIP_Header *header, __u16 packetlen)
  1828. {
  1829.     struct sk_buff *skb = dev_alloc_skb(sizeof(STRIP_Header) + packetlen);
  1830.     if (!skb)
  1831.     {
  1832.         printk(KERN_ERR "%s: memory squeeze, dropping packet.n", strip_info->dev.name);
  1833.         strip_info->rx_dropped++;
  1834.     }
  1835.     else
  1836.     {
  1837.         memcpy(skb_put(skb, sizeof(STRIP_Header)), header, sizeof(STRIP_Header));
  1838.         memcpy(skb_put(skb, packetlen), strip_info->rx_buff, packetlen);
  1839.         skb->dev      = get_strip_dev(strip_info);
  1840.         skb->protocol = header->protocol;
  1841.         skb->mac.raw  = skb->data;
  1842.         /* Having put a fake header on the front of the sk_buff for the */
  1843.         /* benefit of tools like tcpdump, skb_pull now 'consumes' that  */
  1844.         /* fake header before we hand the packet up to the next layer.  */
  1845.         skb_pull(skb, sizeof(STRIP_Header));
  1846.         /* Finally, hand the packet up to the next layer (e.g. IP or ARP, etc.) */
  1847.         strip_info->rx_packets++;
  1848.         strip_info->rx_pps_count++;
  1849. #ifdef EXT_COUNTERS
  1850.         strip_info->rx_bytes += packetlen;
  1851. #endif
  1852.         netif_rx(skb);
  1853.     }
  1854. }
  1855. static void process_IP_packet(struct strip *strip_info, STRIP_Header *header, __u8 *ptr, __u8 *end)
  1856. {
  1857.     __u16 packetlen;
  1858.     /* Decode start of the IP packet header */
  1859.     ptr = UnStuffData(ptr, end, strip_info->rx_buff, 4);
  1860.     if (!ptr)
  1861.     {
  1862.         RecvErr("IP Packet too short", strip_info);
  1863.         return;
  1864.     }
  1865.     packetlen = ((__u16)strip_info->rx_buff[2] << 8) | strip_info->rx_buff[3];
  1866.     if (packetlen > MAX_RECV_MTU)
  1867.     {
  1868.         printk(KERN_INFO "%s: Dropping oversized received IP packet: %d bytesn",
  1869.             strip_info->dev.name, packetlen);
  1870.         strip_info->rx_dropped++;
  1871.         return;
  1872.     }
  1873.     /*printk(KERN_INFO "%s: Got %d byte IP packetn", strip_info->dev.name, packetlen);*/
  1874.     /* Decode remainder of the IP packet */
  1875.     ptr = UnStuffData(ptr, end, strip_info->rx_buff+4, packetlen-4);
  1876.     if (!ptr)
  1877.     {
  1878.         RecvErr("IP Packet too short", strip_info);
  1879.         return;
  1880.     }
  1881.     if (ptr < end)
  1882.     {
  1883.         RecvErr("IP Packet too long", strip_info);
  1884.         return;
  1885.     }
  1886.     header->protocol = htons(ETH_P_IP);
  1887.     deliver_packet(strip_info, header, packetlen);
  1888. }
  1889. static void process_ARP_packet(struct strip *strip_info, STRIP_Header *header, __u8 *ptr, __u8 *end)
  1890. {
  1891.     __u16 packetlen;
  1892.     struct arphdr *arphdr = (struct arphdr *)strip_info->rx_buff;
  1893.     /* Decode start of the ARP packet */
  1894.     ptr = UnStuffData(ptr, end, strip_info->rx_buff, 8);
  1895.     if (!ptr)
  1896.     {
  1897.         RecvErr("ARP Packet too short", strip_info);
  1898.         return;
  1899.     }
  1900.     packetlen = 8 + (arphdr->ar_hln + arphdr->ar_pln) * 2;
  1901.     if (packetlen > MAX_RECV_MTU)
  1902.     {
  1903.         printk(KERN_INFO "%s: Dropping oversized received ARP packet: %d bytesn",
  1904.             strip_info->dev.name, packetlen);
  1905.         strip_info->rx_dropped++;
  1906.         return;
  1907.     }
  1908.     /*printk(KERN_INFO "%s: Got %d byte ARP %sn",
  1909.         strip_info->dev.name, packetlen,
  1910.         ntohs(arphdr->ar_op) == ARPOP_REQUEST ? "request" : "reply");*/
  1911.     /* Decode remainder of the ARP packet */
  1912.     ptr = UnStuffData(ptr, end, strip_info->rx_buff+8, packetlen-8);
  1913.     if (!ptr)
  1914.     {
  1915.         RecvErr("ARP Packet too short", strip_info);
  1916.         return;
  1917.     }
  1918.     if (ptr < end)
  1919.     {
  1920.         RecvErr("ARP Packet too long", strip_info);
  1921.         return;
  1922.     }
  1923.     header->protocol = htons(ETH_P_ARP);
  1924.     deliver_packet(strip_info, header, packetlen);
  1925. }
  1926. /*
  1927.  * process_text_message processes a <CR>-terminated block of data received
  1928.  * from the radio that doesn't begin with a '*' character. All normal
  1929.  * Starmode communication messages with the radio begin with a '*',
  1930.  * so any text that does not indicates a serial port error, a radio that
  1931.  * is in Hayes command mode instead of Starmode, or a radio with really
  1932.  * old firmware that doesn't frame its Starmode responses properly.
  1933.  */
  1934. static void process_text_message(struct strip *strip_info)
  1935. {
  1936.     __u8 *msg = strip_info->sx_buff;
  1937.     int len   = strip_info->sx_count;
  1938.     /* Check for anything that looks like it might be our radio name */
  1939.     /* (This is here for backwards compatibility with old firmware)  */
  1940.     if (len == 9 && get_radio_address(strip_info, msg) == 0) return;
  1941.     if (text_equal(msg, len, "OK"      )) return; /* Ignore 'OK' responses from prior commands */
  1942.     if (text_equal(msg, len, "ERROR"   )) return; /* Ignore 'ERROR' messages */
  1943.     if (has_prefix(msg, len, "ate0q1"  )) return; /* Ignore character echo back from the radio */
  1944.     /* Catch other error messages */
  1945.     /* (This is here for backwards compatibility with old firmware) */
  1946.     if (has_prefix(msg, len, "ERR_")) { RecvErr_Message(strip_info, NULL, &msg[4], len-4); return; }
  1947.     
  1948.     RecvErr("No initial *", strip_info);
  1949. }
  1950. /*
  1951.  * process_message processes a <CR>-terminated block of data received
  1952.  * from the radio. If the radio is not in Starmode or has old firmware,
  1953.  * it may be a line of text in response to an AT command. Ideally, with
  1954.  * a current radio that's properly in Starmode, all data received should
  1955.  * be properly framed and checksummed radio message blocks, containing
  1956.  * either a starmode packet, or a other communication from the radio
  1957.  * firmware, like "INF_" Info messages and &COMMAND responses.
  1958.  */
  1959. static void process_message(struct strip *strip_info)
  1960. {
  1961.     STRIP_Header header = { zero_address, zero_address, 0 };
  1962.     __u8 *ptr = strip_info->sx_buff;
  1963.     __u8 *end = strip_info->sx_buff + strip_info->sx_count;
  1964.     __u8 sendername[32], *sptr = sendername;
  1965.     MetricomKey key;
  1966.     /*HexDump("Receiving", strip_info, ptr, end);*/
  1967.     /* Check for start of address marker, and then skip over it */
  1968.     if (*ptr == '*') ptr++;
  1969.     else { process_text_message(strip_info); return; }
  1970.     /* Copy out the return address */
  1971.     while (ptr < end && *ptr != '*' && sptr < ARRAY_END(sendername)-1) *sptr++ = *ptr++;
  1972.     *sptr = 0;                /* Null terminate the sender name */
  1973.     /* Check for end of address marker, and skip over it */
  1974.     if (ptr >= end || *ptr != '*')
  1975.     {
  1976.         RecvErr("No second *", strip_info);
  1977.         return;
  1978.     }
  1979.     ptr++; /* Skip the second '*' */
  1980.     /* If the sender name is "&COMMAND", ignore this 'packet'       */
  1981.     /* (This is here for backwards compatibility with old firmware) */
  1982.     if (!strcmp(sendername, "&COMMAND"))
  1983.     {
  1984.         strip_info->firmware_level = NoStructure;
  1985.         strip_info->next_command   = CompatibilityCommand;
  1986.         return;
  1987.     }
  1988.     if (ptr+4 > end)
  1989.     {
  1990.         RecvErr("No proto key", strip_info);
  1991.         return;
  1992.     }
  1993.     /* Get the protocol key out of the buffer */
  1994.     key.c[0] = *ptr++;
  1995.     key.c[1] = *ptr++;
  1996.     key.c[2] = *ptr++;
  1997.     key.c[3] = *ptr++;
  1998.     /* If we're using checksums, verify the checksum at the end of the packet */
  1999.     if (strip_info->firmware_level >= ChecksummedMessages)
  2000.     {
  2001.         end -= 4; /* Chop the last four bytes off the packet (they're the checksum) */
  2002.         if (ptr > end)
  2003.         {
  2004.             RecvErr("Missing Checksum", strip_info);
  2005.             return;
  2006.         }
  2007.         if (!verify_checksum(strip_info))
  2008.         {
  2009.             RecvErr("Bad Checksum", strip_info);
  2010.             return;
  2011.         }
  2012.     }
  2013.     /*printk(KERN_INFO "%s: Got packet from "%s".n", strip_info->dev.name, sendername);*/
  2014.     /*
  2015.      * Fill in (pseudo) source and destination addresses in the packet.
  2016.      * We assume that the destination address was our address (the radio does not
  2017.      * tell us this). If the radio supplies a source address, then we use it.
  2018.      */
  2019.     header.dst_addr = strip_info->true_dev_addr;
  2020.     string_to_radio_address(&header.src_addr, sendername);
  2021. #ifdef EXT_COUNTERS
  2022.     if      (key.l == SIP0Key.l) {
  2023.       strip_info->rx_rbytes += (end - ptr);
  2024.       process_IP_packet(strip_info, &header, ptr, end);
  2025.     } else if (key.l == ARP0Key.l) {
  2026.       strip_info->rx_rbytes += (end - ptr);
  2027.       process_ARP_packet(strip_info, &header, ptr, end);
  2028.     } else if (key.l == ATR_Key.l) {
  2029.       strip_info->rx_ebytes += (end - ptr);
  2030.       process_AT_response(strip_info, ptr, end);
  2031.     } else if (key.l == ACK_Key.l) {
  2032.       strip_info->rx_ebytes += (end - ptr);
  2033.       process_ACK(strip_info, ptr, end);
  2034.     } else if (key.l == INF_Key.l) {
  2035.       strip_info->rx_ebytes += (end - ptr);
  2036.       process_Info(strip_info, ptr, end);
  2037.     } else if (key.l == ERR_Key.l) {
  2038.       strip_info->rx_ebytes += (end - ptr);
  2039.       RecvErr_Message(strip_info, sendername, ptr, end-ptr);
  2040.     } else RecvErr("Unrecognized protocol key", strip_info);
  2041. #else
  2042.     if      (key.l == SIP0Key.l) process_IP_packet  (strip_info, &header, ptr, end);
  2043.     else if (key.l == ARP0Key.l) process_ARP_packet (strip_info, &header, ptr, end);
  2044.     else if (key.l == ATR_Key.l) process_AT_response(strip_info, ptr, end);
  2045.     else if (key.l == ACK_Key.l) process_ACK        (strip_info, ptr, end);
  2046.     else if (key.l == INF_Key.l) process_Info       (strip_info, ptr, end);
  2047.     else if (key.l == ERR_Key.l) RecvErr_Message    (strip_info, sendername, ptr, end-ptr);
  2048.     else                         RecvErr("Unrecognized protocol key", strip_info);
  2049. #endif
  2050. }
  2051. #define TTYERROR(X) ((X) == TTY_BREAK   ? "Break"            : 
  2052.                      (X) == TTY_FRAME   ? "Framing Error"    : 
  2053.                      (X) == TTY_PARITY  ? "Parity Error"     : 
  2054.                      (X) == TTY_OVERRUN ? "Hardware Overrun" : "Unknown Error")
  2055. /*
  2056.  * Handle the 'receiver data ready' interrupt.
  2057.  * This function is called by the 'tty_io' module in the kernel when
  2058.  * a block of STRIP data has been received, which can now be decapsulated
  2059.  * and sent on to some IP layer for further processing.
  2060.  */
  2061. static void
  2062. strip_receive_buf(struct tty_struct *tty, const unsigned char *cp, char *fp, int count)
  2063. {
  2064.     struct strip *strip_info = (struct strip *) tty->disc_data;
  2065.     const unsigned char *end = cp + count;
  2066.     if (!strip_info || strip_info->magic != STRIP_MAGIC 
  2067.      || !netif_running(&strip_info->dev))
  2068.         return;
  2069.     /* Argh! mtu change time! - costs us the packet part received at the change */
  2070.     if (strip_info->mtu != strip_info->dev.mtu)
  2071.         strip_changedmtu(strip_info);
  2072. #if 0
  2073.     {
  2074.     struct timeval tv;
  2075.     do_gettimeofday(&tv);
  2076.     printk(KERN_INFO "**** strip_receive_buf: %3d bytes at %02d.%06dn",
  2077.         count, tv.tv_sec % 100, tv.tv_usec);
  2078.     }
  2079. #endif
  2080. #ifdef EXT_COUNTERS
  2081.     strip_info->rx_sbytes += count;
  2082. #endif
  2083.     /* Read the characters out of the buffer */
  2084.     while (cp < end)
  2085.     {
  2086.         if (fp && *fp) printk(KERN_INFO "%s: %s on serial portn", strip_info->dev.name, TTYERROR(*fp));
  2087.         if (fp && *fp++ && !strip_info->discard) /* If there's a serial error, record it */
  2088.         {
  2089.             /* If we have some characters in the buffer, discard them */
  2090.             strip_info->discard = strip_info->sx_count;
  2091.             strip_info->rx_errors++;
  2092.         }
  2093.         /* Leading control characters (CR, NL, Tab, etc.) are ignored */
  2094.         if (strip_info->sx_count > 0 || *cp >= ' ')
  2095.         {
  2096.             if (*cp == 0x0D)                /* If end of packet, decide what to do with it */
  2097.             {
  2098.                 if (strip_info->sx_count > 3000)
  2099.                     printk(KERN_INFO "%s: Cut a %d byte packet (%d bytes remaining)%sn",
  2100.                         strip_info->dev.name, strip_info->sx_count, end-cp-1,
  2101.                         strip_info->discard ? " (discarded)" : "");
  2102.                 if (strip_info->sx_count > strip_info->sx_size)
  2103.                 {
  2104.                     strip_info->rx_over_errors++;
  2105.                     printk(KERN_INFO "%s: sx_buff overflow (%d bytes total)n",
  2106.                            strip_info->dev.name, strip_info->sx_count);
  2107.                 }
  2108.                 else if (strip_info->discard)
  2109.                     printk(KERN_INFO "%s: Discarding bad packet (%d/%d)n",
  2110.                         strip_info->dev.name, strip_info->discard, strip_info->sx_count);
  2111.                 else process_message(strip_info);
  2112.                 strip_info->discard = 0;
  2113.                 strip_info->sx_count = 0;
  2114.             }
  2115.             else
  2116.             {
  2117.                 /* Make sure we have space in the buffer */
  2118.                 if (strip_info->sx_count < strip_info->sx_size)
  2119.                     strip_info->sx_buff[strip_info->sx_count] = *cp;
  2120.                 strip_info->sx_count++;
  2121.             }
  2122.         }
  2123.         cp++;
  2124.     }
  2125. }
  2126. /************************************************************************/
  2127. /* General control routines */
  2128. static int set_mac_address(struct strip *strip_info, MetricomAddress *addr)
  2129. {
  2130.     /*
  2131.      * We're using a manually specified address if the address is set
  2132.      * to anything other than all ones. Setting the address to all ones
  2133.      * disables manual mode and goes back to automatic address determination
  2134.      * (tracking the true address that the radio has).
  2135.      */
  2136.     strip_info->manual_dev_addr = memcmp(addr->c, broadcast_address.c, sizeof(broadcast_address));
  2137.     if (strip_info->manual_dev_addr)
  2138.          *(MetricomAddress*)strip_info->dev.dev_addr = *addr;
  2139.     else *(MetricomAddress*)strip_info->dev.dev_addr = strip_info->true_dev_addr;
  2140.     return 0;
  2141. }
  2142. static int dev_set_mac_address(struct net_device *dev, void *addr)
  2143. {
  2144.     struct strip *strip_info = (struct strip *)(dev->priv);
  2145.     struct sockaddr *sa = addr;
  2146.     printk(KERN_INFO "%s: strip_set_dev_mac_address calledn", dev->name);
  2147.     set_mac_address(strip_info, (MetricomAddress *)sa->sa_data);
  2148.     return 0;
  2149. }
  2150. static struct net_device_stats *strip_get_stats(struct net_device *dev)
  2151. {
  2152.     static struct net_device_stats stats;
  2153.     struct strip *strip_info = (struct strip *)(dev->priv);
  2154.     memset(&stats, 0, sizeof(struct net_device_stats));
  2155.     stats.rx_packets     = strip_info->rx_packets;
  2156.     stats.tx_packets     = strip_info->tx_packets;
  2157.     stats.rx_dropped     = strip_info->rx_dropped;
  2158.     stats.tx_dropped     = strip_info->tx_dropped;
  2159.     stats.tx_errors      = strip_info->tx_errors;
  2160.     stats.rx_errors      = strip_info->rx_errors;
  2161.     stats.rx_over_errors = strip_info->rx_over_errors;
  2162.     return(&stats);
  2163. }
  2164. /************************************************************************/
  2165. /* Opening and closing */
  2166. /*
  2167.  * Here's the order things happen:
  2168.  * When the user runs "slattach -p strip ..."
  2169.  *  1. The TTY module calls strip_open
  2170.  *  2. strip_open calls strip_alloc
  2171.  *  3.                  strip_alloc calls register_netdev
  2172.  *  4.                  register_netdev calls strip_dev_init
  2173.  *  5. then strip_open finishes setting up the strip_info
  2174.  *
  2175.  * When the user runs "ifconfig st<x> up address netmask ..."
  2176.  *  6. strip_open_low gets called
  2177.  *
  2178.  * When the user runs "ifconfig st<x> down"
  2179.  *  7. strip_close_low gets called
  2180.  *
  2181.  * When the user kills the slattach process
  2182.  *  8. strip_close gets called
  2183.  *  9. strip_close calls dev_close
  2184.  * 10. if the device is still up, then dev_close calls strip_close_low
  2185.  * 11. strip_close calls strip_free
  2186.  */
  2187. /* Open the low-level part of the STRIP channel. Easy! */
  2188. static int strip_open_low(struct net_device *dev)
  2189. {
  2190.     struct strip *strip_info = (struct strip *)(dev->priv);
  2191. #if 0
  2192.     struct in_device *in_dev = dev->ip_ptr;
  2193. #endif
  2194.     if (strip_info->tty == NULL)
  2195.         return(-ENODEV);
  2196.     if (!allocate_buffers(strip_info))
  2197.         return(-ENOMEM);
  2198.     strip_info->sx_count = 0;
  2199.     strip_info->tx_left  = 0;
  2200.     strip_info->discard  = 0;
  2201.     strip_info->working  = FALSE;
  2202.     strip_info->firmware_level = NoStructure;
  2203.     strip_info->next_command   = CompatibilityCommand;
  2204.     strip_info->user_baud      = get_baud(strip_info->tty);
  2205. #if 0
  2206.     /*
  2207.      * Needed because address '0' is special
  2208.      *
  2209.      * --ANK Needed it or not needed, it does not matter at all.
  2210.      *      Make it at user level, guys.
  2211.      */
  2212.     if (in_dev->ifa_list->ifa_address == 0)
  2213.         in_dev->ifa_list->ifa_address = ntohl(0xC0A80001);
  2214. #endif
  2215.     printk(KERN_INFO "%s: Initializing Radio.n", strip_info->dev.name);
  2216.     ResetRadio(strip_info);
  2217.     strip_info->idle_timer.expires = jiffies + 1*HZ;
  2218.     add_timer(&strip_info->idle_timer);
  2219.     netif_wake_queue(dev);
  2220.     return(0);
  2221. }
  2222. /*
  2223.  * Close the low-level part of the STRIP channel. Easy!
  2224.  */
  2225. static int strip_close_low(struct net_device *dev)
  2226. {
  2227.     struct strip *strip_info = (struct strip *)(dev->priv);
  2228.     if (strip_info->tty == NULL)
  2229.         return -EBUSY;
  2230.     strip_info->tty->flags &= ~(1 << TTY_DO_WRITE_WAKEUP);
  2231.     netif_stop_queue(dev);
  2232.     
  2233.     /*
  2234.      * Free all STRIP frame buffers.
  2235.      */
  2236.     if (strip_info->rx_buff)
  2237.     {
  2238.         kfree(strip_info->rx_buff);
  2239.         strip_info->rx_buff = NULL;
  2240.     }
  2241.     if (strip_info->sx_buff)
  2242.     {
  2243.         kfree(strip_info->sx_buff);
  2244.         strip_info->sx_buff = NULL;
  2245.     }
  2246.     if (strip_info->tx_buff)
  2247.     {
  2248.         kfree(strip_info->tx_buff);
  2249.         strip_info->tx_buff = NULL;
  2250.     }
  2251.     del_timer(&strip_info->idle_timer);
  2252.     return 0;
  2253. }
  2254. /*
  2255.  * This routine is called by DDI when the
  2256.  * (dynamically assigned) device is registered
  2257.  */
  2258. static int strip_dev_init(struct net_device *dev)
  2259. {
  2260.     /*
  2261.      * Finish setting up the DEVICE info.
  2262.      */
  2263.     dev->trans_start        = 0;
  2264.     dev->last_rx            = 0;
  2265.     dev->tx_queue_len       = 30;         /* Drop after 30 frames queued */
  2266.     dev->flags              = 0;
  2267.     dev->mtu                = DEFAULT_STRIP_MTU;
  2268.     dev->type               = ARPHRD_METRICOM;        /* dtang */
  2269.     dev->hard_header_len    = sizeof(STRIP_Header);
  2270.     /*
  2271.      *  dev->priv             Already holds a pointer to our struct strip
  2272.      */
  2273.     *(MetricomAddress*)&dev->broadcast = broadcast_address;
  2274.     dev->dev_addr[0]        = 0;
  2275.     dev->addr_len           = sizeof(MetricomAddress);
  2276.     /*
  2277.      * Pointers to interface service routines.
  2278.      */
  2279.     dev->open               = strip_open_low;
  2280.     dev->stop               = strip_close_low;
  2281.     dev->hard_start_xmit    = strip_xmit;
  2282.     dev->hard_header        = strip_header;
  2283.     dev->rebuild_header     = strip_rebuild_header;
  2284.     dev->set_mac_address    = dev_set_mac_address;
  2285.     dev->get_stats          = strip_get_stats;
  2286.     return 0;
  2287. }
  2288. /*
  2289.  * Free a STRIP channel.
  2290.  */
  2291. static void strip_free(struct strip *strip_info)
  2292. {
  2293.     *(strip_info->referrer) = strip_info->next;
  2294.     if (strip_info->next)
  2295.         strip_info->next->referrer = strip_info->referrer;
  2296.     strip_info->magic = 0;
  2297.     kfree(strip_info);
  2298. }
  2299. /*
  2300.  * Allocate a new free STRIP channel
  2301.  */
  2302. static struct strip *strip_alloc(void)
  2303. {
  2304.     int channel_id = 0;
  2305.     struct strip **s = &struct_strip_list;
  2306.     struct strip *strip_info = (struct strip *)
  2307.         kmalloc(sizeof(struct strip), GFP_KERNEL);
  2308.     if (!strip_info)
  2309.         return(NULL);        /* If no more memory, return */
  2310.     /*
  2311.      * Clear the allocated memory
  2312.      */
  2313.     memset(strip_info, 0, sizeof(struct strip));
  2314.     /*
  2315.      * Search the list to find where to put our new entry
  2316.      * (and in the process decide what channel number it is
  2317.      * going to be)
  2318.      */
  2319.     while (*s && (*s)->dev.base_addr == channel_id)
  2320.     {
  2321.         channel_id++;
  2322.         s = &(*s)->next;
  2323.     }
  2324.     /*
  2325.      * Fill in the link pointers
  2326.      */
  2327.     strip_info->next = *s;
  2328.     if (*s)
  2329.         (*s)->referrer = &strip_info->next;
  2330.     strip_info->referrer = s;
  2331.     *s = strip_info;
  2332.     strip_info->magic = STRIP_MAGIC;
  2333.     strip_info->tty   = NULL;
  2334.     strip_info->gratuitous_arp   = jiffies + LongTime;
  2335.     strip_info->arp_interval     = 0;
  2336.     init_timer(&strip_info->idle_timer);
  2337.     strip_info->idle_timer.data     = (long)&strip_info->dev;
  2338.     strip_info->idle_timer.function = strip_IdleTask;
  2339.     /* Note: strip_info->if_name is currently 8 characters long */
  2340.     sprintf(strip_info->dev.name, "st%d", channel_id);
  2341.     strip_info->dev.base_addr    = channel_id;
  2342.     strip_info->dev.priv         = (void*)strip_info;
  2343.     strip_info->dev.next         = NULL;
  2344.     strip_info->dev.init         = strip_dev_init;
  2345.     return(strip_info);
  2346. }
  2347. /*
  2348.  * Open the high-level part of the STRIP channel.
  2349.  * This function is called by the TTY module when the
  2350.  * STRIP line discipline is called for.  Because we are
  2351.  * sure the tty line exists, we only have to link it to
  2352.  * a free STRIP channel...
  2353.  */
  2354. static int strip_open(struct tty_struct *tty)
  2355. {
  2356.     struct strip *strip_info = (struct strip *) tty->disc_data;
  2357.     /*
  2358.      * First make sure we're not already connected.
  2359.      */
  2360.     if (strip_info && strip_info->magic == STRIP_MAGIC)
  2361.         return -EEXIST;
  2362.     /*
  2363.      * OK.  Find a free STRIP channel to use.
  2364.      */
  2365.     if ((strip_info = strip_alloc()) == NULL)
  2366.         return -ENFILE;
  2367.     /*
  2368.      * Register our newly created device so it can be ifconfig'd
  2369.      * strip_dev_init() will be called as a side-effect
  2370.      */
  2371.     if (register_netdev(&strip_info->dev) != 0)
  2372.     {
  2373.         printk(KERN_ERR "strip: register_netdev() failed.n");
  2374.         strip_free(strip_info);
  2375.         return -ENFILE;
  2376.     }
  2377.     strip_info->tty = tty;
  2378.     tty->disc_data = strip_info;
  2379.     if (tty->driver.flush_buffer)
  2380.         tty->driver.flush_buffer(tty);
  2381.     if (tty->ldisc.flush_buffer)
  2382.         tty->ldisc.flush_buffer(tty);
  2383.     /*
  2384.      * Restore default settings
  2385.      */
  2386.     strip_info->dev.type = ARPHRD_METRICOM;    /* dtang */
  2387.     /*
  2388.      * Set tty options
  2389.      */
  2390.     tty->termios->c_iflag |= IGNBRK |IGNPAR;/* Ignore breaks and parity errors. */
  2391.     tty->termios->c_cflag |= CLOCAL;    /* Ignore modem control signals. */
  2392.     tty->termios->c_cflag &= ~HUPCL;    /* Don't close on hup */
  2393.     MOD_INC_USE_COUNT;
  2394.     printk(KERN_INFO "STRIP: device "%s" activatedn", strip_info->dev.name);
  2395.     /*
  2396.      * Done.  We have linked the TTY line to a channel.
  2397.      */
  2398.     return(strip_info->dev.base_addr);
  2399. }
  2400. /*
  2401.  * Close down a STRIP channel.
  2402.  * This means flushing out any pending queues, and then restoring the
  2403.  * TTY line discipline to what it was before it got hooked to STRIP
  2404.  * (which usually is TTY again).
  2405.  */
  2406. static void strip_close(struct tty_struct *tty)
  2407. {
  2408.     struct strip *strip_info = (struct strip *) tty->disc_data;
  2409.     /*
  2410.      * First make sure we're connected.
  2411.      */
  2412.     if (!strip_info || strip_info->magic != STRIP_MAGIC)
  2413.         return;
  2414.     unregister_netdev(&strip_info->dev);
  2415.     tty->disc_data = 0;
  2416.     strip_info->tty = NULL;
  2417.     printk(KERN_INFO "STRIP: device "%s" closed downn", strip_info->dev.name);
  2418.     strip_free(strip_info);
  2419.     tty->disc_data = NULL;
  2420.     MOD_DEC_USE_COUNT;
  2421. }
  2422. /************************************************************************/
  2423. /* Perform I/O control calls on an active STRIP channel. */
  2424. static int strip_ioctl(struct tty_struct *tty, struct file *file,
  2425.     unsigned int cmd, unsigned long arg)
  2426. {
  2427.     struct strip *strip_info = (struct strip *) tty->disc_data;
  2428.     /*
  2429.      * First make sure we're connected.
  2430.      */
  2431.     if (!strip_info || strip_info->magic != STRIP_MAGIC)
  2432.         return -EINVAL;
  2433.     switch(cmd)
  2434.     {
  2435.         case SIOCGIFNAME:
  2436.     return copy_to_user((void*)arg, strip_info->dev.name,
  2437. strlen(strip_info->dev.name) + 1) ? 
  2438. -EFAULT : 0;
  2439.     break;
  2440.         case SIOCSIFHWADDR:
  2441.             {
  2442.             MetricomAddress addr;
  2443.             printk(KERN_INFO "%s: SIOCSIFHWADDRn", strip_info->dev.name);
  2444.     return copy_from_user(&addr, (void*)arg, sizeof(MetricomAddress)) ?
  2445. -EFAULT : set_mac_address(strip_info, &addr);
  2446.     break;
  2447.     }
  2448.         /*
  2449.          * Allow stty to read, but not set, the serial port
  2450.          */
  2451.         case TCGETS:
  2452.         case TCGETA:
  2453.             return n_tty_ioctl(tty, (struct file *) file, cmd,
  2454.                 (unsigned long) arg);
  2455.     break;
  2456.         default:
  2457.             return -ENOIOCTLCMD;
  2458.     break;
  2459.     }
  2460. }
  2461. /************************************************************************/
  2462. /* Initialization */
  2463. static struct tty_ldisc strip_ldisc = {
  2464. magic: TTY_LDISC_MAGIC,
  2465. name: "strip",
  2466. open: strip_open,
  2467. close: strip_close,
  2468. ioctl: strip_ioctl,
  2469. receive_buf: strip_receive_buf,
  2470. receive_room: strip_receive_room,
  2471. write_wakeup: strip_write_some_more,
  2472. };
  2473. /*
  2474.  * Initialize the STRIP driver.
  2475.  * This routine is called at boot time, to bootstrap the multi-channel
  2476.  * STRIP driver
  2477.  */
  2478. static char signon[] __initdata = KERN_INFO "STRIP: Version %s (unlimited channels)n";
  2479. static int __init strip_init_driver(void)
  2480. {
  2481.     int status;
  2482.     printk(signon, StripVersion);
  2483.     /*
  2484.      * Fill in our line protocol discipline, and register it
  2485.      */
  2486.     if ((status = tty_register_ldisc(N_STRIP, &strip_ldisc)))
  2487.         printk(KERN_ERR "STRIP: can't register line discipline (err = %d)n", status);
  2488.     /*
  2489.      * Register the status file with /proc
  2490.      */
  2491.     proc_net_create("strip", S_IFREG | S_IRUGO, get_status_info);
  2492.     return status;
  2493. }
  2494. module_init(strip_init_driver);
  2495. static const char signoff[] __exitdata = KERN_INFO "STRIP: Module Unloadedn";
  2496. static void __exit strip_exit_driver(void)
  2497. {
  2498.     int i;
  2499.     while (struct_strip_list)
  2500.         strip_free(struct_strip_list);
  2501.     /* Unregister with the /proc/net file here. */
  2502.     proc_net_remove("strip");
  2503.     if ((i = tty_register_ldisc(N_STRIP, NULL)))
  2504.         printk(KERN_ERR "STRIP: can't unregister line discipline (err = %d)n", i);
  2505.     printk(signoff);
  2506. }
  2507. module_exit(strip_exit_driver);
  2508. MODULE_AUTHOR("Stuart Cheshire <cheshire@cs.stanford.edu>");
  2509. MODULE_DESCRIPTION("Starmode Radio IP (STRIP) Device Driver");
  2510. MODULE_LICENSE("Dual BSD/GPL");
  2511. MODULE_SUPPORTED_DEVICE("Starmode Radio IP (STRIP) modem");