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

Lwip wrapper memory issues #153

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
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
1 change: 1 addition & 0 deletions libraries/SSLClient/src/SSLClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ SSLClient::SSLClient(Client* client, String ca_path)
SSLClient::~SSLClient()
{
stop();
delete sslclient->client;
delete sslclient;
}

Expand Down
2 changes: 1 addition & 1 deletion libraries/SSLClient/src/SSLClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class SSLClient : public Client
SSLClient();
SSLClient(Client* client);
SSLClient(Client* client, String ca_path);
~SSLClient();
virtual ~SSLClient();

void setClient(Client& client);

Expand Down
54 changes: 48 additions & 6 deletions libraries/lwIpWrapper/src/lwipClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ extern "C" {

/* -------------------------------------------------------------------------- */
lwipClient::lwipClient()
: _tcp_client(NULL)
: _tcp_client(NULL), _provided_tcp_client(false)
{
}
/* -------------------------------------------------------------------------- */
Expand All @@ -17,16 +17,47 @@ lwipClient::lwipClient()
sketches but sock is ignored. */
/* -------------------------------------------------------------------------- */
lwipClient::lwipClient(uint8_t sock)
: _tcp_client(NULL)
: _tcp_client(NULL), _provided_tcp_client(false)

{
}
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
lwipClient::lwipClient(struct tcp_struct* tcpClient)
: _tcp_client(tcpClient), _provided_tcp_client(true)

{
_tcp_client = tcpClient;
}

/* -------------------------------------------------------------------------- */
lwipClient::lwipClient(lwipClient&& c) noexcept
:_tcp_client(std::move(c._tcp_client)), _provided_tcp_client(c._provided_tcp_client), _timeout(c._timeout)
{

}
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
lwipClient::~lwipClient()
{
stop();

if(!_provided_tcp_client) {
mem_free(_tcp_client);
}
}
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
lwipClient& lwipClient::operator=(lwipClient&& c) {
this->_tcp_client = std::move(c._tcp_client);
this->_provided_tcp_client = c._provided_tcp_client;
this->_timeout = c._timeout;

return *this;
}

/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
Expand Down Expand Up @@ -158,9 +189,13 @@ int lwipClient::read()
uint8_t b;
if ((_tcp_client != NULL) && (_tcp_client->data.p != NULL)) {
__disable_irq();
pbuffer_get_data(&(_tcp_client->data), &b, 1);
int rv = pbuffer_get_data(&(_tcp_client->data), &b, 1);
__enable_irq();
return b;
if(rv == 1) {
return b;
} else {
return -1;
}
}
// No data available
return -1;
Expand Down Expand Up @@ -224,7 +259,7 @@ uint8_t lwipClient::connected()
{
/* -------------------------------------------------------------------------- */
uint8_t s = status();
return ((available() && (s == TCP_CLOSING)) || (s == TCP_CONNECTED) || (s == TCP_ACCEPTED));
return s != TCP_DISCONNECTED && ((available() && (s == TCP_CLOSING)) || (s == TCP_CONNECTED) || (s == TCP_ACCEPTED));
}

/* -------------------------------------------------------------------------- */
Expand Down Expand Up @@ -253,6 +288,13 @@ bool lwipClient::operator==(const lwipClient& rhs)
return _tcp_client == rhs._tcp_client && _tcp_client->pcb == rhs._tcp_client->pcb;
}

/* -------------------------------------------------------------------------- */
bool lwipClient::operator!=(const lwipClient& rhs)
{
/* -------------------------------------------------------------------------- */
return _tcp_client != rhs._tcp_client || _tcp_client->pcb != rhs._tcp_client->pcb;
}

/* This function is not a function defined by Arduino. This is a function
specific to the W5100 architecture. To keep the compatibility we leave it and
returns always 0. */
Expand Down
11 changes: 7 additions & 4 deletions libraries/lwIpWrapper/src/lwipClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ class lwipClient : public Client {
lwipClient();
lwipClient(uint8_t sock);
lwipClient(struct tcp_struct* tcpClient);
lwipClient(lwipClient&& c);
virtual ~lwipClient();

lwipClient& operator=(lwipClient&& c);

uint8_t status();
virtual int connect(IPAddress ip, uint16_t port);
Expand All @@ -39,10 +43,7 @@ class lwipClient : public Client {
return bool() != value;
}
virtual bool operator==(const lwipClient&);
virtual bool operator!=(const lwipClient& rhs)
{
return !this->operator==(rhs);
};
virtual bool operator!=(const lwipClient& rhs);
uint8_t getSocketNumber();
virtual uint16_t localPort()
{
Expand All @@ -68,6 +69,8 @@ class lwipClient : public Client {
private:
struct tcp_struct* _tcp_client;
uint16_t _timeout = 10000;

bool _provided_tcp_client;
};

#endif
1 change: 1 addition & 0 deletions libraries/lwIpWrapper/src/lwipTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ typedef enum {
TCP_SENT,
TCP_ACCEPTED,
TCP_CLOSING,
TCP_DISCONNECTED,
} tcp_client_states;

/* Struct to store received data */
Expand Down