seconda prova
[gapil.git] / sources / TCP_echod_first.c
1 /* TCP_echod_first.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_first.c,v 1.2 2003/07/27 23:41:04 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     pid_t pid;
63     struct sockaddr_in serv_add;
64     /*
65      * Input section: decode parameters passed in the calling 
66      * Use getopt function
67      */
68     int i;
69     opterr = 0;  /* don't want writing to stderr */
70     while ( (i = getopt(argc, argv, "hdi")) != -1) {
71         switch (i) {
72         /* 
73          * Handling options 
74          */ 
75         case 'h':  
76             printf("Wrong -h option use\n");
77             usage();
78             return(0);
79             break;
80         case 'i':
81             demonize = 0;
82             break;
83         case 'd':
84             debugging = 1;
85             break;
86         case '?':   /* unrecognized options */
87             printf("Unrecognized options -%c\n",optopt);
88             usage();
89         default:    /* should not reached */
90             usage();
91         }
92     }
93     /* ***********************************************************
94      * 
95      *           Options processing completed
96      *
97      *                Main code beginning
98      * 
99      * ***********************************************************/
100     /* install SIGCHLD handler */
101     Signal(SIGCHLD, HandSigCHLD);  /* establish handler */
102     /* create socket */
103     if ( (list_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
104         perror("Socket creation error");
105         exit(1);
106     }
107     /* initialize address */
108     memset((void *)&serv_add, 0, sizeof(serv_add)); /* clear server address */
109     serv_add.sin_family = AF_INET;                  /* address type is INET */
110     serv_add.sin_port = htons(7);                   /* echo port is 7 */
111     serv_add.sin_addr.s_addr = htonl(INADDR_ANY);   /* connect from anywhere */
112     /* bind socket */
113     if (bind(list_fd, (struct sockaddr *)&serv_add, sizeof(serv_add)) < 0) {
114         perror("bind error");
115         exit(1);
116     }
117     /* release privileges and go daemon */
118     if (setgid(65534) !=0) { /* first give away group privileges */
119         perror("cannot give away group privileges");
120         exit(1);
121     }
122     if (setuid(65534) !=0) { /* and only after user ... */
123         perror("cannot give away user privileges");
124         exit(1);
125     }
126     if (demonize) {          /* go daemon */
127         openlog(argv[0], 0, LOG_DAEMON); /* open logging */
128         if (daemon(0, 0) != 0) {
129             perror("cannot start as daemon");
130             exit(1);
131         }
132     }
133     /* main body */
134     if (listen(list_fd, BACKLOG) < 0 ) {
135         PrintErr("listen error");
136         exit(1);
137     }
138     /* handle echo to client */
139     while (1) {
140         /* accept connection */
141         if ( (conn_fd = accept(list_fd, NULL, NULL)) < 0) {
142             PrintErr("accept error");
143             exit(1);
144         }
145         /* fork to handle connection */
146         if ( (pid = fork()) < 0 ){
147             PrintErr("fork error");
148             exit(1);
149         }
150         if (pid == 0) {      /* child */
151             close(list_fd);          /* close listening socket */   
152             ServEcho(conn_fd);       /* handle echo */
153             exit(0);
154         } else {             /* parent */
155             close(conn_fd);          /* close connected socket */
156         }
157     }
158     /* normal exit, never reached */
159     exit(0);
160 }
161 /*
162  * routine to print usage info and exit
163  */
164 void usage(void) {
165     printf("Elementary echo server\n");
166     printf("Usage:\n");
167     printf("  echod [-h] \n");
168     printf("  -h           print this help\n");
169     printf("  -d           print debug info\n");
170     printf("  -i           use interactively\n");
171     exit(1);
172 }
173 /*
174  * routine to handle echo for connection
175  */
176 void ServEcho(int sockfd) {
177     char buffer[MAXLINE];
178     int nread, nwrite;
179     char debug[MAXLINE+20];
180     int size;
181     /* main loop, reading 0 char means client close connection */
182     while ( (nread = read(sockfd, buffer, MAXLINE)) != 0) {
183         nwrite = FullWrite(sockfd, buffer, nread);
184         if (nwrite) {
185             PrintErr("write error");
186         }
187     }
188     return;
189 }
190 /*
191  * routine to print error on stout or syslog
192  */
193 void PrintErr(char * error) {
194     if (demonize) {                       /* daemon mode */
195         syslog(LOG_ERR, "%s: %m", error); /* log string and error message */
196     } else {
197         perror(error);
198     }
199     return;
200 }