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