Remove obsolete file.
[connman] / src / rfkill.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2009  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <errno.h>
28 #include <fcntl.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <stdint.h>
32
33 #include "connman.h"
34
35 enum rfkill_type {
36         RFKILL_TYPE_ALL = 0,
37         RFKILL_TYPE_WLAN,
38         RFKILL_TYPE_BLUETOOTH,
39         RFKILL_TYPE_UWB,
40         RFKILL_TYPE_WIMAX,
41         RFKILL_TYPE_WWAN,
42 };
43
44 enum rfkill_operation {
45         RFKILL_OP_ADD = 0,
46         RFKILL_OP_DEL,
47         RFKILL_OP_CHANGE,
48         RFKILL_OP_CHANGE_ALL,
49 };
50
51 struct rfkill_event {
52         uint32_t idx;
53         uint8_t  type;
54         uint8_t  op;
55         uint8_t  soft;
56         uint8_t  hard;
57 };
58
59 static gboolean rfkill_event(GIOChannel *chan,
60                                 GIOCondition cond, gpointer data)
61 {
62         unsigned char buf[32];
63         struct rfkill_event *event = (void *) buf;
64         gsize len;
65         GIOError err;
66
67         if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR))
68                 return FALSE;
69
70         memset(buf, 0, sizeof(buf));
71
72         err = g_io_channel_read(chan, (gchar *) buf, sizeof(buf), &len);
73         if (err) {
74                 if (err == G_IO_ERROR_AGAIN)
75                         return TRUE;
76                 return FALSE;
77         }
78
79         if (len != sizeof(struct rfkill_event))
80                 return TRUE;
81
82         connman_info("RFKILL event: idx %u type %u op %u soft %u hard %u",
83                                         event->idx, event->type, event->op,
84                                                 event->soft, event->hard);
85
86         return TRUE;
87 }
88
89 static GIOChannel *channel = NULL;
90
91 int __connman_rfkill_init(void)
92 {
93         int fd;
94
95         DBG("");
96
97         fd = open("/dev/rfkill", O_RDWR);
98         if (fd < 0) {
99                 connman_error("Failed to open RFKILL control device");
100                 return -EIO;
101         }
102
103         channel = g_io_channel_unix_new(fd);
104         g_io_channel_set_close_on_unref(channel, TRUE);
105
106         g_io_add_watch(channel, G_IO_IN | G_IO_NVAL | G_IO_HUP | G_IO_ERR,
107                                                         rfkill_event, NULL);
108
109         return 0;
110 }
111
112 void __connman_rfkill_cleanup(void)
113 {
114         DBG("");
115
116         if (channel == NULL)
117                 return;
118
119         g_io_channel_shutdown(channel, TRUE, NULL);
120         g_io_channel_unref(channel);
121
122         channel = NULL;
123 }