77b3e0d62f5dfc7912509fa553b2be87d872344d
[nbd.git] / nbd-server.c
1 /*
2  * Network Block Device - server
3  *
4  * Copyright 1996-1998 Pavel Machek, distribute under GPL
5  *  <pavel@atrey.karlin.mff.cuni.cz>
6  * Copyright 2001-2004 Wouter Verhelst <wouter@debian.org>
7  * Copyright 2002 Anton Altaparmakov <aia21@cam.ac.uk>
8  *
9  * Version 1.0 - hopefully 64-bit-clean
10  * Version 1.1 - merging enhancements from Josh Parsons, <josh@coombs.anu.edu.au>
11  * Version 1.2 - autodetect size of block devices, thanx to Peter T. Breuer" <ptb@it.uc3m.es>
12  * Version 1.5 - can compile on Unix systems that don't have 64 bit integer
13  *      type, or don't have 64 bit file offsets by defining FS_32BIT
14  *      in compile options for nbd-server *only*. This can be done
15  *      with make FSCHOICE=-DFS_32BIT nbd-server. (I don't have the
16  *      original autoconf input file, or I would make it a configure
17  *      option.) Ken Yap <ken@nlc.net.au>.
18  * Version 1.6 - fix autodetection of block device size and really make 64 bit
19  *      clean on 32 bit machines. Anton Altaparmakov <aia21@cam.ac.uk>
20  * Version 2.0 - Version synchronised with client
21  * Version 2.1 - Reap zombie client processes when they exit. Removed
22  *      (uncommented) the _IO magic, it's no longer necessary. Wouter
23  *      Verhelst <wouter@debian.org>
24  * Version 2.2 - Auto switch to read-only mode (usefull for floppies).
25  * Version 2.3 - Fixed code so that Large File Support works. This
26  *      removes the FS_32BIT compile-time directive; define
27  *      _FILE_OFFSET_BITS=64 and _LARGEFILE_SOURCE if you used to be
28  *      using FS_32BIT. This will allow you to use files >2GB instead of
29  *      having to use the -m option. Wouter Verhelst <wouter@debian.org>
30  * Version 2.4 - Added code to keep track of children, so that we can
31  *      properly kill them from initscripts. Add a call to daemon(),
32  *      so that processes don't think they have to wait for us, which is
33  *      interesting for initscripts as well. Wouter Verhelst
34  *      <wouter@debian.org>
35  * Version 2.5 - Bugfix release: forgot to reset child_arraysize to
36  *      zero after fork()ing, resulting in nbd-server going berserk
37  *      when it receives a signal with at least one child open. Wouter
38  *      Verhelst <wouter@debian.org>
39  * 10/10/2003 - Added socket option SO_KEEPALIVE (sf.net bug 819235);
40  *      rectified type of mainloop::size_host (sf.net bugs 814435 and
41  *      817385); close the PID file after writing to it, so that the
42  *      daemon can actually be found. Wouter Verhelst
43  *      <wouter@debian.org>
44  * 10/10/2003 - Size of the data "size_host" was wrong and so was not
45  *      correctly put in network endianness. Many types were corrected
46  *      (size_t and off_t instead of int).  <vspaceg@sourceforge.net>
47  * Version 2.6 - Some code cleanup.
48  * Version 2.7 - Better build system.
49  * 11/02/2004 - Doxygenified the source, modularized it a bit. Needs a 
50  *      lot more work, but this is a start. Wouter Verhelst
51  *      <wouter@debian.org>
52  */
53
54 /* Includes LFS defines, which defines behaviours of some of the following
55  * headers, so must come before those */
56 #include "lfs.h"
57
58 #include <sys/types.h>
59 #include <sys/socket.h>
60 #include <sys/stat.h>
61 #include <sys/select.h>         /* select */
62 #include <sys/wait.h>           /* wait */
63 #ifdef HAVE_SYS_IOCTL_H
64 #include <sys/ioctl.h>
65 #endif
66 #include <sys/param.h>
67 #ifdef HAVE_SYS_MOUNT_H
68 #include <sys/mount.h>          /* For BLKGETSIZE */
69 #endif
70 #include <signal.h>             /* sigaction */
71 #include <netinet/tcp.h>
72 #include <netinet/in.h>         /* sockaddr_in, htons, in_addr */
73 #include <netdb.h>              /* hostent, gethostby*, getservby* */
74 #include <syslog.h>
75 #include <unistd.h>
76 #include <stdio.h>
77 #include <stdlib.h>
78 #include <string.h>
79 #include <fcntl.h>
80 #include <arpa/inet.h>
81 #include <strings.h>
82 #include <dirent.h>
83 #include <unistd.h>
84 #include <getopt.h>
85
86 #include <glib.h>
87
88 /* used in cliserv.h, so must come first */
89 #define MY_NAME "nbd_server"
90 #include "cliserv.h"
91
92 /** Default position of the config file */
93 #ifndef SYSCONFDIR
94 #define SYSCONFDIR "/etc"
95 #endif
96 #define CFILE SYSCONFDIR "/nbd-server/config"
97
98 /** Where our config file actually is */
99 gchar* config_file_pos;
100
101 /** Logging macros, now nothing goes to syslog unless you say ISSERVER */
102 #ifdef ISSERVER
103 #define msg2(a,b) syslog(a,b)
104 #define msg3(a,b,c) syslog(a,b,c)
105 #define msg4(a,b,c,d) syslog(a,b,c,d)
106 #else
107 #define msg2(a,b) g_message(b)
108 #define msg3(a,b,c) g_message(b,c)
109 #define msg4(a,b,c,d) g_message(b,c,d)
110 #endif
111
112 /* Debugging macros */
113 //#define DODBG
114 #ifdef DODBG
115 #define DEBUG( a ) printf( a )
116 #define DEBUG2( a,b ) printf( a,b )
117 #define DEBUG3( a,b,c ) printf( a,b,c )
118 #else
119 #define DEBUG( a )
120 #define DEBUG2( a,b ) 
121 #define DEBUG3( a,b,c ) 
122 #endif
123 #ifndef PACKAGE_VERSION
124 #define PACKAGE_VERSION ""
125 #endif
126 /**
127  * The highest value a variable of type off_t can reach. This is a signed
128  * integer, so set all bits except for the leftmost one.
129  **/
130 #define OFFT_MAX ~((off_t)1<<(sizeof(off_t)*8-1))
131 #define LINELEN 256       /**< Size of static buffer used to read the
132                             authorization file (yuck) */
133 #define BUFSIZE (1024*1024) /**< Size of buffer that can hold requests */
134 #define GIGA (1*1024*1024*1024) /**< 1 Gigabyte. Used as hunksize when doing
135                                   the multiple file thingy. @todo: make this a
136                                   configuration option. */
137 #define DIFFPAGESIZE 4096 /**< diff file uses those chunks */
138 #define F_READONLY 1      /**< flag to tell us a file is readonly */
139 #define F_MULTIFILE 2     /**< flag to tell us a file is exported using -m */
140 #define F_COPYONWRITE 4   /**< flag to tell us a file is exported using
141                             copyonwrite */
142 #define F_AUTOREADONLY 8  /**< flag to tell us a file is set to autoreadonly */
143 GHashTable *children;
144 char pidfname[256]; /**< name of our PID file */
145 char default_authname[] = "/etc/nbd_server.allow"; /**< default name of allow file */
146
147 /**
148  * Variables associated with a server.
149  **/
150 typedef struct {
151         gchar* exportname;    /**< (unprocessed) filename of the file we're exporting */
152         off_t hunksize;      /**< size of a hunk of an exported file */
153         off_t expected_size; /**< size of the exported file as it was told to
154                                us through configuration */
155         unsigned int port;   /**< port we're exporting this file at */
156         char* authname;      /**< filename of the authorization file */
157         int flags;           /**< flags associated with this exported file */
158         unsigned int timeout;/**< how long a connection may be idle
159                                (0=forever) */
160         int socket;          /**< The socket of this server. */
161 } SERVER;
162
163 /**
164  * Variables associated with a client socket.
165  **/
166 typedef struct {
167         off_t exportsize;    /**< size of the file we're exporting */
168         char *clientname;    /**< peer */
169         char *exportname;    /**< (processed) filename of the file we're exporting */
170         GArray *export;    /**< array of filedescriptors of exported files;
171                                only the first is actually used unless we're
172                                doing the multiple file option */
173         int net;             /**< The actual client socket */
174         SERVER *server;      /**< The server this client is getting data from */
175         char* difffilename;  /**< filename of the copy-on-write file, if any */
176         int difffile;        /**< filedescriptor of copyonwrite file. @todo
177                                shouldn't this be an array too? (cfr export) Or
178                                make -m and -c mutually exclusive */
179         u32 difffilelen;     /**< number of pages in difffile */
180         u32 *difmap;         /**< see comment on the global difmap for this one */
181 } CLIENT;
182
183 /**
184  * Type of configuration file values
185  **/
186 typedef enum {
187         PARAM_INT,              /**< This parameter is an integer */
188         PARAM_STRING,           /**< This parameter is a string */
189         PARAM_BOOL,             /**< This parameter is a boolean */
190 } PARAM_TYPE;
191 /**
192  * Configuration file values
193  **/
194 typedef struct {
195         gchar *paramname;       /**< Name of the parameter, as it appears in
196                                   the config file */
197         gboolean required;      /**< Whether this is a required (as opposed to
198                                   optional) parameter */
199         PARAM_TYPE ptype;       /**< Type of the parameter. */
200         gpointer target;        /**< Pointer to where the data of this
201                                   parameter should be written. If ptype is
202                                   PARAM_BOOL, the data is or'ed rather than
203                                   overwritten. */
204         gint flagval;           /**< Flag mask for this parameter in case ptype
205                                   is PARAM_BOOL. */
206 } PARAM;
207
208 /**
209  * Check whether a client is allowed to connect. Works with an authorization
210  * file which contains one line per machine, no wildcards.
211  *
212  * @param opts The client who's trying to connect.
213  * @return 0 - authorization refused, 1 - OK
214  **/
215 int authorized_client(CLIENT *opts) {
216         FILE *f ;
217    
218         char line[LINELEN]; 
219
220         if ((f=fopen(opts->server->authname,"r"))==NULL) {
221                 msg4(LOG_INFO,"Can't open authorization file %s (%s).",
222                      opts->server->authname,strerror(errno)) ;
223                 return 1 ; 
224         }
225   
226         while (fgets(line,LINELEN,f)!=NULL) {
227                 if (strncmp(line,opts->clientname,strlen(opts->clientname))==0) {
228                         fclose(f);
229                         return 1;
230                 }
231         }
232         fclose(f) ;
233         return 0 ;
234 }
235
236 /**
237  * Read data from a file descriptor into a buffer
238  *
239  * @param f a file descriptor
240  * @param buf a buffer
241  * @param len the number of bytes to be read
242  **/
243 inline void readit(int f, void *buf, size_t len) {
244         ssize_t res;
245         while (len > 0) {
246                 DEBUG("*");
247                 if ((res = read(f, buf, len)) <= 0)
248                         err("Read failed: %m");
249                 len -= res;
250                 buf += res;
251         }
252 }
253
254 /**
255  * Write data from a buffer into a filedescriptor
256  *
257  * @param f a file descriptor
258  * @param buf a buffer containing data
259  * @param len the number of bytes to be written
260  **/
261 inline void writeit(int f, void *buf, size_t len) {
262         ssize_t res;
263         while (len > 0) {
264                 DEBUG("+");
265                 if ((res = write(f, buf, len)) <= 0)
266                         err("Send failed: %m");
267                 len -= res;
268                 buf += res;
269         }
270 }
271
272 /**
273  * Print out a message about how to use nbd-server. Split out to a separate
274  * function so that we can call it from multiple places
275  */
276 void usage() {
277         printf("This is nbd-server version " VERSION "\n");
278         printf("Usage: port file_to_export [size][kKmM] [-l authorize_file] [-r] [-m] [-c] [-a timeout_sec] [-C configuration file]\n"
279                "\t-r|--read-only\t\tread only\n"
280                "\t-m|--multi-file\t\tmultiple file\n"
281                "\t-c|--copy-on-write\tcopy on write\n"
282                "\t-C|--config-file\tspecify an alternat configuration file\n"
283                "\t-l|--authorize-file\tfile with list of hosts that are allowed to\n\t\t\t\tconnect.\n"
284                "\t-a|--idle-time\t\tmaximum idle seconds; server terminates when\n\t\t\t\tidle time exceeded\n\n"
285                "\tif port is set to 0, stdin is used (for running from inetd)\n"
286                "\tif file_to_export contains '%%s', it is substituted with the IP\n"
287                "\t\taddress of the machine trying to connect\n" );
288         printf("Using configuration file %s\n", CFILE);
289 }
290
291 /**
292  * Parse the command line.
293  *
294  * @param argc the argc argument to main()
295  * @param argv the argv argument to main()
296  **/
297 SERVER* cmdline(int argc, char *argv[]) {
298         int i=0;
299         int nonspecial=0;
300         int c;
301         struct option long_options[] = {
302                 {"read-only", no_argument, NULL, 'r'},
303                 {"multi-file", no_argument, NULL, 'm'},
304                 {"copy-on-write", no_argument, NULL, 'c'},
305                 {"authorize-file", required_argument, NULL, 'l'},
306                 {"idle-time", required_argument, NULL, 'a'},
307                 {"config-file", required_argument, NULL, 'C'},
308                 {0,0,0,0}
309         };
310         SERVER *serve;
311         off_t es;
312         size_t last;
313         char suffix;
314
315         if(argc==1) {
316                 return NULL;
317         }
318         serve=g_new0(SERVER, 1);
319         serve->hunksize=OFFT_MAX;
320         serve->authname = g_strdup(default_authname);
321         while((c=getopt_long(argc, argv, "-a:C:cl:mr", long_options, &i))>=0) {
322                 switch (c) {
323                 case 1:
324                         /* non-option argument */
325                         switch(nonspecial++) {
326                         case 0:
327                                 serve->port=strtol(optarg, NULL, 0);
328                                 break;
329                         case 1:
330                                 serve->exportname = g_strdup(optarg);
331                                 if(serve->exportname[0] != '/') {
332                                         fprintf(stderr, "E: The to be exported file needs to be an absolute filename!\n");
333                                         exit(EXIT_FAILURE);
334                                 }
335                                 break;
336                         case 2:
337                                 last=strlen(optarg)-1;
338                                 suffix=optarg[last];
339                                 if (suffix == 'k' || suffix == 'K' ||
340                                     suffix == 'm' || suffix == 'M')
341                                         optarg[last] = '\0';
342                                 es = (off_t)atol(optarg);
343                                 switch (suffix) {
344                                         case 'm':
345                                         case 'M':  es <<= 10;
346                                         case 'k':
347                                         case 'K':  es <<= 10;
348                                         default :  break;
349                                 }
350                                 serve->expected_size = es;
351                                 break;
352                         }
353                         break;
354                 case 'r':
355                         serve->flags |= F_READONLY;
356                         break;
357                 case 'm':
358                         serve->flags |= F_MULTIFILE;
359                         serve->hunksize = 1*GIGA;
360                         break;
361                 case 'c': 
362                         serve->flags |=F_COPYONWRITE;
363                         break;
364                 case 'C':
365                         g_free(config_file_pos);
366                         config_file_pos=g_strdup(optarg);
367                         break;
368                 case 'l':
369                         g_free(serve->authname);
370                         serve->authname=g_strdup(optarg);
371                         break;
372                 case 'a': 
373                         serve->timeout=strtol(optarg, NULL, 0);
374                         break;
375                 default:
376                         usage();
377                         exit(EXIT_FAILURE);
378                         break;
379                 }
380         }
381         /* What's left: the port to export, the name of the to be exported
382          * file, and, optionally, the size of the file, in that order. */
383         if(nonspecial<2) {
384                 g_free(serve);
385                 serve=NULL;
386         }
387         return serve;
388 }
389
390 /**
391  * Error codes for config file parsing
392  **/
393 typedef enum {
394         CFILE_NOTFOUND,         /**< The configuration file is not found */
395         CFILE_MISSING_GENERIC,  /**< The (required) group "generic" is missing */
396         CFILE_KEY_MISSING,      /**< A (required) key is missing */
397         CFILE_VALUE_INVALID,    /**< A value is syntactically invalid */
398         CFILE_PROGERR           /**< Programmer error */
399 } CFILE_ERRORS;
400
401 /**
402  * Remove a SERVER from memory. Used from the hash table
403  **/
404 void remove_server(gpointer s) {
405         SERVER *server;
406
407         server=(SERVER*)s;
408         g_free(server->exportname);
409         if(server->authname)
410                 g_free(server->authname);
411         g_free(server);
412 }
413
414 /**
415  * Parse the config file.
416  *
417  * @param f the name of the config file
418  * @param e a GError. @see CFILE_ERRORS for what error values this function can
419  *      return.
420  * @return a GHashTable of SERVER* pointers, with the port number as the hash
421  *      key. If the config file is empty or does not exist, returns an empty
422  *      GHashTable; if the config file contains an error, returns NULL, and
423  *      e is set appropriately
424  **/
425 GArray* parse_cfile(gchar* f, GError** e) {
426         const char* DEFAULT_ERROR = "Could not parse %s in group %s: %s";
427         const char* MISSING_REQUIRED_ERROR = "Could not find required value %s in group %s: %s";
428         SERVER s;
429         PARAM p[] = {
430                 { "exportname", TRUE,   PARAM_STRING,   NULL, 0 },
431                 { "port",       TRUE,   PARAM_INT,      NULL, 0 },
432                 { "authfile",   FALSE,  PARAM_STRING,   NULL, 0 },
433                 { "timeout",    FALSE,  PARAM_INT,      NULL, 0 },
434                 { "filesize",   FALSE,  PARAM_INT,      NULL, 0 },
435                 { "readonly",   FALSE,  PARAM_BOOL,     NULL, F_READONLY },
436                 { "multifile",  FALSE,  PARAM_BOOL,     NULL, F_MULTIFILE },
437                 { "copyonwrite", FALSE, PARAM_BOOL,     NULL, F_COPYONWRITE },
438         };
439         const int p_size=8;
440         GKeyFile *cfile;
441         GError *err = NULL;
442         const char *err_msg=NULL;
443         GQuark errdomain;
444         GArray *retval=NULL;
445         gchar **groups;
446         gboolean value;
447         gint i,j;
448
449         memset(&s, '\0', sizeof(SERVER));
450         errdomain = g_quark_from_string("parse_cfile");
451         cfile = g_key_file_new();
452         retval = g_array_new(FALSE, TRUE, sizeof(SERVER));
453         if(!g_key_file_load_from_file(cfile, f, G_KEY_FILE_KEEP_COMMENTS |
454                         G_KEY_FILE_KEEP_TRANSLATIONS, &err)) {
455                 g_set_error(e, errdomain, CFILE_NOTFOUND, "Could not open config file.");
456                 g_key_file_free(cfile);
457                 return retval;
458         }
459         if(strcmp(g_key_file_get_start_group(cfile), "generic")) {
460                 g_set_error(e, errdomain, CFILE_MISSING_GENERIC, "Config file does not contain the [generic] group!");
461                 g_key_file_free(cfile);
462                 return NULL;
463         }
464         groups = g_key_file_get_groups(cfile, NULL);
465         for(i=1;groups[i];i++) {
466                 p[0].target=&(s.exportname);
467                 p[1].target=&(s.port);
468                 p[2].target=&(s.authname);
469                 p[3].target=&(s.timeout);
470                 p[4].target=&(s.expected_size);
471                 p[5].target=p[6].target=p[7].target=&(s.flags);
472                 for(j=0;j<p_size;j++) {
473                         g_assert(p[j].target != NULL);
474                         g_assert(p[j].ptype==PARAM_INT||p[j].ptype==PARAM_STRING||p[j].ptype==PARAM_BOOL);
475                         switch(p[j].ptype) {
476                                 case PARAM_INT:
477                                         *((gint*)p[j].target) =
478                                                 g_key_file_get_integer(cfile,
479                                                                 groups[i],
480                                                                 p[j].paramname,
481                                                                 &err);
482                                         break;
483                                 case PARAM_STRING:
484                                         *((gchar**)p[j].target) =
485                                                 g_key_file_get_string(cfile,
486                                                                 groups[i],
487                                                                 p[j].paramname,
488                                                                 &err);
489                                         break;
490                                 case PARAM_BOOL:
491                                         value = g_key_file_get_boolean(cfile,
492                                                         groups[i],
493                                                         p[j].paramname, &err);
494                                         if(!err && value) {
495                                                 *((gint*)p[j].target) |= p[j].flagval;
496                                         }
497                                         break;
498                         }
499                         if(err) {
500                                 if(err->code == G_KEY_FILE_ERROR_KEY_NOT_FOUND) {
501                                         if(!p[j].required) {
502                                                 /* Ignore not-found error for optional values */
503                                                 g_clear_error(&err);
504                                                 continue;
505                                         } else {
506                                                 err_msg = MISSING_REQUIRED_ERROR;
507                                         }
508                                 } else {
509                                         err_msg = DEFAULT_ERROR;
510                                 }
511                                 g_set_error(e, errdomain, CFILE_VALUE_INVALID, err_msg, p[j].paramname, groups[i], err->message);
512                                 g_array_free(retval, TRUE);
513                                 g_error_free(err);
514                                 g_key_file_free(cfile);
515                                 return NULL;
516                         }
517                 }
518                 if(s.flags & F_MULTIFILE)
519                         s.hunksize = 1*GIGA;
520                 else
521                         s.hunksize = OFFT_MAX;
522                 g_array_append_val(retval, s);
523         }
524         return retval;
525 }
526
527 /**
528  * Signal handler for SIGCHLD
529  * @param s the signal we're handling (must be SIGCHLD, or something
530  * is severely wrong)
531  **/
532 void sigchld_handler(int s) {
533         int status;
534         int* i;
535         pid_t pid;
536
537         while((pid=waitpid(-1, &status, WNOHANG)) > 0) {
538                 if(WIFEXITED(&status)) {
539                         msg3(LOG_INFO, "Child exited with %d", WEXITSTATUS(status));
540                 }
541                 i=g_hash_table_lookup(children, &pid);
542                 if(!i) {
543                         msg3(LOG_INFO, "SIGCHLD received for an unknown child with PID %ld", (long)pid);
544                 } else {
545                         DEBUG2("Removing %d from the list of children", pid);
546                         g_hash_table_remove(children, &pid);
547                 }
548         }
549 }
550
551 /**
552  * Kill a child. Called from sigterm_handler::g_hash_table_foreach.
553  *
554  * @param key the key
555  * @param value the value corresponding to the above key
556  * @param user_data a pointer which we always set to 1, so that we know what
557  * will happen next.
558  **/
559 void killchild(gpointer key, gpointer value, gpointer user_data) {
560         pid_t *pid=value;
561         int *parent=user_data;
562
563         kill(*pid, SIGTERM);
564         *parent=1;
565 }
566
567 /**
568  * Handle SIGTERM and dispatch it to our children
569  * @param s the signal we're handling (must be SIGTERM, or something
570  * is severely wrong).
571  **/
572 void sigterm_handler(int s) {
573         int parent=0;
574
575         g_hash_table_foreach(children, killchild, &parent);
576
577         if(parent) {
578                 unlink(pidfname);
579         }
580
581         exit(0);
582 }
583
584 /**
585  * Detect the size of a file.
586  *
587  * @param export An open filedescriptor
588  * @return the size of the file, or OFFT_MAX if detection was
589  * impossible.
590  **/
591 off_t size_autodetect(int export) {
592         off_t es;
593         u32 es32;
594         struct stat stat_buf;
595         int error;
596
597 #ifdef HAVE_SYS_MOUNT_H
598 #ifdef HAVE_SYS_IOCTL_H
599 #ifdef BLKGETSIZE
600         DEBUG("looking for export size with ioctl BLKGETSIZE\n");
601         if (!ioctl(export, BLKGETSIZE, &es32) && es32) {
602                 es = (off_t)es32 * (off_t)512;
603                 return es;
604         }
605 #endif /* BLKGETSIZE */
606 #endif /* HAVE_SYS_IOCTL_H */
607 #endif /* HAVE_SYS_MOUNT_H */
608
609         DEBUG("looking for export size with fstat\n");
610         stat_buf.st_size = 0;
611         error = fstat(export, &stat_buf);
612         if (!error) {
613                 if(stat_buf.st_size > 0)
614                         return (off_t)stat_buf.st_size;
615         } else {
616                 err("fstat failed: %m");
617         }
618
619         DEBUG("looking for export size with lseek SEEK_END\n");
620         es = lseek(export, (off_t)0, SEEK_END);
621         if (es > ((off_t)0)) {
622                 return es;
623         } else {
624                 DEBUG2("lseek failed: %d", errno==EBADF?1:(errno==ESPIPE?2:(errno==EINVAL?3:4)));
625         }
626
627         err("Could not find size of exported block device: %m");
628         return OFFT_MAX;
629 }
630
631 /**
632  * seek to a position in a file, with error handling.
633  * @param handle a filedescriptor
634  * @param a position to seek to
635  * @todo get rid of this; lastpoint is a global variable right now, but it
636  * shouldn't be. If we pass it on as a parameter, that makes things a *lot*
637  * easier.
638  **/
639 void myseek(int handle,off_t a) {
640         if (lseek(handle, a, SEEK_SET) < 0) {
641                 err("Can not seek locally!\n");
642         }
643 }
644
645 /**
646  * Write an amount of bytes at a given offset to the right file. This
647  * abstracts the write-side of the multiple file option.
648  *
649  * @param a The offset where the write should start
650  * @param buf The buffer to write from
651  * @param len The length of buf
652  * @param client The client we're serving for
653  * @return The number of bytes actually written, or -1 in case of an error
654  **/
655 int rawexpwrite(off_t a, char *buf, size_t len, CLIENT *client) {
656         ssize_t res;
657
658         myseek(g_array_index(client->export, int, (int)(a/client->server->hunksize)), a%client->server->hunksize);
659         ;
660         res = write(g_array_index(client->export, int, (int)((off_t)a/(off_t)(client->server->hunksize))), buf, len);
661         return (res < 0 || (size_t)res != len);
662 }
663
664 /**
665  * Read an amount of bytes at a given offset from the right file. This
666  * abstracts the read-side of the multiple files option.
667  *
668  * @param a The offset where the read should start
669  * @param buf A buffer to read into
670  * @param len The size of buf
671  * @param client The client we're serving for
672  * @return The number of bytes actually read, or -1 in case of an
673  * error.
674  **/
675 int rawexpread(off_t a, char *buf, size_t len, CLIENT *client) {
676         ssize_t res;
677
678         myseek(g_array_index(client->export,int,(int)a/client->server->hunksize),
679                         a%client->server->hunksize);
680         res = read(g_array_index(client->export,int,(int)a/client->server->hunksize), buf, len);
681         return (res < 0 || (size_t)res != len);
682 }
683
684 /**
685  * Read an amount of bytes at a given offset from the right file. This
686  * abstracts the read-side of the copyonwrite stuff, and calls
687  * rawexpread() with the right parameters to do the actual work.
688  * @param a The offset where the read should start
689  * @param buf A buffer to read into
690  * @param len The size of buf
691  * @param client The client we're going to read for
692  * @return The number of bytes actually read, or -1 in case of an error
693  **/
694 int expread(off_t a, char *buf, size_t len, CLIENT *client) {
695         off_t rdlen, offset;
696         off_t mapcnt, mapl, maph, pagestart;
697
698         if (!(client->server->flags & F_COPYONWRITE))
699                 return rawexpread(a, buf, len, client);
700         DEBUG3("Asked to read %d bytes at %Lu.\n", len, (unsigned long long)a);
701
702         mapl=a/DIFFPAGESIZE; maph=(a+len-1)/DIFFPAGESIZE;
703
704         for (mapcnt=mapl;mapcnt<=maph;mapcnt++) {
705                 pagestart=mapcnt*DIFFPAGESIZE;
706                 offset=a-pagestart;
707                 rdlen=(0<DIFFPAGESIZE-offset && len<(size_t)(DIFFPAGESIZE-offset)) ?
708                         len : (size_t)DIFFPAGESIZE-offset;
709                 if (client->difmap[mapcnt]!=(u32)(-1)) { /* the block is already there */
710                         DEBUG3("Page %Lu is at %lu\n", (unsigned long long)mapcnt,
711                                (unsigned long)(client->difmap[mapcnt]));
712                         myseek(client->difffile, client->difmap[mapcnt]*DIFFPAGESIZE+offset);
713                         if (read(client->difffile, buf, rdlen) != rdlen) return -1;
714                 } else { /* the block is not there */
715                         DEBUG2("Page %Lu is not here, we read the original one\n",
716                                (unsigned long long)mapcnt);
717                         if(rawexpread(a, buf, rdlen, client)) return -1;
718                 }
719                 len-=rdlen; a+=rdlen; buf+=rdlen;
720         }
721         return 0;
722 }
723
724 /**
725  * Write an amount of bytes at a given offset to the right file. This
726  * abstracts the write-side of the copyonwrite option, and calls
727  * rawexpwrite() with the right parameters to do the actual work.
728  *
729  * @param a The offset where the write should start
730  * @param buf The buffer to write from
731  * @param len The length of buf
732  * @param client The client we're going to write for.
733  * @return The number of bytes actually written, or -1 in case of an error
734  **/
735 int expwrite(off_t a, char *buf, size_t len, CLIENT *client) {
736         char pagebuf[DIFFPAGESIZE];
737         off_t mapcnt,mapl,maph;
738         off_t wrlen,rdlen; 
739         off_t pagestart;
740         off_t offset;
741
742         if (!(client->server->flags & F_COPYONWRITE))
743                 return(rawexpwrite(a,buf,len, client)); 
744         DEBUG3("Asked to write %d bytes at %Lu.\n", len, (unsigned long long)a);
745
746         mapl=a/DIFFPAGESIZE ; maph=(a+len-1)/DIFFPAGESIZE ;
747
748         for (mapcnt=mapl;mapcnt<=maph;mapcnt++) {
749                 pagestart=mapcnt*DIFFPAGESIZE ;
750                 offset=a-pagestart ;
751                 wrlen=(0<DIFFPAGESIZE-offset && len<(size_t)(DIFFPAGESIZE-offset)) ?
752                         len : (size_t)DIFFPAGESIZE-offset;
753
754                 if (client->difmap[mapcnt]!=(u32)(-1)) { /* the block is already there */
755                         DEBUG3("Page %Lu is at %lu\n", (unsigned long long)mapcnt,
756                                (unsigned long)(client->difmap[mapcnt])) ;
757                         myseek(client->difffile,
758                                         client->difmap[mapcnt]*DIFFPAGESIZE+offset);
759                         if (write(client->difffile, buf, wrlen) != wrlen) return -1 ;
760                 } else { /* the block is not there */
761                         myseek(client->difffile,client->difffilelen*DIFFPAGESIZE) ;
762                         client->difmap[mapcnt]=client->difffilelen++ ;
763                         DEBUG3("Page %Lu is not here, we put it at %lu\n",
764                                (unsigned long long)mapcnt,
765                                (unsigned long)(client->difmap[mapcnt]));
766                         rdlen=DIFFPAGESIZE ;
767                         if (rdlen+pagestart%(client->server->hunksize) >
768                                         (client->server->hunksize)) 
769                                 rdlen=client->server->hunksize -
770                                         (pagestart%client->server->hunksize);
771                         if (rawexpread(pagestart, pagebuf, rdlen, client))
772                                 return -1;
773                         memcpy(pagebuf+offset,buf,wrlen) ;
774                         if (write(client->difffile, pagebuf, DIFFPAGESIZE) !=
775                                         DIFFPAGESIZE)
776                                 return -1;
777                 }                                                   
778                 len-=wrlen ; a+=wrlen ; buf+=wrlen ;
779         }
780         return 0;
781 }
782
783 /**
784  * Do the initial negotiation.
785  *
786  * @param client The client we're negotiating with.
787  **/
788 void negotiate(CLIENT *client) {
789         char zeros[300];
790         u64 size_host;
791
792         memset(zeros, 0, 290);
793         if (write(client->net, INIT_PASSWD, 8) < 0)
794                 err("Negotiation failed: %m");
795         cliserv_magic = htonll(cliserv_magic);
796         if (write(client->net, &cliserv_magic, sizeof(cliserv_magic)) < 0)
797                 err("Negotiation failed: %m");
798         size_host = htonll((u64)(client->exportsize));
799         if (write(client->net, &size_host, 8) < 0)
800                 err("Negotiation failed: %m");
801         if (write(client->net, zeros, 128) < 0)
802                 err("Negotiation failed: %m");
803 }
804
805 /** sending macro. */
806 #define SEND(net,reply) writeit( net, &reply, sizeof( reply ));
807 /** error macro. */
808 #define ERROR(client,reply) { reply.error = htonl(-1); SEND(client->net,reply); reply.error = 0; }
809 /**
810  * Serve a file to a single client.
811  *
812  * @todo This beast needs to be split up in many tiny little manageable
813  * pieces. Preferably with a chainsaw.
814  *
815  * @param client The client we're going to serve to.
816  * @return never
817  **/
818 int mainloop(CLIENT *client) {
819         struct nbd_request request;
820         struct nbd_reply reply;
821         gboolean go_on=TRUE;
822 #ifdef DODBG
823         int i = 0;
824 #endif
825         negotiate(client);
826         DEBUG("Entering request loop!\n");
827         reply.magic = htonl(NBD_REPLY_MAGIC);
828         reply.error = 0;
829         while (go_on) {
830                 char buf[BUFSIZE];
831                 size_t len;
832 #ifdef DODBG
833                 i++;
834                 printf("%d: ", i);
835 #endif
836                 if (client->server->timeout) 
837                         alarm(client->server->timeout);
838                 readit(client->net, &request, sizeof(request));
839                 request.from = ntohll(request.from);
840                 request.type = ntohl(request.type);
841
842                 if (request.type==NBD_CMD_DISC) {
843                         msg2(LOG_INFO, "Disconnect request received.");
844                         if (client->difmap) g_free(client->difmap) ;
845                         if (client->difffile>=0) { 
846                                 close(client->difffile);
847                                 unlink(client->difffilename);
848                                 free(client->difffilename);
849                         }
850                         go_on=FALSE;
851                         continue;
852                 }
853
854                 len = ntohl(request.len);
855
856                 if (request.magic != htonl(NBD_REQUEST_MAGIC))
857                         err("Not enough magic.");
858                 if (len > BUFSIZE + sizeof(struct nbd_reply))
859                         err("Request too big!");
860 #ifdef DODBG
861                 printf("%s from %Lu (%Lu) len %d, ", request.type ? "WRITE" :
862                                 "READ", (unsigned long long)request.from,
863                                 (unsigned long long)request.from / 512, len);
864 #endif
865                 memcpy(reply.handle, request.handle, sizeof(reply.handle));
866                 if ((request.from + len) > (OFFT_MAX)) {
867                         DEBUG("[Number too large!]");
868                         ERROR(client, reply);
869                         continue;
870                 }
871
872                 if (((ssize_t)((off_t)request.from + len) > client->exportsize) ||
873                     ((client->server->flags & F_READONLY) && request.type)) {
874                         DEBUG("[RANGE!]");
875                         ERROR(client, reply);
876                         continue;
877                 }
878
879                 if (request.type==NBD_CMD_WRITE) {
880                         DEBUG("wr: net->buf, ");
881                         readit(client->net, buf, len);
882                         DEBUG("buf->exp, ");
883                         if ((client->server->flags & F_AUTOREADONLY) ||
884                                         expwrite(request.from, buf, len,
885                                                 client)) {
886                                 DEBUG("Write failed: %m" );
887                                 ERROR(client, reply);
888                                 continue;
889                         }
890                         SEND(client->net, reply);
891                         DEBUG("OK!\n");
892                         continue;
893                 }
894                 /* READ */
895
896                 DEBUG("exp->buf, ");
897                 if (expread(request.from, buf + sizeof(struct nbd_reply), len, client)) {
898                         DEBUG("Read failed: %m");
899                         ERROR(client, reply);
900                         continue;
901                 }
902
903                 DEBUG("buf->net, ");
904                 memcpy(buf, &reply, sizeof(struct nbd_reply));
905                 writeit(client->net, buf, len + sizeof(struct nbd_reply));
906                 DEBUG("OK!\n");
907         }
908         return 0;
909 }
910
911 /**
912  * Set up client export array, which is an array of file handles.
913  * Also, split a single exportfile into multiple ones, if that was asked.
914  * @return 0 on success, -1 on failure
915  * @param client information on the client which we want to split
916  **/
917 int setupexport(CLIENT* client) {
918         int i;
919         int multifile = (client->server->flags & F_MULTIFILE);
920
921         client->export = g_array_new(TRUE, TRUE, sizeof(int));
922
923         /* If multifile, open as many files as we can.
924          * For non-multifile, open exactly one file.
925          * (Either way, we must be able to open at least one file.) */
926         for(i=0; ; i++) {
927                 int fhandle;
928                 gchar *tmpname;
929                 mode_t mode = (client->server->flags & F_READONLY) ? O_RDONLY : O_RDWR;
930
931                 if(multifile) {
932                         tmpname=g_strdup_printf("%s.%d", client->exportname, i);
933                 } else {
934                         tmpname=g_strdup(client->exportname);
935                 }
936                 DEBUG2( "Opening %s\n", tmpname );
937                 fhandle = open(tmpname, mode);
938                 if(fhandle == -1 && mode == O_RDWR) {
939                         /* Try again because maybe media was read-only */
940                         fhandle = open(tmpname, O_RDONLY);
941                         if(fhandle != -1) {
942                                 client->server->flags |= F_AUTOREADONLY;
943                                 client->server->flags |= F_READONLY;
944                         }
945                 }
946                 if(fhandle == -1) {
947                         if(multifile && i*(client->server->hunksize) >= client->exportsize)
948                                 break;
949                         err("Could not open exported file: %m");
950                 }
951                 g_array_insert_val(client->export, i, fhandle);
952                 g_free(tmpname);
953
954                 if(!multifile)
955                         break;
956         }
957         return 0;
958 }
959
960 int copyonwrite_prepare(CLIENT* client) {
961         off_t i;
962         if ((client->difffilename = malloc(1024))==NULL)
963                 err("Failed to allocate string for diff file name");
964         snprintf(client->difffilename, 1024, "%s-%s-%d.diff",client->exportname,client->clientname,
965                 (int)getpid()) ;
966         client->difffilename[1023]='\0';
967         msg3(LOG_INFO,"About to create map and diff file %s",client->difffilename) ;
968         client->difffile=open(client->difffilename,O_RDWR | O_CREAT | O_TRUNC,0600) ;
969         if (client->difffile<0) err("Could not create diff file (%m)") ;
970         if ((client->difmap=calloc(client->exportsize/DIFFPAGESIZE,sizeof(u32)))==NULL)
971                 err("Could not allocate memory") ;
972         for (i=0;i<client->exportsize/DIFFPAGESIZE;i++) client->difmap[i]=(u32)-1 ;
973
974         return 0;
975 }
976
977 /**
978  * Serve a connection. 
979  *
980  * @todo allow for multithreading, perhaps use libevent. Not just yet, though;
981  * follow the road map.
982  *
983  * @param client a connected client
984  **/
985 void serveconnection(CLIENT *client) {
986         setupexport(client);
987
988         /* Sanity check. There must be at least one file. */
989         if(client->export->len == 0)
990                 err("No file(s) to export\n");
991
992         if (!client->server->expected_size) {
993                 client->exportsize = size_autodetect(g_array_index(client->export,int,0));
994         } else {
995                 /* Perhaps we should check first. Not now. */
996                 client->exportsize = client->server->expected_size;
997         }
998         if (client->exportsize > OFFT_MAX) {
999                 /* uhm, well... In a parallel universe, this *might* be
1000                  * possible... */
1001                 err("Size of exported file is too big\n");
1002         }
1003         else {
1004                 msg3(LOG_INFO, "size of exported file/device is %Lu", (unsigned long long)client->exportsize);
1005         }
1006
1007         if (client->server->flags & F_COPYONWRITE) {
1008                 copyonwrite_prepare(client);
1009         }
1010
1011         setmysockopt(client->net);
1012
1013         mainloop(client);
1014 }
1015
1016 /**
1017  * Find the name of the file we have to serve. This will use g_strdup_printf
1018  * to put the IP address of the client inside a filename containing
1019  * "%s". That name is then written to client->exportname.
1020  *
1021  * @param net A socket connected to an nbd client
1022  * @param client information about the client. The IP address in human-readable
1023  * format will be written to a new char* buffer, the address of which will be
1024  * stored in client->clientname.
1025  **/
1026 void set_peername(int net, CLIENT *client) {
1027         struct sockaddr_in addrin;
1028         int addrinlen = sizeof( addrin );
1029         char *peername ;
1030
1031         if (getpeername(net, (struct sockaddr *) &addrin, (socklen_t *)&addrinlen) < 0)
1032                 err("getsockname failed: %m");
1033         peername = inet_ntoa(addrin.sin_addr);
1034         client->exportname=g_strdup_printf(client->server->exportname, peername);
1035
1036         msg4(LOG_INFO, "connect from %s, assigned file is %s", 
1037              peername, client->exportname);
1038         client->clientname=g_strdup(peername);
1039 }
1040
1041 /**
1042  * Destroy a pid_t*
1043  * @param data a pointer to pid_t which should be freed
1044  **/
1045 void destroy_pid_t(gpointer data) {
1046         g_free(data);
1047 }
1048
1049 /**
1050  * Go daemon (unless we specified at compile time that we didn't want this)
1051  * @param serve the first server of our configuration. If its port is zero,
1052  *      then do not daemonize, because we're doing inetd then. This parameter
1053  *      is only used to create a PID file of the form
1054  *      /var/run/nbd-server.&lt;port&gt;.pid; it's not modified in any way.
1055  **/
1056 #if !defined(NODAEMON) && !defined(NOFORK)
1057 void daemonize(SERVER* serve) {
1058         FILE*pidf;
1059
1060         if(daemon(0,0)<0) {
1061                 err("daemon");
1062         }
1063         if(serve) {
1064                 snprintf(pidfname, sizeof(char)*255, "/var/run/nbd-server.%d.pid", serve->port);
1065         } else {
1066                 strncpy(pidfname, "/var/run/nbd-server.pid", sizeof(char)*255);
1067         }
1068         pidf=fopen(pidfname, "w");
1069         if(pidf) {
1070                 fprintf(pidf,"%d\n", (int)getpid());
1071                 fclose(pidf);
1072         } else {
1073                 perror("fopen");
1074                 fprintf(stderr, "Not fatal; continuing");
1075         }
1076 }
1077 #else
1078 #define daemonize(serve)
1079 #endif /* !defined(NODAEMON) && !defined(NOFORK) */
1080
1081 /**
1082  * Connect a server's socket.
1083  *
1084  * @param serve the server we want to connect.
1085  **/
1086 void setup_serve(SERVER *serve) {
1087         struct sockaddr_in addrin;
1088         struct sigaction sa;
1089         int addrinlen = sizeof(addrin);
1090         int sock_flags;
1091 #ifndef sun
1092         int yes=1;
1093 #else
1094         char yes='1';
1095 #endif /* sun */
1096         if ((serve->socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
1097                 err("socket: %m");
1098
1099         /* lose the pesky "Address already in use" error message */
1100         if (setsockopt(serve->socket,SOL_SOCKET,SO_REUSEADDR,&yes,sizeof(int)) == -1) {
1101                 err("setsockopt SO_REUSEADDR");
1102         }
1103         if (setsockopt(serve->socket,SOL_SOCKET,SO_KEEPALIVE,&yes,sizeof(int)) == -1) {
1104                 err("setsockopt SO_KEEPALIVE");
1105         }
1106
1107         /* make the listening socket non-blocking */
1108         if ((sock_flags = fcntl(serve->socket, F_GETFL, 0)) == -1) {
1109                 err("fcntl F_GETFL");
1110         }
1111         if (fcntl(serve->socket, F_SETFL, sock_flags | O_NONBLOCK) == -1) {
1112                 err("fcntl F_SETFL O_NONBLOCK");
1113         }
1114
1115         DEBUG("Waiting for connections... bind, ");
1116         addrin.sin_family = AF_INET;
1117         addrin.sin_port = htons(serve->port);
1118         addrin.sin_addr.s_addr = 0;
1119         if (bind(serve->socket, (struct sockaddr *) &addrin, addrinlen) < 0)
1120                 err("bind: %m");
1121         DEBUG("listen, ");
1122         if (listen(serve->socket, 1) < 0)
1123                 err("listen: %m");
1124         sa.sa_handler = sigchld_handler;
1125         sigemptyset(&sa.sa_mask);
1126         sa.sa_flags = SA_RESTART;
1127         if(sigaction(SIGCHLD, &sa, NULL) == -1)
1128                 err("sigaction: %m");
1129         sa.sa_handler = sigterm_handler;
1130         sigemptyset(&sa.sa_mask);
1131         sa.sa_flags = SA_RESTART;
1132         if(sigaction(SIGTERM, &sa, NULL) == -1)
1133                 err("sigaction: %m");
1134         children=g_hash_table_new_full(g_int_hash, g_int_equal, NULL, destroy_pid_t);
1135 }
1136
1137 /**
1138  * Connect our servers.
1139  **/
1140 void setup_servers(GArray* servers) {
1141         int i;
1142
1143         for(i=0;i<servers->len;i++) {
1144                 setup_serve(&(g_array_index(servers, SERVER, i)));
1145         }
1146 }
1147
1148 /**
1149  * Loop through the available servers, and serve them.
1150  **/
1151 int serveloop(GArray* servers) {
1152         struct sockaddr_in addrin;
1153         socklen_t addrinlen=sizeof(addrin);
1154         SERVER *serve;
1155         int i;
1156         int max;
1157         int sock;
1158         fd_set mset;
1159         fd_set rset;
1160         struct timeval tv;
1161
1162         /* 
1163          * Set up the master fd_set. The set of descriptors we need
1164          * to select() for never changes anyway and it buys us a *lot*
1165          * of time to only build this once. However, if we ever choose
1166          * to not fork() for clients anymore, we may have to revisit
1167          * this.
1168          */
1169         max=0;
1170         FD_ZERO(&mset);
1171         for(i=0;i<servers->len;i++) {
1172                 sock=(g_array_index(servers, SERVER, i)).socket;
1173                 FD_SET(sock, &mset);
1174                 max=sock>max?sock:max;
1175         }
1176         for(;;) {
1177                 CLIENT *client;
1178                 int net;
1179                 pid_t *pid;
1180
1181                 memcpy(&rset, &mset, sizeof(fd_set));
1182                 tv.tv_sec=0;
1183                 tv.tv_usec=500;
1184                 if(select(max+1, &rset, NULL, NULL, &tv)>0) {
1185                         DEBUG("accept, ");
1186                         for(i=0;i<servers->len;i++) {
1187                                 serve=&(g_array_index(servers, SERVER, i));
1188                                 if(FD_ISSET(serve->socket, &rset)) {
1189                                         if ((net=accept(serve->socket, (struct sockaddr *) &addrin, &addrinlen)) < 0)
1190                                                 err("accept: %m");
1191
1192                                         client = g_malloc(sizeof(CLIENT));
1193                                         client->server=serve;
1194                                         client->exportsize=OFFT_MAX;
1195                                         client->net=net;
1196                                         set_peername(net, client);
1197                                         if (!authorized_client(client)) {
1198                                                 msg2(LOG_INFO,"Unauthorized client") ;
1199                                                 close(net);
1200                                                 continue;
1201                                         }
1202                                         msg2(LOG_INFO,"Authorized client") ;
1203                                         pid=g_malloc(sizeof(pid_t));
1204 #ifndef NOFORK
1205                                         if ((*pid=fork())<0) {
1206                                                 msg3(LOG_INFO,"Could not fork (%s)",strerror(errno)) ;
1207                                                 close(net);
1208                                                 continue;
1209                                         }
1210                                         if (*pid>0) { /* parent */
1211                                                 close(net);
1212                                                 g_hash_table_insert(children, pid, pid);
1213                                                 continue;
1214                                         }
1215                                         /* child */
1216                                         g_hash_table_destroy(children);
1217                                         for(i=0;i<servers->len,serve=(g_array_index(servers, SERVER*, i));i++) {
1218                                                 close(serve->socket);
1219                                         }
1220                                         /* FALSE does not free the
1221                                         actual data. This is required,
1222                                         because the client has a
1223                                         direct reference into that
1224                                         data, and otherwise we get a
1225                                         segfault... */
1226                                         g_array_free(servers, FALSE);
1227 #endif // NOFORK
1228                                         msg2(LOG_INFO,"Starting to serve");
1229                                         serveconnection(client);
1230                                 }
1231                         }
1232                 }
1233         }
1234 }
1235
1236 /**
1237  * Main entry point...
1238  **/
1239 int main(int argc, char *argv[]) {
1240         SERVER *serve;
1241         GArray *servers;
1242         GError *err=NULL;
1243
1244         if (sizeof( struct nbd_request )!=28) {
1245                 fprintf(stderr,"Bad size of structure. Alignment problems?\n");
1246                 exit(-1) ;
1247         }
1248
1249         logging();
1250         config_file_pos = g_strdup(CFILE);
1251         serve=cmdline(argc, argv);
1252         servers = parse_cfile(config_file_pos, &err);
1253         if(!servers || !servers->len) {
1254                 g_warning("Could not parse config file: %s", err->message);
1255         }
1256         if(serve) {
1257                 g_array_append_val(servers, *serve);
1258         }
1259
1260 /* We don't support this at this time */
1261 #if 0
1262         if (!(serve->port)) {
1263                 CLIENT *client;
1264 #ifndef ISSERVER
1265                 /* You really should define ISSERVER if you're going to use
1266                  * inetd mode, but if you don't, closing stdout and stderr
1267                  * (which inetd had connected to the client socket) will let it
1268                  * work. */
1269                 close(1);
1270                 close(2);
1271                 open("/dev/null", O_WRONLY);
1272                 open("/dev/null", O_WRONLY);
1273 #endif
1274                 client=g_malloc(sizeof(CLIENT));
1275                 client->server=serve;
1276                 client->net=0;
1277                 client->exportsize=OFFT_MAX;
1278                 set_peername(0,client);
1279                 serveconnection(client);
1280                 return 0;
1281         }
1282 #endif
1283         if((!serve) && (!servers||!servers->len)) {
1284                 g_message("Nothing to do! Bye!");
1285                 exit(EXIT_FAILURE);
1286         }
1287         daemonize(serve);
1288         setup_servers(servers);
1289         serveloop(servers);
1290         return 0 ;
1291 }