San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include <stdio.h> |
| 18 | #include <errno.h> |
| 19 | |
| 20 | #include <sys/socket.h> |
| 21 | #include <sys/select.h> |
| 22 | #include <sys/time.h> |
| 23 | #include <sys/types.h> |
| 24 | #include <sys/un.h> |
| 25 | |
| 26 | #include <linux/netlink.h> |
| 27 | |
| 28 | #define LOG_TAG "Vold" |
| 29 | |
| 30 | #include <cutils/log.h> |
| 31 | |
| 32 | #include "NetlinkManager.h" |
| 33 | #include "NetlinkHandler.h" |
| 34 | |
| 35 | NetlinkManager *NetlinkManager::sInstance = NULL; |
| 36 | |
| 37 | NetlinkManager *NetlinkManager::Instance() { |
| 38 | if (!sInstance) |
| 39 | sInstance = new NetlinkManager(); |
| 40 | return sInstance; |
| 41 | } |
| 42 | |
| 43 | NetlinkManager::NetlinkManager() { |
| 44 | mBroadcaster = NULL; |
| 45 | } |
| 46 | |
| 47 | NetlinkManager::~NetlinkManager() { |
| 48 | } |
| 49 | |
| 50 | int NetlinkManager::start() { |
| 51 | struct sockaddr_nl nladdr; |
| 52 | int sz = 64 * 1024; |
Nick Kralevich | c51920c | 2011-04-18 15:51:19 -0700 | [diff] [blame] | 53 | int on = 1; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 54 | |
| 55 | memset(&nladdr, 0, sizeof(nladdr)); |
| 56 | nladdr.nl_family = AF_NETLINK; |
| 57 | nladdr.nl_pid = getpid(); |
| 58 | nladdr.nl_groups = 0xffffffff; |
| 59 | |
| 60 | if ((mSock = socket(PF_NETLINK, |
| 61 | SOCK_DGRAM,NETLINK_KOBJECT_UEVENT)) < 0) { |
San Mehat | 97ac40e | 2010-03-24 10:24:19 -0700 | [diff] [blame] | 62 | SLOGE("Unable to create uevent socket: %s", strerror(errno)); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 63 | return -1; |
| 64 | } |
| 65 | |
| 66 | if (setsockopt(mSock, SOL_SOCKET, SO_RCVBUFFORCE, &sz, sizeof(sz)) < 0) { |
Nick Kralevich | 3b20c39 | 2013-06-28 19:08:35 -0700 | [diff] [blame] | 67 | SLOGE("Unable to set uevent socket SO_RCVBUFFORCE option: %s", strerror(errno)); |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 68 | goto out; |
Nick Kralevich | c51920c | 2011-04-18 15:51:19 -0700 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | if (setsockopt(mSock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) { |
| 72 | SLOGE("Unable to set uevent socket SO_PASSCRED option: %s", strerror(errno)); |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 73 | goto out; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | if (bind(mSock, (struct sockaddr *) &nladdr, sizeof(nladdr)) < 0) { |
San Mehat | 97ac40e | 2010-03-24 10:24:19 -0700 | [diff] [blame] | 77 | SLOGE("Unable to bind uevent socket: %s", strerror(errno)); |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 78 | goto out; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | mHandler = new NetlinkHandler(mSock); |
| 82 | if (mHandler->start()) { |
San Mehat | 97ac40e | 2010-03-24 10:24:19 -0700 | [diff] [blame] | 83 | SLOGE("Unable to start NetlinkHandler: %s", strerror(errno)); |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 84 | goto out; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 85 | } |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 86 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 87 | return 0; |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 88 | |
| 89 | out: |
| 90 | close(mSock); |
| 91 | return -1; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | int NetlinkManager::stop() { |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 95 | int status = 0; |
| 96 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 97 | if (mHandler->stop()) { |
San Mehat | 97ac40e | 2010-03-24 10:24:19 -0700 | [diff] [blame] | 98 | SLOGE("Unable to stop NetlinkHandler: %s", strerror(errno)); |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 99 | status = -1; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 100 | } |
| 101 | delete mHandler; |
| 102 | mHandler = NULL; |
| 103 | |
| 104 | close(mSock); |
| 105 | mSock = -1; |
| 106 | |
Kaspter Ju | 15bd71f | 2012-04-14 10:48:45 +0800 | [diff] [blame] | 107 | return status; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 108 | } |