mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
81d61fa324
- Bug 1265036 - Use NS_ABORT_OOM() if try_realloc() fails. r=billm (c30f4f83d5) - Bug 1263292 - Handle calling realloc(0) (r=jld) (f292859ee9) - Bug 1256366 - Remove linear and exponential stats collection from histogram.cc. r=gfritzsche (f9a1c869a1) - Bug 1263953 - Reduce the growth rate of Pickle. r=wmccloskey (6eb5228490) - Bug 1233275 - Copy environment for IPC using NSPR. r=jld (2004db748e) - Bug 1261094 - Improve how MessageChannel::mInterruptStack is used in IPC code, r=jld (56e2c114a4) - Bug 1246931: Include dbus.h in DBus IPC headers, r=shuang (43e797c2d8) - Bug 1264887: Make DBus helpers available on desktop builds, r=shuang (58bff1f640) - Bug 1268130, part 1 - Reimplement ByteLengthIsValid using CheckedInt. r=froydnj (6018e22ae0) - Bug 1268130, part 2 - Make ByteLengthIsValid failures fatal in release builds. r=froydnj (f9d934a498) - Bug 1269365, part 1 - Swap fallible and infallible TArray ParamTraits. r=froydnj (ad423bc04d) - Bug 1269365, part 2 - Make ParamTraits<nsTArray<E>>::Read use infallible allocation. r=froydnj (9b902a5bc4) - Bug 1269365, part 3 - Use infallible array allocation in implementSpecialArrayPickling. r=froydnj (592fe648d3) - Bug 1264820 - Measure IPC reply size in telemetry (r=mccr8) (62c54d3141) - Bug 1268938 - Use the name of the original message in Send for reply telemetry. r=billm (a2de5c6a91) - Bug 1266954: Remove temporary |ScopedClose| from PDU receive code, r=jacheng (cb06315c33) - Bug 1142109 - Fix IPDL tests (r=dvander) (df3f0cda32) - Bug 1177013 - Fix IPDL tests for not allowing CPOWs during sync (r=dvander) (5da0a8a4c9) - Bug 1261307: Convert RIL sockets to |UniquePtr|, r=nfroyd (08609783b3) - Bug 1253622 - Move the mozilla-trace.h generation into moz.build; r=ted (f01dc418bc) - Bug 1267318 ignore cert expiration for mozilla-signed packages, r=dkeeler (7a1ddd6090) - Bug 1029173 - Clean up nsDataSignatureVerifier. r=keeler (f9602341ea) - bug 1267463 - add a more nuanced subject common name fallback option for prerelease channels r=Cykesiopka,jcj (9b55320c9b) - Bug 1253108 - Enable ESLint "strict" rule for PSM. r=keeler (54802bdc38) - Bug 1255425 - part 1 - clearly delineate steps when outputting HSTS preload list; r=keeler (79f73189c8) - Bug 1251801 - Fully implement nsNSSShutDownObject and obviate manual NSS resource management. r=keeler (af32315d3f) - Bug 1251801 - Improve handling of PK11_* function error codes. r=keeler (9f2c8ac64b) - Fix unified-build bustage from bug 1264706. r=bustage (11bc0417c7) - Bug 1265164 - Always use nsCOMPtrs with getNSSDialogs(). r=keeler (ce5a703972)
203 lines
4.9 KiB
C++
203 lines
4.9 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "DaemonSocketPDU.h"
|
|
#include "mozilla/ipc/DaemonSocketConsumer.h"
|
|
#include "nsISupportsImpl.h" // for MOZ_COUNT_CTOR, MOZ_COUNT_DTOR
|
|
|
|
#ifdef CHROMIUM_LOG
|
|
#undef CHROMIUM_LOG
|
|
#endif
|
|
|
|
#if defined(MOZ_WIDGET_GONK)
|
|
#include <android/log.h>
|
|
#define CHROMIUM_LOG(args...) __android_log_print(ANDROID_LOG_INFO, "I/O", args);
|
|
#else
|
|
#include <stdio.h>
|
|
#define IODEBUG true
|
|
#define CHROMIUM_LOG(args...) if (IODEBUG) printf(args);
|
|
#endif
|
|
|
|
namespace mozilla {
|
|
namespace ipc {
|
|
|
|
//
|
|
// DaemonSocketPDU
|
|
//
|
|
|
|
DaemonSocketPDU::DaemonSocketPDU(uint8_t aService, uint8_t aOpcode,
|
|
uint16_t aPayloadSize)
|
|
: mConsumer(nullptr)
|
|
{
|
|
MOZ_COUNT_CTOR_INHERITED(DaemonSocketPDU, UnixSocketIOBuffer);
|
|
|
|
// Allocate memory
|
|
size_t availableSpace = PDU_HEADER_SIZE + aPayloadSize;
|
|
ResetBuffer(new uint8_t[availableSpace], 0, 0, availableSpace);
|
|
|
|
// Reserve PDU header
|
|
uint8_t* data = Append(PDU_HEADER_SIZE);
|
|
MOZ_ASSERT(data);
|
|
|
|
// Setup PDU header
|
|
data[PDU_OFF_SERVICE] = aService;
|
|
data[PDU_OFF_OPCODE] = aOpcode;
|
|
memcpy(data + PDU_OFF_LENGTH, &aPayloadSize, sizeof(aPayloadSize));
|
|
}
|
|
|
|
DaemonSocketPDU::DaemonSocketPDU(size_t aPayloadSize)
|
|
: mConsumer(nullptr)
|
|
{
|
|
MOZ_COUNT_CTOR_INHERITED(DaemonSocketPDU, UnixSocketIOBuffer);
|
|
|
|
size_t availableSpace = PDU_HEADER_SIZE + aPayloadSize;
|
|
ResetBuffer(new uint8_t[availableSpace], 0, 0, availableSpace);
|
|
}
|
|
|
|
DaemonSocketPDU::~DaemonSocketPDU()
|
|
{
|
|
MOZ_COUNT_DTOR_INHERITED(DaemonSocketPDU, UnixSocketIOBuffer);
|
|
|
|
UniquePtr<uint8_t[]> data(GetBuffer());
|
|
ResetBuffer(nullptr, 0, 0, 0);
|
|
}
|
|
|
|
void
|
|
DaemonSocketPDU::GetHeader(uint8_t& aService, uint8_t& aOpcode,
|
|
uint16_t& aPayloadSize)
|
|
{
|
|
memcpy(&aService, GetData(PDU_OFF_SERVICE), sizeof(aService));
|
|
memcpy(&aOpcode, GetData(PDU_OFF_OPCODE), sizeof(aOpcode));
|
|
memcpy(&aPayloadSize, GetData(PDU_OFF_LENGTH), sizeof(aPayloadSize));
|
|
}
|
|
|
|
ssize_t
|
|
DaemonSocketPDU::Send(int aFd)
|
|
{
|
|
struct iovec iv;
|
|
memset(&iv, 0, sizeof(iv));
|
|
iv.iov_base = GetData(GetLeadingSpace());
|
|
iv.iov_len = GetSize();
|
|
|
|
struct msghdr msg;
|
|
memset(&msg, 0, sizeof(msg));
|
|
msg.msg_iov = &iv;
|
|
msg.msg_iovlen = 1;
|
|
msg.msg_control = nullptr;
|
|
msg.msg_controllen = 0;
|
|
|
|
ssize_t res = TEMP_FAILURE_RETRY(sendmsg(aFd, &msg, 0));
|
|
if (res < 0) {
|
|
MOZ_ASSERT(errno != EBADF); /* internal error */
|
|
OnError("sendmsg", errno);
|
|
return -1;
|
|
}
|
|
|
|
Consume(res);
|
|
|
|
if (mConsumer) {
|
|
// We successfully sent a PDU, now store the
|
|
// result handler in the consumer.
|
|
mConsumer->StoreResultHandler(*this);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
#define CMSGHDR_CONTAINS_FD(_cmsghdr) \
|
|
( ((_cmsghdr)->cmsg_level == SOL_SOCKET) && \
|
|
((_cmsghdr)->cmsg_type == SCM_RIGHTS) )
|
|
|
|
ssize_t
|
|
DaemonSocketPDU::Receive(int aFd)
|
|
{
|
|
struct iovec iv;
|
|
memset(&iv, 0, sizeof(iv));
|
|
iv.iov_base = GetData(0);
|
|
iv.iov_len = GetAvailableSpace();
|
|
|
|
uint8_t cmsgbuf[CMSG_SPACE(sizeof(int)* MAX_NFDS)];
|
|
|
|
struct msghdr msg;
|
|
memset(&msg, 0, sizeof(msg));
|
|
msg.msg_iov = &iv;
|
|
msg.msg_iovlen = 1;
|
|
msg.msg_control = cmsgbuf;
|
|
msg.msg_controllen = sizeof(cmsgbuf);
|
|
|
|
ssize_t res = TEMP_FAILURE_RETRY(recvmsg(aFd, &msg, MSG_NOSIGNAL));
|
|
if (res < 0) {
|
|
MOZ_ASSERT(errno != EBADF); /* internal error */
|
|
OnError("recvmsg", errno);
|
|
return -1;
|
|
}
|
|
if (msg.msg_flags & (MSG_CTRUNC | MSG_OOB | MSG_ERRQUEUE)) {
|
|
return -1;
|
|
}
|
|
|
|
SetRange(0, res);
|
|
|
|
struct cmsghdr* chdr = CMSG_FIRSTHDR(&msg);
|
|
|
|
for (; chdr; chdr = CMSG_NXTHDR(&msg, chdr)) {
|
|
if (NS_WARN_IF(!CMSGHDR_CONTAINS_FD(chdr))) {
|
|
continue;
|
|
}
|
|
// Retrieve sent file descriptors.
|
|
size_t fdCount = (chdr->cmsg_len - CMSG_ALIGN(sizeof(struct cmsghdr))) / sizeof(int);
|
|
for (size_t i = 0; i < fdCount; i++) {
|
|
int* receivedFd = static_cast<int*>(CMSG_DATA(chdr)) + i;
|
|
mReceivedFds.AppendElement(*receivedFd);
|
|
}
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
nsTArray<int>
|
|
DaemonSocketPDU::AcquireFds()
|
|
{
|
|
// Forget all RAII object to avoid closing the fds.
|
|
nsTArray<int> fds;
|
|
for (auto& fd : mReceivedFds) {
|
|
fds.AppendElement(fd.forget());
|
|
}
|
|
mReceivedFds.Clear();
|
|
return fds;
|
|
}
|
|
|
|
nsresult
|
|
DaemonSocketPDU::UpdateHeader()
|
|
{
|
|
size_t len = GetPayloadSize();
|
|
if (len >= PDU_MAX_PAYLOAD_LENGTH) {
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
}
|
|
uint16_t len16 = static_cast<uint16_t>(len);
|
|
|
|
memcpy(GetData(PDU_OFF_LENGTH), &len16, sizeof(len16));
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
size_t
|
|
DaemonSocketPDU::GetPayloadSize() const
|
|
{
|
|
MOZ_ASSERT(GetSize() >= PDU_HEADER_SIZE);
|
|
|
|
return GetSize() - PDU_HEADER_SIZE;
|
|
}
|
|
|
|
void
|
|
DaemonSocketPDU::OnError(const char* aFunction, int aErrno)
|
|
{
|
|
CHROMIUM_LOG("%s failed with error %d (%s)",
|
|
aFunction, aErrno, strerror(aErrno));
|
|
}
|
|
|
|
}
|
|
}
|