10 TByte partition
[nbd.git] / nbd-client.c
1 /*
2  * Open connection for network block device
3  *
4  * Copyright 1997,1998 Pavel Machek, distribute under GPL
5  *  <pavel@atrey.karlin.mff.cuni.cz>
6  *
7  * Version 1.0 - 64bit issues should be fixed, now
8  * Version 1.1 - added bs (blocksize) option (Alexey Guzeev, aga@permonline.ru)
9  * Version 1.2 - I added new option '-d' to send the disconnect request
10  * Version 2.0 - Version synchronised with server
11  * Version 2.1 - Check for disconnection before INIT_PASSWD is received
12  *      to make errormsg a bit more helpful in case the server can't
13  *      open the exported file.
14  * 16/03/2010 - Add IPv6 support.
15  *      Kitt Tientanopajai <kitt@kitty.in.th>
16  *      Neutron Soutmun <neo.neutron@gmail.com>
17  *      Suriya Soutmun <darksolar@gmail.com>
18  */
19
20 #include "config.h"
21 #include "lfs.h"
22
23 #include <sys/ioctl.h>
24 #include <sys/socket.h>
25 #include <sys/types.h>
26 #include <unistd.h>
27 #include <netinet/tcp.h>
28 #include <netinet/in.h>
29 #include <netdb.h>
30 #include <stdio.h>
31 #include <fcntl.h>
32 #include <syslog.h>
33 #include <stdlib.h>
34 #include <sys/mount.h>
35 #include <sys/mman.h>
36 #include <errno.h>
37 #include <getopt.h>
38 #include <stdarg.h>
39
40 #include <linux/ioctl.h>
41 #define MY_NAME "nbd_client"
42 #include "cliserv.h"
43
44 #ifdef WITH_SDP
45 #include <sdp_inet.h>
46 #endif
47
48 int check_conn(char* devname, int do_print) {
49         char buf[256];
50         char* p;
51         int fd;
52         int len;
53
54         if(!strncmp(devname, "/dev/", 5)) {
55                 devname+=5;
56         }
57         if((p=strchr(devname, 'p'))) {
58                 /* We can't do checks on partitions. */
59                 *p='\0';
60         }
61         snprintf(buf, 256, "/sys/block/%s/pid", devname);
62         if((fd=open(buf, O_RDONLY))<0) {
63                 if(errno==ENOENT) {
64                         return 1;
65                 } else {
66                         return 2;
67                 }
68         }
69         len=read(fd, buf, 256);
70         buf[len-1]='\0';
71         if(do_print) printf("%s\n", buf);
72         return 0;
73 }
74
75 int opennet(char *name, char* portstr, int sdp) {
76         int sock;
77         struct addrinfo hints;
78         struct addrinfo *ai = NULL;
79         struct addrinfo *rp = NULL;
80         int e;
81
82         memset(&hints,'\0',sizeof(hints));
83         hints.ai_family = AF_UNSPEC;
84         hints.ai_socktype = SOCK_STREAM;
85         hints.ai_flags = AI_ADDRCONFIG | AI_NUMERICSERV;
86         hints.ai_protocol = IPPROTO_TCP;
87
88         e = getaddrinfo(name, portstr, &hints, &ai);
89
90         if(e != 0) {
91                 fprintf(stderr, "getaddrinfo failed: %s\n", gai_strerror(e));
92                 freeaddrinfo(ai);
93                 exit(EXIT_FAILURE);
94         }
95
96         if(sdp) {
97 #ifdef WITH_SDP
98                 if (ai->ai_family == AF_INET)
99                         ai->ai_family = AF_INET_SDP;
100                 else (ai->ai_family == AF_INET6)
101                         ai->ai_family = AF_INET6_SDP;
102 #else
103                 err("Can't do SDP: I was not compiled with SDP support!");
104 #endif
105         }
106
107         for(rp = ai; rp != NULL; rp = rp->ai_next) {
108                 sock = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
109
110                 if(sock == -1)
111                         continue;       /* error */
112
113                 if(connect(sock, rp->ai_addr, rp->ai_addrlen) != -1)
114                         break;          /* success */
115         }
116
117         if (rp == NULL)
118                 err("Socket failed: %m");
119
120         setmysockopt(sock);
121
122         freeaddrinfo(ai);
123         return sock;
124 }
125
126 void negotiate(int sock, u64 *rsize64, u32 *flags, char* name) {
127         u64 magic, size64;
128         uint16_t tmp;
129         char buf[256] = "\0\0\0\0\0\0\0\0\0";
130
131         printf("Negotiation: ");
132         if (read(sock, buf, 8) < 0)
133                 err("Failed/1: %m");
134         if (strlen(buf)==0)
135                 err("Server closed connection");
136         if (strcmp(buf, INIT_PASSWD))
137                 err("INIT_PASSWD bad");
138         printf(".");
139         if (read(sock, &magic, sizeof(magic)) < 0)
140                 err("Failed/2: %m");
141         magic = ntohll(magic);
142         if(name) {
143                 uint32_t opt;
144                 uint32_t namesize;
145                 uint32_t reserved = 0;
146
147                 if (magic != opts_magic)
148                         err("Not enough opts_magic");
149                 printf(".");
150                 if(read(sock, &tmp, sizeof(uint16_t)) < 0) {
151                         err("Failed reading flags: %m");
152                 }
153                 *flags = ((u32)ntohs(tmp)) << 16;
154
155                 /* reserved for future use*/
156                 if (write(sock, &reserved, sizeof(reserved)) < 0)
157                         err("Failed/2.1: %m");
158
159                 /* Write the export name that we're after */
160                 magic = ntohll(opts_magic);
161                 if (write(sock, &magic, sizeof(magic)) < 0)
162                         err("Failed/2.2: %m");
163                 opt = ntohl(NBD_OPT_EXPORT_NAME);
164                 if (write(sock, &opt, sizeof(opt)) < 0)
165                         err("Failed/2.3: %m");
166                 namesize = (u32)strlen(name);
167                 namesize = ntohl(namesize);
168                 if (write(sock, &namesize, sizeof(namesize)) < 0)
169                         err("Failed/2.4: %m");
170                 if (write(sock, name, strlen(name)) < 0)
171                         err("Failed/2.4: %m");
172         } else {
173                 if (magic != cliserv_magic)
174                         err("Not enough cliserv_magic");
175                 printf(".");
176         }
177
178         if (read(sock, &size64, sizeof(size64)) < 0)
179                 err("Failed/3: %m\n");
180         size64 = ntohll(size64);
181
182 #ifdef NBD_SET_SIZE_BLOCKS
183         if ((size64>>12) > (uint64_t)~0UL) {
184                 printf("size = %luMB", (unsigned long)(size64>>20));
185                 err("Exported device is too big for me. Get 64-bit machine :-(\n");
186         } else
187                 printf("size = %luMB", (unsigned long)(size64>>20));
188 #else
189         if (size64 > (~0UL >> 1)) {
190                 printf("size = %luKB", (unsigned long)(size64>>10));
191                 err("Exported device is too big. Get 64-bit machine or newer kernel :-(\n");
192         } else
193                 printf("size = %lu", (unsigned long)(size64));
194 #endif
195
196         if(!name) {
197                 if (read(sock, flags, sizeof(*flags)) < 0)
198                         err("Failed/4: %m\n");
199                 *flags = ntohl(*flags);
200         } else {
201                 if(read(sock, &tmp, sizeof(tmp)) < 0)
202                         err("Failed/4: %m\n");
203                 *flags |= (uint32_t)ntohs(tmp);
204         }
205
206         if (read(sock, &buf, 124) < 0)
207                 err("Failed/5: %m\n");
208         printf("\n");
209
210         *rsize64 = size64;
211 }
212
213 void setsizes(int nbd, u64 size64, int blocksize, u32 flags) {
214         unsigned long size;
215         int read_only = (flags & NBD_FLAG_READ_ONLY) ? 1 : 0;
216
217 #ifdef NBD_SET_SIZE_BLOCKS
218         if (size64>>12 > (uint64_t)~0UL)
219                 err("Device too large.\n");
220         else {
221                 int er;
222                 if (ioctl(nbd, NBD_SET_BLKSIZE, 4096UL) < 0)
223                         err("Ioctl/1.1a failed: %m\n");
224                 size = (unsigned long)(size64>>12);
225                 if ((er = ioctl(nbd, NBD_SET_SIZE_BLOCKS, size)) < 0)
226                         err("Ioctl/1.1b failed: %m\n");
227                 if (ioctl(nbd, NBD_SET_BLKSIZE, (unsigned long)blocksize) < 0)
228                         err("Ioctl/1.1c failed: %m\n");
229                 fprintf(stderr, "bs=%d, sz=%llu bytes\n", blocksize, 4096ULL*size);
230         }
231 #else
232         if (size64 > (~0UL >> 1)) {
233                 err("Device too large.\n");
234         } else {
235                 size = (unsigned long)size64;
236                 if (ioctl(nbd, NBD_SET_SIZE, size) < 0)
237                         err("Ioctl NBD_SET_SIZE failed: %m\n");
238         }
239 #endif
240
241         ioctl(nbd, NBD_CLEAR_SOCK);
242
243         if (ioctl(nbd, BLKROSET, (unsigned long) &read_only) < 0)
244                 err("Unable to set read-only attribute for device");
245 }
246
247 void set_timeout(int nbd, int timeout) {
248         if (timeout) {
249 #ifdef NBD_SET_TIMEOUT
250                 if (ioctl(nbd, NBD_SET_TIMEOUT, (unsigned long)timeout) < 0)
251                         err("Ioctl NBD_SET_TIMEOUT failed: %m\n");
252                 fprintf(stderr, "timeout=%d\n", timeout);
253 #else
254                 err("Ioctl NBD_SET_TIMEOUT cannot be called when compiled on a system that does not support it\n");
255 #endif
256         }
257 }
258
259 void finish_sock(int sock, int nbd, int swap) {
260         if (ioctl(nbd, NBD_SET_SOCK, sock) < 0)
261                 err("Ioctl NBD_SET_SOCK failed: %m\n");
262
263         if (swap)
264                 mlockall(MCL_CURRENT | MCL_FUTURE);
265 }
266
267 void usage(char* errmsg, ...) {
268         if(errmsg) {
269                 char tmp[256];
270                 va_list ap;
271                 va_start(ap, errmsg);
272                 snprintf(tmp, 256, "ERROR: %s\n\n", errmsg);
273                 vfprintf(stderr, errmsg, ap);
274                 va_end(ap);
275         } else {
276                 fprintf(stderr, "nbd-client version %s\n", PACKAGE_VERSION);
277         }
278         fprintf(stderr, "Usage: nbd-client host port nbd_device [-block-size|-b block size] [-timeout|-t timeout] [-swap|-s] [-sdp|-S] [-persist|-p] [-nofork|-n] [-name|-N name]\n");
279         fprintf(stderr, "Or   : nbd-client -d nbd_device\n");
280         fprintf(stderr, "Or   : nbd-client -c nbd_device\n");
281         fprintf(stderr, "Or   : nbd-client -h|--help\n");
282         fprintf(stderr, "Default value for blocksize is 1024 (recommended for ethernet)\n");
283         fprintf(stderr, "Allowed values for blocksize are 512,1024,2048,4096\n"); /* will be checked in kernel :) */
284         fprintf(stderr, "Note, that kernel 2.4.2 and older ones do not work correctly with\n");
285         fprintf(stderr, "blocksizes other than 1024 without patches\n");
286 }
287
288 void disconnect(char* device) {
289         int nbd = open(device, O_RDWR);
290
291         if (nbd < 0)
292                 err("Cannot open NBD: %m\nPlease ensure the 'nbd' module is loaded.");
293         printf("Disconnecting: que, ");
294         if (ioctl(nbd, NBD_CLEAR_QUE)< 0)
295                 err("Ioctl failed: %m\n");
296         printf("disconnect, ");
297 #ifdef NBD_DISCONNECT
298         if (ioctl(nbd, NBD_DISCONNECT)<0)
299                 err("Ioctl failed: %m\n");
300         printf("sock, ");
301 #else
302         fprintf(stderr, "Can't disconnect: I was not compiled with disconnect support!\n" );
303         exit(1);
304 #endif
305         if (ioctl(nbd, NBD_CLEAR_SOCK)<0)
306                 err("Ioctl failed: %m\n");
307         printf("done\n");
308 }
309
310 int main(int argc, char *argv[]) {
311         char* port=NULL;
312         int sock, nbd;
313         int blocksize=1024;
314         char *hostname=NULL;
315         char *nbddev=NULL;
316         int swap=0;
317         int cont=0;
318         int timeout=0;
319         int sdp=0;
320         int nofork=0;
321         u64 size64;
322         u32 flags;
323         int c;
324         int nonspecial=0;
325         char* name=NULL;
326         struct option long_options[] = {
327                 { "block-size", required_argument, NULL, 'b' },
328                 { "check", required_argument, NULL, 'c' },
329                 { "disconnect", required_argument, NULL, 'd' },
330                 { "help", no_argument, NULL, 'h' },
331                 { "name", required_argument, NULL, 'N' },
332                 { "nofork", no_argument, NULL, 'n' },
333                 { "persist", no_argument, NULL, 'p' },
334                 { "sdp", no_argument, NULL, 'S' },
335                 { "swap", no_argument, NULL, 's' },
336                 { "timeout", required_argument, NULL, 't' },
337                 { 0, 0, 0, 0 }, 
338         };
339
340         logging();
341
342         while((c=getopt_long_only(argc, argv, "-b:c:d:hnN:pSst:", long_options, NULL))>=0) {
343                 switch(c) {
344                 case 1:
345                         // non-option argument
346                         if(strchr(optarg, '=')) {
347                                 // old-style 'bs=' or 'timeout='
348                                 // argument
349                                 fprintf(stderr, "WARNING: old-style command-line argument encountered. This is deprecated.\n");
350                                 if(!strncmp(optarg, "bs=", 3)) {
351                                         optarg+=3;
352                                         goto blocksize;
353                                 }
354                                 if(!strncmp(optarg, "timeout=", 8)) {
355                                         optarg+=8;
356                                         goto timeout;
357                                 }
358                                 usage("unknown option %s encountered", optarg);
359                                 exit(EXIT_FAILURE);
360                         }
361                         switch(nonspecial++) {
362                                 case 0:
363                                         // host
364                                         hostname=optarg;
365                                         break;
366                                 case 1:
367                                         // port
368                                         if(!strtol(optarg, NULL, 0)) {
369                                                 // not parseable as a number, assume it's the device and we have a name
370                                                 nbddev = optarg;
371                                                 nonspecial++;
372                                         } else {
373                                                 port = optarg;
374                                                 if(name) {
375                                                         usage("port and name specified at the same time. This is not supported.");
376                                                         exit(EXIT_FAILURE);
377                                                 }
378                                         }
379                                         break;
380                                 case 2:
381                                         // device
382                                         nbddev = optarg;
383                                         break;
384                                 default:
385                                         usage("too many non-option arguments specified");
386                                         exit(EXIT_FAILURE);
387                         }
388                         break;
389                 case 'b':
390                       blocksize:
391                         blocksize=(int)strtol(optarg, NULL, 0);
392                         break;
393                 case 'c':
394                         return check_conn(optarg, 1);
395                 case 'd':
396                         disconnect(optarg);
397                         exit(EXIT_SUCCESS);
398                 case 'h':
399                         usage(NULL);
400                         exit(EXIT_SUCCESS);
401                 case 'n':
402                         nofork=1;
403                         break;
404                 case 'N':
405                         name=optarg;
406                         if(port) {
407                                 usage("port and name specified at the same time. This is not supported.");
408                                 exit(EXIT_FAILURE);
409                         }
410                         port = NBD_DEFAULT_PORT;
411                         break;
412                 case 'p':
413                         cont=1;
414                         break;
415                 case 's':
416                         swap=1;
417                         break;
418                 case 'S':
419                         sdp=1;
420                         break;
421                 case 't':
422                       timeout:
423                         timeout=strtol(optarg, NULL, 0);
424                         break;
425                 default:
426                         fprintf(stderr, "E: option eaten by 42 mice\n");
427                         exit(EXIT_FAILURE);
428                 }
429         }
430
431         if((!port && !name) || !hostname || !nbddev) {
432                 usage("not enough information specified");
433                 exit(EXIT_FAILURE);
434         }
435
436         nbd = open(nbddev, O_RDWR);
437         if (nbd < 0)
438           err("Cannot open NBD: %m\nPlease ensure the 'nbd' module is loaded.");
439         ++argv; --argc; /* skip device */
440
441         sock = opennet(hostname, port, sdp);
442
443         negotiate(sock, &size64, &flags, name);
444         setsizes(nbd, size64, blocksize, flags);
445         set_timeout(nbd, timeout);
446         finish_sock(sock, nbd, swap);
447
448         /* Go daemon */
449         
450 #ifndef NOFORK
451         if(!nofork) {
452                 if (daemon(0,0) < 0)
453                         err("Cannot detach from terminal");
454         }
455 #endif
456         do {
457 #ifndef NOFORK
458                 if (fork()) {
459                         /* Due to a race, the kernel NBD driver cannot
460                          * call for a reread of the partition table
461                          * in the handling of the NBD_DO_IT ioctl().
462                          * Therefore, this is done in the first open()
463                          * of the device. We therefore make sure that
464                          * the device is opened at least once after the
465                          * connection was made. This has to be done in a
466                          * separate process, since the NBD_DO_IT ioctl()
467                          * does not return until the NBD device has
468                          * disconnected.
469                          */
470                         while(check_conn(nbddev, 0)) {
471                                 sleep(1);
472                         }
473                         open(nbddev, O_RDONLY);
474                         exit(0);
475                 }
476 #endif
477
478                 if (ioctl(nbd, NBD_DO_IT) < 0) {
479                         fprintf(stderr, "Kernel call returned: %m");
480                         if(errno==EBADR) {
481                                 /* The user probably did 'nbd-client -d' on us.
482                                  * quit */
483                                 cont=0;
484                         } else {
485                                 if(cont) {
486                                         u64 new_size;
487                                         u32 new_flags;
488
489                                         fprintf(stderr, " Reconnecting\n");
490                                         close(sock); close(nbd);
491                                         sock = opennet(hostname, port, sdp);
492                                         nbd = open(nbddev, O_RDWR);
493                                         negotiate(sock, &new_size, &new_flags, name);
494                                         if (size64 != new_size) {
495                                                 err("Size of the device changed. Bye");
496                                         }
497                                         setsizes(nbd, size64, blocksize,
498                                                                 new_flags);
499
500                                         set_timeout(nbd, timeout);
501                                         finish_sock(sock,nbd,swap);
502                                 }
503                         }
504                 } else {
505                         /* We're on 2.4. It's not clearly defined what exactly
506                          * happened at this point. Probably best to quit, now
507                          */
508                         fprintf(stderr, "Kernel call returned.");
509                         cont=0;
510                 }
511         } while(cont);
512         printf("Closing: que, ");
513         ioctl(nbd, NBD_CLEAR_QUE);
514         printf("sock, ");
515         ioctl(nbd, NBD_CLEAR_SOCK);
516         printf("done\n");
517         return 0;
518 }