author | mjm <mjm> | 2002-12-31 12:38:28 (UTC) |
---|---|---|
committer | mjm <mjm> | 2002-12-31 12:38:28 (UTC) |
commit | 24fce03c32664c02e1acd547375d144260ec5cb7 (patch) (unidiff) | |
tree | cacb33ddc2bc6979d84de976a3e8cf9e9c1f9f8a | |
parent | 44a0af99df02feb01c9879506e4d34d96afe046b (diff) | |
download | opie-24fce03c32664c02e1acd547375d144260ec5cb7.zip opie-24fce03c32664c02e1acd547375d144260ec5cb7.tar.gz opie-24fce03c32664c02e1acd547375d144260ec5cb7.tar.bz2 |
updated to new library functions and changes.
Now uses wl_types.hh from lib.
-rw-r--r-- | noncore/net/wellenreiter/daemon/source/daemon.cc | 15 | ||||
-rw-r--r-- | noncore/net/wellenreiter/daemon/source/daemon.hh | 1 |
2 files changed, 10 insertions, 6 deletions
diff --git a/noncore/net/wellenreiter/daemon/source/daemon.cc b/noncore/net/wellenreiter/daemon/source/daemon.cc index 9c34115..7c3f8a8 100644 --- a/noncore/net/wellenreiter/daemon/source/daemon.cc +++ b/noncore/net/wellenreiter/daemon/source/daemon.cc | |||
@@ -6,18 +6,19 @@ | |||
6 | 6 | ||
7 | #include "config.hh" | 7 | #include "config.hh" |
8 | #include "daemon.hh" | 8 | #include "daemon.hh" |
9 | 9 | ||
10 | /* Main function of wellenreiterd */ | 10 | /* Main function of wellenreiterd */ |
11 | int main(int argc, char **argv) | 11 | int main(int argc, char **argv) |
12 | { | 12 | { |
13 | int sock, maxfd, retval, card_type; | 13 | int sock, maxfd, retval, card_type; |
14 | char buffer[128], sniffer_device[6]; | 14 | char buffer[WL_SOCKBUF], sniffer_device[6]; |
15 | struct pcap_pkthdr header; | 15 | struct pcap_pkthdr header; |
16 | struct sockaddr_in saddr; | ||
16 | pcap_t *handletopcap; | 17 | pcap_t *handletopcap; |
17 | const unsigned char *packet; | 18 | const unsigned char *packet; |
18 | 19 | ||
19 | fd_set rset; | 20 | fd_set rset; |
20 | 21 | ||
21 | fprintf(stderr, "wellenreiterd %s\n\n", VERSION); | 22 | fprintf(stderr, "wellenreiterd %s\n\n", VERSION); |
22 | fprintf(stderr, "(c) 2002 by M-M-M\n\n"); | 23 | fprintf(stderr, "(c) 2002 by M-M-M\n\n"); |
23 | 24 | ||
@@ -50,54 +51,56 @@ int main(int argc, char **argv) | |||
50 | #ifdef HAVE_PCAP_NONBLOCK | 51 | #ifdef HAVE_PCAP_NONBLOCK |
51 | pcap_setnonblock(handletopcap, 1, NULL); | 52 | pcap_setnonblock(handletopcap, 1, NULL); |
52 | #endif | 53 | #endif |
53 | 54 | ||
54 | /* getting the datalink type */ | 55 | /* getting the datalink type */ |
55 | retval = pcap_datalink(handletopcap); | 56 | retval = pcap_datalink(handletopcap); |
56 | if (retval != DLT_IEEE802_11) /* Rawmode is IEEE802_11 */ | 57 | if (retval != DLT_IEEE802_11) /* Rawmode is IEEE802_11 */ |
57 | { | 58 | { |
58 | wl_loginfo("Interface %s does not work in the correct 802.11 raw mode", | 59 | wl_logerr("Interface %s does not work in the correct 802.11 raw mode", |
59 | sniffer_device); | 60 | sniffer_device); |
60 | pcap_close(handletopcap); | 61 | pcap_close(handletopcap); |
61 | return 0; | 62 | exit(-1);; |
62 | } | 63 | } |
63 | wl_loginfo("Your successfully listen on %s in 802.11 raw mode", sniffer_device); | 64 | wl_loginfo("Your successfully listen on %s in 802.11 raw mode", sniffer_device); |
64 | //////////////////////////////////////// | 65 | //////////////////////////////////////// |
65 | 66 | ||
66 | /* Setup socket for incoming commands */ | 67 | /* Setup socket for incoming commands */ |
67 | if((sock=wl_setupsock(DAEMONADDR, DAEMONPORT)) < 0) | 68 | if((sock=wl_setupsock(DAEMONADDR, DAEMONPORT, saddr)) < 0) |
68 | { | 69 | { |
69 | wl_logerr("Cannot setup socket"); | 70 | wl_logerr("Cannot setup socket"); |
70 | exit(-1); | 71 | exit(-1); |
71 | } | 72 | } |
72 | wl_loginfo("Set up socket '%d' for GUI communication", sock); | 73 | wl_loginfo("Set up socket '%d' for GUI communication", sock); |
73 | 74 | ||
74 | FD_ZERO(&rset); | 75 | FD_ZERO(&rset); |
75 | 76 | ||
76 | /* Start main loop */ | 77 | /* Start main loop */ |
77 | wl_loginfo("Starting main loop"); | 78 | wl_loginfo("Starting main loop"); |
78 | while(1) | 79 | while(1) |
79 | { | 80 | { |
80 | 81 | ||
81 | FD_SET(sock, &rset); | 82 | FD_SET(sock, &rset); |
82 | FD_SET(pcap_fileno(handletopcap), &rset); | 83 | FD_SET(pcap_fileno(handletopcap), &rset); |
83 | maxfd=sock + pcap_fileno(handletopcap) + 1; | 84 | |
85 | /* socket or pcap handle bigger? Will be cleaned up, have to check pcap */ | ||
86 | maxfd = (sock > pcap_fileno(handletopcap) ? sock : pcap_fileno(handletopcap)) + 1; | ||
84 | 87 | ||
85 | if(select(maxfd, &rset, NULL, NULL, NULL) < 0) | 88 | if(select(maxfd, &rset, NULL, NULL, NULL) < 0) |
86 | { | 89 | { |
87 | wl_logerr("Error calling select: %s", strerror(errno)); | 90 | wl_logerr("Error calling select: %s", strerror(errno)); |
88 | break; | 91 | break; |
89 | } | 92 | } |
90 | 93 | ||
91 | /* Got data on local socket from GUI */ | 94 | /* Got data on local socket from GUI */ |
92 | if(FD_ISSET(sock, &rset)) | 95 | if(FD_ISSET(sock, &rset)) |
93 | { | 96 | { |
94 | /* Receive data from socket */ | 97 | /* Receive data from socket */ |
95 | if((retval=wl_recv(&sock, buffer, sizeof(buffer))) < 0) | 98 | if((retval=wl_recv(&sock, saddr, buffer, sizeof(buffer))) < 0) |
96 | { | 99 | { |
97 | wl_logerr("Error trying to read: %s", strerror(errno)); | 100 | wl_logerr("Error trying to read: %s", strerror(errno)); |
98 | break; | 101 | break; |
99 | } | 102 | } |
100 | else | 103 | else |
101 | { | 104 | { |
102 | /* check type of packet and start function according to it */ | 105 | /* check type of packet and start function according to it */ |
103 | switch(retval) | 106 | switch(retval) |
diff --git a/noncore/net/wellenreiter/daemon/source/daemon.hh b/noncore/net/wellenreiter/daemon/source/daemon.hh index c55e86c..1cc3c7c 100644 --- a/noncore/net/wellenreiter/daemon/source/daemon.hh +++ b/noncore/net/wellenreiter/daemon/source/daemon.hh | |||
@@ -10,15 +10,16 @@ | |||
10 | #include <sys/socket.h> | 10 | #include <sys/socket.h> |
11 | #include <netinet/in.h> | 11 | #include <netinet/in.h> |
12 | #include <arpa/inet.h> | 12 | #include <arpa/inet.h> |
13 | #include <unistd.h> | 13 | #include <unistd.h> |
14 | #include <errno.h> | 14 | #include <errno.h> |
15 | 15 | ||
16 | #include <libwellenreiter/source/wl_sock.hh> | 16 | #include <libwellenreiter/source/wl_sock.hh> |
17 | #include <libwellenreiter/source/wl_log.hh> | 17 | #include <libwellenreiter/source/wl_log.hh> |
18 | #include <libwellenreiter/source/wl_types.hh> | ||
18 | #include <libwellenreiter/source/wl_proto.hh> | 19 | #include <libwellenreiter/source/wl_proto.hh> |
19 | #include <libwellenreiter/source/cardmode.hh> | 20 | #include <libwellenreiter/source/cardmode.hh> |
20 | #include <libwellenreiter/source/sniff.hh> | 21 | #include <libwellenreiter/source/sniff.hh> |
21 | 22 | ||
22 | void usage(void); | 23 | void usage(void); |
23 | 24 | ||
24 | #endif /* DAEMON_HH */ | 25 | #endif /* DAEMON_HH */ |