-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathvddk.c
1054 lines (944 loc) · 31.9 KB
/
vddk.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
/* nbdkit
* Copyright Red Hat
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Red Hat nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include <unistd.h>
#include <assert.h>
#include <dlfcn.h>
#include <libgen.h>
#include <sys/time.h>
#include <pthread.h>
#define NBDKIT_API_VERSION 2
#include <nbdkit-plugin.h>
#include "array-size.h"
#include "cleanup.h"
#include "minmax.h"
#include "vector.h"
#include "vddk.h"
/* Debug flags. */
NBDKIT_DLL_PUBLIC int vddk_debug_diskinfo;
NBDKIT_DLL_PUBLIC int vddk_debug_extents;
NBDKIT_DLL_PUBLIC int vddk_debug_datapath = 1;
/* For each VDDK API define a global variable. These globals are
* initialized when the plugin is loaded (by vddk_get_ready).
*/
#define STUB(fn, ret, args) ret (*fn) args
#define OPTIONAL_STUB(fn, ret, args) STUB (fn, ret, args)
#include "vddk-stubs.h"
#undef STUB
#undef OPTIONAL_STUB
/* Parameters passed to InitEx. */
#define VDDK_MAJOR 6
#define VDDK_MINOR 5
void *dl; /* dlopen handle */
bool init_called; /* was InitEx called */
__thread int error_suppression; /* threadlocal error suppression */
int library_version; /* VDDK major: 6, 7, 8, ... */
bool is_remote; /* true if remote connection */
enum compression_type compression; /* compression */
char *config; /* config */
const char *cookie; /* cookie */
bool create; /* create */
enum VixDiskLibAdapterType create_adapter_type =
VIXDISKLIB_ADAPTER_SCSI_BUSLOGIC; /* create-adapter-type */
uint16_t create_hwversion =
VIXDISKLIB_HWVERSION_WORKSTATION_5; /* create-hwversion */
uint64_t create_size; /* create-size */
enum VixDiskLibDiskType create_type =
VIXDISKLIB_DISK_MONOLITHIC_SPARSE; /* create-type */
const char *filename; /* file */
char *libdir; /* libdir */
uint16_t nfc_host_port; /* nfchostport */
char *password; /* password */
uint16_t port; /* port */
const char *server_name; /* server */
bool single_link; /* single-link */
const char *snapshot_moref; /* snapshot */
const char *thumb_print; /* thumbprint */
const char *transport_modes; /* transports */
bool unbuffered; /* unbuffered */
const char *username; /* user */
const char *vmx_spec; /* vm */
/* Unload the plugin. */
static void
vddk_unload (void)
{
if (init_called) {
VDDK_CALL_START (VixDiskLib_Exit, "")
VixDiskLib_Exit ();
VDDK_CALL_END (VixDiskLib_Exit, 0);
}
if (dl)
dlclose (dl);
display_stats ();
free (config);
free (libdir);
free (password);
}
/* Configuration. */
static int
vddk_config (const char *key, const char *value)
{
int r;
int64_t r64;
if (strcmp (key, "compression") == 0) {
if (strcmp (value, "zlib") == 0)
compression = ZLIB;
else if (strcmp (value, "fastlz") == 0)
compression = FASTLZ;
else if (strcmp (value, "skipz") == 0)
compression = SKIPZ;
else if (strcmp (value, "none") == 0)
compression = NONE;
else {
nbdkit_error ("unknown compression type: %s", value);
return -1;
}
}
else if (strcmp (key, "config") == 0) {
/* See FILENAMES AND PATHS in nbdkit-plugin(3). */
free (config);
config = nbdkit_realpath (value);
if (!config)
return -1;
}
else if (strcmp (key, "cookie") == 0) {
cookie = value;
}
else if (strcmp (key, "create") == 0) {
r = nbdkit_parse_bool (value);
if (r == -1)
return -1;
create = r;
}
else if (strcmp (key, "create-adapter-type") == 0) {
if (strcmp (value, "ide") == 0)
create_adapter_type = VIXDISKLIB_ADAPTER_IDE;
else if (strcmp (value, "scsi-buslogic") == 0)
create_adapter_type = VIXDISKLIB_ADAPTER_SCSI_BUSLOGIC;
else if (strcmp (value, "scsi-lsilogic") == 0)
create_adapter_type = VIXDISKLIB_ADAPTER_SCSI_LSILOGIC;
else {
nbdkit_error ("unknown create-adapter-type: %s", value);
return -1;
}
}
else if (strcmp (key, "create-hwversion") == 0) {
if (strcmp (value, "workstation4") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_WORKSTATION_4;
else if (strcmp (value, "workstation5") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_WORKSTATION_5;
else if (strcmp (value, "workstation6") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_WORKSTATION_6;
else if (strcmp (value, "esx30") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_ESX30;
else if (strcmp (value, "esx4x") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_ESX4X;
else if (strcmp (value, "esx50") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_ESX50;
else if (strcmp (value, "esx51") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_ESX51;
else if (strcmp (value, "esx55") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_ESX55;
else if (strcmp (value, "esx60") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_ESX60;
else if (strcmp (value, "esx65") == 0)
create_hwversion = VIXDISKLIB_HWVERSION_ESX65;
else if (nbdkit_parse_uint16_t ("create-hwversion", value,
&create_hwversion) == -1) {
nbdkit_error ("unknown create-hwversion: %s", value);
return -1;
}
}
else if (strcmp (key, "create-size") == 0) {
r64 = nbdkit_parse_size (value);
if (r64 == -1)
return -1;
if (r64 <= 0 || (r64 & 511) != 0) {
nbdkit_error ("create-size must be greater than zero and a multiple of 512");
return -1;
}
create_size = r64;
}
else if (strcmp (key, "create-type") == 0) {
if (strcmp (value, "monolithic-sparse") == 0)
create_type = VIXDISKLIB_DISK_MONOLITHIC_SPARSE;
else if (strcmp (value, "monolithic-flat") == 0)
create_type = VIXDISKLIB_DISK_MONOLITHIC_FLAT;
else if (strcmp (value, "split-sparse") == 0)
create_type = VIXDISKLIB_DISK_SPLIT_SPARSE;
else if (strcmp (value, "split-flat") == 0)
create_type = VIXDISKLIB_DISK_SPLIT_FLAT;
else if (strcmp (value, "vmfs-flat") == 0)
create_type = VIXDISKLIB_DISK_VMFS_FLAT;
else if (strcmp (value, "stream-optimized") == 0)
create_type = VIXDISKLIB_DISK_STREAM_OPTIMIZED;
else if (strcmp (value, "vmfs-thin") == 0)
create_type = VIXDISKLIB_DISK_VMFS_THIN;
else if (strcmp (value, "vmfs-sparse") == 0)
create_type = VIXDISKLIB_DISK_VMFS_SPARSE;
else {
nbdkit_error ("unknown create-type: %s", value);
return -1;
}
}
else if (strcmp (key, "file") == 0) {
/* NB: Don't convert this to an absolute path, because in the
* remote case this can be a path located on the VMware server.
* For local paths the user must supply an absolute path.
*/
filename = value;
}
else if (strcmp (key, "libdir") == 0) {
/* See FILENAMES AND PATHS in nbdkit-plugin(3). */
free (libdir);
libdir = nbdkit_realpath (value);
if (!libdir)
return -1;
}
else if (strcmp (key, "nfchostport") == 0) {
if (nbdkit_parse_uint16_t ("nfchostport", value, &nfc_host_port) == -1)
return -1;
}
else if (strcmp (key, "noreexec") == 0) {
/* This undocumented option disables reexec. The caller must set
* LD_LIBRARY_PATH correctly as for older versions of the plugin.
* This option is only for use when debugging reexec, eg. to see
* if it causing a problem.
*/
r = nbdkit_parse_bool (value);
if (r == -1)
return -1;
noreexec = r;
}
else if (strcmp (key, "password") == 0) {
free (password);
if (nbdkit_read_password (value, &password) == -1)
return -1;
}
else if (strcmp (key, "port") == 0) {
if (nbdkit_parse_uint16_t ("port", value, &port) == -1)
return -1;
}
else if (strcmp (key, "reexeced_") == 0) {
/* Special name because it is only for internal use. */
reexeced = (char *)value;
}
else if (strcmp (key, "server") == 0) {
server_name = value;
}
else if (strcmp (key, "single-link") == 0) {
r = nbdkit_parse_bool (value);
if (r == -1)
return -1;
single_link = r;
}
else if (strcmp (key, "snapshot") == 0) {
snapshot_moref = value;
}
else if (strcmp (key, "thumbprint") == 0) {
thumb_print = value;
}
else if (strcmp (key, "transports") == 0) {
transport_modes = value;
}
else if (strcmp (key, "unbuffered") == 0) {
r = nbdkit_parse_bool (value);
if (r == -1)
return -1;
unbuffered = r;
}
else if (strcmp (key, "user") == 0) {
username = value;
}
else if (strcmp (key, "vimapiver") == 0) {
/* Ignored for backwards compatibility. */
}
else if (strcmp (key, "vm") == 0) {
vmx_spec = value;
}
else {
nbdkit_error ("unknown parameter '%s'", key);
return -1;
}
return 0;
}
static int
vddk_config_complete (void)
{
if (filename == NULL) {
nbdkit_error ("you must supply the file=<FILENAME> parameter "
"after the plugin name on the command line");
return -1;
}
/* For remote connections, check all the parameters have been
* passed. Note that VDDK will segfault if parameters that it
* expects are NULL (and there's no real way to tell what parameters
* it is expecting). This implements the same test that the VDDK
* sample program does.
*/
is_remote =
vmx_spec ||
server_name ||
username ||
password ||
cookie ||
thumb_print ||
port ||
nfc_host_port;
if (is_remote) {
#define missing(test, param) \
if (test) { \
nbdkit_error ("remote connection requested, missing parameter: %s", \
param); \
return -1; \
}
missing (!server_name, "server");
missing (!username, "user");
missing (!password, "password");
missing (!vmx_spec, "vm");
#undef missing
}
if (create) {
if (is_remote) {
nbdkit_error ("create=true can only be used to create local VMDK files");
return -1;
}
if (create_size == 0) {
nbdkit_error ("if using create=true you must specify the size using the create-size parameter");
return -1;
}
}
/* Restore original LD_LIBRARY_PATH after reexec. */
if (restore_ld_library_path () == -1)
return -1;
return 0;
}
#define vddk_config_help \
"[file=]<FILENAME> (required) The filename (eg. VMDK file) to serve.\n" \
"Many optional parameters are supported, see nbdkit-vddk-plugin(1)."
static void
missing_required_symbol (const char *fn)
{
nbdkit_error ("required VDDK symbol \"%s\" is missing. "
"VDDK version must be >= 6.5. "
"See nbdkit-vddk-plugin(1) man page section \"SUPPORTED VERSIONS OF VDDK\". "
"Original dlopen error: %s\n",
fn, dlerror ());
exit (EXIT_FAILURE);
}
/* Load the VDDK library. */
static void
load_library (bool load_error_is_fatal)
{
static struct {
const char *soname;
int library_version;
} libs[] = {
/* Prefer the newest library in case multiple exist. Check two
* possible directories: the usual VDDK installation puts .so
* files in an arch-specific subdirectory of $libdir (our minimum
* supported version is VDDK 6.5, which only supports x64-64); but
* our testsuite is easier to write if we point libdir directly to
* a stub .so.
*/
{ "lib64/libvixDiskLib.so.8", 8 },
{ "libvixDiskLib.so.8", 8 },
{ "lib64/libvixDiskLib.so.7", 7 },
{ "libvixDiskLib.so.7", 7 },
{ "lib64/libvixDiskLib.so.6", 6 },
{ "libvixDiskLib.so.6", 6 },
{ NULL }
};
size_t i;
CLEANUP_FREE char *orig_error = NULL;
if (!libdir) {
libdir = strdup (VDDK_LIBDIR);
if (!libdir) {
nbdkit_error ("strdup: %m");
exit (EXIT_FAILURE);
}
}
for (i = 0; libs[i].soname != NULL; ++i) {
CLEANUP_FREE char *path;
/* Set the full path so that dlopen will preferentially load the
* system libraries from the same directory.
*/
if (asprintf (&path, "%s/%s", libdir, libs[i].soname) == -1) {
nbdkit_error ("asprintf: %m");
exit (EXIT_FAILURE);
}
dl = dlopen (path, RTLD_NOW);
if (dl != NULL) {
library_version = libs[i].library_version;
/* Now that we found the library, ensure that LD_LIBRARY_PATH
* includes its directory for all future loads. This may modify
* path in-place and/or re-exec nbdkit, but that's okay.
*/
reexec_if_needed (dirname (path));
break;
}
if (i == 0) {
orig_error = dlerror ();
if (orig_error)
orig_error = strdup (orig_error);
}
}
if (dl == NULL) {
if (!load_error_is_fatal)
return;
nbdkit_error ("%s\n\n"
"If '%s' is located on a non-standard path you may need to\n"
"set libdir=/path/to/vmware-vix-disklib-distrib.\n\n"
"See nbdkit-vddk-plugin(1) man page section \"LIBRARY LOCATION\" for details.",
orig_error ? : "(unknown error)", libs[0].soname);
exit (EXIT_FAILURE);
}
assert (library_version >= 6);
/* Load symbols. */
#define STUB(fn, ret, args) \
do { \
fn = dlsym (dl, #fn); \
if (fn == NULL) \
missing_required_symbol (#fn); \
} while (0)
#define OPTIONAL_STUB(fn, ret, args) fn = dlsym (dl, #fn)
#include "vddk-stubs.h"
#undef STUB
#undef OPTIONAL_STUB
}
static int
vddk_get_ready (void)
{
load_library (true);
return 0;
}
/* Turn log messages from the library into nbdkit_debug. */
static void
debug_function (const char *fs, va_list args)
{
CLEANUP_FREE char *str = NULL;
if (vasprintf (&str, fs, args) == -1) {
nbdkit_debug ("lost debug message: %s", fs);
return;
}
trim (str);
nbdkit_debug ("%s", str);
}
/* VDDK 7 added some useless error messages about their "phone home"
* system called CEIP which only panics users. Demote these to debug
* statements below.
*
* https://bugzilla.redhat.com/show_bug.cgi?id=1834267
* https://bugzilla.redhat.com/show_bug.cgi?id=2083617
* https://bugzilla.redhat.com/show_bug.cgi?id=2104720
*/
static const char * const demoted_errors[] = {
"Get CEIP status failed",
"VDDK_PhoneHome:",
};
/* Turn error messages from the library into nbdkit_error. */
static void
error_function (const char *fs, va_list args)
{
CLEANUP_FREE char *str = NULL;
size_t i;
/* If the thread-local error_suppression flag is non-zero then we
* will suppress error messages from VDDK in this thread.
*/
if (error_suppression) return;
if (vasprintf (&str, fs, args) == -1) {
nbdkit_error ("lost error message: %s", fs);
return;
}
trim (str);
/* See comment above about demoted errors. */
for (i = 0; i < ARRAY_SIZE (demoted_errors); ++i) {
if (strstr (str, demoted_errors[i]) != NULL) {
nbdkit_debug ("%s", str);
return;
}
}
nbdkit_error ("%s", str);
}
/* Defer VDDK initialization until after fork because it is known to
* create background threads from VixDiskLib_InitEx. Unfortunately
* error reporting from this callback is difficult, but we have
* already checked in .get_ready that the library is dlopenable.
*
* For various hangs and failures which were caused by background
* threads and fork see:
* https://bugzilla.redhat.com/show_bug.cgi?id=1846309#c9
* https://www.redhat.com/archives/libguestfs/2019-April/msg00090.html
*/
static int
vddk_after_fork (void)
{
VixError err;
/* Initialize VDDK library. */
VDDK_CALL_START (VixDiskLib_InitEx,
"%d, %d, &debug_fn, &error_fn, &error_fn, %s, %s",
VDDK_MAJOR, VDDK_MINOR,
libdir, config ? : "NULL")
err = VixDiskLib_InitEx (VDDK_MAJOR, VDDK_MINOR,
&debug_function, /* log function */
&error_function, /* warn function */
&error_function, /* panic function */
libdir, config);
VDDK_CALL_END (VixDiskLib_InitEx, 0);
if (err != VIX_OK) {
VDDK_ERROR (err, "VixDiskLib_InitEx");
exit (EXIT_FAILURE);
}
init_called = true;
return 0;
}
static void
vddk_dump_plugin (void)
{
load_library (false);
printf ("vddk_default_libdir=%s\n", VDDK_LIBDIR);
printf ("vddk_has_nfchostport=1\n");
/* Because load_library (false) we might not have loaded VDDK, in
* which case we didn't set library_version. Note this cannot
* happen in the normal (non-debug-plugin) path because there we use
* load_library (true).
*/
if (library_version > 0)
printf ("vddk_library_version=%d\n", library_version);
#if defined (HAVE_DLADDR)
/* It would be nice to print the version of VDDK from the shared
* library, but VDDK does not provide it. Instead we can get the
* path to the library using the glibc extension dladdr, and then
* resolve symlinks using realpath. The final pathname should
* contain the version number.
*/
Dl_info info;
CLEANUP_FREE char *p = NULL;
if (dl != NULL &&
dladdr (VixDiskLib_InitEx, &info) != 0 &&
info.dli_fname != NULL &&
(p = nbdkit_realpath (info.dli_fname)) != NULL) {
printf ("vddk_dll=%s\n", p);
}
#endif
/* Note we print all VDDK APIs found here, not just the optional
* ones. That is so if we update the baseline VDDK in future and
* make optional into required APIs, the output doesn't change.
*/
#define STUB(fn, ret, args) if (fn != NULL) printf ("%s=1\n", #fn);
#define OPTIONAL_STUB(fn, ret, args) STUB (fn, ret, args)
#include "vddk-stubs.h"
#undef STUB
#undef OPTIONAL_STUB
}
/* The rules on threads and VDDK are here:
* https://code.vmware.com/docs/11750/virtual-disk-development-kit-programming-guide/GUID-6BE903E8-DC70-46D9-98E4-E34A2002C2AD.html
*
* Before nbdkit 1.22 we used SERIALIZE_ALL_REQUESTS. In nbdkit
* 1.22-1.28 we changed this to SERIALIZE_REQUESTS and added a mutex
* around calls to VixDiskLib_Open and VixDiskLib_Close. In nbdkit
* 1.30 and above we assign a background thread per connection to do
* asynch operations and use the PARALLEL model. We still need the
* lock around Open and Close.
*/
#define THREAD_MODEL NBDKIT_THREAD_MODEL_PARALLEL
/* Lock protecting open/close calls - see above. */
static pthread_mutex_t open_close_lock = PTHREAD_MUTEX_INITIALIZER;
static inline VixDiskLibConnectParams *
allocate_connect_params (void)
{
VixDiskLibConnectParams *ret;
if (VixDiskLib_AllocateConnectParams != NULL) {
VDDK_CALL_START (VixDiskLib_AllocateConnectParams, "")
ret = VixDiskLib_AllocateConnectParams ();
VDDK_CALL_END (VixDiskLib_AllocateConnectParams, 0);
}
else
ret = calloc (1, sizeof (VixDiskLibConnectParams));
return ret;
}
static inline void
free_connect_params (VixDiskLibConnectParams *params)
{
/* Only use FreeConnectParams if AllocateConnectParams was
* originally called. Otherwise use free.
*/
if (VixDiskLib_AllocateConnectParams != NULL) {
VDDK_CALL_START (VixDiskLib_FreeConnectParams, "params")
VixDiskLib_FreeConnectParams (params);
VDDK_CALL_END (VixDiskLib_FreeConnectParams, 0);
}
else
free (params);
}
/* Create the per-connection handle. */
static void *
vddk_open (int readonly)
{
ACQUIRE_LOCK_FOR_CURRENT_SCOPE (&open_close_lock);
struct vddk_handle *h;
VixError err;
uint32_t flags;
const char *transport_mode;
int pterr;
h = calloc (1, sizeof *h);
if (h == NULL) {
nbdkit_error ("calloc: %m");
return NULL;
}
h->commands = (command_queue) empty_vector;
pthread_mutex_init (&h->commands_lock, NULL);
pthread_cond_init (&h->commands_cond, NULL);
h->params = allocate_connect_params ();
if (h->params == NULL) {
nbdkit_error ("allocate VixDiskLibConnectParams: %m");
goto err0;
}
if (is_remote) {
h->params->vmxSpec = (char *) vmx_spec;
h->params->serverName = (char *) server_name;
if (cookie == NULL) {
h->params->credType = VIXDISKLIB_CRED_UID;
h->params->creds.uid.userName = (char *) username;
h->params->creds.uid.password = password;
}
else {
h->params->credType = VIXDISKLIB_CRED_SESSIONID;
h->params->creds.sessionId.cookie = (char *) cookie;
h->params->creds.sessionId.userName = (char *) username;
h->params->creds.sessionId.key = password;
}
h->params->thumbPrint = (char *) thumb_print;
h->params->port = port;
h->params->nfcHostPort = nfc_host_port;
h->params->specType = VIXDISKLIB_SPEC_VMX;
}
/* XXX We should call VixDiskLib_PrepareForAccess here. It disables
* live storage migration (Storage VMotion) of the VM while we are
* accessing it, and may be required for "Advanced Transport modes".
*/
VDDK_CALL_START (VixDiskLib_ConnectEx,
"h->params, %d, %s, %s, &connection",
readonly,
snapshot_moref ? : "NULL",
transport_modes ? : "NULL")
err = VixDiskLib_ConnectEx (h->params,
readonly,
snapshot_moref,
transport_modes,
&h->connection);
VDDK_CALL_END (VixDiskLib_ConnectEx, 0);
if (err != VIX_OK) {
VDDK_ERROR (err, "VixDiskLib_ConnectEx");
goto err1;
}
/* Creating a disk? The first time the connection is opened we will
* create it here (we need h->connection). Then set create=false so
* we don't create it again. This is all serialized through
* open_close_lock so it is safe.
*/
if (create) {
VixDiskLibCreateParams cparams = {
.diskType = create_type,
.adapterType = create_adapter_type,
.hwVersion = create_hwversion,
.capacity = create_size / VIXDISKLIB_SECTOR_SIZE,
.logicalSectorSize = 0,
.physicalSectorSize = 0
};
VDDK_CALL_START (VixDiskLib_Create,
"h->connection, %s, &cparams, NULL, NULL",
filename)
err = VixDiskLib_Create (h->connection, filename, &cparams, NULL, NULL);
VDDK_CALL_END (VixDiskLib_Create, 0);
if (err != VIX_OK) {
VDDK_ERROR (err, "VixDiskLib_Create: %s", filename);
goto err2;
}
create = false; /* Don't create it again. */
}
flags = 0;
if (readonly)
flags |= VIXDISKLIB_FLAG_OPEN_READ_ONLY;
if (single_link)
flags |= VIXDISKLIB_FLAG_OPEN_SINGLE_LINK;
if (unbuffered)
flags |= VIXDISKLIB_FLAG_OPEN_UNBUFFERED;
switch (compression) {
case ZLIB: flags |= VIXDISKLIB_FLAG_OPEN_COMPRESSION_ZLIB; break;
case FASTLZ: flags |= VIXDISKLIB_FLAG_OPEN_COMPRESSION_FASTLZ; break;
case SKIPZ: flags |= VIXDISKLIB_FLAG_OPEN_COMPRESSION_SKIPZ; break;
case NONE: break;
}
VDDK_CALL_START (VixDiskLib_Open,
"connection, %s, %d, &handle", filename, flags)
err = VixDiskLib_Open (h->connection, filename, flags, &h->handle);
VDDK_CALL_END (VixDiskLib_Open, 0);
if (err != VIX_OK) {
VDDK_ERROR (err, "VixDiskLib_Open: %s", filename);
/* Attempt to advise the user on the extremely helpful "Unknown error"
* result of VixDiskLib_Open(). The one reason we've seen for this error
* mode is a thumbprint mismatch (RHBZ#1905772). Note that:
*
* (1) The thumbprint (as a part of "h->params") is passed to
* VixDiskLib_ConnectEx() above, but the fingerprint mismatch is
* detected only inside VixDiskLib_Open().
*
* (2) "thumb_print" may be NULL -- vddk_config_complete() is correct not to
* require a non-NULL "thumb_print" for a remote connection; the sample
* program "vixDiskLibSample.cpp" in vddk-7.0.3 explicitly permits
* "-thumb" to be absent.
*/
if (is_remote && err == VIX_E_FAIL)
nbdkit_error ("Please verify whether the \"thumbprint\" parameter (%s) "
"matches the SHA1 fingerprint of the remote VMware "
"server. Refer to nbdkit-vddk-plugin(1) section "
"\"THUMBPRINTS\" for details.",
thumb_print == NULL ? "not specified" : thumb_print);
goto err2;
}
VDDK_CALL_START (VixDiskLib_GetTransportMode, "handle")
transport_mode = VixDiskLib_GetTransportMode (h->handle);
VDDK_CALL_END (VixDiskLib_GetTransportMode, 0);
nbdkit_debug ("transport mode: %s", transport_mode);
/* Start the background thread which actually does the asynchronous
* work.
*/
pterr = pthread_create (&h->thread, NULL, vddk_worker_thread, h);
if (pterr != 0) {
errno = pterr;
nbdkit_error ("pthread_create: %m");
goto err3;
}
return h;
err3:
VDDK_CALL_START (VixDiskLib_Close, "handle")
VixDiskLib_Close (h->handle);
VDDK_CALL_END (VixDiskLib_Close, 0);
err2:
VDDK_CALL_START (VixDiskLib_Disconnect, "connection")
VixDiskLib_Disconnect (h->connection);
VDDK_CALL_END (VixDiskLib_Disconnect, 0);
err1:
free_connect_params (h->params);
err0:
pthread_mutex_destroy (&h->commands_lock);
pthread_cond_destroy (&h->commands_cond);
free (h);
return NULL;
}
/* Free up the per-connection handle. */
static void
vddk_close (void *handle)
{
ACQUIRE_LOCK_FOR_CURRENT_SCOPE (&open_close_lock);
struct vddk_handle *h = handle;
struct command stop_cmd = { .type = STOP };
send_command_and_wait (h, &stop_cmd);
pthread_join (h->thread, NULL);
VDDK_CALL_START (VixDiskLib_Close, "handle")
VixDiskLib_Close (h->handle);
VDDK_CALL_END (VixDiskLib_Close, 0);
VDDK_CALL_START (VixDiskLib_Disconnect, "connection")
VixDiskLib_Disconnect (h->connection);
VDDK_CALL_END (VixDiskLib_Disconnect, 0);
free_connect_params (h->params);
pthread_mutex_destroy (&h->commands_lock);
pthread_cond_destroy (&h->commands_cond);
command_queue_reset (&h->commands);
free (h);
}
/* Get the file size. */
static int64_t
vddk_get_size (void *handle)
{
struct vddk_handle *h = handle;
VixDiskLibInfo *info;
int64_t size;
struct command info_cmd = { .type = INFO, .ptr = &info };
if (send_command_and_wait (h, &info_cmd) == -1)
return -1;
size = info->capacity * (int64_t)VIXDISKLIB_SECTOR_SIZE;
VDDK_CALL_START (VixDiskLib_FreeInfo, "info")
VixDiskLib_FreeInfo (info);
VDDK_CALL_END (VixDiskLib_FreeInfo, 0);
return size;
}
/* Advertise most efficient block sizes. */
static int
vddk_block_size (void *handle,
uint32_t *minimum, uint32_t *preferred, uint32_t *maximum)
{
struct vddk_handle *h = handle;
VixDiskLibInfo *info;
uint32_t logicalSectorSize, physicalSectorSize;
struct command info_cmd = { .type = INFO, .ptr = &info };
if (send_command_and_wait (h, &info_cmd) == -1)
return -1;
/* VDDK can only serve whole 512 byte sectors. */
*minimum = VIXDISKLIB_SECTOR_SIZE;
/* The logicalSectorSize and physicalSectorSize fields are only
* present in VDDK >= 7. In earlier versions they will not be
* initialized and contain random values (beyond the end of the
* returned structure). So compute sector sizes with this in mind.
*/
logicalSectorSize = physicalSectorSize = VIXDISKLIB_SECTOR_SIZE;
if (library_version >= 7) {
logicalSectorSize = info->logicalSectorSize;
physicalSectorSize = info->physicalSectorSize;
}
*preferred = MAX (MAX (logicalSectorSize, physicalSectorSize), 4096);
*maximum = 0xffffffff;
VDDK_CALL_START (VixDiskLib_FreeInfo, "info")
VixDiskLib_FreeInfo (info);
VDDK_CALL_END (VixDiskLib_FreeInfo, 0);
return 0;
}
/* The Flush call was added in VDDK 6.0, since we support minimum 6.5
* we are always able to do FUA / flush.
*/
static int
vddk_can_fua (void *handle)
{
return NBDKIT_FUA_NATIVE;
}
static int
vddk_can_flush (void *handle)
{
return 1;
}
/* Read data from the file.
*
* Note that reads have to be aligned to sectors (XXX).
*/
static int
vddk_pread (void *handle, void *buf, uint32_t count, uint64_t offset,
uint32_t flags)
{
struct vddk_handle *h = handle;
struct command read_cmd = {
.type = READ,
.ptr = buf,
.count = count,
.offset = offset,
};
return send_command_and_wait (h, &read_cmd);
}
static int vddk_flush (void *handle, uint32_t flags);
/* Write data to the file.
*
* Note that writes have to be aligned to sectors (XXX).
*/
static int
vddk_pwrite (void *handle, const void *buf, uint32_t count, uint64_t offset,
uint32_t flags)
{
struct vddk_handle *h = handle;
const bool fua = flags & NBDKIT_FLAG_FUA;
struct command write_cmd = {
.type = WRITE,
.ptr = (void *) buf,
.count = count,
.offset = offset,
};
if (send_command_and_wait (h, &write_cmd) == -1)
return -1;
if (fua) {
if (vddk_flush (handle, 0) == -1)
return -1;
}
return 0;
}
/* Flush data to the file. */
static int
vddk_flush (void *handle, uint32_t flags)
{
struct vddk_handle *h = handle;
struct command flush_cmd = { .type = FLUSH };
return send_command_and_wait (h, &flush_cmd);
}
static int
vddk_can_extents (void *handle)