-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenwrt.cpp
More file actions
249 lines (214 loc) · 4.28 KB
/
Copy pathopenwrt.cpp
File metadata and controls
249 lines (214 loc) · 4.28 KB
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#include "openwrt.h"
openwrt::openwrt()
{
get_status();
}
void openwrt::reboot()
{
system("/sbin/reboot");
}
void openwrt::networkRestart()
{
system("/sbin/uci commit wireless");
sleep(2);
system("/etc/init.d/network restart");
}
void openwrt::commitWshaper()
{
system("/sbin/uci commit wshaper");
sleep(2);
system("/etc/init.d/network restart");
}
void openwrt::get_status()
{
string str = "";
ifstream in("/etc/config/wireless");
if(in.is_open())
{
while(!in.eof())
{
getline(in, str);
if((str.find("option ssid") != std::string::npos))
{
this->ssid = str.substr(str.find("option ssid") + 11);
}
else if((str.find("option hwmode") != std::string::npos))
{
this->mode = str.substr(str.find("option hwmode") + 13);
}
else if((str.find("option channel") != std::string::npos))
{
this->channel = str.substr(str.find("option channel") + 14);
}
else if((str.find("option txpower") != std::string::npos))
{
this->tx = str.substr(str.find("option txpower") + 14);
}
else if((str.find("option key") != std::string::npos))
{
this->password = str.substr(str.find("option key") + 10);
}
}
}
in.close();
in.open("/etc/config/wshaper");
if(in.is_open())
{
while(!in.eof())
{
getline(in, str);
if((str.find("option uplink") != std::string::npos))
{
this->uplink = str.substr(str.find("option uplink") + 13);
}
else if((str.find("option downlink") != std::string::npos))
{
this->downlink = str.substr(str.find("option downlink") + 15);
}
}
}
in.close();
}
void openwrt::show_status()
{
cout << "ap status" << endl;
cout << setw(15) << left << "ssid" << this->ssid << endl;
cout << setw(15) << left << "hwmode" << this->mode << endl;
cout << setw(15) << left << "channel" << this->channel << endl;
cout << setw(15) << left << "txpower" << this->tx << endl;
cout << setw(15) << left << "password" << this->password << endl;
cout << setw(15) << left << "uplink" << this->uplink << endl;
cout << setw(15) << left << "downlink" << this->downlink << endl;
}
bool openwrt::set_ssid(string ssid)
{
string str;
if(ssid.length() > 0)
{
str = "/sbin/uci set wireless.@wifi-iface[0].ssid=" + ssid;
system(str.c_str());
return true;
}
else
return false;
}
bool openwrt::set_mode(string mode)
{
string str;
if(mode == "b" || mode == "g" || mode == "a")
{
str = "/sbin/uci set wireless.wlan0.hwmode11" + mode;
system(str.c_str());
return true;
}
else
return false;
}
bool openwrt::set_channel(string channel)
{
stringstream ss;
string str = "/sbin/uci set wireless.wlan0.channel=";
int ch;
if(channel != "auto")
ch = atoi(channel.c_str());
else
{
str = str + channel;
system(str.c_str());
return true;
}
if(0 < ch && ch < 12)
{
ss << str << ch;
str = ss.str();
system(str.c_str());
return true;
}
else
return false;
}
bool openwrt::set_tx(string tx)
{
stringstream ss;
string str = "/sbin/uci set wireless.wlan0.txpower=";
int power = atoi(tx.c_str());
if(0 <= power && power < 21)
{
ss << str << power;
str = ss.str();
system(str.c_str());
return true;
}
else
return false;
}
bool openwrt::set_password(string password)
{
stringstream ss;
string str = "/sbin/uci set wireless.@wifi-iface[0].key=" + password;
if(8 <= password.length() && password.length() <= 63)
{
system(str.c_str());
return true;
}
else
return false;
}
bool openwrt::set_uplink(string uplink)
{
stringstream ss;
string str = "/sbin/uci set wshaper.settings.uplink=";
int up = atoi(uplink.c_str());
if(0 <= up)
{
ss << str << up;
str = ss.str();
system(str.c_str());
return true;
}
else
return false;
}
bool openwrt::set_downlink(string downlink)
{
stringstream ss;
string str = "/sbin/uci set wshaper.settings.downlink=";
int down = atoi(downlink.c_str());
if(0 <= down)
{
ss << str << down;
str = ss.str();
system(str.c_str());
return true;
}
else
return false;
}
string openwrt::get_ssid()
{
return this->ssid;
}
string openwrt::get_mode()
{
return this->mode;
}
string openwrt::get_channel()
{
return this->channel;
}
string openwrt::get_tx()
{
return this->tx;
}
string openwrt::get_password()
{
return this->password;
}
string openwrt::get_uplink()
{
return this->uplink;
}
string openwrt::get_downlink()
{
return this->downlink;
}