-
Notifications
You must be signed in to change notification settings - Fork 33
/
plugins.c
978 lines (847 loc) · 25.5 KB
/
plugins.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
/* 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 <stdint.h>
#include <string.h>
#include <inttypes.h>
#include <assert.h>
#include <errno.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#include "internal.h"
#include "minmax.h"
#include "ispowerof2.h"
/* We extend the generic backend struct with extra fields relating
* to this plugin.
*/
struct backend_plugin {
struct backend backend;
struct nbdkit_plugin plugin;
};
static void
plugin_free (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
backend_unload (b, p->plugin.unload);
free (p);
}
static int
plugin_thread_model (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int model = p->plugin._thread_model;
int r;
#if !(defined SOCK_CLOEXEC && defined HAVE_MKOSTEMP && defined HAVE_PIPE2 && \
defined HAVE_ACCEPT4)
if (model > NBDKIT_THREAD_MODEL_SERIALIZE_ALL_REQUESTS) {
debug ("system lacks atomic CLOEXEC, serializing to avoid fd leaks");
model = NBDKIT_THREAD_MODEL_SERIALIZE_ALL_REQUESTS;
}
#endif
if (p->plugin.thread_model) {
r = p->plugin.thread_model ();
if (r == -1)
exit (EXIT_FAILURE);
if (r < model)
model = r;
}
return model;
}
static const char *
plugin_name (struct backend *b)
{
return b->name;
}
static void
plugin_usage (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
const char *t;
printf ("plugin: %s", b->name);
if (p->plugin.longname)
printf (" (%s)", p->plugin.longname);
printf ("\n");
printf ("(%s)\n", b->filename);
if (p->plugin.description) {
printf ("%s", p->plugin.description);
if ((t = strrchr (p->plugin.description, '\n')) == NULL || t[1])
printf ("\n");
}
if (p->plugin.config_help) {
printf ("%s", p->plugin.config_help);
if ((t = strrchr (p->plugin.config_help, '\n')) == NULL || t[1])
printf ("\n");
}
}
static const char *
plugin_version (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
return p->plugin.version;
}
/* This implements the --dump-plugin option. */
static void
plugin_dump_fields (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
char *path;
path = nbdkit_realpath (b->filename);
printf ("path=%s\n", path);
free (path);
printf ("name=%s\n", b->name);
if (p->plugin.version)
printf ("version=%s\n", p->plugin.version);
printf ("api_version=%d\n", p->plugin._api_version);
printf ("struct_size=%" PRIu64 "\n", p->plugin._struct_size);
printf ("max_thread_model=%s\n",
name_of_thread_model (p->plugin._thread_model));
printf ("thread_model=%s\n",
name_of_thread_model (top->thread_model (top)));
printf ("errno_is_preserved=%d\n", !!p->plugin.errno_is_preserved);
if (p->plugin.magic_config_key)
printf ("magic_config_key=%s\n", p->plugin.magic_config_key);
#define HAS(field) if (p->plugin.field) printf ("has_%s=1\n", #field)
HAS (longname);
HAS (description);
HAS (load);
HAS (unload);
HAS (dump_plugin);
HAS (config);
HAS (config_complete);
HAS (config_help);
HAS (thread_model);
HAS (get_ready);
HAS (after_fork);
HAS (cleanup);
HAS (preconnect);
HAS (list_exports);
HAS (default_export);
HAS (open);
HAS (close);
HAS (export_description);
HAS (get_size);
HAS (block_size);
HAS (can_write);
HAS (can_flush);
HAS (is_rotational);
HAS (can_trim);
HAS (can_zero);
HAS (can_fast_zero);
HAS (can_extents);
HAS (can_fua);
HAS (can_multi_conn);
HAS (can_cache);
HAS (pread);
HAS (pwrite);
HAS (flush);
HAS (trim);
HAS (zero);
HAS (extents);
HAS (cache);
HAS (_pread_v1);
HAS (_pwrite_v1);
HAS (_flush_v1);
HAS (_trim_v1);
HAS (_zero_v1);
#undef HAS
/* Custom fields. */
if (p->plugin.dump_plugin)
p->plugin.dump_plugin ();
}
static void
plugin_config (struct backend *b, const char *key, const char *value)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
debug ("%s: config key=%s, value=%s", b->name, key, value);
if (p->plugin.config == NULL) {
fprintf (stderr,
"%s: %s: this plugin does not need command line configuration\n"
"Try using: %s --help %s\n",
program_name, b->filename,
program_name, b->filename);
exit (EXIT_FAILURE);
}
if (p->plugin.config (key, value) == -1)
exit (EXIT_FAILURE);
}
static void
plugin_config_complete (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
debug ("%s: config_complete", b->name);
if (!p->plugin.config_complete)
return;
if (p->plugin.config_complete () == -1)
exit (EXIT_FAILURE);
}
static const char *
plugin_magic_config_key (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
return p->plugin.magic_config_key;
}
static void
plugin_get_ready (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
debug ("%s: get_ready", b->name);
if (!p->plugin.get_ready)
return;
if (p->plugin.get_ready () == -1)
exit (EXIT_FAILURE);
}
static void
plugin_after_fork (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
debug ("%s: after_fork", b->name);
if (!p->plugin.after_fork)
return;
if (p->plugin.after_fork () == -1)
exit (EXIT_FAILURE);
}
static void
plugin_cleanup (struct backend *b)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
debug ("%s: cleanup", b->name);
if (p->plugin.cleanup)
p->plugin.cleanup ();
}
static int
plugin_preconnect (struct backend *b, int readonly)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
debug ("%s: preconnect", b->name);
if (!p->plugin.preconnect)
return 0;
return p->plugin.preconnect (readonly);
}
static int
plugin_list_exports (struct backend *b, int readonly, int is_tls,
struct nbdkit_exports *exports)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (!p->plugin.list_exports)
return nbdkit_use_default_export (exports);
return p->plugin.list_exports (readonly, is_tls, exports);
}
static const char *
plugin_default_export (struct backend *b, int readonly, int is_tls)
{
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (!p->plugin.default_export)
return "";
return p->plugin.default_export (readonly, is_tls);
}
static void *
plugin_open (struct context *c, int readonly, const char *exportname,
int is_tls)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
void *r;
assert (p->plugin.open != NULL);
/* Save the exportname since the lifetime of the string passed in
* here is likely to be brief. In addition this provides a place
* for nbdkit_export_name to retrieve it if called from the plugin.
* While readonly and the export name can be altered in plugins, the
* tls mode cannot.
*
* In API V3 we propose to pass the exportname and tls mode as extra
* parameters to the (new) plugin.open and deprecate
* nbdkit_export_name and nbdkit_is_tls for V3 users. Even then we
* will still need to save the export name in the handle because of
* the lifetime issue.
*/
if (c->conn) {
assert (c->conn->exportname == NULL);
c->conn->exportname = nbdkit_strdup_intern (exportname);
if (c->conn->exportname == NULL)
return NULL;
}
r = p->plugin.open (readonly);
if (r == NULL && c->conn)
c->conn->exportname = NULL;
return r;
}
/* We don't expose .prepare and .finalize to plugins since they aren't
* necessary. Plugins can easily do the same work in .open and
* .close.
*/
static int
plugin_prepare (struct context *c, int readonly)
{
return 0;
}
static int
plugin_finalize (struct context *c)
{
return 0;
}
static void
plugin_close (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
assert (c->handle);
if (p->plugin.close)
p->plugin.close (c->handle);
if (c->conn)
c->conn->exportname = NULL;
}
static const char *
plugin_export_description (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.export_description)
return p->plugin.export_description (c->handle);
else
return NULL;
}
static int64_t
plugin_get_size (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
assert (p->plugin.get_size != NULL);
return p->plugin.get_size (c->handle);
}
static int
plugin_block_size (struct context *c,
uint32_t *minimum, uint32_t *preferred, uint32_t *maximum)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.block_size) {
if (p->plugin.block_size (c->handle, minimum, preferred, maximum) == -1)
return -1;
/* To make scripting easier, it's permitted to set
* minimum = preferred = maximum = 0 and return 0.
* That means "no information", and works the same
* way as the else clause below.
*/
if (*minimum == 0 && *preferred == 0 && *maximum == 0)
return 0;
if (*minimum < 1 || *minimum > 65536) {
nbdkit_error ("plugin must set minimum block size between 1 and 64K");
return -1;
}
if (! is_power_of_2 (*minimum)) {
nbdkit_error ("plugin must set minimum block size to a power of 2");
return -1;
}
if (! is_power_of_2 (*preferred)) {
nbdkit_error ("plugin must set preferred block size to a power of 2");
return -1;
}
if (*preferred < 512 || *preferred > 32 * 1024 * 1024) {
nbdkit_error ("plugin must set preferred block size "
"between 512 and 32M");
return -1;
}
if (*maximum != (uint32_t)-1 && (*maximum % *minimum) != 0) {
nbdkit_error ("plugin must set maximum block size "
"to -1 or a multiple of minimum block size");
return -1;
}
if (*minimum > *preferred || *preferred > *maximum) {
nbdkit_error ("plugin must set minimum block size "
"<= preferred <= maximum");
return -1;
}
return 0;
}
else {
/* If there is no .block_size call then return minimum = preferred
* = maximum = 0, which is a sentinel meaning don't send the
* NBD_INFO_BLOCK_SIZE message.
*/
*minimum = *preferred = *maximum = 0;
return 0;
}
}
static int
normalize_bool (int value)
{
if (value == -1 || value == 0)
return value;
/* Normalize all other non-zero values to true */
return 1;
}
static int
plugin_can_write (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.can_write)
return normalize_bool (p->plugin.can_write (c->handle));
else
return p->plugin.pwrite || p->plugin._pwrite_v1;
}
static int
plugin_can_flush (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.can_flush)
return normalize_bool (p->plugin.can_flush (c->handle));
else
return p->plugin.flush || p->plugin._flush_v1;
}
static int
plugin_is_rotational (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.is_rotational)
return normalize_bool (p->plugin.is_rotational (c->handle));
else
return 0; /* assume false */
}
static int
plugin_can_trim (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.can_trim)
return normalize_bool (p->plugin.can_trim (c->handle));
else
return p->plugin.trim || p->plugin._trim_v1;
}
static int
plugin_can_zero (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int r;
/* Note the special case here: the plugin's .can_zero returns a bool
* which controls only whether we call .zero; while the backend
* expects .can_zero to return a tri-state on level of support.
*/
if (p->plugin.can_zero) {
r = p->plugin.can_zero (c->handle);
if (r == -1)
return -1;
return r ? NBDKIT_ZERO_NATIVE : NBDKIT_ZERO_EMULATE;
}
if (p->plugin.zero || p->plugin._zero_v1)
return NBDKIT_ZERO_NATIVE;
return NBDKIT_ZERO_EMULATE;
}
static int
plugin_can_fast_zero (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int r;
if (p->plugin.can_fast_zero)
return normalize_bool (p->plugin.can_fast_zero (c->handle));
/* Advertise support for fast zeroes if no .zero or .can_zero is
* false: in those cases, we fail fast instead of using .pwrite.
* This also works when v1 plugin has only ._zero_v1.
*/
if (p->plugin.zero == NULL)
return 1;
r = backend_can_zero (c);
if (r == -1)
return -1;
return !r;
}
static int
plugin_can_extents (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.can_extents)
return normalize_bool (p->plugin.can_extents (c->handle));
else
return p->plugin.extents != NULL;
}
static int
plugin_can_fua (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int r;
/* The plugin must use API version 2 and have .can_fua return
NBDKIT_FUA_NATIVE before we will pass the FUA flag on. */
if (p->plugin.can_fua) {
r = p->plugin.can_fua (c->handle);
if (r > NBDKIT_FUA_EMULATE && p->plugin._api_version == 1)
r = NBDKIT_FUA_EMULATE;
return r;
}
/* We intend to call .flush even if .can_flush returns false. */
if (p->plugin.flush || p->plugin._flush_v1)
return NBDKIT_FUA_EMULATE;
return NBDKIT_FUA_NONE;
}
static int
plugin_can_multi_conn (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.can_multi_conn)
return normalize_bool (p->plugin.can_multi_conn (c->handle));
else
return 0; /* assume false */
}
static int
plugin_can_cache (struct context *c)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.can_cache)
return p->plugin.can_cache (c->handle);
if (p->plugin.cache)
return NBDKIT_CACHE_NATIVE;
return NBDKIT_CACHE_NONE;
}
/* Plugins and filters can call this to set the true errno, in cases
* where !errno_is_preserved.
*/
NBDKIT_DLL_PUBLIC void
nbdkit_set_error (int err)
{
threadlocal_set_error (err);
}
/* Grab the appropriate error value.
*/
static int
get_error (struct backend_plugin *p)
{
int ret = threadlocal_get_error ();
if (!ret && p->plugin.errno_is_preserved != 0)
ret = errno;
return ret ? ret : EIO;
}
static int
plugin_pread (struct context *c,
void *buf, uint32_t count, uint64_t offset, uint32_t flags,
int *err)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int r;
assert (p->plugin.pread || p->plugin._pread_v1);
if (p->plugin.pread)
r = p->plugin.pread (c->handle, buf, count, offset, 0);
else
r = p->plugin._pread_v1 (c->handle, buf, count, offset);
if (r == -1)
*err = get_error (p);
return r;
}
static int
plugin_flush (struct context *c,
uint32_t flags, int *err)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int r;
if (p->plugin.flush)
r = p->plugin.flush (c->handle, 0);
else if (p->plugin._flush_v1)
r = p->plugin._flush_v1 (c->handle);
else {
*err = EINVAL;
return -1;
}
if (r == -1)
*err = get_error (p);
return r;
}
static int
plugin_pwrite (struct context *c,
const void *buf, uint32_t count, uint64_t offset, uint32_t flags,
int *err)
{
struct backend *b = c->b;
int r;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
bool fua = flags & NBDKIT_FLAG_FUA;
bool need_flush = false;
if (fua && backend_can_fua (c) != NBDKIT_FUA_NATIVE) {
flags &= ~NBDKIT_FLAG_FUA;
need_flush = true;
}
if (p->plugin.pwrite)
r = p->plugin.pwrite (c->handle, buf, count, offset, flags);
else if (p->plugin._pwrite_v1)
r = p->plugin._pwrite_v1 (c->handle, buf, count, offset);
else {
*err = EROFS;
return -1;
}
if (r != -1 && need_flush)
r = plugin_flush (c, 0, err);
if (r == -1 && !*err)
*err = get_error (p);
return r;
}
static int
plugin_trim (struct context *c,
uint32_t count, uint64_t offset, uint32_t flags, int *err)
{
struct backend *b = c->b;
int r;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
bool fua = flags & NBDKIT_FLAG_FUA;
bool need_flush = false;
if (fua && backend_can_fua (c) != NBDKIT_FUA_NATIVE) {
flags &= ~NBDKIT_FLAG_FUA;
need_flush = true;
}
if (p->plugin.trim)
r = p->plugin.trim (c->handle, count, offset, flags);
else if (p->plugin._trim_v1)
r = p->plugin._trim_v1 (c->handle, count, offset);
else {
*err = EINVAL;
return -1;
}
if (r != -1 && need_flush)
r = plugin_flush (c, 0, err);
if (r == -1 && !*err)
*err = get_error (p);
return r;
}
static int
plugin_zero (struct context *c,
uint32_t count, uint64_t offset, uint32_t flags, int *err)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int r = -1;
bool may_trim = flags & NBDKIT_FLAG_MAY_TRIM;
bool fua = flags & NBDKIT_FLAG_FUA;
bool fast_zero = flags & NBDKIT_FLAG_FAST_ZERO;
bool emulate = false;
bool need_flush = false;
if (fua && backend_can_fua (c) != NBDKIT_FUA_NATIVE) {
flags &= ~NBDKIT_FLAG_FUA;
need_flush = true;
}
if (!count)
return 0;
if (backend_can_zero (c) == NBDKIT_ZERO_NATIVE) {
errno = 0;
if (p->plugin.zero)
r = p->plugin.zero (c->handle, count, offset, flags);
else if (p->plugin._zero_v1) {
if (fast_zero) {
*err = EOPNOTSUPP;
return -1;
}
r = p->plugin._zero_v1 (c->handle, count, offset, may_trim);
}
else
emulate = true;
if (r == -1)
*err = emulate ? EOPNOTSUPP : get_error (p);
if (r == 0 || (*err != EOPNOTSUPP && *err != ENOTSUP))
goto done;
}
if (fast_zero) {
assert (r == -1);
*err = EOPNOTSUPP;
goto done;
}
flags &= ~NBDKIT_FLAG_MAY_TRIM;
threadlocal_set_error (0);
*err = 0;
while (count) {
/* Always contains zeroes, but we can't use const or else gcc 9
* will use .rodata instead of .bss and inflate the binary size.
*/
static /* const */ char buf[MAX_REQUEST_SIZE];
uint32_t limit = MIN (count, sizeof buf);
r = plugin_pwrite (c, buf, limit, offset, flags, err);
if (r == -1)
break;
count -= limit;
}
done:
if (r != -1 && need_flush)
r = plugin_flush (c, 0, err);
if (r == -1 && !*err)
*err = get_error (p);
return r;
}
static int
plugin_extents (struct context *c,
uint32_t count, uint64_t offset, uint32_t flags,
struct nbdkit_extents *extents, int *err)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int r;
if (p->plugin.extents == NULL) { /* Possible if .can_extents lied */
*err = EINVAL;
return -1;
}
r = p->plugin.extents (c->handle, count, offset, flags, extents);
if (r >= 0 && nbdkit_extents_count (extents) < 1) {
nbdkit_error ("extents: plugin must return at least one extent");
nbdkit_set_error (EINVAL);
r = -1;
}
if (r == -1)
*err = get_error (p);
return r;
}
static int
plugin_cache (struct context *c,
uint32_t count, uint64_t offset, uint32_t flags,
int *err)
{
struct backend *b = c->b;
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
int r;
/* A plugin may advertise caching but not provide .cache; in that
* case, caching is explicitly a no-op. */
if (!p->plugin.cache)
return 0;
r = p->plugin.cache (c->handle, count, offset, flags);
if (r == -1)
*err = get_error (p);
return r;
}
static struct backend plugin_functions = {
.free = plugin_free,
.thread_model = plugin_thread_model,
.plugin_name = plugin_name,
.usage = plugin_usage,
.version = plugin_version,
.dump_fields = plugin_dump_fields,
.config = plugin_config,
.config_complete = plugin_config_complete,
.magic_config_key = plugin_magic_config_key,
.get_ready = plugin_get_ready,
.after_fork = plugin_after_fork,
.cleanup = plugin_cleanup,
.preconnect = plugin_preconnect,
.list_exports = plugin_list_exports,
.default_export = plugin_default_export,
.open = plugin_open,
.prepare = plugin_prepare,
.finalize = plugin_finalize,
.close = plugin_close,
.export_description = plugin_export_description,
.get_size = plugin_get_size,
.block_size = plugin_block_size,
.can_write = plugin_can_write,
.can_flush = plugin_can_flush,
.is_rotational = plugin_is_rotational,
.can_trim = plugin_can_trim,
.can_zero = plugin_can_zero,
.can_fast_zero = plugin_can_fast_zero,
.can_extents = plugin_can_extents,
.can_fua = plugin_can_fua,
.can_multi_conn = plugin_can_multi_conn,
.can_cache = plugin_can_cache,
.pread = plugin_pread,
.pwrite = plugin_pwrite,
.flush = plugin_flush,
.trim = plugin_trim,
.zero = plugin_zero,
.extents = plugin_extents,
.cache = plugin_cache,
};
/* Register and load a plugin. */
struct backend *
plugin_register (size_t index, const char *filename,
void *dl, struct nbdkit_plugin *(*plugin_init) (void))
{
struct backend_plugin *p;
const struct nbdkit_plugin *plugin;
size_t size;
p = malloc (sizeof *p);
if (p == NULL) {
perror ("strdup");
exit (EXIT_FAILURE);
}
p->backend = plugin_functions;
backend_init (&p->backend, NULL, index, filename, dl, "plugin");
/* Call the initialization function which returns the address of the
* plugin's own 'struct nbdkit_plugin'.
*/
plugin = plugin_init ();
if (!plugin) {
fprintf (stderr, "%s: %s: plugin registration function failed\n",
program_name, filename);
exit (EXIT_FAILURE);
}
/* Check for incompatible future versions. */
if (plugin->_api_version < 0 || plugin->_api_version > 2) {
fprintf (stderr,
"%s: %s: plugin is incompatible with this version of nbdkit "
"(_api_version = %d)\n",
program_name, filename, plugin->_api_version);
exit (EXIT_FAILURE);
}
/* Since the plugin might be much older than the current version of
* nbdkit, only copy up to the self-declared _struct_size of the
* plugin and zero out the rest. If the plugin is much newer then
* we'll only call the "old" fields.
*/
size = sizeof p->plugin; /* our struct */
memset (&p->plugin, 0, size);
if (size > plugin->_struct_size)
size = plugin->_struct_size;
memcpy (&p->plugin, plugin, size);
/* Check for the minimum fields which must exist in the
* plugin struct.
*/
if (p->plugin.open == NULL) {
fprintf (stderr, "%s: %s: plugin must have a .open callback\n",
program_name, filename);
exit (EXIT_FAILURE);
}
if (p->plugin.get_size == NULL) {
fprintf (stderr, "%s: %s: plugin must have a .get_size callback\n",
program_name, filename);
exit (EXIT_FAILURE);
}
if (p->plugin.pread == NULL && p->plugin._pread_v1 == NULL) {
fprintf (stderr, "%s: %s: plugin must have a .pread callback\n",
program_name, filename);
exit (EXIT_FAILURE);
}
backend_load (&p->backend, p->plugin.name, p->plugin.load);
return (struct backend *) p;
}