forked from renbaoke/h3c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
executable file
·130 lines (111 loc) · 3.03 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
* main.c
*
* Copyright 2015 BK <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*
*/
#include <signal.h>
#include "echo.h"
#include "h3c.h"
#include "handler.h"
void usage(FILE *stream);
int main(int argc, char **argv) {
int ch;
char *interface = NULL;
char *username = NULL;
char *password = NULL;
while ((ch = getopt(argc, argv, "i:u:p:h")) != -1) {
switch (ch) {
case 'i':
interface = optarg;
break;
case 'u':
username = optarg;
break;
case 'p':
password = optarg;
break;
case 'h':
usage(stdout);
exit(0);
default:
usage(stderr);
exit(-1);
}
}
/* must run as root */
if (geteuid() != 0) {
fprintf(stderr, "Run as root, please.\n");
exit(-1);
}
if (interface == NULL || username == NULL) {
usage(stderr);
exit(-1);
}
if (h3c_set_username(username) != SUCCESS) {
fprintf(stderr, "Failed to set username.\n");
exit(-1);
}
if (password == NULL) {
if ((password = (char *) malloc(PWD_LEN)) == NULL) {
fprintf(stderr, "Failed to malloc: %s\n", strerror(errno));
exit(-1);
}
printf("Password for %s:", username);
signal(SIGINT, exit_with_echo_on);
signal(SIGTERM, exit_with_echo_on);
echo_off();
fgets(password, PWD_LEN - 1, stdin);
echo_on();
/* replace '\n' with '\0', as it is NOT part of password */
password[strlen(password) - 1] = '\0';
putchar('\n');
}
if (h3c_set_password(password) != SUCCESS) {
fprintf(stderr, "Failed to set password.\n");
free(password);
exit(-1);
}
free(password);
if (h3c_init(interface) != SUCCESS) {
fprintf(stderr, "Failed to initialize: %s\n", strerror(errno));
exit(-1);
}
if (h3c_start() != SUCCESS) {
fprintf(stderr, "Failed to start: %s\n", strerror(errno));
exit(-1);
}
signal(SIGINT, exit_handler);
signal(SIGTERM, exit_handler);
for (;;) {
if (h3c_response(success_handler, failure_handler, unkown_eapol_handler,
unkown_eap_handler, got_response_handler) != SUCCESS) {
fprintf(stderr, "Failed to response: %s\n", strerror(errno));
exit(-1);
}
}
return 0;
}
void usage(FILE *stream) {
fprintf(stream, "Usage: h3c [OPTION]...\n");
fprintf(stream, " -i <interface>\tspecify interface, required\n");
fprintf(stream, " -u <username>\t\tspecify username, required\n");
fprintf(stream, " -p <password>\t\tspecify password, optional\n");
fprintf(stream, " -h\t\t\tshow this message\n");
}