forked from NetworkBlockDevice/nbd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbd-client.c
1366 lines (1251 loc) · 35.9 KB
/
nbd-client.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Open connection for network block device
*
* Copyright 1997,1998 Pavel Machek, distribute under GPL
* Copyright (c) 2002 - 2011 Wouter Verhelst <[email protected]>
*
* Version 1.0 - 64bit issues should be fixed, now
* Version 1.1 - added bs (blocksize) option (Alexey Guzeev, [email protected])
* Version 1.2 - I added new option '-d' to send the disconnect request
* Version 2.0 - Version synchronised with server
* Version 2.1 - Check for disconnection before INIT_PASSWD is received
* to make errormsg a bit more helpful in case the server can't
* open the exported file.
* 16/03/2010 - Add IPv6 support.
* Kitt Tientanopajai <[email protected]>
* Neutron Soutmun <[email protected]>
* Suriya Soutmun <[email protected]>
*/
#include "config.h"
#include "lfs.h"
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/types.h>
#include <unistd.h>
#include <netinet/tcp.h>
#include <netinet/in.h>
#include <netdb.h>
#include "netdb-compat.h"
#include <inttypes.h>
#include <stdio.h>
#include <fcntl.h>
#include <syslog.h>
#include <stdlib.h>
#include <sys/mount.h>
#include <sys/mman.h>
#include <signal.h>
#include <errno.h>
#include <getopt.h>
#include <stdarg.h>
#include <stdbool.h>
#include <time.h>
#include <linux/ioctl.h>
#if HAVE_NETLINK
#include "nbd-netlink.h"
#include <netlink/netlink.h>
#include <netlink/genl/genl.h>
#include <netlink/genl/ctrl.h>
#endif
#define MY_NAME "nbd_client"
#include "cliserv.h"
#if HAVE_GNUTLS && !defined(NOTLS)
#include "crypto-gnutls.h"
#endif
#ifdef WITH_SDP
#include <sdp_inet.h>
#endif
#include "nbdclt.h"
#include "nbdtab_parser.tab.h"
CLIENT* cur_client;
extern FILE *yyin, *yyout;
bool found_config = false;
bool parse_error = false;
#define SET_PROP(str, member, rval) if(!strcmp(property, str)) { cur_client->member = (rval); return; }
void nbdtab_set_property(char *property, char *val) {
if(found_config) return;
SET_PROP("port", port, val);
SET_PROP("certfile", cert, val);
SET_PROP("keyfile", key, val);
SET_PROP("cacertfile", cacert, val);
SET_PROP("tlshostname", tlshostn, val);
SET_PROP("bs", bs, strtol(val, NULL, 10));
SET_PROP("timeout", timeout, strtol(val, NULL, 10));
SET_PROP("conns", nconn, strtol(val, NULL, 10));
if(*property != '_') {
fprintf(stderr, "Warning: unknown option '%s' found in nbdtab file", property);
}
}
#undef SET_PROP
#define SET_FLAG(str, member) if(!strcmp(property, str)) { cur_client->member = true; return; }
void nbdtab_set_flag(char *property) {
if(found_config) return;
SET_FLAG("no_optgo", no_optgo);
SET_FLAG("persist", persist);
SET_FLAG("swap", swap);
SET_FLAG("sdp", sdp);
SET_FLAG("unix", b_unix);
SET_FLAG("preinit", preinit);
SET_FLAG("tls", tls);
if(*property != '_') {
fprintf(stderr, "Warning: unknown option '%s' found in nbdtab file", property);
}
}
void nbdtab_commit_line(char *devn, char *hostn, char *exportname) {
if(!strncmp(devn, "/dev/", 5)) {
devn += 5;
}
if(!strcmp(cur_client->dev, devn)) {
found_config = true;
cur_client->hostn = hostn;
cur_client->name = exportname;
} else {
if(!found_config) {
char *tmp = cur_client->dev;
memset(cur_client, 0, sizeof(CLIENT));
cur_client->bs = 512;
cur_client->nconn = 1;
cur_client->dev = tmp;
}
}
return;
}
void yyerror(char *msg) {
parse_error = true;
fprintf(stderr, "parse error parsing " SYSCONFDIR "/nbdtab: %s", msg);
}
#undef SET_FLAG
#define NBDC_DO_LIST 1
#if HAVE_NETLINK
static int callback(struct nl_msg *msg, void *arg) {
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
struct nlattr *msg_attr[NBD_ATTR_MAX + 1];
int ret;
uint32_t index;
ret = nla_parse(msg_attr, NBD_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
genlmsg_attrlen(gnlh, 0), NULL);
if (ret)
err("Invalid response from the kernel\n");
if (!msg_attr[NBD_ATTR_INDEX])
err("Did not receive index from the kernel\n");
index = nla_get_u32(msg_attr[NBD_ATTR_INDEX]);
printf("Connected /dev/nbd%d\n", (int)index);
return NL_OK;
}
static struct nl_sock *get_nbd_socket(int *driver_id) {
struct nl_sock *socket;
socket = nl_socket_alloc();
if (!socket)
err("Couldn't allocate netlink socket\n");
if (genl_connect(socket))
err("Couldn't connect to the generic netlink socket\n");
*driver_id = genl_ctrl_resolve(socket, "nbd");
if (*driver_id < 0)
err("Couldn't resolve the nbd netlink family, make sure the nbd module is loaded and your nbd driver supports the netlink interface.\n");
return socket;
}
static void netlink_configure(int index, int *sockfds, int num_connects,
u64 size64, int blocksize, uint16_t flags,
int timeout) {
struct nl_sock *socket;
struct nlattr *sock_attr;
struct nl_msg *msg;
int driver_id, i;
socket = get_nbd_socket(&driver_id);
nl_socket_modify_cb(socket, NL_CB_VALID, NL_CB_CUSTOM, callback, NULL);
msg = nlmsg_alloc();
if (!msg)
err("Couldn't allocate netlink message\n");
genlmsg_put(msg, NL_AUTO_PORT, NL_AUTO_SEQ, driver_id, 0, 0,
NBD_CMD_CONNECT, 0);
if (index >= 0)
NLA_PUT_U32(msg, NBD_ATTR_INDEX, index);
NLA_PUT_U64(msg, NBD_ATTR_SIZE_BYTES, size64);
NLA_PUT_U64(msg, NBD_ATTR_BLOCK_SIZE_BYTES, blocksize);
NLA_PUT_U64(msg, NBD_ATTR_SERVER_FLAGS, flags);
if (timeout)
NLA_PUT_U64(msg, NBD_ATTR_TIMEOUT, timeout);
sock_attr = nla_nest_start(msg, NBD_ATTR_SOCKETS);
if (!sock_attr)
err("Couldn't nest the sockets for our connection\n");
for (i = 0; i < num_connects; i++) {
struct nlattr *sock_opt;
sock_opt = nla_nest_start(msg, NBD_SOCK_ITEM);
if (!sock_opt)
err("Couldn't nest the sockets for our connection\n");
NLA_PUT_U32(msg, NBD_SOCK_FD, sockfds[i]);
nla_nest_end(msg, sock_opt);
}
nla_nest_end(msg, sock_attr);
if (nl_send_sync(socket, msg) < 0)
err("Failed to setup device, check dmesg\n");
return;
nla_put_failure:
err("Failed to create netlink message\n");
}
static void netlink_disconnect(char *nbddev) {
struct nl_sock *socket;
struct nl_msg *msg;
int driver_id;
int index = -1;
if (nbddev) {
if (sscanf(nbddev, "/dev/nbd%d", &index) != 1)
err("Invalid nbd device target\n");
}
if (index < 0)
err("Invalid nbd device target\n");
socket = get_nbd_socket(&driver_id);
msg = nlmsg_alloc();
if (!msg)
err("Couldn't allocate netlink message\n");
genlmsg_put(msg, NL_AUTO_PORT, NL_AUTO_SEQ, driver_id, 0, 0,
NBD_CMD_DISCONNECT, 0);
NLA_PUT_U32(msg, NBD_ATTR_INDEX, index);
if (nl_send_sync(socket, msg) < 0)
err("Failed to disconnect device, check dmsg\n");
nl_socket_free(socket);
return;
nla_put_failure:
err("Failed to create netlink message\n");
}
#else
static void netlink_configure(int index, int *sockfds, int num_connects,
u64 size64, int blocksize, uint16_t flags,
int timeout)
{
}
static void netlink_disconnect(char *nbddev)
{
}
#endif /* HAVE_NETLINK */
int check_conn(char* devname, int do_print) {
char buf[256];
char* p;
int fd;
int len;
if( (p=strrchr(devname, '/')) ) {
devname=p+1;
}
if((p=strchr(devname, 'p'))) {
/* We can't do checks on partitions. */
*p='\0';
}
snprintf(buf, 256, "/sys/block/%s/pid", devname);
if((fd=open(buf, O_RDONLY))<0) {
if(errno==ENOENT) {
return 1;
} else {
return 2;
}
}
len=read(fd, buf, 256);
if(len < 0) {
perror("could not read from server");
close(fd);
return 2;
}
buf[(len < 256) ? len : 255]='\0';
if(do_print) printf("%s\n", buf);
close(fd);
return 0;
}
int opennet(char *name, char* portstr, int sdp) {
int sock;
struct addrinfo hints;
struct addrinfo *ai = NULL;
struct addrinfo *rp = NULL;
int e;
memset(&hints,'\0',sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_flags = AI_ADDRCONFIG | AI_NUMERICSERV;
hints.ai_protocol = IPPROTO_TCP;
e = getaddrinfo(name, portstr, &hints, &ai);
if(e != 0) {
fprintf(stderr, "getaddrinfo failed: %s\n", gai_strerror(e));
freeaddrinfo(ai);
return -1;
}
if(sdp) {
#ifdef WITH_SDP
if (ai->ai_family == AF_INET)
ai->ai_family = AF_INET_SDP;
else (ai->ai_family == AF_INET6)
ai->ai_family = AF_INET6_SDP;
#else
err("Can't do SDP: I was not compiled with SDP support!");
#endif
}
for(rp = ai; rp != NULL; rp = rp->ai_next) {
sock = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
if(sock == -1)
continue; /* error */
if(connect(sock, rp->ai_addr, rp->ai_addrlen) != -1)
break; /* success */
close(sock);
}
if (rp == NULL) {
err_nonfatal("Socket failed: %m");
sock = -1;
goto err;
}
setmysockopt(sock);
err:
freeaddrinfo(ai);
return sock;
}
int openunix(const char *path) {
int sock;
struct sockaddr_un un_addr;
memset(&un_addr, 0, sizeof(un_addr));
un_addr.sun_family = AF_UNIX;
if (strnlen(path, sizeof(un_addr.sun_path)) == sizeof(un_addr.sun_path)) {
err_nonfatal("UNIX socket path too long");
return -1;
}
strncpy(un_addr.sun_path, path, sizeof(un_addr.sun_path) - 1);
if ((sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
err_nonfatal("SOCKET failed");
return -1;
};
if (connect(sock, &un_addr, sizeof(un_addr)) == -1) {
err_nonfatal("CONNECT failed");
close(sock);
return -1;
}
return sock;
}
void send_request(int sock, uint32_t opt, ssize_t datasize, void* data) {
struct {
uint64_t magic;
uint32_t opt;
uint32_t datasize;
} __attribute__((packed)) header = {
ntohll(opts_magic),
ntohl(opt),
ntohl(datasize),
};
if(datasize < 0) {
datasize = strlen((char*)data);
header.datasize = htonl(datasize);
}
writeit(sock, &header, sizeof(header));
if(data != NULL) {
writeit(sock, data, datasize);
}
}
void send_info_request(int sock, uint32_t opt, int n_reqs, uint16_t* reqs, char* name) {
uint16_t rlen = htons(n_reqs);
uint32_t nlen = htonl(strlen(name));
send_request(sock, opt, sizeof(uint32_t) + strlen(name) + sizeof(uint16_t) + n_reqs * sizeof(uint16_t), NULL);
writeit(sock, &nlen, sizeof(nlen));
writeit(sock, name, strlen(name));
writeit(sock, &rlen, sizeof(rlen));
if(n_reqs > 0) {
writeit(sock, reqs, n_reqs * sizeof(uint16_t));
}
}
struct reply {
uint64_t magic;
uint32_t opt;
uint32_t reply_type;
uint32_t datasize;
char data[];
} __attribute__((packed));
struct reply* read_reply(int sock) {
struct reply *retval = malloc(sizeof(struct reply));
readit(sock, retval, sizeof(*retval));
retval->magic = ntohll(retval->magic);
retval->opt = ntohl(retval->opt);
retval->reply_type = ntohl(retval->reply_type);
retval->datasize = ntohl(retval->datasize);
if (retval->magic != rep_magic) {
fprintf(stderr, "E: received invalid negotiation magic %" PRIu64 " (expected %" PRIu64 ")", retval->magic, rep_magic);
exit(EXIT_FAILURE);
}
if (retval->datasize > 0) {
retval = realloc(retval, sizeof(struct reply) + retval->datasize);
readit(sock, &(retval->data), retval->datasize);
}
return retval;
}
void ask_list(int sock) {
uint32_t opt_server;
uint32_t len;
uint32_t lenn;
uint32_t reptype;
uint64_t magic;
int rlen;
const int BUF_SIZE = 1024;
char buf[BUF_SIZE];
send_request(sock, NBD_OPT_LIST, 0, NULL);
/* newline, move away from the "Negotiation:" line */
printf("\n");
do {
memset(buf, 0, 1024);
if(read(sock, &magic, sizeof(magic)) < 0) {
err("Reading magic from server: %m");
}
if(read(sock, &opt_server, sizeof(opt_server)) < 0) {
err("Reading option: %m");
}
if(read(sock, &reptype, sizeof(reptype)) <0) {
err("Reading reply from server: %m");
}
if(read(sock, &len, sizeof(len)) < 0) {
err("Reading length from server: %m");
}
magic=ntohll(magic);
len=ntohl(len);
reptype=ntohl(reptype);
if(magic != rep_magic) {
err("Not enough magic from server");
}
if(reptype & NBD_REP_FLAG_ERROR) {
switch(reptype) {
case NBD_REP_ERR_POLICY:
fprintf(stderr, "\nE: listing not allowed by server.\n");
break;
default:
fprintf(stderr, "\nE: unexpected error from server.\n");
break;
}
if(len > 0 && len < BUF_SIZE) {
if((rlen=read(sock, buf, len)) < 0) {
fprintf(stderr, "\nE: could not read error message from server\n");
} else {
buf[rlen] = '\0';
fprintf(stderr, "Server said: %s\n", buf);
}
}
exit(EXIT_FAILURE);
} else {
if(reptype != NBD_REP_ACK) {
if(reptype != NBD_REP_SERVER) {
err("Server sent us a reply we don't understand!");
}
if(read(sock, &lenn, sizeof(lenn)) < 0) {
fprintf(stderr, "\nE: could not read export name length from server\n");
exit(EXIT_FAILURE);
}
lenn=ntohl(lenn);
if (lenn >= BUF_SIZE) {
fprintf(stderr, "\nE: export name on server too long\n");
exit(EXIT_FAILURE);
}
if(read(sock, buf, lenn) < 0) {
fprintf(stderr, "\nE: could not read export name from server\n");
exit(EXIT_FAILURE);
}
buf[lenn] = 0;
printf("%s", buf);
len -= lenn;
len -= sizeof(lenn);
if(len > 0) {
if(read(sock, buf, len) < 0) {
fprintf(stderr, "\nE: could not read export description from server\n");
exit(EXIT_FAILURE);
}
buf[len] = 0;
printf(": %s\n", buf);
} else {
printf("\n");
}
}
}
} while(reptype != NBD_REP_ACK);
send_request(sock, NBD_OPT_ABORT, 0, NULL);
}
void parse_sizes(char *buf, uint64_t *size, uint16_t *flags) {
memcpy(size, buf, sizeof(*size));
*size = ntohll(*size);
buf += sizeof(*size);
memcpy(flags, buf, sizeof(*flags));
*flags = ntohs(*flags);
if ((*size>>12) > (uint64_t)~0UL) {
printf("size = %luMB", (unsigned long)(*size>>20));
err("Exported device is too big for me. Get 64-bit machine :-(\n");
} else {
printf("size = %luMB", (unsigned long)(*size>>20));
}
printf("\n");
}
void send_opt_exportname(int sock, u64 *rsize64, uint16_t *flags, bool can_opt_go, char* name, uint16_t global_flags) {
send_request(sock, NBD_OPT_EXPORT_NAME, -1, name);
char b[sizeof(*flags) + sizeof(*rsize64)];
if(readit(sock, b, sizeof(b)) < 0 && can_opt_go) {
err("E: server does not support NBD_OPT_GO and dropped connection after sending NBD_OPT_EXPORT_NAME. Try -g.");
}
parse_sizes(b, rsize64, flags);
if(!(global_flags & NBD_FLAG_NO_ZEROES)) {
char buf[125];
readit(sock, buf, 124);
}
}
void negotiate(int *sockp, u64 *rsize64, uint16_t *flags, char* name, uint32_t needed_flags, uint32_t client_flags, uint32_t do_opts, char *certfile, char *keyfile, char *cacertfile, char *tlshostname, bool tls, bool can_opt_go) {
u64 magic;
uint16_t tmp;
uint16_t global_flags;
char buf[256] = "\0\0\0\0\0\0\0\0\0";
int sock = *sockp;
printf("Negotiation: ");
readit(sock, buf, 8);
if (strcmp(buf, INIT_PASSWD))
err("INIT_PASSWD bad");
printf(".");
readit(sock, &magic, sizeof(magic));
magic = ntohll(magic);
if (magic != opts_magic) {
if(magic == cliserv_magic) {
err("It looks like you're trying to connect to an oldstyle server. This is no longer supported since nbd 3.10.");
}
}
printf(".");
readit(sock, &tmp, sizeof(uint16_t));
global_flags = ntohs(tmp);
if((needed_flags & global_flags) != needed_flags) {
/* There's currently really only one reason why this
* check could possibly fail, but we may need to change
* this error message in the future... */
fprintf(stderr, "\nE: Server does not support listing exports\n");
exit(EXIT_FAILURE);
}
if (global_flags & NBD_FLAG_NO_ZEROES) {
client_flags |= NBD_FLAG_C_NO_ZEROES;
}
client_flags = htonl(client_flags);
if (write(sock, &client_flags, sizeof(client_flags)) < 0)
err("Failed/2.1: %m");
#if HAVE_GNUTLS && !defined(NOTLS)
/* TLS */
if (tls) {
int plainfd[2]; // [0] is used by the proxy, [1] is used by NBD
tlssession_t *s = NULL;
int ret;
uint32_t tmp32;
uint64_t tmp64;
send_request(sock, NBD_OPT_STARTTLS, 0, NULL);
if (read(sock, &tmp64, sizeof(tmp64)) < 0)
err("Could not read cliserv_magic: %m");
tmp64 = ntohll(tmp64);
if (tmp64 != NBD_OPT_REPLY_MAGIC) {
err("reply magic does not match");
}
if (read(sock, &tmp32, sizeof(tmp32)) < 0)
err("Could not read option type: %m");
tmp32 = ntohl(tmp32);
if (tmp32 != NBD_OPT_STARTTLS)
err("Reply to wrong option");
if (read(sock, &tmp32, sizeof(tmp32)) < 0)
err("Could not read option reply type: %m");
tmp32 = ntohl(tmp32);
if (tmp32 != NBD_REP_ACK) {
err("Option reply type != NBD_REP_ACK");
}
if (read(sock, &tmp32, sizeof(tmp32)) < 0) err(
"Could not read option data length: %m");
tmp32 = ntohl(tmp32);
if (tmp32 != 0) {
err("Option reply data length != 0");
}
s = tlssession_new(0,
keyfile,
certfile,
cacertfile,
tlshostname,
!cacertfile || !tlshostname, // insecure flag
#ifdef DODBG
1, // debug
#else
0, // debug
#endif
NULL, // quitfn
NULL, // erroutfn
NULL // opaque
);
if (!s)
err("Cannot establish TLS session");
if (socketpair(AF_UNIX, SOCK_STREAM, 0, plainfd) < 0)
err("Cannot get socket pair");
if (set_nonblocking(plainfd[0], 0) <0 ||
set_nonblocking(plainfd[1], 0) <0 ||
set_nonblocking(sock, 0) <0) {
close(plainfd[0]);
close(plainfd[1]);
err("Cannot set socket options");
}
ret = fork();
if (ret < 0)
err("Could not fork");
else if (ret == 0) {
// we are the child
if (daemon(0, 0) < 0) {
/* no one will see this */
fprintf(stderr, "Can't detach from the terminal");
exit(1);
}
signal (SIGPIPE, SIG_IGN);
close(plainfd[1]);
tlssession_mainloop(sock, plainfd[0], s);
close(sock);
close(plainfd[0]);
exit(0);
}
close(plainfd[0]);
close(sock);
sock = plainfd[1]; /* use the decrypted FD from now on */
*sockp = sock;
}
#else
if (keyfile) {
err("TLS requested but support not compiled in");
}
#endif
if(do_opts & NBDC_DO_LIST) {
ask_list(sock);
exit(EXIT_SUCCESS);
}
struct reply *rep = NULL;
if(!can_opt_go) {
send_opt_exportname(sock, rsize64, flags, can_opt_go, name, global_flags);
return;
}
send_info_request(sock, NBD_OPT_GO, 0, NULL, name);
do {
if(rep != NULL) free(rep);
rep = read_reply(sock);
if(rep && (rep->reply_type & NBD_REP_FLAG_ERROR)) {
switch(rep->reply_type) {
case NBD_REP_ERR_UNSUP:
/* server doesn't support NBD_OPT_GO or NBD_OPT_INFO,
* fall back to NBD_OPT_EXPORT_NAME */
send_opt_exportname(sock, rsize64, flags, can_opt_go, name, global_flags);
free(rep);
return;
case NBD_REP_ERR_POLICY:
if(rep->datasize > 0) {
char errstr[1024];
snprintf(errstr, sizeof errstr, "Connection not allowed by server policy. Server said: %s", rep->data);
err(errstr);
} else {
err("Connection not allowed by server policy.");
}
free(rep);
exit(EXIT_FAILURE);
default:
if(rep->datasize > 0) {
char errstr[1024];
snprintf(errstr, sizeof errstr, "Unknown error returned by server. Server said: %s", rep->data);
err(errstr);
} else {
err("Unknown error returned by server.");
}
free(rep);
exit(EXIT_FAILURE);
}
}
uint16_t info_type;
switch(rep->reply_type) {
case NBD_REP_INFO:
memcpy(&info_type, rep->data, 2);
info_type = htons(info_type);
switch(info_type) {
case NBD_INFO_EXPORT:
parse_sizes(rep->data + 2, rsize64, flags);
break;
default:
// ignore these, don't need them
break;
}
break;
case NBD_REP_ACK:
break;
default:
err_nonfatal("Unknown reply to NBD_OPT_GO received, ignoring");
}
} while(rep->reply_type != NBD_REP_ACK);
free(rep);
}
bool get_from_config(char* cfgname, char** name_ptr, char** dev_ptr, char** hostn_ptr, int* bs, int* timeout, int* persist, int* swap, int* sdp, int* b_unix, char**port, int* num_conns, char **certfile, char **keyfile, char **cacertfile, char **tlshostname, bool *can_opt_go) {
bool retval = false;
cur_client = calloc(sizeof(CLIENT), 1);
cur_client->bs = 512;
cur_client->nconn = 1;
yyin = fopen(SYSCONFDIR "/nbdtab", "r");
yyout = fopen("/dev/null", "w");
if(!strncmp(cfgname, "/dev/", 5)) {
cfgname += 5;
}
cur_client->dev = cfgname;
if(yyin == NULL) {
fprintf(stderr, "while opening %s: ", SYSCONFDIR "/nbdtab");
perror("could not open config file");
goto out;
}
yyparse();
if(!found_config || parse_error) {
goto out;
}
*name_ptr = cur_client->name;
*dev_ptr = calloc(strlen(cur_client->dev) + 6, 1);
snprintf(*dev_ptr, strlen(cur_client->dev) + 6, "/dev/%s", cur_client->dev);
*hostn_ptr = cur_client->hostn;
*bs = cur_client->bs;
*timeout = cur_client->timeout;
*persist = cur_client->persist ? 1 : 0;
*swap = cur_client->swap ? 1 : 0;
*sdp = cur_client->sdp ? 1 : 0;
*b_unix = cur_client->b_unix ? 1 : 0;
*num_conns = cur_client->nconn;
*certfile = cur_client->cert;
*keyfile = cur_client->key;
*cacertfile = cur_client->cacert;
*tlshostname = cur_client->tlshostn;
*can_opt_go = !(cur_client->no_optgo);
retval = true;
out:
if(yyin != NULL) {
fclose(yyin);
}
if(yyout != NULL) {
fclose(yyout);
}
return retval;
}
void setsizes(int nbd, u64 size64, int blocksize, u32 flags) {
unsigned long size;
int read_only = (flags & NBD_FLAG_READ_ONLY) ? 1 : 0;
if (size64>>12 > (uint64_t)~0UL)
err("Device too large.\n");
else {
int tmp_blocksize = 4096;
if (size64 / (u64)blocksize <= (uint64_t)~0UL)
tmp_blocksize = blocksize;
if (ioctl(nbd, NBD_SET_BLKSIZE, tmp_blocksize) < 0) {
fprintf(stderr, "Failed to set blocksize %d\n",
tmp_blocksize);
err("Ioctl/1.1a failed: %m\n");
}
size = (unsigned long)(size64 / (u64)tmp_blocksize);
if (ioctl(nbd, NBD_SET_SIZE_BLOCKS, size) < 0)
err("Ioctl/1.1b failed: %m\n");
if (tmp_blocksize != blocksize) {
if (ioctl(nbd, NBD_SET_BLKSIZE, (unsigned long)blocksize) < 0) {
fprintf(stderr, "Failed to set blocksize %d\n",
blocksize);
err("Ioctl/1.1c failed: %m\n");
}
}
fprintf(stderr, "bs=%d, sz=%" PRIu64 " bytes\n", blocksize, (u64)tmp_blocksize * size);
}
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");
}
void set_timeout(int nbd, int timeout) {
if (timeout) {
if (ioctl(nbd, NBD_SET_TIMEOUT, (unsigned long)timeout) < 0)
err("Ioctl NBD_SET_TIMEOUT failed: %m\n");
fprintf(stderr, "timeout=%d\n", timeout);
}
}
void finish_sock(int sock, int nbd, int swap) {
if (ioctl(nbd, NBD_SET_SOCK, sock) < 0) {
if (errno == EBUSY)
err("Kernel doesn't support multiple connections\n");
else
err("Ioctl NBD_SET_SOCK failed: %m\n");
}
#ifndef __ANDROID__
if (swap)
mlockall(MCL_CURRENT | MCL_FUTURE);
#endif
}
static int
oom_adjust(const char *file, const char *value)
{
int fd, rc;
size_t len;
fd = open(file, O_WRONLY);
if (fd < 0)
return -1;
len = strlen(value);
rc = write(fd, value, len) != (ssize_t) len;
close(fd);
return rc ? -1 : 0;
}
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, tmp, ap);
va_end(ap);
} else {
fprintf(stderr, "%s version %s\n", PROG_NAME, PACKAGE_VERSION);
}
#if HAVE_NETLINK
fprintf(stderr, "Usage: nbd-client -name|-N name host [port] nbd_device\n\t[-block-size|-b block size] [-timeout|-t timeout] [-swap|-s] [-sdp|-S]\n\t[-persist|-p] [-nofork|-n] [-systemd-mark|-m] [-nonetlink|-L]\n\t[-readonly|-R] [-size|-B bytes] [-preinit|-P]\n");
#else
fprintf(stderr, "Usage: nbd-client -name|-N name host [port] nbd_device\n\t[-block-size|-b block size] [-timeout|-t timeout] [-swap|-s] [-sdp|-S]\n\t[-persist|-p] [-nofork|-n] [-systemd-mark|-m]\n\t[-readonly|-R] [-size|-B bytes] [-preinit|-P]\n");
#endif
fprintf(stderr, "Or : nbd-client -u (with same arguments as above)\n");
fprintf(stderr, "Or : nbd-client nbdX\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, "Or : nbd-client -l|--list host\n");
fprintf(stderr, "Or : nbd-client -V|--version\n");
#if HAVE_GNUTLS && !defined(NOTLS)
fprintf(stderr, "All commands that connect to a host also take:\n\t[-F|-certfile certfile] [-K|-keyfile keyfile]\n\t[-A|-cacertfile cacertfile] [-H|-tlshostname hostname] [-x|-enable-tls]\n");
#endif
fprintf(stderr, "Default value for blocksize is 512\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");
fprintf(stderr, "Default value for port is 10809. Note that port must always be numeric\n");
fprintf(stderr, "Bug reports and general discussion should go to %s\n", PACKAGE_BUGREPORT);
}
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("disconnect, ");
if (ioctl(nbd, NBD_DISCONNECT)<0)
err("Ioctl failed: %m\n");
printf("sock, ");
if (ioctl(nbd, NBD_CLEAR_SOCK)<0)
err("Ioctl failed: %m\n");
printf("done\n");
close(nbd);
}
#if HAVE_NETLINK
static const char *short_opts = "-A:B:b:c:C:d:gH:hK:LlnN:PpRSst:uVx";
#else
static const char *short_opts = "-A:B:b:c:C:d:gH:hK:lnN:PpRSst:uVx";
#endif
int main(int argc, char *argv[]) {
char* port=NBD_DEFAULT_PORT;
int sock, nbd;
int blocksize=512;
char *hostname=NULL;
char *nbddev=NULL;
int swap=0;
int cont=0;
int timeout=0;
int sdp=0;
int G_GNUC_UNUSED nofork=0; // if -dNOFORK
pid_t main_pid;
u64 size64 = 0;
u64 force_size64 = 0;
uint16_t flags = 0;
bool force_read_only = false;
bool preinit = false;
int c;
int nonspecial=0;
int b_unix=0;
char* name="";
uint16_t needed_flags=0;
uint32_t cflags=NBD_FLAG_C_FIXED_NEWSTYLE;
uint32_t opts=0;
sigset_t block, old;
char *certfile = NULL;
char *keyfile = NULL;
char *cacertfile = NULL;
char *tlshostname = NULL;
bool tls = false;
struct sigaction sa;
int num_connections = 1;
int netlink = HAVE_NETLINK;
int need_disconnect = 0;
int *sockfds;
struct option long_options[] = {
{ "cacertfile", required_argument, NULL, 'A' },
{ "block-size", required_argument, NULL, 'b' },
{ "size", required_argument, NULL, 'B' },
{ "check", required_argument, NULL, 'c' },
{ "connections", required_argument, NULL, 'C'},
{ "disconnect", required_argument, NULL, 'd' },
{ "certfile", required_argument, NULL, 'F' },
{ "no-optgo", no_argument, NULL, 'g' },
{ "help", no_argument, NULL, 'h' },
{ "tlshostname", required_argument, NULL, 'H' },
{ "keyfile", required_argument, NULL, 'K' },
{ "list", no_argument, NULL, 'l' },
#if HAVE_NETLINK
{ "nonetlink", no_argument, NULL, 'L' },
#endif
{ "systemd-mark", no_argument, NULL, 'm' },
{ "nofork", no_argument, NULL, 'n' },
{ "name", required_argument, NULL, 'N' },
{ "persist", no_argument, NULL, 'p' },
{ "preinit", no_argument, NULL, 'P' },
{ "readonly", no_argument, NULL, 'R' },
{ "sdp", no_argument, NULL, 'S' },
{ "swap", no_argument, NULL, 's' },
{ "timeout", required_argument, NULL, 't' },
{ "unix", no_argument, NULL, 'u' },
{ "version", no_argument, NULL, 'V' },
{ "enable-tls", no_argument, NULL, 'x' },
{ 0, 0, 0, 0 },
};
int i;
bool can_opt_go = true;
logging(MY_NAME);
#if HAVE_GNUTLS && !defined(NOTLS)
tlssession_init();
#endif
while((c=getopt_long_only(argc, argv, short_opts, long_options, NULL))>=0) {
switch(c) {
case 1:
// non-option argument
if(strchr(optarg, '=')) {