X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=plugins%2Floopback.c;h=782853efe44b5b2ce37ff2206c51baf2cce2cf8d;hb=930cfd8ec8a0d0e0d4a24af709a884804799c58e;hp=c0a8f3b93b76b8bfd07d7ad00d9bf80f70d2dd07;hpb=991fe1e5f6458aa30ee82ad73b2f0411b74b1d3e;p=connman diff --git a/plugins/loopback.c b/plugins/loopback.c index c0a8f3b..782853e 100644 --- a/plugins/loopback.c +++ b/plugins/loopback.c @@ -25,17 +25,155 @@ #include #include +#include #include #include +#include #include #include #include +#include + #define CONNMAN_API_SUBJECT_TO_CHANGE #include #include -static int loopback_init(void) +#if 0 +static GIOChannel *inotify_channel = NULL; + +static int hostname_descriptor = -1; + +static gboolean inotify_event(GIOChannel *channel, + GIOCondition condition, gpointer data) +{ + unsigned char buf[129], *ptr = buf; + gsize len; + GIOError err; + + if (condition & (G_IO_HUP | G_IO_ERR)) + return FALSE; + + memset(buf, 0, sizeof(buf)); + + err = g_io_channel_read(channel, (gchar *) buf, sizeof(buf) - 1, &len); + if (err != G_IO_ERROR_NONE) { + if (err == G_IO_ERROR_AGAIN) + return TRUE; + connman_error("Reading from inotify channel failed"); + return FALSE; + } + + while (len >= sizeof(struct inotify_event)) { + struct inotify_event *evt = (struct inotify_event *) ptr; + + if (evt->wd == hostname_descriptor) { + if (evt->mask & (IN_CREATE | IN_MOVED_TO)) + connman_info("create hostname file"); + + if (evt->mask & (IN_DELETE | IN_MOVED_FROM)) + connman_info("delete hostname file"); + + if (evt->mask & (IN_MODIFY | IN_MOVE_SELF)) + connman_info("modify hostname file"); + } + + len -= sizeof(struct inotify_event) + evt->len; + ptr += sizeof(struct inotify_event) + evt->len; + } + + return TRUE; +} + +static int create_watch(void) +{ + int fd; + + fd = inotify_init(); + if (fd < 0) { + connman_error("Creation of inotify context failed"); + return -EIO; + } + + inotify_channel = g_io_channel_unix_new(fd); + if (inotify_channel == NULL) { + connman_error("Creation of inotify channel failed"); + close(fd); + return -EIO; + } + + hostname_descriptor = inotify_add_watch(fd, "/etc/hostname", + IN_MODIFY | IN_DELETE_SELF | IN_MOVE_SELF); + if (hostname_descriptor < 0) { + connman_error("Creation of hostname watch failed"); + g_io_channel_unref(inotify_channel); + inotify_channel = NULL; + close(fd); + return -EIO; + } + + g_io_add_watch(inotify_channel, G_IO_IN | G_IO_ERR | G_IO_HUP, + inotify_event, NULL); + + return 0; +} + +static void remove_watch(void) +{ + int fd; + + if (inotify_channel == NULL) + return; + + fd = g_io_channel_unix_get_fd(inotify_channel); + + if (hostname_descriptor >= 0) + inotify_rm_watch(fd, hostname_descriptor); + + g_io_channel_unref(inotify_channel); + + close(fd); +} +#endif + +static void create_hostname(void) +{ + const char *name = "localhost"; + + if (sethostname(name, strlen(name)) < 0) + connman_error("Failed to set hostname to %s", name); +} + +static int setup_hostname(void) +{ + char name[HOST_NAME_MAX + 1]; + + memset(name, 0, sizeof(name)); + + if (gethostname(name, HOST_NAME_MAX) < 0) { + connman_error("Failed to get current hostname"); + return -EIO; + } + + if (strlen(name) > 0 && strcmp(name, "(none)") != 0) + connman_info("System hostname is %s", name); + else + create_hostname(); + + memset(name, 0, sizeof(name)); + + if (getdomainname(name, HOST_NAME_MAX) < 0) { + connman_error("Failed to get current domainname"); + return -EIO; + } + + if (strlen(name) > 0 && strcmp(name, "(none)") != 0) + connman_info("System domainname is %s", name); + + return 0; +} + +static int setup_loopback(void) { struct ifreq ifr; struct sockaddr_in *addr; @@ -61,7 +199,7 @@ static int loopback_init(void) addr = (struct sockaddr_in *) &ifr.ifr_addr; addr->sin_family = AF_INET; - addr->sin_addr.s_addr = inet_addr("127.0.0.0"); + addr->sin_addr.s_addr = inet_addr("127.0.0.1"); err = ioctl(sk, SIOCSIFADDR, &ifr); if (err < 0) { @@ -101,9 +239,21 @@ done: return err; } +static int loopback_init(void) +{ + setup_loopback(); + + setup_hostname(); + + //create_watch(); + + return 0; +} + static void loopback_exit(void) { + //remove_watch(); } CONNMAN_PLUGIN_DEFINE(loopback, "Loopback device plugin", VERSION, - loopback_init, loopback_exit) + CONNMAN_PLUGIN_PRIORITY_HIGH, loopback_init, loopback_exit)