Blob: rfkill.c
Blob id: 04489e390522f0d82038f6df2ab67f68c33a0852
Size: 3.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | // SPDX-License-Identifier: GPL-2.0-or-later /* * * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org> * * */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #define _GNU_SOURCE #include <errno.h> #include <stdio.h> #include <fcntl.h> #include <unistd.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #include <limits.h> #include <glib.h> #include "bluetooth/bluetooth.h" #include "bluetooth/sdp.h" #include "log.h" #include "adapter.h" #include "btd.h" enum rfkill_type { RFKILL_TYPE_ALL = 0, RFKILL_TYPE_WLAN, RFKILL_TYPE_BLUETOOTH, RFKILL_TYPE_UWB, RFKILL_TYPE_WIMAX, RFKILL_TYPE_WWAN, }; enum rfkill_operation { RFKILL_OP_ADD = 0, RFKILL_OP_DEL, RFKILL_OP_CHANGE, RFKILL_OP_CHANGE_ALL, }; struct rfkill_event { uint32_t idx; uint8_t type; uint8_t op; uint8_t soft; uint8_t hard; }; #define RFKILL_EVENT_SIZE_V1 8 #define RFKILL_DEVICE_PATH "/dev/rfkill" static int get_adapter_id_for_rfkill(uint32_t rfkill_id) { char sysname[PATH_MAX]; int namefd; snprintf(sysname, sizeof(sysname) - 1, "/sys/class/rfkill/rfkill%u/name", rfkill_id); namefd = open(sysname, O_RDONLY); if (namefd < 0) return -1; memset(sysname, 0, sizeof(sysname)); if (read(namefd, sysname, sizeof(sysname) - 1) < 4) { close(namefd); return -1; } close(namefd); if (g_str_has_prefix(sysname, "hci") == FALSE) return -1; return atoi(sysname + 3); } int rfkill_get_blocked(uint16_t index) { int fd; int blocked = -1; fd = open(RFKILL_DEVICE_PATH, O_RDWR); if (fd < 0) { DBG("Failed to open RFKILL control device"); return -1; } while (1) { struct rfkill_event event = { 0 }; int id; ssize_t len; len = read(fd, &event, sizeof(event)); if (len < RFKILL_EVENT_SIZE_V1) break; id = get_adapter_id_for_rfkill(event.idx); if (index == id) { blocked = event.soft || event.hard; break; } } close(fd); return blocked; } static gboolean rfkill_event(GIOChannel *chan, GIOCondition cond, gpointer data) { struct rfkill_event event = { 0 }; struct btd_adapter *adapter; bool blocked = false; ssize_t len; int fd, id; if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR)) return FALSE; fd = g_io_channel_unix_get_fd(chan); len = read(fd, &event, sizeof(event)); if (len < 0) { if (errno == EAGAIN) return TRUE; return FALSE; } if (len < RFKILL_EVENT_SIZE_V1) return TRUE; DBG("RFKILL event idx %u type %u op %u soft %u hard %u", event.idx, event.type, event.op, event.soft, event.hard); if (event.soft || event.hard) blocked = true; if (event.op != RFKILL_OP_CHANGE) return TRUE; if (event.type != RFKILL_TYPE_BLUETOOTH && event.type != RFKILL_TYPE_ALL) return TRUE; id = get_adapter_id_for_rfkill(event.idx); if (id < 0) return TRUE; adapter = adapter_find_by_id(id); if (!adapter) return TRUE; DBG("RFKILL unblock for hci%d", id); if (blocked) btd_adapter_set_blocked(adapter); else btd_adapter_restore_powered(adapter); return TRUE; } static guint watch = 0; void rfkill_init(void) { int fd; GIOChannel *channel; errno = 0; fd = open(RFKILL_DEVICE_PATH, O_RDWR); if (fd < 0) { if (errno == ENOENT) { DBG("No RFKILL device available at '%s'", RFKILL_DEVICE_PATH); } else { error("Failed to open RFKILL control device: %s", strerror(errno)); } return; } channel = g_io_channel_unix_new(fd); g_io_channel_set_close_on_unref(channel, TRUE); watch = g_io_add_watch(channel, G_IO_IN | G_IO_NVAL | G_IO_HUP | G_IO_ERR, rfkill_event, NULL); g_io_channel_unref(channel); } void rfkill_exit(void) { if (watch == 0) return; g_source_remove(watch); watch = 0; } |