Seconda parte della risistemazione delle dichiarazioni di inclusione.
[gapil.git] / sources / TCP_echo.c
1 /* TCP_echo.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.c
22  * Simple TCP client for echo service (port 7)
23  *
24  * Author: Simone Piccardi
25  * Jun. 2001
26  *
27  * Usage: echo -h give all info's
28  *
29  ****************************************************************/
30 /* 
31  * Include needed headers
32  */
33 #include <sys/types.h>   /* primitive system data types */
34 #include <unistd.h>      /* unix standard library */
35 #include <arpa/inet.h>   /* IP addresses conversion utilities */
36 #include <sys/socket.h>  /* socket constants, types and functions */
37 #include <stdio.h>       /* standard I/O library */
38 #include <errno.h>       /* error definitions and routines */
39 #include <string.h>      /* C strings library */
40 #include <stdlib.h>      /* C standard library */
41 #include <netinet/tcp.h> /* TCP constants and types */
42
43 /* still not defined in some include, because too new ... */
44 #ifndef TCP_CONGESTION
45 #define TCP_CONGESTION  13
46 #endif
47
48
49
50 #include "Gapil.h"
51 #include "macros.h"
52
53 #define MAXLINE 256
54 void usage(void);
55 void ClientEcho(FILE * filein, int socket);
56 void SigTERM_hand(int sig);
57
58 /* Program begin */
59 int main(int argc, char *argv[])
60 {
61 /* 
62  * Variables definition  
63  */
64     int sock, i;
65     socklen_t len;
66     int reset = 0;
67     int verbosity = 0;
68     char buffer[MAXLINE];
69     struct linger ling;
70     /*
71      * Input section: decode parameters passed in the calling 
72      * Use getopt function
73      */
74     opterr = 0;  /* don't want writing to stderr */
75     while ( (i = getopt(argc, argv, "hrv")) != -1) {
76         switch (i) {
77         /* 
78          * Handling options 
79          */ 
80         case 'h':  
81             printf("Wrong -h option use\n");
82             usage();
83             return(1);
84             break;
85         case 'v':
86             verbosity = 1;
87             break;
88         case 'r':
89             reset = 1;
90             break;
91         case '?':   /* unrecognized options */
92             printf("Unrecognized options -%c\n",optopt);
93             usage();
94         default:    /* should not reached */
95             usage();
96         }
97     }
98     /* ***********************************************************
99      * 
100      *           Options processing completed
101      *
102      *                Main code beginning
103      * 
104      * ***********************************************************/
105     /* call sockconn to get a connected socket */
106     if ( (sock = sockconn(argv[optind], "echo", 6, SOCK_STREAM)) < 0) {
107         if (errno) perror("Socket creation error");
108         return 1;
109     }
110     /* print some info about the socket, used to test some TCP_* options */
111     if (verbosity) {
112         len = sizeof(buffer);
113         if (getsockopt(sock, SOL_TCP, TCP_CONGESTION, buffer, &len) < 0) {
114             perror("Cannot read congestion algorithm");
115         } else {
116             buffer[len]=0;
117             printf("Congestion algorithm %s\n", buffer);
118         }
119     }
120     /* check if resetting on close is required */
121     if (reset) {
122         printf("Setting reset on close \n");
123         ling.l_onoff = 1;
124         ling.l_linger = 0;      
125         if (setsockopt(sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling))) {
126             perror("Cannot set linger");
127             exit(1);
128         }
129     }
130     /* do read/write operations */
131     ClientEcho(stdin, sock);
132     /* normal exit */
133     return 0;
134 }
135 /*
136  * routine to print usage info and exit 
137  */
138 void usage(void) {
139     printf("Take daytime from a remote host \n");
140     printf("Usage:\n");
141     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
142 //    printf("  -v         set verbosity on\n");
143     printf("  -r           require reset on closing\n");
144     printf("  -h           print this help\n");
145     exit(1);
146 }
147
148 void ClientEcho(FILE * filein, int socket) 
149 {
150     char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
151     int nread, nwrite; 
152     int maxfd;
153     fd_set fset;
154     int eof = 0;
155     /* initialize file descriptor set */
156     FD_ZERO(&fset);
157     maxfd = max(fileno(filein), socket) + 1;
158     while (1) {
159         FD_SET(socket, &fset);         /* set for the socket */
160         if (eof == 0) {
161             FD_SET(fileno(filein), &fset); /* set for the standard input */
162         }
163         select(maxfd, &fset, NULL, NULL, NULL); /* wait for read ready */
164         if (FD_ISSET(fileno(filein), &fset)) {  /* if ready on stdin */
165             if (fgets(sendbuff, MAXLINE, filein) == NULL) { /* if no input */
166                 eof = 1;               /* EOF on input */
167                 shutdown(socket, SHUT_WR);      /* close write half */
168                 FD_CLR(fileno(filein), &fset);  /* no more interest on stdin */
169             } else {                   /* else we have to write to socket */
170                 nwrite = FullWrite(socket, sendbuff, strlen(sendbuff)); 
171                 if (nwrite < 0) {      /* on error stop */
172                     printf("Errore in scrittura: %s", strerror(errno));
173                     return;
174                 }
175             }
176         }
177         if (FD_ISSET(socket, &fset)) { /* if ready on socket */ 
178             nread = read(socket, recvbuff, strlen(sendbuff)); /* do read */
179             if (nread < 0) {  /* error condition, stop client */
180                 printf("Errore in lettura: %s\n", strerror(errno));
181                 return;
182             }
183             if (nread == 0) { /* server closed connection, stop */
184                 if (eof == 1) {
185                     return;
186                 } else {
187                     printf("EOF prematuro sul socket\n");
188                     return;
189                 }
190             }
191             recvbuff[nread] = 0;   /* else read is ok, write on stdout */
192             if (fputs(recvbuff, stdout) == EOF) {
193                 perror("Errore in scrittura su terminale");
194                 return;
195             }
196         }
197     }
198 }