X-Git-Url: http://git.alex.org.uk diff --git a/nbd-client.c b/nbd-client.c index 9d725ca..b1e2a3c 100644 --- a/nbd-client.c +++ b/nbd-client.c @@ -150,7 +150,7 @@ void negotiate(int sock, u64 *rsize64, u32 *flags, char* name) { if(read(sock, &tmp, sizeof(uint16_t)) < 0) { err("Failed reading flags: %m"); } - *flags = ((u32)ntohs(tmp)) << 16; + *flags = ((u32)ntohs(tmp)); /* reserved for future use*/ if (write(sock, &reserved, sizeof(reserved)) < 0) @@ -180,11 +180,11 @@ void negotiate(int sock, u64 *rsize64, u32 *flags, char* name) { 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)); @@ -215,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)) { @@ -238,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"); } @@ -315,7 +320,7 @@ int main(int argc, char *argv[]) { 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 c;