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