diff options
| author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2022-03-07 18:15:58 +0100 | 
|---|---|---|
| committer | Sander Vrijders <sander@ouroboros.rocks> | 2022-03-08 17:40:18 +0100 | 
| commit | a7032da6bbe875596ea1cb348a747123cda7d408 (patch) | |
| tree | e6b00543a4199294c06d6bfb42bd1afb293b729d /src/ipcpd/eth | |
| parent | 2db119dd5c3e9a1ffc1360bde181a030c08bfce2 (diff) | |
| download | ouroboros-a7032da6bbe875596ea1cb348a747123cda7d408.tar.gz ouroboros-a7032da6bbe875596ea1cb348a747123cda7d408.zip | |
ipcpd: Fix memcpy with NULL in piggyback API
If there is no piggyback data, memcpy was passed a NULL pointer in
memcpy(buf, NULL, 0) calls, which is undefined behaviour.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/ipcpd/eth')
| -rw-r--r-- | src/ipcpd/eth/eth.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/src/ipcpd/eth/eth.c b/src/ipcpd/eth/eth.c index f62bd0a7..25f42fc8 100644 --- a/src/ipcpd/eth/eth.c +++ b/src/ipcpd/eth/eth.c @@ -496,7 +496,8 @@ static int eth_ipcp_alloc(const uint8_t * dst_addr,          msg->timeout      = hton32(qs.timeout);          memcpy(msg + 1, hash, ipcp_dir_hash_len()); -        memcpy(buf + len + ETH_HEADER_TOT_SIZE, data, dlen); +        if (dlen > 0) +                memcpy(buf + len + ETH_HEADER_TOT_SIZE, data, dlen);          ret = eth_ipcp_send_frame(dst_addr,  #if defined(BUILD_ETH_DIX) @@ -542,7 +543,8 @@ static int eth_ipcp_alloc_resp(uint8_t *    dst_addr,  #endif          msg->response = response; -        memcpy(msg + 1, data, len); +        if (len > 0) +                memcpy(msg + 1, data, len);          if (eth_ipcp_send_frame(dst_addr,  #if defined(BUILD_ETH_DIX) | 
