Versione finale del client ECHO su TCP, con esempio di uso della funzione
[gapil.git] / sources / TCP_echod.c
1 /* TCP_echod.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 echod 
22  * Elementary TCP server for echo service (port 7)
23  *
24  * Author: Simone Piccardi
25  * Jun. 2001
26  *
27  * Usage: echod -h give all info
28  *
29  * $Id: TCP_echod.c,v 1.12 2003/08/03 18:12:47 piccardi Exp $ 
30  *
31  ****************************************************************/
32 /* 
33  * Include needed headers
34  */
35 #include <sys/types.h>   /* predefined types */
36 #include <unistd.h>      /* include unix standard library */
37 #include <arpa/inet.h>   /* IP addresses conversion utiliites */
38 #include <sys/socket.h>  /* socket library */
39 #include <stdio.h>       /* include standard I/O library */
40 #include <time.h>
41 #include <syslog.h>      /* syslog system functions */
42 #include <signal.h>      /* signal functions */
43 #include <errno.h>       /* error code */
44 #include <string.h>      /* error strings */
45 #include "Gapil.h"
46
47 #define BACKLOG 10
48 #define MAXLINE 256
49 int demonize  = 1;  /* daemon use option: default is daemon */
50 int debugging = 0;  /* debug info printing option: default is no debug */
51 /* Subroutines declaration */
52 void usage(void);
53 void ServEcho(int sockfd);
54 void PrintErr(char * error);
55 /* Program beginning */
56 int main(int argc, char *argv[])
57 {
58 /* 
59  * Variables definition  
60  */
61     int list_fd, conn_fd;
62     int waiting = 0;
63     int compat = 0;
64     pid_t pid;
65     struct sockaddr_in serv_add, cli_add;
66     socklen_t len;
67     char debug[MAXLINE], ipaddr[20];
68     /*
69      * Input section: decode parameters passed in the calling 
70      * Use getopt function
71      */
72     int i;
73     opterr = 0;  /* don't want writing to stderr */
74     while ( (i = getopt(argc, argv, "hdicw:")) != -1) {
75         switch (i) {
76         /* 
77          * Handling options 
78          */ 
79         case 'h':  
80             printf("Wrong -h option use\n");
81             usage();
82             return(0);
83             break;
84         case 'i':
85             demonize = 0;
86             break;
87         case 'c':
88             compat = 1;
89             break;
90         case 'd':
91             debugging = 1;
92             break;
93         case 'w':
94             waiting = strtol(optarg, NULL, 10);
95             break;
96         case '?':   /* unrecognized options */
97             printf("Unrecognized options -%c\n",optopt);
98             usage();
99         default:    /* should not reached */
100             usage();
101         }
102     }
103     /* ***********************************************************
104      * 
105      *           Options processing completed
106      *
107      *                Main code beginning
108      * 
109      * ***********************************************************/
110     /* Main code begin here */
111     if (compat) {                             /* install signal handler */
112         Signal(SIGCHLD, HandSigCHLD);         /* non restarting handler */
113     } else {
114         SignalRestart(SIGCHLD, HandSigCHLD);  /* restarting handler */
115     }
116     /* create socket */
117     if ( (list_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
118         perror("Socket creation error");
119         exit(1);
120     }
121     /* initialize address */
122     memset((void *)&serv_add, 0, sizeof(serv_add)); /* clear server address */
123     serv_add.sin_family = AF_INET;                  /* address type is INET */
124     serv_add.sin_port = htons(7);                   /* echo port is 7 */
125     serv_add.sin_addr.s_addr = htonl(INADDR_ANY);   /* connect from anywhere */
126     /* bind socket */
127     if (bind(list_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
128         perror("bind error");
129         exit(1);
130     }
131     /* release privileges and go daemon */
132     if (setgid(65534) !=0) { /* first give away group privileges */
133         perror("cannot give away group privileges");
134         exit(1);
135     }
136     if (setuid(65534) !=0) { /* and only after user ... */
137         perror("cannot give away user privileges");
138         exit(1);
139     }
140     if (demonize) {          /* go daemon */
141         openlog(argv[0], 0, LOG_DAEMON); /* open logging */
142         if (daemon(0, 0) != 0) {
143             perror("cannot start as daemon");
144             exit(1);
145         }
146     }
147     /* main body */
148     if (listen(list_fd, BACKLOG) < 0 ) {
149         PrintErr("listen error");
150         exit(1);
151     }
152     if (waiting) sleep(waiting);
153     /* handle echo to client */
154     while (1) {
155         /* accept connection */
156         while (((conn_fd = accept(list_fd, (struct sockaddr *)&cli_add, &len)) 
157                 < 0) && (errno == EINTR)); 
158         if ( conn_fd < 0) {
159             PrintErr("accept error");
160             exit(1);
161         }
162         if (debugging) {
163             inet_ntop(AF_INET, &cli_add.sin_addr, ipaddr, sizeof(ipaddr));
164             snprintf(debug, MAXLINE, "Accepted connection form %s\n", ipaddr);
165             if (demonize) {
166                 syslog(LOG_DEBUG, debug);
167             } else {
168                 printf("%s", debug);
169             }
170         }
171         /* fork to handle connection */
172         if ( (pid = fork()) < 0 ){
173             PrintErr("fork error");
174             exit(1);
175         }
176         if (pid == 0) {      /* child */
177             close(list_fd);          /* close listening socket */   
178             ServEcho(conn_fd);       /* handle echo */
179             if (debugging) {
180                 snprintf(debug, MAXLINE, "Closed connection %s\n", ipaddr);
181                 if (demonize) {
182                     syslog(LOG_DEBUG, debug);
183                 } else {
184                     printf("%s", debug);
185                 }
186             }
187             exit(0);
188         } else {             /* parent */
189             close(conn_fd);          /* close connected socket */
190         }
191     }
192     /* normal exit, never reached */
193     exit(0);
194 }
195 /*
196  * routine to print usage info and exit
197  */
198 void usage(void) {
199     printf("Elementary echo server\n");
200     printf("Usage:\n");
201     printf("  echod [-h] \n");
202     printf("  -h           print this help\n");
203     printf("  -d           write debug info\n");
204     printf("  -i           use interactively\n");
205     printf("  -c           disable BSD semantics\n");
206     printf("  -w N         wait N sec. before calling accept\n");
207     exit(1);
208 }
209 /*
210  * routine to handle echo for connection
211  */
212 void ServEcho(int sockfd) {
213     char buffer[MAXLINE];
214     int nread, nwrite;
215     char debug[MAXLINE+20];
216     /* main loop, reading 0 char means client close connection */
217     while ( (nread = read(sockfd, buffer, MAXLINE)) != 0) {
218         if (nread < 0) {
219             PrintErr("Errore in lettura");
220             return;
221         }
222         nwrite = FullWrite(sockfd, buffer, nread);
223         if (nwrite) {
224             PrintErr("Errore in scrittura");
225             return;
226         }
227         if (debugging) {
228             buffer[nread] = 0;
229             snprintf(debug, MAXLINE+20, "Letti %d byte, %s", nread, buffer);
230             if (demonize) {          /* daemon mode */
231                 syslog(LOG_DEBUG, debug);
232             } else {
233                 printf("%s", debug);
234             }
235         }
236     }
237     return;
238 }
239 /*
240  * routine to print error on stout or syslog
241  */
242 void PrintErr(char * error) {
243     if (demonize) {                       /* daemon mode */
244         syslog(LOG_ERR, "%s: %m", error); /* log string and error message */
245     } else {
246         perror(error);
247     }
248     return;
249 }