michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /*********************************************************************** michael@0: ** michael@0: ** Name: prpoll_err.c michael@0: ** michael@0: ** Description: This program tests PR_Poll with sockets. michael@0: ** error reporting operation is tested michael@0: ** michael@0: ** Modification History: michael@0: ** 19-May-97 AGarcia- Converted the test to accomodate the debug_mode flag. michael@0: ** The debug mode will print all of the printfs associated with this test. michael@0: ** The regress mode will be the default mode. Since the regress tool limits michael@0: ** the output to a one line status:PASS or FAIL,all of the printf statements michael@0: ** have been handled with an if (debug_mode) statement. michael@0: ** 04-June-97 AGarcia removed the Test_Result function. Regress tool has been updated to michael@0: ** recognize the return code from tha main program. michael@0: ***********************************************************************/ michael@0: michael@0: #ifdef XP_BEOS michael@0: #include michael@0: int main() michael@0: { michael@0: printf( "This test is not ported to the BeOS\n" ); michael@0: return 0; michael@0: } michael@0: #else michael@0: michael@0: /*********************************************************************** michael@0: ** Includes michael@0: ***********************************************************************/ michael@0: /* Used to get the command line option */ michael@0: #include "plgetopt.h" michael@0: michael@0: #include "primpl.h" michael@0: michael@0: #include michael@0: #include michael@0: #include michael@0: michael@0: PRIntn failed_already=0; michael@0: PRIntn debug_mode; michael@0: michael@0: static void michael@0: ClientThreadFunc(void *arg) michael@0: { michael@0: PRFileDesc *badFD = (PRFileDesc *) arg; michael@0: /* michael@0: * Make the fd invalid michael@0: */ michael@0: #if defined(XP_UNIX) michael@0: close(PR_FileDesc2NativeHandle(badFD)); michael@0: #elif defined(XP_OS2) michael@0: soclose(PR_FileDesc2NativeHandle(badFD)); michael@0: #elif defined(WIN32) || defined(WIN16) michael@0: closesocket(PR_FileDesc2NativeHandle(badFD)); michael@0: #else michael@0: #error "Unknown architecture" michael@0: #endif michael@0: } michael@0: michael@0: int main(int argc, char **argv) michael@0: { michael@0: PRFileDesc *listenSock1, *listenSock2; michael@0: PRFileDesc *badFD; michael@0: PRUint16 listenPort1, listenPort2; michael@0: PRNetAddr addr; michael@0: char buf[128]; michael@0: PRPollDesc pds0[10], pds1[10], *pds, *other_pds; michael@0: PRIntn npds; michael@0: PRInt32 retVal; michael@0: michael@0: /* The command line argument: -d is used to determine if the test is being run michael@0: in debug mode. The regress tool requires only one line output:PASS or FAIL. michael@0: All of the printfs associated with this test has been handled with a if (debug_mode) michael@0: test. michael@0: Usage: test_name -d michael@0: */ michael@0: PLOptStatus os; michael@0: PLOptState *opt = PL_CreateOptState(argc, argv, "d:"); michael@0: while (PL_OPT_EOL != (os = PL_GetNextOpt(opt))) michael@0: { michael@0: if (PL_OPT_BAD == os) continue; michael@0: switch (opt->option) michael@0: { michael@0: case 'd': /* debug mode */ michael@0: debug_mode = 1; michael@0: break; michael@0: default: michael@0: break; michael@0: } michael@0: } michael@0: PL_DestroyOptState(opt); michael@0: michael@0: /* main test */ michael@0: michael@0: PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 0); michael@0: PR_STDIO_INIT(); michael@0: michael@0: if (debug_mode) { michael@0: printf("This program tests PR_Poll with sockets.\n"); michael@0: printf("error reporting is tested.\n\n"); michael@0: } michael@0: michael@0: /* Create two listening sockets */ michael@0: if ((listenSock1 = PR_NewTCPSocket()) == NULL) { michael@0: fprintf(stderr, "Can't create a new TCP socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: addr.inet.family = AF_INET; michael@0: addr.inet.ip = PR_htonl(INADDR_ANY); michael@0: addr.inet.port = PR_htons(0); michael@0: if (PR_Bind(listenSock1, &addr) == PR_FAILURE) { michael@0: fprintf(stderr, "Can't bind socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: if (PR_GetSockName(listenSock1, &addr) == PR_FAILURE) { michael@0: fprintf(stderr, "PR_GetSockName failed\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: listenPort1 = PR_ntohs(addr.inet.port); michael@0: if (PR_Listen(listenSock1, 5) == PR_FAILURE) { michael@0: fprintf(stderr, "Can't listen on a socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: michael@0: if ((listenSock2 = PR_NewTCPSocket()) == NULL) { michael@0: fprintf(stderr, "Can't create a new TCP socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: addr.inet.family = AF_INET; michael@0: addr.inet.ip = PR_htonl(INADDR_ANY); michael@0: addr.inet.port = PR_htons(0); michael@0: if (PR_Bind(listenSock2, &addr) == PR_FAILURE) { michael@0: fprintf(stderr, "Can't bind socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: if (PR_GetSockName(listenSock2, &addr) == PR_FAILURE) { michael@0: fprintf(stderr, "PR_GetSockName failed\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: listenPort2 = PR_ntohs(addr.inet.port); michael@0: if (PR_Listen(listenSock2, 5) == PR_FAILURE) { michael@0: fprintf(stderr, "Can't listen on a socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: PR_snprintf(buf, sizeof(buf), michael@0: "The server thread is listening on ports %hu and %hu\n\n", michael@0: listenPort1, listenPort2); michael@0: if (debug_mode) printf("%s", buf); michael@0: michael@0: /* Set up the poll descriptor array */ michael@0: pds = pds0; michael@0: other_pds = pds1; michael@0: memset(pds, 0, sizeof(pds)); michael@0: pds[0].fd = listenSock1; michael@0: pds[0].in_flags = PR_POLL_READ; michael@0: pds[1].fd = listenSock2; michael@0: pds[1].in_flags = PR_POLL_READ; michael@0: npds = 2; michael@0: michael@0: michael@0: /* Testing bad fd */ michael@0: if (debug_mode) printf("PR_Poll should detect a bad file descriptor\n"); michael@0: if ((badFD = PR_NewTCPSocket()) == NULL) { michael@0: fprintf(stderr, "Can't create a TCP socket\n"); michael@0: goto exit_now; michael@0: } michael@0: michael@0: pds[2].fd = badFD; michael@0: pds[2].in_flags = PR_POLL_READ; michael@0: npds = 3; michael@0: michael@0: if (PR_CreateThread(PR_USER_THREAD, ClientThreadFunc, michael@0: badFD, PR_PRIORITY_NORMAL, PR_LOCAL_THREAD, michael@0: PR_UNJOINABLE_THREAD, 0) == NULL) { michael@0: fprintf(stderr, "cannot create thread\n"); michael@0: exit(1); michael@0: } michael@0: michael@0: retVal = PR_Poll(pds, npds, PR_INTERVAL_NO_TIMEOUT); michael@0: if (retVal != 1 || (unsigned short) pds[2].out_flags != PR_POLL_NVAL) { michael@0: fprintf(stderr, "Failed to detect the bad fd: " michael@0: "PR_Poll returns %d, out_flags is 0x%hx\n", michael@0: retVal, pds[2].out_flags); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: if (debug_mode) printf("PR_Poll detected the bad fd. Test passed.\n\n"); michael@0: PR_Cleanup(); michael@0: goto exit_now; michael@0: exit_now: michael@0: if(failed_already) michael@0: return 1; michael@0: else michael@0: return 0; michael@0: } michael@0: michael@0: #endif /* XP_BEOS */