|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- /* TEMPLATE GENERATED TESTCASE FILE
- Filename: CWE606_Unchecked_Loop_Condition__char_connect_socket_02.c
- Label Definition File: CWE606_Unchecked_Loop_Condition.label.xml
- Template File: sources-sinks-02.tmpl.c
- */
- /*
- * @description
- * CWE: 606 Unchecked Input For Loop Condition
- * BadSource: connect_socket Read data using a connect socket (client side)
- * GoodSource: Input a number less than MAX_LOOP
- * Sinks:
- * GoodSink: Use data as the for loop variant after checking to see if it is less than MAX_LOOP
- * BadSink : Use data as the for loop variant without checking its size
- * Flow Variant: 02 Control flow: if(1) and if(0)
- *
- * */
-
- #include "std_testcase.h"
-
- #define MAX_LOOP 10000
-
- #ifndef _WIN32
- #include <wchar.h>
- #endif
-
- #ifdef _WIN32
- #include <winsock2.h>
- #include <windows.h>
- #include <direct.h>
- #pragma comment(lib, "ws2_32") /* include ws2_32.lib when linking */
- #define CLOSE_SOCKET closesocket
- #else /* NOT _WIN32 */
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <unistd.h>
- #define INVALID_SOCKET -1
- #define SOCKET_ERROR -1
- #define CLOSE_SOCKET close
- #define SOCKET int
- #endif
-
- #define TCP_PORT 27015
- #define IP_ADDRESS "127.0.0.1"
-
- #ifndef OMITBAD
-
- void CWE606_Unchecked_Loop_Condition__char_connect_socket_02_bad()
- {
- char * data;
- char dataBuffer[100] = "";
- data = dataBuffer;
- if(1)
- {
- {
- #ifdef _WIN32
- WSADATA wsaData;
- int wsaDataInit = 0;
- #endif
- int recvResult;
- struct sockaddr_in service;
- char *replace;
- SOCKET connectSocket = INVALID_SOCKET;
- size_t dataLen = strlen(data);
- do
- {
- #ifdef _WIN32
- if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
- {
- break;
- }
- wsaDataInit = 1;
- #endif
- /* POTENTIAL FLAW: Read data using a connect socket */
- connectSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
- if (connectSocket == INVALID_SOCKET)
- {
- break;
- }
- memset(&service, 0, sizeof(service));
- service.sin_family = AF_INET;
- service.sin_addr.s_addr = inet_addr(IP_ADDRESS);
- service.sin_port = htons(TCP_PORT);
- if (connect(connectSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
- {
- break;
- }
- /* Abort on error or the connection was closed, make sure to recv one
- * less char than is in the recv_buf in order to append a terminator */
- /* Abort on error or the connection was closed */
- recvResult = recv(connectSocket, (char *)(data + dataLen), sizeof(char) * (100 - dataLen - 1), 0);
- if (recvResult == SOCKET_ERROR || recvResult == 0)
- {
- break;
- }
- /* Append null terminator */
- data[dataLen + recvResult / sizeof(char)] = '\0';
- /* Eliminate CRLF */
- replace = strchr(data, '\r');
- if (replace)
- {
- *replace = '\0';
- }
- replace = strchr(data, '\n');
- if (replace)
- {
- *replace = '\0';
- }
- }
- while (0);
- if (connectSocket != INVALID_SOCKET)
- {
- CLOSE_SOCKET(connectSocket);
- }
- #ifdef _WIN32
- if (wsaDataInit)
- {
- WSACleanup();
- }
- #endif
- }
- }
- if(1)
- {
- {
- int i, n, intVariable;
- if (sscanf(data, "%d", &n) == 1)
- {
- /* POTENTIAL FLAW: user-supplied value 'n' could lead to very large loop iteration */
- intVariable = 0;
- for (i = 0; i < n; i++)
- {
- /* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */
- intVariable++; /* avoid a dead/empty code block issue */
- }
- printIntLine(intVariable);
- }
- }
- }
- }
-
- #endif /* OMITBAD */
-
- #ifndef OMITGOOD
-
- /* goodB2G1() - use badsource and goodsink by changing the second 1 to 0 */
- static void goodB2G1()
- {
- char * data;
- char dataBuffer[100] = "";
- data = dataBuffer;
- if(1)
- {
- {
- #ifdef _WIN32
- WSADATA wsaData;
- int wsaDataInit = 0;
- #endif
- int recvResult;
- struct sockaddr_in service;
- char *replace;
- SOCKET connectSocket = INVALID_SOCKET;
- size_t dataLen = strlen(data);
- do
- {
- #ifdef _WIN32
- if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
- {
- break;
- }
- wsaDataInit = 1;
- #endif
- /* POTENTIAL FLAW: Read data using a connect socket */
- connectSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
- if (connectSocket == INVALID_SOCKET)
- {
- break;
- }
- memset(&service, 0, sizeof(service));
- service.sin_family = AF_INET;
- service.sin_addr.s_addr = inet_addr(IP_ADDRESS);
- service.sin_port = htons(TCP_PORT);
- if (connect(connectSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
- {
- break;
- }
- /* Abort on error or the connection was closed, make sure to recv one
- * less char than is in the recv_buf in order to append a terminator */
- /* Abort on error or the connection was closed */
- recvResult = recv(connectSocket, (char *)(data + dataLen), sizeof(char) * (100 - dataLen - 1), 0);
- if (recvResult == SOCKET_ERROR || recvResult == 0)
- {
- break;
- }
- /* Append null terminator */
- data[dataLen + recvResult / sizeof(char)] = '\0';
- /* Eliminate CRLF */
- replace = strchr(data, '\r');
- if (replace)
- {
- *replace = '\0';
- }
- replace = strchr(data, '\n');
- if (replace)
- {
- *replace = '\0';
- }
- }
- while (0);
- if (connectSocket != INVALID_SOCKET)
- {
- CLOSE_SOCKET(connectSocket);
- }
- #ifdef _WIN32
- if (wsaDataInit)
- {
- WSACleanup();
- }
- #endif
- }
- }
- if(0)
- {
- /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
- printLine("Benign, fixed string");
- }
- else
- {
- {
- int i, n, intVariable;
- if (sscanf(data, "%d", &n) == 1)
- {
- /* FIX: limit loop iteration counts */
- if (n < MAX_LOOP)
- {
- intVariable = 0;
- for (i = 0; i < n; i++)
- {
- /* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */
- intVariable++; /* avoid a dead/empty code block issue */
- }
- printIntLine(intVariable);
- }
- }
- }
- }
- }
-
- /* goodB2G2() - use badsource and goodsink by reversing the blocks in the second if */
- static void goodB2G2()
- {
- char * data;
- char dataBuffer[100] = "";
- data = dataBuffer;
- if(1)
- {
- {
- #ifdef _WIN32
- WSADATA wsaData;
- int wsaDataInit = 0;
- #endif
- int recvResult;
- struct sockaddr_in service;
- char *replace;
- SOCKET connectSocket = INVALID_SOCKET;
- size_t dataLen = strlen(data);
- do
- {
- #ifdef _WIN32
- if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
- {
- break;
- }
- wsaDataInit = 1;
- #endif
- /* POTENTIAL FLAW: Read data using a connect socket */
- connectSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
- if (connectSocket == INVALID_SOCKET)
- {
- break;
- }
- memset(&service, 0, sizeof(service));
- service.sin_family = AF_INET;
- service.sin_addr.s_addr = inet_addr(IP_ADDRESS);
- service.sin_port = htons(TCP_PORT);
- if (connect(connectSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
- {
- break;
- }
- /* Abort on error or the connection was closed, make sure to recv one
- * less char than is in the recv_buf in order to append a terminator */
- /* Abort on error or the connection was closed */
- recvResult = recv(connectSocket, (char *)(data + dataLen), sizeof(char) * (100 - dataLen - 1), 0);
- if (recvResult == SOCKET_ERROR || recvResult == 0)
- {
- break;
- }
- /* Append null terminator */
- data[dataLen + recvResult / sizeof(char)] = '\0';
- /* Eliminate CRLF */
- replace = strchr(data, '\r');
- if (replace)
- {
- *replace = '\0';
- }
- replace = strchr(data, '\n');
- if (replace)
- {
- *replace = '\0';
- }
- }
- while (0);
- if (connectSocket != INVALID_SOCKET)
- {
- CLOSE_SOCKET(connectSocket);
- }
- #ifdef _WIN32
- if (wsaDataInit)
- {
- WSACleanup();
- }
- #endif
- }
- }
- if(1)
- {
- {
- int i, n, intVariable;
- if (sscanf(data, "%d", &n) == 1)
- {
- /* FIX: limit loop iteration counts */
- if (n < MAX_LOOP)
- {
- intVariable = 0;
- for (i = 0; i < n; i++)
- {
- /* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */
- intVariable++; /* avoid a dead/empty code block issue */
- }
- printIntLine(intVariable);
- }
- }
- }
- }
- }
-
- /* goodG2B1() - use goodsource and badsink by changing the first 1 to 0 */
- static void goodG2B1()
- {
- char * data;
- char dataBuffer[100] = "";
- data = dataBuffer;
- if(0)
- {
- /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
- printLine("Benign, fixed string");
- }
- else
- {
- /* FIX: Set data to a number less than MAX_LOOP */
- strcpy(data, "15");
- }
- if(1)
- {
- {
- int i, n, intVariable;
- if (sscanf(data, "%d", &n) == 1)
- {
- /* POTENTIAL FLAW: user-supplied value 'n' could lead to very large loop iteration */
- intVariable = 0;
- for (i = 0; i < n; i++)
- {
- /* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */
- intVariable++; /* avoid a dead/empty code block issue */
- }
- printIntLine(intVariable);
- }
- }
- }
- }
-
- /* goodG2B2() - use goodsource and badsink by reversing the blocks in the first if */
- static void goodG2B2()
- {
- char * data;
- char dataBuffer[100] = "";
- data = dataBuffer;
- if(1)
- {
- /* FIX: Set data to a number less than MAX_LOOP */
- strcpy(data, "15");
- }
- if(1)
- {
- {
- int i, n, intVariable;
- if (sscanf(data, "%d", &n) == 1)
- {
- /* POTENTIAL FLAW: user-supplied value 'n' could lead to very large loop iteration */
- intVariable = 0;
- for (i = 0; i < n; i++)
- {
- /* INCIDENTAL: CWE 561: Dead Code - non-avoidable if n <= 0 */
- intVariable++; /* avoid a dead/empty code block issue */
- }
- printIntLine(intVariable);
- }
- }
- }
- }
-
- void CWE606_Unchecked_Loop_Condition__char_connect_socket_02_good()
- {
- goodB2G1();
- goodB2G2();
- goodG2B1();
- goodG2B2();
- }
-
- #endif /* OMITGOOD */
-
- /* Below is the main(). It is only used when building this testcase on
- its own for testing or for building a binary to use in testing binary
- analysis tools. It is not used when compiling all the testcases as one
- application, which is how source code analysis tools are tested. */
-
- #ifdef INCLUDEMAIN
-
- int main(int argc, char * argv[])
- {
- /* seed randomness */
- srand( (unsigned)time(NULL) );
- #ifndef OMITGOOD
- printLine("Calling good()...");
- CWE606_Unchecked_Loop_Condition__char_connect_socket_02_good();
- printLine("Finished good()");
- #endif /* OMITGOOD */
- #ifndef OMITBAD
- printLine("Calling bad()...");
- CWE606_Unchecked_Loop_Condition__char_connect_socket_02_bad();
- printLine("Finished bad()");
- #endif /* OMITBAD */
- return 0;
- }
-
- #endif
|