X-Git-Url: http://git.alex.org.uk diff --git a/nbd-client.c b/nbd-client.c index 97c8048..b1e2a3c 100644 --- a/nbd-client.c +++ b/nbd-client.c @@ -34,20 +34,23 @@ #include #include #include - -#ifndef __GNUC__ -#error I need GCC to work -#endif +#include +#include #include #define MY_NAME "nbd_client" #include "cliserv.h" +#ifdef WITH_SDP +#include +#endif + int check_conn(char* devname, int do_print) { char buf[256]; char* p; int fd; int len; + if(!strncmp(devname, "/dev/", 5)) { devname+=5; } @@ -69,16 +72,13 @@ int check_conn(char* devname, int do_print) { return 0; } -int opennet(char *name, int port, int sdp) { +int opennet(char *name, char* portstr, int sdp) { int sock; - char portstr[6]; struct addrinfo hints; struct addrinfo *ai = NULL; struct addrinfo *rp = NULL; int e; - snprintf(portstr, sizeof(portstr), "%d", port); - memset(&hints,'\0',sizeof(hints)); hints.ai_family = AF_UNSPEC; hints.ai_socktype = SOCK_STREAM; @@ -123,8 +123,9 @@ int opennet(char *name, int port, int sdp) { return sock; } -void negotiate(int sock, u64 *rsize64, u32 *flags) { +void negotiate(int sock, u64 *rsize64, u32 *flags, char* name) { u64 magic, size64; + uint16_t tmp; char buf[256] = "\0\0\0\0\0\0\0\0\0"; printf("Negotiation: "); @@ -138,20 +139,52 @@ void negotiate(int sock, u64 *rsize64, u32 *flags) { if (read(sock, &magic, sizeof(magic)) < 0) err("Failed/2: %m"); magic = ntohll(magic); - if (magic != cliserv_magic) - err("Not enough cliserv_magic"); - printf("."); + if(name) { + uint32_t opt; + uint32_t namesize; + uint32_t reserved = 0; + + if (magic != opts_magic) + err("Not enough opts_magic"); + printf("."); + if(read(sock, &tmp, sizeof(uint16_t)) < 0) { + err("Failed reading flags: %m"); + } + *flags = ((u32)ntohs(tmp)); + + /* reserved for future use*/ + if (write(sock, &reserved, sizeof(reserved)) < 0) + err("Failed/2.1: %m"); + + /* Write the export name that we're after */ + magic = ntohll(opts_magic); + if (write(sock, &magic, sizeof(magic)) < 0) + err("Failed/2.2: %m"); + opt = ntohl(NBD_OPT_EXPORT_NAME); + if (write(sock, &opt, sizeof(opt)) < 0) + err("Failed/2.3: %m"); + namesize = (u32)strlen(name); + namesize = ntohl(namesize); + if (write(sock, &namesize, sizeof(namesize)) < 0) + err("Failed/2.4: %m"); + if (write(sock, name, strlen(name)) < 0) + err("Failed/2.4: %m"); + } else { + if (magic != cliserv_magic) + err("Not enough cliserv_magic"); + printf("."); + } if (read(sock, &size64, sizeof(size64)) < 0) err("Failed/3: %m\n"); size64 = ntohll(size64); #ifdef NBD_SET_SIZE_BLOCKS - if ((size64>>10) > (~0UL >> 1)) { + if ((size64>>12) > (uint64_t)~0UL) { printf("size = %luMB", (unsigned long)(size64>>20)); err("Exported device is too big for me. Get 64-bit machine :-(\n"); } else - printf("size = %luKB", (unsigned long)(size64>>10)); + printf("size = %luMB", (unsigned long)(size64>>20)); #else if (size64 > (~0UL >> 1)) { printf("size = %luKB", (unsigned long)(size64>>10)); @@ -160,9 +193,15 @@ void negotiate(int sock, u64 *rsize64, u32 *flags) { printf("size = %lu", (unsigned long)(size64)); #endif - if (read(sock, flags, sizeof(*flags)) < 0) - err("Failed/4: %m\n"); - *flags = ntohl(*flags); + if(!name) { + if (read(sock, flags, sizeof(*flags)) < 0) + err("Failed/4: %m\n"); + *flags = ntohl(*flags); + } else { + if(read(sock, &tmp, sizeof(tmp)) < 0) + err("Failed/4: %m\n"); + *flags |= (uint32_t)ntohs(tmp); + } if (read(sock, &buf, 124) < 0) err("Failed/5: %m\n"); @@ -176,16 +215,18 @@ void setsizes(int nbd, u64 size64, int blocksize, u32 flags) { int read_only = (flags & NBD_FLAG_READ_ONLY) ? 1 : 0; #ifdef NBD_SET_SIZE_BLOCKS - if (size64/blocksize > (~0UL >> 1)) + if (size64>>12 > (uint64_t)~0UL) err("Device too large.\n"); else { int er; - if (ioctl(nbd, NBD_SET_BLKSIZE, (unsigned long)blocksize) < 0) + if (ioctl(nbd, NBD_SET_BLKSIZE, 4096UL) < 0) err("Ioctl/1.1a failed: %m\n"); - size = (unsigned long)(size64/blocksize); + size = (unsigned long)(size64>>12); if ((er = ioctl(nbd, NBD_SET_SIZE_BLOCKS, size)) < 0) err("Ioctl/1.1b failed: %m\n"); - fprintf(stderr, "bs=%d, sz=%lu\n", blocksize, size); + if (ioctl(nbd, NBD_SET_BLKSIZE, (unsigned long)blocksize) < 0) + err("Ioctl/1.1c failed: %m\n"); + fprintf(stderr, "bs=%d, sz=%llu bytes\n", blocksize, 4096ULL*size); } #else if (size64 > (~0UL >> 1)) { @@ -199,6 +240,9 @@ void setsizes(int nbd, u64 size64, int blocksize, u32 flags) { ioctl(nbd, NBD_CLEAR_SOCK); + /* ignore error as kernel may not support */ + ioctl(nbd, NBD_SET_FLAGS, (unsigned long) flags); + if (ioctl(nbd, BLKROSET, (unsigned long) &read_only) < 0) err("Unable to set read-only attribute for device"); } @@ -223,118 +267,183 @@ void finish_sock(int sock, int nbd, int swap) { mlockall(MCL_CURRENT | MCL_FUTURE); } +void usage(char* errmsg, ...) { + if(errmsg) { + char tmp[256]; + va_list ap; + va_start(ap, errmsg); + snprintf(tmp, 256, "ERROR: %s\n\n", errmsg); + vfprintf(stderr, errmsg, ap); + va_end(ap); + } else { + fprintf(stderr, "nbd-client version %s\n", PACKAGE_VERSION); + } + 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"); + fprintf(stderr, "Or : nbd-client -d nbd_device\n"); + fprintf(stderr, "Or : nbd-client -c nbd_device\n"); + fprintf(stderr, "Or : nbd-client -h|--help\n"); + fprintf(stderr, "Default value for blocksize is 1024 (recommended for ethernet)\n"); + fprintf(stderr, "Allowed values for blocksize are 512,1024,2048,4096\n"); /* will be checked in kernel :) */ + fprintf(stderr, "Note, that kernel 2.4.2 and older ones do not work correctly with\n"); + fprintf(stderr, "blocksizes other than 1024 without patches\n"); +} + +void disconnect(char* device) { + int nbd = open(device, O_RDWR); + + if (nbd < 0) + err("Cannot open NBD: %m\nPlease ensure the 'nbd' module is loaded."); + printf("Disconnecting: que, "); + if (ioctl(nbd, NBD_CLEAR_QUE)< 0) + err("Ioctl failed: %m\n"); + printf("disconnect, "); +#ifdef NBD_DISCONNECT + if (ioctl(nbd, NBD_DISCONNECT)<0) + err("Ioctl failed: %m\n"); + printf("sock, "); +#else + fprintf(stderr, "Can't disconnect: I was not compiled with disconnect support!\n" ); + exit(1); +#endif + if (ioctl(nbd, NBD_CLEAR_SOCK)<0) + err("Ioctl failed: %m\n"); + printf("done\n"); +} + int main(int argc, char *argv[]) { - int port, sock, nbd; + char* port=NULL; + int sock, nbd; int blocksize=1024; - char *hostname, *nbddev; + char *hostname=NULL; + char *nbddev=NULL; int swap=0; int cont=0; int timeout=0; int sdp=0; - int nofork=0; + int G_GNUC_UNUSED nofork=0; // if -dNOFORK u64 size64; u32 flags; - int i; + int c; + int nonspecial=0; + char* name=NULL; + struct option long_options[] = { + { "block-size", required_argument, NULL, 'b' }, + { "check", required_argument, NULL, 'c' }, + { "disconnect", required_argument, NULL, 'd' }, + { "help", no_argument, NULL, 'h' }, + { "name", required_argument, NULL, 'N' }, + { "nofork", no_argument, NULL, 'n' }, + { "persist", no_argument, NULL, 'p' }, + { "sdp", no_argument, NULL, 'S' }, + { "swap", no_argument, NULL, 's' }, + { "timeout", required_argument, NULL, 't' }, + { 0, 0, 0, 0 }, + }; logging(); - if (argc < 3) { - errmsg: - fprintf(stderr, "nbd-client version %s\n", PACKAGE_VERSION); - fprintf(stderr, "Usage: nbd-client [bs=blocksize] [timeout=sec] host port nbd_device [-swap] [-persist] [-nofork]\n"); - fprintf(stderr, "Or : nbd-client -d nbd_device\n"); - fprintf(stderr, "Or : nbd-client -c nbd_device\n"); - fprintf(stderr, "Default value for blocksize is 1024 (recommended for ethernet)\n"); - fprintf(stderr, "Allowed values for blocksize are 512,1024,2048,4096\n"); /* will be checked in kernel :) */ - fprintf(stderr, "Note, that kernel 2.4.2 and older ones do not work correctly with\n"); - fprintf(stderr, "blocksizes other than 1024 without patches\n"); - return 1; - } - - ++argv; --argc; /* skip programname */ - - if (strcmp(argv[0], "-d")==0) { - nbd = open(argv[1], O_RDWR); - if (nbd < 0) - err("Cannot open NBD: %m\nPlease ensure the 'nbd' module is loaded."); - printf("Disconnecting: que, "); - if (ioctl(nbd, NBD_CLEAR_QUE)< 0) - err("Ioctl failed: %m\n"); - printf("disconnect, "); -#ifdef NBD_DISCONNECT - if (ioctl(nbd, NBD_DISCONNECT)<0) - err("Ioctl failed: %m\n"); - printf("sock, "); -#else - fprintf(stderr, "Can't disconnect: I was not compiled with disconnect support!\n" ); - exit(1); -#endif - if (ioctl(nbd, NBD_CLEAR_SOCK)<0) - err("Ioctl failed: %m\n"); - printf("done\n"); - return 0; - } - if(strcmp(argv[0], "-c")==0) { - return check_conn(argv[1], 1); - } - - if (strncmp(argv[0], "bs=", 3)==0) { - blocksize=atoi(argv[0]+3); - ++argv; --argc; /* skip blocksize */ + while((c=getopt_long_only(argc, argv, "-b:c:d:hnN:pSst:", long_options, NULL))>=0) { + switch(c) { + case 1: + // non-option argument + if(strchr(optarg, '=')) { + // old-style 'bs=' or 'timeout=' + // argument + fprintf(stderr, "WARNING: old-style command-line argument encountered. This is deprecated.\n"); + if(!strncmp(optarg, "bs=", 3)) { + optarg+=3; + goto blocksize; + } + if(!strncmp(optarg, "timeout=", 8)) { + optarg+=8; + goto timeout; + } + usage("unknown option %s encountered", optarg); + exit(EXIT_FAILURE); + } + switch(nonspecial++) { + case 0: + // host + hostname=optarg; + break; + case 1: + // port + if(!strtol(optarg, NULL, 0)) { + // not parseable as a number, assume it's the device and we have a name + nbddev = optarg; + nonspecial++; + } else { + port = optarg; + if(name) { + usage("port and name specified at the same time. This is not supported."); + exit(EXIT_FAILURE); + } + } + break; + case 2: + // device + nbddev = optarg; + break; + default: + usage("too many non-option arguments specified"); + exit(EXIT_FAILURE); + } + break; + case 'b': + blocksize: + blocksize=(int)strtol(optarg, NULL, 0); + break; + case 'c': + return check_conn(optarg, 1); + case 'd': + disconnect(optarg); + exit(EXIT_SUCCESS); + case 'h': + usage(NULL); + exit(EXIT_SUCCESS); + case 'n': + nofork=1; + break; + case 'N': + name=optarg; + if(port) { + usage("port and name specified at the same time. This is not supported."); + exit(EXIT_FAILURE); + } + port = NBD_DEFAULT_PORT; + break; + case 'p': + cont=1; + break; + case 's': + swap=1; + break; + case 'S': + sdp=1; + break; + case 't': + timeout: + timeout=strtol(optarg, NULL, 0); + break; + default: + fprintf(stderr, "E: option eaten by 42 mice\n"); + exit(EXIT_FAILURE); + } } - if (strncmp(argv[0], "timeout=", 8)==0) { - timeout=atoi(argv[0]+8); - ++argv; --argc; /* skip timeout */ + if((!port && !name) || !hostname || !nbddev) { + usage("not enough information specified"); + exit(EXIT_FAILURE); } - - if (argc==0) goto errmsg; - hostname=argv[0]; - ++argv; --argc; /* skip hostname */ - - if (argc==0) goto errmsg; - port = atoi(argv[0]); - ++argv; --argc; /* skip port */ - if (argc==0) goto errmsg; - nbddev = argv[0]; nbd = open(nbddev, O_RDWR); if (nbd < 0) err("Cannot open NBD: %m\nPlease ensure the 'nbd' module is loaded."); ++argv; --argc; /* skip device */ - if (argc>4) goto errmsg; - for(i=0; i<4; i++) { - if (argc) { - if(strncmp(argv[0], "-swap", 5)==0) { - swap=1; - ++argv;--argc; - } - } - if (argc) { - if(strncmp(argv[0], "-persist", 8)==0) { - cont=1; - ++argv;--argc; - } - } - if (argc) { - if(strncmp(argv[0], "-sdp", 4)==0) { - sdp=1; - ++argv;--argc; - } - } - if (argc) { - if(strncmp(argv[0], "-nofork", 7)==0) { - nofork=1; - ++argv;--argc; - } - } - } - if(argc) goto errmsg; sock = opennet(hostname, port, sdp); - argv=NULL; argc=0; /* don't use it later suddenly */ - negotiate(sock, &size64, &flags); + negotiate(sock, &size64, &flags, name); setsizes(nbd, size64, blocksize, flags); set_timeout(nbd, timeout); finish_sock(sock, nbd, swap); @@ -342,8 +451,13 @@ int main(int argc, char *argv[]) { /* Go daemon */ #ifndef NOFORK - if(!nofork) daemon(0,0); + if(!nofork) { + if (daemon(0,0) < 0) + err("Cannot detach from terminal"); + } +#endif do { +#ifndef NOFORK if (fork()) { /* Due to a race, the kernel NBD driver cannot * call for a reread of the partition table @@ -379,7 +493,7 @@ int main(int argc, char *argv[]) { close(sock); close(nbd); sock = opennet(hostname, port, sdp); nbd = open(nbddev, O_RDWR); - negotiate(sock, &new_size, &new_flags); + negotiate(sock, &new_size, &new_flags, name); if (size64 != new_size) { err("Size of the device changed. Bye"); }