1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-19 18:20:40 +03:00

Merge PR #698: Clean up Solaris device name parsing code to eliminate Coverity errors

This commit is contained in:
Davide Beatrici 2018-09-13 19:49:24 +02:00 committed by GitHub
commit 50d96aae81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1126,7 +1126,7 @@ bool DlipReceiveAck(int fd)
#endif // UNIX_SOLARIS #endif // UNIX_SOLARIS
// Separate UNIX device name string into device name and id number // Validate device name and return proper device path according to system type
bool ParseUnixEthDeviceName(char *dst_devname, UINT dst_devname_size, char *src_name) bool ParseUnixEthDeviceName(char *dst_devname, UINT dst_devname_size, char *src_name)
{ {
UINT len, i; UINT len, i;
@ -1141,9 +1141,8 @@ bool ParseUnixEthDeviceName(char *dst_devname, UINT dst_devname_size, char *src_
return false; return false;
} }
len = strlen(src_name);
// Check string length // Check string length
if(len == 0) if (IsEmptyStr(src_name))
{ {
return false; return false;
} }
@ -1159,27 +1158,22 @@ bool ParseUnixEthDeviceName(char *dst_devname, UINT dst_devname_size, char *src_
device_path = "/dev/"; device_path = "/dev/";
} }
device_pathlen = strlen(device_path); device_pathlen = StrLen(device_path);
for (i = len-1; i+1 != 0; i--) // Last character must be a number
if (src_name[i] < '0' || '9' < src_name[i])
{ {
// Find last non-numeric character if (src_name[i + 1] == 0)
if (src_name[i] < '0' || '9' < src_name[i])
{ {
// last character must be a number return false;
if(src_name[i+1]==0)
{
return false;
}
} }
StrCpy(dst_devname, dst_devname_size, device_path);
StrCpy(dst_devname + device_pathlen, dst_devname_size-device_pathlen, src_name);
dst_devname[device_pathlen + len] = 0;
return true;
} }
// All characters in the string was numeric: error
return false; StrCpy(dst_devname, dst_devname_size, device_path);
StrCpy(dst_devname + device_pathlen, dst_devname_size - device_pathlen, src_name);
dst_devname[device_pathlen + len] = 0;
return true;
} }
#if defined(BRIDGE_BPF) || defined(BRIDGE_PCAP) #if defined(BRIDGE_BPF) || defined(BRIDGE_PCAP)