/* * Copyright (c) 2016, The OpenThread Authors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holder nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include "openthread-posix-config.h" #include "platform-posix.h" #include #include #include #include #include #include #include #include "common/code_utils.hpp" otPlatResetReason gPlatResetReason = OT_PLAT_RESET_REASON_POWER_ON; static otPlatMcuPowerState gPlatMcuPowerState = OT_PLAT_MCU_POWER_STATE_ON; otPlatResetReason otPlatGetResetReason(otInstance *aInstance) { OT_UNUSED_VARIABLE(aInstance); return gPlatResetReason; } void otPlatWakeHost(void) { // TODO: implement an operation to wake the host from sleep state. } otError otPlatSetMcuPowerState(otInstance *aInstance, otPlatMcuPowerState aState) { OT_UNUSED_VARIABLE(aInstance); otError error = OT_ERROR_NONE; switch (aState) { case OT_PLAT_MCU_POWER_STATE_ON: case OT_PLAT_MCU_POWER_STATE_LOW_POWER: gPlatMcuPowerState = aState; break; default: error = OT_ERROR_FAILED; break; } return error; } void otPlatAssertFail(const char *aFilename, int aLineNumber) { #if OPENTHREAD_CONFIG_LOG_PLATFORM && OPENTHREAD_CONFIG_LOG_LEVEL < OT_LOG_LEVEL_CRIT OT_UNUSED_VARIABLE(aFilename); OT_UNUSED_VARIABLE(aLineNumber); #else otLogCritPlat("assert failed at %s:%d", aFilename, aLineNumber); #endif // For debug build, use assert to generate a core dump assert(false); exit(1); } otPlatMcuPowerState otPlatGetMcuPowerState(otInstance *aInstance) { OT_UNUSED_VARIABLE(aInstance); return gPlatMcuPowerState; } int SocketWithCloseExec(int aDomain, int aType, int aProtocol, SocketBlockOption aBlockOption) { int rval = 0; int fd = -1; #ifdef __APPLE__ VerifyOrExit((fd = socket(aDomain, aType, aProtocol)) != -1, perror("socket(SOCK_CLOEXEC)")); VerifyOrExit((rval = fcntl(fd, F_GETFD, 0)) != -1, perror("fcntl(F_GETFD)")); rval |= aBlockOption == kSocketNonBlock ? O_NONBLOCK | FD_CLOEXEC : FD_CLOEXEC; VerifyOrExit((rval = fcntl(fd, F_SETFD, rval)) != -1, perror("fcntl(F_SETFD)")); #else aType |= aBlockOption == kSocketNonBlock ? SOCK_CLOEXEC | SOCK_NONBLOCK : SOCK_CLOEXEC; VerifyOrExit((fd = socket(aDomain, aType, aProtocol)) != -1, perror("socket(SOCK_CLOEXEC)")); #endif exit: if (rval == -1) { VerifyOrDie(close(fd) == 0, OT_EXIT_ERROR_ERRNO); fd = -1; } return fd; }