/* * 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. */ /** * @file * This file implements the OpenThread UDP API. */ #include "openthread-core-config.h" #include "instance/instance.hpp" using namespace ot; otMessage *otUdpNewMessage(otInstance *aInstance, const otMessageSettings *aSettings) { return AsCoreType(aInstance).Get().NewMessage(0, Message::Settings::From(aSettings)); } otError otUdpOpen(otInstance *aInstance, otUdpSocket *aSocket, otUdpReceive aCallback, void *aContext) { return AsCoreType(aInstance).Get().Open(AsCoreType(aSocket), Ip6::kNetifThreadHost, aCallback, aContext); } bool otUdpIsOpen(otInstance *aInstance, const otUdpSocket *aSocket) { return AsCoreType(aInstance).Get().IsOpen(AsCoreType(aSocket)); } otError otUdpClose(otInstance *aInstance, otUdpSocket *aSocket) { return AsCoreType(aInstance).Get().Close(AsCoreType(aSocket)); } otError otUdpBind(otInstance *aInstance, otUdpSocket *aSocket, const otSockAddr *aSockName, otNetifIdentifier aNetif) { AsCoreType(aSocket).SetNetifId(MapEnum(aNetif)); return AsCoreType(aInstance).Get().Bind(AsCoreType(aSocket), AsCoreType(aSockName)); } otError otUdpConnect(otInstance *aInstance, otUdpSocket *aSocket, const otSockAddr *aSockName) { return AsCoreType(aInstance).Get().Connect(AsCoreType(aSocket), AsCoreType(aSockName)); } otError otUdpSend(otInstance *aInstance, otUdpSocket *aSocket, otMessage *aMessage, const otMessageInfo *aMessageInfo) { otError error; VerifyOrExit(!AsCoreType(aMessage).IsOriginThreadNetif(), error = kErrorInvalidArgs); error = AsCoreType(aInstance).Get().SendTo(AsCoreType(aSocket), AsCoreType(aMessage), AsCoreType(aMessageInfo)); exit: return error; } otUdpSocket *otUdpGetSockets(otInstance *aInstance) { return AsCoreType(aInstance).Get().GetUdpSockets(); } #if OPENTHREAD_CONFIG_UDP_FORWARD_ENABLE void otUdpForwardSetForwarder(otInstance *aInstance, otUdpForwarder aForwarder, void *aContext) { AsCoreType(aInstance).Get().SetUdpForwarder(aForwarder, aContext); } void otUdpForwardReceive(otInstance *aInstance, otMessage *aMessage, uint16_t aPeerPort, const otIp6Address *aPeerAddr, uint16_t aSockPort) { Ip6::MessageInfo messageInfo; messageInfo.SetSockAddr(AsCoreType(aInstance).Get().GetMeshLocalRloc()); messageInfo.SetSockPort(aSockPort); messageInfo.SetPeerAddr(AsCoreType(aPeerAddr)); messageInfo.SetPeerPort(aPeerPort); messageInfo.SetIsHostInterface(true); AsCoreType(aInstance).Get().HandlePayload(AsCoreType(aMessage), messageInfo); AsCoreType(aMessage).Free(); } #endif // OPENTHREAD_CONFIG_UDP_FORWARD_ENABLE otError otUdpAddReceiver(otInstance *aInstance, otUdpReceiver *aUdpReceiver) { return AsCoreType(aInstance).Get().AddReceiver(AsCoreType(aUdpReceiver)); } otError otUdpRemoveReceiver(otInstance *aInstance, otUdpReceiver *aUdpReceiver) { return AsCoreType(aInstance).Get().RemoveReceiver(AsCoreType(aUdpReceiver)); } otError otUdpSendDatagram(otInstance *aInstance, otMessage *aMessage, otMessageInfo *aMessageInfo) { otError error; VerifyOrExit(!AsCoreType(aMessage).IsOriginThreadNetif(), error = kErrorInvalidArgs); return AsCoreType(aInstance).Get().SendDatagram(AsCoreType(aMessage), AsCoreType(aMessageInfo)); exit: return error; } bool otUdpIsPortInUse(otInstance *aInstance, uint16_t port) { return AsCoreType(aInstance).Get().IsPortInUse(port); }