airo.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:126k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     Aironet driver for 4500 and 4800 series cards
  3.     This code is released under both the GPL version 2 and BSD licenses.
  4.     Either license may be used.  The respective licenses are found at
  5.     the end of this file.
  6.     This code was developed by Benjamin Reed <breed@users.sourceforge.net>
  7.     including portions of which come from the Aironet PC4500
  8.     Developer's Reference Manual and used with permission.  Copyright
  9.     (C) 1999 Benjamin Reed.  All Rights Reserved.  Permission to use
  10.     code in the Developer's manual was granted for this driver by
  11.     Aironet.  Major code contributions were received from Javier Achirica
  12.     and Jean Tourrilhes <jt@hpl.hp.com>.  Code was also integrated from
  13.     the Cisco Aironet driver for Linux.
  14. ======================================================================*/
  15. #include <linux/config.h>
  16. #include <linux/version.h>
  17. #include <asm/segment.h>
  18. #include <linux/init.h>
  19. #include <linux/kernel.h>
  20. #include <linux/module.h>
  21. #include <linux/proc_fs.h>
  22. #include <linux/sched.h>
  23. #include <linux/ptrace.h>
  24. #include <linux/slab.h>
  25. #include <linux/string.h>
  26. #include <linux/timer.h>
  27. #include <linux/interrupt.h>
  28. #include <linux/in.h>
  29. #include <asm/io.h>
  30. #include <asm/system.h>
  31. #include <asm/bitops.h>
  32. #include <linux/netdevice.h>
  33. #include <linux/etherdevice.h>
  34. #include <linux/skbuff.h>
  35. #include <linux/if_arp.h>
  36. #include <linux/ioport.h>
  37. #include <linux/config.h>
  38. #include <linux/pci.h>
  39. #include <asm/uaccess.h>
  40. #ifdef CONFIG_PCI
  41. static struct pci_device_id card_ids[] __devinitdata = {
  42. { 0x14b9, 1, PCI_ANY_ID, PCI_ANY_ID, },
  43. { 0x14b9, 0x4500, PCI_ANY_ID, PCI_ANY_ID },
  44. { 0x14b9, 0x4800, PCI_ANY_ID, PCI_ANY_ID, },
  45. { 0x14b9, 0x0340, PCI_ANY_ID, PCI_ANY_ID, },
  46. { 0x14b9, 0x0350, PCI_ANY_ID, PCI_ANY_ID, },
  47. { 0, }
  48. };
  49. MODULE_DEVICE_TABLE(pci, card_ids);
  50. static int airo_pci_probe(struct pci_dev *, const struct pci_device_id *);
  51. static void airo_pci_remove(struct pci_dev *);
  52. static struct pci_driver airo_driver = {
  53. name:     "airo",
  54. id_table: card_ids,
  55. probe:    airo_pci_probe,
  56. remove:   __devexit_p(airo_pci_remove),
  57. };
  58. #endif /* CONFIG_PCI */
  59. /* Include Wireless Extension definition and check version - Jean II */
  60. #include <linux/wireless.h>
  61. #define WIRELESS_SPY // enable iwspy support
  62. #if WIRELESS_EXT < 9
  63. #warning "Wireless extension v9 or newer required - please upgrade your kernel"
  64. #undef WIRELESS_EXT
  65. #undef WIRELESS_SPY
  66. #endif
  67. #define CISCO_EXT // enable Cisco extensions
  68. #ifdef CISCO_EXT
  69. #include <linux/delay.h>
  70. #endif
  71. /* As you can see this list is HUGH!
  72.    I really don't know what a lot of these counts are about, but they
  73.    are all here for completeness.  If the IGNLABEL macro is put in
  74.    infront of the label, that statistic will not be included in the list
  75.    of statistics in the /proc filesystem */
  76. #define IGNLABEL 0&(int)
  77. static char *statsLabels[] = {
  78. "RxOverrun",
  79. IGNLABEL "RxPlcpCrcErr",
  80. IGNLABEL "RxPlcpFormatErr",
  81. IGNLABEL "RxPlcpLengthErr",
  82. "RxMacCrcErr",
  83. "RxMacCrcOk",
  84. "RxWepErr",
  85. "RxWepOk",
  86. "RetryLong",
  87. "RetryShort",
  88. "MaxRetries",
  89. "NoAck",
  90. "NoCts",
  91. "RxAck",
  92. "RxCts",
  93. "TxAck",
  94. "TxRts",
  95. "TxCts",
  96. "TxMc",
  97. "TxBc",
  98. "TxUcFrags",
  99. "TxUcPackets",
  100. "TxBeacon",
  101. "RxBeacon",
  102. "TxSinColl",
  103. "TxMulColl",
  104. "DefersNo",
  105. "DefersProt",
  106. "DefersEngy",
  107. "DupFram",
  108. "RxFragDisc",
  109. "TxAged",
  110. "RxAged",
  111. "LostSync-MaxRetry",
  112. "LostSync-MissedBeacons",
  113. "LostSync-ArlExceeded",
  114. "LostSync-Deauth",
  115. "LostSync-Disassoced",
  116. "LostSync-TsfTiming",
  117. "HostTxMc",
  118. "HostTxBc",
  119. "HostTxUc",
  120. "HostTxFail",
  121. "HostRxMc",
  122. "HostRxBc",
  123. "HostRxUc",
  124. "HostRxDiscard",
  125. IGNLABEL "HmacTxMc",
  126. IGNLABEL "HmacTxBc",
  127. IGNLABEL "HmacTxUc",
  128. IGNLABEL "HmacTxFail",
  129. IGNLABEL "HmacRxMc",
  130. IGNLABEL "HmacRxBc",
  131. IGNLABEL "HmacRxUc",
  132. IGNLABEL "HmacRxDiscard",
  133. IGNLABEL "HmacRxAccepted",
  134. "SsidMismatch",
  135. "ApMismatch",
  136. "RatesMismatch",
  137. "AuthReject",
  138. "AuthTimeout",
  139. "AssocReject",
  140. "AssocTimeout",
  141. IGNLABEL "ReasonOutsideTable",
  142. IGNLABEL "ReasonStatus1",
  143. IGNLABEL "ReasonStatus2",
  144. IGNLABEL "ReasonStatus3",
  145. IGNLABEL "ReasonStatus4",
  146. IGNLABEL "ReasonStatus5",
  147. IGNLABEL "ReasonStatus6",
  148. IGNLABEL "ReasonStatus7",
  149. IGNLABEL "ReasonStatus8",
  150. IGNLABEL "ReasonStatus9",
  151. IGNLABEL "ReasonStatus10",
  152. IGNLABEL "ReasonStatus11",
  153. IGNLABEL "ReasonStatus12",
  154. IGNLABEL "ReasonStatus13",
  155. IGNLABEL "ReasonStatus14",
  156. IGNLABEL "ReasonStatus15",
  157. IGNLABEL "ReasonStatus16",
  158. IGNLABEL "ReasonStatus17",
  159. IGNLABEL "ReasonStatus18",
  160. IGNLABEL "ReasonStatus19",
  161. "RxMan",
  162. "TxMan",
  163. "RxRefresh",
  164. "TxRefresh",
  165. "RxPoll",
  166. "TxPoll",
  167. "HostRetries",
  168. "LostSync-HostReq",
  169. "HostTxBytes",
  170. "HostRxBytes",
  171. "ElapsedUsec",
  172. "ElapsedSec",
  173. "LostSyncBetterAP",
  174. "PrivacyMismatch",
  175. "Jammed",
  176. "DiscRxNotWepped",
  177. "PhyEleMismatch",
  178. (char*)-1 };
  179. #ifndef RUN_AT
  180. #define RUN_AT(x) (jiffies+(x))
  181. #endif
  182. /* These variables are for insmod, since it seems that the rates
  183.    can only be set in setup_card.  Rates should be a comma separated
  184.    (no spaces) list of rates (up to 8). */
  185. static int rates[8];
  186. static int basic_rate;
  187. static char *ssids[3];
  188. static int io[4];
  189. static int irq[4];
  190. static
  191. int maxencrypt /* = 0 */; /* The highest rate that the card can encrypt at.
  192.        0 means no limit.  For old cards this was 4 */
  193. static int auto_wep /* = 0 */; /* If set, it tries to figure out the wep mode */
  194. static int aux_bap /* = 0 */; /* Checks to see if the aux ports are needed to read
  195.     the bap, needed on some older cards and buses. */
  196. static int adhoc;
  197. static int proc_uid /* = 0 */;
  198. static int proc_gid /* = 0 */;
  199. static int airo_perm = 0555;
  200. static int proc_perm = 0644;
  201. MODULE_AUTHOR("Benjamin Reed");
  202. MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet 
  203.                    cards.  Direct support for ISA/PCI cards and support 
  204.    for PCMCIA when used with airo_cs.");
  205. MODULE_LICENSE("Dual BSD/GPL");
  206. MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340");
  207. MODULE_PARM(io,"1-4i");
  208. MODULE_PARM(irq,"1-4i");
  209. MODULE_PARM(basic_rate,"i");
  210. MODULE_PARM(rates,"1-8i");
  211. MODULE_PARM(ssids,"1-3s");
  212. MODULE_PARM(auto_wep,"i");
  213. MODULE_PARM_DESC(auto_wep, "If non-zero, the driver will keep looping through 
  214. the authentication options until an association is made.  The value of 
  215. auto_wep is number of the wep keys to check.  A value of 2 will try using 
  216. the key at index 0 and index 1.");
  217. MODULE_PARM(aux_bap,"i");
  218. MODULE_PARM_DESC(aux_bap, "If non-zero, the driver will switch into a mode 
  219. than seems to work better for older cards with some older buses.  Before 
  220. switching it checks that the switch is needed.");
  221. MODULE_PARM(maxencrypt, "i");
  222. MODULE_PARM_DESC(maxencrypt, "The maximum speed that the card can do 
  223. encryption.  Units are in 512kbs.  Zero (default) means there is no limit. 
  224. Older cards used to be limited to 2mbs (4).");
  225. MODULE_PARM(adhoc, "i");
  226. MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode.");
  227. MODULE_PARM(proc_uid, "i");
  228. MODULE_PARM_DESC(proc_uid, "The uid that the /proc files will belong to.");
  229. MODULE_PARM(proc_gid, "i");
  230. MODULE_PARM_DESC(proc_gid, "The gid that the /proc files will belong to.");
  231. MODULE_PARM(airo_perm, "i");
  232. MODULE_PARM_DESC(airo_perm, "The permission bits of /proc/[driver/]aironet.");
  233. MODULE_PARM(proc_perm, "i");
  234. MODULE_PARM_DESC(proc_perm, "The permission bits of the files in /proc");
  235. #include <asm/uaccess.h>
  236. /* This is a kind of sloppy hack to get this information to OUT4500 and
  237.    IN4500.  I would be extremely interested in the situation where this
  238.    doesnt work though!!! */
  239. static int do8bitIO = 0;
  240. /* Return codes */
  241. #define SUCCESS 0
  242. #define ERROR -1
  243. #define NO_PACKET -2
  244. /* Commands */
  245. #define NOP 0x0010
  246. #define MAC_ENABLE 0x0001
  247. #define MAC_DISABLE 0x0002
  248. #define CMD_LOSE_SYNC 0x0003 /* Not sure what this does... */
  249. #define CMD_ACCESS 0x0021
  250. #define CMD_ALLOCATETX 0x000a
  251. #define CMD_TRANSMIT 0x000b
  252. #define HOSTSLEEP 0x85
  253. #define CMD_SETMODE 0x0009
  254. #define CMD_ENABLEAUX 0x0111
  255. #define CMD_SOFTRESET 0x0004
  256. #define CMD_LISTBSS 0x0103
  257. /* Registers */
  258. #define COMMAND 0x00
  259. #define PARAM0 0x02
  260. #define PARAM1 0x04
  261. #define PARAM2 0x06
  262. #define STATUS 0x08
  263. #define RESP0 0x0a
  264. #define RESP1 0x0c
  265. #define RESP2 0x0e
  266. #define LINKSTAT 0x10
  267. #define SELECT0 0x18
  268. #define OFFSET0 0x1c
  269. #define RXFID 0x20
  270. #define TXALLOCFID 0x22
  271. #define TXCOMPLFID 0x24
  272. #define DATA0 0x36
  273. #define EVSTAT 0x30
  274. #define EVINTEN 0x32
  275. #define EVACK 0x34
  276. #define SWS0 0x28
  277. #define SWS1 0x2a
  278. #define SWS2 0x2c
  279. #define SWS3 0x2e
  280. #define AUXPAGE 0x3A
  281. #define AUXOFF 0x3C
  282. #define AUXDATA 0x3E
  283. /* BAP selectors */
  284. #define BAP0 0 // Used for receiving packets
  285. #define BAP1 2 // Used for xmiting packets and working with RIDS
  286. /* Flags */
  287. #define COMMAND_BUSY 0x8000
  288. #define BAP_BUSY 0x8000
  289. #define BAP_ERR 0x4000
  290. #define BAP_DONE 0x2000
  291. #define PROMISC 0xffff
  292. #define NOPROMISC 0x0000
  293. #define EV_CMD 0x10
  294. #define EV_CLEARCOMMANDBUSY 0x4000
  295. #define EV_RX 0x01
  296. #define EV_TX 0x02
  297. #define EV_TXEXC 0x04
  298. #define EV_ALLOC 0x08
  299. #define EV_LINK 0x80
  300. #define EV_AWAKE 0x100
  301. #define EV_UNKNOWN 0x800
  302. #define STATUS_INTS ( EV_AWAKE | EV_LINK | EV_TXEXC | EV_TX | EV_RX)
  303. #define IGNORE_INTS ( EV_CMD | EV_UNKNOWN)
  304. /* The RIDs */
  305. #define RID_CAPABILITIES 0xFF00
  306. #define RID_APINFO     0xFF01
  307. #define RID_RADIOINFO  0xFF02
  308. #define RID_UNKNOWN3   0xFF03
  309. #define RID_RSSI       0xFF04
  310. #define RID_CONFIG     0xFF10
  311. #define RID_SSID       0xFF11
  312. #define RID_APLIST     0xFF12
  313. #define RID_DRVNAME    0xFF13
  314. #define RID_ETHERENCAP 0xFF14
  315. #define RID_WEP_TEMP   0xFF15
  316. #define RID_WEP_PERM   0xFF16
  317. #define RID_MODULATION 0xFF17
  318. #define RID_OPTIONS    0xFF18
  319. #define RID_ACTUALCONFIG 0xFF20 /*readonly*/
  320. #define RID_FACTORYCONFIG 0xFF21
  321. #define RID_UNKNOWN22  0xFF22
  322. #define RID_LEAPUSERNAME 0xFF23
  323. #define RID_LEAPPASSWORD 0xFF24
  324. #define RID_STATUS     0xFF50
  325. #define RID_UNKNOWN52  0xFF52
  326. #define RID_UNKNOWN54  0xFF54
  327. #define RID_UNKNOWN55  0xFF55
  328. #define RID_UNKNOWN56  0xFF56
  329. #define RID_STATS16    0xFF60
  330. #define RID_STATS16DELTA 0xFF61
  331. #define RID_STATS16DELTACLEAR 0xFF62
  332. #define RID_STATS      0xFF68
  333. #define RID_STATSDELTA 0xFF69
  334. #define RID_STATSDELTACLEAR 0xFF6A
  335. #define RID_UNKNOWN70  0xFF70
  336. #define RID_UNKNOWN71  0xFF71
  337. #define RID_BSSLISTFIRST 0xFF72
  338. #define RID_BSSLISTNEXT  0xFF73
  339. typedef struct {
  340. u16 cmd;
  341. u16 parm0;
  342. u16 parm1;
  343. u16 parm2;
  344. } Cmd;
  345. typedef struct {
  346. u16 status;
  347. u16 rsp0;
  348. u16 rsp1;
  349. u16 rsp2;
  350. } Resp;
  351. /*
  352.  * Rids and endian-ness:  The Rids will always be in cpu endian, since
  353.  * this all the patches from the big-endian guys end up doing that.
  354.  * so all rid access should use the read/writeXXXRid routines.
  355.  */
  356. /* This is redundant for x86 archs, but it seems necessary for ARM */
  357. #pragma pack(1)
  358. /* This structure came from an email sent to me from an engineer at
  359.    aironet for inclusion into this driver */
  360. typedef struct {
  361. u16 len;
  362. u16 kindex;
  363. u8 mac[6];
  364. u16 klen;
  365. u8 key[16];
  366. } WepKeyRid;
  367. /* These structures are from the Aironet's PC4500 Developers Manual */
  368. typedef struct {
  369. u16 len;
  370. u8 ssid[32];
  371. } Ssid;
  372. typedef struct {
  373. u16 len;
  374. Ssid ssids[3];
  375. } SsidRid;
  376. typedef struct {
  377.         u16 len;
  378.         u16 modulation;
  379. #define MOD_DEFAULT 0
  380. #define MOD_CCK 1
  381. #define MOD_MOK 2
  382. } ModulationRid;
  383. typedef struct {
  384. u16 len; /* sizeof(ConfigRid) */
  385. u16 opmode; /* operating mode */
  386. #define MODE_STA_IBSS 0
  387. #define MODE_STA_ESS 1
  388. #define MODE_AP 2
  389. #define MODE_AP_RPTR 3
  390. #define MODE_ETHERNET_HOST (0<<8) /* rx payloads converted */
  391. #define MODE_LLC_HOST (1<<8) /* rx payloads left as is */
  392. #define MODE_AIRONET_EXTEND (1<<9) /* enable Aironet extenstions */
  393. #define MODE_AP_INTERFACE (1<<10) /* enable ap interface extensions */
  394. #define MODE_ANTENNA_ALIGN (1<<11) /* enable antenna alignment */
  395. #define MODE_ETHER_LLC (1<<12) /* enable ethernet LLC */
  396. #define MODE_LEAF_NODE (1<<13) /* enable leaf node bridge */
  397. #define MODE_CF_POLLABLE (1<<14) /* enable CF pollable */
  398. u16 rmode; /* receive mode */
  399. #define RXMODE_BC_MC_ADDR 0
  400. #define RXMODE_BC_ADDR 1 /* ignore multicasts */
  401. #define RXMODE_ADDR 2 /* ignore multicast and broadcast */
  402. #define RXMODE_RFMON 3 /* wireless monitor mode */
  403. #define RXMODE_RFMON_ANYBSS 4
  404. #define RXMODE_LANMON 5 /* lan style monitor -- data packets only */
  405. #define RXMODE_DISABLE_802_3_HEADER (1<<8) /* disables 802.3 header on rx */
  406. #define RXMODE_NORMALIZED_RSSI (1<<9) /* return normalized RSSI */
  407. u16 fragThresh;
  408. u16 rtsThres;
  409. u8 macAddr[6];
  410. u8 rates[8];
  411. u16 shortRetryLimit;
  412. u16 longRetryLimit;
  413. u16 txLifetime; /* in kusec */
  414. u16 rxLifetime; /* in kusec */
  415. u16 stationary;
  416. u16 ordering;
  417. u16 u16deviceType; /* for overriding device type */
  418. u16 cfpRate;
  419. u16 cfpDuration;
  420. u16 _reserved1[3];
  421. /*---------- Scanning/Associating ----------*/
  422. u16 scanMode;
  423. #define SCANMODE_ACTIVE 0
  424. #define SCANMODE_PASSIVE 1
  425. #define SCANMODE_AIROSCAN 2
  426. u16 probeDelay; /* in kusec */
  427. u16 probeEnergyTimeout; /* in kusec */
  428.         u16 probeResponseTimeout;
  429. u16 beaconListenTimeout;
  430. u16 joinNetTimeout;
  431. u16 authTimeout;
  432. u16 authType;
  433. #define AUTH_OPEN 0x1
  434. #define AUTH_ENCRYPT 0x101
  435. #define AUTH_SHAREDKEY 0x102
  436. #define AUTH_ALLOW_UNENCRYPTED 0x200
  437. u16 associationTimeout;
  438. u16 specifiedApTimeout;
  439. u16 offlineScanInterval;
  440. u16 offlineScanDuration;
  441. u16 linkLossDelay;
  442. u16 maxBeaconLostTime;
  443. u16 refreshInterval;
  444. #define DISABLE_REFRESH 0xFFFF
  445. u16 _reserved1a[1];
  446. /*---------- Power save operation ----------*/
  447. u16 powerSaveMode;
  448. #define POWERSAVE_CAM 0
  449. #define POWERSAVE_PSP 1
  450. #define POWERSAVE_PSPCAM 2
  451. u16 sleepForDtims;
  452. u16 listenInterval;
  453. u16 fastListenInterval;
  454. u16 listenDecay;
  455. u16 fastListenDelay;
  456. u16 _reserved2[2];
  457. /*---------- Ap/Ibss config items ----------*/
  458. u16 beaconPeriod;
  459. u16 atimDuration;
  460. u16 hopPeriod;
  461. u16 channelSet;
  462. u16 channel;
  463. u16 dtimPeriod;
  464. u16 bridgeDistance;
  465. u16 radioID;
  466. /*---------- Radio configuration ----------*/
  467. u16 radioType;
  468. #define RADIOTYPE_DEFAULT 0
  469. #define RADIOTYPE_802_11 1
  470. #define RADIOTYPE_LEGACY 2
  471. u8 rxDiversity;
  472. u8 txDiversity;
  473. u16 txPower;
  474. #define TXPOWER_DEFAULT 0
  475. u16 rssiThreshold;
  476. #define RSSI_DEFAULT 0
  477.         u16 modulation;
  478. #define PREAMBLE_AUTO 0
  479. #define PREAMBLE_LONG 1
  480. #define PREAMBLE_SHORT 2
  481. u16 preamble;
  482. u16 homeProduct;
  483. u16 radioSpecific;
  484. /*---------- Aironet Extensions ----------*/
  485. u8 nodeName[16];
  486. u16 arlThreshold;
  487. u16 arlDecay;
  488. u16 arlDelay;
  489. u16 _reserved4[1];
  490. /*---------- Aironet Extensions ----------*/
  491. u16 magicAction;
  492. #define MAGIC_ACTION_STSCHG 1
  493. #define MACIC_ACTION_RESUME 2
  494. #define MAGIC_IGNORE_MCAST (1<<8)
  495. #define MAGIC_IGNORE_BCAST (1<<9)
  496. #define MAGIC_SWITCH_TO_PSP (0<<10)
  497. #define MAGIC_STAY_IN_CAM (1<<10)
  498. u16 magicControl;
  499. u16 autoWake;
  500. } ConfigRid;
  501. typedef struct {
  502. u16 len;
  503. u8 mac[6];
  504. u16 mode;
  505. u16 errorCode;
  506. u16 sigQuality;
  507. u16 SSIDlen;
  508. char SSID[32];
  509. char apName[16];
  510. char bssid[4][6];
  511. u16 beaconPeriod;
  512. u16 dimPeriod;
  513. u16 atimDuration;
  514. u16 hopPeriod;
  515. u16 channelSet;
  516. u16 channel;
  517. u16 hopsToBackbone;
  518. u16 apTotalLoad;
  519. u16 generatedLoad;
  520. u16 accumulatedArl;
  521. u16 signalQuality;
  522. u16 currentXmitRate;
  523. u16 apDevExtensions;
  524. u16 normalizedSignalStrength;
  525. u16 _reserved[10];
  526. } StatusRid;
  527. typedef struct {
  528. u16 len;
  529. u16 spacer;
  530. u32 vals[100];
  531. } StatsRid;
  532. typedef struct {
  533. u16 len;
  534. u8 ap[4][6];
  535. } APListRid;
  536. typedef struct {
  537. u16 len;
  538. char oui[3];
  539. char zero;
  540. u16 prodNum;
  541. char manName[32];
  542. char prodName[16];
  543. char prodVer[8];
  544. char factoryAddr[6];
  545. char aironetAddr[6];
  546. u16 radioType;
  547. u16 country;
  548. char callid[6];
  549. char supportedRates[8];
  550. char rxDiversity;
  551. char txDiversity;
  552. u16 txPowerLevels[8];
  553. u16 hardVer;
  554. u16 hardCap;
  555. u16 tempRange;
  556. u16 softVer;
  557. u16 softSubVer;
  558. u16 interfaceVer;
  559. u16 softCap;
  560. u16 bootBlockVer;
  561. u16 requiredHard;
  562. } CapabilityRid;
  563. typedef struct {
  564.   u16 len;
  565.   u16 index; /* First is 0 and 0xffff means end of list */
  566. #define RADIO_FH 1 /* Frequency hopping radio type */
  567. #define RADIO_DS 2 /* Direct sequence radio type */
  568. #define RADIO_TMA 4 /* Proprietary radio used in old cards (2500) */
  569.   u16 radioType;
  570.   u8 bssid[6]; /* Mac address of the BSS */
  571.   u8 zero;
  572.   u8 ssidLen;
  573.   u8 ssid[32];
  574.   u16 rssi;
  575. #define CAP_ESS (1<<0)
  576. #define CAP_IBSS (1<<1)
  577. #define CAP_PRIVACY (1<<4)
  578. #define CAP_SHORTHDR (1<<5)
  579.   u16 cap;
  580.   u16 beaconInterval;
  581.   u8 rates[8]; /* Same as rates for config rid */
  582.   struct { /* For frequency hopping only */
  583.     u16 dwell;
  584.     u8 hopSet;
  585.     u8 hopPattern;
  586.     u8 hopIndex;
  587.     u8 fill;
  588.   } fh;
  589.   u16 dsChannel;
  590.   u16 atimWindow;
  591. } BSSListRid;
  592. typedef struct {
  593.   u8 rssipct;
  594.   u8 rssidBm;
  595. } tdsRssiEntry;
  596. typedef struct {
  597.   u16 len;
  598.   tdsRssiEntry x[256];
  599. } tdsRssiRid;
  600. #pragma pack()
  601. #define TXCTL_TXOK (1<<1) /* report if tx is ok */
  602. #define TXCTL_TXEX (1<<2) /* report if tx fails */
  603. #define TXCTL_802_3 (0<<3) /* 802.3 packet */
  604. #define TXCTL_802_11 (1<<3) /* 802.11 mac packet */
  605. #define TXCTL_ETHERNET (0<<4) /* payload has ethertype */
  606. #define TXCTL_LLC (1<<4) /* payload is llc */
  607. #define TXCTL_RELEASE (0<<5) /* release after completion */
  608. #define TXCTL_NORELEASE (1<<5) /* on completion returns to host */
  609. #define BUSY_FID 0x10000
  610. #ifdef CISCO_EXT
  611. #define AIROMAGIC 0xa55a
  612. /* Warning : SIOCDEVPRIVATE may disapear during 2.5.X - Jean II */
  613. #ifdef SIOCIWFIRSTPRIV
  614. #ifdef SIOCDEVPRIVATE
  615. #define AIROOLDIOCTL SIOCDEVPRIVATE
  616. #define AIROOLDIDIFC  AIROOLDIOCTL + 1
  617. #endif /* SIOCDEVPRIVATE */
  618. #else /* SIOCIWFIRSTPRIV */
  619. #define SIOCIWFIRSTPRIV SIOCDEVPRIVATE
  620. #endif /* SIOCIWFIRSTPRIV */
  621. #define AIROIOCTL SIOCIWFIRSTPRIV
  622. #define AIROIDIFC  AIROIOCTL + 1
  623. /* Ioctl constants to be used in airo_ioctl.command */
  624. #define AIROGCAP   0 // Capability rid
  625. #define AIROGCFG 1       // USED A LOT
  626. #define AIROGSLIST 2 // System ID list
  627. #define AIROGVLIST 3       // List of specified AP's
  628. #define AIROGDRVNAM 4 //  NOTUSED
  629. #define AIROGEHTENC 5 // NOTUSED
  630. #define AIROGWEPKTMP 6
  631. #define AIROGWEPKNV 7
  632. #define AIROGSTAT 8
  633. #define AIROGSTATSC32 9
  634. #define AIROGSTATSD32 10
  635. /* Leave gap of 40 commands after AIROGSTATSD32 for future */
  636. #define AIROPCAP                AIROGSTATSD32 + 40
  637. #define AIROPVLIST              AIROPCAP      + 1
  638. #define AIROPSLIST AIROPVLIST    + 1
  639. #define AIROPCFG AIROPSLIST    + 1
  640. #define AIROPSIDS AIROPCFG      + 1
  641. #define AIROPAPLIST AIROPSIDS     + 1
  642. #define AIROPMACON AIROPAPLIST   + 1 /* Enable mac  */
  643. #define AIROPMACOFF AIROPMACON    + 1  /* Disable mac */
  644. #define AIROPSTCLR AIROPMACOFF   + 1
  645. #define AIROPWEPKEY AIROPSTCLR    + 1
  646. #define AIROPWEPKEYNV AIROPWEPKEY   + 1
  647. #define AIROPLEAPPWD            AIROPWEPKEYNV + 1
  648. #define AIROPLEAPUSR            AIROPLEAPPWD  + 1
  649. /* Flash codes */
  650. #define AIROFLSHRST        AIROPWEPKEYNV  + 40
  651. #define AIROFLSHGCHR           AIROFLSHRST    + 1
  652. #define AIROFLSHSTFL           AIROFLSHGCHR   + 1
  653. #define AIROFLSHPCHR           AIROFLSHSTFL   + 1
  654. #define AIROFLPUTBUF           AIROFLSHPCHR   + 1
  655. #define AIRORESTART            AIROFLPUTBUF   + 1
  656. #define FLASHSIZE 32768
  657. typedef struct aironet_ioctl {
  658. unsigned short command; // What to do
  659. unsigned short len; // Len of data
  660. unsigned char *data; // d-data
  661. } aironet_ioctl;
  662. #endif /* CISCO_EXT */
  663. #ifdef WIRELESS_EXT
  664. // Frequency list (map channels to frequencies)
  665. const long frequency_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442,
  666. 2447, 2452, 2457, 2462, 2467, 2472, 2484 };
  667. // A few details needed for WEP (Wireless Equivalent Privacy)
  668. #define MAX_KEY_SIZE 13 // 128 (?) bits
  669. #define MIN_KEY_SIZE  5 // 40 bits RC4 - WEP
  670. typedef struct wep_key_t {
  671. u16 len;
  672. u8 key[16]; /* 40-bit and 104-bit keys */
  673. } wep_key_t;
  674. #endif /* WIRELESS_EXT */
  675. static const char version[] = "airo.c 0.3 (Ben Reed & Javier Achirica)";
  676. struct airo_info;
  677. static int get_dec_u16( char *buffer, int *start, int limit );
  678. static void OUT4500( struct airo_info *, u16 register, u16 value );
  679. static unsigned short IN4500( struct airo_info *, u16 register );
  680. static u16 setup_card(struct airo_info*, u8 *mac, ConfigRid *);
  681. static void enable_interrupts(struct airo_info*);
  682. static void disable_interrupts(struct airo_info*);
  683. static u16 lock_issuecommand(struct airo_info*, Cmd *pCmd, Resp *pRsp);
  684. static u16 issuecommand(struct airo_info*, Cmd *pCmd, Resp *pRsp);
  685. static int bap_setup(struct airo_info*, u16 rid, u16 offset, int whichbap);
  686. static int aux_bap_read(struct airo_info*, u16 *pu16Dst, int bytelen,
  687. int whichbap);
  688. static int fast_bap_read(struct airo_info*, u16 *pu16Dst, int bytelen,
  689.  int whichbap);
  690. static int bap_write(struct airo_info*, const u16 *pu16Src, int bytelen,
  691.      int whichbap);
  692. static int PC4500_accessrid(struct airo_info*, u16 rid, u16 accmd);
  693. static int PC4500_readrid(struct airo_info*, u16 rid, void *pBuf, int len);
  694. static int PC4500_writerid(struct airo_info*, u16 rid, const void
  695.    *pBuf, int len);
  696. static int do_writerid( struct airo_info*, u16 rid, const void *rid_data,
  697. int len );
  698. static u16 transmit_allocate(struct airo_info*, int lenPayload);
  699. static int transmit_802_3_packet(struct airo_info*, u16 TxFid, char
  700.  *pPacket, int len);
  701. static void airo_interrupt( int irq, void* dev_id, struct pt_regs
  702.     *regs);
  703. static int airo_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  704. #ifdef WIRELESS_EXT
  705. struct iw_statistics *airo_get_wireless_stats (struct net_device *dev);
  706. #endif /* WIRELESS_EXT */
  707. #ifdef CISCO_EXT
  708. static int readrids(struct net_device *dev, aironet_ioctl *comp);
  709. static int writerids(struct net_device *dev, aironet_ioctl *comp);
  710. int flashcard(struct net_device *dev, aironet_ioctl *comp);
  711. #endif /* CISCO_EXT */
  712. struct airo_info {
  713. struct net_device_stats stats;
  714. int open;
  715. struct net_device             *dev;
  716. /* Note, we can have MAX_FIDS outstanding.  FIDs are 16-bits, so we
  717.    use the high bit to mark wether it is in use. */
  718. #define MAX_FIDS 6
  719. int                           fids[MAX_FIDS];
  720. int registered;
  721. ConfigRid config;
  722. u16 authtype; // Used with auto_wep
  723. char keyindex; // Used with auto wep
  724. char defindex; // Used with auto wep
  725. struct timer_list timer;
  726. struct proc_dir_entry *proc_entry;
  727. struct airo_info *next;
  728.         spinlock_t aux_lock;
  729.         spinlock_t main_lock;
  730.         int flags;
  731. #define FLAG_PROMISC   IFF_PROMISC
  732. #define FLAG_RADIO_OFF 0x02
  733. int (*bap_read)(struct airo_info*, u16 *pu16Dst, int bytelen,
  734. int whichbap);
  735. int (*header_parse)(struct sk_buff*, unsigned char *);
  736. unsigned short *flash;
  737. tdsRssiEntry *rssi;
  738. #ifdef WIRELESS_EXT
  739. int need_commit; // Need to set config
  740. struct iw_statistics wstats; // wireless stats
  741. #ifdef WIRELESS_SPY
  742. int spy_number;
  743. u_char spy_address[IW_MAX_SPY][6];
  744. struct iw_quality spy_stat[IW_MAX_SPY];
  745. #endif /* WIRELESS_SPY */
  746. #endif /* WIRELESS_EXT */
  747. };
  748. static inline int bap_read(struct airo_info *ai, u16 *pu16Dst, int bytelen,
  749.    int whichbap) {
  750. return ai->bap_read(ai, pu16Dst, bytelen, whichbap);
  751. }
  752. static int setup_proc_entry( struct net_device *dev,
  753.      struct airo_info *apriv );
  754. static int takedown_proc_entry( struct net_device *dev,
  755. struct airo_info *apriv );
  756. static int readBSSListRid(struct airo_info *ai, int first,
  757.       BSSListRid *list) {
  758. int rc;
  759. Cmd cmd;
  760. Resp rsp;
  761. if (first == 1) {
  762. memset(&cmd, 0, sizeof(cmd));
  763. cmd.cmd=CMD_LISTBSS;
  764. lock_issuecommand(ai, &cmd, &rsp);
  765. /* Let the command take effect */
  766. set_current_state (TASK_INTERRUPTIBLE);
  767. schedule_timeout (3*HZ);
  768. }
  769. rc = PC4500_readrid(ai,
  770.             first ? RID_BSSLISTFIRST : RID_BSSLISTNEXT,
  771.     list, sizeof(*list));
  772. list->len = le16_to_cpu(list->len);
  773. list->index = le16_to_cpu(list->index);
  774. list->radioType = le16_to_cpu(list->radioType);
  775. list->cap = le16_to_cpu(list->cap);
  776. list->beaconInterval = le16_to_cpu(list->beaconInterval);
  777. list->fh.dwell = le16_to_cpu(list->fh.dwell);
  778. list->dsChannel = le16_to_cpu(list->dsChannel);
  779. list->atimWindow = le16_to_cpu(list->atimWindow);
  780. return rc;
  781. }
  782. static int readWepKeyRid(struct airo_info*ai, WepKeyRid *wkr, int temp) {
  783. int rc = PC4500_readrid(ai, temp ? RID_WEP_TEMP : RID_WEP_PERM,
  784. wkr, sizeof(*wkr));
  785. wkr->len = le16_to_cpu(wkr->len);
  786. wkr->kindex = le16_to_cpu(wkr->kindex);
  787. wkr->klen = le16_to_cpu(wkr->klen);
  788. return rc;
  789. }
  790. /* In the writeXXXRid routines we copy the rids so that we don't screwup
  791.  * the originals when we endian them... */
  792. static int writeWepKeyRid(struct airo_info*ai, WepKeyRid *pwkr, int perm) {
  793. int rc;
  794. WepKeyRid wkr = *pwkr;
  795. wkr.len = cpu_to_le16(wkr.len);
  796. wkr.kindex = cpu_to_le16(wkr.kindex);
  797. wkr.klen = cpu_to_le16(wkr.klen);
  798. rc = do_writerid(ai, RID_WEP_TEMP, &wkr, sizeof(wkr));
  799. if (rc!=SUCCESS) printk(KERN_ERR "airo:  WEP_TEMP set %xn", rc);
  800. if (perm) {
  801. rc = do_writerid(ai, RID_WEP_PERM, &wkr, sizeof(wkr));
  802. if (rc!=SUCCESS) {
  803. printk(KERN_ERR "airo:  WEP_PERM set %xn", rc);
  804. }
  805. }
  806. return rc;
  807. }
  808. static int readSsidRid(struct airo_info*ai, SsidRid *ssidr) {
  809. int i;
  810. int rc = PC4500_readrid(ai, RID_SSID, ssidr, sizeof(*ssidr));
  811. ssidr->len = le16_to_cpu(ssidr->len);
  812. for(i = 0; i < 3; i++) {
  813. ssidr->ssids[i].len = le16_to_cpu(ssidr->ssids[i].len);
  814. }
  815. return rc;
  816. }
  817. static int writeSsidRid(struct airo_info*ai, SsidRid *pssidr) {
  818. int rc;
  819. int i;
  820. SsidRid ssidr = *pssidr;
  821. ssidr.len = cpu_to_le16(ssidr.len);
  822. for(i = 0; i < 3; i++) {
  823. ssidr.ssids[i].len = cpu_to_le16(ssidr.ssids[i].len);
  824. }
  825. rc = do_writerid(ai, RID_SSID, &ssidr, sizeof(ssidr));
  826. return rc;
  827. }
  828. static int readConfigRid(struct airo_info*ai, ConfigRid *cfgr) {
  829. int rc = PC4500_readrid(ai, RID_ACTUALCONFIG, cfgr, sizeof(*cfgr));
  830. u16 *s;
  831. for(s = &cfgr->len; s <= &cfgr->rtsThres; s++) *s = le16_to_cpu(*s);
  832. for(s = &cfgr->shortRetryLimit; s <= &cfgr->radioType; s++)
  833. *s = le16_to_cpu(*s);
  834. for(s = &cfgr->txPower; s <= &cfgr->radioSpecific; s++)
  835. *s = le16_to_cpu(*s);
  836. for(s = &cfgr->arlThreshold; s <= &cfgr->autoWake; s++)
  837. *s = le16_to_cpu(*s);
  838. return rc;
  839. }
  840. static int writeConfigRid(struct airo_info*ai, ConfigRid *pcfgr) {
  841. u16 *s;
  842. ConfigRid cfgr = *pcfgr;
  843. for(s = &cfgr.len; s <= &cfgr.rtsThres; s++) *s = cpu_to_le16(*s);
  844. for(s = &cfgr.shortRetryLimit; s <= &cfgr.radioType; s++)
  845. *s = cpu_to_le16(*s);
  846. for(s = &cfgr.txPower; s <= &cfgr.radioSpecific; s++)
  847. *s = cpu_to_le16(*s);
  848. for(s = &cfgr.arlThreshold; s <= &cfgr.autoWake; s++)
  849. *s = cpu_to_le16(*s);
  850. return do_writerid( ai, RID_CONFIG, &cfgr, sizeof(cfgr));
  851. }
  852. static int readStatusRid(struct airo_info*ai, StatusRid *statr) {
  853. int rc = PC4500_readrid(ai, RID_STATUS, statr, sizeof(*statr));
  854. u16 *s;
  855. statr->len = le16_to_cpu(statr->len);
  856. for(s = &statr->mode; s <= &statr->SSIDlen; s++) *s = le16_to_cpu(*s);
  857. for(s = &statr->beaconPeriod; s <= &statr->_reserved[9]; s++)
  858. *s = le16_to_cpu(*s);
  859. return rc;
  860. }
  861. static int readAPListRid(struct airo_info*ai, APListRid *aplr) {
  862. int rc =  PC4500_readrid(ai, RID_APLIST, aplr, sizeof(*aplr));
  863. aplr->len = le16_to_cpu(aplr->len);
  864. return rc;
  865. }
  866. static int writeAPListRid(struct airo_info*ai, APListRid *aplr) {
  867. int rc;
  868. aplr->len = cpu_to_le16(aplr->len);
  869. rc = do_writerid(ai, RID_APLIST, aplr, sizeof(*aplr));
  870. return rc;
  871. }
  872. static int readCapabilityRid(struct airo_info*ai, CapabilityRid *capr) {
  873. int rc = PC4500_readrid(ai, RID_CAPABILITIES, capr, sizeof(*capr));
  874. u16 *s;
  875. capr->len = le16_to_cpu(capr->len);
  876. capr->prodNum = le16_to_cpu(capr->prodNum);
  877. capr->radioType = le16_to_cpu(capr->radioType);
  878. capr->country = le16_to_cpu(capr->country);
  879. for(s = &capr->txPowerLevels[0]; s <= &capr->requiredHard; s++)
  880. *s = le16_to_cpu(*s);
  881. return rc;
  882. }
  883. static int readStatsRid(struct airo_info*ai, StatsRid *sr, int rid) {
  884. int rc = PC4500_readrid(ai, rid, sr, sizeof(*sr));
  885. u32 *i;
  886. sr->len = le16_to_cpu(sr->len);
  887. for(i = &sr->vals[0]; i <= &sr->vals[99]; i++) *i = le32_to_cpu(*i);
  888. return rc;
  889. }
  890. static int airo_open(struct net_device *dev) {
  891. struct airo_info *info = dev->priv;
  892. enable_interrupts(info);
  893. netif_start_queue(dev);
  894. return 0;
  895. }
  896. static int airo_start_xmit(struct sk_buff *skb, struct net_device *dev) {
  897. s16 len;
  898. u16 status;
  899. u32 flags;
  900. int i,j;
  901. struct airo_info *priv = (struct airo_info*)dev->priv;
  902. u32 *fids = priv->fids;
  903. if ( skb == NULL ) {
  904. printk( KERN_ERR "airo:  skb == NULL!!!n" );
  905. return 0;
  906. }
  907. /* Find a vacant FID */
  908. spin_lock_irqsave(&priv->main_lock, flags);
  909. for( j = 0, i = -1; j < MAX_FIDS; j++ ) {
  910. if ( !( fids[j] & 0xffff0000 ) ) {
  911. if ( i == -1 ) i = j;
  912. else break;
  913. }
  914. }
  915. if ( j == MAX_FIDS ) netif_stop_queue(dev);
  916. if ( i == -1 ) {
  917. priv->stats.tx_fifo_errors++;
  918. goto tx_done;
  919. }
  920. len = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN; /* check min length*/
  921. status = transmit_802_3_packet( priv, fids[i], skb->data, len );
  922. if ( status == SUCCESS ) {
  923.                 /* Mark fid as used & save length for later */
  924. fids[i] |= (len << 16);
  925. dev->trans_start = jiffies;
  926. } else {
  927. priv->stats.tx_window_errors++;
  928. }
  929.  tx_done:
  930. spin_unlock_irqrestore(&priv->main_lock, flags);
  931. dev_kfree_skb(skb);
  932. return 0;
  933. }
  934. struct net_device_stats *airo_get_stats(struct net_device *dev)
  935. {
  936. struct airo_info *local = (struct airo_info*) dev->priv;
  937. StatsRid stats_rid;
  938. u32 *vals = stats_rid.vals;
  939. /* Get stats out of the card */
  940. readStatsRid(local, &stats_rid, RID_STATS);
  941. local->stats.rx_packets = vals[43] + vals[44] + vals[45];
  942. local->stats.tx_packets = vals[39] + vals[40] + vals[41];
  943. local->stats.rx_bytes = vals[92];
  944. local->stats.tx_bytes = vals[91];
  945. local->stats.rx_errors = vals[0] + vals[2] + vals[3] + vals[4];
  946. local->stats.tx_errors = vals[42] + local->stats.tx_fifo_errors;
  947. local->stats.multicast = vals[43];
  948. local->stats.collisions = vals[89];
  949. /* detailed rx_errors: */
  950. local->stats.rx_length_errors = vals[3];
  951. local->stats.rx_crc_errors = vals[4];
  952. local->stats.rx_frame_errors = vals[2];
  953. local->stats.rx_fifo_errors = vals[0];
  954. return (&local->stats);
  955. }
  956. static int enable_MAC( struct airo_info *ai, Resp *rsp );
  957. static void disable_MAC(struct airo_info *ai);
  958. static void airo_set_multicast_list(struct net_device *dev) {
  959. struct airo_info *ai = (struct airo_info*)dev->priv;
  960. Cmd cmd;
  961. Resp rsp;
  962. /* For some reason this command takes a lot of time (~20 ms) and it's
  963.  * run in an interrupt handler, so we'd better be sure we needed it
  964.  * before executing it.
  965.  */
  966. if ((dev->flags ^ ai->flags) & IFF_PROMISC) {
  967. memset(&cmd, 0, sizeof(cmd));
  968. cmd.cmd=CMD_SETMODE;
  969. cmd.parm0=(dev->flags&IFF_PROMISC) ? PROMISC : NOPROMISC;
  970. lock_issuecommand(ai, &cmd, &rsp);
  971. ai->flags^=IFF_PROMISC;
  972. }
  973. if ((dev->flags&IFF_ALLMULTI)||dev->mc_count>0) {
  974. /* Turn on multicast.  (Should be already setup...) */
  975. }
  976. }
  977. static int airo_set_mac_address(struct net_device *dev, void *p)
  978. {
  979. struct airo_info *ai = (struct airo_info*)dev->priv;
  980. struct sockaddr *addr = p;
  981. ConfigRid cfg;
  982. readConfigRid (ai, &cfg);
  983. memcpy (cfg.macAddr, addr->sa_data, dev->addr_len);
  984. writeConfigRid (ai, &cfg);
  985. memcpy (dev->dev_addr, addr->sa_data, dev->addr_len);
  986. return 0;
  987. }
  988. static int airo_change_mtu(struct net_device *dev, int new_mtu)
  989. {
  990. if ((new_mtu < 68) || (new_mtu > 2400))
  991. return -EINVAL;
  992. dev->mtu = new_mtu;
  993. return 0;
  994. }
  995. static int airo_close(struct net_device *dev) {
  996. struct airo_info *ai = (struct airo_info*)dev->priv;
  997. netif_stop_queue(dev);
  998. disable_interrupts( ai );
  999. return 0;
  1000. }
  1001. static void del_airo_dev( struct net_device *dev );
  1002. void stop_airo_card( struct net_device *dev, int freeres )
  1003. {
  1004. struct airo_info *ai = (struct airo_info*)dev->priv;
  1005. if (ai->flash)
  1006. kfree(ai->flash);
  1007. if (ai->rssi)
  1008. kfree(ai->rssi);
  1009. takedown_proc_entry( dev, ai );
  1010. if (ai->registered) {
  1011. unregister_netdev( dev );
  1012. ai->registered = 0;
  1013. }
  1014. disable_interrupts(ai);
  1015. free_irq( dev->irq, dev );
  1016. if (auto_wep) del_timer_sync(&ai->timer);
  1017. if (freeres) {
  1018. /* PCMCIA frees this stuff, so only for PCI and ISA */
  1019.         release_region( dev->base_addr, 64 );
  1020.         }
  1021. del_airo_dev( dev );
  1022. kfree( dev );
  1023. }
  1024. static int add_airo_dev( struct net_device *dev );
  1025. struct net_device *init_airo_card( unsigned short irq, int port, int is_pcmcia )
  1026. {
  1027. struct net_device *dev;
  1028. struct airo_info *ai;
  1029. int i, rc;
  1030. /* Create the network device object. */
  1031.         dev = alloc_etherdev(sizeof(*ai));
  1032.         if (!dev) {
  1033. printk(KERN_ERR "airo:  Couldn't alloc_etherdevn");
  1034. return NULL;
  1035.         }
  1036. if (dev_alloc_name(dev, dev->name) < 0) {
  1037. printk(KERN_ERR "airo:  Couldn't get name!n");
  1038. goto err_out_free;
  1039. }
  1040. ai = dev->priv;
  1041. ai->registered = 0;
  1042.         ai->dev = dev;
  1043. ai->aux_lock = SPIN_LOCK_UNLOCKED;
  1044. ai->main_lock = SPIN_LOCK_UNLOCKED;
  1045. ai->header_parse = dev->hard_header_parse;
  1046. rc = add_airo_dev( dev );
  1047. if (rc)
  1048. goto err_out_free;
  1049. /* The Airo-specific entries in the device structure. */
  1050. dev->hard_start_xmit = &airo_start_xmit;
  1051. dev->get_stats = &airo_get_stats;
  1052. dev->set_multicast_list = &airo_set_multicast_list;
  1053. dev->set_mac_address = &airo_set_mac_address;
  1054. dev->do_ioctl = &airo_ioctl;
  1055. #ifdef WIRELESS_EXT
  1056. dev->get_wireless_stats = airo_get_wireless_stats;
  1057. #endif /* WIRELESS_EXT */
  1058. dev->change_mtu = &airo_change_mtu;
  1059. dev->open = &airo_open;
  1060. dev->stop = &airo_close;
  1061. dev->irq = irq;
  1062. dev->base_addr = port;
  1063. rc = request_irq( dev->irq, airo_interrupt, SA_SHIRQ, dev->name, dev );
  1064. if (rc) {
  1065. printk(KERN_ERR "airo: register interrupt %d failed, rc %dn", irq, rc );
  1066. goto err_out_unlink;
  1067. }
  1068. if (!is_pcmcia) {
  1069. if (!request_region( dev->base_addr, 64, dev->name )) {
  1070. rc = -EBUSY;
  1071. goto err_out_irq;
  1072. }
  1073. }
  1074. if ( setup_card( ai, dev->dev_addr, &ai->config) != SUCCESS ) {
  1075. printk( KERN_ERR "airo: MAC could not be enabledn" );
  1076. rc = -EIO;
  1077. goto err_out_res;
  1078. }
  1079. rc = register_netdev(dev);
  1080. if (rc)
  1081. goto err_out_res;
  1082. ai->registered = 1;
  1083. printk( KERN_INFO "airo: MAC enabled %s %x:%x:%x:%x:%x:%xn",
  1084. dev->name,
  1085. dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
  1086. dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5] );
  1087. /* Allocate the transmit buffers */
  1088. for( i = 0; i < MAX_FIDS; i++ )
  1089. ai->fids[i] = transmit_allocate( ai, 2312 );
  1090. setup_proc_entry( dev, dev->priv ); /* XXX check for failure */
  1091. netif_start_queue(dev);
  1092. SET_MODULE_OWNER(dev);
  1093. return dev;
  1094. err_out_res:
  1095. if (!is_pcmcia)
  1096.         release_region( dev->base_addr, 64 );
  1097. err_out_irq:
  1098. free_irq(dev->irq, dev);
  1099. err_out_unlink:
  1100. del_airo_dev(dev);
  1101. err_out_free:
  1102. kfree(dev);
  1103. return NULL;
  1104. }
  1105. int waitbusy (struct airo_info *ai) {
  1106. int delay = 0;
  1107. while ((IN4500 (ai, COMMAND) & COMMAND_BUSY) & (delay < 10000)) {
  1108. udelay (10);
  1109. if (++delay % 20)
  1110. OUT4500(ai, EVACK, EV_CLEARCOMMANDBUSY);
  1111. }
  1112. return delay < 10000;
  1113. }
  1114. int reset_airo_card( struct net_device *dev ) {
  1115. int i;
  1116. struct airo_info *ai = (struct airo_info*)dev->priv;
  1117. disable_MAC(ai);
  1118. waitbusy (ai);
  1119. OUT4500(ai,COMMAND,CMD_SOFTRESET);
  1120. set_current_state (TASK_UNINTERRUPTIBLE);
  1121. schedule_timeout (HZ/5);
  1122. waitbusy (ai);
  1123. set_current_state (TASK_UNINTERRUPTIBLE);
  1124. schedule_timeout (HZ/5);
  1125. if ( setup_card(ai, dev->dev_addr, &(ai)->config) != SUCCESS ) {
  1126. printk( KERN_ERR "airo: MAC could not be enabledn" );
  1127. return -1;
  1128. } else {
  1129. printk( KERN_INFO "airo: MAC enabled %s %x:%x:%x:%x:%x:%xn",
  1130. dev->name,
  1131. dev->dev_addr[0],
  1132. dev->dev_addr[1],
  1133. dev->dev_addr[2],
  1134. dev->dev_addr[3],
  1135. dev->dev_addr[4],
  1136. dev->dev_addr[5]
  1137. );
  1138. /* Allocate the transmit buffers */
  1139. for( i = 0; i < MAX_FIDS; i++ )
  1140. ai->fids[i] = transmit_allocate( ai, 2312 );
  1141. }
  1142. enable_interrupts( ai );
  1143. netif_wake_queue(dev);
  1144. return 0;
  1145. }
  1146. int wll_header_parse(struct sk_buff *skb, unsigned char *haddr)
  1147. {
  1148. memcpy(haddr, skb->mac.raw + 10, ETH_ALEN);
  1149. return ETH_ALEN;
  1150. }
  1151. static void airo_interrupt ( int irq, void* dev_id, struct pt_regs *regs) {
  1152. struct net_device *dev = (struct net_device *)dev_id;
  1153. u16 status;
  1154. u16 fid;
  1155. struct airo_info *apriv = (struct airo_info *)dev->priv;
  1156. u16 savedInterrupts = 0;
  1157. if (!netif_device_present(dev))
  1158. return;
  1159. for (;;) {
  1160. status = IN4500( apriv, EVSTAT );
  1161. if ( !status || status == 0xffff ) break;
  1162. if ( status & EV_AWAKE ) {
  1163. OUT4500( apriv, EVACK, EV_AWAKE );
  1164. OUT4500( apriv, EVACK, EV_AWAKE );
  1165. }
  1166. if (!savedInterrupts) {
  1167. savedInterrupts = IN4500( apriv, EVINTEN );
  1168. OUT4500( apriv, EVINTEN, 0 );
  1169. }
  1170. if ( status & EV_LINK ) {
  1171. /* The link status has changed, if you want to put a
  1172.    monitor hook in, do it here.  (Remember that
  1173.    interrupts are still disabled!)
  1174. */
  1175. u16 newStatus = IN4500(apriv, LINKSTAT);
  1176. OUT4500( apriv, EVACK, EV_LINK);
  1177. /* Here is what newStatus means: */
  1178. #define NOBEACON 0x8000 /* Loss of sync - missed beacons */
  1179. #define MAXRETRIES 0x8001 /* Loss of sync - max retries */
  1180. #define MAXARL 0x8002 /* Loss of sync - average retry level exceeded*/
  1181. #define FORCELOSS 0x8003 /* Loss of sync - host request */
  1182. #define TSFSYNC 0x8004 /* Loss of sync - TSF synchronization */
  1183. #define DEAUTH 0x8100 /* Deauthentication (low byte is reason code) */
  1184. #define DISASS 0x8200 /* Disassociation (low byte is reason code) */
  1185. #define ASSFAIL 0x8400 /* Association failure (low byte is reason
  1186.   code) */
  1187. #define AUTHFAIL 0x0300 /* Authentication failure (low byte is reason
  1188.    code) */
  1189. #define ASSOCIATED 0x0400 /* Assocatied */
  1190. #define RC_RESERVED 0 /* Reserved return code */
  1191. #define RC_NOREASON 1 /* Unspecified reason */
  1192. #define RC_AUTHINV 2 /* Previous authentication invalid */
  1193. #define RC_DEAUTH 3 /* Deauthenticated because sending station is
  1194.        leaving */
  1195. #define RC_NOACT 4 /* Disassociated due to inactivity */
  1196. #define RC_MAXLOAD 5 /* Disassociated because AP is unable to handle
  1197. all currently associated stations */
  1198. #define RC_BADCLASS2 6 /* Class 2 frame received from
  1199.   non-Authenticated station */
  1200. #define RC_BADCLASS3 7 /* Class 3 frame received from
  1201.   non-Associated station */
  1202. #define RC_STATLEAVE 8 /* Disassociated because sending station is
  1203.   leaving BSS */
  1204. #define RC_NOAUTH 9 /* Station requesting (Re)Association is not
  1205.        Authenticated with the responding station */
  1206. if (newStatus != ASSOCIATED) {
  1207. if (auto_wep && !timer_pending(&apriv->timer)) {
  1208. apriv->timer.expires = RUN_AT(HZ*3);
  1209.        add_timer(&apriv->timer);
  1210. }
  1211. }
  1212. }
  1213. /* Check to see if there is something to receive */
  1214. if ( status & EV_RX  ) {
  1215. struct sk_buff *skb = NULL;
  1216. u16 fc, len, hdrlen = 0;
  1217. struct {
  1218. u16 status, len;
  1219. u8 rssi[2];
  1220. } hdr;
  1221. fid = IN4500( apriv, RXFID );
  1222. /* Get the packet length */
  1223. if (dev->type == ARPHRD_IEEE80211) {
  1224. bap_setup (apriv, fid, 4, BAP0);
  1225. bap_read (apriv, (u16*)&hdr, sizeof(hdr), BAP0);
  1226. /* Bad CRC. Ignore packet */
  1227. if (le16_to_cpu(hdr.status) & 2)
  1228. hdr.len = 0;
  1229. } else {
  1230. bap_setup (apriv, fid, 6, BAP0);
  1231. bap_read (apriv, (u16*)&hdr.len, 4, BAP0);
  1232. }
  1233. len = le16_to_cpu(hdr.len);
  1234. if (len > 2312) {
  1235. printk( KERN_ERR "airo: Bad size %dn", len );
  1236. len = 0;
  1237. }
  1238. if (len) {
  1239. if (dev->type == ARPHRD_IEEE80211) {
  1240. bap_setup (apriv, fid, 0x14, BAP0);
  1241. bap_read (apriv, (u16*)&fc, sizeof(fc), BAP0);
  1242. if ((le16_to_cpu(fc) & 0x300) == 0x300)
  1243. hdrlen = 30;
  1244. else
  1245. hdrlen = 24;
  1246. } else
  1247. hdrlen = 12;
  1248. skb = dev_alloc_skb( len + hdrlen + 2 );
  1249. if ( !skb ) {
  1250. apriv->stats.rx_dropped++;
  1251. len = 0;
  1252. }
  1253. }
  1254. if (len) {
  1255. u16 *buffer;
  1256. buffer = (u16*)skb_put (skb, len + hdrlen);
  1257. if (dev->type == ARPHRD_IEEE80211) {
  1258. u16 gap, tmpbuf[4];
  1259. buffer[0] = fc;
  1260. bap_read (apriv, buffer + 1, hdrlen - 2, BAP0);
  1261. if (hdrlen == 24)
  1262. bap_read (apriv, tmpbuf, 6, BAP0);
  1263. bap_read (apriv, &gap, sizeof(gap), BAP0);
  1264. gap = le16_to_cpu(gap);
  1265. if (gap && gap <= 8)
  1266. bap_read (apriv, tmpbuf, gap, BAP0);
  1267. bap_read (apriv, buffer + hdrlen/2, len, BAP0);
  1268. } else {
  1269.                 bap_setup (apriv, fid, 0x38, BAP0);
  1270. bap_read (apriv, buffer,len + hdrlen,BAP0);
  1271. }
  1272. OUT4500( apriv, EVACK, EV_RX);
  1273. #ifdef WIRELESS_SPY
  1274. if (apriv->spy_number > 0) {
  1275. int i;
  1276. char *sa;
  1277. sa = (char*)buffer + ((dev->type == ARPHRD_IEEE80211) ? 10 : 6);
  1278. for (i=0; i<apriv->spy_number; i++)
  1279. if (!memcmp(sa,apriv->spy_address[i],6))
  1280. {
  1281. apriv->spy_stat[i].qual = hdr.rssi[0];
  1282. if (apriv->rssi)
  1283. apriv->spy_stat[i].level = 0x100 - apriv->rssi[hdr.rssi[1]].rssidBm;
  1284. else
  1285. apriv->spy_stat[i].level = (hdr.rssi[1] + 321) / 2;
  1286. apriv->spy_stat[i].noise = 0;
  1287. apriv->spy_stat[i].updated = 3;
  1288. break;
  1289. }
  1290. }
  1291. #endif /* WIRELESS_SPY  */
  1292. dev->last_rx = jiffies;
  1293. skb->dev = dev;
  1294. skb->ip_summed = CHECKSUM_NONE;
  1295. if (dev->type == ARPHRD_IEEE80211) {
  1296. skb->mac.raw = skb->data;
  1297. skb_pull (skb, hdrlen);
  1298. skb->pkt_type = PACKET_OTHERHOST;
  1299. skb->protocol = htons(ETH_P_802_2);
  1300. } else
  1301. skb->protocol = eth_type_trans(skb,dev);
  1302. netif_rx( skb );
  1303. } else
  1304. OUT4500( apriv, EVACK, EV_RX);
  1305. }
  1306. /* Check to see if a packet has been transmitted */
  1307. if (  status & ( EV_TX|EV_TXEXC ) ) {
  1308. int i;
  1309. int len = 0;
  1310. int index = -1;
  1311. fid = IN4500(apriv, TXCOMPLFID);
  1312. for( i = 0; i < MAX_FIDS; i++ ) {
  1313. if ( ( apriv->fids[i] & 0xffff ) == fid ) {
  1314. len = apriv->fids[i] >> 16;
  1315. index = i;
  1316. /* Set up to be used again */
  1317. apriv->fids[i] &= 0xffff;
  1318. }
  1319. }
  1320. if (index != -1) netif_wake_queue(dev);
  1321. if ((status & EV_TXEXC) &&
  1322. (bap_setup(apriv, fid, 4, BAP1) == SUCCESS)) {
  1323. u16 status;
  1324. bap_read(apriv, &status, 2, BAP1);
  1325. if (le16_to_cpu(status) & 2)
  1326. apriv->stats.tx_aborted_errors++;
  1327. if (le16_to_cpu(status) & 4)
  1328. apriv->stats.tx_heartbeat_errors++;
  1329. if (le16_to_cpu(status) & 0x10)
  1330. apriv->stats.tx_carrier_errors++;
  1331. }
  1332. OUT4500( apriv, EVACK, status & (EV_TX | EV_TXEXC));
  1333. if (index==-1) {
  1334. printk( KERN_ERR "airo: Unallocated FID was used to xmitn" );
  1335. }
  1336. }
  1337. if ( status & ~STATUS_INTS )
  1338. OUT4500( apriv, EVACK, status & ~STATUS_INTS);
  1339. if ( status & ~STATUS_INTS & ~IGNORE_INTS )
  1340. printk( KERN_WARNING "airo: Got weird status %xn",
  1341. status & ~STATUS_INTS & ~IGNORE_INTS );
  1342. }
  1343. if (savedInterrupts)
  1344. OUT4500( apriv, EVINTEN, savedInterrupts );
  1345. /* done.. */
  1346. return;
  1347. }
  1348. /*
  1349.  *  Routines to talk to the card
  1350.  */
  1351. /*
  1352.  *  This was originally written for the 4500, hence the name
  1353.  *  NOTE:  If use with 8bit mode and SMP bad things will happen!
  1354.  *         Why would some one do 8 bit IO in an SMP machine?!?
  1355.  */
  1356. static void OUT4500( struct airo_info *ai, u16 reg, u16 val ) {
  1357. if ( !do8bitIO )
  1358. outw( val, ai->dev->base_addr + reg );
  1359. else {
  1360. outb( val & 0xff, ai->dev->base_addr + reg );
  1361. outb( val >> 8, ai->dev->base_addr + reg + 1 );
  1362. }
  1363. }
  1364. static u16 IN4500( struct airo_info *ai, u16 reg ) {
  1365. unsigned short rc;
  1366. if ( !do8bitIO )
  1367. rc = inw( ai->dev->base_addr + reg );
  1368. else {
  1369. rc = inb( ai->dev->base_addr + reg );
  1370. rc += ((int)inb( ai->dev->base_addr + reg + 1 )) << 8;
  1371. }
  1372. return rc;
  1373. }
  1374. static int enable_MAC( struct airo_info *ai, Resp *rsp ) {
  1375.         Cmd cmd;
  1376.         if (ai->flags&FLAG_RADIO_OFF) return SUCCESS;
  1377. memset(&cmd, 0, sizeof(cmd));
  1378. cmd.cmd = MAC_ENABLE;
  1379. return lock_issuecommand(ai, &cmd, rsp);
  1380. }
  1381. static void disable_MAC( struct airo_info *ai ) {
  1382.         Cmd cmd;
  1383. Resp rsp;
  1384. memset(&cmd, 0, sizeof(cmd));
  1385. cmd.cmd = MAC_DISABLE; // disable in case already enabled
  1386. lock_issuecommand(ai, &cmd, &rsp);
  1387. }
  1388. static void enable_interrupts( struct airo_info *ai ) {
  1389. /* Reset the status register */
  1390. u16 status = IN4500( ai, EVSTAT );
  1391. OUT4500( ai, EVACK, status );
  1392. /* Enable the interrupts */
  1393. OUT4500( ai, EVINTEN, STATUS_INTS );
  1394. /* Note there is a race condition between the last two lines that
  1395.    I dont know how to get rid of right now... */
  1396. }
  1397. static void disable_interrupts( struct airo_info *ai ) {
  1398. OUT4500( ai, EVINTEN, 0 );
  1399. }
  1400. static u16 setup_card(struct airo_info *ai, u8 *mac,
  1401.       ConfigRid *config)
  1402. {
  1403. Cmd cmd;
  1404. Resp rsp;
  1405. ConfigRid cfg;
  1406. int status;
  1407. int i;
  1408. SsidRid mySsid;
  1409. u16 lastindex;
  1410. WepKeyRid wkr;
  1411. int rc;
  1412. memset( &mySsid, 0, sizeof( mySsid ) );
  1413. if (ai->flash) {
  1414. kfree (ai->flash);
  1415. ai->flash = NULL;
  1416. }
  1417. /* The NOP is the first step in getting the card going */
  1418. cmd.cmd = NOP;
  1419. cmd.parm0 = cmd.parm1 = cmd.parm2 = 0;
  1420. if ( lock_issuecommand( ai, &cmd, &rsp ) != SUCCESS ) {
  1421. return ERROR;
  1422. }
  1423. memset(&cmd, 0, sizeof(cmd));
  1424. cmd.cmd = MAC_DISABLE; // disable in case already enabled
  1425. if ( lock_issuecommand( ai, &cmd, &rsp ) != SUCCESS ) {
  1426. return ERROR;
  1427. }
  1428. // Let's figure out if we need to use the AUX port
  1429. cmd.cmd = CMD_ENABLEAUX;
  1430. if (lock_issuecommand(ai, &cmd, &rsp) != SUCCESS) {
  1431. printk(KERN_ERR "airo: Error checking for AUX portn");
  1432. return ERROR;
  1433. }
  1434. if (!aux_bap || rsp.status & 0xff00) {
  1435. ai->bap_read = fast_bap_read;
  1436. printk(KERN_DEBUG "airo: Doing fast bap_readsn");
  1437. } else {
  1438. ai->bap_read = aux_bap_read;
  1439. printk(KERN_DEBUG "airo: Doing AUX bap_readsn");
  1440. }
  1441. if ( config->len ) {
  1442. cfg = *config;
  1443. } else {
  1444. tdsRssiRid rssi_rid;
  1445. // general configuration (read/modify/write)
  1446. status = readConfigRid(ai, &cfg);
  1447. if ( status != SUCCESS ) return ERROR;
  1448. status = PC4500_readrid(ai,RID_RSSI,&rssi_rid,sizeof(rssi_rid));
  1449. if ( status == SUCCESS ) {
  1450. if (ai->rssi || (ai->rssi = kmalloc(512, GFP_KERNEL)) != NULL)
  1451. memcpy(ai->rssi, (u8*)&rssi_rid + 2, 512);
  1452. }
  1453. else {
  1454. CapabilityRid cap_rid;
  1455. if (ai->rssi) {
  1456. kfree(ai->rssi);
  1457. ai->rssi = NULL;
  1458. }
  1459. status = readCapabilityRid(ai, &cap_rid);
  1460. if ((status == SUCCESS) && (cap_rid.softCap & 8))
  1461. cfg.rmode |= RXMODE_NORMALIZED_RSSI;
  1462. else
  1463. printk(KERN_WARNING "airo: unknown received signal level scalen");
  1464. }
  1465. cfg.opmode = adhoc ? MODE_STA_IBSS : MODE_STA_ESS;
  1466. /* Save off the MAC */
  1467. for( i = 0; i < 6; i++ ) {
  1468. mac[i] = cfg.macAddr[i];
  1469. }
  1470. /* Check to see if there are any insmod configured
  1471.    rates to add */
  1472. if ( rates ) {
  1473. int i = 0;
  1474. if ( rates[0] ) memset(cfg.rates,0,sizeof(cfg.rates));
  1475. for( i = 0; i < 8 && rates[i]; i++ ) {
  1476. cfg.rates[i] = rates[i];
  1477. }
  1478. }
  1479. if ( basic_rate > 0 ) {
  1480. int i;
  1481. for( i = 0; i < 8; i++ ) {
  1482. if ( cfg.rates[i] == basic_rate ||
  1483.      !cfg.rates ) {
  1484. cfg.rates[i] = basic_rate | 0x80;
  1485. break;
  1486. }
  1487. }
  1488. }
  1489. cfg.authType = ai->authtype;
  1490. *config = cfg;
  1491. }
  1492. /* Setup the SSIDs if present */
  1493. if ( ssids[0] ) {
  1494. int i = 0;
  1495. for( i = 0; i < 3 && ssids[i]; i++ ) {
  1496. mySsid.ssids[i].len = strlen(ssids[i]);
  1497. if ( mySsid.ssids[i].len > 32 )
  1498. mySsid.ssids[i].len = 32;
  1499. memcpy(mySsid.ssids[i].ssid, ssids[i],
  1500.        mySsid.ssids[i].len);
  1501. mySsid.ssids[i].len = mySsid.ssids[i].len;
  1502. }
  1503. }
  1504. status = writeConfigRid(ai, &cfg);
  1505. if ( status != SUCCESS ) return ERROR;
  1506. /* Set up the SSID list */
  1507. status = writeSsidRid(ai, &mySsid);
  1508. if ( status != SUCCESS ) return ERROR;
  1509. /* Grab the initial wep key, we gotta save it for auto_wep */
  1510. rc = readWepKeyRid(ai, &wkr, 1);
  1511. if (rc == SUCCESS) do {
  1512. lastindex = wkr.kindex;
  1513. if (wkr.kindex == 0xffff) {
  1514. ai->defindex = wkr.mac[0];
  1515. }
  1516. rc = readWepKeyRid(ai, &wkr, 0);
  1517. } while(lastindex != wkr.kindex);
  1518. if (auto_wep && !timer_pending(&ai->timer)) {
  1519. ai->timer.expires = RUN_AT(HZ*3);
  1520. add_timer(&ai->timer);
  1521. }
  1522. return SUCCESS;
  1523. }
  1524. static u16 lock_issuecommand(struct airo_info *ai, Cmd *pCmd, Resp *pRsp) {
  1525. int rc;
  1526. long flags;
  1527. spin_lock_irqsave(&ai->main_lock, flags);
  1528. rc = issuecommand(ai, pCmd, pRsp);
  1529. spin_unlock_irqrestore(&ai->main_lock, flags);
  1530. return rc;
  1531. }
  1532. static u16 issuecommand(struct airo_info *ai, Cmd *pCmd, Resp *pRsp) {
  1533.         // Im really paranoid about letting it run forever!
  1534. int max_tries = 600000;
  1535. OUT4500(ai, PARAM0, pCmd->parm0);
  1536. OUT4500(ai, PARAM1, pCmd->parm1);
  1537. OUT4500(ai, PARAM2, pCmd->parm2);
  1538. OUT4500(ai, COMMAND, pCmd->cmd);
  1539. while ( max_tries-- &&
  1540. (IN4500(ai, EVSTAT) & EV_CMD) == 0) {
  1541. if ( IN4500(ai, COMMAND) == pCmd->cmd) {
  1542. // PC4500 didn't notice command, try again
  1543. OUT4500(ai, COMMAND, pCmd->cmd);
  1544. }
  1545. }
  1546. if ( max_tries == -1 ) {
  1547. printk( KERN_ERR
  1548. "airo: Max tries exceeded when issueing commandn" );
  1549.                 return ERROR;
  1550. }
  1551. // command completed
  1552. pRsp->status = IN4500(ai, STATUS);
  1553. pRsp->rsp0 = IN4500(ai, RESP0);
  1554. pRsp->rsp1 = IN4500(ai, RESP1);
  1555. pRsp->rsp2 = IN4500(ai, RESP2);
  1556. // clear stuck command busy if necessary
  1557. if (IN4500(ai, COMMAND) & COMMAND_BUSY) {
  1558. OUT4500(ai, EVACK, EV_CLEARCOMMANDBUSY);
  1559. }
  1560. // acknowledge processing the status/response
  1561. OUT4500(ai, EVACK, EV_CMD);
  1562. return SUCCESS;
  1563. }
  1564. /* Sets up the bap to start exchange data.  whichbap should
  1565.  * be one of the BAP0 or BAP1 defines.  Locks should be held before
  1566.  * calling! */
  1567. static int bap_setup(struct airo_info *ai, u16 rid, u16 offset, int whichbap )
  1568. {
  1569. int timeout = 50;
  1570. int max_tries = 3;
  1571. OUT4500(ai, SELECT0+whichbap, rid);
  1572. OUT4500(ai, OFFSET0+whichbap, offset);
  1573. while (1) {
  1574. int status = IN4500(ai, OFFSET0+whichbap);
  1575. if (status & BAP_BUSY) {
  1576.                         /* This isn't really a timeout, but its kinda
  1577.    close */
  1578. if (timeout--) {
  1579. continue;
  1580. }
  1581. } else if ( status & BAP_ERR ) {
  1582. /* invalid rid or offset */
  1583. printk( KERN_ERR "airo: BAP error %x %dn",
  1584. status, whichbap );
  1585. return ERROR;
  1586. } else if (status & BAP_DONE) { // success
  1587. return SUCCESS;
  1588. }
  1589. if ( !(max_tries--) ) {
  1590. printk( KERN_ERR
  1591. "airo: BAP setup error too many retriesn" );
  1592. return ERROR;
  1593. }
  1594. // -- PC4500 missed it, try again
  1595. OUT4500(ai, SELECT0+whichbap, rid);
  1596. OUT4500(ai, OFFSET0+whichbap, offset);
  1597. timeout = 50;
  1598. }
  1599. }
  1600. /* should only be called by aux_bap_read.  This aux function and the
  1601.    following use concepts not documented in the developers guide.  I
  1602.    got them from a patch given to my by Aironet */
  1603. static u16 aux_setup(struct airo_info *ai, u16 page,
  1604.      u16 offset, u16 *len)
  1605. {
  1606. u16 next;
  1607. OUT4500(ai, AUXPAGE, page);
  1608. OUT4500(ai, AUXOFF, 0);
  1609. next = IN4500(ai, AUXDATA);
  1610. *len = IN4500(ai, AUXDATA)&0xff;
  1611. if (offset != 4) OUT4500(ai, AUXOFF, offset);
  1612. return next;
  1613. }
  1614. /* requires call to bap_setup() first */
  1615. static int aux_bap_read(struct airo_info *ai, u16 *pu16Dst,
  1616. int bytelen, int whichbap)
  1617. {
  1618. u16 len;
  1619. u16 page;
  1620. u16 offset;
  1621. u16 next;
  1622. int words;
  1623. int i;
  1624. long flags;
  1625. spin_lock_irqsave(&ai->aux_lock, flags);
  1626. page = IN4500(ai, SWS0+whichbap);
  1627. offset = IN4500(ai, SWS2+whichbap);
  1628. next = aux_setup(ai, page, offset, &len);
  1629. words = (bytelen+1)>>1;
  1630. for (i=0; i<words;) {
  1631. int count;
  1632. count = (len>>1) < (words-i) ? (len>>1) : (words-i);
  1633. if ( !do8bitIO )
  1634. insw( ai->dev->base_addr+DATA0+whichbap,
  1635.       pu16Dst+i,count );
  1636. else
  1637. insb( ai->dev->base_addr+DATA0+whichbap,
  1638.       pu16Dst+i, count << 1 );
  1639. i += count;
  1640. if (i<words) {
  1641. next = aux_setup(ai, next, 4, &len);
  1642. }
  1643. }
  1644. spin_unlock_irqrestore(&ai->aux_lock, flags);
  1645. return SUCCESS;
  1646. }
  1647. /* requires call to bap_setup() first */
  1648. static int fast_bap_read(struct airo_info *ai, u16 *pu16Dst,
  1649.  int bytelen, int whichbap)
  1650. {
  1651. bytelen = (bytelen + 1) & (~1); // round up to even value
  1652. if ( !do8bitIO )
  1653. insw( ai->dev->base_addr+DATA0+whichbap, pu16Dst, bytelen>>1 );
  1654. else
  1655. insb( ai->dev->base_addr+DATA0+whichbap, pu16Dst, bytelen );
  1656. return SUCCESS;
  1657. }
  1658. /* requires call to bap_setup() first */
  1659. static int bap_write(struct airo_info *ai, const u16 *pu16Src,
  1660.      int bytelen, int whichbap)
  1661. {
  1662. bytelen = (bytelen + 1) & (~1); // round up to even value
  1663. if ( !do8bitIO )
  1664. outsw( ai->dev->base_addr+DATA0+whichbap,
  1665.        pu16Src, bytelen>>1 );
  1666. else
  1667. outsb( ai->dev->base_addr+DATA0+whichbap, pu16Src, bytelen );
  1668. return SUCCESS;
  1669. }
  1670. static int PC4500_accessrid(struct airo_info *ai, u16 rid, u16 accmd)
  1671. {
  1672. Cmd cmd; /* for issuing commands */
  1673. Resp rsp; /* response from commands */
  1674. u16 status;
  1675. memset(&cmd, 0, sizeof(cmd));
  1676. cmd.cmd = accmd;
  1677. cmd.parm0 = rid;
  1678. status = issuecommand(ai, &cmd, &rsp);
  1679. if (status != 0) return status;
  1680. if ( (rsp.status & 0x7F00) != 0) {
  1681. return (accmd << 8) + (rsp.rsp0 & 0xFF);
  1682. }
  1683. return 0;
  1684. }
  1685. /*  Note, that we are using BAP1 which is also used by transmit, so
  1686.  *  we must get a lock. */
  1687. static int PC4500_readrid(struct airo_info *ai, u16 rid, void *pBuf, int len)
  1688. {
  1689. u16 status;
  1690.         long flags;
  1691.         int rc = SUCCESS;
  1692. spin_lock_irqsave(&ai->main_lock, flags);
  1693. if ( (status = PC4500_accessrid(ai, rid, CMD_ACCESS)) != SUCCESS) {
  1694.                 rc = status;
  1695.                 goto done;
  1696.         }
  1697. if (bap_setup(ai, rid, 0, BAP1) != SUCCESS) {
  1698. rc = ERROR;
  1699.                 goto done;
  1700.         }
  1701. // read the rid length field
  1702. bap_read(ai, pBuf, 2, BAP1);
  1703. // length for remaining part of rid
  1704. len = min(len, (int)le16_to_cpu(*(u16*)pBuf)) - 2;
  1705. if ( len <= 2 ) {
  1706. printk( KERN_ERR
  1707. "airo: Rid %x has a length of %d which is too shortn",
  1708. (int)rid,
  1709. (int)len );
  1710. rc = ERROR;
  1711.                 goto done;
  1712. }
  1713. // read remainder of the rid
  1714. rc = bap_read(ai, ((u16*)pBuf)+1, len, BAP1);
  1715.  done:
  1716. spin_unlock_irqrestore(&ai->main_lock, flags);
  1717. return rc;
  1718. }
  1719. /*  Note, that we are using BAP1 which is also used by transmit, so
  1720.  *  make sure this isnt called when a transmit is happening */
  1721. static int PC4500_writerid(struct airo_info *ai, u16 rid,
  1722.    const void *pBuf, int len)
  1723. {
  1724. u16 status;
  1725.         long flags;
  1726. int rc = SUCCESS;
  1727. spin_lock_irqsave(&ai->main_lock, flags);
  1728. // --- first access so that we can write the rid data
  1729. if ( (status = PC4500_accessrid(ai, rid, CMD_ACCESS)) != 0) {
  1730.                 rc = status;
  1731.                 goto done;
  1732.         }
  1733. // --- now write the rid data
  1734. if (bap_setup(ai, rid, 0, BAP1) != SUCCESS) {
  1735.                 rc = ERROR;
  1736.                 goto done;
  1737.         }
  1738. bap_write(ai, pBuf, len, BAP1);
  1739. // ---now commit the rid data
  1740. rc = PC4500_accessrid(ai, rid, 0x100|CMD_ACCESS);
  1741.  done:
  1742. spin_unlock_irqrestore(&ai->main_lock, flags);
  1743.         return rc;
  1744. }
  1745. /* Allocates a FID to be used for transmitting packets.  We only use
  1746.    one for now. */
  1747. static u16 transmit_allocate(struct airo_info *ai, int lenPayload)
  1748. {
  1749. Cmd cmd;
  1750. Resp rsp;
  1751. u16 txFid;
  1752. u16 txControl;
  1753.         long flags;
  1754. cmd.cmd = CMD_ALLOCATETX;
  1755. cmd.parm0 = lenPayload;
  1756. if (lock_issuecommand(ai, &cmd, &rsp) != SUCCESS) return 0;
  1757. if ( (rsp.status & 0xFF00) != 0) return 0;
  1758. /* wait for the allocate event/indication
  1759.  * It makes me kind of nervous that this can just sit here and spin,
  1760.  * but in practice it only loops like four times. */
  1761. while ( (IN4500(ai, EVSTAT) & EV_ALLOC) == 0) ;
  1762. // get the allocated fid and acknowledge
  1763. txFid = IN4500(ai, TXALLOCFID);
  1764. OUT4500(ai, EVACK, EV_ALLOC);
  1765. /*  The CARD is pretty cool since it converts the ethernet packet
  1766.  *  into 802.11.  Also note that we don't release the FID since we
  1767.  *  will be using the same one over and over again. */
  1768. /*  We only have to setup the control once since we are not
  1769.  *  releasing the fid. */
  1770. txControl = cpu_to_le16(TXCTL_TXOK | TXCTL_TXEX | TXCTL_802_3
  1771. | TXCTL_ETHERNET | TXCTL_NORELEASE);
  1772. spin_lock_irqsave(&ai->main_lock, flags);
  1773. if (bap_setup(ai, txFid, 0x0008, BAP1) != SUCCESS) {
  1774. spin_unlock_irqrestore(&ai->main_lock, flags);
  1775. return ERROR;
  1776. }
  1777. bap_write(ai, &txControl, sizeof(txControl), BAP1);
  1778. spin_unlock_irqrestore(&ai->main_lock, flags);
  1779. return txFid;
  1780. }
  1781. /* In general BAP1 is dedicated to transmiting packets.  However,
  1782.    since we need a BAP when accessing RIDs, we also use BAP1 for that.
  1783.    Make sure the BAP1 spinlock is held when this is called. */
  1784. static int transmit_802_3_packet(struct airo_info *ai, u16 txFid,
  1785.  char *pPacket, int len)
  1786. {
  1787. u16 payloadLen;
  1788. Cmd cmd;
  1789. Resp rsp;
  1790. if (len < 12) {
  1791. printk( KERN_WARNING "Short packet %dn", len );
  1792. return ERROR;
  1793. }
  1794. // packet is destination[6], source[6], payload[len-12]
  1795. // write the payload length and dst/src/payload
  1796. if (bap_setup(ai, txFid, 0x0036, BAP1) != SUCCESS) return ERROR;
  1797. /* The hardware addresses aren't counted as part of the payload, so
  1798.  * we have to subtract the 12 bytes for the addresses off */
  1799. payloadLen = cpu_to_le16(len-12);
  1800. bap_write(ai, &payloadLen, sizeof(payloadLen),BAP1);
  1801. bap_write(ai, (const u16*)pPacket, len, BAP1);
  1802. // issue the transmit command
  1803. memset( &cmd, 0, sizeof( cmd ) );
  1804. cmd.cmd = CMD_TRANSMIT;
  1805. cmd.parm0 = txFid;
  1806. if (issuecommand(ai, &cmd, &rsp) != SUCCESS) return ERROR;
  1807. if ( (rsp.status & 0xFF00) != 0) return ERROR;
  1808. return SUCCESS;
  1809. }
  1810. /*
  1811.  *  This is the proc_fs routines.  It is a bit messier than I would
  1812.  *  like!  Feel free to clean it up!
  1813.  */
  1814. static ssize_t proc_read( struct file *file,
  1815.   char *buffer,
  1816.   size_t len,
  1817.   loff_t *offset);
  1818. static ssize_t proc_write( struct file *file,
  1819.    const char *buffer,
  1820.    size_t len,
  1821.    loff_t *offset );
  1822. static int proc_close( struct inode *inode, struct file *file );
  1823. static int proc_stats_open( struct inode *inode, struct file *file );
  1824. static int proc_statsdelta_open( struct inode *inode, struct file *file );
  1825. static int proc_status_open( struct inode *inode, struct file *file );
  1826. static int proc_SSID_open( struct inode *inode, struct file *file );
  1827. static int proc_APList_open( struct inode *inode, struct file *file );
  1828. static int proc_BSSList_open( struct inode *inode, struct file *file );
  1829. static int proc_config_open( struct inode *inode, struct file *file );
  1830. static int proc_wepkey_open( struct inode *inode, struct file *file );
  1831. static struct file_operations proc_statsdelta_ops = {
  1832. read:           proc_read,
  1833. open:           proc_statsdelta_open,
  1834. release:        proc_close
  1835. };
  1836. static struct file_operations proc_stats_ops = {
  1837. read:           proc_read,
  1838. open:           proc_stats_open,
  1839. release:        proc_close
  1840. };
  1841. static struct file_operations proc_status_ops = {
  1842. read:            proc_read,
  1843. open:            proc_status_open,
  1844. release:         proc_close
  1845. };
  1846. static struct file_operations proc_SSID_ops = {
  1847. read:          proc_read,
  1848. write:         proc_write,
  1849. open:          proc_SSID_open,
  1850. release:       proc_close
  1851. };
  1852. static struct file_operations proc_BSSList_ops = {
  1853. read:          proc_read,
  1854. write:         proc_write,
  1855. open:          proc_BSSList_open,
  1856. release:       proc_close
  1857. };
  1858. static struct file_operations proc_APList_ops = {
  1859. read:          proc_read,
  1860. write:         proc_write,
  1861. open:          proc_APList_open,
  1862. release:       proc_close
  1863. };
  1864. static struct file_operations proc_config_ops = {
  1865. read:          proc_read,
  1866. write:         proc_write,
  1867. open:          proc_config_open,
  1868. release:       proc_close
  1869. };
  1870. static struct file_operations proc_wepkey_ops = {
  1871. read:          proc_read,
  1872. write:         proc_write,
  1873. open:          proc_wepkey_open,
  1874. release:       proc_close
  1875. };
  1876. static struct proc_dir_entry *airo_entry = 0;
  1877. struct proc_data {
  1878. int release_buffer;
  1879. int readlen;
  1880. char *rbuffer;
  1881. int writelen;
  1882. int maxwritelen;
  1883. char *wbuffer;
  1884. void (*on_close) (struct inode *, struct file *);
  1885. };
  1886. #ifndef SETPROC_OPS
  1887. #define SETPROC_OPS(entry, ops) (entry)->proc_fops = &(ops)
  1888. #endif
  1889. static int setup_proc_entry( struct net_device *dev,
  1890.      struct airo_info *apriv ) {
  1891. struct proc_dir_entry *entry;
  1892. /* First setup the device directory */
  1893. apriv->proc_entry = create_proc_entry(dev->name,
  1894.       S_IFDIR|airo_perm,
  1895.       airo_entry);
  1896.         apriv->proc_entry->uid = proc_uid;
  1897.         apriv->proc_entry->gid = proc_gid;
  1898. /* Setup the StatsDelta */
  1899. entry = create_proc_entry("StatsDelta",
  1900.   S_IFREG | (S_IRUGO&proc_perm),
  1901.   apriv->proc_entry);
  1902.         entry->uid = proc_uid;
  1903.         entry->gid = proc_gid;
  1904. entry->data = dev;
  1905. SETPROC_OPS(entry, proc_statsdelta_ops);
  1906. /* Setup the Stats */
  1907. entry = create_proc_entry("Stats",
  1908.   S_IFREG | (S_IRUGO&proc_perm),
  1909.   apriv->proc_entry);
  1910.         entry->uid = proc_uid;
  1911.         entry->gid = proc_gid;
  1912. entry->data = dev;
  1913. SETPROC_OPS(entry, proc_stats_ops);
  1914. /* Setup the Status */
  1915. entry = create_proc_entry("Status",
  1916.   S_IFREG | (S_IRUGO&proc_perm),
  1917.   apriv->proc_entry);
  1918.         entry->uid = proc_uid;
  1919.         entry->gid = proc_gid;
  1920. entry->data = dev;
  1921. SETPROC_OPS(entry, proc_status_ops);
  1922. /* Setup the Config */
  1923. entry = create_proc_entry("Config",
  1924.   S_IFREG | proc_perm,
  1925.   apriv->proc_entry);
  1926.         entry->uid = proc_uid;
  1927.         entry->gid = proc_gid;
  1928. entry->data = dev;
  1929. SETPROC_OPS(entry, proc_config_ops);
  1930. /* Setup the SSID */
  1931. entry = create_proc_entry("SSID",
  1932.   S_IFREG | proc_perm,
  1933.   apriv->proc_entry);
  1934.         entry->uid = proc_uid;
  1935.         entry->gid = proc_gid;
  1936. entry->data = dev;
  1937. SETPROC_OPS(entry, proc_SSID_ops);
  1938. /* Setup the APList */
  1939. entry = create_proc_entry("APList",
  1940.   S_IFREG | proc_perm,
  1941.   apriv->proc_entry);
  1942.         entry->uid = proc_uid;
  1943.         entry->gid = proc_gid;
  1944. entry->data = dev;
  1945. SETPROC_OPS(entry, proc_APList_ops);
  1946. /* Setup the BSSList */
  1947. entry = create_proc_entry("BSSList",
  1948.   S_IFREG | proc_perm,
  1949.   apriv->proc_entry);
  1950. entry->uid = proc_uid;
  1951. entry->gid = proc_gid;
  1952. entry->data = dev;
  1953. SETPROC_OPS(entry, proc_BSSList_ops);
  1954. /* Setup the WepKey */
  1955. entry = create_proc_entry("WepKey",
  1956.   S_IFREG | proc_perm,
  1957.   apriv->proc_entry);
  1958.         entry->uid = proc_uid;
  1959.         entry->gid = proc_gid;
  1960. entry->data = dev;
  1961. SETPROC_OPS(entry, proc_wepkey_ops);
  1962. return 0;
  1963. }
  1964. static int takedown_proc_entry( struct net_device *dev,
  1965. struct airo_info *apriv ) {
  1966. if ( !apriv->proc_entry->namelen ) return 0;
  1967. remove_proc_entry("Stats",apriv->proc_entry);
  1968. remove_proc_entry("StatsDelta",apriv->proc_entry);
  1969. remove_proc_entry("Status",apriv->proc_entry);
  1970. remove_proc_entry("Config",apriv->proc_entry);
  1971. remove_proc_entry("SSID",apriv->proc_entry);
  1972. remove_proc_entry("APList",apriv->proc_entry);
  1973. remove_proc_entry("BSSList",apriv->proc_entry);
  1974. remove_proc_entry("WepKey",apriv->proc_entry);
  1975. remove_proc_entry(dev->name,airo_entry);
  1976. return 0;
  1977. }
  1978. /*
  1979.  *  What we want from the proc_fs is to be able to efficiently read
  1980.  *  and write the configuration.  To do this, we want to read the
  1981.  *  configuration when the file is opened and write it when the file is
  1982.  *  closed.  So basically we allocate a read buffer at open and fill it
  1983.  *  with data, and allocate a write buffer and read it at close.
  1984.  */
  1985. /*
  1986.  *  The read routine is generic, it relies on the preallocated rbuffer
  1987.  *  to supply the data.
  1988.  */
  1989. static ssize_t proc_read( struct file *file,
  1990.   char *buffer,
  1991.   size_t len,
  1992.   loff_t *offset )
  1993. {
  1994. int i;
  1995. int pos;
  1996. struct proc_data *priv = (struct proc_data*)file->private_data;
  1997. if( !priv->rbuffer ) return -EINVAL;
  1998. pos = *offset;
  1999. for( i = 0; i+pos < priv->readlen && i < len; i++ ) {
  2000. if (put_user( priv->rbuffer[i+pos], buffer+i ))
  2001. return -EFAULT;
  2002. }
  2003. *offset += i;
  2004. return i;
  2005. }
  2006. /*
  2007.  *  The write routine is generic, it fills in a preallocated rbuffer
  2008.  *  to supply the data.
  2009.  */
  2010. static ssize_t proc_write( struct file *file,
  2011.    const char *buffer,
  2012.    size_t len,
  2013.    loff_t *offset )
  2014. {
  2015. int i;
  2016. int pos;
  2017. struct proc_data *priv = (struct proc_data*)file->private_data;
  2018. if ( !priv->wbuffer ) {
  2019. return -EINVAL;
  2020. }
  2021. pos = *offset;
  2022. for( i = 0; i + pos <  priv->maxwritelen &&
  2023.      i < len; i++ ) {
  2024. if (get_user( priv->wbuffer[i+pos], buffer + i ))
  2025. return -EFAULT;
  2026. }
  2027. if ( i+pos > priv->writelen ) priv->writelen = i+file->f_pos;
  2028. *offset += i;
  2029. return i;
  2030. }
  2031. static int proc_status_open( struct inode *inode, struct file *file ) {
  2032. struct proc_data *data;
  2033. struct proc_dir_entry *dp = inode->u.generic_ip;
  2034. struct net_device *dev = dp->data;
  2035. struct airo_info *apriv = (struct airo_info *)dev->priv;
  2036. CapabilityRid cap_rid;
  2037. StatusRid status_rid;
  2038. int i;
  2039. MOD_INC_USE_COUNT;
  2040. dp = inode->u.generic_ip;
  2041. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2042. return -ENOMEM;
  2043. memset(file->private_data, 0, sizeof(struct proc_data));
  2044. data = (struct proc_data *)file->private_data;
  2045. if ((data->rbuffer = kmalloc( 2048, GFP_KERNEL )) == NULL) {
  2046. kfree (file->private_data);
  2047. return -ENOMEM;
  2048. }
  2049. readStatusRid(apriv, &status_rid);
  2050. readCapabilityRid(apriv, &cap_rid);
  2051.         i = sprintf(data->rbuffer, "Status: %s%s%s%s%s%s%s%s%sn",
  2052.                     status_rid.mode & 1 ? "CFG ": "",
  2053.                     status_rid.mode & 2 ? "ACT ": "",
  2054.                     status_rid.mode & 0x10 ? "SYN ": "",
  2055.                     status_rid.mode & 0x20 ? "LNK ": "",
  2056.                     status_rid.mode & 0x40 ? "LEAP ": "",
  2057.                     status_rid.mode & 0x80 ? "PRIV ": "",
  2058.                     status_rid.mode & 0x100 ? "KEY ": "",
  2059.                     status_rid.mode & 0x200 ? "WEP ": "",
  2060.                     status_rid.mode & 0x8000 ? "ERR ": "");
  2061. sprintf( data->rbuffer+i, "Mode: %xn"
  2062.  "Signal Strength: %dn"
  2063.  "Signal Quality: %dn"
  2064.  "SSID: %-.*sn"
  2065.  "AP: %-.16sn"
  2066.  "Freq: %dn"
  2067.  "BitRate: %dmbsn"
  2068.  "Driver Version: %sn"
  2069.  "Device: %snManufacturer: %snFirmware Version: %sn"
  2070.  "Radio type: %xnCountry: %xnHardware Version: %xn"
  2071.  "Software Version: %xnSoftware Subversion: %xn"
  2072.  "Boot block version: %xn",
  2073.  (int)status_rid.mode,
  2074.  (int)status_rid.normalizedSignalStrength,
  2075.  (int)status_rid.signalQuality,
  2076.  (int)status_rid.SSIDlen,
  2077.  status_rid.SSID,
  2078.  status_rid.apName,
  2079.  (int)status_rid.channel,
  2080.  (int)status_rid.currentXmitRate/2,
  2081.  version,
  2082.  cap_rid.prodName,
  2083.  cap_rid.manName,
  2084.  cap_rid.prodVer,
  2085.  cap_rid.radioType,
  2086.  cap_rid.country,
  2087.  cap_rid.hardVer,
  2088.  (int)cap_rid.softVer,
  2089.  (int)cap_rid.softSubVer,
  2090.  (int)cap_rid.bootBlockVer );
  2091. data->readlen = strlen( data->rbuffer );
  2092. return 0;
  2093. }
  2094. static int proc_stats_rid_open(struct inode*, struct file*, u16);
  2095. static int proc_statsdelta_open( struct inode *inode,
  2096.  struct file *file ) {
  2097. if (file->f_mode&FMODE_WRITE) {
  2098. return proc_stats_rid_open(inode, file, RID_STATSDELTACLEAR);
  2099. }
  2100. return proc_stats_rid_open(inode, file, RID_STATSDELTA);
  2101. }
  2102. static int proc_stats_open( struct inode *inode, struct file *file ) {
  2103. return proc_stats_rid_open(inode, file, RID_STATS);
  2104. }
  2105. static int proc_stats_rid_open( struct inode *inode,
  2106. struct file *file,
  2107. u16 rid ) {
  2108. struct proc_data *data;
  2109. struct proc_dir_entry *dp = inode->u.generic_ip;
  2110. struct net_device *dev = dp->data;
  2111. struct airo_info *apriv = (struct airo_info *)dev->priv;
  2112. StatsRid stats;
  2113. int i, j;
  2114. int *vals = stats.vals;
  2115. MOD_INC_USE_COUNT;
  2116. dp = inode->u.generic_ip;
  2117. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2118. return -ENOMEM;
  2119. memset(file->private_data, 0, sizeof(struct proc_data));
  2120. data = (struct proc_data *)file->private_data;
  2121. if ((data->rbuffer = kmalloc( 4096, GFP_KERNEL )) == NULL) {
  2122. kfree (file->private_data);
  2123. return -ENOMEM;
  2124. }
  2125. readStatsRid(apriv, &stats, rid);
  2126.         j = 0;
  2127. for(i=0; (int)statsLabels[i]!=-1 &&
  2128.     i*4<stats.len; i++){
  2129. if (!statsLabels[i]) continue;
  2130. if (j+strlen(statsLabels[i])+16>4096) {
  2131. printk(KERN_WARNING
  2132.        "airo: Potentially disasterous buffer overflow averted!n");
  2133. break;
  2134. }
  2135. j+=sprintf(data->rbuffer+j, "%s: %dn", statsLabels[i], vals[i]);
  2136. }
  2137. if (i*4>=stats.len){
  2138. printk(KERN_WARNING
  2139.        "airo: Got a short ridn");
  2140. }
  2141. data->readlen = j;
  2142. return 0;
  2143. }
  2144. static int get_dec_u16( char *buffer, int *start, int limit ) {
  2145. u16 value;
  2146. int valid = 0;
  2147. for( value = 0; buffer[*start] >= '0' &&
  2148.      buffer[*start] <= '9' &&
  2149.      *start < limit; (*start)++ ) {
  2150. valid = 1;
  2151. value *= 10;
  2152. value += buffer[*start] - '0';
  2153. }
  2154. if ( !valid ) return -1;
  2155. return value;
  2156. }
  2157. static void checkThrottle(ConfigRid *config) {
  2158. int i;
  2159. /* Old hardware had a limit on encryption speed */
  2160. if (config->authType != AUTH_OPEN && maxencrypt) {
  2161. for(i=0; i<8; i++) {
  2162. if (config->rates[i] > maxencrypt) {
  2163. config->rates[i] = 0;
  2164. }
  2165. }
  2166. }
  2167. }
  2168. static void proc_config_on_close( struct inode *inode, struct file *file ) {
  2169. struct proc_data *data = file->private_data;
  2170. struct proc_dir_entry *dp = inode->u.generic_ip;
  2171. struct net_device *dev = dp->data;
  2172. struct airo_info *ai = (struct airo_info*)dev->priv;
  2173. ConfigRid config;
  2174. Resp rsp;
  2175. char *line;
  2176. int need_reset = 0;
  2177. if ( !data->writelen ) return;
  2178. dp = (struct proc_dir_entry *) inode->u.generic_ip;
  2179. disable_MAC(ai);
  2180. readConfigRid(ai, &config);
  2181. line = data->wbuffer;
  2182. while( line[0] ) {
  2183. /*** Mode processing */
  2184. if ( !strncmp( line, "Mode: ", 6 ) ) {
  2185. line += 6;
  2186. config.rmode &= 0xfe00;
  2187. if ( line[0] == 'a' ) {
  2188. config.opmode = 0;
  2189. } else {
  2190. config.opmode = 1;
  2191. if ( line[0] == 'r' )
  2192. config.rmode |= RXMODE_RFMON | RXMODE_DISABLE_802_3_HEADER;
  2193. else if ( line[0] == 'y' )
  2194. config.rmode |= RXMODE_RFMON_ANYBSS | RXMODE_DISABLE_802_3_HEADER;
  2195. }
  2196. if (config.rmode & RXMODE_DISABLE_802_3_HEADER) {
  2197. dev->type = ARPHRD_IEEE80211;
  2198. dev->hard_header_parse = wll_header_parse;
  2199. } else if (dev->type == ARPHRD_IEEE80211) {
  2200. dev->type = ARPHRD_ETHER;
  2201. dev->hard_header_parse = ai->header_parse;
  2202. need_reset = 1;
  2203. }
  2204. }
  2205. /*** Radio status */
  2206. else if (!strncmp(line,"Radio: ", 7)) {
  2207. line += 7;
  2208. if (!strncmp(line,"off",3)) {
  2209. ai->flags |= FLAG_RADIO_OFF;
  2210. } else {
  2211. ai->flags &= ~FLAG_RADIO_OFF;
  2212. }
  2213. }
  2214. /*** NodeName processing */
  2215. else if ( !strncmp( line, "NodeName: ", 10 ) ) {
  2216. int j;
  2217. line += 10;
  2218. memset( config.nodeName, 0, 16 );
  2219. /* Do the name, assume a space between the mode and node name */
  2220. for( j = 0; j < 16 && line[j] != 'n'; j++ ) {
  2221. config.nodeName[j] = line[j];
  2222. }
  2223. }
  2224. /*** PowerMode processing */
  2225. else if ( !strncmp( line, "PowerMode: ", 11 ) ) {
  2226. line += 11;
  2227. if ( !strncmp( line, "PSPCAM", 6 ) ) {
  2228. config.powerSaveMode = POWERSAVE_PSPCAM;
  2229. } else if ( !strncmp( line, "PSP", 3 ) ) {
  2230. config.powerSaveMode = POWERSAVE_PSP;
  2231. } else {
  2232. config.powerSaveMode = POWERSAVE_CAM;
  2233. }
  2234. } else if ( !strncmp( line, "DataRates: ", 11 ) ) {
  2235. int v, i = 0, k = 0; /* i is index into line,
  2236. k is index to rates */
  2237. line += 11;
  2238. while((v = get_dec_u16(line, &i, 3))!=-1) {
  2239. config.rates[k++] = (u8)v;
  2240. line += i + 1;
  2241. i = 0;
  2242. }
  2243. } else if ( !strncmp( line, "Channel: ", 9 ) ) {
  2244. int v, i = 0;
  2245. line += 9;
  2246. v = get_dec_u16(line, &i, i+3);
  2247. if ( v != -1 )
  2248. config.channelSet = (u16)v;
  2249. } else if ( !strncmp( line, "XmitPower: ", 11 ) ) {
  2250. int v, i = 0;
  2251. line += 11;
  2252. v = get_dec_u16(line, &i, i+3);
  2253. if ( v != -1 ) config.txPower = (u16)v;
  2254. } else if ( !strncmp( line, "WEP: ", 5 ) ) {
  2255. line += 5;
  2256. switch( line[0] ) {
  2257. case 's':
  2258. config.authType = (u16)AUTH_SHAREDKEY;
  2259. break;
  2260. case 'e':
  2261. config.authType = (u16)AUTH_ENCRYPT;
  2262. break;
  2263. default:
  2264. config.authType = (u16)AUTH_OPEN;
  2265. break;
  2266. }
  2267. } else if ( !strncmp( line, "LongRetryLimit: ", 16 ) ) {
  2268. int v, i = 0;
  2269. line += 16;
  2270. v = get_dec_u16(line, &i, 3);
  2271. v = (v<0) ? 0 : ((v>255) ? 255 : v);
  2272. config.longRetryLimit = (u16)v;
  2273. } else if ( !strncmp( line, "ShortRetryLimit: ", 17 ) ) {
  2274. int v, i = 0;
  2275. line += 17;
  2276. v = get_dec_u16(line, &i, 3);
  2277. v = (v<0) ? 0 : ((v>255) ? 255 : v);
  2278. config.shortRetryLimit = (u16)v;
  2279. } else if ( !strncmp( line, "RTSThreshold: ", 14 ) ) {
  2280. int v, i = 0;
  2281. line += 14;
  2282. v = get_dec_u16(line, &i, 4);
  2283. v = (v<0) ? 0 : ((v>2312) ? 2312 : v);
  2284. config.rtsThres = (u16)v;
  2285. } else if ( !strncmp( line, "TXMSDULifetime: ", 16 ) ) {
  2286. int v, i = 0;
  2287. line += 16;
  2288. v = get_dec_u16(line, &i, 5);
  2289. v = (v<0) ? 0 : v;
  2290. config.txLifetime = (u16)v;
  2291. } else if ( !strncmp( line, "RXMSDULifetime: ", 16 ) ) {
  2292. int v, i = 0;
  2293. line += 16;
  2294. v = get_dec_u16(line, &i, 5);
  2295. v = (v<0) ? 0 : v;
  2296. config.rxLifetime = (u16)v;
  2297. } else if ( !strncmp( line, "TXDiversity: ", 13 ) ) {
  2298. config.txDiversity =
  2299. (line[13]=='l') ? 1 :
  2300. ((line[13]=='r')? 2: 3);
  2301. } else if ( !strncmp( line, "RXDiversity: ", 13 ) ) {
  2302. config.rxDiversity =
  2303. (line[13]=='l') ? 1 :
  2304. ((line[13]=='r')? 2: 3);
  2305. } else if ( !strncmp( line, "FragThreshold: ", 15 ) ) {
  2306. int v, i = 0;
  2307. line += 15;
  2308. v = get_dec_u16(line, &i, 4);
  2309. v = (v<256) ? 256 : ((v>2312) ? 2312 : v);
  2310. v = v & 0xfffe; /* Make sure its even */
  2311. config.fragThresh = (u16)v;
  2312. } else if (!strncmp(line, "Modulation: ", 12)) {
  2313. line += 12;
  2314. switch(*line) {
  2315. case 'd':  config.modulation=MOD_DEFAULT; break;
  2316. case 'c':  config.modulation=MOD_CCK; break;
  2317. case 'm':  config.modulation=MOD_MOK; break;
  2318. default:
  2319. printk( KERN_WARNING "airo: Unknown modulationn" );
  2320. }
  2321. } else if (!strncmp(line, "Preamble: ", 10)) {
  2322. line += 10;
  2323. switch(*line) {
  2324. case 'a': config.preamble=PREAMBLE_AUTO; break;
  2325. case 'l': config.preamble=PREAMBLE_LONG; break;
  2326. case 's': config.preamble=PREAMBLE_SHORT; break;
  2327.         default: printk(KERN_WARNING "airo: Unknown preamblen");
  2328. }
  2329. } else {
  2330. printk( KERN_WARNING "Couldn't figure out %sn", line );
  2331. }
  2332. while( line[0] && line[0] != 'n' ) line++;
  2333. if ( line[0] ) line++;
  2334. }
  2335. checkThrottle(&config);
  2336. ai->config = config;
  2337. if (need_reset) {
  2338. APListRid APList_rid;
  2339. SsidRid SSID_rid;
  2340. readAPListRid(ai, &APList_rid);
  2341. readSsidRid(ai, &SSID_rid);
  2342. reset_airo_card(dev);
  2343. writeSsidRid(ai, &SSID_rid);
  2344. writeAPListRid(ai, &APList_rid);
  2345. }
  2346. writeConfigRid(ai, &config);
  2347. enable_MAC(ai, &rsp);
  2348. }
  2349. static int proc_config_open( struct inode *inode, struct file *file ) {
  2350. struct proc_data *data;
  2351. struct proc_dir_entry *dp = inode->u.generic_ip;
  2352. struct net_device *dev = dp->data;
  2353. struct airo_info *ai = (struct airo_info*)dev->priv;
  2354. ConfigRid config;
  2355. int i;
  2356. MOD_INC_USE_COUNT;
  2357. dp = (struct proc_dir_entry *) inode->u.generic_ip;
  2358. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2359. return -ENOMEM;
  2360. memset(file->private_data, 0, sizeof(struct proc_data));
  2361. data = (struct proc_data *)file->private_data;
  2362. if ((data->rbuffer = kmalloc( 2048, GFP_KERNEL )) == NULL) {
  2363. kfree (file->private_data);
  2364. return -ENOMEM;
  2365. }
  2366. if ((data->wbuffer = kmalloc( 2048, GFP_KERNEL )) == NULL) {
  2367. kfree (data->rbuffer);
  2368. kfree (file->private_data);
  2369. return -ENOMEM;
  2370. }
  2371. memset( data->wbuffer, 0, 2048 );
  2372. data->maxwritelen = 2048;
  2373. data->on_close = proc_config_on_close;
  2374. readConfigRid(ai, &config);
  2375. i = sprintf( data->rbuffer,
  2376.      "Mode: %sn"
  2377.      "Radio: %sn"
  2378.      "NodeName: %-16sn"
  2379.      "PowerMode: %sn"
  2380.      "DataRates: %d %d %d %d %d %d %d %dn"
  2381.      "Channel: %dn"
  2382.      "XmitPower: %dn",
  2383.      config.opmode == 0 ? "adhoc" :
  2384.      config.opmode == 1 ? "ESS" :
  2385.      config.opmode == 2 ? "AP" :
  2386.      config.opmode == 3 ? "AP RPTR" : "Error",
  2387.      ai->flags&FLAG_RADIO_OFF ? "off" : "on",
  2388.      config.nodeName,
  2389.      config.powerSaveMode == 0 ? "CAM" :
  2390.      config.powerSaveMode == 1 ? "PSP" :
  2391.      config.powerSaveMode == 2 ? "PSPCAM" : "Error",
  2392.      (int)config.rates[0],
  2393.      (int)config.rates[1],
  2394.      (int)config.rates[2],
  2395.      (int)config.rates[3],
  2396.      (int)config.rates[4],
  2397.      (int)config.rates[5],
  2398.      (int)config.rates[6],
  2399.      (int)config.rates[7],
  2400.      (int)config.channelSet,
  2401.      (int)config.txPower
  2402. );
  2403. sprintf( data->rbuffer + i,
  2404.  "LongRetryLimit: %dn"
  2405.  "ShortRetryLimit: %dn"
  2406.  "RTSThreshold: %dn"
  2407.  "TXMSDULifetime: %dn"
  2408.  "RXMSDULifetime: %dn"
  2409.  "TXDiversity: %sn"
  2410.  "RXDiversity: %sn"
  2411.  "FragThreshold: %dn"
  2412.  "WEP: %sn"
  2413.  "Modulation: %sn"
  2414.  "Preamble: %sn",
  2415.  (int)config.longRetryLimit,
  2416.  (int)config.shortRetryLimit,
  2417.  (int)config.rtsThres,
  2418.  (int)config.txLifetime,
  2419.  (int)config.rxLifetime,
  2420.  config.txDiversity == 1 ? "left" :
  2421.  config.txDiversity == 2 ? "right" : "both",
  2422.  config.rxDiversity == 1 ? "left" :
  2423.  config.rxDiversity == 2 ? "right" : "both",
  2424.  (int)config.fragThresh,
  2425.  config.authType == AUTH_ENCRYPT ? "encrypt" :
  2426.  config.authType == AUTH_SHAREDKEY ? "shared" : "open",
  2427.  config.modulation == 0 ? "default" :
  2428.  config.modulation == MOD_CCK ? "cck" :
  2429.  config.modulation == MOD_MOK ? "mok" : "error",
  2430.  config.preamble == PREAMBLE_AUTO ? "auto" :
  2431.  config.preamble == PREAMBLE_LONG ? "long" :
  2432.  config.preamble == PREAMBLE_SHORT ? "short" : "error"
  2433. );
  2434. data->readlen = strlen( data->rbuffer );
  2435. return 0;
  2436. }
  2437. static void proc_SSID_on_close( struct inode *inode, struct file *file ) {
  2438. struct proc_data *data = (struct proc_data *)file->private_data;
  2439. struct proc_dir_entry *dp = inode->u.generic_ip;
  2440. struct net_device *dev = dp->data;
  2441. struct airo_info *ai = (struct airo_info*)dev->priv;
  2442. SsidRid SSID_rid;
  2443. int i;
  2444. int offset = 0;
  2445. if ( !data->writelen ) return;
  2446. memset( &SSID_rid, 0, sizeof( SSID_rid ) );
  2447. for( i = 0; i < 3; i++ ) {
  2448. int j;
  2449. for( j = 0; j+offset < data->writelen && j < 32 &&
  2450.      data->wbuffer[offset+j] != 'n'; j++ ) {
  2451. SSID_rid.ssids[i].ssid[j] = data->wbuffer[offset+j];
  2452. }
  2453. if ( j == 0 ) break;
  2454. SSID_rid.ssids[i].len = j;
  2455. offset += j;
  2456. while( data->wbuffer[offset] != 'n' &&
  2457.        offset < data->writelen ) offset++;
  2458. offset++;
  2459. }
  2460. writeSsidRid(ai, &SSID_rid);
  2461. }
  2462. inline static u8 hexVal(char c) {
  2463. if (c>='0' && c<='9') return c -= '0';
  2464. if (c>='a' && c<='f') return c -= 'a'-10;
  2465. if (c>='A' && c<='F') return c -= 'A'-10;
  2466. return 0;
  2467. }
  2468. static void proc_APList_on_close( struct inode *inode, struct file *file ) {
  2469. struct proc_data *data = (struct proc_data *)file->private_data;
  2470. struct proc_dir_entry *dp = inode->u.generic_ip;
  2471. struct net_device *dev = dp->data;
  2472. struct airo_info *ai = (struct airo_info*)dev->priv;
  2473. APListRid APList_rid;
  2474. int i;
  2475. if ( !data->writelen ) return;
  2476. memset( &APList_rid, 0, sizeof(APList_rid) );
  2477. APList_rid.len = sizeof(APList_rid);
  2478. for( i = 0; i < 4 && data->writelen >= (i+1)*6*3; i++ ) {
  2479. int j;
  2480. for( j = 0; j < 6*3 && data->wbuffer[j+i*6*3]; j++ ) {
  2481. switch(j%3) {
  2482. case 0:
  2483. APList_rid.ap[i][j/3]=
  2484. hexVal(data->wbuffer[j+i*6*3])<<4;
  2485. break;
  2486. case 1:
  2487. APList_rid.ap[i][j/3]|=
  2488. hexVal(data->wbuffer[j+i*6*3]);
  2489. break;
  2490. }
  2491. }
  2492. }
  2493. writeAPListRid(ai, &APList_rid);
  2494. }
  2495. /* This function wraps PC4500_writerid with a MAC disable */
  2496. static int do_writerid( struct airo_info *ai, u16 rid, const void *rid_data,
  2497. int len ) {
  2498. int rc;
  2499. Resp rsp;
  2500. disable_MAC(ai);
  2501. rc = PC4500_writerid(ai, rid, rid_data, len);
  2502. enable_MAC(ai, &rsp);
  2503. return rc;
  2504. }
  2505. /* Returns the length of the key at the index.  If index == 0xffff
  2506.  * the index of the transmit key is returned.  If the key doesn't exist,
  2507.  * -1 will be returned.
  2508.  */
  2509. static int get_wep_key(struct airo_info *ai, u16 index) {
  2510. WepKeyRid wkr;
  2511. int rc;
  2512. u16 lastindex;
  2513. rc = readWepKeyRid(ai, &wkr, 1);
  2514. if (rc == SUCCESS) do {
  2515. lastindex = wkr.kindex;
  2516. if (wkr.kindex == index) {
  2517. if (index == 0xffff) {
  2518. return wkr.mac[0];
  2519. }
  2520. return wkr.klen;
  2521. }
  2522. readWepKeyRid(ai, &wkr, 0);
  2523. } while(lastindex != wkr.kindex);
  2524. return -1;
  2525. }
  2526. static int set_wep_key(struct airo_info *ai, u16 index,
  2527.        const char *key, u16 keylen, int perm ) {
  2528. static const unsigned char macaddr[6] = { 0x01, 0, 0, 0, 0, 0 };
  2529. WepKeyRid wkr;
  2530. memset(&wkr, 0, sizeof(wkr));
  2531. if (keylen == 0) {
  2532. // We are selecting which key to use
  2533. wkr.len = sizeof(wkr);
  2534. wkr.kindex = 0xffff;
  2535. wkr.mac[0] = (char)index;
  2536. if (perm) printk(KERN_INFO "Setting transmit key to %dn", index);
  2537. if (perm) ai->defindex = (char)index;
  2538. } else {
  2539. // We are actually setting the key
  2540. wkr.len = sizeof(wkr);
  2541. wkr.kindex = index;
  2542. wkr.klen = keylen;
  2543. memcpy( wkr.key, key, keylen );
  2544. memcpy( wkr.mac, macaddr, 6 );
  2545. printk(KERN_INFO "Setting key %dn", index);
  2546. }
  2547. writeWepKeyRid(ai, &wkr, perm);
  2548. return 0;
  2549. }
  2550. static void proc_wepkey_on_close( struct inode *inode, struct file *file ) {
  2551. struct proc_data *data;
  2552. struct proc_dir_entry *dp = inode->u.generic_ip;
  2553. struct net_device *dev = dp->data;
  2554. struct airo_info *ai = (struct airo_info*)dev->priv;
  2555. int i;
  2556. char key[16];
  2557. u16 index = 0;
  2558. int j = 0;
  2559. memset(key, 0, sizeof(key));
  2560. dp = (struct proc_dir_entry *) inode->u.generic_ip;
  2561. data = (struct proc_data *)file->private_data;
  2562. if ( !data->writelen ) return;
  2563. if (data->wbuffer[0] >= '0' && data->wbuffer[0] <= '3' &&
  2564.     (data->wbuffer[1] == ' ' || data->wbuffer[1] == 'n')) {
  2565. index = data->wbuffer[0] - '0';
  2566. if (data->wbuffer[1] == 'n') {
  2567. set_wep_key(ai, index, 0, 0, 1);
  2568. return;
  2569. }
  2570. j = 2;
  2571. } else {
  2572. printk(KERN_ERR "airo:  WepKey passed invalid key indexn");
  2573. return;
  2574. }
  2575. for( i = 0; i < 16*3 && data->wbuffer[i+j]; i++ ) {
  2576. switch(i%3) {
  2577. case 0:
  2578. key[i/3] = hexVal(data->wbuffer[i+j])<<4;
  2579. break;
  2580. case 1:
  2581. key[i/3] |= hexVal(data->wbuffer[i+j]);
  2582. break;
  2583. }
  2584. }
  2585. set_wep_key(ai, index, key, i/3, 1);
  2586. }
  2587. static int proc_wepkey_open( struct inode *inode, struct file *file ) {
  2588. struct proc_data *data;
  2589. struct proc_dir_entry *dp = inode->u.generic_ip;
  2590. struct net_device *dev = dp->data;
  2591. struct airo_info *ai = (struct airo_info*)dev->priv;
  2592. char *ptr;
  2593. WepKeyRid wkr;
  2594. u16 lastindex;
  2595. int j=0;
  2596. int rc;
  2597. MOD_INC_USE_COUNT;
  2598. dp = (struct proc_dir_entry *) inode->u.generic_ip;
  2599. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2600. return -ENOMEM;
  2601. memset(file->private_data, 0, sizeof(struct proc_data));
  2602. memset(&wkr, 0, sizeof(wkr));
  2603. data = (struct proc_data *)file->private_data;
  2604. if ((data->rbuffer = kmalloc( 180, GFP_KERNEL )) == NULL) {
  2605. kfree (file->private_data);
  2606. return -ENOMEM;
  2607. }
  2608. memset(data->rbuffer, 0, 180);
  2609. data->writelen = 0;
  2610. data->maxwritelen = 80;
  2611. if ((data->wbuffer = kmalloc( 80, GFP_KERNEL )) == NULL) {
  2612. kfree (data->rbuffer);
  2613. kfree (file->private_data);
  2614. return -ENOMEM;
  2615. }
  2616. memset( data->wbuffer, 0, 80 );
  2617. data->on_close = proc_wepkey_on_close;
  2618. ptr = data->rbuffer;
  2619. strcpy(ptr, "No wep keysn");
  2620. rc = readWepKeyRid(ai, &wkr, 1);
  2621. if (rc == SUCCESS) do {
  2622. lastindex = wkr.kindex;
  2623. if (wkr.kindex == 0xffff) {
  2624. j += sprintf(ptr+j, "Tx key = %dn",
  2625.      (int)wkr.mac[0]);
  2626. } else {
  2627. j += sprintf(ptr+j, "Key %d set with length = %dn",
  2628.      (int)wkr.kindex, (int)wkr.klen);
  2629. }
  2630. readWepKeyRid(ai, &wkr, 0);
  2631. } while((lastindex != wkr.kindex) && (j < 180-30));
  2632. data->readlen = strlen( data->rbuffer );
  2633. return 0;
  2634. }
  2635. static int proc_SSID_open( struct inode *inode, struct file *file ) {
  2636. struct proc_data *data;
  2637. struct proc_dir_entry *dp = inode->u.generic_ip;
  2638. struct net_device *dev = dp->data;
  2639. struct airo_info *ai = (struct airo_info*)dev->priv;
  2640. int i;
  2641. char *ptr;
  2642. SsidRid SSID_rid;
  2643. MOD_INC_USE_COUNT;
  2644. dp = (struct proc_dir_entry *) inode->u.generic_ip;
  2645. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2646. return -ENOMEM;
  2647. memset(file->private_data, 0, sizeof(struct proc_data));
  2648. data = (struct proc_data *)file->private_data;
  2649. if ((data->rbuffer = kmalloc( 104, GFP_KERNEL )) == NULL) {
  2650. kfree (file->private_data);
  2651. return -ENOMEM;
  2652. }
  2653. data->writelen = 0;
  2654. data->maxwritelen = 33*3;
  2655. if ((data->wbuffer = kmalloc( 33*3, GFP_KERNEL )) == NULL) {
  2656. kfree (data->rbuffer);
  2657. kfree (file->private_data);
  2658. return -ENOMEM;
  2659. }
  2660. memset( data->wbuffer, 0, 33*3 );
  2661. data->on_close = proc_SSID_on_close;
  2662. readSsidRid(ai, &SSID_rid);
  2663. ptr = data->rbuffer;
  2664. for( i = 0; i < 3; i++ ) {
  2665. int j;
  2666. if ( !SSID_rid.ssids[i].len ) break;
  2667. for( j = 0; j < 32 &&
  2668.      j < SSID_rid.ssids[i].len &&
  2669.      SSID_rid.ssids[i].ssid[j]; j++ ) {
  2670. *ptr++ = SSID_rid.ssids[i].ssid[j];
  2671. }
  2672. *ptr++ = 'n';
  2673. }
  2674. *ptr = '';
  2675. data->readlen = strlen( data->rbuffer );
  2676. return 0;
  2677. }
  2678. static int proc_APList_open( struct inode *inode, struct file *file ) {
  2679. struct proc_data *data;
  2680. struct proc_dir_entry *dp = inode->u.generic_ip;
  2681. struct net_device *dev = dp->data;
  2682. struct airo_info *ai = (struct airo_info*)dev->priv;
  2683. int i;
  2684. char *ptr;
  2685. APListRid APList_rid;
  2686. MOD_INC_USE_COUNT;
  2687. dp = (struct proc_dir_entry *) inode->u.generic_ip;
  2688. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2689. return -ENOMEM;
  2690. memset(file->private_data, 0, sizeof(struct proc_data));
  2691. data = (struct proc_data *)file->private_data;
  2692. if ((data->rbuffer = kmalloc( 104, GFP_KERNEL )) == NULL) {
  2693. kfree (file->private_data);
  2694. return -ENOMEM;
  2695. }
  2696. data->writelen = 0;
  2697. data->maxwritelen = 4*6*3;
  2698. if ((data->wbuffer = kmalloc( data->maxwritelen, GFP_KERNEL )) == NULL) {
  2699. kfree (data->rbuffer);
  2700. kfree (file->private_data);
  2701. return -ENOMEM;
  2702. }
  2703. memset( data->wbuffer, 0, data->maxwritelen );
  2704. data->on_close = proc_APList_on_close;
  2705. readAPListRid(ai, &APList_rid);
  2706. ptr = data->rbuffer;
  2707. for( i = 0; i < 4; i++ ) {
  2708. // We end when we find a zero MAC
  2709. if ( !*(int*)APList_rid.ap[i] &&
  2710.      !*(int*)&APList_rid.ap[i][2]) break;
  2711. ptr += sprintf(ptr, "%02x:%02x:%02x:%02x:%02x:%02xn",
  2712.        (int)APList_rid.ap[i][0],
  2713.        (int)APList_rid.ap[i][1],
  2714.        (int)APList_rid.ap[i][2],
  2715.        (int)APList_rid.ap[i][3],
  2716.        (int)APList_rid.ap[i][4],
  2717.        (int)APList_rid.ap[i][5]);
  2718. }
  2719. if (i==0) ptr += sprintf(ptr, "Not using specific APsn");
  2720. *ptr = '';
  2721. data->readlen = strlen( data->rbuffer );
  2722. return 0;
  2723. }
  2724. static int proc_BSSList_open( struct inode *inode, struct file *file ) {
  2725. struct proc_data *data;
  2726. struct proc_dir_entry *dp = inode->u.generic_ip;
  2727. struct net_device *dev = dp->data;
  2728. struct airo_info *ai = (struct airo_info*)dev->priv;
  2729. char *ptr;
  2730. BSSListRid BSSList_rid;
  2731. int rc;
  2732. /* If doLoseSync is not 1, we won't do a Lose Sync */
  2733. int doLoseSync = -1;
  2734. MOD_INC_USE_COUNT;
  2735. dp = (struct proc_dir_entry *) inode->u.generic_ip;
  2736. if ((file->private_data = kmalloc(sizeof(struct proc_data ), GFP_KERNEL)) == NULL)
  2737. return -ENOMEM;
  2738. memset(file->private_data, 0, sizeof(struct proc_data));
  2739. data = (struct proc_data *)file->private_data;
  2740. if ((data->rbuffer = kmalloc( 1024, GFP_KERNEL )) == NULL) {
  2741. kfree (file->private_data);
  2742. return -ENOMEM;
  2743. }
  2744. data->writelen = 0;
  2745. data->maxwritelen = 0;
  2746. data->wbuffer = 0;
  2747. data->on_close = 0;
  2748. if (file->f_mode & FMODE_WRITE) {
  2749. if (!(file->f_mode & FMODE_READ)) {
  2750. Cmd cmd;
  2751. Resp rsp;
  2752. memset(&cmd, 0, sizeof(cmd));
  2753. cmd.cmd=CMD_LISTBSS;
  2754. lock_issuecommand(ai, &cmd, &rsp);
  2755. data->readlen = 0;
  2756. return 0;
  2757. }
  2758. doLoseSync = 1;
  2759. }
  2760. ptr = data->rbuffer;
  2761. /* There is a race condition here if there are concurrent opens.
  2762.            Since it is a rare condition, we'll just live with it, otherwise
  2763.            we have to add a spin lock... */
  2764. rc = readBSSListRid(ai, doLoseSync, &BSSList_rid);
  2765. while(rc == 0 && BSSList_rid.index != 0xffff) {
  2766. ptr += sprintf(ptr, "%02x:%02x:%02x:%02x:%02x:%02x %*s rssi = %d",
  2767. (int)BSSList_rid.bssid[0],
  2768. (int)BSSList_rid.bssid[1],
  2769. (int)BSSList_rid.bssid[2],
  2770. (int)BSSList_rid.bssid[3],
  2771. (int)BSSList_rid.bssid[4],
  2772. (int)BSSList_rid.bssid[5],
  2773. (int)BSSList_rid.ssidLen,
  2774. BSSList_rid.ssid,
  2775. (int)BSSList_rid.rssi);
  2776. ptr += sprintf(ptr, " channel = %d %s %s %s %sn",
  2777. (int)BSSList_rid.dsChannel,
  2778. BSSList_rid.cap & CAP_ESS ? "ESS" : "",
  2779. BSSList_rid.cap & CAP_IBSS ? "adhoc" : "",
  2780. BSSList_rid.cap & CAP_PRIVACY ? "wep" : "",
  2781. BSSList_rid.cap & CAP_SHORTHDR ? "shorthdr" : "");
  2782. rc = readBSSListRid(ai, 0, &BSSList_rid);
  2783. }
  2784. *ptr = '';
  2785. data->readlen = strlen( data->rbuffer );
  2786. return 0;
  2787. }
  2788. static int proc_close( struct inode *inode, struct file *file )
  2789. {
  2790. struct proc_data *data = (struct proc_data *)file->private_data;
  2791. if ( data->on_close != NULL ) data->on_close( inode, file );
  2792. MOD_DEC_USE_COUNT;
  2793. if ( data->rbuffer ) kfree( data->rbuffer );
  2794. if ( data->wbuffer ) kfree( data->wbuffer );
  2795. kfree( data );
  2796. return 0;
  2797. }
  2798. static struct net_device_list {
  2799. struct net_device *dev;
  2800. struct net_device_list *next;
  2801. } *airo_devices = 0;
  2802. /* Since the card doesnt automatically switch to the right WEP mode,
  2803.    we will make it do it.  If the card isn't associated, every secs we
  2804.    will switch WEP modes to see if that will help.  If the card is
  2805.    associated we will check every minute to see if anything has
  2806.    changed. */
  2807. static void timer_func( u_long data ) {
  2808. struct net_device *dev = (struct net_device*)data;
  2809. struct airo_info *apriv = (struct airo_info *)dev->priv;
  2810. u16 linkstat = IN4500(apriv, LINKSTAT);
  2811. if (linkstat != 0x400 ) {
  2812. /* We don't have a link so try changing the authtype */
  2813. ConfigRid config = apriv->config;
  2814. switch(apriv->authtype) {
  2815. case AUTH_ENCRYPT:
  2816. /* So drop to OPEN */
  2817. config.authType = AUTH_OPEN;
  2818. apriv->authtype = AUTH_OPEN;
  2819. break;
  2820. case AUTH_SHAREDKEY:
  2821. if (apriv->keyindex < auto_wep) {
  2822. set_wep_key(apriv, apriv->keyindex, 0, 0, 0);
  2823. config.authType = AUTH_SHAREDKEY;
  2824. apriv->authtype = AUTH_SHAREDKEY;
  2825. apriv->keyindex++;
  2826. } else {
  2827.         /* Drop to ENCRYPT */
  2828. apriv->keyindex = 0;
  2829. set_wep_key(apriv, apriv->defindex, 0, 0, 0);
  2830. config.authType = AUTH_ENCRYPT;
  2831. apriv->authtype = AUTH_ENCRYPT;
  2832. }
  2833. break;
  2834. default:  /* We'll escalate to SHAREDKEY */
  2835. config.authType = AUTH_SHAREDKEY;
  2836. apriv->authtype = AUTH_SHAREDKEY;
  2837. }
  2838. checkThrottle(&config);
  2839. writeConfigRid(apriv, &config);
  2840. /* Schedule check to see if the change worked */
  2841. apriv->timer.expires = RUN_AT(HZ*3);
  2842. add_timer(&apriv->timer);
  2843. }
  2844. }
  2845. static int add_airo_dev( struct net_device *dev ) {
  2846. struct net_device_list *node = kmalloc( sizeof( *node ), GFP_KERNEL );
  2847. if ( !node )
  2848. return -ENOMEM;
  2849. if ( auto_wep ) {
  2850. struct airo_info *apriv=dev->priv;
  2851. struct timer_list *timer = &apriv->timer;
  2852. timer->function = timer_func;
  2853. timer->data = (u_long)dev;
  2854. init_timer(timer);
  2855. apriv->authtype = AUTH_SHAREDKEY;
  2856. }
  2857. node->dev = dev;
  2858. node->next = airo_devices;
  2859. airo_devices = node;
  2860. return 0;
  2861. }
  2862. static void del_airo_dev( struct net_device *dev ) {
  2863. struct net_device_list **p = &airo_devices;
  2864. while( *p && ( (*p)->dev != dev ) )
  2865. p = &(*p)->next;
  2866. if ( *p && (*p)->dev == dev )
  2867. *p = (*p)->next;
  2868. }
  2869. #ifdef CONFIG_PCI
  2870. static int __devinit airo_pci_probe(struct pci_dev *pdev,
  2871.     const struct pci_device_id *pent)
  2872. {
  2873. struct net_device *dev;
  2874. dev = init_airo_card(pdev->irq, pdev->resource[2].start, 0);
  2875. if (!dev)
  2876. return -ENODEV;
  2877. pci_set_drvdata(pdev, dev);
  2878. return 0;
  2879. }
  2880. static void __devexit airo_pci_remove(struct pci_dev *pdev)
  2881. {
  2882. stop_airo_card(pci_get_drvdata(pdev), 1);
  2883. }
  2884. #endif
  2885. static int __init airo_init_module( void )
  2886. {
  2887. int i, rc = 0, have_isa_dev = 0;
  2888. airo_entry = create_proc_entry("aironet",
  2889.        S_IFDIR | airo_perm,
  2890.        proc_root_driver);
  2891.         airo_entry->uid = proc_uid;
  2892.         airo_entry->gid = proc_gid;
  2893. for( i = 0; i < 4 && io[i] && irq[i]; i++ ) {
  2894. printk( KERN_INFO
  2895. "airo:  Trying to configure ISA adapter at irq=%d io=0x%xn",
  2896. irq[i], io[i] );
  2897. if (init_airo_card( irq[i], io[i], 0 ))
  2898. have_isa_dev = 1;
  2899. }
  2900. #ifdef CONFIG_PCI
  2901. printk( KERN_INFO "airo:  Probing for PCI adaptersn" );
  2902. rc = pci_module_init(&airo_driver);
  2903. printk( KERN_INFO "airo:  Finished probing for PCI adaptersn" );
  2904. #endif
  2905. /* Always exit with success, as we are a library module
  2906.  * as well as a driver module
  2907.  */
  2908. return 0;
  2909. }
  2910. static void __exit airo_cleanup_module( void )
  2911. {
  2912. while( airo_devices ) {
  2913. printk( KERN_INFO "airo: Unregistering %sn", airo_devices->dev->name );
  2914. stop_airo_card( airo_devices->dev, 1 );
  2915. }
  2916. remove_proc_entry("aironet", proc_root_driver);
  2917. }
  2918. #ifdef WIRELESS_EXT
  2919. /*
  2920.  * Initial Wireless Extension code for Aironet driver by :
  2921.  * Jean Tourrilhes <jt@hpl.hp.com> - HPL - 17 November 00
  2922.  */
  2923. #ifndef IW_ENCODE_NOKEY
  2924. #define IW_ENCODE_NOKEY         0x0800  /* Key is write only, so not present */
  2925. #define IW_ENCODE_MODE  (IW_ENCODE_DISABLED | IW_ENCODE_RESTRICTED | IW_ENCODE_OPEN)
  2926. #endif /* IW_ENCODE_NOKEY */
  2927. #endif /* WIRELESS_EXT */
  2928. /*
  2929.  * This defines the configuration part of the Wireless Extensions
  2930.  * Note : irq and spinlock protection will occur in the subroutines
  2931.  *
  2932.  * TODO :
  2933.  * o Check input value more carefully and fill correct values in range
  2934.  * o Implement : POWER, SPY, APLIST
  2935.  * o Optimise when adapter is closed (aggregate changes, commit later)
  2936.  * o Test and shakeout the bugs (if any)
  2937.  *
  2938.  * Jean II
  2939.  *
  2940.  * Javier Achirica did a great job of merging code from the unnamed CISCO
  2941.  * developer that added support for flashing the card.
  2942.  */
  2943. static int airo_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  2944. {
  2945. int i, rc = 0;
  2946. #ifdef WIRELESS_EXT
  2947. struct airo_info *local = (struct airo_info*) dev->priv;
  2948. struct iwreq *wrq = (struct iwreq *) rq;
  2949. ConfigRid config; /* Configuration info */
  2950. CapabilityRid cap_rid; /* Card capability info */
  2951. StatusRid status_rid; /* Card status info */
  2952. #ifdef CISCO_EXT
  2953. if (cmd != SIOCGIWPRIV && cmd != AIROIOCTL && cmd != AIROIDIFC
  2954. #ifdef AIROOLDIOCTL
  2955. && cmd != AIROOLDIOCTL && cmd != AIROOLDIDIFC
  2956. #endif
  2957. )
  2958. #endif /* CISCO_EXT */
  2959. {
  2960. /* If the command read some stuff, we better get it out of
  2961.  * the card first... */
  2962. if(IW_IS_GET(cmd))
  2963. readStatusRid(local, &status_rid);
  2964. if(IW_IS_GET(cmd) || (cmd == SIOCSIWRATE) || (cmd == SIOCSIWENCODE))
  2965. readCapabilityRid(local, &cap_rid);
  2966. /* Get config in all cases, because SET will just modify it */
  2967. readConfigRid(local, &config);
  2968. }
  2969. #endif /* WIRELESS_EXT */
  2970. switch (cmd) {
  2971. #ifdef WIRELESS_EXT
  2972. // Get name
  2973. case SIOCGIWNAME:
  2974. strcpy(wrq->u.name, "IEEE 802.11-DS");
  2975. break;
  2976. // Set frequency/channel
  2977. case SIOCSIWFREQ:
  2978. /* If setting by frequency, convert to a channel */
  2979. if((wrq->u.freq.e == 1) &&
  2980.    (wrq->u.freq.m >= (int) 2.412e8) &&
  2981.    (wrq->u.freq.m <= (int) 2.487e8)) {
  2982. int f = wrq->u.freq.m / 100000;
  2983. int c = 0;
  2984. while((c < 14) && (f != frequency_list[c]))
  2985. c++;
  2986. /* Hack to fall through... */
  2987. wrq->u.freq.e = 0;
  2988. wrq->u.freq.m = c + 1;
  2989. }
  2990. /* Setting by channel number */
  2991. if((wrq->u.freq.m > 1000) || (wrq->u.freq.e > 0))
  2992. rc = -EOPNOTSUPP;
  2993. else {
  2994. int channel = wrq->u.freq.m;
  2995. /* We should do a better check than that,
  2996.  * based on the card capability !!! */
  2997. if((channel < 1) || (channel > 16)) {
  2998. printk(KERN_DEBUG "%s: New channel value of %d is invalid!n", dev->name, wrq->u.freq.m);
  2999. rc = -EINVAL;
  3000. } else {
  3001. /* Yes ! We can set it !!! */
  3002. config.channelSet = (u16)(channel - 1);
  3003. local->need_commit = 1;
  3004. }
  3005. }
  3006. break;
  3007. // Get frequency/channel
  3008. case SIOCGIWFREQ:
  3009. #ifdef WEXT_USECHANNELS
  3010. wrq->u.freq.m = ((int)status_rid.channel) + 1;
  3011. wrq->u.freq.e = 0;
  3012. #else
  3013. {
  3014. int f = (int)status_rid.channel;
  3015. wrq->u.freq.m = frequency_list[f] * 100000;
  3016. wrq->u.freq.e = 1;
  3017. }
  3018. #endif
  3019. break;
  3020. // Set desired network name (ESSID)
  3021. case SIOCSIWESSID:
  3022. if (wrq->u.data.pointer) {
  3023. char essid[IW_ESSID_MAX_SIZE + 1];
  3024. SsidRid SSID_rid; /* SSIDs */
  3025. /* Reload the list of current SSID */
  3026. readSsidRid(local, &SSID_rid);
  3027. /* Check if we asked for `any' */
  3028. if(wrq->u.data.flags == 0) {
  3029. /* Just send an empty SSID list */
  3030. memset(&SSID_rid, 0, sizeof(SSID_rid));
  3031. } else {
  3032. int index = (wrq->u.data.flags &
  3033.  IW_ENCODE_INDEX) - 1;
  3034. /* Check the size of the string */
  3035. if(wrq->u.data.length > IW_ESSID_MAX_SIZE+1) {
  3036. rc = -E2BIG;
  3037. break;
  3038. }
  3039. /* Check if index is valid */
  3040. if((index < 0) || (index >= 4)) {
  3041. rc = -EINVAL;
  3042. break;
  3043. }
  3044. /* Set the SSID */
  3045. memset(essid, 0, sizeof(essid));
  3046. if (copy_from_user(essid,
  3047.        wrq->u.data.pointer,
  3048.        wrq->u.data.length)) {
  3049. rc = -EFAULT;
  3050. break;
  3051. }
  3052. memcpy(SSID_rid.ssids[index].ssid, essid,
  3053.        sizeof(essid) - 1);
  3054. SSID_rid.ssids[index].len = wrq->u.data.length - 1;
  3055. }
  3056. /* Write it to the card */
  3057. writeSsidRid(local, &SSID_rid);
  3058. }
  3059. break;
  3060. // Get current network name (ESSID)
  3061. case SIOCGIWESSID:
  3062. if (wrq->u.data.pointer) {
  3063. char essid[IW_ESSID_MAX_SIZE + 1];
  3064. /* Note : if wrq->u.data.flags != 0, we should
  3065.  * get the relevant SSID from the SSID list... */
  3066. /* Get the current SSID */
  3067. memcpy(essid, status_rid.SSID, status_rid.SSIDlen);
  3068. essid[status_rid.SSIDlen] = '';
  3069. /* If none, we may want to get the one that was set */
  3070. /* Push it out ! */
  3071. wrq->u.data.length = strlen(essid) + 1;
  3072. wrq->u.data.flags = 1; /* active */
  3073. if (copy_to_user(wrq->u.data.pointer, essid, sizeof(essid)))
  3074. rc = -EFAULT;
  3075. }
  3076. break;
  3077. case SIOCSIWAP:
  3078. if (wrq->u.ap_addr.sa_family != ARPHRD_ETHER)
  3079. rc = -EINVAL;
  3080. else {
  3081. APListRid APList_rid;
  3082. memset(&APList_rid, 0, sizeof(APList_rid));
  3083. APList_rid.len = sizeof(APList_rid);
  3084. memcpy(APList_rid.ap[0], wrq->u.ap_addr.sa_data, 6);
  3085. writeAPListRid(local, &APList_rid);
  3086. local->need_commit = 1;
  3087. }
  3088. break;
  3089. // Get current Access Point (BSSID)
  3090. case SIOCGIWAP:
  3091. /* Tentative. This seems to work, wow, I'm lucky !!! */
  3092. memcpy(wrq->u.ap_addr.sa_data, status_rid.bssid[0], 6);
  3093. wrq->u.ap_addr.sa_family = ARPHRD_ETHER;
  3094. break;
  3095. // Set desired station name
  3096. case SIOCSIWNICKN:
  3097. if (wrq->u.data.pointer) {
  3098. char name[16 + 1];
  3099. /* Check the size of the string */
  3100. if(wrq->u.data.length > 16 + 1) {
  3101. rc = -E2BIG;
  3102. break;
  3103. }
  3104. memset(name, 0, sizeof(name));
  3105. if (copy_from_user(name, wrq->u.data.pointer,
  3106.    wrq->u.data.length)) {
  3107. rc = -EFAULT;
  3108. break;
  3109. }
  3110. memcpy(config.nodeName, name, 16);
  3111. local->need_commit = 1;
  3112. }
  3113. break;
  3114. // Get current station name
  3115. case SIOCGIWNICKN:
  3116. if (wrq->u.data.pointer) {
  3117. char name[IW_ESSID_MAX_SIZE + 1];
  3118. strncpy(name, config.nodeName, 16);
  3119. name[16] = '';
  3120. wrq->u.data.length = strlen(name) + 1;
  3121. if (copy_to_user(wrq->u.data.pointer, name, sizeof(name)))
  3122. rc = -EFAULT;
  3123. }
  3124. break;
  3125. // Set the desired bit-rate
  3126. case SIOCSIWRATE:
  3127. {
  3128. /* First : get a valid bit rate value */
  3129. u8 brate = 0;
  3130. int i;
  3131. /* Which type of value ? */
  3132. if((wrq->u.bitrate.value < 8) &&
  3133.    (wrq->u.bitrate.value >= 0)) {
  3134. /* Setting by rate index */
  3135. /* Find value in the magic rate table */
  3136. brate = cap_rid.supportedRates[wrq->u.bitrate.value];
  3137. } else {
  3138. /* Setting by frequency value */
  3139. u8 normvalue = (u8) (wrq->u.bitrate.value/500000);
  3140. /* Check if rate is valid */
  3141. for(i = 0 ; i < 8 ; i++) {
  3142. if(normvalue == cap_rid.supportedRates[i]) {
  3143. brate = normvalue;
  3144. break;
  3145. }
  3146. }
  3147. }
  3148. /* -1 designed the max rate (mostly auto mode) */
  3149. if(wrq->u.bitrate.value == -1) {
  3150. /* Get the highest available rate */
  3151. for(i = 0 ; i < 8 ; i++) {
  3152. if(cap_rid.supportedRates[i] == 0)
  3153. break;
  3154. }
  3155. if(i != 0)
  3156. brate = cap_rid.supportedRates[i - 1];
  3157. }
  3158. /* Check that it is valid */
  3159. if(brate == 0) {
  3160. rc = -EINVAL;
  3161. break;
  3162. }
  3163. /* Now, check if we want a fixed or auto value */
  3164. if(wrq->u.bitrate.fixed == 0) {
  3165. /* Fill all the rates up to this max rate */
  3166. memset(config.rates, 0, 8);
  3167. for(i = 0 ; i < 8 ; i++) {
  3168. config.rates[i] = cap_rid.supportedRates[i];
  3169. if(config.rates[i] == brate)
  3170. break;
  3171. }
  3172. local->need_commit = 1;
  3173. } else {
  3174. /* Fixed mode */
  3175. /* One rate, fixed */
  3176. memset(config.rates, 0, 8);
  3177. config.rates[0] = brate;
  3178. local->need_commit = 1;
  3179. }
  3180. break;
  3181. }
  3182. // Get the current bit-rate
  3183. case SIOCGIWRATE:
  3184. {
  3185. int brate = status_rid.currentXmitRate;
  3186. wrq->u.bitrate.value = brate * 500000;
  3187. /* If more than one rate, set auto */
  3188. wrq->u.rts.fixed = (config.rates[1] == 0);
  3189. }
  3190. break;
  3191. // Set the desired RTS threshold
  3192. case SIOCSIWRTS:
  3193. {
  3194. int rthr = wrq->u.rts.value;
  3195. if(wrq->u.rts.disabled)
  3196. rthr = 2312;
  3197. if((rthr < 0) || (rthr > 2312)) {
  3198. rc = -EINVAL;
  3199. } else {
  3200. config.rtsThres = rthr;
  3201. local->need_commit = 1;
  3202. }
  3203. }
  3204. break;
  3205. // Get the current RTS threshold
  3206. case SIOCGIWRTS:
  3207. wrq->u.rts.value = config.rtsThres;
  3208. wrq->u.rts.disabled = (wrq->u.rts.value >= 2312);
  3209. wrq->u.rts.fixed = 1;
  3210. break;
  3211. // Set the desired fragmentation threshold
  3212. case SIOCSIWFRAG:
  3213. {
  3214. int fthr = wrq->u.frag.value;
  3215. if(wrq->u.frag.disabled)
  3216. fthr = 2312;
  3217. if((fthr < 256) || (fthr > 2312)) {
  3218. rc = -EINVAL;
  3219. } else {
  3220. fthr &= ~0x1; /* Get an even value */
  3221. config.fragThresh = (u16)fthr;
  3222. local->need_commit = 1;
  3223. }
  3224. }
  3225. break;
  3226. // Get the current fragmentation threshold
  3227. case SIOCGIWFRAG:
  3228. wrq->u.frag.value = config.fragThresh;
  3229. wrq->u.frag.disabled = (wrq->u.frag.value >= 2312);
  3230. wrq->u.frag.fixed = 1;
  3231. break;
  3232. // Set mode of operation
  3233. case SIOCSIWMODE:
  3234. switch(wrq->u.mode) {
  3235. case IW_MODE_ADHOC:
  3236. config.opmode = MODE_STA_IBSS;
  3237. local->need_commit = 1;
  3238. break;
  3239. case IW_MODE_INFRA:
  3240. config.opmode = MODE_STA_ESS;
  3241. local->need_commit = 1;
  3242. break;
  3243. case IW_MODE_MASTER:
  3244. config.opmode = MODE_AP;
  3245. local->need_commit = 1;
  3246. break;
  3247. case IW_MODE_REPEAT:
  3248. config.opmode = MODE_AP_RPTR;
  3249. local->need_commit = 1;
  3250. break;
  3251. default:
  3252. rc = -EINVAL;
  3253. }
  3254. break;
  3255. // Get mode of operation
  3256. case SIOCGIWMODE:
  3257. /* If not managed, assume it's ad-hoc */
  3258. switch (config.opmode & 0xFF) {
  3259. case MODE_STA_ESS:
  3260. wrq->u.mode = IW_MODE_INFRA;
  3261. break;
  3262. case MODE_AP:
  3263. wrq->u.mode = IW_MODE_MASTER;
  3264. break;
  3265. case MODE_AP_RPTR:
  3266. wrq->u.mode = IW_MODE_REPEAT;
  3267. break;
  3268. default:
  3269. wrq->u.mode = IW_MODE_ADHOC;
  3270. }
  3271. break;
  3272. // Set WEP keys and mode
  3273. case SIOCSIWENCODE:
  3274. /* Is WEP supported ? */
  3275. /* Older firmware doesn't support this...
  3276. if(!(cap_rid.softCap & 2)) {
  3277. rc = -EOPNOTSUPP;
  3278. break;
  3279. } */
  3280. /* Basic checking: do we have a key to set ? */
  3281. if (wrq->u.encoding.pointer != (caddr_t) 0) {
  3282. wep_key_t key;
  3283. int index = (wrq->u.encoding.flags & IW_ENCODE_INDEX) - 1;
  3284. int current_index = get_wep_key(local, 0xffff);
  3285. /* Check the size of the key */
  3286. if (wrq->u.encoding.length > MAX_KEY_SIZE) {
  3287. rc = -EINVAL;
  3288. break;
  3289. }
  3290. /* Check the index (none -> use current) */
  3291. if ((index < 0) || (index>=(cap_rid.softCap&0x80)?4:1))
  3292. index = current_index;
  3293. /* Set the length */
  3294. if (wrq->u.encoding.length > MIN_KEY_SIZE)
  3295. key.len = MAX_KEY_SIZE;
  3296. else
  3297. if (wrq->u.encoding.length > 0)
  3298. key.len = MIN_KEY_SIZE;
  3299. else
  3300. /* Disable the key */
  3301. key.len = 0;
  3302. /* Check if the key is not marked as invalid */
  3303. if(!(wrq->u.encoding.flags & IW_ENCODE_NOKEY)) {
  3304. /* Cleanup */
  3305. memset(key.key, 0, MAX_KEY_SIZE);
  3306. /* Copy the key in the driver */
  3307. if(copy_from_user(key.key,
  3308.   wrq->u.encoding.pointer,
  3309.   wrq->u.encoding.length)) {
  3310. key.len = 0;
  3311. rc = -EFAULT;
  3312. break;
  3313. }
  3314. /* Send the key to the card */
  3315. set_wep_key(local, index, key.key,
  3316.     key.len, 1);
  3317. }
  3318. /* WE specify that if a valid key is set, encryption
  3319.  * should be enabled (user may turn it off later)
  3320.  * This is also how "iwconfig ethX key on" works */
  3321. if((index == current_index) && (key.len > 0) &&
  3322.    (config.authType == AUTH_OPEN)) {
  3323. config.authType = AUTH_ENCRYPT;
  3324. local->need_commit = 1;
  3325. }
  3326. } else {
  3327. /* Do we want to just set the transmit key index ? */
  3328. int index = (wrq->u.encoding.flags & IW_ENCODE_INDEX) - 1;
  3329. if ((index>=0) && (index<(cap_rid.softCap&0x80)?4:1)) {
  3330. set_wep_key(local, index, 0, 0, 1);
  3331. } else
  3332. /* Don't complain if only change the mode */
  3333. if(!wrq->u.encoding.flags & IW_ENCODE_MODE) {
  3334. rc = -EINVAL;
  3335. break;
  3336. }
  3337. }
  3338. /* Read the flags */
  3339. if(wrq->u.encoding.flags & IW_ENCODE_DISABLED)
  3340. config.authType = AUTH_OPEN; // disable encryption
  3341. if(wrq->u.encoding.flags & IW_ENCODE_RESTRICTED)
  3342. config.authType = AUTH_SHAREDKEY; // Only Both
  3343. if(wrq->u.encoding.flags & IW_ENCODE_OPEN)
  3344. config.authType = AUTH_ENCRYPT; // Only Wep
  3345. /* Commit the changes if needed */
  3346. if(wrq->u.encoding.flags & IW_ENCODE_MODE)
  3347. local->need_commit = 1;
  3348. break;
  3349. // Get the WEP keys and mode
  3350. case SIOCGIWENCODE:
  3351. /* Is it supported ? */
  3352. if(!(cap_rid.softCap & 2)) {
  3353. rc = -EOPNOTSUPP;
  3354. break;
  3355. }
  3356. // Only super-user can see WEP key
  3357. if (!capable(CAP_NET_ADMIN)) {
  3358. rc = -EPERM;
  3359. break;
  3360. }
  3361. // Basic checking...
  3362. if (wrq->u.encoding.pointer != (caddr_t) 0) {
  3363. char zeros[16];
  3364. int index = (wrq->u.encoding.flags & IW_ENCODE_INDEX) - 1;
  3365. memset(zeros,0, sizeof(zeros));
  3366. /* Check encryption mode */
  3367. wrq->u.encoding.flags = IW_ENCODE_NOKEY;
  3368. /* Is WEP enabled ??? */
  3369. switch(config.authType) {
  3370. case AUTH_ENCRYPT:
  3371. wrq->u.encoding.flags |= IW_ENCODE_OPEN;
  3372. break;
  3373. case AUTH_SHAREDKEY:
  3374. wrq->u.encoding.flags |= IW_ENCODE_RESTRICTED;
  3375. break;
  3376. default:
  3377. case AUTH_OPEN:
  3378. wrq->u.encoding.flags |= IW_ENCODE_DISABLED;
  3379. break;
  3380. }
  3381. /* Which key do we want ? -1 -> tx index */
  3382. if((index < 0) || (index >= (cap_rid.softCap&0x80)?4:1))
  3383. index = get_wep_key(local, 0xffff);
  3384. wrq->u.encoding.flags |= index + 1;
  3385. /* Copy the key to the user buffer */
  3386. wrq->u.encoding.length = get_wep_key(local, index);
  3387. if (wrq->u.encoding.length > 16) {
  3388. wrq->u.encoding.length=0;
  3389. }
  3390. if(copy_to_user(wrq->u.encoding.pointer, zeros,
  3391. wrq->u.encoding.length))
  3392. rc = -EFAULT;
  3393. }
  3394. break;
  3395. #if WIRELESS_EXT > 9
  3396. // Get the current Tx-Power
  3397. case SIOCGIWTXPOW:
  3398. wrq->u.txpower.value = config.txPower;
  3399. wrq->u.txpower.fixed = 1; /* No power control */
  3400. wrq->u.txpower.disabled = (local->flags & FLAG_RADIO_OFF);
  3401. wrq->u.txpower.flags = IW_TXPOW_MWATT;
  3402. break;
  3403. case SIOCSIWTXPOW:
  3404. if (wrq->u.txpower.disabled) {
  3405. local->flags |= FLAG_RADIO_OFF;
  3406. local->need_commit = 1;
  3407. break;
  3408. }
  3409. if (wrq->u.txpower.flags != IW_TXPOW_MWATT) {
  3410. rc = -EINVAL;
  3411. break;
  3412. }
  3413. local->flags &= ~FLAG_RADIO_OFF;
  3414. rc = -EINVAL;
  3415. for (i = 0; cap_rid.txPowerLevels[i] && (i < 8); i++)
  3416. if ((wrq->u.txpower.value==cap_rid.txPowerLevels[i])) {
  3417. config.txPower = wrq->u.txpower.value;
  3418. local->need_commit = 1;
  3419. rc = 0;
  3420. break;
  3421. }
  3422. break;
  3423. #endif /* WIRELESS_EXT > 9 */
  3424. #if WIRELESS_EXT > 10
  3425. case SIOCSIWRETRY:
  3426. if(wrq->u.retry.disabled) {
  3427. rc = -EINVAL;
  3428. break;
  3429. }
  3430. local->need_commit = 0;
  3431. if(wrq->u.retry.flags & IW_RETRY_LIMIT) {
  3432. if(wrq->u.retry.flags & IW_RETRY_MAX)
  3433. config.longRetryLimit = wrq->u.retry.value;
  3434. else if (wrq->u.retry.flags & IW_RETRY_MIN)
  3435. config.shortRetryLimit = wrq->u.retry.value;
  3436. else {
  3437. /* No modifier : set both */
  3438. config.longRetryLimit = wrq->u.retry.value;
  3439. config.shortRetryLimit = wrq->u.retry.value;
  3440. }
  3441. local->need_commit = 1;
  3442. }
  3443. if(wrq->u.retry.flags & IW_RETRY_LIFETIME) {
  3444. config.txLifetime = wrq->u.retry.value / 1024;
  3445. local->need_commit = 1;
  3446. }
  3447. if(local->need_commit == 0) {
  3448. rc = -EINVAL;
  3449. }
  3450. break;
  3451. case SIOCGIWRETRY:
  3452. wrq->u.retry.disabled = 0;      /* Can't be disabled */
  3453. /* Note : by default, display the min retry number */
  3454. if((wrq->u.retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME) {
  3455. wrq->u.retry.flags = IW_RETRY_LIFETIME;
  3456. wrq->u.retry.value = (int)config.txLifetime * 1024;
  3457. } else if((wrq->u.retry.flags & IW_RETRY_MAX)) {
  3458. wrq->u.retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
  3459. wrq->u.retry.value = (int)config.longRetryLimit;
  3460. } else {
  3461. wrq->u.retry.flags = IW_RETRY_LIMIT;
  3462. wrq->u.retry.value = (int)config.shortRetryLimit;
  3463. if((int)config.shortRetryLimit != (int)config.longRetryLimit)
  3464. wrq->u.retry.flags |= IW_RETRY_MIN;
  3465. }
  3466. break;
  3467. #endif /* WIRELESS_EXT > 10 */
  3468. // Get range of parameters
  3469. case SIOCGIWRANGE:
  3470. if (wrq->u.data.pointer) {
  3471. struct iw_range range;
  3472. int i;
  3473. int k;
  3474. wrq->u.data.length = sizeof(range);
  3475. memset(&range, 0, sizeof(range));
  3476. range.min_nwid = 0x0000;
  3477. range.max_nwid = 0x0000;
  3478. range.num_channels = 14;
  3479. /* Should be based on cap_rid.country to give only
  3480.  * what the current card support */
  3481. k = 0;
  3482. for(i = 0; i < 14; i++) {
  3483. range.freq[k].i = i + 1; /* List index */
  3484. range.freq[k].m = frequency_list[i] * 100000;
  3485. range.freq[k++].e = 1; /* Values in table in MHz -> * 10^5 * 10 */
  3486. }
  3487. range.num_frequency = k;
  3488. /* Hum... Should put the right values there */
  3489. range.max_qual.qual = 10;
  3490. range.max_qual.level = 0x100 - 120; /* -120 dBm */
  3491. range.max_qual.noise = 0;
  3492. range.sensitivity = 65535;
  3493. for(i = 0 ; i < 8 ; i++) {
  3494. range.bitrate[i] = cap_rid.supportedRates[i] * 500000;
  3495. if(range.bitrate[i] == 0)
  3496. break;
  3497. }
  3498. range.num_bitrates = i;
  3499. /* Set an indication of the max TCP throughput
  3500.  * in bit/s that we can expect using this interface.
  3501.  * May be use for QoS stuff... Jean II */
  3502. if(i > 2)
  3503. range.throughput = 5 * 1000 * 1000;
  3504. else
  3505. range.throughput = 1.5 * 1000 * 1000;
  3506. range.min_rts = 0;
  3507. range.max_rts = 2312;
  3508. range.min_frag = 256;
  3509. range.max_frag = 2312;
  3510. if(cap_rid.softCap & 2) {
  3511. // WEP: RC4 40 bits
  3512. range.encoding_size[0] = 5;
  3513. // RC4 ~128 bits
  3514. if (cap_rid.softCap & 0x100) {
  3515. range.encoding_size[1] = 13;
  3516. range.num_encoding_sizes = 2;
  3517. } else
  3518. range.num_encoding_sizes = 1;
  3519. range.max_encoding_tokens = (cap_rid.softCap & 0x80) ? 4 : 1;
  3520. } else {
  3521. range.num_encoding_sizes = 0;
  3522. range.max_encoding_tokens = 0;
  3523. }
  3524. #if WIRELESS_EXT > 9
  3525. range.min_pmp = 0;
  3526. range.max_pmp = 5000000; /* 5 secs */
  3527. range.min_pmt = 0;
  3528. range.max_pmt = 65535 * 1024; /* ??? */
  3529. range.pmp_flags = IW_POWER_PERIOD;
  3530. range.pmt_flags = IW_POWER_TIMEOUT;
  3531. range.pm_capa = IW_POWER_PERIOD | IW_POWER_TIMEOUT | IW_POWER_ALL_R;
  3532. /* Transmit Power - values are in mW */
  3533. for(i = 0 ; i < 8 ; i++) {
  3534. range.txpower[i] = cap_rid.txPowerLevels[i];
  3535. if(range.txpower[i] == 0)
  3536. break;
  3537. }
  3538. range.num_txpower = i;
  3539. range.txpower_capa = IW_TXPOW_MWATT;
  3540. #endif /* WIRELESS_EXT > 9 */
  3541. #if WIRELESS_EXT > 10
  3542. range.we_version_source = 12;
  3543. range.we_version_compiled = WIRELESS_EXT;
  3544. range.retry_capa = IW_RETRY_LIMIT | IW_RETRY_LIFETIME;
  3545. range.retry_flags = IW_RETRY_LIMIT;
  3546. range.r_time_flags = IW_RETRY_LIFETIME;
  3547. range.min_retry = 1;
  3548. range.max_retry = 65535;
  3549. range.min_r_time = 1024;
  3550. range.max_r_time = 65535 * 1024;
  3551. #endif /* WIRELESS_EXT > 10 */
  3552. #if WIRELESS_EXT > 11
  3553. /* Experimental measurements - boundary 11/5.5 Mb/s */
  3554. /* Note : with or without the (local->rssi), results
  3555.  * are somewhat different. - Jean II */
  3556. range.avg_qual.qual = 6;
  3557. if (local->rssi)
  3558. range.avg_qual.level = 186; /* -70 dBm */
  3559. else
  3560. range.avg_qual.level = 176; /* -80 dBm */
  3561. range.avg_qual.noise = 0;
  3562. #endif /* WIRELESS_EXT > 11 */
  3563. if (copy_to_user(wrq->u.data.pointer, &range, sizeof(struct iw_range)))
  3564. rc = -EFAULT;
  3565. }
  3566. break;
  3567. case SIOCGIWPOWER:
  3568. {
  3569. int mode = config.powerSaveMode;
  3570. if ((wrq->u.power.disabled = (mode == POWERSAVE_CAM)))
  3571. break;
  3572. if ((wrq->u.power.flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
  3573. wrq->u.power.value = (int)config.fastListenDelay * 1024;
  3574. wrq->u.power.flags = IW_POWER_TIMEOUT;
  3575. } else {
  3576. wrq->u.power.value = (int)config.fastListenInterval * 1024;
  3577. wrq->u.power.flags = IW_POWER_PERIOD;
  3578. }
  3579. if ((config.rmode & 0xFF) == RXMODE_ADDR)
  3580. wrq->u.power.flags |= IW_POWER_UNICAST_R;
  3581. else
  3582. wrq->u.power.flags |= IW_POWER_ALL_R;
  3583. }
  3584. break;
  3585. case SIOCSIWPOWER:
  3586. if (wrq->u.power.disabled) {
  3587. if ((config.rmode & 0xFF) >= RXMODE_RFMON) {
  3588. rc = -EINVAL;
  3589. break;
  3590. }
  3591. config.powerSaveMode = POWERSAVE_CAM;
  3592. config.rmode &= 0xFF00;
  3593. config.rmode |= RXMODE_BC_MC_ADDR;
  3594. local->need_commit = 1;
  3595. break;
  3596. }
  3597. if ((wrq->u.power.flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
  3598. config.fastListenDelay = (wrq->u.power.value + 500) / 1024;
  3599. config.powerSaveMode = POWERSAVE_PSPCAM;
  3600. local->need_commit = 1;
  3601. } else if ((wrq->u.power.flags & IW_POWER_TYPE) == IW_POWER_PERIOD) {
  3602. config.fastListenInterval = config.listenInterval = (wrq->u.power.value + 500) / 1024;
  3603. config.powerSaveMode = POWERSAVE_PSPCAM;
  3604. local->need_commit = 1;
  3605. }
  3606. switch (wrq->u.power.flags & IW_POWER_MODE) {
  3607. case IW_POWER_UNICAST_R:
  3608. if ((config.rmode & 0xFF) >= RXMODE_RFMON) {
  3609. rc = -EINVAL;
  3610. break;
  3611. }
  3612. config.rmode &= 0xFF00;
  3613. config.rmode |= RXMODE_ADDR;
  3614. local->need_commit = 1;
  3615. break;
  3616. case IW_POWER_ALL_R:
  3617. if ((config.rmode & 0xFF) >= RXMODE_RFMON) {
  3618. rc = -EINVAL;
  3619. break;
  3620. }
  3621. config.rmode &= 0xFF00;
  3622. config.rmode |= RXMODE_BC_MC_ADDR;
  3623. local->need_commit = 1;
  3624. case IW_POWER_ON:
  3625. break;
  3626. default:
  3627. rc = -EINVAL;
  3628. }
  3629. break;
  3630. case SIOCGIWSENS:
  3631. wrq->u.sens.value = config.rssiThreshold;
  3632. wrq->u.sens.disabled = (wrq->u.sens.value == 0);
  3633. wrq->u.sens.fixed = 1;
  3634. break;
  3635. case SIOCSIWSENS:
  3636. config.rssiThreshold = wrq->u.sens.disabled ? RSSI_DEFAULT : wrq->u.sens.value;
  3637. local->need_commit = 1;
  3638. break;
  3639. case SIOCGIWAPLIST:
  3640. if (wrq->u.data.pointer) {
  3641. int i, rc;
  3642. struct sockaddr s[IW_MAX_AP];
  3643. struct iw_quality qual[IW_MAX_AP];
  3644. BSSListRid BSSList;
  3645. int loseSync = capable(CAP_NET_ADMIN) ? 1: -1;
  3646. for (i = 0; i < IW_MAX_AP; i++) {
  3647. if (readBSSListRid(local, loseSync, &BSSList))
  3648. break;
  3649. loseSync = 0;
  3650. memcpy(s[i].sa_data, BSSList.bssid, 6);
  3651. s[i].sa_family = ARPHRD_ETHER;
  3652. if (local->rssi)
  3653. qual[i].level = 0x100 - local->rssi[BSSList.rssi].rssidBm;
  3654. else
  3655. qual[i].level = (BSSList.rssi + 321) / 2;
  3656. qual[i].qual = qual[i].noise = 0;
  3657. qual[i].updated = 2;
  3658. if (BSSList.index == 0xffff) break;
  3659. }
  3660. if (!i) {
  3661. for (i = 0;
  3662.      i < min(IW_MAX_AP, 4) &&
  3663.      (status_rid.bssid[i][0]
  3664.       & status_rid.bssid[i][1]
  3665.       & status_rid.bssid[i][2]
  3666.       & status_rid.bssid[i][3]
  3667.       & status_rid.bssid[i][4]
  3668.       & status_rid.bssid[i][5])!=-1 &&
  3669.      (status_rid.bssid[i][0]
  3670.       | status_rid.bssid[i][1]
  3671.       | status_rid.bssid[i][2]
  3672.       | status_rid.bssid[i][3]
  3673.       | status_rid.bssid[i][4]
  3674.       | status_rid.bssid[i][5]);
  3675.      i++) {
  3676. memcpy(s[i].sa_data,
  3677.        status_rid.bssid[i], 6);
  3678. s[i].sa_family = ARPHRD_ETHER;
  3679. }
  3680. } else {
  3681. wrq->u.data.flags = 1; /* Should be define'd */
  3682. if (copy_to_user(wrq->u.data.pointer
  3683.  + sizeof(struct sockaddr)*i,
  3684.  &qual,
  3685.  sizeof(struct iw_quality)*i))
  3686. rc = -EFAULT;
  3687. }
  3688. wrq->u.data.length = i;
  3689. if (copy_to_user(wrq->u.data.pointer, &s,
  3690.  sizeof(struct sockaddr)*i))
  3691. rc = -EFAULT;
  3692. }
  3693. break;
  3694. #ifdef WIRELESS_SPY
  3695. // Set the spy list
  3696. case SIOCSIWSPY:
  3697. if (wrq->u.data.length > IW_MAX_SPY)
  3698. {
  3699. rc = -E2BIG;
  3700. break;
  3701. }
  3702. local->spy_number = wrq->u.data.length;
  3703. if (local->spy_number > 0)
  3704. {
  3705. struct sockaddr address[IW_MAX_SPY];
  3706. int i;
  3707. if (copy_from_user(address, wrq->u.data.pointer,
  3708.    sizeof(struct sockaddr) * local->spy_number)) {
  3709. rc = -EFAULT;
  3710. break;
  3711. }
  3712. for (i=0; i<local->spy_number; i++)
  3713. memcpy(local->spy_address[i], address[i].sa_data, 6);
  3714. memset(local->spy_stat, 0, sizeof(struct iw_quality) * IW_MAX_SPY);
  3715. }
  3716. break;
  3717. // Get the spy list
  3718. case SIOCGIWSPY:
  3719. wrq->u.data.length = local->spy_number;
  3720. if ((local->spy_number > 0) && (wrq->u.data.pointer))
  3721. {
  3722. struct sockaddr address[IW_MAX_SPY];
  3723. int i;
  3724. rc = verify_area(VERIFY_WRITE, wrq->u.data.pointer, (sizeof(struct iw_quality)+sizeof(struct sockaddr)) * IW_MAX_SPY);
  3725. if (rc)
  3726. break;
  3727. for (i=0; i<local->spy_number; i++)
  3728. {
  3729. memcpy(address[i].sa_data, local->spy_address[i], 6);
  3730. address[i].sa_family = AF_UNIX;
  3731. }
  3732. if (copy_to_user(wrq->u.data.pointer, address, sizeof(struct sockaddr) * local->spy_number)) {
  3733. rc = -EFAULT;
  3734. break;
  3735. }
  3736. if (copy_to_user(wrq->u.data.pointer + (sizeof(struct sockaddr)*local->spy_number), local->spy_stat, sizeof(struct iw_quality) * local->spy_number)) {
  3737. rc = -EFAULT;
  3738. break;
  3739. }
  3740. for (i=0; i<local->spy_number; i++)
  3741. local->spy_stat[i].updated = 0;
  3742. }
  3743. break;
  3744. #endif /* WIRELESS_SPY */
  3745. #ifdef CISCO_EXT
  3746. case SIOCGIWPRIV:
  3747. if(wrq->u.data.pointer)
  3748. {
  3749. struct iw_priv_args   priv[] =
  3750. { /* cmd, set_args, get_args, name */
  3751. { AIROIOCTL, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | sizeof (aironet_ioctl), IW_PRIV_TYPE_BYTE | 2047, "airoioctl" },
  3752. { AIROIDIFC, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | sizeof (aironet_ioctl), IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, "airoidifc" },
  3753. };
  3754. /* Set the number of ioctl available */
  3755. wrq->u.data.length = 2;
  3756. /* Copy structure to the user buffer */
  3757. if(copy_to_user(wrq->u.data.pointer, (u_char *) priv,
  3758. sizeof(priv)))
  3759. rc = -EFAULT;
  3760. }
  3761. break;
  3762. #endif /* CISCO_EXT */
  3763. #endif /* WIRELESS_EXT */
  3764. #ifdef CISCO_EXT
  3765. case AIROIDIFC:
  3766. #ifdef AIROOLDIDIFC
  3767. case AIROOLDIDIFC:
  3768. #endif
  3769. {
  3770. int val = AIROMAGIC;
  3771. aironet_ioctl com;
  3772. if (copy_from_user(&com,rq->ifr_data,sizeof(com)))
  3773. rc = -EFAULT;
  3774. else if (copy_to_user(com.data,(char *)&val,sizeof(val)))
  3775. rc = -EFAULT;
  3776. }
  3777. break;
  3778. case AIROIOCTL:
  3779. #ifdef AIROOLDIOCTL
  3780. case AIROOLDIOCTL:
  3781. #endif
  3782. /* Get the command struct and hand it off for evaluation by
  3783.  * the proper subfunction
  3784.  */
  3785. {
  3786. aironet_ioctl com;
  3787. if (copy_from_user(&com,rq->ifr_data,sizeof(com))) {
  3788. rc = -EFAULT;
  3789. break;
  3790. }
  3791. /* Seperate R/W functions bracket legality here
  3792.  */
  3793. if ( com.command <= AIROGSTATSD32 )
  3794. rc = readrids(dev,&com);
  3795. else if ( com.command >= AIROPCAP && com.command <= AIROPLEAPUSR )
  3796. rc = writerids(dev,&com);
  3797. else if ( com.command >= AIROFLSHRST && com.command <= AIRORESTART )
  3798. rc = flashcard(dev,&com);
  3799. else
  3800. rc = -EINVAL;      /* Bad command in ioctl */
  3801. }
  3802. break;
  3803. #endif /* CISCO_EXT */
  3804. // All other calls are currently unsupported
  3805. default:
  3806. rc = -EOPNOTSUPP;
  3807. }
  3808. #ifdef WIRELESS_EXT
  3809. /* Some of the "SET" function may have modified some of the
  3810.  * parameters. It's now time to commit them in the card */
  3811. if(local->need_commit) {
  3812. /* A classical optimisation here is to not commit any change
  3813.  * if the card is not "opened". This is what we do in
  3814.  * wvlan_cs (see for details).
  3815.  * For that, we would need to have the config RID saved in
  3816.  * the airo_info struct and make sure to not re-read it if
  3817.  * local->need_commit != 0. Then, you need to patch "open"
  3818.  * to do the final commit of all parameters...
  3819.  * Jean II */
  3820. Resp rsp;
  3821. disable_MAC(local);
  3822. local->config = config; /* ???? config is local !!! */
  3823. checkThrottle(&config);
  3824. writeConfigRid(local, &config);
  3825. enable_MAC(local, &rsp);
  3826. local->need_commit = 0;
  3827. }
  3828. #endif /* WIRELESS_EXT */
  3829. return(rc);
  3830. }
  3831. #ifdef WIRELESS_EXT
  3832. /*
  3833.  * Get the Wireless stats out of the driver
  3834.  * Note : irq and spinlock protection will occur in the subroutines
  3835.  *
  3836.  * TODO :
  3837.  * o Check if work in Ad-Hoc mode (otherwise, use SPY, as in wvlan_cs)
  3838.  * o Find the noise level
  3839.  *
  3840.  * Jean
  3841.  */
  3842. struct iw_statistics *airo_get_wireless_stats(struct net_device *dev)
  3843. {
  3844. struct airo_info *local = (struct airo_info*) dev->priv;
  3845. StatusRid status_rid;
  3846. StatsRid stats_rid;
  3847. u32 *vals = stats_rid.vals;
  3848. /* Get stats out of the card */
  3849. readStatusRid(local, &status_rid);
  3850. readStatsRid(local, &stats_rid, RID_STATS);
  3851. /* The status */
  3852. local->wstats.status = status_rid.mode;
  3853. /* Signal quality and co. But where is the noise level ??? */
  3854. local->wstats.qual.qual = status_rid.signalQuality;
  3855. if (local->rssi)
  3856. local->wstats.qual.level = 0x100 - local->rssi[status_rid.sigQuality].rssidBm;
  3857. else
  3858. local->wstats.qual.level = (status_rid.normalizedSignalStrength + 321) / 2;
  3859. local->wstats.qual.noise = 0;
  3860. local->wstats.qual.updated = 3;
  3861. /* Packets discarded in the wireless adapter due to wireless
  3862.  * specific problems */
  3863. local->wstats.discard.nwid = vals[56] + vals[57] + vals[58];/* SSID Mismatch */
  3864. local->wstats.discard.code = vals[6];/* RxWepErr */
  3865. #if WIRELESS_EXT > 11
  3866. local->wstats.discard.fragment = vals[30];
  3867. local->wstats.discard.retries = vals[10];
  3868. local->wstats.discard.misc = vals[1] + vals[32];
  3869. local->wstats.miss.beacon = vals[34];
  3870. #else /* WIRELESS_EXT > 11 */
  3871. local->wstats.discard.misc = vals[1] + vals[30] + vals[32];
  3872. #endif /* WIRELESS_EXT > 11 */
  3873. return (&local->wstats);
  3874. }
  3875. #endif /* WIRELESS_EXT */
  3876. #ifdef CISCO_EXT
  3877. /*
  3878.  * This just translates from driver IOCTL codes to the command codes to
  3879.  * feed to the radio's host interface. Things can be added/deleted
  3880.  * as needed.  This represents the READ side of control I/O to
  3881.  * the card
  3882.  */
  3883. static int readrids(struct net_device *dev, aironet_ioctl *comp) {
  3884. unsigned short ridcode;
  3885. unsigned char iobuf[2048];
  3886. switch(comp->command)
  3887. {
  3888. case AIROGCAP:      ridcode = RID_CAPABILITIES; break;
  3889. case AIROGCFG:      ridcode = RID_CONFIG;       break;
  3890. case AIROGSLIST:    ridcode = RID_SSID;         break;
  3891. case AIROGVLIST:    ridcode = RID_APLIST;       break;
  3892. case AIROGDRVNAM:   ridcode = RID_DRVNAME;      break;
  3893. case AIROGEHTENC:   ridcode = RID_ETHERENCAP;   break;
  3894. case AIROGWEPKTMP:  ridcode = RID_WEP_TEMP;
  3895. /* Only super-user can read WEP keys */
  3896. if (!capable(CAP_NET_ADMIN))
  3897. return -EPERM;
  3898. break;
  3899. case AIROGWEPKNV:   ridcode = RID_WEP_PERM;
  3900. /* Only super-user can read WEP keys */
  3901. if (!capable(CAP_NET_ADMIN))
  3902. return -EPERM;
  3903. break;
  3904. case AIROGSTAT:     ridcode = RID_STATUS;       break;
  3905. case AIROGSTATSD32: ridcode = RID_STATSDELTA;   break;
  3906. case AIROGSTATSC32: ridcode = RID_STATS;        break;
  3907. default:
  3908. return -EINVAL;
  3909. break;
  3910. }
  3911. PC4500_readrid((struct airo_info *)dev->priv,ridcode,iobuf,sizeof(iobuf));
  3912. /* get the count of bytes in the rid  docs say 1st 2 bytes is it.
  3913.  * then return it to the user
  3914.  * 9/22/2000 Honor user given length
  3915.  */
  3916. if (copy_to_user(comp->data, iobuf,
  3917.  min((int)comp->len, (int)sizeof(iobuf))))
  3918. return -EFAULT;
  3919. return 0;
  3920. }
  3921. /*
  3922.  * Danger Will Robinson write the rids here
  3923.  */
  3924. static int writerids(struct net_device *dev, aironet_ioctl *comp) {
  3925. int  ridcode;
  3926. Resp      rsp;
  3927. static int (* writer)(struct airo_info *, u16 rid, const void *, int);
  3928. unsigned char iobuf[2048];
  3929. /* Only super-user can write RIDs */
  3930. if (!capable(CAP_NET_ADMIN))
  3931. return -EPERM;
  3932. ridcode = 0;
  3933. writer = do_writerid;
  3934. switch(comp->command)
  3935. {
  3936. case AIROPSIDS:     ridcode = RID_SSID;         break;
  3937. case AIROPCAP:      ridcode = RID_CAPABILITIES; break;
  3938. case AIROPAPLIST:   ridcode = RID_APLIST;       break;
  3939. case AIROPCFG:      ridcode = RID_CONFIG;       break;
  3940. case AIROPWEPKEYNV: ridcode = RID_WEP_PERM;     break;
  3941. case AIROPLEAPUSR:  ridcode = RID_LEAPUSERNAME; break;
  3942. case AIROPLEAPPWD:  ridcode = RID_LEAPPASSWORD; break;
  3943. case AIROPWEPKEY:   ridcode = RID_WEP_TEMP; writer = PC4500_writerid;
  3944. break;
  3945. /* this is not really a rid but a command given to the card
  3946.  * same with MAC off
  3947.  */
  3948. case AIROPMACON:
  3949. if (enable_MAC(dev->priv, &rsp) != 0)
  3950. return -EIO;
  3951. return 0;
  3952. /*
  3953.  * Evidently this code in the airo driver does not get a symbol
  3954.  * as disable_MAC. it's probably so short the compiler does not gen one.
  3955.  */
  3956. case AIROPMACOFF:
  3957. disable_MAC(dev->priv);
  3958. return 0;
  3959. /* This command merely clears the counts does not actually store any data
  3960.  * only reads rid. But as it changes the cards state, I put it in the
  3961.  * writerid routines.
  3962.  */
  3963. case AIROPSTCLR:
  3964. ridcode = RID_STATSDELTACLEAR;
  3965. PC4500_readrid(dev->priv,ridcode,iobuf,sizeof(iobuf));
  3966. if (copy_to_user(comp->data, iobuf,
  3967.  min((int)comp->len, (int)sizeof(iobuf))))
  3968. return -EFAULT;
  3969. return 0;
  3970. default:
  3971. return -EOPNOTSUPP; /* Blarg! */
  3972. }
  3973. if(comp->len > sizeof(iobuf))
  3974. return -EINVAL;
  3975. if (copy_from_user(iobuf,comp->data,comp->len))
  3976. return -EFAULT;
  3977. if((*writer)((struct airo_info *)dev->priv, ridcode, iobuf,comp->len))
  3978. return -EIO;
  3979. return 0;
  3980. }
  3981. /*****************************************************************************
  3982.  * Ancillary flash / mod functions much black magic lurkes here              *
  3983.  *****************************************************************************
  3984.  */
  3985. /*
  3986.  * Flash command switch table
  3987.  */
  3988. int flashcard(struct net_device *dev, aironet_ioctl *comp) {
  3989. int z;
  3990. int cmdreset(struct airo_info *);
  3991. int setflashmode(struct airo_info *);
  3992. int flashgchar(struct airo_info *,int,int);
  3993. int flashpchar(struct airo_info *,int,int);
  3994. int flashputbuf(struct airo_info *);
  3995. int flashrestart(struct airo_info *,struct net_device *);
  3996. /* Only super-user can modify flash */
  3997. if (!capable(CAP_NET_ADMIN))
  3998. return -EPERM;
  3999. switch(comp->command)
  4000. {
  4001. case AIROFLSHRST:
  4002. return cmdreset((struct airo_info *)dev->priv);
  4003. case AIROFLSHSTFL:
  4004. if (!((struct airo_info *)dev->priv)->flash &&
  4005. (((struct airo_info *)dev->priv)->flash = kmalloc (FLASHSIZE, GFP_KERNEL)) == NULL)
  4006. return -ENOMEM;
  4007. return setflashmode((struct airo_info *)dev->priv);
  4008. case AIROFLSHGCHR: /* Get char from aux */
  4009. if(comp->len != sizeof(int))
  4010. return -EINVAL;
  4011. if (copy_from_user(&z,comp->data,comp->len))
  4012. return -EFAULT;
  4013. return flashgchar((struct airo_info *)dev->priv,z,8000);
  4014. case AIROFLSHPCHR: /* Send char to card. */
  4015. if(comp->len != sizeof(int))
  4016. return -EINVAL;
  4017. if (copy_from_user(&z,comp->data,comp->len))
  4018. return -EFAULT;
  4019. return flashpchar((struct airo_info *)dev->priv,z,8000);
  4020. case AIROFLPUTBUF: /* Send 32k to card */
  4021. if (!((struct airo_info *)dev->priv)->flash)
  4022. return -ENOMEM;
  4023. if(comp->len > FLASHSIZE)
  4024. return -EINVAL;
  4025. if(copy_from_user(((struct airo_info *)dev->priv)->flash,comp->data,comp->len))
  4026. return -EFAULT;
  4027. flashputbuf((struct airo_info *)dev->priv);
  4028. return 0;
  4029. case AIRORESTART:
  4030. if(flashrestart((struct airo_info *)dev->priv,dev))
  4031. return -EIO;
  4032. return 0;
  4033. }
  4034. return -EINVAL;
  4035. }
  4036. #define FLASH_COMMAND  0x7e7e
  4037. /*
  4038.  * STEP 1)
  4039.  * Disable MAC and do soft reset on
  4040.  * card.
  4041.  */
  4042. int cmdreset(struct airo_info *ai) {
  4043. disable_MAC(ai);
  4044. if(!waitbusy (ai)){
  4045. printk(KERN_INFO "Waitbusy hang before RESETn");
  4046. return -EBUSY;
  4047. }
  4048. OUT4500(ai,COMMAND,CMD_SOFTRESET);
  4049. set_current_state (TASK_UNINTERRUPTIBLE);
  4050. schedule_timeout (HZ);          /* WAS 600 12/7/00 */
  4051. if(!waitbusy (ai)){
  4052. printk(KERN_INFO "Waitbusy hang AFTER RESETn");
  4053. return -EBUSY;
  4054. }
  4055. return 0;
  4056. }
  4057. /* STEP 2)
  4058.  * Put the card in legendary flash
  4059.  * mode
  4060.  */
  4061. int setflashmode (struct airo_info *ai) {
  4062. OUT4500(ai, SWS0, FLASH_COMMAND);
  4063. OUT4500(ai, SWS1, FLASH_COMMAND);
  4064. OUT4500(ai, SWS0, FLASH_COMMAND);
  4065. OUT4500(ai, COMMAND,0x10);
  4066. set_current_state (TASK_UNINTERRUPTIBLE);
  4067. schedule_timeout (HZ/2); /* 500ms delay */
  4068. if(!waitbusy(ai)) {
  4069. printk(KERN_INFO "Waitbusy hang after setflash moden");
  4070. return -EIO;
  4071. }
  4072. return 0;
  4073. }
  4074. /* Put character to SWS0 wait for dwelltime
  4075.  * x 50us for  echo .
  4076.  */
  4077. int flashpchar(struct airo_info *ai,int byte,int dwelltime) {
  4078. int echo;
  4079. int waittime;
  4080. byte |= 0x8000;
  4081. if(dwelltime == 0 )
  4082. dwelltime = 200;
  4083. waittime=dwelltime;
  4084. /* Wait for busy bit d15 to go false indicating buffer empty */
  4085. while ((IN4500 (ai, SWS0) & 0x8000) && waittime > 0) {
  4086. udelay (50);
  4087. waittime -= 50;
  4088. }
  4089. /* timeout for busy clear wait */
  4090. if(waittime <= 0 ){
  4091. printk(KERN_INFO "flash putchar busywait timeout! n");
  4092. return -EBUSY;
  4093. }
  4094. /* Port is clear now write byte and wait for it to echo back */
  4095. do {
  4096. OUT4500(ai,SWS0,byte);
  4097. udelay(50);
  4098. dwelltime -= 50;
  4099. echo = IN4500(ai,SWS1);
  4100. } while (dwelltime >= 0 && echo != byte);
  4101. OUT4500(ai,SWS1,0);
  4102. return (echo == byte) ? 0 : -EIO;
  4103. }
  4104. /*
  4105.  * Get a character from the card matching matchbyte
  4106.  * Step 3)
  4107.  */
  4108. int flashgchar(struct airo_info *ai,int matchbyte,int dwelltime){
  4109. int           rchar;
  4110. unsigned char rbyte=0;
  4111. do {
  4112. rchar = IN4500(ai,SWS1);
  4113. if(dwelltime && !(0x8000 & rchar)){
  4114. dwelltime -= 10;
  4115. mdelay(10);
  4116. continue;
  4117. }
  4118. rbyte = 0xff & rchar;
  4119. if( (rbyte == matchbyte) && (0x8000 & rchar) ){
  4120. OUT4500(ai,SWS1,0);
  4121. return 0;
  4122. }
  4123. if( rbyte == 0x81 || rbyte == 0x82 || rbyte == 0x83 || rbyte == 0x1a || 0xffff == rchar)
  4124. break;
  4125. OUT4500(ai,SWS1,0);
  4126. }while(dwelltime > 0);
  4127. return -EIO;
  4128. }
  4129. /*
  4130.  * Transfer 32k of firmware data from user buffer to our buffer and
  4131.  * send to the card
  4132.  */
  4133. int flashputbuf(struct airo_info *ai){
  4134. int            nwords;
  4135. /* Write stuff */
  4136. OUT4500(ai,AUXPAGE,0x100);
  4137. OUT4500(ai,AUXOFF,0);
  4138. for(nwords=0;nwords != FLASHSIZE / 2;nwords++){
  4139. OUT4500(ai,AUXDATA,ai->flash[nwords] & 0xffff);
  4140. }
  4141. OUT4500(ai,SWS0,0x8000);
  4142. return 0;
  4143. }
  4144. /*
  4145.  *
  4146.  */
  4147. int flashrestart(struct airo_info *ai,struct net_device *dev){
  4148. int    i,status;
  4149. set_current_state (TASK_UNINTERRUPTIBLE);
  4150. schedule_timeout (HZ);          /* Added 12/7/00 */
  4151. status = setup_card(ai, dev->dev_addr,&((struct airo_info*)dev->priv)->config);
  4152. for( i = 0; i < MAX_FIDS; i++ ) {
  4153. ai->fids[i] = transmit_allocate( ai, 2312 );
  4154. }
  4155. set_current_state (TASK_UNINTERRUPTIBLE);
  4156. schedule_timeout (HZ);          /* Added 12/7/00 */
  4157. return status;
  4158. }
  4159. #endif /* CISCO_EXT */
  4160. /*
  4161.     This program is free software; you can redistribute it and/or
  4162.     modify it under the terms of the GNU General Public License
  4163.     as published by the Free Software Foundation; either version 2
  4164.     of the License, or (at your option) any later version.
  4165.     This program is distributed in the hope that it will be useful,
  4166.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  4167.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  4168.     GNU General Public License for more details.
  4169.     In addition:
  4170.     Redistribution and use in source and binary forms, with or without
  4171.     modification, are permitted provided that the following conditions
  4172.     are met:
  4173.     1. Redistributions of source code must retain the above copyright
  4174.        notice, this list of conditions and the following disclaimer.
  4175.     2. Redistributions in binary form must reproduce the above copyright
  4176.        notice, this list of conditions and the following disclaimer in the
  4177.        documentation and/or other materials provided with the distribution.
  4178.     3. The name of the author may not be used to endorse or promote
  4179.        products derived from this software without specific prior written
  4180.        permission.
  4181.     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  4182.     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  4183.     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  4184.     ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  4185.     INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  4186.     (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  4187.     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  4188.     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  4189.     STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  4190.     IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  4191.     POSSIBILITY OF SUCH DAMAGE.
  4192. */
  4193. module_init(airo_init_module);
  4194. module_exit(airo_cleanup_module);