luci-0.8: merge r4491
[project/luci.git] / contrib / package / freifunk-watchdog / src / watchdog.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, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
15 *
16 * Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org>
17 */
18
19 #include "watchdog.h"
20
21 /* Get BSSID of given interface */
22 static int iw_get_bssid(int iwfd, const char *ifname, char *bssid)
23 {
24 struct iwreq iwrq;
25
26 if( iw_ioctl(iwfd, ifname, SIOCGIWAP, &iwrq) >= 0 )
27 {
28 unsigned char *addr = (unsigned char *)iwrq.u.ap_addr.sa_data;
29
30 sprintf(bssid, "%02X:%02X:%02X:%02X:%02X:%02X",
31 addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]);
32
33 return 0;
34 }
35
36 return -1;
37 }
38
39 /* Get channel of given interface */
40 static int iw_get_channel(int iwfd, const char *ifname, int *channel)
41 {
42 int i;
43 char buffer[sizeof(struct iw_range)];
44 double cur_freq, cmp_freq;
45 struct iwreq iwrq;
46 struct iw_range *range;
47
48 memset(buffer, 0, sizeof(buffer));
49
50 iwrq.u.data.pointer = (char *)buffer;
51 iwrq.u.data.length = sizeof(buffer);
52 iwrq.u.data.flags = 0;
53
54 if( iw_ioctl(iwfd, ifname, SIOCGIWRANGE, &iwrq) < 0)
55 {
56 *channel = -1;
57 return -1;
58 }
59
60 range = (struct iw_range *)buffer;
61
62 if( iw_ioctl(iwfd, ifname, SIOCGIWFREQ, &iwrq) >= 0 )
63 {
64 cur_freq = ((double)iwrq.u.freq.m) * pow(10, iwrq.u.freq.e);
65 if( cur_freq < 1000.00 )
66 {
67 *channel = (int)cur_freq;
68 return 0;
69 }
70
71 for(i = 0; i < range->num_frequency; i++)
72 {
73 cmp_freq = ((double)range->freq[i].m) * pow(10, range->freq[i].e);
74 if( cmp_freq == cur_freq )
75 {
76 *channel = (int)range->freq[i].i;
77 return 0;
78 }
79 }
80 }
81
82 *channel = -1;
83 return -1;
84 }
85
86 /* Get the (first) pid of given process name */
87 static int find_process(const char *name)
88 {
89 int pid = -1;
90 int file;
91 char buffer[128];
92 char cmpname[128];
93 DIR *dir;
94 struct dirent *entry;
95
96 if( (dir = opendir("/proc")) != NULL )
97 {
98 snprintf(cmpname, sizeof(cmpname), "Name:\t%s\n", name);
99
100 while( (entry = readdir(dir)) != NULL )
101 {
102 if( !strcmp(entry->d_name, "..") || !isdigit(*entry->d_name) )
103 continue;
104
105 sprintf(buffer, "/proc/%s/status", entry->d_name);
106 if( (file = open(buffer, O_RDONLY)) > -1 )
107 {
108 read(file, buffer, sizeof(buffer));
109 close(file);
110
111 if( strstr(buffer, cmpname) == buffer )
112 {
113 pid = atoi(entry->d_name);
114
115 /* Skip myself ... */
116 if( pid == getpid() )
117 pid = -1;
118 else
119 break;
120 }
121 }
122 }
123
124 closedir(dir);
125 return pid;
126 }
127
128 syslog(LOG_CRIT, "Unable to open /proc: %s",
129 strerror(errno));
130
131 return -1;
132 }
133
134 /* Check if given uci file was updated */
135 static int check_uci_update(const char *config, time_t *mtime)
136 {
137 struct stat s;
138 char path[128];
139
140 snprintf(path, sizeof(path), "/var/state/%s", config);
141 if( stat(path, &s) > -1 )
142 {
143 if( (*mtime == 0) || (s.st_mtime > *mtime) )
144 {
145 *mtime = s.st_mtime;
146 return 1;
147 }
148
149 return 0;
150 }
151
152 return -1;
153 }
154
155 /* Add tuple */
156 static void load_wifi_uci_add_iface(const char *section, struct uci_itr_ctx *itr)
157 {
158 wifi_tuple_t *t;
159 const char *ucitmp;
160 int val = 0;
161
162 if( (t = (wifi_tuple_t *)malloc(sizeof(wifi_tuple_t))) != NULL )
163 {
164 ucitmp = ucix_get_option(itr->ctx, "wireless", section, "ifname");
165 if(ucitmp)
166 {
167 strncpy(t->ifname, ucitmp, sizeof(t->ifname));
168 val++;
169 }
170
171 ucitmp = ucix_get_option(itr->ctx, "wireless", section, "bssid");
172 if(ucitmp)
173 {
174 strncpy(t->bssid, ucitmp, sizeof(t->bssid));
175 val++;
176 }
177
178 ucitmp = ucix_get_option(itr->ctx, "wireless", section, "device");
179 if(ucitmp)
180 {
181 ucitmp = ucix_get_option(itr->ctx, "wireless", ucitmp, "channel");
182 if(ucitmp)
183 {
184 t->channel = atoi(ucitmp);
185 val++;
186 }
187 }
188
189 if( val == 3 )
190 {
191 syslog(LOG_INFO, "Monitoring %s: bssid=%s channel=%d",
192 t->ifname, t->bssid, t->channel);
193
194 t->next = itr->list;
195 itr->list = t;
196 }
197 else
198 {
199 free(t);
200 }
201 }
202 }
203
204 /* Load config */
205 static wifi_tuple_t * load_wifi_uci(wifi_tuple_t *ifs, time_t *modtime)
206 {
207 struct uci_context *ctx;
208 struct uci_itr_ctx itr;
209 wifi_tuple_t *cur, *next;
210
211 if( check_uci_update("wireless", modtime) )
212 {
213 syslog(LOG_INFO, "Config changed, reloading");
214
215 if( (ctx = ucix_init("wireless")) != NULL )
216 {
217 if( ifs != NULL )
218 {
219 for(cur = ifs; cur; cur = next)
220 {
221 next = cur->next;
222 free(cur);
223 }
224 }
225
226 itr.list = NULL;
227 itr.ctx = ctx;
228
229 ucix_for_each_section_type(ctx, "wireless", "wifi-iface",
230 (void *)load_wifi_uci_add_iface, &itr);
231
232 return itr.list;
233 }
234 }
235
236 return ifs;
237 }
238
239 /* Daemon implementation */
240 static int do_daemon(void)
241 {
242 int iwfd;
243 int channel;
244 char bssid[18];
245
246 wifi_tuple_t *ifs = NULL, *curif;
247 time_t modtime = 0;
248
249 int restart_wifi = 0;
250 int restart_cron = 0;
251
252 openlog(SYSLOG_IDENT, 0, LOG_DAEMON);
253 //daemon(1, 1);
254
255 if( (iwfd = socket(AF_INET, SOCK_DGRAM, 0)) == -1 )
256 {
257 perror("Can not open wireless control socket");
258 return 1;
259 }
260
261 while( 1 )
262 {
263 if( (ifs = load_wifi_uci(ifs, &modtime)) == NULL )
264 {
265 printf("Can not load wireless uci. File corrupt?\n");
266 return 1;
267 }
268
269 /* Check crond */
270 if( find_process("crond") < 0 )
271 {
272 syslog(LOG_WARNING, "The crond process died, restarting");
273 restart_cron++;
274 }
275
276 /* Check wireless interfaces */
277 for( curif = ifs; curif; curif = curif->next )
278 {
279 /* Get current channel and bssid */
280 if( (iw_get_bssid(iwfd, curif->ifname, bssid) == 0) &&
281 (iw_get_channel(iwfd, curif->ifname, &channel) == 0) )
282 {
283 /* Check BSSID */
284 if( strcasecmp(bssid, curif->bssid) != 0 )
285 {
286 syslog(LOG_WARNING, "BSSID mismatch on %s: current=%s wanted=%s",
287 curif->ifname, bssid, curif->bssid);
288
289 restart_wifi++;
290 }
291
292 /* Check channel */
293 else if( channel != curif->channel )
294 {
295 syslog(LOG_WARNING, "Channel mismatch on %s: current=%d wanted=%d",
296 curif->ifname, channel, curif->channel);
297
298 restart_wifi++;
299 }
300 }
301 else
302 {
303 syslog(LOG_WARNING, "Requested interface %s not present", curif->ifname);
304 }
305 }
306
307
308 /* Wifi restart required? */
309 if( restart_wifi >= HYSTERESIS )
310 {
311 restart_wifi = 0;
312 syslog(LOG_WARNING, "Restarting wireless");
313 EXEC(WIFI_ACTION);
314 }
315
316 /* Cron restart required? */
317 if( restart_cron >= HYSTERESIS )
318 {
319 restart_cron = 0;
320 syslog(LOG_WARNING, "Restarting crond process");
321 EXEC(CRON_ACTION);
322 }
323
324 sleep(INTERVAL);
325 }
326
327 closelog();
328 return 0;
329 }
330
331
332 int main(int argc, char *argv[])
333 {
334 /* Check if watchdog is running ... */
335 if( (argc > 1) && (strcmp(argv[1], "running") == 0) )
336 {
337 return (find_process(BINARY) == -1);
338 }
339
340 /* Start daemon */
341 return do_daemon();
342 }