policy: add steer-reject-timeout
[project/usteer.git] / main.c
1 /*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
14 *
15 * Copyright (C) 2020 embedd.ch
16 * Copyright (C) 2020 Felix Fietkau <nbd@nbd.name>
17 * Copyright (C) 2020 John Crispin <john@phrozen.org>
18 */
19
20 #include <unistd.h>
21 #include <stdarg.h>
22 #include <syslog.h>
23
24 #include <libubox/blobmsg_json.h>
25
26 #include "usteer.h"
27 #include "event.h"
28 #include "node.h"
29
30 struct ubus_context *ubus_ctx;
31 struct usteer_config config = {};
32 struct blob_attr *host_info_blob;
33 uint64_t current_time;
34 static int dump_time;
35
36 LIST_HEAD(node_handlers);
37
38 const char * const event_types[__EVENT_TYPE_MAX] = {
39 [EVENT_TYPE_PROBE] = "probe",
40 [EVENT_TYPE_AUTH] = "auth",
41 [EVENT_TYPE_ASSOC] = "assoc",
42 };
43
44 void log_msg(char *msg)
45 {
46 if (config.syslog)
47 syslog(LOG_INFO, "%s\n", msg);
48 else
49 fprintf(stderr, "%s\n", msg);
50 }
51
52 void debug_msg(int level, const char *func, int line, const char *format, ...)
53 {
54 va_list ap;
55
56 if (config.debug_level < level)
57 return;
58
59 if (!config.syslog)
60 fprintf(stderr, "[%s:%d] ", func, line);
61
62 va_start(ap, format);
63 if (config.syslog)
64 vsyslog(level >= MSG_DEBUG ? LOG_DEBUG : LOG_INFO, format, ap);
65 else
66 vfprintf(stderr, format, ap);
67 va_end(ap);
68
69 }
70
71 void debug_msg_cont(int level, const char *format, ...)
72 {
73 va_list ap;
74
75 if (config.debug_level < level)
76 return;
77
78 va_start(ap, format);
79 vfprintf(stderr, format, ap);
80 va_end(ap);
81 }
82
83 void usteer_init_defaults(void)
84 {
85 memset(&config, 0, sizeof(config));
86
87 config.sta_block_timeout = 30 * 1000;
88 config.local_sta_timeout = 120 * 1000;
89 config.measurement_report_timeout = 120 * 1000;
90 config.local_sta_update = 1 * 1000;
91 config.max_retry_band = 5;
92 config.max_neighbor_reports = 8;
93 config.seen_policy_timeout = 30 * 1000;
94 config.band_steering_threshold = 5;
95 config.load_balancing_threshold = 5;
96 config.remote_update_interval = 1000;
97 config.initial_connect_delay = 0;
98 config.remote_node_timeout = 10;
99
100 config.steer_reject_timeout = 60000;
101
102 config.roam_kick_delay = 10000;
103 config.roam_process_timeout = 5 * 1000;
104 config.roam_scan_tries = 3;
105 config.roam_scan_timeout = 0;
106 config.roam_scan_interval = 10 * 1000;
107 config.roam_trigger_interval = 60 * 1000;
108
109 config.min_snr_kick_delay = 5 * 1000;
110
111 config.load_kick_enabled = false;
112 config.load_kick_threshold = 75;
113 config.load_kick_delay = 10 * 1000;
114 config.load_kick_min_clients = 10;
115 config.load_kick_reason_code = 5; /* WLAN_REASON_DISASSOC_AP_BUSY */
116
117 config.debug_level = MSG_FATAL;
118 }
119
120 void usteer_update_time(void)
121 {
122 struct timespec ts;
123
124 clock_gettime(CLOCK_MONOTONIC, &ts);
125 current_time = (uint64_t) ts.tv_sec * 1000 + ts.tv_nsec / 1000000;
126 }
127
128 static int usage(const char *prog)
129 {
130 fprintf(stderr, "Usage: %s [options]\n"
131 "Options:\n"
132 " -v: Increase debug level (repeat for more messages):\n"
133 " 1: info messages\n"
134 " 2: debug messages\n"
135 " 3: verbose debug messages\n"
136 " 4: include network messages\n"
137 " 5: include extra testing messages\n"
138 " -i <name>: Connect to other instances on interface <name>\n"
139 " -s: Output log messages via syslog instead of stderr\n"
140 " -D <n>: Do not daemonize, wait for <n> seconds and print\n"
141 " remote hosts and nodes\n"
142 "\n", prog);
143 return 1;
144 }
145
146 static void
147 usteer_dump_timeout(struct uloop_timeout *t)
148 {
149 struct usteer_remote_host *host;
150 struct usteer_remote_node *rn;
151 struct blob_buf b = {};
152 char *str;
153 void *c;
154
155 blob_buf_init(&b, 0);
156
157 c = blobmsg_open_table(&b, "hosts");
158 avl_for_each_element(&remote_hosts, host, avl)
159 usteer_dump_host(&b, host);
160 blobmsg_close_table(&b, c);
161
162 c = blobmsg_open_table(&b, "nodes");
163 for_each_remote_node(rn)
164 usteer_dump_node(&b, &rn->node);
165 blobmsg_close_table(&b, c);
166
167 str = blobmsg_format_json(b.head, true);
168 blob_buf_free(&b);
169
170 puts(str);
171 free(str);
172
173 uloop_end();
174 }
175
176 int main(int argc, char **argv)
177 {
178 struct uloop_timeout dump_timer;
179 int ch;
180
181 usteer_init_defaults();
182
183 while ((ch = getopt(argc, argv, "D:i:sv")) != -1) {
184 switch(ch) {
185 case 'v':
186 config.debug_level++;
187 break;
188 case 's':
189 config.syslog = true;
190 break;
191 case 'i':
192 usteer_interface_add(optarg);
193 break;
194 case 'D':
195 dump_time = atoi(optarg);
196 break;
197 default:
198 return usage(argv[0]);
199 }
200 }
201
202 openlog("usteer", 0, LOG_USER);
203
204 config_set_event_log_types(NULL);
205 usteer_update_time();
206 uloop_init();
207
208 ubus_ctx = ubus_connect(NULL);
209 if (!ubus_ctx) {
210 fprintf(stderr, "Failed to connect to ubus\n");
211 return -1;
212 }
213
214 ubus_add_uloop(ubus_ctx);
215 if (dump_time) {
216 dump_timer.cb = usteer_dump_timeout;
217 uloop_timeout_set(&dump_timer, dump_time * 1000);
218 } else {
219 usteer_ubus_init(ubus_ctx);
220 usteer_local_nodes_init(ubus_ctx);
221 }
222 uloop_run();
223
224 uloop_done();
225 return 0;
226 }