48d564cc7c6e0ad4f57d952b5d036bcb7fb7462a
[gapil.git] / sources / TCP_echod_fourth.c
1 /* TCP_echod.c
2  * 
3  * Copyright (C) 2001-2004 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$ 
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 keepalive = 0;
66     int compat = 0;
67     pid_t pid;
68     struct sockaddr_in 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, "hkdicw:")) != -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 'k':
91             keepalive = 1;
92             break;
93         case 'c':
94             compat = 1;
95             break;
96         case 'd':
97             debugging = 1;
98             break;
99         case 'w':
100             waiting = strtol(optarg, NULL, 10);
101             break;
102         case '?':   /* unrecognized options */
103             printf("Unrecognized options -%c\n",optopt);
104             usage();
105         default:    /* should not reached */
106             usage();
107         }
108     }
109     /* ***********************************************************
110      * 
111      *           Options processing completed
112      *
113      *                Main code beginning
114      * 
115      * ***********************************************************/
116     /* Main code begin here */
117     if (compat) {                             /* install signal handler */
118         Signal(SIGCHLD, HandSigCHLD);         /* non restarting handler */
119     } else {
120         SignalRestart(SIGCHLD, HandSigCHLD);  /* restarting handler */
121     }
122     /* create and bind socket */
123     if ( (list_fd = sockbind(argv[optind], "echo", 6, SOCK_STREAM)) < 0) {
124         return 1;
125     }   
126     /* release privileges and go daemon */
127     if (setgid(65534) !=0) { /* first give away group privileges */
128         perror("cannot give away group privileges");
129         exit(1);
130     }
131     if (setuid(65534) !=0) { /* and only after user ... */
132         perror("cannot give away user privileges");
133         exit(1);
134     }
135     if (demonize) {          /* go daemon */
136         openlog(argv[0], 0, LOG_DAEMON); /* open logging */
137         if (daemon(0, 0) != 0) {
138             perror("cannot start as daemon");
139             exit(1);
140         }
141     }
142     /* main body */
143     if (listen(list_fd, BACKLOG) < 0 ) {
144         PrintErr("listen error");
145         exit(1);
146     }
147     if (waiting) sleep(waiting);
148     /* handle echo to client */
149     while (1) {
150         /* accept connection */
151         len = sizeof(cli_add);
152         while (((conn_fd = accept(list_fd, (struct sockaddr *)&cli_add, &len)) 
153                 < 0) && (errno == EINTR)); 
154         if (conn_fd < 0) {
155             PrintErr("accept error");
156             exit(1);
157         }
158         if (debugging) {
159             inet_ntop(AF_INET, &cli_add.sin_addr, ipaddr, sizeof(ipaddr));
160             snprintf(debug, MAXLINE, "Accepted connection form %s\n", ipaddr);
161             if (demonize) {
162                 syslog(LOG_DEBUG, debug);
163             } else {
164                 printf("%s", debug);
165             }
166         }
167         /* fork to handle connection */
168         if ( (pid = fork()) < 0 ){
169             PrintErr("fork error");
170             exit(1);
171         }
172         if (pid == 0) {      /* child */
173             close(list_fd);          /* close listening socket */   
174             if (keepalive) {         /* enable keepalive ? */
175                 setsockopt(conn_fd, SOL_SOCKET, SO_KEEPALIVE, 
176                            &keepalive, sizeof(keepalive));
177             }
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("  -k           enable keepalive on connection\n");
205     printf("  -i           use interactively\n");
206     printf("  -c           disable BSD semantics\n");
207     printf("  -w N         wait N sec. before calling accept\n");
208     exit(1);
209 }
210 /*
211  * routine to handle echo for connection
212  */
213 void ServEcho(int sockfd) {
214     char buffer[MAXLINE];
215     int nread, nwrite;
216     char debug[MAXLINE+20];
217     /* main loop, reading 0 char means client close connection */
218     while ( (nread = read(sockfd, buffer, MAXLINE)) != 0) {
219         if (nread < 0) {
220             PrintErr("Errore in lettura");
221             return;
222         }
223         nwrite = FullWrite(sockfd, buffer, nread);
224         if (nwrite) {
225             PrintErr("Errore in scrittura");
226             return;
227         }
228         if (debugging) {
229             buffer[nread] = 0;
230             snprintf(debug, MAXLINE+20, "Letti %d byte, %s", nread, buffer);
231             if (demonize) {          /* daemon mode */
232                 syslog(LOG_DEBUG, debug);
233             } else {
234                 printf("%s", debug);
235             }
236         }
237     }
238     return;
239 }
240 /*
241  * routine to print error on stout or syslog
242  */
243 void PrintErr(char * error) {
244     if (demonize) {                       /* daemon mode */
245         syslog(LOG_ERR, "%s: %m", error); /* log string and error message */
246     } else {
247         perror(error);
248     }
249     return;
250 }