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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
|
/*
* (C) Copyright IBM Corp. 2004
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
* the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Module: Template Plugin
* File: evms2/engine/plugins/template/template.c
*
* This file is a template for an EVMS plugin. It contains stubs for all of
* the possible APIs that a plugin can support, along with comments about what
* each API should do. If an API is marked OPTIONAL, it isn't necessary to
* support the API, and the function stub can be deleted (along with the
* corresponding entry in the function table at the end of the file). If an
* API is *not* marked OPTIONAL, you *must* provide code for that API (even
* if it's an empty function).
*
* Before starting a new plugin, it's a good idea to review some of the
* global header files in the top-level "include" directory. Of particular
* interest to plugin-writers are: common.h, enginestructs.h, plugin.h,
* plugfuncs.h, devmapper.h, and options.h.
*
* You should also read the Architecture Overview, available on the EVMS
* website at http://evms.sourceforge.net/architecture/.
*
* You can start writing your plugin by first copying the "template" directory
* to another directory (within the "plugins" directory). Then add an
* appropriate entry to the bottom of the top-level configure.ac file. Then
* run "autoconf" and "./configure" in the top-level to generate a Makefile
* for your directory. Initially, your plugin will not be built as part of the
* normal engine build process. You can build your plugin by running "make"
* within your plugin directory, and install it with "make install".
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <plugin.h>
#include "template.h"
/* Pointer to the Engine-services API set. Must be called "EngFncs" in order
* for the LOG_ macros to work.
*/
engine_functions_t *EngFncs;
/**
* template_setup_evms_plugin
*
* Perform any global setup required when this plugin is loaded. For example,
* allocate any global lists or data structures or register a namespace.
*
* The "EngFncs" pointer must be initialized first.
*
* Return:
* - 0 for success.
* - E_NOLOAD if the plugin should be unloaded.
* - Other non-zero error-code for failure.
**/
static int template_setup_evms_plugin(engine_functions_t *functions)
{
EngFncs = functions;
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/**
* template_cleanup_evms_plugin
*
* Perform any global cleanup required when this plugin is unloaded. For
* example, free any global data structures or lists.
*
* OPTIONAL
**/
static void template_cleanup_evms_plugin(void)
{
LOG_ENTRY();
LOG_EXIT_VOID();
}
/**
* template_can_add_feature
*
* Can you consume the input_object and create a new feature object?
*
* Return:
* - 0 for yes, and also set the size of the object you would create on top of
* this input_object.
* - Non-zero error-code for no.
*
* OPTIONAL. This API is normally only used by feature-plugins.
**/
static int template_can_add_feature(storage_object_t *input_object,
sector_count_t *size)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_delete
*
* Can you delete this object? This will almost always be "yes", but
* occasionally one object might need to wait for another object to be
* deleted first, or an object might not be deletable at all (e.g. if
* it's an automatically generated metadata or freespace object).
*
* Return:
* - 0 for yes.
* - Non-zero error-code for no.
*
* OPTIONAL
**/
static int template_can_delete(storage_object_t *object)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_unassign
*
* Can you unassign your plugin from this object? A lot like can_delete, but
* this is asking about a consumed object instead of a produced object.
*
* Return:
* - 0 for yes.
* - Non-zero error-code for no.
*
* OPTIONAL. This API is normally only used by segment-manager plugins.
**/
static int template_can_unassign(storage_object_t *object)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_expand
*
* Can you expand this object? If yes, build an expand_object_info_t and add
* it to the expand_points list. The specified expand_limit is the maximum
* change that is allowed for this object. If you cannot expand by an amount
* less than or equal to this limit, then your object should not be added to
* the expand_points list.
*
* If you can't expand directly, but can allow one of your child objects to
* expand, call can_expand on whichever child you will allow to expand. If you
* can not handle expanding below you, do not pass the command down to your
* child.
*
* Return:
* - Return 0, even if you can't expand and didn't add anything to the list.
* The engine will determine success or failure based on the contents of the
* expand_points list. Return non-zero if something went wrong in the
* processing of the command, such as a failure to allocate memory.
*
* OPTIONAL
**/
static int template_can_expand(storage_object_t *object,
sector_count_t expand_limit, /* a delta size */
list_anchor_t expand_points) /* of type expand_object_info_t */
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/**
* template_can_expand_by
*
* Can you allow your child object to expand by "size"? "size" is the change
* in size, not the resulting size.
*
* Return:
* - 0 for yes. Update "size" if your object would expand by a different
* delta size when your child object expands by the given size.
* - Non-zero error-code for no.
*
* OPTIONAL
**/
static int template_can_expand_by(storage_object_t *object,
sector_count_t *size)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_shrink
*
* Can you shrink this object? If yes, build a shrink_object_info_t and add
* it to the shrink_points list. The specified shrink_limit is the maximum
* change that is allowed for this object. If you cannot shrink by an amount
* less than or equal to this limit, then your object should not be added to
* the shrink_points list.
*
* If you can't shrink directly, but can allow one of your child objects to
* shrink, call can_shrink on whichever child you will allow to shrink. If you
* can not handle shrinking below you, do not pass the command down to your
* child.
*
* Return:
* - Return 0, even if you can't shrink and didn't add anything to the list.
* The engine will determine success or failure based on the contents of the
* shrink_points list. Return non-zero if something went wrong in the
* processing of the command, such as a failure to allocate memory.
*
* OPTIONAL
**/
static int template_can_shrink(storage_object_t *object,
sector_count_t shrink_limit, /* a delta size */
list_anchor_t shrink_points) /* of type shrink_object_info_t */
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/**
* template_can_shrink_by
*
* Can you allow your child object to shrink by "size"? "size" is the change
* in size, not the resulting size.
*
* Return:
* - 0 for yes. Update "size" if your object would shrink by a different
* delta size when your child object shrinks by the given size.
* - Non-zero error-code for no.
*
* OPTIONAL
**/
static int template_can_shrink_by(storage_object_t *object,
sector_count_t *size)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_replace_child
*
* Can this object's child be replaced? If new_child is NULL, the question is
* simply: can the child object be replaced? If new_child is not NULL, the
* question is: can you replace this child with new_child?
*
* Return:
* - 0 for yes.
* - Non-zero error-code for no.
*
* OPTIONAL
**/
static int template_can_replace_child(storage_object_t *object,
storage_object_t *child,
storage_object_t *new_child)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_set_volume
*
* Can this object to be made into a volume (flag == TRUE), or have the volume
* removed from it (flag == FALSE)? The answer should almost always be yes.
*
* Return:
* - 0 for yes.
* - Non-zero error-code for no.
*
* OPTIONAL
**/
static int template_can_set_volume(storage_object_t *object,
boolean flag)
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/**
* template_discover
*
* Probe each object on the input_objects list for metadata belonging to your
* plugin. Claim objects by removing them from the input list. Create a
* storage_object_t for the new object(s) you are discovering. Fill in the
* appropriate fields and put the new object(s) on the output_objects list.
* If you do not claim an object from the input list, then just move it to the
* output list. The input list can be modified at will (it will be discarded
* after the call to this discover routine). The output list must contain all
* the storage objects in the system after yours are discovered, i.e., it is
* the input list, minus the objects you claim, plus the objects you produce.
*
* The overall discovery process is iterative, and thus this discover routine
* can be called multiple times during the overall process, each time with a
* potentially different set of input objects. When final_call == TRUE, that
* will be the last time your discover routine will be called, and you should
* perform any extra actions that might be required by your plugin.
*
* Return:
* - Number of newly created objects you added to the output_objects list.
**/
static int template_discover(list_anchor_t input_objects,
list_anchor_t output_objects,
boolean final_call)
{
storage_object_t *child;
list_element_t itr;
LOG_ENTRY();
LIST_FOR_EACH(input_objects, itr, child) {
/* Use the READ() macro to probe the child object for
* metadata belonging to your plugin. If you find your
* metadata, create any appropriate new objects and use
* EngFncs->insert_thing() to add your new objects to the
* output_list. If an input object doesn't contain your
* metadata, simply insert it on the output list.
*/
EngFncs->insert_thing(output_objects, child, 0, NULL);
}
LOG_EXIT_INT(0);
return 0;
}
/**
* template_create
*
* Create new storage_object_t(s) from the list of input_objects using the
* given options. Place the newly allocated storage_object_t(s) on the
* new_objects list.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_create(list_anchor_t input_objects,
option_array_t *options,
list_anchor_t output_objects)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_assign
*
* Assign your plugin to produce storage objects from the given storage object.
* This API is a lot like create, but you only get one input object, and the
* output list is assumed to be the parent_objects list of this input_object.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL. This API is normally only used by segment managers to assign
* themselves to disks (or other segments).
**/
static int template_assign(storage_object_t *object,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_discard
*
* Forget about these objects. Don't delete them. Just clean up any data
* structures you may have associated with them. The Engine will call to
* deactivate the objects during commit.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
**/
static int template_discard(list_anchor_t objects)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_delete
*
* Delete the object. Free any privately allocated data. Remove your parent
* pointer from your child objects. Do any cleanup necessary to remove your
* plug-in from your child objects. Put your object's children from the object's
* child_objects list_anchor_t onto the list_anchor_t provided in the second
* parameter. Call the Engine's free_?????t() to free the object.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_delete(storage_object_t *object,
list_anchor_t child_objects)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_unassign
*
* Unassign your plugin from producing storage objects from the given storage
* object. A lot like delete.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL. This API is normally only used by segment-manager plugins that are
* assigned and removed from disks (or other segments).
**/
static int template_unassign(storage_object_t *object)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_expand
*
* Expand a storage object. If the "object" is not the "expand_object", then
* your child is going to expand. Do any necessary work to get ready for your
* child to expand (e.g., read in metadata), then call expand() on your child
* object which will expand. Upon return from the call to your child's
* expand(), do any work necessary to adjust this object to account for the
* child object's new size (e.g., update the location of metadata).
*
* If the "object" is the same as the "expand_object", then this is the object
* targeted for expanding. Expand the object according to the input_objects
* given and the options selected.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_expand(storage_object_t *object,
storage_object_t *expand_object,
list_anchor_t input_objects,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_shrink
*
* Shrink a storage object. If the "object" is not the "shrink_object", then
* your child is going to shrink. Do any necessary work to get ready for your
* child to shrink (e.g., read in metadata), then call shrink() on your child
* object which will shrink. Upon return from the call to your child's
* shrink(), do any work necessary to adjust this object to account for the
* child object's new size (e.g., update the location of metadata).
*
* If the "object" is the same as the "shrink_object", then this is the object
* targeted for shrinking. Shrink the object according to the input_objects
* given and the options selected.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_shrink(storage_object_t *object,
storage_object_t *shrink_object,
list_anchor_t input_objects,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_replace_child
*
* Replace the object's child with the new child object.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_replace_child(storage_object_t *object,
storage_object_t *child,
storage_object_t *new_child)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_set_volume
*
* This call notifies you that your object is being made into (or part of) a
* volume or that your object is no longer part of a volume. The "flag"
* parameter indicates whether the volume is being created (TRUE) or removed
* (FALSE).
*
* Return: No return value.
*
* OPTIONAL
**/
static void template_set_volume(storage_object_t *object,
boolean flag)
{
LOG_ENTRY();
LOG_EXIT_VOID();
}
/**
* template_add_sectors_to_kill_list
*
* The kill-list is a list of sectors that need to be zeroed at commit-time.
* Translate the lsn and count into lsn(s) and count(s) for your child
* object(s) and call the child object's add_sectors_to_kill_list(). The
* Disk Manager (at the bottom of the object stack) calls the Engine's
* add_sectors_to_kill_list service to put the sectors on the Engine's kill
* list.
*
* Very similar to read and write, but without the data buffer.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
**/
static int template_add_sectors_to_kill_list(storage_object_t *object,
lsn_t lsn,
sector_count_t count)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_commit_changes
*
* Write your plugin's metadata to disk. Clear the SOFLAG_DIRTY in the
* storage_object_t(s). Committing changes in done in several phases.
* "phase" says which phase of the commit is being performed.
*
* Write your first copy of metadata during the FIRST_METADATA_WRITE
* phase; write your second copy of metadata (if you have one) during
* the SECOND_METADATA_WRITE phase. Use the SETUP and POST_ACTIVATE
* phases for appropriate setup/cleanup before/after all the metadata
* has been written.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
**/
static int template_commit_changes(storage_object_t *object,
commit_phase_t phase)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_activate
*
* Can you activate this object?
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_can_activate(storage_object_t *object)
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/**
* template_activate
*
* Activate the specified storage object. This should be done by communicating
* with the appropriate kernel driver. If your plugin uses Device-Mapper to
* activate your storage objects (hopefully it does), use the DM services
* provided by the engine to assist in creating the target mappings and
* creating/activating the device.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_activate(storage_object_t *object)
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/**
* template_can_deactivate
*
* Can you deactivate this object?
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_can_deactivate(storage_object_t *object)
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/**
* template_deactivate
*
* Deactivate the specified storage object. Just like activate, this should be
* done by communicating with the appropriate kernel driver.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_deactivate(storage_object_t *object)
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/**
* template_get_option_count
*
* Get the total number of supported options for the specified task.
*
* Return:
* - Number of options available for this task.
* - -1 if the task is not supported.
*
* OPTIONAL
**/
static int template_get_option_count(task_context_t *context)
{
LOG_ENTRY();
LOG_EXIT_INT(-1);
return -1;
}
/**
* template_init_task
*
* Initialize a user-task with the appropriate information for your plugin.
* Fill in the initial list of acceptable objects. Fill in the minimum and
* maximum number of objects that must/can be selected. Set up all initial
* values in the option_descriptors in the context record for the given task.
* Some fields in the option_descriptor may be dependent on a selected object.
* Leave such fields blank for now, and fill in during the set_objects call.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_init_task(task_context_t *context)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_set_option
*
* Examine the specified value, and determine if it is valid for the task and
* option_descriptor index. If it is acceptable, set that value in the
* appropriate entry in the option_descriptor. The value may be adjusted if
* necessary/allowed. If so, set the effect return value accordingly.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_set_option(task_context_t *context,
u_int32_t index,
value_t *value,
task_effect_t *effect)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_set_object
*
* Validate the objects in the selected_objects list in the task context.
* Remove from the selected objects lists any objects which are not acceptable.
* For unacceptable objects, create a declined_handle_t structure with the
* reason why it is not acceptable, and add it to the declined_objects list.
* Modify the acceptable_objects list in the task context as necessary based on
* the selected objects and the current settings of the options. Modify any
* option settings as necessary based on the selected objects. Return the
* appropriate task_effect_t settings if the object list(s), minimum or maximum
* objects selected, or option settings have changed.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_set_objects(task_context_t *context,
list_anchor_t declined_objects, /* of type declined_handle_t */
task_effect_t *effect)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_get_info
*
* Return any additional information that you wish to provide about the object.
* The Engine provides an external API to get the information stored in the
* storage_object_t. This call is to get any other information about the object
* that is not specified in the storage_object_t. Any piece of information you
* wish to provide must be in an extended_info_t structure. Use the Engine's
* engine_alloc() to allocate the memory for the extended_info_t. Also use
* engine_alloc() to allocate any strings that may go into the extended_info_t.
* Then use engine_alloc() to allocate an extended_info_array_t with enough
* entries for the number of extended_info_t structures you are returning. Fill
* in the array and return it in *info.
*
* If you have extended_info_t descriptors that themselves may have more
* extended information, set the EVMS_EINFO_FLAGS_MORE_INFO_AVAILABLE flag in
* the extended_info_t flags field. If the caller wants more information about
* a particular extended_info_t item, this API will be called with a pointer to
* the storage_object_t and with a pointer to the name of the extended_info_t
* item. In that case, return an extended_info_array_t with further information
* about the item. Each of those items may have the
* EVMS_EINFO_FLAGS_MORE_INFO_AVAILABLE flag set if you desire. It is your
* responsibility to give the items unique names so that you know which item the
* caller is asking additional information for. If info_name is NULL, the caller
* just wants top level information about the object.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_get_info(storage_object_t *object,
char *info_name,
extended_info_array_t **info)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_set_info
*
* Apply the settings of the options to the given object.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_set_info(storage_object_t *object,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_get_plugin_info
*
* Return any additional information that you wish to provide about your plugin.
* The Engine provides an external API to get the information stored in the
* plugin_record_t. This call is to get any other information about the plugin
* that is not specified in the plugin_record_t. Any piece of information you
* wish to provide must be in an extended_info_t structure. Use the Engine's
* engine_alloc() to allocate the memory for the extended_info_t. Also use
* engine_alloc() to allocate any strings that may go into the extended_info_t.
* Then use engine_alloc() to allocate an extended_info_array_t with enough
* entries for the number of extended_info_t structures you are returning. Fill
* in the array and return it in *info.
*
* If you have extended_info_t descriptors that themselves may have more
* extended information, set the EVMS_EINFO_FLAGS_MORE_INFO_AVAILABLE flag in
* the extended_info_t flags field. If the caller wants more information about
* a particular extended_info_t item, this API will be called with a pointer to
* the name of the extended_info_t item. In that case, return an
* extended_info_array_t with further information about the item. Each of those
* items may have the EVMS_EINFO_FLAGS_MORE_INFO_AVAILABLE flag set if you
* desire. It is your responsibility to give the items unique names so that you
* know which item the caller is asking additional information for. If
* info_name is NULL, the caller just wants top level information about the
* plugin.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_get_plugin_info(char *info_name,
extended_info_array_t **info)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_read
*
* Convert lsn and count to lsn and count on the child object(s) and call the
* read function of child objects (using the READ() macro).
*
* There is no limit on how big a single read request can be. If your object
* has internal boundaries (e.g. chunks in a striped object), you may need to
* break up the request into multiple smaller requests before submitting them
* to your child objects.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
**/
static int template_read(storage_object_t *object,
lsn_t lsn,
sector_count_t count,
void *buffer)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_write
*
* Convert lsn and count to lsn and count on the child object(s) and call the
* write function of child objects (using the WRITE() macro).
*
* There is no limit on how big a single write request can be. If your object
* has internal boundaries (e.g. chunks in a striped object), you may need to
* break up the request into multiple smaller requests before submitting them
* to your child objects.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
**/
static int template_write(storage_object_t *object,
lsn_t lsn,
sector_count_t count,
void *buffer)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_get_functions
*
* Return an array of plugin functions that you support for this object.
* Plugin functions are plugin-specific additions to the plugin API set.
* Any functionality you need to provide for your plugin that isn't
* covered by the standard API should be implemented as a plugin function.
* Existing examples: RAID-hot-add, Snapshot-rollback, and LVM PV-move.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_get_functions(storage_object_t *object,
function_info_array_t **actions)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_function
*
* Execute a plugin function on the object. The definitions of your plugin's
* functions were provided by get_plugin_function. This API executes one
* of those functions.
*
* Return:
* - 0 for success.
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_function(storage_object_t *object,
task_action_t action,
list_anchor_t objects,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_backup__metadata
*
* Save the metadata needed to build this object. The plug-in can call
* the Engine's save_metadata() service for each contiguous chunk of
* metadata that it writes to each child object.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_backup_metadata(storage_object_t *object)
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/*
* Container APIs. If your plugin doesn't use containers, delete all of
* the following stubs until the plugin_functions table.
*/
/**
* template_can_delete_container
*
* Can you destroy the container? You must check to be sure that no objects
* are exported from this container.
*
* Return:
* - 0 for yes
* - Non-zero error-code for no.
**/
static int template_can_delete_container(storage_container_t *container)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_expand_container
*
* Can you expand this container? If yes, build an expand_object_info_t
* and add it to the expand_points list. If you allow your consumed
* objects to expand, call can_expand() on whichever consumed objects
* you will allow to expand. If you can not handle expanding below you,
* do not pass the command down to your consumed objects.
*
* Return:
* - Return 0, even if you can't expand and didn't add anything to the list.
* The engine will determine success or failure based on the contents of the
* expand_points list. Return non-zero if something went wrong in the
* processing of the command, such as a failure to allocate memory.
**/
static int template_can_expand_container(storage_container_t *container,
list_anchor_t expand_points); /* of type expand_object_info_t, */
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_expand_container_by
*
* Can you allow the specified consumed objects to expand by "size"?
* Return 0 if yes, else an error code. "size" is the delta expand BY
* size, not the resulting size. Update the "size" if your container
* would expand by a different delta size when your consumed object
* expanded by the given size.
*
* Return:
* - 0 for yes
* - Non-zero error-code for no.
**/
static int template_can_expand_container_by(storage_container_t *container,
storage_object_t *consumed_object,
sector_count_t *size)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_shrink_container
*
* Can you shrink this container? If yes, build a shrink_object_info_t
* and add it to the shrink_points list. If you allow your consumed
* objects to shrink, call can_shrink() on whichever consumed objects
* you will allow to shrink. If you can not handle shrinking below
* you, do not pass the command down to your consumed objects.
*
* Return:
* - Return 0, even if you can't shrink and didn't add anything to the list.
* The engine will determine success or failure based on the contents of the
* shrink_points list. Return non-zero if something went wrong in the
* processing of the command, such as a failure to allocate memory.
**/
static int template_can_shrink_container(storage_container_t *container,
list_anchor_t shrink_points); /* of type shrink_object_info_t, */
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_can_shrink_container_by
*
* Can you allow the specified consumed objects to shrink by "size"?
* Return 0 if yes, else an error code. "size" is the delta shrink BY
* size, not the resulting size. Update the "size" if your object would
* shrink by a different delta size when your consumed object shrunk by
* the given size.
*
* Return:
* - 0 for yes
* - Non-zero error-code for no.
**/
static int template_can_shrink_container_by(storage_container_t *container,
storage_object_t *consumed_object,
sector_count_t *size)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_create_container
*
* Create a new container and claim the objects (just as during discovery).
* Mark the container dirty. Must use allocate_container engine API to
* allocate the container structure.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_create_container(list_anchor_t objects,
option_array_t *options,
storage_container_t **container)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_expand_container
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_expand_container(storage_container_t *container,
storage_object_t *consumed_object,
storage_object_t *expand_object,
list_anchor_t input_objects,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_shrink_container
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_shrink_container(storage_container_t *container,
storage_object_t *consumed_object,
storage_object_t *shrink_object,
list_anchor_t input_objects,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_discard_container
*
* Forget about this container. Don't delete it. Just clean up any data
* structures you may have associated with it.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_discard_container(storage_container_t *container)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_delete_container
*
* Destroy this container. Make sure there are no data objects being produced
* by the container. Put your consumed objects from the container's
* consumed_objects list onto the list provided in the second parameter. Free
* any private data, then use the Engine's free_container() to deallocate the
* container structure.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_delete_container(storage_container_t *container,
list_anchor_t objects_consumed)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_commit_container_changes
*
* Write any container metadata to disk. Clear the SCFLAG_DIRTY in the
* container.
*
* Committing changes in done in several phases. "phase" says which phase of
* the commit is being performed. Write your first copy of metadata during the
* FIRST_METADATA_WRITE phase. Write your second copy of metadata (if you have
* one) during the SECOND_METADATA_WRITE phase.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_commit_container_changes(storage_container_t *container,
commit_phase_t phase)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_get_container_info
* Return any additional information that you wish to provide about the
* container. The Engine provides an external API to get the information
* stored in the storage_container_t. This call is to get any other
* information about the container that is not specified in the
* storage_container_t. Any piece of information you wish to provide must
* be in an extended_info_t structure. Use the Engine's engine_alloc() to
* allocate the memory for the extended_info_t. Also use engine_alloc() to
* allocate any strings that may go into the extended_info_t. Then use
* engine_alloc() to allocate an extended_info_array_t with enough entries
* for the number of extended_info_t structures you are returning. Fill in
* the array and return it in *info.
*
* If you have extended_info_t descriptors that themselves may have more
* extended information, set the EVMS_EINFO_FLAGS_MORE_INFO_AVAILABLE flag in
* the extended_info_t flags field. If the caller wants more information
* about a particular extended_info_t item, this API will be called with a
* pointer to the storage_container_t and with a pointer to the name of the
* extended_info_t item. In that case, return an extended_info_array_t with
* further information about the item. Each of those items may have the
* EVMS_EINFO_FLAGS_MORE_INFO_AVAILABLE flag set if you desire. It is your
* responsibility to give the items unique names so that you know which item
* the caller is asking additional information for. If info_name is NULL, the
* caller just wants top level information about the object.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_get_container_info(storage_container_t *container,
char *info_name,
extended_info_array_t **info)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_set_container_info
*
* Apply the settings of the options to the given container.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_set_container_info(storage_container_t *container,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_get_container_functions
*
* Return an array of plugin functions that you support for this container.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_get_container_functions(storage_container_t *container,
function_info_array_t **actions)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_container_function
*
* Execute the plug-in function on the container.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
*
* OPTIONAL
**/
static int template_container_function(storage_container_t *container,
task_action_t action,
list_anchor_t objects,
option_array_t *options)
{
LOG_ENTRY();
LOG_EXIT_INT(ENOSYS);
return ENOSYS;
}
/**
* template_backup_container_metadata
*
* Save the metadata needed to build this container. The plug-in can call
* the Engine's save_metadata() service for each contiguous chunk of
* metadata that it writes to each child object.
*
* Return:
* - 0 for success
* - Non-zero error-code for failure.
**/
static int template_backup_container_metadata(storage_container_t *container)
{
LOG_ENTRY();
LOG_EXIT_INT(0);
return 0;
}
/*
* Table of standard plugin APIs for the Template plugin.
*/
static plugin_functions_t template_functions = {
.setup_evms_plugin = template_setup_evms_plugin,
.cleanup_evms_plugin = template_cleanup_evms_plugin,
.can_add_feature = template_can_add_feature,
.can_delete = template_can_delete,
.can_unassign = template_can_unassign,
.can_expand = template_can_expand,
.can_expand_by = template_can_expand_by,
.can_shrink = template_can_shrink,
.can_shrink_by = template_can_shrink_by,
.can_replace_child = template_can_replace_child,
.can_set_volume = template_can_set_volume,
.discover = template_discover,
.create = template_create,
.assign = template_assign,
.discard = template_discard,
.delete = template_delete,
.unassign = template_unassign,
.expand = template_expand,
.shrink = template_shrink,
.replace_child = template_replace_child,
.set_volume = template_set_volume,
.add_sectors_to_kill_list = template_add_sectors_to_kill_list,
.commit_changes = template_commit_changes,
.can_activate = template_can_activate,
.activate = template_activate,
.can_deactivate = template_can_deactivate,
.deactivate = template_deactivate,
.get_option_count = template_get_option_count,
.init_task = template_init_task,
.set_option = template_set_option,
.set_objects = template_set_objects,
.get_info = template_get_info,
.set_info = template_set_info,
.get_plugin_info = template_get_plugin_info,
.read = template_read,
.write = template_write,
.get_plugin_functions = template_get_functions,
.plugin_function = template_function,
.backup_metadata = template_backup_metadata,
};
/*
* Table of container APIs for the Template plugin. If the plugin does not use
* containers, simply delete this table.
*/
static container_functions_t template_container_functions = {
.can_delete_container = template_can_delete_container,
.can_expand_container = template_can_expand_container,
.can_expand_container_by = template_can_expand_container_by,
.can_shrink_container = template_can_shrink_container,
.can_shrink_container_by = template_can_shrink_container_by,
.create_container = template_create_container,
.expand_container = template_expand_container,
.shrink_container = template_shrink_container,
.discard_container = template_discard_container,
.delete_container = template_delete_container,
.commit_container_changes = template_commit_container_changes,
.get_container_info = template_get_container_info,
.set_container_info = template_set_container_info,
.get_plugin_functions = template_get_container_functions,
.plugin_function = template_container_function,
.backup_container_metadata = template_backup_container_metadata,
};
/*
* Plugin record for the Template plugin.
*/
plugin_record_t template_plugin = {
/* Plugin Identifier. Choose the appropriate plugin type and a unique
* ID number. OEM ID may be the IBM value, or select your own. See the
* top-level PLUGIN.IDS file for more information.
*/
.id = SetPluginID(EVMS_OEM_IBM,
EVMS_SEGMENT_MANAGER,
10),
/* MAJOR_VERSION, MINOR_VERSION, and PATCH_LEVEL are
* defined in the plugin's Makefile.in.
*/
.version = {
.major = MAJOR_VERSION,
.minor = MINOR_VERSION,
.patchlevel = PATCH_LEVEL
},
/* Don't change these API versions. */
.required_engine_api_version = {
.major = 15,
.minor = 0,
.patchlevel = 0
},
.required_plugin_api_version = {
.plugin = {
.major = 13,
.minor = 1,
.patchlevel = 0
}
},
/* Delete this field if the plugin doesn't use containers. */
.required_container_api_version = {
.major = 10,
.minor = 1,
.patchlevel = 0
},
.short_name = "Template",
.long_name = "Template Segment Manager",
.oem_name = "IBM",
.functions = {
.plugin = &template_functions
},
/* Delete this field if the plugin doesn't use containers. */
.container_functions = &template_container_functions
};
/*
* Table of all plugin records for this shared object. A shared object can
* contain multiple plugins (see MD), but most have a single one.
* "evms_plugin_records" is the well-known symbol name that the engine looks
* for when dynamically loading the plugins.
*/
plugin_record_t *evms_plugin_records[] = {
&template_plugin,
NULL
};
|