author | max <max> | 2003-02-13 10:57:19 (UTC) |
---|---|---|
committer | max <max> | 2003-02-13 10:57:19 (UTC) |
commit | 8402aa0e5c4f55682936a14353ed97611d0e2998 (patch) (unidiff) | |
tree | d1c644aefdb49259e8370fd9937fe0d2fe6a95c6 | |
parent | 0d317f7b6b3efbba86ad6d89c2a512b8f30ed885 (diff) | |
download | opie-8402aa0e5c4f55682936a14353ed97611d0e2998.zip opie-8402aa0e5c4f55682936a14353ed97611d0e2998.tar.gz opie-8402aa0e5c4f55682936a14353ed97611d0e2998.tar.bz2 |
Wireless extension < 14
-rw-r--r-- | noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc b/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc index a512bc5..a57645b 100644 --- a/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc +++ b/noncore/net/wellenreiter/libwellenreiter/source/cardmode.cc | |||
@@ -53,50 +53,78 @@ int card_into_monitormode (pcap_t **orighandle, const char *device, int cardtype | |||
53 | return 0; | 53 | return 0; |
54 | } | 54 | } |
55 | } | 55 | } |
56 | else if (cardtype == CARD_TYPE_HOSTAP) | 56 | else if (cardtype == CARD_TYPE_HOSTAP) |
57 | { | 57 | { |
58 | #if WIRELESS_EXT > 14 | 58 | #if WIRELESS_EXT > 14 |
59 | // IW_MODE_MONITOR was implemented in Wireless Extensions Version 15 | 59 | // IW_MODE_MONITOR was implemented in Wireless Extensions Version 15 |
60 | int skfd; | 60 | int skfd; |
61 | skfd = socket(AF_INET, SOCK_STREAM, 0); | 61 | skfd = socket(AF_INET, SOCK_STREAM, 0); |
62 | struct iwreq wrq; | 62 | struct iwreq wrq; |
63 | wrq.u.mode = IW_MODE_MONITOR; | 63 | wrq.u.mode = IW_MODE_MONITOR; |
64 | 64 | ||
65 | if(iw_set_ext(skfd,(char *) device,SIOCSIWMODE,&wrq)<0) | 65 | if(iw_set_ext(skfd,(char *) device,SIOCSIWMODE,&wrq)<0) |
66 | { | 66 | { |
67 | wl_logerr("Could not set hostap card %s to raw mode, check cardtype", device); | 67 | wl_logerr("Could not set hostap card %s to raw mode, check cardtype", device); |
68 | return 0; | 68 | return 0; |
69 | } | 69 | } |
70 | else | 70 | else |
71 | { | 71 | { |
72 | wl_loginfo("Successfully set hostap card %s into raw mode",device); | 72 | wl_loginfo("Successfully set hostap card %s into raw mode",device); |
73 | return 1; | 73 | return 1; |
74 | } | 74 | } |
75 | return 1; | 75 | return 1; |
76 | #else | 76 | #else |
77 | #warning Hi _MAX_, please use a system call for hostap with wireless extensions < 15 | 77 | // Wireless Extensions < Version 15 need iwpriv commandos for monitoring |
78 | // TODO: Implement switching HOSTAP into monitor mode with system call | 78 | int fd; |
79 | //Wireless tools structure for the iocalls | ||
80 | struct iwreq ireq; | ||
81 | int *ptr; | ||
82 | /* Socket needed to use the iocall to */ | ||
83 | fd = socket(AF_INET, SOCK_STREAM, 0); | ||
84 | |||
85 | if ( fd == -1 ) { | ||
86 | return -1; | ||
87 | } | ||
88 | |||
89 | ptr = (int *) ireq.u.name; | ||
90 | // This is the monitor mode for 802.11 non-prism header | ||
91 | ptr[0] = 2; | ||
92 | strcpy(ireq.ifr_ifrn.ifrn_name, device); | ||
93 | if (ioctl( fd, SIOCIWFIRSTPRIV + 4, &ireq)==0) | ||
94 | { | ||
95 | /* All was fine... */ | ||
96 | close(fd); | ||
97 | wl_loginfo("Set hostap card %s into monitormode",device); | ||
98 | return 1; | ||
99 | } | ||
100 | else | ||
101 | { | ||
102 | /* iocall does not work */ | ||
103 | close(fd); | ||
104 | wl_logerr("Could not set hostap card %s into monitormode, check cardtype",device); | ||
105 | return 0; | ||
106 | } | ||
79 | #endif | 107 | #endif |
80 | } | 108 | } |
81 | else if (cardtype == CARD_TYPE_ORINOCCO ) | 109 | else if (cardtype == CARD_TYPE_ORINOCCO ) |
82 | { | 110 | { |
83 | if (!card_set_channel (device, 1, CARD_TYPE_ORINOCCO)) | 111 | if (!card_set_channel (device, 1, CARD_TYPE_ORINOCCO)) |
84 | { | 112 | { |
85 | wl_logerr("Could not set %s in raw mode, check cardtype", device); | 113 | wl_logerr("Could not set %s in raw mode, check cardtype", device); |
86 | return 0; | 114 | return 0; |
87 | } | 115 | } |
88 | else | 116 | else |
89 | { | 117 | { |
90 | wl_loginfo("Successfully set %s into raw mode",device); | 118 | wl_loginfo("Successfully set %s into raw mode",device); |
91 | } | 119 | } |
92 | } | 120 | } |
93 | 121 | ||
94 | /* Setting the promiscous and up flag to the interface */ | 122 | /* Setting the promiscous and up flag to the interface */ |
95 | if (!card_check_rfmon_datalink(device)) | 123 | if (!card_check_rfmon_datalink(device)) |
96 | { | 124 | { |
97 | wl_logerr("Cannot set interface to rfmon mode"); | 125 | wl_logerr("Cannot set interface to rfmon mode"); |
98 | return 0; | 126 | return 0; |
99 | } | 127 | } |
100 | else | 128 | else |
101 | { | 129 | { |
102 | wl_loginfo("Interface set to rfmon mode"); | 130 | wl_loginfo("Interface set to rfmon mode"); |