fde406debf36be95b1452f50310534f2bfba0029
[gapil.git] / sources / TCP_echo_third.c
1 /* TCP_echo_third.c
2  * 
3  * Copyright (C) 2001-2003 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /****************************************************************
20  *
21  * Program TCP_echo_third.c
22  * Simple TCP client for echo service (port 7)
23  * This version use select
24  *
25  * Author: Simone Piccardi
26  * Jun. 2001
27  *
28  * Usage: echo -h give all info's
29  *
30  ****************************************************************/
31 /* 
32  * Include needed headers
33  */
34 #include <sys/types.h>   /* primitive system data types */
35 #include <unistd.h>      /* unix standard library */
36 #include <arpa/inet.h>   /* IP addresses conversion utilities */
37 #include <sys/socket.h>  /* socket constants, types and functions */
38 #include <stdio.h>       /* standard I/O library */
39 #include <errno.h>       /* error definitions and routines */
40 #include <string.h>      /* C strings library */
41
42 #include "macros.h"
43
44 #define MAXLINE 256
45 void usage(void);
46 void ClientEcho(FILE * filein, int socket);
47 void SigTERM_hand(int sig);
48
49 /* Program begin */
50 int main(int argc, char *argv[])
51 {
52 /* 
53  * Variables definition  
54  */
55     int sock, i;
56     int reset = 0;
57     struct sockaddr_in serv_add;
58     struct linger ling;
59     /*
60      * Input section: decode parameters passed in the calling 
61      * Use getopt function
62      */
63     opterr = 0;  /* don't want writing to stderr */
64     while ( (i = getopt(argc, argv, "hr")) != -1) {
65         switch (i) {
66         /* 
67          * Handling options 
68          */ 
69         case 'h':  
70             printf("Wrong -h option use\n");
71             usage();
72             return(1);
73             break;
74         case 'r':
75             reset = 1;
76             break;
77         case '?':   /* unrecognized options */
78             printf("Unrecognized options -%c\n",optopt);
79             usage();
80         default:    /* should not reached */
81             usage();
82         }
83     }
84     /* ***********************************************************
85      * 
86      *           Options processing completed
87      *
88      *                Main code beginning
89      * 
90      * ***********************************************************/
91     /* create socket */
92     if ( (sock = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
93         perror("Socket creation error");
94         return 1;
95     }
96     /* initialize address */
97     memset((void *) &serv_add, 0, sizeof(serv_add)); /* clear server address */
98     serv_add.sin_family = AF_INET;                   /* address type is INET */
99     serv_add.sin_port = htons(7);                    /* echo port is 7 */
100     /* build address using inet_pton */
101     if ( (inet_pton(AF_INET, argv[optind], &serv_add.sin_addr)) <= 0) {
102         perror("Address creation error");
103         return 1;
104     }
105     /* extablish connection */
106     if (connect(sock, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
107         perror("Connection error");
108         return 1;
109     }
110     /* check if resetting on close is required */
111     if (reset) {
112         printf("Setting reset on close \n");
113         ling.l_onoff = 1;
114         ling.l_linger = 0;      
115         if (setsockopt(sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling))) {
116             perror("Cannot set linger");
117             exit(1);
118         }
119     }
120     /* do read/write operations */
121     ClientEcho(stdin, sock);
122     /* normal exit */
123     return 0;
124 }
125 /*
126  * routine to print usage info and exit 
127  */
128 void usage(void) {
129     printf("Take daytime from a remote host \n");
130     printf("Usage:\n");
131     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
132 //    printf("  -v         set verbosity on\n");
133     printf("  -r           require reset on closing\n");
134     printf("  -h           print this help\n");
135     exit(1);
136 }
137
138 void ClientEcho(FILE * filein, int socket) 
139 {
140     char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
141     int nread, nwrite; 
142     int maxfd;
143     fd_set fset;
144     /* initialize file descriptor set */
145     FD_ZERO(&fset);
146     maxfd = max(fileno(filein), socket) + 1;
147     while (1) {
148         FD_SET(socket, &fset);         /* set for the socket */
149         FD_SET(fileno(filein), &fset); /* set for the standard input */
150         select(maxfd, &fset, NULL, NULL, NULL); /* wait for read ready */
151         if (FD_ISSET(fileno(filein), &fset)) {  /* if ready on stdin */
152             if (fgets(sendbuff, MAXLINE, filein) == NULL) { /* if no input */
153                 return;                /* we stopped client */
154             } else {                   /* else we have to write to socket */
155                 nwrite = FullWrite(socket, sendbuff, strlen(sendbuff)); 
156                 if (nwrite < 0) {      /* on error stop */
157                     printf("Errore in scrittura: %s", strerror(errno));
158                     return;
159                 }
160             }
161         }
162         if (FD_ISSET(socket, &fset)) { /* if ready on socket */ 
163             nread = read(socket, recvbuff, strlen(sendbuff)); /* do read */
164             if (nread < 0) {  /* error condition, stop client */
165                 printf("Errore in lettura: %s\n", strerror(errno));
166                 return;
167             }
168             if (nread == 0) { /* server closed connection, stop */
169                 printf("EOF sul socket\n");
170                 return;
171             }
172             recvbuff[nread] = 0;   /* else read is ok, write on stdout */
173             if (fputs(recvbuff, stdout) == EOF) {
174                 perror("Errore in scrittura su terminale");
175                 return;
176             }
177         }
178     }
179 }