Update copyright information
[framework/connectivity/connman.git] / src / rfkill.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  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         char sysname[32];
65         connman_bool_t blocked;
66         gsize len;
67         GIOError err;
68
69         if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR))
70                 return FALSE;
71
72         memset(buf, 0, sizeof(buf));
73
74         err = g_io_channel_read(chan, (gchar *) buf, sizeof(buf), &len);
75         if (err) {
76                 if (err == G_IO_ERROR_AGAIN)
77                         return TRUE;
78                 return FALSE;
79         }
80
81         if (len != sizeof(struct rfkill_event))
82                 return TRUE;
83
84         DBG("idx %u type %u op %u soft %u hard %u",
85                                         event->idx, event->type, event->op,
86                                                 event->soft, event->hard);
87
88         snprintf(sysname, sizeof(sysname) - 1, "rfkill%d", event->idx);
89
90         blocked = (event->soft || event->hard) ? TRUE : FALSE;
91
92         switch (event->type) {
93         case RFKILL_TYPE_ALL:
94         case RFKILL_TYPE_WLAN:
95                 __connman_udev_rfkill(sysname, blocked);
96                 break;
97         default:
98                 break;
99         }
100
101         return TRUE;
102 }
103
104 static GIOChannel *channel = NULL;
105
106 int __connman_rfkill_init(void)
107 {
108         int fd;
109
110         DBG("");
111
112         fd = open("/dev/rfkill", O_RDWR);
113         if (fd < 0) {
114                 connman_error("Failed to open RFKILL control device");
115                 return -EIO;
116         }
117
118         channel = g_io_channel_unix_new(fd);
119         g_io_channel_set_close_on_unref(channel, TRUE);
120
121         g_io_add_watch(channel, G_IO_IN | G_IO_NVAL | G_IO_HUP | G_IO_ERR,
122                                                         rfkill_event, NULL);
123
124         return 0;
125 }
126
127 void __connman_rfkill_cleanup(void)
128 {
129         DBG("");
130
131         if (channel == NULL)
132                 return;
133
134         g_io_channel_shutdown(channel, TRUE, NULL);
135         g_io_channel_unref(channel);
136
137         channel = NULL;
138 }