-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
233 lines (206 loc) · 7.27 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "DatabaseUtil.h"
#include <signal.h>
char* node = "oracle1";
char* NIC = "ens3";
struct PortInfo{
char* ipaddress;
int port;
char* protocol;
};
struct PortInfo makePortInfo();
void destroy_port_info(struct PortInfo*);
int port_info_equal(struct PortInfo, struct PortInfo);
int refresh(MYSQL*);
int byteSize(const char*);
void portClose(int signal);
struct PortInfo *port_infos;
char stop_process = 0; //Ctrl+Cを押したらこれが1になる
int size = 0;
char* host;
char* user;
char* password;
char* db;
int port;
int main(int argc, char *argv[]) {
printf("connecting...\n");
host = argv[1];
user = argv[2];
password = argv[3];
db = argv[4];
port = atoi(argv[5]);
NIC = argv[6];
node = argv[7];
for(int i = 0; i < argc; i++){
printf("%s\n", argv[i]);
}
if(argc != 8){
printf("引数の数が合いません。(必要数:%d個, 指定された数:%d)\n", 6, argc);
exit(1);
}
MYSQL *conn = getConnection(host, user, password, db, port);
port_infos = calloc(24, 128);
printf("done!\n");
while (1) {
signal(SIGINT, portClose);
if(conn!=NULL) {
int error = refresh(conn);
if(error==2){
if(getConnection(host, user, password, db, port) != NULL) {
mysql_close(conn);
conn = getConnection(host, user, password, db, port);
}
}
sleep(1);
if(stop_process) break;
} else{
printf("接続エラー\n");
return 0;
}
}
}
int refresh(MYSQL *conn){
struct PortInfo *latest_port_info = calloc(24, 128);
int latest_port_array_size = 0;
MYSQL_ROW row;
/*
* 1=コマンド実行時のエラー
*/
int error=0;
//データベースからデータを取得
char* command = calloc(256, 1);
sprintf(command, "SELECT * FROM %s", node);
struct Response_sql responseSql = sendCommandHasResponse(conn, command);
//情報の格納
if(conn!=NULL) {
if (responseSql.error != 1) {
while ((row = mysql_fetch_row(responseSql.response)) != NULL) {
//構造体の作成
struct PortInfo temp_data = makePortInfo();
//代入
memcpy(temp_data.ipaddress, row[1], byteSize(row[1]));
temp_data.port = atoi(row[2]);
memcpy(temp_data.protocol, row[3], byteSize(row[3]));
//配列に代入
latest_port_info[latest_port_array_size] = temp_data;
latest_port_array_size++;
}
} else error = 2;
} else error = 1;
free(command);
mysql_free_result(responseSql.response);
//データの照合
for(int i0 = 0; i0 < size; i0++){//削除されたルールをチェック
char is_equal = 0;
if(port_infos[i0].ipaddress == NULL) break;
for(int i1 = 0; i1 < latest_port_array_size; i1++){
if (!port_info_equal(port_infos[i0], latest_port_info[i1])) {
is_equal = 1;
break;
}
}
if(!is_equal) {
printf("削除:IP:%s, ポート:%d, プロトコル:%s\n", port_infos[i0].ipaddress, port_infos[i0].port,
port_infos[i0].protocol);
char *ip_command = calloc(256, 1);
sprintf(ip_command,
"iptables -t nat -D PREROUTING -i %s -p %s --dport %d -j DNAT --to-destination %s;",
NIC, port_infos[i0].protocol, port_infos[i0].port, port_infos[i0].ipaddress);
if(system(ip_command)==-1) {
printf("コマンドの実行に失敗しました。%s\n", ip_command);
}
free(ip_command);
//配列からポートを削除してfree
destroy_port_info(&port_infos[i0]);
port_infos[i0].ipaddress = NULL;
if(i0+1==size) {
printf("サイズ縮小。\n");
size--;
}
}
}
for(int i0 = 0; i0 < latest_port_array_size && !stop_process; i0++) {//作成されたルールをチェック
char is_equal = 0;
for (int i1 = 0; i1 < size; i1++) {
if(port_infos[i1].ipaddress != NULL) {
if (!port_info_equal(port_infos[i1], latest_port_info[i0])) {
is_equal = 1;
break;
}
}
}
if (!is_equal) {
printf("作成:IP:%s, ポート:%d, プロトコル:%s\n", latest_port_info[i0].ipaddress, latest_port_info[i0].port,
latest_port_info[i0].protocol);
char *ip_command = calloc(256, 1);
sprintf(ip_command,
"iptables -t nat -A PREROUTING -i %s -p %s --dport %d -j DNAT --to-destination %s;",
NIC, latest_port_info[i0].protocol, latest_port_info[i0].port, latest_port_info[i0].ipaddress);
if(system(ip_command)==-1){
printf("コマンドの実行に失敗しました。%s\n", ip_command);
mysql_close(conn);
}
free(ip_command);
//配列の空いている部分を見つけて挿入
int input_array_index = -1;
for (int i1 = 0; i1 < size; i1++) {
if (port_infos[i1].ipaddress == NULL) {
input_array_index = i1;
printf("インデックス: %d データ挿入\n", input_array_index);
break;
}
}
//空いているポートがなければ新規作成
if (input_array_index == -1) {
printf("配列空き容量なし。新作成。\n");
input_array_index = size++;
}
port_infos[input_array_index] = makePortInfo();
memcpy(port_infos[input_array_index].ipaddress, latest_port_info[i0].ipaddress, 256);
port_infos[input_array_index].port = latest_port_info[i0].port;
memcpy(port_infos[input_array_index].protocol, latest_port_info[i0].protocol, 16);
}
}
for(int i = 0; i < latest_port_array_size; i++){
destroy_port_info(&latest_port_info[i]);
}
free(latest_port_info);
return error;
}
struct PortInfo makePortInfo(){
struct PortInfo port_info;
port_info.ipaddress = calloc(256, 1);
port_info.protocol = calloc(16, 1);
return port_info;
}
int byteSize(const char* data){
int i = 0;
while (data[i]!=0){
i++;
}
return i;
}
/*
* port_info_equalの返り値が絶対に0になるようにし、登録されているフォワードルールをすべて消去します
*/
void portClose(int signal){
stop_process=1;
}
/*
* イコールであるときは0、そうでないときは1を返します。
*/
int port_info_equal(struct PortInfo portInfo0, struct PortInfo portInfo1){
if(stop_process) return 0;
if(strcmp(portInfo0.ipaddress, portInfo1.ipaddress) == 0 &&
portInfo0.port == portInfo1.port &&
strcmp(portInfo0.protocol, portInfo1.protocol) == 0){
return 0;
}
return 1;
}
void destroy_port_info(struct PortInfo* portInfo){
free(portInfo->ipaddress);
free(portInfo->protocol);
}