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 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
|
/*
*
* Copyright (c) International Business Machines Corp., 2001
*
* 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: internalAPI.c
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <fullengine.h>
#include "internalAPI.h"
#include "engine.h"
#include "crc.h"
#include "discover.h"
#include "handlemgr.h"
#include "commit.h"
#include "common.h"
#include "volume.h"
#include "expand.h"
#include "shrink.h"
#include "message.h"
/*-----------*\
| Global data |
\*-----------*/
static name_list_entry_t * name_registry = NULL;
/*-----------------------------*\
| Functions for getting plug-ins |
\*-----------------------------*/
typedef struct plugin_filters_s {
plugin_type_t type;
plugin_search_flags_t flags;
} plugin_filters_t;
/*
* filter_plugins is used by engine_get_plugin_list to strip out of the list
* any plug-ins that are not desired. filter_plugins is called by the PruneList
* processor. Parameter points to a plug-in type. If the plug-in is not of
* the specified type, then this function returns TRUE to tell PruneList to
* remove the object from the list. Otherwise, it returns FALSE to leave the
* object in the list.
*/
static BOOLEAN filter_plugins(ADDRESS Object,
TAG ObjectTag,
uint ObjectSize,
ADDRESS ObjectHandle,
ADDRESS Parameters,
BOOLEAN * FreeMemory,
uint * Error) {
plugin_record_t * pPlugRec = (plugin_record_t *) Object;
plugin_filters_t * filters = (plugin_filters_t *) Parameters;
BOOLEAN result = FALSE; /* Assume we want to keep this one. */
LOG_PROC_ENTRY();
/*
* We never want to free the item memory, so set this to FALSE
* just in case.
*/
*FreeMemory = FALSE;
if (filters->type != 0) {
if (GetPluginType(pPlugRec->id) != filters->type) {
/* The type doesn't match. Remove this object from the list. */
result = TRUE;
}
}
/* Any filter flags set? */
if (filters->flags != 0) {
/*
* If the caller only wants plug-ins that support containers, then
* filter out this plug-in if it doesn't have a container_functions
* table.
*/
if (filters->flags & SUPPORTS_CONTAINERS) {
if (pPlugRec->container_functions == NULL) {
result = TRUE;
}
}
}
*Error = DLIST_SUCCESS;
LOG_PROC_EXIT_BOOLEAN_INT(result, *Error);
return result;
}
/*
* engine_get_plugin_list returns a dlist_t of plugin_record_t structures,
* optionally filtering on the plug-in type. If the type is 0, all
* plugin_record_t structures will be returned.
*/
int engine_get_plugin_list(plugin_type_t type,
plugin_search_flags_t flags,
dlist_t * plugin_list) {
int rc = 0;
dlist_t new_plugin_list = CreateList();
LOG_PROC_ENTRY();
LOG_DEBUG("Filters:\n");
LOG_DEBUG(" Plug-in type: 0x%x\n", type);
LOG_DEBUG(" Flags: 0x%x\n", flags);
LOG_DEBUG("Destination DLIST: %p\n", plugin_list);
if (new_plugin_list != NULL) {
rc = CopyList(new_plugin_list, PluginList, AppendToList);
if (rc == 0) {
/*
* If the caller specified a plug-in type or flags, use PruneList to
* remove from the list plug-ins that are not of the specified type.
*/
if ((type != 0) || (flags != 0)) {
/* Get a structure for the filters. */
plugin_filters_t * filters = malloc(sizeof(plugin_filters_t));
if (filters != NULL) {
/*
* Fill in the filters and then use PruneList to remove from
* the list plug-ins that are not wanted.
*/
filters->type = type;
filters->flags = flags;
rc = PruneList(new_plugin_list,
filter_plugins,
filters);
free(filters);
} else {
LOG_CRITICAL("Error allocating memory for plug-in filters.\n");
rc = ENOMEM;
}
}
}
} else {
rc = ENOMEM;
}
if (rc == 0) {
*plugin_list = new_plugin_list;
} else {
if (new_plugin_list != NULL) {
DestroyList(&new_plugin_list, FALSE);
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* engine_get_plugin_by_ID will return a pointer to the plugin_record_t that
* has the specified plugin_ID_t.
*/
int engine_get_plugin_by_ID(plugin_id_t pluginID,
plugin_record_t * * plugin) {
int rc = 0;
plugin_record_t * pPlugRec;
LOG_PROC_ENTRY();
LOG_DEBUG("Search for plug-in with ID %d (%x).\n", pluginID, pluginID);
rc = GoToStartOfList(PluginList);
if (rc == DLIST_SUCCESS) {
rc = GetObject(PluginList,
sizeof(plugin_record_t),
PLUGIN_TAG,
NULL,
FALSE,
(ADDRESS*) &pPlugRec);
while ((rc == 0) && (pPlugRec->id != pluginID)) {
rc = GetNextObject(PluginList,
sizeof(plugin_record_t),
PLUGIN_TAG,
(ADDRESS *) &pPlugRec);
}
if (rc == 0) {
*plugin = pPlugRec;
} else {
if ((rc == DLIST_EMPTY) ||
(rc == DLIST_END_OF_LIST)) {
rc = ENOENT;
}
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* engine_get_plugin_by_name will return a pointer to the plugin_record_t that
* has the specified short name.
*/
int engine_get_plugin_by_name(char * plugin_short_name,
plugin_record_t * * plugin) {
int rc = 0;
plugin_record_t * pPlugRec;
LOG_PROC_ENTRY();
LOG_DEBUG("Search for plug-in with short name %s.\n", plugin_short_name);
rc = GoToStartOfList(PluginList);
if (rc == DLIST_SUCCESS) {
rc = GetObject(PluginList,
sizeof(plugin_record_t),
PLUGIN_TAG,
NULL,
FALSE,
(ADDRESS*) &pPlugRec);
while ((rc == 0) && (strcmp(pPlugRec->short_name, plugin_short_name) != 0)) {
rc = GetNextObject(PluginList,
sizeof(plugin_record_t),
PLUGIN_TAG,
(ADDRESS *) &pPlugRec);
}
if (rc == 0) {
*plugin = pPlugRec;
} else {
if ((rc == DLIST_EMPTY) ||
(rc == DLIST_END_OF_LIST)) {
rc = ENOENT;
}
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*-----------------------------*\
| Functions for getting volumes |
\*-----------------------------*/
/*
* check_mounted will call is_volume_mounted() for the volume which will update
* the mount_point string in the logical_volume_t to the current mount point of
* the volume.
*/
static int check_mounted(ADDRESS object,
TAG object_tag,
uint object_tize,
ADDRESS object_tandle,
ADDRESS parameters) {
LOG_PROC_ENTRY();
/* Safety check */
if (object_tag == VOLUME_TAG) {
logical_volume_t * vol = (logical_volume_t *) object;
is_volume_mounted(vol);
}
LOG_PROC_EXIT_INT(DLIST_SUCCESS);
return DLIST_SUCCESS;
}
/*
* filter_volumes is used by engine_get_Volume_list to strip out of the list
* any volumes that are not desired. filter_volumes is called by the PruneList
* processor. Parameter points to a plugin_record_t for an FSIM. If the volume
* is not managed by the specified FSIM, then this function returns TRUE to tell
* PruneList to remove the object from the list. Otherwise, it returns FALSE
* to leave the object in the list.
*/
static BOOLEAN filter_volumes(ADDRESS Object,
TAG ObjectTag,
uint ObjectSize,
ADDRESS ObjectHandle,
ADDRESS Parameters,
BOOLEAN * FreeMemory,
uint * Error) {
logical_volume_t * volume = (logical_volume_t *) Object;
plugin_record_t * fsim = (plugin_record_t *) Parameters;
BOOLEAN result = FALSE; /* Assume we want to keep this one. */
LOG_PROC_ENTRY();
/*
* We never want to free the item memory, so set this to FALSE
* just in case.
*/
*FreeMemory = FALSE;
if (fsim != NULL) {
if (volume->file_system_manager != fsim) {
/* The FSIM doesn't match. Remove this object from the list. */
result = TRUE;
}
}
*Error = DLIST_SUCCESS;
LOG_PROC_EXIT_BOOLEAN_INT(result, *Error);
return result;
}
/*
* engine_get_volume_list returns a dlist_t of logical_volume_t structures,
* optionally filtering on the FSIM that manages the volume. If the FSIM
* is NULL, all logical_volume_t structures will be returned.
*/
int engine_get_volume_list(plugin_record_t * fsim,
dlist_t * volume_list) {
int rc = 0;
dlist_t new_volume_list = CreateList();
LOG_PROC_ENTRY();
LOG_DEBUG("Filters:\n");
LOG_DEBUG(" FSIM: %s\n", (fsim == NULL) ? "(none)" : fsim->short_name);
LOG_DEBUG("Destination DLIST: %p\n", volume_list);
/* Update the mount points for the volumes. */
ForEachItem(VolumeList, check_mounted, NULL, TRUE);
if (new_volume_list != NULL) {
rc = CopyList(new_volume_list, VolumeList, AppendToList);
if ((rc == 0) && (fsim != NULL)) {
/*
* If the copy went OK and the caller specified a FSIM, use
* PruneList to remove from the list volumes that are not managed by
* the FSIM.
*/
rc = PruneList(new_volume_list,
filter_volumes,
fsim);
}
} else {
rc = ENOMEM;
}
if (rc == 0) {
*volume_list = new_volume_list;
} else {
if (new_volume_list != NULL) {
DestroyList(&new_volume_list, FALSE);
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*-----------------------------*\
| Functions for getting objects |
\*-----------------------------*/
typedef struct object_filters_s {
object_type_t object_type;
data_type_t data_type;
plugin_record_t * plugin;
object_search_flags_t flags;
} object_filters_t;
/*
* filter_objects is used by engine_get_object_list to strip out of the list
* any objects that are not desired. filter_objects is called by the PruneList
* processor. Parameter points to a object_filters_t. If the object does not
* match any of the filters specified, then this function returns TRUE to tell
* PruneList to remove the object from the list. Otherwise, it returns FALSE
* to leave the object in the list.
*/
static BOOLEAN filter_objects(ADDRESS Object,
TAG ObjectTag,
uint ObjectSize,
ADDRESS ObjectHandle,
ADDRESS Parameters,
BOOLEAN * FreeMemory,
uint * Error) {
storage_object_t * object = (storage_object_t *) Object;
object_filters_t * filters = (object_filters_t *) Parameters;
BOOLEAN result = FALSE; /* Assume we want to keep this one. */
LOG_PROC_ENTRY();
/*
* We never want to free the item memory, so set this to FALSE
* just in case.
*/
*FreeMemory = FALSE;
if (filters->object_type != 0) {
if (!(filters->object_type & object->object_type)) {
/*
* The object type doesn't match.
* Remove this object from the list.
*/
result = TRUE;
}
}
if (filters->data_type != 0) {
if (!(filters->data_type & object->data_type)) {
/*
* The data type doesn't match.
* Remove this object from the list.
*/
result = TRUE;
}
}
if (filters->plugin != NULL) {
if (filters->plugin != object->plugin) {
/*
* The plug-in doesn't match.
* Remove this object from the list.
*/
result = TRUE;
}
}
if (filters->flags & TOPMOST) {
if (!is_top_object(object)) {
/*
* The object is not the topmost.
* Remove this object from the list.
*/
result = TRUE;
}
}
if (filters->flags & NOT_MUST_BE_TOP) {
if (object->flags & SOFLAG_MUST_BE_TOP) {
/*
* The object insists on being topmost, but the caller doesn't
* want objects like that. Remove it from the list.
*/
result = TRUE;
}
}
if (filters->flags & WRITEABLE) {
if (object->flags & (SOFLAG_READ_ONLY | SOFLAG_IO_ERROR | SOFLAG_CORRUPT)) {
/*
* The object is either read-only, has had an I/O error, or is
* corrupt. It is not writeable. Remove it from the list.
*/
result = TRUE;
}
}
*Error = DLIST_SUCCESS;
LOG_PROC_EXIT_BOOLEAN_INT(result, *Error);
return result;
}
/*
* engine_get_object_list returns a dlist_t of storage_object_t structures,
* optionally filtering on the data_type, plug-in, and search flags.
* feature is NULL, all storage_object_t structures will be returned.
*/
int engine_get_object_list(object_type_t object_type,
data_type_t data_type,
plugin_record_t * plugin,
object_search_flags_t flags,
dlist_t * objects) {
int rc = 0;
dlist_t new_object_list = CreateList();
LOG_PROC_ENTRY();
LOG_DEBUG("Filters:\n");
LOG_DEBUG(" Object type: 0x%x\n", object_type);
LOG_DEBUG(" Data type: 0x%x\n", data_type);
LOG_DEBUG(" Plug-in: %s\n", (plugin == NULL) ? "(none)" : plugin->short_name);
LOG_DEBUG(" Flags: 0x%x\n", flags);
LOG_DEBUG("Destination DLIST: %p\n", objects);
if (new_object_list != NULL) {
if ((object_type == 0) || (object_type & DISK)) {
rc = CopyList(new_object_list, DiskList, AppendToList);
}
if ((rc == 0) && ((object_type == 0) || (object_type & SEGMENT))) {
rc = CopyList(new_object_list, SegmentList, AppendToList);
}
if ((rc == 0) && ((object_type == 0) || (object_type & REGION))) {
rc = CopyList(new_object_list, RegionList, AppendToList);
}
if ((rc == 0) && ((object_type == 0) || (object_type & EVMS_OBJECT))) {
rc = CopyList(new_object_list, EVMSObjectList, AppendToList);
}
if (rc == 0) {
/* Get a structure for the filters. */
object_filters_t * filters = malloc(sizeof(object_filters_t));
if (filters != NULL) {
/*
* Fill in the filters and then use PruneList to remove from the
* list objects that are not wanted.
*/
filters->object_type = object_type;
filters->data_type = data_type;
filters->plugin = plugin;
filters->flags = flags;
rc = PruneList(new_object_list,
filter_objects,
filters);
free(filters);
} else {
LOG_CRITICAL("Error allocating memory for object filters.\n");
rc = ENOMEM;
}
}
} else {
rc = ENOMEM;
}
if (rc == 0) {
*objects = new_object_list;
} else {
if (new_object_list != NULL) {
DestroyList(&new_object_list, FALSE);
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*--------------------------------*\
| Functions for getting containers |
\*--------------------------------*/
/*
* filter_containers is used by engine_get_Container_list to strip out of the
* list any containers that are not desired. filter_containers is called by the
* PruneList processor. Parameter points to a plugin_record_t for a region
* manager. If the object is not managed by the specified region manager, then
* this function returns TRUE to tell PruneList to remove the object from the
* list. Otherwise, it returns FALSE to leave the object in the list.
*/
static BOOLEAN filter_containers(ADDRESS Object,
TAG ObjectTag,
uint ObjectSize,
ADDRESS ObjectHandle,
ADDRESS Parameters,
BOOLEAN * FreeMemory,
uint * Error) {
storage_container_t * container = (storage_container_t *) Object;
plugin_record_t * plugin = (plugin_record_t *) Parameters;
BOOLEAN result = FALSE; /* Assume we want to keep this one. */
LOG_PROC_ENTRY();
/*
* We never want to free the item memory, so set this to FALSE
* just in case.
*/
*FreeMemory = FALSE;
if (plugin != NULL) {
if (container->plugin != plugin) {
/*
* The plug-in doesn't match. Remove this container from the list.
*/
result = TRUE;
}
}
*Error = DLIST_SUCCESS;
LOG_PROC_EXIT_BOOLEAN_INT(result, *Error);
return result;
}
/*
* engine_get_container_list returns a dlist_t of storage_container_t
* structures, optionally filtering on the plug-in that manages the container.
* If plugin is NULL, all storage_container_t structures will be returned.
*/
int engine_get_container_list(plugin_record_t * plugin,
dlist_t * container_list) {
int rc = 0;
dlist_t new_container_list = CreateList();
LOG_PROC_ENTRY();
LOG_DEBUG("Filters:\n");
LOG_DEBUG(" Plug-in: %s\n", (plugin == NULL) ? "(none)" : plugin->short_name);
LOG_DEBUG("Destination DLIST: %p\n", container_list);
if (new_container_list != NULL) {
rc = CopyList(new_container_list, ContainerList, AppendToList);
if ((rc == 0) && (plugin != NULL)) {
/*
* If the copy went OK and the caller specified a plug-in, use
* PruneList to remove from the list containers that are not managed
* by the plug-in.
*/
rc = PruneList(new_container_list,
filter_containers,
plugin);
}
} else {
rc = ENOMEM;
}
if (rc == 0) {
*container_list = new_container_list;
} else {
if (new_container_list != NULL) {
DestroyList(&new_container_list, FALSE);
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*------------------------------------------------*\
| Functions for communicating with the EVMS kernel |
\*------------------------------------------------*/
/*
* Issue an ioctl to the EVMS kernel block device
*/
static int engine_ioctl_evms_kernel(unsigned long cmd, void * arg) {
int rc = 0;
LOG_PROC_ENTRY();
/* Get the handle to the EVMS kernel block device. */
if (evms_block_dev_handle == 0) {
open_evms_block_dev();
}
if (evms_block_dev_handle >= 0) {
/* Send the requested command to the kernel. */
rc = ioctl(evms_block_dev_handle, cmd, arg);
/* If the Engine was not opened for write access, close our access to
* the EVMS kernel block device so that other potential instances of
* the Engine can open the device.
*/
if (engine_mode != ENGINE_READWRITE) {
close_evms_block_dev();
}
} else {
/*
* If open_evms_block_dev() returns a negative number it is an error
* code. Return the error to the caller.
*/
rc = evms_block_dev_handle;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*-----------------------------------------------------------*\
| Functions for allocating and freeing Engine data structures |
\*-----------------------------------------------------------*/
/*
* allocate_new_storage_object takes care of the common functions needed to
* allocate any kind of storage object. It allocates zero filled memory,
* creates the dlists, and initializes the flags.
*/
static int allocate_new_storage_object(storage_object_t * * new_object) {
int rc = 0;
storage_object_t * object = NULL;
LOG_PROC_ENTRY();
object = (storage_object_t *) calloc(1, sizeof(storage_object_t));
if (object != NULL) {
object->parent_objects = CreateList();
if (object->parent_objects != NULL) {
object->child_objects = CreateList();
if (object->child_objects != NULL) {
/*
* The default data type is DATA_TYPE. The plug-in can change
* it if necessary.
*/
object->data_type = DATA_TYPE;
/*
* If we are not in discovery, this must be a new object so mark
* it new and dirty.
*/
if (!discover_in_progress) {
object->flags |= SOFLAG_NEW | SOFLAG_DIRTY;
}
} else {
DestroyList(&object->parent_objects, FALSE);
rc = ENOMEM;
}
} else {
rc = ENOMEM;
}
if (rc != DLIST_SUCCESS) {
free(object);
object = NULL;
}
} else {
rc = ENOMEM;
}
*new_object = object;
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* free_old_storage_object takes care of the functions that are common for
* cleaning up any type of storage object. It destroys the app-handle, if one
* was created, destroys the dlists in the object, and frees the object.
*/
static void free_old_storage_object(storage_object_t * object) {
LOG_PROC_ENTRY();
if (object->app_handle != 0) {
destroy_handle(object->app_handle);
}
DestroyList(&object->parent_objects, FALSE);
DestroyList(&object->child_objects, FALSE);
free(object);
LOG_PROC_EXIT_VOID();
}
/*
* Free a storage_object_t for a logical disk.
*/
int engine_free_logical_disk(storage_object_t * disk) {
int rc = 0;
LOG_PROC_ENTRY();
engine_unregister_name(disk->name);
DeleteObject(DiskList,
disk);
free_old_storage_object(disk);
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Allocate a storage_object_t for a logical disk.
* If a name is specified, register the name.
*/
static int engine_allocate_logical_disk(char * name, storage_object_t * * new_disk) {
int rc = 0;
storage_object_t * disk;
LOG_PROC_ENTRY();
*new_disk = NULL;
if (name != NULL) {
rc = engine_validate_name(name);
}
if (rc == 0) {
rc = allocate_new_storage_object(&disk);
if (rc == 0) {
void * trash;
disk->object_type = DISK;
rc = InsertObject(DiskList,
sizeof(storage_object_t),
disk,
DISK_TAG,
NULL,
AppendToList,
FALSE,
&trash);
if (rc == DLIST_SUCCESS) {
if (name != NULL) {
rc = engine_register_name(name);
if (rc == 0) {
strcpy(disk->name, name);
} else {
DeleteObject(DiskList, disk);
}
}
}
if (rc != 0) {
engine_free_logical_disk(disk);
disk = NULL;
}
}
*new_disk = disk;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Free a storage_object_t for a disk segment.
*/
int engine_free_segment(storage_object_t * segment) {
int rc = 0;
LOG_PROC_ENTRY();
engine_unregister_name(segment->name);
DeleteObject(SegmentList,
segment);
free_old_storage_object(segment);
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Allocate a storage_object_t for a disk segment.
* If a name is specified, register the name.
*/
static int engine_allocate_segment(char * name, storage_object_t * * new_segment) {
int rc = 0;
storage_object_t * segment;
LOG_PROC_ENTRY();
*new_segment = NULL;
if (name != NULL) {
rc = engine_validate_name(name);
}
if (rc == 0) {
rc = allocate_new_storage_object(&segment);
if (rc == 0) {
void * trash;
segment->object_type = SEGMENT;
rc = InsertObject(SegmentList,
sizeof(storage_object_t),
segment,
SEGMENT_TAG,
NULL,
AppendToList,
FALSE,
&trash);
if (rc == DLIST_SUCCESS) {
if (name != NULL) {
rc = engine_register_name(name);
if (rc == 0) {
strcpy(segment->name, name);
} else {
DeleteObject(SegmentList, segment);
}
}
}
if (rc != 0) {
engine_free_segment(segment);
segment = NULL;
}
}
*new_segment = segment;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Free a storage_object_t for a region.
*/
int engine_free_region(storage_object_t * region) {
int rc = 0;
LOG_PROC_ENTRY();
engine_unregister_name(region->name);
DeleteObject(RegionList,
region);
free_old_storage_object(region);
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Allocate a storage_object_t for a region.
* If a name is specified, register the name.
*/
static int engine_allocate_region(char * name, storage_object_t * * new_region) {
int rc = 0;
storage_object_t * region;
LOG_PROC_ENTRY();
*new_region = NULL;
if (name != NULL) {
rc = engine_validate_name(name);
}
if (rc == 0) {
rc = allocate_new_storage_object(®ion);
if (rc == 0) {
void * trash;
region->object_type = REGION;
rc = InsertObject(RegionList,
sizeof(storage_object_t),
region,
REGION_TAG,
NULL,
AppendToList,
FALSE,
&trash);
if (rc == DLIST_SUCCESS) {
if (name != NULL) {
rc = engine_register_name(name);
if (rc == 0) {
strcpy(region->name, name);
} else {
DeleteObject(RegionList, region);
}
}
}
if (rc != 0) {
engine_free_region(region);
region = NULL;
}
}
*new_region = region;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Free a storage_object_t for an EVMS object.
*/
int engine_free_evms_object(storage_object_t * object) {
int rc = 0;
LOG_PROC_ENTRY();
engine_unregister_name(object->name);
DeleteObject(EVMSObjectList,
object);
free_old_storage_object(object);
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Allocate a storage_object_t for an EVMS object.
* If a name is specified, register the name.
*/
static int engine_allocate_evms_object(char * name, storage_object_t * * new_object) {
int rc = 0;
storage_object_t * object;
LOG_PROC_ENTRY();
*new_object = NULL;
if (name != NULL) {
rc = engine_validate_name(name);
}
if (rc == 0) {
rc = allocate_new_storage_object(&object);
if (rc == 0) {
void * trash;
object->object_type = EVMS_OBJECT;
rc = InsertObject(EVMSObjectList,
sizeof(storage_object_t),
object,
EVMS_OBJECT_TAG,
NULL,
AppendToList,
FALSE,
&trash);
if (rc == DLIST_SUCCESS) {
if (name != NULL) {
rc = engine_register_name(name);
if (rc == 0) {
strcpy(object->name, name);
} else {
DeleteObject(EVMSObjectList, object);
}
}
}
if (rc != 0) {
engine_free_evms_object(object);
object = NULL;
}
}
*new_object = object;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Allocate a storage_container structure filled with zeros, create the dlist_t
* anchors for the segments and regions_exported lists, mark the structure
* dirty, and add it to ContainerList, the global list of storage containers.
* If a name is specified, register the name.
*/
static int engine_allocate_container(char * name, storage_container_t * * new_container) {
int rc = 0;
storage_container_t * container;
LOG_PROC_ENTRY();
*new_container = NULL;
if (name != NULL) {
rc = engine_validate_name(name);
}
if (rc == 0) {
container = (storage_container_t *) calloc(1, sizeof(storage_container_t));
if (container != NULL) {
container->objects_consumed = CreateList();
if (container->objects_consumed != NULL) {
container->objects_produced = CreateList();
if (container->objects_produced != NULL) {
void * trash;
/*
* If we are not in discovery, this must be a new container
* so mark it dirty.
*/
if (!discover_in_progress) {
container->flags |= SCFLAG_DIRTY;
}
rc = InsertObject(ContainerList,
sizeof(storage_container_t),
container,
CONTAINER_TAG,
NULL,
AppendToList,
FALSE,
&trash);
if (rc == DLIST_SUCCESS) {
if (name != NULL) {
rc = engine_register_name(name);
if (rc == 0) {
strcpy(container->name, name);
} else {
DeleteObject(ContainerList, container);
}
}
}
if (rc != 0) {
DestroyList(&container->objects_produced, FALSE);
}
} else {
rc = ENOMEM;
}
if (rc != 0) {
DestroyList(&container->objects_consumed, FALSE);
}
} else {
rc = ENOMEM;
}
if (rc != DLIST_SUCCESS) {
free(container);
container = NULL;
}
} else {
rc = ENOMEM;
}
*new_container = container;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Free a storage_container structure: Destroy the app_handle if we created one,
* destroy the segments and regions_exported dlist_ts, and remove the structure
* from ContainerList, the global list of storage containers.
*/
int engine_free_container(storage_container_t * container) {
int rc = 0;
LOG_PROC_ENTRY();
if (container->app_handle != 0) {
destroy_handle(container->app_handle);
}
DestroyList(&container->objects_consumed, FALSE);
DestroyList(&container->objects_produced, FALSE);
engine_unregister_name(container->name);
DeleteObject(ContainerList,
container);
free(container);
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* engine_alloc is a service provided so that plug-ins use the same memory
* management library that the Engine does. This is especially needed if
* the Engine is ever expected to free the memory.
*/
static void * engine_alloc(u_int32_t size) {
void * pMem = NULL;
LOG_PROC_ENTRY();
if ( size > 0 ) {
pMem = calloc(1, size);
}
LOG_PROC_EXIT_PTR(pMem);
return pMem;
}
/*
* engine_free is the compliment to engine_alloc.
*/
static void engine_free(void * thing) {
LOG_PROC_ENTRY();
LOG_DEBUG("Request to free memory at %08x.\n", thing);
if (thing) {
free(thing);
}
LOG_PROC_EXIT_VOID();
}
/*
* Set the Engine's changes_pending flag. The Engine will set changes_pending
* as it sees calls such as create() go by. However, there are instances, such
* as with direct-plugin_communication(), that the Engine can't determine that
* changes are pending. This function allows plug-in to tell the Engine that
* changes are pending, i.e., there is stuff to commit to disk.
*/
static void engine_set_changes_pending() {
LOG_PROC_ENTRY();
changes_pending = TRUE;
LOG_PROC_EXIT_VOID();
}
static BOOLEAN engine_commit_in_progress() {
LOG_PROC_ENTRY();
LOG_PROC_EXIT_BOOLEAN(commit_in_progress);
return(commit_in_progress);
}
static int plugin_write_log_entry(debug_level_t level,
plugin_record_t * plugin,
char * fmt,
...) {
int rc = 0;
int len;
va_list args;
/*
* Don't log entry into this function. It gets in the way of what the
* plug-in is trying to write.
*/
if (level <= debug_level) {
if (log_file > 0) {
timestamp(log_buf, LOG_BUF_SIZE);
if (plugin != NULL) {
strcat(log_buf, plugin->short_name);
} else {
strcat(log_buf, "Bad plug-in pointer");
}
strcat(log_buf, ": ");
len = strlen(log_buf);
va_start(args, fmt);
len += vsprintf(log_buf + strlen(log_buf), fmt, args);
va_end(args);
if (write(log_file, log_buf, len) < 0) {
rc = errno;
}
} else {
rc = ENOENT;
}
}
/*
* Don't log exit from this function. It gets in the way of what the
* plug-in is trying to write.
*/
return rc;
}
/*
* Call the kernel to calculate a checksum.
*/
static int engine_calculate_checksum(unsigned char * buffer,
int buffer_size,
unsigned int insum,
unsigned int * outsum) {
int rc = 0;
evms_compute_csum_t csum;
csum.buffer_address = buffer;
csum.buffer_size = buffer_size;
csum.insum = insum;
csum.outsum = 0;
csum.status = 0;
rc = ioctl(evms_block_dev_handle, EVMS_COMPUTE_CSUM, &csum);
/* If the ioctl worked, return the status code. */
if (rc == 0) {
rc = csum.status;
/* If the call worked, return the checksum generated. */
if (rc == 0) {
*outsum = csum.outsum;
}
}
return rc;
}
/*
* Tell the Engine to put some sectors on its kill list.
*/
static int engine_add_sectors_to_kill_list(storage_object_t * disk, lba_t lba, sector_count_t count) {
kill_sector_record_t * ksr = calloc(1, sizeof(kill_sector_record_t));
ADDRESS handle;
int error = 0;
LOG_PROC_ENTRY();
if (ksr != NULL) {
if (disk != NULL) {
if (lba <= disk->size) {
if (lba + count <= disk->size) {
if (KillSectorList != NULL) {
ksr->logical_disk = disk;
ksr->sector_offset = lba;
ksr->sector_count = count;
error = InsertObject(KillSectorList,
sizeof(kill_sector_record_t),
ksr,
KILL_SECTOR_TAG,
NULL,
InsertAtStart,
TRUE,
&handle);
if (error == DLIST_SUCCESS) {
LOG_DEBUG("Request queued to kill %lld sector%s on disk %s at LBA %lld.\n", ksr->sector_count, (ksr->sector_count == 1) ? "" : "s", ksr->logical_disk->name, ksr->sector_offset);
}
} else {
LOG_CRITICAL("The KillSectorList has not been created.\n");
error = ENOMEM;
}
} else {
LOG_ERROR("The count of sectors (%d at LBA %lld) goes past the end of the disk (disk size is %lld).\n", ksr->sector_count, ksr->sector_offset, disk->size);
error = EINVAL;
}
} else {
LOG_ERROR("The starting LBA of the kill sectors (%lld) is past the end of the disk (disk size is %lld).\n", ksr->sector_offset, disk->size);
error = EINVAL;
}
} else {
LOG_ERROR("The pointer for the disk is NULL.\n");
error = EINVAL;
}
} else {
LOG_CRITICAL("Error allocating memory for a kill sector record.\n");
error = ENOMEM;
}
LOG_PROC_EXIT_INT(error);
return error;
}
/*
* Tell the Engine that a volume needs to be rediscovered.
*/
int engine_rediscover_volume(logical_volume_t * volume, BOOLEAN sync_fs) {
int rc = 0;
ADDRESS handle;
LOG_PROC_ENTRY();
LOG_DEBUG("Request to do a rediscover on volume %s.\n", volume->name);
if (!(volume->flags & VOLFLAG_NEW)) {
/*
* We can only allow the volume to appear once on the
* SoftVolumeDeleteList. The kernel can only delete the volume once.
* If the volume were to appear more than once on the list, we would ask
* the kernel to delete it more than once. All deletes after the first
* one would fail, since the volume would be gone, and our commit logic
* would fail because the delete failed.
* To ensure there is only one copy of the volume on the
* SoftVolumeDeleteList, issue a DeleteObject to remove it if it's on
* the list already. Ignore the return code from DeleteObject since it
* may fail if the volume is not on the list.
*/
DeleteObject(SoftVolumeDeleteList,
volume);
rc = InsertObject(SoftVolumeDeleteList,
sizeof(logical_volume_t),
volume,
VOLUME_TAG,
NULL,
AppendToList,
FALSE,
&handle);
if (rc == 0) {
if (sync_fs) {
volume->flags |= VOLFLAG_SYNC_FS;
}
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Validate that an object name is not too long and that there is no other
* object of the same type with the same name.
*/
int engine_validate_name(char * name) {
int rc = 0;
name_list_entry_t * pNameEntry = name_registry;
LOG_PROC_ENTRY();
if (name != NULL) {
LOG_DEBUG("Name to validate is %s.\n", name);
if (strlen(name) <= EVMS_NAME_SIZE) {
while ((pNameEntry != NULL) && (strcmp(pNameEntry->name, name) != 0)) {
pNameEntry = pNameEntry->next;
}
if (pNameEntry != NULL) {
/*
* We found a matching name.
*/
LOG_DEBUG("Name %s is already in the registry.\n", name);
rc = EEXIST;
}
} else {
/* The name is too long. */
LOG_DEBUG("The name is too long. It must be %d or fewer characters.\n", EVMS_NAME_SIZE);
rc = EOVERFLOW;
}
} else {
LOG_ERROR("Pointer to name is NULL.\n");
rc = EINVAL;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Add a name to the name registry.
*/
int engine_register_name(char * name) {
int rc = 0;
name_list_entry_t * * pNameEntry = &name_registry;
name_list_entry_t * new_entry;
LOG_PROC_ENTRY();
LOG_DEBUG("Name to register is %s.\n", name);
rc = engine_validate_name(name);
if (rc == 0) {
/*
* Create a new name registry entry and add it to the appropriate list.
*/
new_entry = (name_list_entry_t *) malloc(sizeof(name_list_entry_t));
if (new_entry != NULL) {
new_entry->name = strdup(name);
if (new_entry->name != NULL) {
new_entry->next = *pNameEntry;
*pNameEntry = new_entry;
} else {
/* Could not get memory for the name. */
LOG_CRITICAL("Error getting memory for the name in the new name registry entry.\n");
free(new_entry);
rc = ENOMEM;
}
} else {
LOG_CRITICAL("Error getting memory for the new name registry entry.\n");
rc = ENOMEM;
}
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Remove a name from the name registry.
*/
int engine_unregister_name(char * name) {
int rc = 0;
name_list_entry_t * * pNameEntry = &name_registry;
LOG_PROC_ENTRY();
if (name != NULL) {
LOG_DEBUG("Name to unregister is %s.\n", name);
while ((*pNameEntry != NULL) && (strcmp((*pNameEntry)->name, name) != 0)) {
pNameEntry = &((*pNameEntry)->next);
}
if (*pNameEntry != NULL) {
/*
* We found the name. Remove it from the list.
*/
name_list_entry_t * entry = *pNameEntry;
*pNameEntry = (*pNameEntry)->next;
free(entry->name);
free(entry);
} else {
/* We did not find the name. */
LOG_DEBUG("Name %s is not in the registry.\n", name);
rc = ENOENT;
}
} else {
LOG_ERROR("Pointer to name is NULL.\n");
rc = EINVAL;
}
LOG_PROC_EXIT_INT(rc);
return rc;
}
/*
* Free up all the entries in the name registry.
*/
void clear_name_registry(void) {
LOG_PROC_ENTRY();
while (name_registry != NULL) {
name_list_entry_t * entry = name_registry;
LOG_DEBUG("Free name registry entry for \"%s\".\n", entry->name);
name_registry = name_registry->next;
free(entry->name);
free(entry);
}
LOG_PROC_EXIT_VOID();
}
/*
* Check if there are any restrictions that would prevent this object from
* being renamed.
*/
int engine_can_rename(storage_object_t * obj) {
int rc;
uint count = 0;
BOOLEAN is_top_object = TRUE;
BOOLEAN has_associative_feature = FALSE;
LOG_PROC_ENTRY();
/*
* If the object is not part of a volume, then it is free to change its
* name.
*/
if (obj->volume == NULL) {
LOG_PROC_EXIT_INT(0);
return 0;
}
/*
* Check if the object is a top level object, i.e., it has no parent;
* or its parent is an associative feature that snuk in on top of the
* object, in which case it is virtually a top level object.
*/
GetListSize(obj->parent_objects, &count);
if (count == 0) {
is_top_object = TRUE;
} else {
/*
* The object is not a top level object. Check if its parent is an
* associative feature that snuck in on top of the object, and the
* associative feature has no parents.
*/
storage_object_t * parent;
TAG tag;
uint size;
rc = BlindGetObject(obj->parent_objects,
&size,
&tag,
NULL,
FALSE,
(ADDRESS *) &parent);
if (rc == DLIST_SUCCESS) {
GetListSize(parent->parent_objects, &count);
if ((GetPluginType(parent->plugin->id) == EVMS_ASSOCIATIVE_FEATURE) &&
(count == 0)) {
is_top_object = TRUE;
has_associative_feature = TRUE;
} else {
is_top_object = FALSE;
}
} else {
/*
* We couldn't get the parent object. Assume the most restrictive
* case, i.e., it is a top object.
*/
is_top_object = TRUE;
}
}
if (is_top_object) {
/*
* If the object is an EVMS_OBJECT, then it must be part of an
* EVMS volume and its name is allowed to change since it doesn't
* affect the volume name.
*/
if (obj->object_type == EVMS_OBJECT) {
LOG_PROC_EXIT_INT(0);
return 0;
}
/* If the object has a feature header on it, that feature header is
* for making an EVMS volume. An object that is part of an EVMS
* volume can always change its name since that doesn't affect the
* volume name.
*/
if (obj->feature_header != NULL) {
LOG_PROC_EXIT_INT(0);
return 0;
} else {
/*
* The object is the top level object in a compatibility volume.
* Check to see if the volume is mounted. If it is, don't allow
* the object name to be changed since that would change the
* volume name. If the volume is not mounted, it's OK to change
* the object name.
*/
if (is_volume_mounted(obj->volume)) {
LOG_PROC_EXIT_INT(EPERM);
return EPERM;
} else {
/*
* If this object has an associative feature above it, then
* the name cannot be changed. It is the top object of a
* compatibility volume which means the volume name changes
* with the object name. Associative features are tied to
* the volume name. We cannot let the volume name change
* and therefore cannot let the object name change.
*/
if (has_associative_feature) {
LOG_PROC_EXIT_INT(EPERM);
return EPERM;
} else {
/*
* The object is the top level object of a compatibility
* volume that is not mounted. The name can be changed.
* the evms_set_info() code will take care of changing the
* volume name if the object name changes.
*/
LOG_PROC_EXIT_INT(0);
return 0;
}
}
}
} else {
/* The object is not a top level object. Its name can be changed. */
LOG_PROC_EXIT_INT(0);
return 0;
}
/*
* We shouldn't get here. All of the if branches above should return.
* But just in case, fail the query.
*/
LOG_PROC_EXIT_INT(EPERM);
return EPERM;
}
engine_functions_t engine_functions = {
get_plugin_list: engine_get_plugin_list,
get_plugin_by_ID: engine_get_plugin_by_ID,
get_plugin_by_name: engine_get_plugin_by_name,
get_volume_list: engine_get_volume_list,
get_object_list: engine_get_object_list,
get_container_list: engine_get_container_list,
ioctl_evms_kernel: engine_ioctl_evms_kernel,
allocate_logical_disk: engine_allocate_logical_disk,
free_logical_disk: engine_free_logical_disk,
allocate_segment: engine_allocate_segment,
free_segment: engine_free_segment,
allocate_container: engine_allocate_container,
free_container: engine_free_container,
allocate_region: engine_allocate_region,
free_region: engine_free_region,
allocate_evms_object: engine_allocate_evms_object,
free_evms_object: engine_free_evms_object,
engine_alloc: engine_alloc,
engine_free: engine_free,
changes_pending: evms_changes_pending,
set_changes_pending: engine_set_changes_pending,
commit_in_progress: engine_commit_in_progress,
write_log_entry: plugin_write_log_entry,
calculate_CRC: calculate_CRC,
calculate_checksum: engine_calculate_checksum,
add_sectors_to_kill_list: engine_add_sectors_to_kill_list,
rediscover_volume: engine_rediscover_volume,
validate_name: engine_validate_name,
register_name: engine_register_name,
unregister_name: engine_unregister_name,
can_expand_by: engine_can_expand_by,
can_shrink_by: engine_can_shrink_by,
user_message: plugin_user_message,
user_communication: plugin_user_communication,
can_rename: engine_can_rename,
is_mounted: is_mounted
};
|