Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Secure" client for default SSL connections (for use in PubSubCli… #103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/WiFiEsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ along with The Arduino WiFiEsp library. If not, see


#include "WiFiEspClient.h"
#include "WiFiEspSecureClient.h"
#include "WiFiEspServer.h"
#include "utility/EspDrv.h"
#include "utility/RingBuffer.h"
Expand Down Expand Up @@ -258,6 +259,7 @@ class WiFiEspClass


friend class WiFiEspClient;
friend class WiFiEspSecureClient;
friend class WiFiEspServer;
friend class WiFiEspUDP;

Expand Down
289 changes: 289 additions & 0 deletions src/WiFiEspSecureClient.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,289 @@
/*--------------------------------------------------------------------
This file is part of the Arduino WiFiEsp library.

The Arduino WiFiEsp library is free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

The Arduino WiFiEsp library is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with The Arduino WiFiEsp library. If not, see
<http://www.gnu.org/licenses/>.
--------------------------------------------------------------------*/

#include <inttypes.h>

#include "WiFiEsp.h"
#include "WiFiEspSecureClient.h"
#include "WiFiEspServer.h"

#include "utility/EspDrv.h"
#include "utility/debug.h"


WiFiEspSecureClient::WiFiEspSecureClient() : _sock(255)
{
}

WiFiEspSecureClient::WiFiEspSecureClient(uint8_t sock) : _sock(sock)
{
}



////////////////////////////////////////////////////////////////////////////////
// Overrided Print methods
////////////////////////////////////////////////////////////////////////////////

// the standard print method will call write for each character in the buffer
// this is very slow on ESP
size_t WiFiEspSecureClient::print(const __FlashStringHelper *ifsh)
{
printFSH(ifsh, false);
}

// if we do override this, the standard println will call the print
// method twice
size_t WiFiEspSecureClient::println(const __FlashStringHelper *ifsh)
{
printFSH(ifsh, true);
}


////////////////////////////////////////////////////////////////////////////////
// Implementation of Client virtual methods
////////////////////////////////////////////////////////////////////////////////

int WiFiEspSecureClient::connectSSL(const char* host, uint16_t port)
{
return connect(host, port, SSL_MODE);
}

int WiFiEspSecureClient::connectSSL(IPAddress ip, uint16_t port)
{
char s[16];
sprintf_P(s, PSTR("%d.%d.%d.%d"), ip[0], ip[1], ip[2], ip[3]);
return connect(s, port, SSL_MODE);
}

int WiFiEspSecureClient::connect(const char* host, uint16_t port)
{
return connect(host, port, SSL_MODE);
}

int WiFiEspSecureClient::connect(IPAddress ip, uint16_t port)
{
char s[16];
sprintf_P(s, PSTR("%d.%d.%d.%d"), ip[0], ip[1], ip[2], ip[3]);

return connect(s, port, SSL_MODE);
}

/* Private method */
int WiFiEspSecureClient::connect(const char* host, uint16_t port, uint8_t protMode)
{
LOGINFO1(F("Connecting to"), host);

_sock = WiFiEspClass::getFreeSocket();

if (_sock != NO_SOCKET_AVAIL)
{
if (!EspDrv::startClient(host, port, _sock, protMode))
return 0;

WiFiEspClass::allocateSocket(_sock);
}
else
{
LOGERROR(F("No socket available"));
return 0;
}
return 1;
}



size_t WiFiEspSecureClient::write(uint8_t b)
{
return write(&b, 1);
}

size_t WiFiEspSecureClient::write(const uint8_t *buf, size_t size)
{
if (_sock >= MAX_SOCK_NUM or size==0)
{
setWriteError();
return 0;
}

bool r = EspDrv::sendData(_sock, buf, size);
if (!r)
{
setWriteError();
LOGERROR1(F("Failed to write to socket"), _sock);
delay(4000);
stop();
return 0;
}

return size;
}



int WiFiEspSecureClient::available()
{
if (_sock != 255)
{
int bytes = EspDrv::availData(_sock);
if (bytes>0)
{
return bytes;
}
}

return 0;
}

int WiFiEspSecureClient::read()
{
uint8_t b;
if (!available())
return -1;

bool connClose = false;
EspDrv::getData(_sock, &b, false, &connClose);

if (connClose)
{
WiFiEspClass::releaseSocket(_sock);
_sock = 255;
}

return b;
}

int WiFiEspSecureClient::read(uint8_t* buf, size_t size)
{
if (!available())
return -1;
return EspDrv::getDataBuf(_sock, buf, size);
}

int WiFiEspSecureClient::peek()
{
uint8_t b;
if (!available())
return -1;

bool connClose = false;
EspDrv::getData(_sock, &b, true, &connClose);

if (connClose)
{
WiFiEspClass::releaseSocket(_sock);
_sock = 255;
}

return b;
}


void WiFiEspSecureClient::flush()
{
while (available())
read();
}

void WiFiEspSecureClient::stop()
{
if (_sock == 255)
return;

LOGINFO1(F("Disconnecting "), _sock);

EspDrv::stopClient(_sock);

WiFiEspClass::releaseSocket(_sock);
_sock = 255;
}


uint8_t WiFiEspSecureClient::connected()
{
return (status() == ESTABLISHED);
}


WiFiEspSecureClient::operator bool()
{
return _sock != 255;
}


////////////////////////////////////////////////////////////////////////////////
// Additional WiFi standard methods
////////////////////////////////////////////////////////////////////////////////


uint8_t WiFiEspSecureClient::status()
{
if (_sock == 255)
{
return CLOSED;
}

if (EspDrv::availData(_sock))
{
return ESTABLISHED;
}

if (EspDrv::getClientState(_sock))
{
return ESTABLISHED;
}

WiFiEspClass::releaseSocket(_sock);
_sock = 255;

return CLOSED;
}

IPAddress WiFiEspSecureClient::remoteIP()
{
IPAddress ret;
EspDrv::getRemoteIpAddress(ret);
return ret;
}

////////////////////////////////////////////////////////////////////////////////
// Private Methods
////////////////////////////////////////////////////////////////////////////////

size_t WiFiEspSecureClient::printFSH(const __FlashStringHelper *ifsh, bool appendCrLf)
{
size_t size = strlen_P((char*)ifsh);

if (_sock >= MAX_SOCK_NUM or size==0)
{
setWriteError();
return 0;
}

bool r = EspDrv::sendData(_sock, ifsh, size, appendCrLf);
if (!r)
{
setWriteError();
LOGERROR1(F("Failed to write to socket"), _sock);
delay(4000);
stop();
return 0;
}

return size;
}
Loading