3 * Copyright 2009-2014 Roy Marples <roy@marples.name>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 # include <libnotify/notify.h>
34 #ifndef NOTIFY_CHECK_VERSION
35 # define NOTIFY_CHECK_VERSION(a,b,c) 0
37 static NotifyNotification *nn;
42 #include "dhcpcd-gtk.h"
44 static GtkStatusIcon *status_icon;
45 static guint ani_timer;
46 static int ani_counter;
57 static struct watch *watches;
61 static gboolean dhcpcd_try_open(gpointer data);
62 static gboolean dhcpcd_wpa_try_open(gpointer data);
65 wi_scan_find(DHCPCD_WI_SCAN *scan)
70 for (w = wi_scans; w; w = w->next) {
71 for (dw = w->scans; dw; dw = dw->next)
81 animate_carrier(_unused gpointer data)
88 switch(ani_counter++) {
90 icon = "network-transmit";
93 icon = "network-receive";
96 icon = "network-idle";
100 gtk_status_icon_set_from_icon_name(status_icon, icon);
105 animate_online(_unused gpointer data)
112 if (ani_counter++ > 6) {
118 if (ani_counter % 2 == 0)
119 icon = "network-idle";
121 icon = "network-transmit-receive";
122 gtk_status_icon_set_from_icon_name(status_icon, icon);
127 update_online(DHCPCD_CONNECTION *con, bool showif)
129 bool ison, iscarrier;
130 char *msg, *msgs, *tmp;
133 ison = iscarrier = false;
135 ifs = dhcpcd_interfaces(con);
136 for (i = ifs; i; i = i->next) {
137 if (g_strcmp0(i->type, "link") == 0) {
144 msg = dhcpcd_if_message(i);
147 g_message("%s", msg);
149 tmp = g_strconcat(msgs, "\n", msg, NULL);
156 g_message("%s: %s", i->ifname, i->reason);
159 if (online != ison || carrier != iscarrier) {
161 if (ani_timer != 0) {
162 g_source_remove(ani_timer);
167 animate_online(NULL);
168 ani_timer = g_timeout_add(300, animate_online, NULL);
169 } else if (iscarrier) {
170 animate_carrier(NULL);
171 ani_timer = g_timeout_add(500, animate_carrier, NULL);
173 gtk_status_icon_set_from_icon_name(status_icon,
177 gtk_status_icon_set_tooltip_text(status_icon, msgs);
186 notify_notification_close(nn, NULL);
191 static char *notify_last_msg;
200 notify(const char *title, const char *msg, const char *icon)
205 /* Don't spam the same message */
206 if (notify_last_msg) {
207 if (notify_last_msg && strcmp(msg, notify_last_msg) == 0)
209 g_free(notify_last_msg);
211 notify_last_msg = g_strdup(msg);
214 notify_notification_close(nn, NULL);
216 #if NOTIFY_CHECK_VERSION(0,7,0)
217 nn = notify_notification_new(title, msg, icon);
218 notify_notification_set_hint(nn, "transient",
219 g_variant_new_boolean(TRUE));
221 if (gtk_status_icon_get_visible(status_icon))
222 nn = notify_notification_new_with_status_icon(title,
223 msg, icon, status_icon);
225 nn = notify_notification_new(title, msg, icon, NULL);
228 notify_notification_set_timeout(nn, 5000);
229 g_signal_connect(nn, "closed", G_CALLBACK(notify_closed), NULL);
230 notify_notification_show(nn, NULL);
233 # define notify(a, b, c)
237 dhcpcd_status_cb(DHCPCD_CONNECTION *con, const char *status, _unused void *data)
239 static char *last = NULL;
244 g_message("Status changed to %s", status);
245 if (g_strcmp0(status, "down") == 0) {
247 "Connection to dhcpcd lost" : "dhcpcd not running");
248 if (ani_timer != 0) {
249 g_source_remove(ani_timer);
253 gtk_status_icon_set_from_icon_name(status_icon,
255 gtk_status_icon_set_tooltip_text(status_icon, msg);
256 notify(_("No network"), msg, "network-offline");
257 dhcpcd_prefs_abort();
260 dhcpcd_wi_scans_free(wi_scans->scans);
265 if ((last == NULL || g_strcmp0(last, "down") == 0)) {
266 g_message(_("Connected to %s-%s"), "dhcpcd",
267 dhcpcd_version(con));
271 update_online(con, refresh);
273 last = g_strdup(status);
276 static struct watch *
277 dhcpcd_findwatch(int fd, gpointer data, struct watch **last)
283 for (w = watches; w; w = w->next) {
284 if (w->fd == fd || w->ref == data)
293 dhcpcd_unwatch(int fd, gpointer data)
297 if ((w = dhcpcd_findwatch(fd, data, &l))) {
302 g_source_remove(w->eventid);
303 g_io_channel_unref(w->gio);
310 gboolean (*cb)(GIOChannel *, GIOCondition, gpointer),
319 if ((w = dhcpcd_findwatch(fd, data, &l))) {
326 g_source_remove(w->eventid);
327 g_io_channel_unref(w->gio);
331 gio = g_io_channel_unix_new(fd);
333 g_warning(_("Error creating new GIO Channel\n"));
336 flags = G_IO_IN | G_IO_ERR | G_IO_HUP;
337 if ((eventid = g_io_add_watch(gio, flags, cb, data)) == 0) {
338 g_warning(_("Error creating watch\n"));
339 g_io_channel_unref(gio);
343 w = g_try_malloc(sizeof(*w));
345 g_warning(_("g_try_malloc\n"));
346 g_source_remove(eventid);
347 g_io_channel_unref(gio);
353 w->eventid = eventid;
362 dhcpcd_cb(_unused GIOChannel *gio, _unused GIOCondition c, gpointer data)
364 DHCPCD_CONNECTION *con;
366 con = (DHCPCD_CONNECTION *)data;
367 if (dhcpcd_get_fd(con) == -1) {
368 g_warning(_("dhcpcd connection lost"));
369 dhcpcd_unwatch(-1, con);
370 g_timeout_add(DHCPCD_RETRYOPEN, dhcpcd_try_open, con);
374 dhcpcd_dispatch(con);
379 dhcpcd_try_open(gpointer data)
381 DHCPCD_CONNECTION *con;
383 static int last_error;
385 con = (DHCPCD_CONNECTION *)data;
386 fd = dhcpcd_open(con);
388 if (errno != last_error)
389 g_critical("dhcpcd_open: %s", strerror(errno));
394 if (!dhcpcd_watch(fd, dhcpcd_cb, con)) {
403 dhcpcd_if_cb(DHCPCD_IF *i, _unused void *data)
405 DHCPCD_CONNECTION *con;
409 /* Update the tooltip with connection information */
410 con = dhcpcd_if_connection(i);
411 update_online(con, false);
413 /* We should ignore renew and stop so we don't annoy the user */
414 if (g_strcmp0(i->reason, "RENEW") == 0 ||
415 g_strcmp0(i->reason, "STOP") == 0 ||
416 g_strcmp0(i->reason, "STOPPED") == 0)
419 msg = dhcpcd_if_message(i);
421 g_message("%s", msg);
423 icon = "network-transmit-receive";
425 // icon = "network-transmit";
427 icon = "network-offline";
428 notify(_("Network event"), msg, icon);
434 dhcpcd_wpa_cb(_unused GIOChannel *gio, _unused GIOCondition c,
440 wpa = (DHCPCD_WPA *)data;
441 if (dhcpcd_wpa_get_fd(wpa) == -1) {
442 dhcpcd_unwatch(-1, wpa);
444 /* If the interface hasn't left, try re-opening */
445 i = dhcpcd_wpa_if(wpa);
447 g_strcmp0(i->reason, "DEPARTED") == 0 ||
448 g_strcmp0(i->reason, "STOPPED") == 0)
450 g_warning(_("dhcpcd WPA connection lost: %s"), i->ifname);
451 g_timeout_add(DHCPCD_RETRYOPEN, dhcpcd_wpa_try_open, wpa);
455 dhcpcd_wpa_dispatch(wpa);
460 dhcpcd_wpa_try_open(gpointer data)
464 static int last_error;
466 wpa = (DHCPCD_WPA *)data;
467 fd = dhcpcd_wpa_open(wpa);
469 if (errno != last_error)
470 g_critical("dhcpcd_wpa_open: %s", strerror(errno));
475 if (!dhcpcd_watch(fd, dhcpcd_wpa_cb, wpa)) {
476 dhcpcd_wpa_close(wpa);
484 dhcpcd_wpa_scan_cb(DHCPCD_WPA *wpa, _unused void *data)
488 DHCPCD_WI_SCAN *scans, *s1, *s2;
493 /* This could be a new WPA so watch it */
494 fd = dhcpcd_wpa_get_fd(wpa);
496 g_critical("No fd for WPA %p", wpa);
497 dhcpcd_unwatch(-1, wpa);
500 dhcpcd_watch(fd, dhcpcd_wpa_cb, wpa);
502 i = dhcpcd_wpa_if(wpa);
504 g_critical("No interface for WPA %p", wpa);
507 g_message(_("%s: Received scan results"), i->ifname);
510 scans = dhcpcd_wi_scans(i);
511 if (scans == NULL && errno)
512 g_warning("%s: %s", i->ifname, strerror(errno));
514 for (w = wi_scans; w; w = w->next)
515 if (w->interface == i)
518 w = g_malloc(sizeof(*w));
524 msg = N_("New Access Point");
525 for (s1 = scans; s1; s1 = s1->next) {
526 for (s2 = w->scans; s2; s2 = s2->next)
527 if (g_strcmp0(s1->ssid, s2->ssid) == 0)
531 txt = g_strdup(s1->ssid);
533 msg = N_("New Access Points");
534 t = g_strconcat(txt, "\n",
542 notify(msg, txt, "network-wireless");
545 dhcpcd_wi_scans_free(w->scans);
551 main(int argc, char *argv[])
553 DHCPCD_CONNECTION *con;
555 setlocale(LC_ALL, "");
556 bindtextdomain(PACKAGE, NULL);
557 bind_textdomain_codeset(PACKAGE, "UTF-8");
560 gtk_init(&argc, &argv);
561 g_set_application_name("Network Configurator");
562 gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(),
564 status_icon = gtk_status_icon_new_from_icon_name("network-offline");
566 gtk_status_icon_set_tooltip_text(status_icon,
567 _("Connecting to dhcpcd ..."));
568 gtk_status_icon_set_visible(status_icon, true);
571 notify_init(PACKAGE);
574 g_message(_("Connecting ..."));
577 g_critical("libdhcpcd: %s", strerror(errno));
580 dhcpcd_set_status_callback(con, dhcpcd_status_cb, NULL);
581 dhcpcd_set_if_callback(con, dhcpcd_if_cb, NULL);
582 dhcpcd_wpa_set_scan_callback(con, dhcpcd_wpa_scan_cb, NULL);
583 //dhcpcd_wpa_set_status_callback(con, dhcpcd_wpa_status_cb, NULL);
584 if (dhcpcd_try_open(con))
585 g_timeout_add(DHCPCD_RETRYOPEN, dhcpcd_try_open, con);
587 menu_init(status_icon, con);