]> git.decadent.org.uk Git - ap-utils.git/blob - src/nwn_latest.c
Update config.{sub,guess} in the right place at build time - closes: #534825
[ap-utils.git] / src / nwn_latest.c
1 /*
2  *      latest.c from Access Point SNMP Utils for Linux
3  *
4  * Copyright (c) 2002 Roman Festchook <roma at polesye dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License Version 2 from
8  * June 1991 as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  */
20 #include <string.h>
21 #include <unistd.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25 #include "ap-utils.h"
26
27 extern WINDOW *main_sub;
28
29 #define OID_NUM 8
30 #define DESCR _("Reason: %u Station: %02X%02X%02X%02X%02X%02X")
31
32 void latest()
33 {
34     char oid_dot11DisassociateReason[] =
35         { 0x2a, 0x86, 0x48, 0xce, 0x34, 0x01, 0x01, 0x01, 0x0f, 0x01 };
36     char oid_dot11DisassociateStation[] =
37         { 0x2a, 0x86, 0x48, 0xce, 0x34, 0x01, 0x01, 0x01, 0x10, 0x01 };
38     char oid_dot11DeauthenticateReason[] =
39         { 0x2a, 0x86, 0x48, 0xce, 0x34, 0x01, 0x01, 0x01, 0x11, 0x01 };
40     char oid_dot11DeauthenticateStation[] =
41         { 0x2a, 0x86, 0x48, 0xce, 0x34, 0x01, 0x01, 0x01, 0x12, 0x01 };
42     char oid_dot11AuthenticateFailStatus[] =
43         { 0x2a, 0x86, 0x48, 0xce, 0x34, 0x01, 0x01, 0x01, 0x13, 0x01 };
44     char oid_dot11AuthenticateFailStation[] =
45         { 0x2a, 0x86, 0x48, 0xce, 0x34, 0x01, 0x01, 0x01, 0x14, 0x01 };
46     char oid_secLastError[] =
47         { 0x2b, 0x06, 0x01, 0x04, 0x01, 0x87, 0x29, 0x03, 0x01, 0x03, 0x02,
48         0x03, 0x00
49     };
50     char oid_secLastErrorAddress[] =
51         { 0x2b, 0x06, 0x01, 0x04, 0x01, 0x87, 0x29, 0x03, 0x01, 0x03, 0x02,
52         0x04, 0x00
53     };
54     char message[1024];
55
56     int i;
57     varbind varbinds[OID_NUM];
58     noecho();
59     print_help(WAIT_RET);
60
61     for (i = 0; i < OID_NUM; i++) {
62         varbinds[i].value = oid_dot11DisassociateReason;
63         varbinds[i].len_val = 0;
64         varbinds[i].type = NULL_VALUE;
65     }
66     varbinds[0].oid = oid_dot11DisassociateReason;
67     varbinds[0].len_oid = sizeof(oid_dot11DisassociateReason);
68     varbinds[1].oid = oid_dot11DisassociateStation;
69     varbinds[1].len_oid = sizeof(oid_dot11DisassociateStation);
70     varbinds[2].oid = oid_dot11DeauthenticateReason;
71     varbinds[2].len_oid = sizeof(oid_dot11DeauthenticateReason);
72     varbinds[3].oid = oid_dot11DeauthenticateStation;
73     varbinds[3].len_oid = sizeof(oid_dot11DeauthenticateStation);
74     varbinds[4].oid = oid_dot11AuthenticateFailStatus;
75     varbinds[4].len_oid = sizeof(oid_dot11AuthenticateFailStatus);
76     varbinds[5].oid = oid_dot11AuthenticateFailStation;
77     varbinds[5].len_oid = sizeof(oid_dot11AuthenticateFailStation);
78     varbinds[6].oid = oid_secLastError;
79     varbinds[6].len_oid = sizeof(oid_secLastError);
80     varbinds[7].oid = oid_secLastErrorAddress;
81     varbinds[7].len_oid = sizeof(oid_secLastErrorAddress);
82
83     if (snmp(varbinds, OID_NUM, GET) < OID_NUM) {
84         print_help(ERR_RET);
85         goto exit;
86     }
87
88     print_top(NULL, _("Latest Events"));
89     mvwaddstr(main_sub, 1, 0, _("Disassociate:"));
90     sprintf(message, DESCR,
91             *varbinds[0].value,
92             varbinds[1].value[0] & 0xFF, varbinds[1].value[1] & 0xFF,
93             varbinds[1].value[2] & 0xFF, varbinds[1].value[3] & 0xFF,
94             varbinds[1].value[4] & 0xFF, varbinds[1].value[5] & 0xFF);
95     mvwaddstr(main_sub, 2, 0, message);
96     mvwaddstr(main_sub, 4, 0, _("Deauthenticate:"));
97     sprintf(message, DESCR,
98             *varbinds[2].value,
99             varbinds[3].value[0] & 0xFF, varbinds[3].value[1] & 0xFF,
100             varbinds[3].value[2] & 0xFF, varbinds[3].value[3] & 0xFF,
101             varbinds[3].value[4] & 0xFF, varbinds[3].value[5] & 0xFF);
102     mvwaddstr(main_sub, 5, 0, message);
103     mvwaddstr(main_sub, 7, 0, _("Authenticate Fail:"));
104     sprintf(message, DESCR, *varbinds[4].value,
105             varbinds[5].value[0] & 0xFF, varbinds[5].value[1] & 0xFF,
106             varbinds[5].value[2] & 0xFF, varbinds[5].value[3] & 0xFF,
107             varbinds[5].value[4] & 0xFF, varbinds[5].value[5] & 0xFF);
108     mvwaddstr(main_sub, 8, 0, message);
109     mvwaddstr(main_sub, 10, 0, _("Last error:"));
110     mvwaddstr(main_sub, 11, 0, _("Error:"));
111     i = 0;
112     while (varbinds[6].len_val > i && *(varbinds[6].value + i))
113         mvwaddch(main_sub, 11, i + 15, *(varbinds[6].value + i++));
114
115     sprintf(message, "%s%02X%02X%02X%02X%02X%02X", MAC,
116             varbinds[7].value[0] & 0xFF, varbinds[7].value[1] & 0xFF,
117             varbinds[7].value[2] & 0xFF, varbinds[7].value[3] & 0xFF,
118             varbinds[7].value[4] & 0xFF, varbinds[7].value[5] & 0xFF);
119     mvwaddstr(main_sub, 12, 0, message);
120
121     wrefresh(main_sub);
122
123     print_help(ANY_KEY);
124   exit:
125     getch();
126     print_top(NULL, NULL);
127     clear_main(0);
128 }