2011-04-25 05:08:17 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cutils/uevent.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
2017-11-02 22:17:43 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
2011-09-01 03:07:36 +02:00
|
|
|
#include <string.h>
|
2011-04-25 05:08:17 +02:00
|
|
|
#include <strings.h>
|
2011-09-01 03:07:36 +02:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
#include <unistd.h>
|
2011-04-25 05:08:17 +02:00
|
|
|
|
|
|
|
#include <linux/netlink.h>
|
|
|
|
|
2017-11-02 22:17:43 +01:00
|
|
|
extern "C" {
|
|
|
|
|
2011-04-25 05:08:17 +02:00
|
|
|
/**
|
|
|
|
* Like recv(), but checks that messages actually originate from the kernel.
|
|
|
|
*/
|
2017-11-02 22:17:43 +01:00
|
|
|
ssize_t uevent_kernel_multicast_recv(int socket, void* buffer, size_t length) {
|
2014-10-30 22:51:59 +01:00
|
|
|
uid_t uid = -1;
|
|
|
|
return uevent_kernel_multicast_uid_recv(socket, buffer, length, &uid);
|
2012-03-29 23:46:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-10-30 22:51:59 +01:00
|
|
|
* Like the above, but passes a uid_t in by pointer. In the event that this
|
2012-03-29 23:46:07 +02:00
|
|
|
* fails due to a bad uid check, the uid_t will be set to the uid of the
|
|
|
|
* socket's peer.
|
|
|
|
*
|
|
|
|
* If this method rejects a netlink message from outside the kernel, it
|
|
|
|
* returns -1, sets errno to EIO, and sets "user" to the UID associated with the
|
|
|
|
* message. If the peer UID cannot be determined, "user" is set to -1."
|
|
|
|
*/
|
2017-11-02 22:17:43 +01:00
|
|
|
ssize_t uevent_kernel_multicast_uid_recv(int socket, void* buffer, size_t length, uid_t* uid) {
|
2014-10-30 22:51:59 +01:00
|
|
|
return uevent_kernel_recv(socket, buffer, length, true, uid);
|
|
|
|
}
|
|
|
|
|
2017-11-02 22:17:43 +01:00
|
|
|
ssize_t uevent_kernel_recv(int socket, void* buffer, size_t length, bool require_group, uid_t* uid) {
|
|
|
|
struct iovec iov = {buffer, length};
|
2011-04-25 05:08:17 +02:00
|
|
|
struct sockaddr_nl addr;
|
|
|
|
char control[CMSG_SPACE(sizeof(struct ucred))];
|
|
|
|
struct msghdr hdr = {
|
2017-11-02 22:17:43 +01:00
|
|
|
&addr, sizeof(addr), &iov, 1, control, sizeof(control), 0,
|
2011-04-25 05:08:17 +02:00
|
|
|
};
|
2017-11-02 22:17:43 +01:00
|
|
|
struct ucred* cred;
|
2011-04-25 05:08:17 +02:00
|
|
|
|
2014-10-30 22:51:59 +01:00
|
|
|
*uid = -1;
|
2019-11-13 16:20:11 +01:00
|
|
|
ssize_t n = TEMP_FAILURE_RETRY(recvmsg(socket, &hdr, 0));
|
2011-04-25 05:08:17 +02:00
|
|
|
if (n <= 0) {
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2017-11-02 22:17:43 +01:00
|
|
|
struct cmsghdr* cmsg = CMSG_FIRSTHDR(&hdr);
|
2011-04-25 05:08:17 +02:00
|
|
|
if (cmsg == NULL || cmsg->cmsg_type != SCM_CREDENTIALS) {
|
|
|
|
/* ignoring netlink message with no sender credentials */
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2017-11-02 22:17:43 +01:00
|
|
|
cred = (struct ucred*)CMSG_DATA(cmsg);
|
2014-10-30 22:51:59 +01:00
|
|
|
*uid = cred->uid;
|
2011-04-25 05:08:17 +02:00
|
|
|
|
2014-10-30 22:51:59 +01:00
|
|
|
if (addr.nl_pid != 0) {
|
|
|
|
/* ignore non-kernel */
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (require_group && addr.nl_groups == 0) {
|
|
|
|
/* ignore unicast messages when requested */
|
2012-03-29 23:46:07 +02:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2011-04-25 05:08:17 +02:00
|
|
|
return n;
|
|
|
|
|
|
|
|
out:
|
|
|
|
/* clear residual potentially malicious data */
|
|
|
|
bzero(buffer, length);
|
|
|
|
errno = EIO;
|
|
|
|
return -1;
|
|
|
|
}
|
2011-09-01 03:07:36 +02:00
|
|
|
|
2017-11-02 22:17:43 +01:00
|
|
|
int uevent_open_socket(int buf_sz, bool passcred) {
|
2011-09-01 03:07:36 +02:00
|
|
|
struct sockaddr_nl addr;
|
|
|
|
int on = passcred;
|
2018-11-27 20:00:29 +01:00
|
|
|
int buf_sz_readback = 0;
|
|
|
|
socklen_t optlen = sizeof(buf_sz_readback);
|
2011-09-01 03:07:36 +02:00
|
|
|
int s;
|
|
|
|
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
|
|
|
addr.nl_family = AF_NETLINK;
|
|
|
|
addr.nl_pid = getpid();
|
|
|
|
addr.nl_groups = 0xffffffff;
|
|
|
|
|
2015-02-26 22:32:52 +01:00
|
|
|
s = socket(PF_NETLINK, SOCK_DGRAM | SOCK_CLOEXEC, NETLINK_KOBJECT_UEVENT);
|
2017-11-02 22:17:43 +01:00
|
|
|
if (s < 0) return -1;
|
2011-09-01 03:07:36 +02:00
|
|
|
|
2018-11-27 20:00:29 +01:00
|
|
|
if (setsockopt(s, SOL_SOCKET, SO_RCVBUF, &buf_sz, sizeof(buf_sz)) < 0 ||
|
|
|
|
getsockopt(s, SOL_SOCKET, SO_RCVBUF, &buf_sz_readback, &optlen) < 0) {
|
2016-12-07 19:55:45 +01:00
|
|
|
close(s);
|
|
|
|
return -1;
|
|
|
|
}
|
2018-11-27 20:00:29 +01:00
|
|
|
/* Only if SO_RCVBUF was not effective, try SO_RCVBUFFORCE. Generally, we
|
|
|
|
* want to avoid SO_RCVBUFFORCE, because it generates SELinux denials in
|
|
|
|
* case we don't have CAP_NET_ADMIN. This is the case, for example, for
|
|
|
|
* healthd. */
|
|
|
|
if (buf_sz_readback < 2 * buf_sz) {
|
|
|
|
if (setsockopt(s, SOL_SOCKET, SO_RCVBUFFORCE, &buf_sz, sizeof(buf_sz)) < 0) {
|
|
|
|
close(s);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2016-12-07 19:55:45 +01:00
|
|
|
|
2011-09-01 03:07:36 +02:00
|
|
|
setsockopt(s, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
|
|
|
|
|
2017-11-02 22:17:43 +01:00
|
|
|
if (bind(s, (struct sockaddr*)&addr, sizeof(addr)) < 0) {
|
2011-09-01 03:07:36 +02:00
|
|
|
close(s);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
2017-11-02 22:17:43 +01:00
|
|
|
|
|
|
|
} // extern "C"
|