r208: Fix minor bug wrt cidrhash choice for virtstyle option, and a small
[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 #include <pwd.h>
86 #include <grp.h>
87
88 #include <glib.h>
89
90 /* used in cliserv.h, so must come first */
91 #define MY_NAME "nbd_server"
92 #include "cliserv.h"
93
94 /** Default position of the config file */
95 #ifndef SYSCONFDIR
96 #define SYSCONFDIR "/etc"
97 #endif
98 #define CFILE SYSCONFDIR "/nbd-server/config"
99
100 /** Where our config file actually is */
101 gchar* config_file_pos;
102
103 /** What user we're running as */
104 gchar* runuser=NULL;
105 /** What group we're running as */
106 gchar* rungroup=NULL;
107
108 /** Logging macros, now nothing goes to syslog unless you say ISSERVER */
109 #ifdef ISSERVER
110 #define msg2(a,b) syslog(a,b)
111 #define msg3(a,b,c) syslog(a,b,c)
112 #define msg4(a,b,c,d) syslog(a,b,c,d)
113 #else
114 #define msg2(a,b) g_message(b)
115 #define msg3(a,b,c) g_message(b,c)
116 #define msg4(a,b,c,d) g_message(b,c,d)
117 #endif
118
119 /* Debugging macros */
120 //#define DODBG
121 #ifdef DODBG
122 #define DEBUG( a ) printf( a )
123 #define DEBUG2( a,b ) printf( a,b )
124 #define DEBUG3( a,b,c ) printf( a,b,c )
125 #define DEBUG4( a,b,c,d ) printf( a,b,c,d )
126 #else
127 #define DEBUG( a )
128 #define DEBUG2( a,b ) 
129 #define DEBUG3( a,b,c ) 
130 #define DEBUG4( a,b,c,d ) 
131 #endif
132 #ifndef PACKAGE_VERSION
133 #define PACKAGE_VERSION ""
134 #endif
135 /**
136  * The highest value a variable of type off_t can reach. This is a signed
137  * integer, so set all bits except for the leftmost one.
138  **/
139 #define OFFT_MAX ~((off_t)1<<(sizeof(off_t)*8-1))
140 #define LINELEN 256       /**< Size of static buffer used to read the
141                             authorization file (yuck) */
142 #define BUFSIZE (1024*1024) /**< Size of buffer that can hold requests */
143 #define DIFFPAGESIZE 4096 /**< diff file uses those chunks */
144 #define F_READONLY 1      /**< flag to tell us a file is readonly */
145 #define F_MULTIFILE 2     /**< flag to tell us a file is exported using -m */
146 #define F_COPYONWRITE 4   /**< flag to tell us a file is exported using
147                             copyonwrite */
148 #define F_AUTOREADONLY 8  /**< flag to tell us a file is set to autoreadonly */
149 #define F_SPARSE 16
150 GHashTable *children;
151 char pidfname[256]; /**< name of our PID file */
152 char default_authname[] = SYSCONFDIR "/nbd-server/allow"; /**< default name of allow file */
153
154 /**
155  * Types of virtuatlization
156  **/
157 typedef enum {
158         VIRT_NONE=0,    /**< No virtualization */
159         VIRT_IPLIT,     /**< Literal IP address as part of the filename */
160         VIRT_IPHASH,    /**< Replacing all dots in an ip address by a / before
161                              doing the same as in IPLIT */
162         VIRT_CIDR,      /**< Every subnet in its own directory */
163 } VIRT_STYLE;
164
165 /**
166  * Variables associated with a server.
167  **/
168 typedef struct {
169         gchar* exportname;    /**< (unprocessed) filename of the file we're exporting */
170         off_t expected_size; /**< size of the exported file as it was told to
171                                us through configuration */
172         unsigned int port;   /**< port we're exporting this file at */
173         char* authname;      /**< filename of the authorization file */
174         int flags;           /**< flags associated with this exported file */
175         unsigned int timeout;/**< how long a connection may be idle
176                                (0=forever) */
177         int socket;          /**< The socket of this server. */
178         VIRT_STYLE virtstyle;/**< The style of virtualization, if any */
179         uint8_t cidrlen;     /**< The length of the mask when we use
180                                   CIDR-style virtualization */
181 } SERVER;
182
183 /**
184  * Variables associated with a client socket.
185  **/
186 typedef struct {
187         int fhandle;      /**< file descriptor */
188         off_t startoff;   /**< starting offset of this file */
189 } FILE_INFO;
190
191 typedef struct {
192         off_t exportsize;    /**< size of the file we're exporting */
193         char *clientname;    /**< peer */
194         char *exportname;    /**< (processed) filename of the file we're exporting */
195         GArray *export;    /**< array of FILE_INFO of exported files;
196                                array size is always 1 unless we're
197                                doing the multiple file option */
198         int net;             /**< The actual client socket */
199         SERVER *server;      /**< The server this client is getting data from */
200         char* difffilename;  /**< filename of the copy-on-write file, if any */
201         int difffile;        /**< filedescriptor of copyonwrite file. @todo
202                                shouldn't this be an array too? (cfr export) Or
203                                make -m and -c mutually exclusive */
204         u32 difffilelen;     /**< number of pages in difffile */
205         u32 *difmap;         /**< see comment on the global difmap for this one */
206 } CLIENT;
207
208 /**
209  * Type of configuration file values
210  **/
211 typedef enum {
212         PARAM_INT,              /**< This parameter is an integer */
213         PARAM_STRING,           /**< This parameter is a string */
214         PARAM_BOOL,             /**< This parameter is a boolean */
215 } PARAM_TYPE;
216
217 /**
218  * Configuration file values
219  **/
220 typedef struct {
221         gchar *paramname;       /**< Name of the parameter, as it appears in
222                                   the config file */
223         gboolean required;      /**< Whether this is a required (as opposed to
224                                   optional) parameter */
225         PARAM_TYPE ptype;       /**< Type of the parameter. */
226         gpointer target;        /**< Pointer to where the data of this
227                                   parameter should be written. If ptype is
228                                   PARAM_BOOL, the data is or'ed rather than
229                                   overwritten. */
230         gint flagval;           /**< Flag mask for this parameter in case ptype
231                                   is PARAM_BOOL. */
232 } PARAM;
233
234 /**
235  * Check whether a client is allowed to connect. Works with an authorization
236  * file which contains one line per machine, no wildcards.
237  *
238  * @param opts The client who's trying to connect.
239  * @return 0 - authorization refused, 1 - OK
240  **/
241 int authorized_client(CLIENT *opts) {
242         const char *ERRMSG="Invalid entry '%s' in authfile '%s', so, refusing all connections.";
243         FILE *f ;
244         char line[LINELEN]; 
245         char *tmp;
246         struct in_addr addr;
247         struct in_addr client;
248         struct in_addr cltemp;
249         int len;
250
251         if ((f=fopen(opts->server->authname,"r"))==NULL) {
252                 msg4(LOG_INFO,"Can't open authorization file %s (%s).",
253                      opts->server->authname,strerror(errno)) ;
254                 return 1 ; 
255         }
256   
257         inet_aton(opts->clientname, &client);
258         while (fgets(line,LINELEN,f)!=NULL) {
259                 if((tmp=index(line, '/'))) {
260                         if(strlen(line)<=tmp-line) {
261                                 msg4(LOG_CRIT, ERRMSG, line, opts->server->authname);
262                                 return 0;
263                         }
264                         *(tmp++)=0;
265                         if(inet_aton(line,&addr)) {
266                                 msg4(LOG_CRIT, ERRMSG, line, opts->server->authname);
267                                 return 0;
268                         }
269                         len=strtol(tmp, NULL, 0);
270                         addr.s_addr>>=32-len;
271                         addr.s_addr<<=32-len;
272                         memcpy(&cltemp,&client,sizeof(client));
273                         cltemp.s_addr>>=32-len;
274                         cltemp.s_addr<<=32-len;
275                         if(addr.s_addr == cltemp.s_addr) {
276                                 return 1;
277                         }
278                 }
279                 if (strncmp(line,opts->clientname,strlen(opts->clientname))==0) {
280                         fclose(f);
281                         return 1;
282                 }
283         }
284         fclose(f);
285         return 0;
286 }
287
288 /**
289  * Read data from a file descriptor into a buffer
290  *
291  * @param f a file descriptor
292  * @param buf a buffer
293  * @param len the number of bytes to be read
294  **/
295 inline void readit(int f, void *buf, size_t len) {
296         ssize_t res;
297         while (len > 0) {
298                 DEBUG("*");
299                 if ((res = read(f, buf, len)) <= 0)
300                         err("Read failed: %m");
301                 len -= res;
302                 buf += res;
303         }
304 }
305
306 /**
307  * Write data from a buffer into a filedescriptor
308  *
309  * @param f a file descriptor
310  * @param buf a buffer containing data
311  * @param len the number of bytes to be written
312  **/
313 inline void writeit(int f, void *buf, size_t len) {
314         ssize_t res;
315         while (len > 0) {
316                 DEBUG("+");
317                 if ((res = write(f, buf, len)) <= 0)
318                         err("Send failed: %m");
319                 len -= res;
320                 buf += res;
321         }
322 }
323
324 /**
325  * Print out a message about how to use nbd-server. Split out to a separate
326  * function so that we can call it from multiple places
327  */
328 void usage() {
329         printf("This is nbd-server version " VERSION "\n");
330         printf("Usage: port file_to_export [size][kKmM] [-l authorize_file] [-r] [-m] [-c] [-a timeout_sec] [-C configuration file]\n"
331                "\t-r|--read-only\t\tread only\n"
332                "\t-m|--multi-file\t\tmultiple file\n"
333                "\t-c|--copy-on-write\tcopy on write\n"
334                "\t-C|--config-file\tspecify an alternat configuration file\n"
335                "\t-l|--authorize-file\tfile with list of hosts that are allowed to\n\t\t\t\tconnect.\n"
336                "\t-a|--idle-time\t\tmaximum idle seconds; server terminates when\n\t\t\t\tidle time exceeded\n\n"
337                "\tif port is set to 0, stdin is used (for running from inetd)\n"
338                "\tif file_to_export contains '%%s', it is substituted with the IP\n"
339                "\t\taddress of the machine trying to connect\n" );
340         printf("Using configuration file %s\n", CFILE);
341 }
342
343 /**
344  * Parse the command line.
345  *
346  * @param argc the argc argument to main()
347  * @param argv the argv argument to main()
348  **/
349 SERVER* cmdline(int argc, char *argv[]) {
350         int i=0;
351         int nonspecial=0;
352         int c;
353         struct option long_options[] = {
354                 {"read-only", no_argument, NULL, 'r'},
355                 {"multi-file", no_argument, NULL, 'm'},
356                 {"copy-on-write", no_argument, NULL, 'c'},
357                 {"authorize-file", required_argument, NULL, 'l'},
358                 {"idle-time", required_argument, NULL, 'a'},
359                 {"config-file", required_argument, NULL, 'C'},
360                 {0,0,0,0}
361         };
362         SERVER *serve;
363         off_t es;
364         size_t last;
365         char suffix;
366
367         if(argc==1) {
368                 return NULL;
369         }
370         serve=g_new0(SERVER, 1);
371         serve->authname = g_strdup(default_authname);
372         while((c=getopt_long(argc, argv, "-a:C:cl:mr", long_options, &i))>=0) {
373                 switch (c) {
374                 case 1:
375                         /* non-option argument */
376                         switch(nonspecial++) {
377                         case 0:
378                                 serve->port=strtol(optarg, NULL, 0);
379                                 break;
380                         case 1:
381                                 serve->exportname = g_strdup(optarg);
382                                 if(serve->exportname[0] != '/') {
383                                         fprintf(stderr, "E: The to be exported file needs to be an absolute filename!\n");
384                                         exit(EXIT_FAILURE);
385                                 }
386                                 break;
387                         case 2:
388                                 last=strlen(optarg)-1;
389                                 suffix=optarg[last];
390                                 if (suffix == 'k' || suffix == 'K' ||
391                                     suffix == 'm' || suffix == 'M')
392                                         optarg[last] = '\0';
393                                 es = (off_t)atol(optarg);
394                                 switch (suffix) {
395                                         case 'm':
396                                         case 'M':  es <<= 10;
397                                         case 'k':
398                                         case 'K':  es <<= 10;
399                                         default :  break;
400                                 }
401                                 serve->expected_size = es;
402                                 break;
403                         }
404                         break;
405                 case 'r':
406                         serve->flags |= F_READONLY;
407                         break;
408                 case 'm':
409                         serve->flags |= F_MULTIFILE;
410                         break;
411                 case 'c': 
412                         serve->flags |=F_COPYONWRITE;
413                         break;
414                 case 'C':
415                         g_free(config_file_pos);
416                         config_file_pos=g_strdup(optarg);
417                         break;
418                 case 'l':
419                         g_free(serve->authname);
420                         serve->authname=g_strdup(optarg);
421                         break;
422                 case 'a': 
423                         serve->timeout=strtol(optarg, NULL, 0);
424                         break;
425                 default:
426                         usage();
427                         exit(EXIT_FAILURE);
428                         break;
429                 }
430         }
431         /* What's left: the port to export, the name of the to be exported
432          * file, and, optionally, the size of the file, in that order. */
433         if(nonspecial<2) {
434                 g_free(serve);
435                 serve=NULL;
436         }
437         return serve;
438 }
439
440 /**
441  * Error codes for config file parsing
442  **/
443 typedef enum {
444         CFILE_NOTFOUND,         /**< The configuration file is not found */
445         CFILE_MISSING_GENERIC,  /**< The (required) group "generic" is missing */
446         CFILE_KEY_MISSING,      /**< A (required) key is missing */
447         CFILE_VALUE_INVALID,    /**< A value is syntactically invalid */
448         CFILE_PROGERR           /**< Programmer error */
449 } CFILE_ERRORS;
450
451 /**
452  * Remove a SERVER from memory. Used from the hash table
453  **/
454 void remove_server(gpointer s) {
455         SERVER *server;
456
457         server=(SERVER*)s;
458         g_free(server->exportname);
459         if(server->authname)
460                 g_free(server->authname);
461         g_free(server);
462 }
463
464 /**
465  * Parse the config file.
466  *
467  * @param f the name of the config file
468  * @param e a GError. @see CFILE_ERRORS for what error values this function can
469  *      return.
470  * @return a Array of SERVER* pointers, If the config file is empty or does not
471  *      exist, returns an empty GHashTable; if the config file contains an
472  *      error, returns NULL, and e is set appropriately
473  **/
474 GArray* parse_cfile(gchar* f, GError** e) {
475         const char* DEFAULT_ERROR = "Could not parse %s in group %s: %s";
476         const char* MISSING_REQUIRED_ERROR = "Could not find required value %s in group %s: %s";
477         SERVER s;
478         gchar *virtstyle=NULL;
479         PARAM lp[] = {
480                 { "exportname", TRUE,   PARAM_STRING,   NULL, 0 },
481                 { "port",       TRUE,   PARAM_INT,      NULL, 0 },
482                 { "authfile",   FALSE,  PARAM_STRING,   NULL, 0 },
483                 { "timeout",    FALSE,  PARAM_INT,      NULL, 0 },
484                 { "filesize",   FALSE,  PARAM_INT,      NULL, 0 },
485                 { "virtstyle",  FALSE,  PARAM_STRING,   NULL, 0 },
486                 { "readonly",   FALSE,  PARAM_BOOL,     NULL, F_READONLY },
487                 { "multifile",  FALSE,  PARAM_BOOL,     NULL, F_MULTIFILE },
488                 { "copyonwrite", FALSE, PARAM_BOOL,     NULL, F_COPYONWRITE },
489                 { "autoreadonly", FALSE, PARAM_BOOL,    NULL, F_AUTOREADONLY },
490                 { "sparse_cow", FALSE,  PARAM_BOOL,     NULL, F_SPARSE },
491         };
492         const int lp_size=11;
493         PARAM gp[] = {
494                 { "user",       FALSE, PARAM_STRING,    &runuser,       0 },
495                 { "group",      FALSE, PARAM_STRING,    &rungroup,      0 },
496         };
497         PARAM* p=gp;
498         int p_size=2;
499         GKeyFile *cfile;
500         GError *err = NULL;
501         const char *err_msg=NULL;
502         GQuark errdomain;
503         GArray *retval=NULL;
504         gchar **groups;
505         gboolean value;
506         gint i;
507         gint j;
508
509         errdomain = g_quark_from_string("parse_cfile");
510         cfile = g_key_file_new();
511         retval = g_array_new(FALSE, TRUE, sizeof(SERVER));
512         if(!g_key_file_load_from_file(cfile, f, G_KEY_FILE_KEEP_COMMENTS |
513                         G_KEY_FILE_KEEP_TRANSLATIONS, &err)) {
514                 g_set_error(e, errdomain, CFILE_NOTFOUND, "Could not open config file.");
515                 g_key_file_free(cfile);
516                 return retval;
517         }
518         if(strcmp(g_key_file_get_start_group(cfile), "generic")) {
519                 g_set_error(e, errdomain, CFILE_MISSING_GENERIC, "Config file does not contain the [generic] group!");
520                 g_key_file_free(cfile);
521                 return NULL;
522         }
523         groups = g_key_file_get_groups(cfile, NULL);
524         for(i=0;groups[i];i++) {
525                 memset(&s, '\0', sizeof(SERVER));
526                 lp[0].target=&(s.exportname);
527                 lp[1].target=&(s.port);
528                 lp[2].target=&(s.authname);
529                 lp[3].target=&(s.timeout);
530                 lp[4].target=&(s.expected_size);
531                 lp[5].target=&(virtstyle);
532                 lp[6].target=lp[7].target=lp[8].target=
533                                 lp[9].target=lp[10].target=&(s.flags);
534                 /* After the [generic] group, start parsing exports */
535                 if(i==1) {
536                         p=lp;
537                         p_size=lp_size;
538                 } 
539                 for(j=0;j<p_size;j++) {
540                         g_assert(p[j].target != NULL);
541                         g_assert(p[j].ptype==PARAM_INT||p[j].ptype==PARAM_STRING||p[j].ptype==PARAM_BOOL);
542                         switch(p[j].ptype) {
543                                 case PARAM_INT:
544                                         *((gint*)p[j].target) =
545                                                 g_key_file_get_integer(cfile,
546                                                                 groups[i],
547                                                                 p[j].paramname,
548                                                                 &err);
549                                         break;
550                                 case PARAM_STRING:
551                                         *((gchar**)p[j].target) =
552                                                 g_key_file_get_string(cfile,
553                                                                 groups[i],
554                                                                 p[j].paramname,
555                                                                 &err);
556                                         break;
557                                 case PARAM_BOOL:
558                                         value = g_key_file_get_boolean(cfile,
559                                                         groups[i],
560                                                         p[j].paramname, &err);
561                                         if(!err) {
562                                                 if(value) {
563                                                         *((gint*)p[j].target) |= p[j].flagval;
564                                                 } else {
565                                                         *((gint*)p[j].target) &= ~(p[j].flagval);
566                                                 }
567                                         }
568                                         break;
569                         }
570                         if(err) {
571                                 if(err->code == G_KEY_FILE_ERROR_KEY_NOT_FOUND) {
572                                         if(!p[j].required) {
573                                                 /* Ignore not-found error for optional values */
574                                                 g_clear_error(&err);
575                                                 continue;
576                                         } else {
577                                                 err_msg = MISSING_REQUIRED_ERROR;
578                                         }
579                                 } else {
580                                         err_msg = DEFAULT_ERROR;
581                                 }
582                                 g_set_error(e, errdomain, CFILE_VALUE_INVALID, err_msg, p[j].paramname, groups[i], err->message);
583                                 g_array_free(retval, TRUE);
584                                 g_error_free(err);
585                                 g_key_file_free(cfile);
586                                 return NULL;
587                         }
588                 }
589                 if(virtstyle) {
590                         if(!strncmp(virtstyle, "none", 4)) {
591                                 s.virtstyle=VIRT_NONE;
592                         } else if(!strncmp(virtstyle, "ipliteral", 9)) {
593                                 s.virtstyle=VIRT_IPLIT;
594                         } else if(!strncmp(virtstyle, "iphash", 6)) {
595                                 s.virtstyle=VIRT_IPHASH;
596                         } else if(!strncmp(virtstyle, "cidrhash", 8)) {
597                                 s.virtstyle=VIRT_CIDR;
598                                 if(strlen(virtstyle)<10) {
599                                         g_set_error(e, errdomain, CFILE_VALUE_INVALID, "Invalid value %s for parameter virtstyle in group %s: missing length", virtstyle, groups[i]);
600                                         g_array_free(retval, TRUE);
601                                         g_key_file_free(cfile);
602                                         return NULL;
603                                 }
604                                 s.cidrlen=strtol(virtstyle+8, NULL, 0);
605                         } else {
606                                 g_set_error(e, errdomain, CFILE_VALUE_INVALID, "Invalid value %s for parameter virtstyle in group %s", virtstyle, groups[i]);
607                                 g_array_free(retval, TRUE);
608                                 g_key_file_free(cfile);
609                                 return NULL;
610                         }
611                 } else {
612                         s.virtstyle=VIRT_IPLIT;
613                 }
614                 /* Don't need to free this, it's not our string */
615                 virtstyle=NULL;
616                 /* Don't append values for the [generic] group */
617                 if(i>0) {
618                         g_array_append_val(retval, s);
619                 }
620         }
621         return retval;
622 }
623
624 /**
625  * Signal handler for SIGCHLD
626  * @param s the signal we're handling (must be SIGCHLD, or something
627  * is severely wrong)
628  **/
629 void sigchld_handler(int s) {
630         int status;
631         int* i;
632         pid_t pid;
633
634         while((pid=waitpid(-1, &status, WNOHANG)) > 0) {
635                 if(WIFEXITED(&status)) {
636                         msg3(LOG_INFO, "Child exited with %d", WEXITSTATUS(status));
637                 }
638                 i=g_hash_table_lookup(children, &pid);
639                 if(!i) {
640                         msg3(LOG_INFO, "SIGCHLD received for an unknown child with PID %ld", (long)pid);
641                 } else {
642                         DEBUG2("Removing %d from the list of children", pid);
643                         g_hash_table_remove(children, &pid);
644                 }
645         }
646 }
647
648 /**
649  * Kill a child. Called from sigterm_handler::g_hash_table_foreach.
650  *
651  * @param key the key
652  * @param value the value corresponding to the above key
653  * @param user_data a pointer which we always set to 1, so that we know what
654  * will happen next.
655  **/
656 void killchild(gpointer key, gpointer value, gpointer user_data) {
657         pid_t *pid=value;
658         int *parent=user_data;
659
660         kill(*pid, SIGTERM);
661         *parent=1;
662 }
663
664 /**
665  * Handle SIGTERM and dispatch it to our children
666  * @param s the signal we're handling (must be SIGTERM, or something
667  * is severely wrong).
668  **/
669 void sigterm_handler(int s) {
670         int parent=0;
671
672         g_hash_table_foreach(children, killchild, &parent);
673
674         if(parent) {
675                 unlink(pidfname);
676         }
677
678         exit(0);
679 }
680
681 /**
682  * Detect the size of a file.
683  *
684  * @param fhandle An open filedescriptor
685  * @return the size of the file, or OFFT_MAX if detection was
686  * impossible.
687  **/
688 off_t size_autodetect(int fhandle) {
689         off_t es;
690         u32 es32;
691         struct stat stat_buf;
692         int error;
693
694 #ifdef HAVE_SYS_MOUNT_H
695 #ifdef HAVE_SYS_IOCTL_H
696 #ifdef BLKGETSIZE
697         DEBUG("looking for fhandle size with ioctl BLKGETSIZE\n");
698         if (!ioctl(fhandle, BLKGETSIZE, &es32) && es32) {
699                 es = (off_t)es32 * (off_t)512;
700                 return es;
701         }
702 #endif /* BLKGETSIZE */
703 #endif /* HAVE_SYS_IOCTL_H */
704 #endif /* HAVE_SYS_MOUNT_H */
705
706         DEBUG("looking for fhandle size with fstat\n");
707         stat_buf.st_size = 0;
708         error = fstat(fhandle, &stat_buf);
709         if (!error) {
710                 if(stat_buf.st_size > 0)
711                         return (off_t)stat_buf.st_size;
712         } else {
713                 err("fstat failed: %m");
714         }
715
716         DEBUG("looking for fhandle size with lseek SEEK_END\n");
717         es = lseek(fhandle, (off_t)0, SEEK_END);
718         if (es > ((off_t)0)) {
719                 return es;
720         } else {
721                 DEBUG2("lseek failed: %d", errno==EBADF?1:(errno==ESPIPE?2:(errno==EINVAL?3:4)));
722         }
723
724         err("Could not find size of exported block device: %m");
725         return OFFT_MAX;
726 }
727
728 /**
729  * Get the file handle and offset, given an export offset.
730  *
731  * @param export An array of export files
732  * @param a The offset to get corresponding file/offset for
733  * @param fhandle [out] File descriptor
734  * @param foffset [out] Offset into fhandle
735  * @param maxbytes [out] Tells how many bytes can be read/written
736  * from fhandle starting at foffset (0 if there is no limit)
737  * @return 0 on success, -1 on failure
738  **/
739 int get_filepos(GArray* export, off_t a, int* fhandle, off_t* foffset, size_t* maxbytes ) {
740         /* Negative offset not allowed */
741         if(a < 0)
742                 return -1;
743
744         /* Binary search for last file with starting offset <= a */
745         FILE_INFO fi;
746         int start = 0;
747         int end = export->len - 1;
748         while( start <= end ) {
749                 int mid = (start + end) / 2;
750                 fi = g_array_index(export, FILE_INFO, mid);
751                 if( fi.startoff < a ) {
752                         start = mid + 1;
753                 } else if( fi.startoff > a ) {
754                         end = mid - 1;
755                 } else {
756                         start = end = mid;
757                         break;
758                 }
759         }
760
761         /* end should never go negative, since first startoff is 0 and a >= 0 */
762         g_assert(end >= 0);
763
764         fi = g_array_index(export, FILE_INFO, end);
765         *fhandle = fi.fhandle;
766         *foffset = a - fi.startoff;
767         *maxbytes = 0;
768         if( end+1 < export->len ) {
769                 FILE_INFO fi_next = g_array_index(export, FILE_INFO, end+1);
770                 *maxbytes = fi_next.startoff - a;
771         }
772
773         return 0;
774 }
775
776 /**
777  * seek to a position in a file, with error handling.
778  * @param handle a filedescriptor
779  * @param a position to seek to
780  * @todo get rid of this; lastpoint is a global variable right now, but it
781  * shouldn't be. If we pass it on as a parameter, that makes things a *lot*
782  * easier.
783  **/
784 void myseek(int handle,off_t a) {
785         if (lseek(handle, a, SEEK_SET) < 0) {
786                 err("Can not seek locally!\n");
787         }
788 }
789
790 /**
791  * Write an amount of bytes at a given offset to the right file. This
792  * abstracts the write-side of the multiple file option.
793  *
794  * @param a The offset where the write should start
795  * @param buf The buffer to write from
796  * @param len The length of buf
797  * @param client The client we're serving for
798  * @return The number of bytes actually written, or -1 in case of an error
799  **/
800 ssize_t rawexpwrite(off_t a, char *buf, size_t len, CLIENT *client) {
801         int fhandle;
802         off_t foffset;
803         size_t maxbytes;
804
805         if(get_filepos(client->export, a, &fhandle, &foffset, &maxbytes))
806                 return -1;
807         if(maxbytes && len > maxbytes)
808                 len = maxbytes;
809
810         DEBUG4("(WRITE to fd %d offset %Lu len %u), ", fhandle, foffset, len);
811
812         myseek(fhandle, foffset);
813         return write(fhandle, buf, len);
814 }
815
816 /**
817  * Call rawexpwrite repeatedly until all data has been written.
818  * @return 0 on success, nonzero on failure
819  **/
820 int rawexpwrite_fully(off_t a, char *buf, size_t len, CLIENT *client) {
821         ssize_t ret;
822
823         while(len > 0 && (ret=rawexpwrite(a, buf, len, client)) > 0 ) {
824                 a += ret;
825                 buf += ret;
826                 len -= ret;
827         }
828         return (ret < 0 || len != 0);
829 }
830
831 /**
832  * Read an amount of bytes at a given offset from the right file. This
833  * abstracts the read-side of the multiple files option.
834  *
835  * @param a The offset where the read should start
836  * @param buf A buffer to read into
837  * @param len The size of buf
838  * @param client The client we're serving for
839  * @return The number of bytes actually read, or -1 in case of an
840  * error.
841  **/
842 ssize_t rawexpread(off_t a, char *buf, size_t len, CLIENT *client) {
843         int fhandle;
844         off_t foffset;
845         size_t maxbytes;
846
847         if(get_filepos(client->export, a, &fhandle, &foffset, &maxbytes))
848                 return -1;
849         if(maxbytes && len > maxbytes)
850                 len = maxbytes;
851
852         DEBUG4("(READ from fd %d offset %Lu len %u), ", fhandle, foffset, len);
853
854         myseek(fhandle, foffset);
855         return read(fhandle, buf, len);
856 }
857
858 /**
859  * Call rawexpread repeatedly until all data has been read.
860  * @return 0 on success, nonzero on failure
861  **/
862 int rawexpread_fully(off_t a, char *buf, size_t len, CLIENT *client) {
863         ssize_t ret;
864
865         while(len > 0 && (ret=rawexpread(a, buf, len, client)) > 0 ) {
866                 a += ret;
867                 buf += ret;
868                 len -= ret;
869         }
870         return (ret < 0 || len != 0);
871 }
872
873 /**
874  * Read an amount of bytes at a given offset from the right file. This
875  * abstracts the read-side of the copyonwrite stuff, and calls
876  * rawexpread() with the right parameters to do the actual work.
877  * @param a The offset where the read should start
878  * @param buf A buffer to read into
879  * @param len The size of buf
880  * @param client The client we're going to read for
881  * @return 0 on success, nonzero on failure
882  **/
883 int expread(off_t a, char *buf, size_t len, CLIENT *client) {
884         off_t rdlen, offset;
885         off_t mapcnt, mapl, maph, pagestart;
886
887         if (!(client->server->flags & F_COPYONWRITE))
888                 return(rawexpread_fully(a, buf, len, client));
889         DEBUG3("Asked to read %d bytes at %Lu.\n", len, (unsigned long long)a);
890
891         mapl=a/DIFFPAGESIZE; maph=(a+len-1)/DIFFPAGESIZE;
892
893         for (mapcnt=mapl;mapcnt<=maph;mapcnt++) {
894                 pagestart=mapcnt*DIFFPAGESIZE;
895                 offset=a-pagestart;
896                 rdlen=(0<DIFFPAGESIZE-offset && len<(size_t)(DIFFPAGESIZE-offset)) ?
897                         len : (size_t)DIFFPAGESIZE-offset;
898                 if (client->difmap[mapcnt]!=(u32)(-1)) { /* the block is already there */
899                         DEBUG3("Page %Lu is at %lu\n", (unsigned long long)mapcnt,
900                                (unsigned long)(client->difmap[mapcnt]));
901                         myseek(client->difffile, client->difmap[mapcnt]*DIFFPAGESIZE+offset);
902                         if (read(client->difffile, buf, rdlen) != rdlen) return -1;
903                 } else { /* the block is not there */
904                         DEBUG2("Page %Lu is not here, we read the original one\n",
905                                (unsigned long long)mapcnt);
906                         if(rawexpread_fully(a, buf, rdlen, client)) return -1;
907                 }
908                 len-=rdlen; a+=rdlen; buf+=rdlen;
909         }
910         return 0;
911 }
912
913 /**
914  * Write an amount of bytes at a given offset to the right file. This
915  * abstracts the write-side of the copyonwrite option, and calls
916  * rawexpwrite() with the right parameters to do the actual work.
917  *
918  * @param a The offset where the write should start
919  * @param buf The buffer to write from
920  * @param len The length of buf
921  * @param client The client we're going to write for.
922  * @return 0 on success, nonzero on failure
923  **/
924 int expwrite(off_t a, char *buf, size_t len, CLIENT *client) {
925         char pagebuf[DIFFPAGESIZE];
926         off_t mapcnt,mapl,maph;
927         off_t wrlen,rdlen; 
928         off_t pagestart;
929         off_t offset;
930
931         if (!(client->server->flags & F_COPYONWRITE))
932                 return(rawexpwrite_fully(a, buf, len, client)); 
933         DEBUG3("Asked to write %d bytes at %Lu.\n", len, (unsigned long long)a);
934
935         mapl=a/DIFFPAGESIZE ; maph=(a+len-1)/DIFFPAGESIZE ;
936
937         for (mapcnt=mapl;mapcnt<=maph;mapcnt++) {
938                 pagestart=mapcnt*DIFFPAGESIZE ;
939                 offset=a-pagestart ;
940                 wrlen=(0<DIFFPAGESIZE-offset && len<(size_t)(DIFFPAGESIZE-offset)) ?
941                         len : (size_t)DIFFPAGESIZE-offset;
942
943                 if (client->difmap[mapcnt]!=(u32)(-1)) { /* the block is already there */
944                         DEBUG3("Page %Lu is at %lu\n", (unsigned long long)mapcnt,
945                                (unsigned long)(client->difmap[mapcnt])) ;
946                         myseek(client->difffile,
947                                         client->difmap[mapcnt]*DIFFPAGESIZE+offset);
948                         if (write(client->difffile, buf, wrlen) != wrlen) return -1 ;
949                 } else { /* the block is not there */
950                         myseek(client->difffile,client->difffilelen*DIFFPAGESIZE) ;
951                         client->difmap[mapcnt]=(client->server->flags&F_SPARSE)?mapcnt:client->difffilelen++;
952                         DEBUG3("Page %Lu is not here, we put it at %lu\n",
953                                (unsigned long long)mapcnt,
954                                (unsigned long)(client->difmap[mapcnt]));
955                         rdlen=DIFFPAGESIZE ;
956                         if (rawexpread_fully(pagestart, pagebuf, rdlen, client))
957                                 return -1;
958                         memcpy(pagebuf+offset,buf,wrlen) ;
959                         if (write(client->difffile, pagebuf, DIFFPAGESIZE) !=
960                                         DIFFPAGESIZE)
961                                 return -1;
962                 }                                                   
963                 len-=wrlen ; a+=wrlen ; buf+=wrlen ;
964         }
965         return 0;
966 }
967
968 /**
969  * Do the initial negotiation.
970  *
971  * @param client The client we're negotiating with.
972  **/
973 void negotiate(CLIENT *client) {
974         char zeros[300];
975         u64 size_host;
976
977         memset(zeros, '\0', 290);
978         if (write(client->net, INIT_PASSWD, 8) < 0)
979                 err("Negotiation failed: %m");
980         cliserv_magic = htonll(cliserv_magic);
981         if (write(client->net, &cliserv_magic, sizeof(cliserv_magic)) < 0)
982                 err("Negotiation failed: %m");
983         size_host = htonll((u64)(client->exportsize));
984         if (write(client->net, &size_host, 8) < 0)
985                 err("Negotiation failed: %m");
986         if (write(client->net, zeros, 128) < 0)
987                 err("Negotiation failed: %m");
988 }
989
990 /** sending macro. */
991 #define SEND(net,reply) writeit( net, &reply, sizeof( reply ));
992 /** error macro. */
993 #define ERROR(client,reply) { reply.error = htonl(-1); SEND(client->net,reply); reply.error = 0; }
994 /**
995  * Serve a file to a single client.
996  *
997  * @todo This beast needs to be split up in many tiny little manageable
998  * pieces. Preferably with a chainsaw.
999  *
1000  * @param client The client we're going to serve to.
1001  * @return never
1002  **/
1003 int mainloop(CLIENT *client) {
1004         struct nbd_request request;
1005         struct nbd_reply reply;
1006         gboolean go_on=TRUE;
1007 #ifdef DODBG
1008         int i = 0;
1009 #endif
1010         negotiate(client);
1011         DEBUG("Entering request loop!\n");
1012         reply.magic = htonl(NBD_REPLY_MAGIC);
1013         reply.error = 0;
1014         while (go_on) {
1015                 char buf[BUFSIZE];
1016                 size_t len;
1017 #ifdef DODBG
1018                 i++;
1019                 printf("%d: ", i);
1020 #endif
1021                 if (client->server->timeout) 
1022                         alarm(client->server->timeout);
1023                 readit(client->net, &request, sizeof(request));
1024                 request.from = ntohll(request.from);
1025                 request.type = ntohl(request.type);
1026
1027                 if (request.type==NBD_CMD_DISC) {
1028                         msg2(LOG_INFO, "Disconnect request received.");
1029                         if (client->server->flags & F_COPYONWRITE) { 
1030                                 if (client->difmap) g_free(client->difmap) ;
1031                                 close(client->difffile);
1032                                 unlink(client->difffilename);
1033                                 free(client->difffilename);
1034                         }
1035                         go_on=FALSE;
1036                         continue;
1037                 }
1038
1039                 len = ntohl(request.len);
1040
1041                 if (request.magic != htonl(NBD_REQUEST_MAGIC))
1042                         err("Not enough magic.");
1043                 if (len > BUFSIZE + sizeof(struct nbd_reply))
1044                         err("Request too big!");
1045 #ifdef DODBG
1046                 printf("%s from %Lu (%Lu) len %d, ", request.type ? "WRITE" :
1047                                 "READ", (unsigned long long)request.from,
1048                                 (unsigned long long)request.from / 512, len);
1049 #endif
1050                 memcpy(reply.handle, request.handle, sizeof(reply.handle));
1051                 if ((request.from + len) > (OFFT_MAX)) {
1052                         DEBUG("[Number too large!]");
1053                         ERROR(client, reply);
1054                         continue;
1055                 }
1056
1057                 if (((ssize_t)((off_t)request.from + len) > client->exportsize)) {
1058                         DEBUG("[RANGE!]");
1059                         ERROR(client, reply);
1060                         continue;
1061                 }
1062
1063                 if (request.type==NBD_CMD_WRITE) {
1064                         DEBUG("wr: net->buf, ");
1065                         readit(client->net, buf, len);
1066                         DEBUG("buf->exp, ");
1067                         if ((client->server->flags & F_READONLY) ||
1068                             (client->server->flags & F_AUTOREADONLY)) {
1069                                 DEBUG("[WRITE to READONLY!]");
1070                                 ERROR(client, reply);
1071                                 continue;
1072                         }
1073                         if (expwrite(request.from, buf, len, client)) {
1074                                 DEBUG("Write failed: %m" );
1075                                 ERROR(client, reply);
1076                                 continue;
1077                         }
1078                         SEND(client->net, reply);
1079                         DEBUG("OK!\n");
1080                         continue;
1081                 }
1082                 /* READ */
1083
1084                 DEBUG("exp->buf, ");
1085                 if (expread(request.from, buf + sizeof(struct nbd_reply), len, client)) {
1086                         DEBUG("Read failed: %m");
1087                         ERROR(client, reply);
1088                         continue;
1089                 }
1090
1091                 DEBUG("buf->net, ");
1092                 memcpy(buf, &reply, sizeof(struct nbd_reply));
1093                 writeit(client->net, buf, len + sizeof(struct nbd_reply));
1094                 DEBUG("OK!\n");
1095         }
1096         return 0;
1097 }
1098
1099 /**
1100  * Set up client export array, which is an array of FILE_INFO.
1101  * Also, split a single exportfile into multiple ones, if that was asked.
1102  * @param client information on the client which we want to setup export for
1103  **/
1104 void setupexport(CLIENT* client) {
1105         int i;
1106         off_t laststartoff = 0, lastsize = 0;
1107         int multifile = (client->server->flags & F_MULTIFILE);
1108
1109         client->export = g_array_new(TRUE, TRUE, sizeof(FILE_INFO));
1110
1111         /* If multi-file, open as many files as we can.
1112          * If not, open exactly one file.
1113          * Calculate file sizes as we go to get total size. */
1114         for(i=0; ; i++) {
1115                 FILE_INFO fi;
1116                 gchar *tmpname;
1117                 mode_t mode = (client->server->flags & F_READONLY) ? O_RDONLY : O_RDWR;
1118
1119                 if(multifile) {
1120                         tmpname=g_strdup_printf("%s.%d", client->exportname, i);
1121                 } else {
1122                         tmpname=g_strdup(client->exportname);
1123                 }
1124                 DEBUG2( "Opening %s\n", tmpname );
1125                 fi.fhandle = open(tmpname, mode);
1126                 if(fi.fhandle == -1 && mode == O_RDWR) {
1127                         /* Try again because maybe media was read-only */
1128                         fi.fhandle = open(tmpname, O_RDONLY);
1129                         if(fi.fhandle != -1) {
1130                                 client->server->flags |= F_AUTOREADONLY;
1131                                 client->server->flags |= F_READONLY;
1132                         }
1133                 }
1134                 if(fi.fhandle == -1) {
1135                         if(multifile && i>0)
1136                                 break;
1137                         err("Could not open exported file: %m");
1138                 }
1139                 fi.startoff = laststartoff + lastsize;
1140                 g_array_append_val(client->export, fi);
1141                 g_free(tmpname);
1142
1143                 /* Starting offset and size of this file will be used to
1144                  * calculate starting offset of next file */
1145                 laststartoff = fi.startoff;
1146                 lastsize = size_autodetect(fi.fhandle);
1147
1148                 if(!multifile)
1149                         break;
1150         }
1151
1152         /* Set export size to total calculated size */
1153         client->exportsize = laststartoff + lastsize;
1154
1155         /* Export size may be overridden */
1156         if(client->server->expected_size) {
1157                 /* desired size must be <= total calculated size */
1158                 if(client->server->expected_size > client->exportsize) {
1159                         err("Size of exported file is too big\n");
1160                 }
1161
1162                 client->exportsize = client->server->expected_size;
1163         }
1164
1165         msg3(LOG_INFO, "Size of exported file/device is %Lu", (unsigned long long)client->exportsize);
1166         if(multifile) {
1167                 msg3(LOG_INFO, "Total number of files: %d", i);
1168         }
1169 }
1170
1171 int copyonwrite_prepare(CLIENT* client) {
1172         off_t i;
1173         if ((client->difffilename = malloc(1024))==NULL)
1174                 err("Failed to allocate string for diff file name");
1175         snprintf(client->difffilename, 1024, "%s-%s-%d.diff",client->exportname,client->clientname,
1176                 (int)getpid()) ;
1177         client->difffilename[1023]='\0';
1178         msg3(LOG_INFO,"About to create map and diff file %s",client->difffilename) ;
1179         client->difffile=open(client->difffilename,O_RDWR | O_CREAT | O_TRUNC,0600) ;
1180         if (client->difffile<0) err("Could not create diff file (%m)") ;
1181         if ((client->difmap=calloc(client->exportsize/DIFFPAGESIZE,sizeof(u32)))==NULL)
1182                 err("Could not allocate memory") ;
1183         for (i=0;i<client->exportsize/DIFFPAGESIZE;i++) client->difmap[i]=(u32)-1 ;
1184
1185         return 0;
1186 }
1187
1188 /**
1189  * Serve a connection. 
1190  *
1191  * @todo allow for multithreading, perhaps use libevent. Not just yet, though;
1192  * follow the road map.
1193  *
1194  * @param client a connected client
1195  **/
1196 void serveconnection(CLIENT *client) {
1197         setupexport(client);
1198
1199         if (client->server->flags & F_COPYONWRITE) {
1200                 copyonwrite_prepare(client);
1201         }
1202
1203         setmysockopt(client->net);
1204
1205         mainloop(client);
1206 }
1207
1208 /**
1209  * Find the name of the file we have to serve. This will use g_strdup_printf
1210  * to put the IP address of the client inside a filename containing
1211  * "%s" (in the form as specified by the "virtstyle" option). That name
1212  * is then written to client->exportname.
1213  *
1214  * @param net A socket connected to an nbd client
1215  * @param client information about the client. The IP address in human-readable
1216  * format will be written to a new char* buffer, the address of which will be
1217  * stored in client->clientname.
1218  **/
1219 void set_peername(int net, CLIENT *client) {
1220         struct sockaddr_in addrin;
1221         struct sockaddr_in netaddr;
1222         size_t addrinlen = sizeof( addrin );
1223         char *peername;
1224         char *netname;
1225         char *tmp;
1226         int i;
1227
1228         if (getpeername(net, (struct sockaddr *) &addrin, (socklen_t *)&addrinlen) < 0)
1229                 err("getsockname failed: %m");
1230         peername = g_strdup(inet_ntoa(addrin.sin_addr));
1231         switch(client->server->virtstyle) {
1232                 case VIRT_NONE:
1233                         client->exportname=g_strdup(client->server->exportname);
1234                         break;
1235                 case VIRT_IPHASH:
1236                         for(i=0;i<strlen(peername);i++) {
1237                                 if(peername[i]=='.') {
1238                                         peername[i]='/';
1239                                 }
1240                         }
1241                 case VIRT_IPLIT:
1242                         client->exportname=g_strdup_printf(client->server->exportname, peername);
1243                         break;
1244                 case VIRT_CIDR:
1245                         memcpy(&netaddr, &addrin, addrinlen);
1246                         netaddr.sin_addr.s_addr>>=32-(client->server->cidrlen);
1247                         netaddr.sin_addr.s_addr<<=32-(client->server->cidrlen);
1248                         netname = inet_ntoa(netaddr.sin_addr);
1249                         tmp=g_strdup_printf("%s/%s", netname, peername);
1250                         client->exportname=g_strdup_printf(client->server->exportname, tmp);
1251                         break;
1252         }
1253
1254         g_free(peername);
1255         msg4(LOG_INFO, "connect from %s, assigned file is %s", 
1256              peername, client->exportname);
1257         client->clientname=g_strdup(peername);
1258 }
1259
1260 /**
1261  * Destroy a pid_t*
1262  * @param data a pointer to pid_t which should be freed
1263  **/
1264 void destroy_pid_t(gpointer data) {
1265         g_free(data);
1266 }
1267
1268 /**
1269  * Go daemon (unless we specified at compile time that we didn't want this)
1270  * @param serve the first server of our configuration. If its port is zero,
1271  *      then do not daemonize, because we're doing inetd then. This parameter
1272  *      is only used to create a PID file of the form
1273  *      /var/run/nbd-server.&lt;port&gt;.pid; it's not modified in any way.
1274  **/
1275 #if !defined(NODAEMON) && !defined(NOFORK)
1276 void daemonize(SERVER* serve) {
1277         FILE*pidf;
1278
1279         if(daemon(0,0)<0) {
1280                 err("daemon");
1281         }
1282         if(serve) {
1283                 snprintf(pidfname, sizeof(char)*255, "/var/run/nbd-server.%d.pid", serve->port);
1284         } else {
1285                 strncpy(pidfname, "/var/run/nbd-server.pid", sizeof(char)*255);
1286         }
1287         pidf=fopen(pidfname, "w");
1288         if(pidf) {
1289                 fprintf(pidf,"%d\n", (int)getpid());
1290                 fclose(pidf);
1291         } else {
1292                 perror("fopen");
1293                 fprintf(stderr, "Not fatal; continuing");
1294         }
1295 }
1296 #else
1297 #define daemonize(serve)
1298 #endif /* !defined(NODAEMON) && !defined(NOFORK) */
1299
1300 /**
1301  * Connect a server's socket.
1302  *
1303  * @param serve the server we want to connect.
1304  **/
1305 void setup_serve(SERVER *serve) {
1306         struct sockaddr_in addrin;
1307         struct sigaction sa;
1308         int addrinlen = sizeof(addrin);
1309         int sock_flags;
1310 #ifndef sun
1311         int yes=1;
1312 #else
1313         char yes='1';
1314 #endif /* sun */
1315         if ((serve->socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
1316                 err("socket: %m");
1317
1318         /* lose the pesky "Address already in use" error message */
1319         if (setsockopt(serve->socket,SOL_SOCKET,SO_REUSEADDR,&yes,sizeof(int)) == -1) {
1320                 err("setsockopt SO_REUSEADDR");
1321         }
1322         if (setsockopt(serve->socket,SOL_SOCKET,SO_KEEPALIVE,&yes,sizeof(int)) == -1) {
1323                 err("setsockopt SO_KEEPALIVE");
1324         }
1325
1326         /* make the listening socket non-blocking */
1327         if ((sock_flags = fcntl(serve->socket, F_GETFL, 0)) == -1) {
1328                 err("fcntl F_GETFL");
1329         }
1330         if (fcntl(serve->socket, F_SETFL, sock_flags | O_NONBLOCK) == -1) {
1331                 err("fcntl F_SETFL O_NONBLOCK");
1332         }
1333
1334         DEBUG("Waiting for connections... bind, ");
1335         addrin.sin_family = AF_INET;
1336         addrin.sin_port = htons(serve->port);
1337         addrin.sin_addr.s_addr = 0;
1338         if (bind(serve->socket, (struct sockaddr *) &addrin, addrinlen) < 0)
1339                 err("bind: %m");
1340         DEBUG("listen, ");
1341         if (listen(serve->socket, 1) < 0)
1342                 err("listen: %m");
1343         sa.sa_handler = sigchld_handler;
1344         sigemptyset(&sa.sa_mask);
1345         sa.sa_flags = SA_RESTART;
1346         if(sigaction(SIGCHLD, &sa, NULL) == -1)
1347                 err("sigaction: %m");
1348         sa.sa_handler = sigterm_handler;
1349         sigemptyset(&sa.sa_mask);
1350         sa.sa_flags = SA_RESTART;
1351         if(sigaction(SIGTERM, &sa, NULL) == -1)
1352                 err("sigaction: %m");
1353         children=g_hash_table_new_full(g_int_hash, g_int_equal, NULL, destroy_pid_t);
1354 }
1355
1356 /**
1357  * Connect our servers.
1358  **/
1359 void setup_servers(GArray* servers) {
1360         int i;
1361
1362         for(i=0;i<servers->len;i++) {
1363                 setup_serve(&(g_array_index(servers, SERVER, i)));
1364         }
1365 }
1366
1367 /**
1368  * Loop through the available servers, and serve them.
1369  **/
1370 int serveloop(GArray* servers) {
1371         struct sockaddr_in addrin;
1372         socklen_t addrinlen=sizeof(addrin);
1373         SERVER *serve;
1374         int i;
1375         int max;
1376         int sock;
1377         fd_set mset;
1378         fd_set rset;
1379         struct timeval tv;
1380
1381         /* 
1382          * Set up the master fd_set. The set of descriptors we need
1383          * to select() for never changes anyway and it buys us a *lot*
1384          * of time to only build this once. However, if we ever choose
1385          * to not fork() for clients anymore, we may have to revisit
1386          * this.
1387          */
1388         max=0;
1389         FD_ZERO(&mset);
1390         for(i=0;i<servers->len;i++) {
1391                 sock=(g_array_index(servers, SERVER, i)).socket;
1392                 FD_SET(sock, &mset);
1393                 max=sock>max?sock:max;
1394         }
1395         for(;;) {
1396                 CLIENT *client;
1397                 int net;
1398                 pid_t *pid;
1399
1400                 memcpy(&rset, &mset, sizeof(fd_set));
1401                 tv.tv_sec=0;
1402                 tv.tv_usec=500;
1403                 if(select(max+1, &rset, NULL, NULL, &tv)>0) {
1404                         DEBUG("accept, ");
1405                         for(i=0;i<servers->len;i++) {
1406                                 serve=&(g_array_index(servers, SERVER, i));
1407                                 if(FD_ISSET(serve->socket, &rset)) {
1408                                         if ((net=accept(serve->socket, (struct sockaddr *) &addrin, &addrinlen)) < 0)
1409                                                 err("accept: %m");
1410
1411                                         client = g_malloc(sizeof(CLIENT));
1412                                         client->server=serve;
1413                                         client->exportsize=OFFT_MAX;
1414                                         client->net=net;
1415                                         set_peername(net, client);
1416                                         if (!authorized_client(client)) {
1417                                                 msg2(LOG_INFO,"Unauthorized client") ;
1418                                                 close(net);
1419                                                 continue;
1420                                         }
1421                                         msg2(LOG_INFO,"Authorized client") ;
1422                                         pid=g_malloc(sizeof(pid_t));
1423 #ifndef NOFORK
1424                                         if ((*pid=fork())<0) {
1425                                                 msg3(LOG_INFO,"Could not fork (%s)",strerror(errno)) ;
1426                                                 close(net);
1427                                                 continue;
1428                                         }
1429                                         if (*pid>0) { /* parent */
1430                                                 close(net);
1431                                                 g_hash_table_insert(children, pid, pid);
1432                                                 continue;
1433                                         }
1434                                         /* child */
1435                                         g_hash_table_destroy(children);
1436                                         for(i=0;i<servers->len,serve=(g_array_index(servers, SERVER*, i));i++) {
1437                                                 close(serve->socket);
1438                                         }
1439                                         /* FALSE does not free the
1440                                         actual data. This is required,
1441                                         because the client has a
1442                                         direct reference into that
1443                                         data, and otherwise we get a
1444                                         segfault... */
1445                                         g_array_free(servers, FALSE);
1446 #endif // NOFORK
1447                                         msg2(LOG_INFO,"Starting to serve");
1448                                         serveconnection(client);
1449                                 }
1450                         }
1451                 }
1452         }
1453 }
1454
1455 /**
1456  * Set up user-ID and/or group-ID
1457  **/
1458 void dousers(void) {
1459         struct passwd *pw;
1460         struct group *gr;
1461         if(runuser) {
1462                 pw=getpwnam(runuser);
1463                 if(setuid(pw->pw_uid)<0)
1464                         msg3(LOG_DEBUG, "Could not set UID: %s", strerror(errno));
1465         }
1466         if(rungroup) {
1467                 gr=getgrnam(rungroup);
1468                 if(setgid(gr->gr_gid)<0)
1469                         msg3(LOG_DEBUG, "Could not set GID: %s", strerror(errno));
1470         }
1471 }
1472
1473 /**
1474  * Main entry point...
1475  **/
1476 int main(int argc, char *argv[]) {
1477         SERVER *serve;
1478         GArray *servers;
1479         GError *err=NULL;
1480
1481         if (sizeof( struct nbd_request )!=28) {
1482                 fprintf(stderr,"Bad size of structure. Alignment problems?\n");
1483                 exit(-1) ;
1484         }
1485
1486         logging();
1487         config_file_pos = g_strdup(CFILE);
1488         serve=cmdline(argc, argv);
1489         servers = parse_cfile(config_file_pos, &err);
1490         if(!servers || !servers->len) {
1491                 g_warning("Could not parse config file: %s", err->message);
1492         }
1493         if(serve) {
1494                 g_array_append_val(servers, *serve);
1495         }
1496
1497 /* We don't support this at this time */
1498 #if 0
1499         if (!(serve->port)) {
1500                 CLIENT *client;
1501 #ifndef ISSERVER
1502                 /* You really should define ISSERVER if you're going to use
1503                  * inetd mode, but if you don't, closing stdout and stderr
1504                  * (which inetd had connected to the client socket) will let it
1505                  * work. */
1506                 close(1);
1507                 close(2);
1508                 open("/dev/null", O_WRONLY);
1509                 open("/dev/null", O_WRONLY);
1510 #endif
1511                 client=g_malloc(sizeof(CLIENT));
1512                 client->server=serve;
1513                 client->net=0;
1514                 client->exportsize=OFFT_MAX;
1515                 set_peername(0,client);
1516                 serveconnection(client);
1517                 return 0;
1518         }
1519 #endif
1520         if((!serve) && (!servers||!servers->len)) {
1521                 g_message("Nothing to do! Bye!");
1522                 exit(EXIT_FAILURE);
1523         }
1524         daemonize(serve);
1525         setup_servers(servers);
1526         dousers();
1527         serveloop(servers);
1528         return 0 ;
1529 }