/usr/share/pcsd/pcsd.rb is in pcs 0.9.164-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | require 'sinatra'
require 'sinatra/reloader' if development?
require 'sinatra/cookies'
require 'rexml/document'
require 'webrick'
require 'webrick/https'
require 'openssl'
require 'logger'
require 'thread'
require 'fileutils'
require 'cgi'
require 'bootstrap.rb'
require 'resource.rb'
require 'remote.rb'
require 'fenceagent.rb'
require 'cluster.rb'
require 'config.rb'
require 'pcs.rb'
require 'auth.rb'
require 'wizard.rb'
require 'cfgsync.rb'
require 'permissions.rb'
require 'session.rb'
Dir["wizards/*.rb"].each {|file| require file}
use Rack::CommonLogger
set :app_file, __FILE__
def generate_cookie_secret
return SecureRandom.hex(30)
end
begin
secret = File.read(COOKIE_FILE)
secret_errors = verify_cookie_secret(secret)
if secret_errors and not secret_errors.empty?
secret_errors.each { |err| $logger.error err }
$logger.error "Invalid cookie secret, using temporary one"
secret = generate_cookie_secret()
end
rescue Errno::ENOENT
secret = generate_cookie_secret()
File.open(COOKIE_FILE, 'w', 0700) {|f| f.write(secret)}
end
session_lifetime = ENV['PCSD_SESSION_LIFETIME'].to_i()
session_lifetime = 60 * 60 unless session_lifetime > 0
use SessionPoolLifetime,
:expire_after => session_lifetime,
:secret => secret,
:secure => true, # only send over HTTPS
:httponly => true # don't provide to javascript
# session storage instance
# will be created by Rack later and fetched in "before" filter
$session_storage = nil
$session_storage_env = {}
#use Rack::SSL
if development?
Dir["wizards/*.rb"].each {|file| also_reload file}
also_reload 'resource.rb'
also_reload 'remote.rb'
also_reload 'fenceagent.rb'
also_reload 'cluster.rb'
also_reload 'config.rb'
also_reload 'pcs.rb'
also_reload 'auth.rb'
also_reload 'wizard.rb'
also_reload 'cfgsync.rb'
end
before do
# nobody is logged in yet
@auth_user = nil
# get session storage instance from env
if not $session_storage and env[:__session_storage]
$session_storage = env[:__session_storage]
$session_storage_env = env
end
# urls which are accesible for everybody including not logged in users
always_accessible = [
'/login',
'/logout',
'/login-status',
'/remote/auth',
]
if not always_accessible.include?(request.path)
# Sets @auth_user to a hash containing info about logged in user or halts
# the request processing if login credentials are incorrect.
protected!
else
# Set a sane default: nobody is logged in, but we do not need to check both
# for nil and empty username (if auth_user and auth_user[:username])
@auth_user = {} if not @auth_user
end
$cluster_name = get_cluster_name()
end
configure do
DISABLE_GUI = (
ENV['PCSD_DISABLE_GUI'] and ENV['PCSD_DISABLE_GUI'].downcase == 'true'
)
PCS = get_pcs_path()
logger = File.open("/var/log/pcsd/pcsd.log", "a+", 0600)
STDOUT.reopen(logger)
STDERR.reopen(logger)
STDOUT.sync = true
STDERR.sync = true
$logger = configure_logger('/var/log/pcsd/pcsd.log')
$semaphore_cfgsync = Mutex.new
capabilities, capabilities_pcsd = get_capabilities($logger)
CAPABILITIES = capabilities.freeze
CAPABILITIES_PCSD = capabilities_pcsd.freeze
end
set :logging, true
set :run, false
$thread_cfgsync = Thread.new {
while true
$semaphore_cfgsync.synchronize {
$logger.debug('Config files sync thread started')
if Cfgsync::ConfigSyncControl.sync_thread_allowed?()
begin
# do not sync if this host is not in a cluster
cluster_name = get_cluster_name()
cluster_nodes = get_corosync_nodes()
if cluster_name and !cluster_name.empty?() and cluster_nodes and !cluster_nodes.empty?
$logger.debug('Config files sync thread fetching')
fetcher = Cfgsync::ConfigFetcher.new(
PCSAuth.getSuperuserAuth(),
Cfgsync::get_cfg_classes(),
cluster_nodes,
cluster_name
)
cfgs_to_save, _ = fetcher.fetch()
cfgs_to_save.each { |cfg_to_save|
cfg_to_save.save()
}
end
rescue => e
$logger.warn("Config files sync thread exception: #{e}")
end
end
$logger.debug('Config files sync thread finished')
}
sleep(Cfgsync::ConfigSyncControl.sync_thread_interval())
end
}
$thread_session_expired = Thread.new {
while true
sleep(60 * 5)
begin
if $session_storage
$session_storage.drop_expired($session_storage_env)
end
rescue => e
$logger.warn("Exception while removing expired sessions: #{e}")
end
end
}
helpers do
def is_ajax?
return request.env['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest'
end
def protected!
gui_request = ( # these are URLs for web pages
request.path == '/' or
request.path == '/manage' or
request.path == '/permissions' or
request.path.match('/managec/.+/main')
)
if request.path.start_with?('/remote/') or request.path == '/run_pcs'
@auth_user = PCSAuth.loginByToken(cookies)
unless @auth_user
halt [401, '{"notauthorized":"true"}']
end
else #/managec/* /manage/* /permissions
if !gui_request and !is_ajax? then
# Accept non GUI requests only with header
# "X_REQUESTED_WITH: XMLHttpRequest". (check if they are send via AJAX).
# This prevents CSRF attack.
halt [401, '{"notauthorized":"true"}']
elsif not PCSAuth.isLoggedIn(session)
if gui_request
session[:pre_login_path] = request.path
redirect '/login'
else
halt [401, '{"notauthorized":"true"}']
end
end
end
end
def getParamList(params)
param_line = []
meta_options = []
params.each { |param, val|
if param.start_with?("_res_paramne_") or (param.start_with?("_res_paramempty_") and val != "")
myparam = param.sub(/^_res_paramne_/,"").sub(/^_res_paramempty_/,"")
param_line << "#{myparam}=#{val}"
end
if param == "disabled"
meta_options << 'meta' << 'target-role=Stopped'
end
if param == "force" and val
param_line << "--force"
end
}
return param_line + meta_options
end
end
get '/remote/?:command?' do
return remote(params, request, @auth_user)
end
post '/remote/?:command?' do
return remote(params, request, @auth_user)
end
post '/run_pcs' do
command = params['command'] || '{}'
std_in = params['stdin'] || nil
begin
command_decoded = JSON.parse(command)
rescue JSON::ParserError
result = {
'status' => 'error',
'data' => {},
}
return JSON.pretty_generate(result)
end
# Do not reveal potentially sensitive information: remove --debug and all its
# prefixes since getopt parser in pcs considers them equal to --debug.
debug_items = ["--de", "--deb", "--debu", "--debug"]
command_sanitized = []
command_decoded.each { |item|
command_sanitized << item unless debug_items.include?(item)
}
allowed_commands = {
['cluster', 'auth', '...'] => {
'only_superuser' => false,
'permissions' => nil,
},
# runs on the local node, check permissions
['cluster', 'corosync'] => {
'only_superuser' => false,
'permissions' => Permissions::READ,
},
# runs on a remote node which checks permissions by itself
['cluster', 'corosync', '...'] => {
'only_superuser' => false,
'permissions' => nil,
},
['cluster', 'destroy', '...'] => {
'only_superuser' => false,
'permissions' => Permissions::FULL,
},
# runs on the local node, check permissions
['cluster', 'disable'] => {
'only_superuser' => false,
'permissions' => Permissions::WRITE,
},
# runs on a remote node which checks permissions by itself
['cluster', 'disable', '...'] => {
'only_superuser' => false,
'permissions' => nil,
},
# runs on the local node, check permissions
['cluster', 'enable'] => {
'only_superuser' => false,
'permissions' => Permissions::WRITE,
},
# runs on a remote node which checks permissions by itself
['cluster', 'enable', '...'] => {
'only_superuser' => false,
'permissions' => nil,
},
['cluster', 'node', '...'] => {
'only_superuser' => false,
'permissions' => Permissions::FULL,
},
['cluster', 'pcsd-status', '...'] => {
'only_superuser' => false,
'permissions' => nil,
},
['cluster', 'setup', '...'] => {
'only_superuser' => true,
'permissions' => nil,
},
# runs on the local node, check permissions
['cluster', 'start'] => {
'only_superuser' => false,
'permissions' => Permissions::WRITE,
},
# runs on a remote node which checks permissions by itself
['cluster', 'start', '...'] => {
'only_superuser' => false,
'permissions' => nil,
},
# runs on the local node, check permissions
['cluster', 'stop'] => {
'only_superuser' => false,
'permissions' => Permissions::WRITE,
},
# runs on a remote node which checks permissions by itself
['cluster', 'stop', '...'] => {
'only_superuser' => false,
'permissions' => nil,
},
['cluster', 'sync', '...'] => {
'only_superuser' => false,
'permissions' => Permissions::FULL,
},
['config', 'restore', '...'] => {
'only_superuser' => false,
'permissions' => Permissions::FULL,
},
['pcsd', 'sync-certificates', '...'] => {
'only_superuser' => false,
'permissions' => Permissions::FULL,
},
['status', 'nodes', 'corosync-id', '...'] => {
'only_superuser' => false,
'permissions' => Permissions::READ,
},
['status', 'nodes', 'pacemaker-id', '...'] => {
'only_superuser' => false,
'permissions' => Permissions::READ,
},
['status', 'pcsd', '...'] => {
'only_superuser' => false,
'permissions' => nil,
},
}
allowed = false
command_settings = {}
allowed_commands.each { |cmd, cmd_settings|
if command_sanitized == cmd \
or \
(cmd[-1] == '...' and cmd[0..-2] == command_sanitized[0..(cmd.length - 2)])
then
allowed = true
command_settings = cmd_settings
break
end
}
if !allowed
result = {
'status' => 'bad_command',
'data' => {},
}
return JSON.pretty_generate(result)
end
if command_settings['only_superuser']
if not allowed_for_superuser(@auth_user)
return 403, 'Permission denied'
end
end
if command_settings['permissions']
if not allowed_for_local_cluster(@auth_user, command_settings['permissions'])
return 403, 'Permission denied'
end
end
options = {}
options['stdin'] = std_in if std_in
std_out, std_err, retval = run_cmd_options(
@auth_user, options, PCS, *command_sanitized
)
result = {
'status' => 'ok',
'data' => {
'stdout' => std_out.join(""),
'stderr' => std_err.join(""),
'code' => retval,
},
}
return JSON.pretty_generate(result)
end
if not DISABLE_GUI
get('/login'){ erb :login, :layout => :main }
get '/logout' do
session.destroy
if is_ajax?
halt [200, "OK"]
else
redirect '/login'
end
end
get '/login-status' do
if PCSAuth.isLoggedIn(session)
halt [200, session[:random]]
else
halt [401, '{"notauthorized":"true"}']
end
end
post '/login' do
auth_user = PCSAuth.loginByPassword(
params['username'], params['password']
)
if auth_user
PCSAuth.authUserToSession(auth_user, session)
# Temporarily ignore pre_login_path until we come up with a list of valid
# paths to redirect to (to prevent status_all issues)
# if session["pre_login_path"]
# plp = session["pre_login_path"]
# session.delete("pre_login_path")
# pp "Pre Login Path: " + plp
# if plp == "" or plp == "/"
# plp = '/manage'
# end
# redirect plp
# else
session.delete(:bad_login_name)
session[:random] = "#{Time.now.to_i}-#{rand(100)}"
if is_ajax?
halt [200, session[:random]]
else
redirect '/manage'
end
# end
else
if is_ajax?
halt [401, '{"notauthorized":"true"}']
else
session[:bad_login_name] = params['username']
redirect '/login'
end
end
end
post '/manage/existingcluster' do
pcs_config = PCSConfig.new(Cfgsync::PcsdSettings.from_file().text())
node = params['node-name']
code, result = send_request_with_token(
PCSAuth.getSuperuserAuth(), node, 'status'
)
begin
status = JSON.parse(result)
rescue JSON::ParserError
return 400, "Unable to communicate with remote pcsd on node '#{node}'."
end
warning_messages = []
if status.has_key?("corosync_offline") and
status.has_key?("corosync_online") then
nodes = status["corosync_offline"] + status["corosync_online"]
if status["cluster_name"] == ''
return 400, "The node, '#{node}', does not currently have a cluster
configured. You must create a cluster using this node before adding it to pcsd."
end
if pcs_config.is_cluster_name_in_use(status["cluster_name"])
return 400, "The cluster name, '#{status['cluster_name']}' has
already been added to pcsd. You may not add two clusters with the same name into pcsd."
end
# auth begin
retval, out = send_request_with_token(
PCSAuth.getSuperuserAuth(), node, '/get_cluster_tokens', false, {'with_ports' => '1'}
)
if retval == 404 # backward compatibility layer
warning_messages << "Unable to do correct authentication of cluster because it is running old version of pcs/pcsd."
else
if retval != 200
return 400, "Unable to get authentication info from cluster '#{status['cluster_name']}'."
end
begin
data = JSON.parse(out)
expected_keys = ['tokens', 'ports']
if expected_keys.all? {|i| data.has_key?(i) and data[i].class == Hash}
# new format
new_tokens = data["tokens"] || {}
new_ports = data["ports"] || {}
else
# old format
new_tokens = data
new_ports = {}
end
rescue
return 400, "Unable to get authentication info from cluster '#{status['cluster_name']}'."
end
sync_config = Cfgsync::PcsdTokens.from_file()
pushed, _ = Cfgsync::save_sync_new_tokens(
sync_config, new_tokens, get_corosync_nodes(), $cluster_name, new_ports
)
if not pushed
return 400, "Configuration conflict detected.\n\nSome nodes had a newer configuration than the local node. Local node's configuration was updated. Please repeat the last action if appropriate."
end
end
#auth end
pcs_config.clusters << Cluster.new(status["cluster_name"], nodes)
sync_config = Cfgsync::PcsdSettings.from_text(pcs_config.text())
pushed, _ = Cfgsync::save_sync_new_version(
sync_config, get_corosync_nodes(), $cluster_name, true
)
if not pushed
return 400, "Configuration conflict detected.\n\nSome nodes had a newer configuration than the local node. Local node's configuration was updated. Please repeat the last action if appropriate."
end
return 200, warning_messages.join("\n\n")
else
return 400, "Unable to communicate with remote pcsd on node '#{node}'."
end
end
post '/manage/newcluster' do
auth_user = PCSAuth.sessionToAuthUser(session)
if not allowed_for_superuser(auth_user)
return 400, 'Permission denied.'
end
warning_messages = []
pcs_config = PCSConfig.new(Cfgsync::PcsdSettings.from_file().text())
@manage = true
@cluster_name = params[:clustername]
@nodes = []
nodes_with_indexes = []
@nodes_rrp = []
options = {}
params.each {|k,v|
if k.start_with?("node-") and v != ""
@nodes << v
nodes_with_indexes << [k[5..-1].to_i, v]
if params.has_key?("ring1-" + k) and params["ring1-" + k] != ""
@nodes_rrp << v + "," + params["ring1-" + k]
else
@nodes_rrp << v
end
end
if k.start_with?("config-") and v != ""
options[k.sub("config-","")] = v
end
}
if pcs_config.is_cluster_name_in_use(@cluster_name)
return 400, "The cluster name, '#{@cluster_name}' has already been added to pcsd. You may not add two clusters with the same name into pcsd."
end
@nodes.each {|n|
if pcs_config.is_node_in_use(n)
return 400, "The node, '#{n}' is already configured in pcsd. You may not add a node to two different clusters in pcsd."
end
}
# first we need to authenticate nodes to each other
token_file_data = read_token_file()
tokens_data = add_prefix_to_keys(
token_file_data.tokens.select {|k,v| @nodes.include?(k)}, "node:"
)
ports_data = add_prefix_to_keys(
token_file_data.ports.select {|k,v| @nodes.include?(k)}, "port:"
)
@nodes.each {|n|
retval, out = send_request_with_token(
auth_user, n, "/save_tokens", true, tokens_data.merge(ports_data)
)
if retval == 404 # backward compatibility layer
warning_messages << "Unable to do correct authentication of cluster on node '#{n}', because it is running old version of pcs/pcsd."
break
elsif retval != 200
return 400, "Unable to authenticate all nodes on node '#{n}'."
end
}
# the first node from the form is the source of config files
node_to_send_to = nodes_with_indexes.sort[0][1]
$logger.info(
"Sending setup cluster request for: #{@cluster_name} to: #{node_to_send_to}"
)
code,out = send_request_with_token(
auth_user,
node_to_send_to,
'setup_cluster',
true,
{
:clustername => @cluster_name,
:nodes => @nodes_rrp.join(';'),
:options => options.to_json,
:encryption => params[:encryption],
},
true,
nil,
60
)
if code == 200
pushed = false
2.times {
# Add the new cluster to config and publish the config.
# If this host is a node of the cluster, some other node may send its
# own PcsdSettings. To handle it we just need to reload the config, as
# we are waiting for the request to finish, so no locking is needed.
# If we are in a different cluster we just try twice to update the
# config, dealing with any updates in between.
pcs_config = PCSConfig.new(Cfgsync::PcsdSettings.from_file().text())
pcs_config.clusters << Cluster.new(@cluster_name, @nodes)
sync_config = Cfgsync::PcsdSettings.from_text(pcs_config.text())
pushed, _ = Cfgsync::save_sync_new_version(
sync_config, get_corosync_nodes(), $cluster_name, true
)
break if pushed
}
if not pushed
return 400, "Configuration conflict detected.\n\nSome nodes had a newer configuration than the local node. Local node's configuration was updated. Please repeat the last action if appropriate."
end
else
return 400, "Unable to create new cluster. If cluster already exists on one or more of the nodes run 'pcs cluster destroy' on all nodes to remove current cluster configuration.\n\n#{node_to_send_to}: #{out}"
end
return warning_messages.join("\n\n")
end
post '/manage/removecluster' do
pcs_config = PCSConfig.new(Cfgsync::PcsdSettings.from_file().text())
params.each { |k,v|
if k.start_with?("clusterid-")
pcs_config.remove_cluster(k.sub("clusterid-",""))
end
}
sync_config = Cfgsync::PcsdSettings.from_text(pcs_config.text())
pushed, _ = Cfgsync::save_sync_new_version(
sync_config, get_corosync_nodes(), $cluster_name, true
)
if not pushed
return 400, "Configuration conflict detected.\n\nSome nodes had a newer configuration than the local node. Local node's configuration was updated. Please repeat the last action if appropriate."
end
end
get '/manage/check_pcsd_status' do
auth_user = PCSAuth.sessionToAuthUser(session)
node_list = []
if params[:nodes] != nil and params[:nodes] != ''
node_list = params[:nodes].split(',')
end
ports = {}
node_list.each { |node|
port = (params["port-#{node}"] || '').strip
ports[node] = port != '' ? port : nil
}
node_results = {}
online, offline, notauthorized = check_gui_status_of_nodes(
auth_user, node_list, false, 10, ports
)
online.each { |node|
node_results[node] = 'Online'
}
offline.each { |node|
node_results[node] = 'Offline'
}
notauthorized.each { |node|
node_results[node] = 'Unable to authenticate'
}
return JSON.generate(node_results)
end
get '/manage/get_nodes_sw_versions' do
auth_user = PCSAuth.sessionToAuthUser(session)
if params[:nodes] != nil and params[:nodes] != ''
nodes = params[:nodes].split(',')
final_response = {}
threads = []
nodes.each {|node|
threads << Thread.new {
code, response = send_request_with_token(
auth_user, node, 'get_sw_versions'
)
begin
node_response = JSON.parse(response)
if node_response and node_response['notoken'] == true
$logger.error("ERROR: bad token for #{node}")
end
final_response[node] = node_response
rescue JSON::ParserError
end
}
}
threads.each { |t| t.join }
return JSON.generate(final_response)
end
return '{}'
end
post '/manage/auth_gui_against_nodes' do
auth_user = PCSAuth.sessionToAuthUser(session)
node_auth_error = {}
new_tokens = {}
new_ports = {}
threads = []
params.each { |node|
threads << Thread.new {
if node[0].end_with?("-pass") and node[0].length > 5
nodename = node[0][0..-6]
if params.has_key?("all")
pass = params["pass-all"]
else
pass = node[1]
end
port = (params["port-#{nodename}"] || '').strip
if port == ''
port = nil
end
data = {
'node-0' => nodename,
'username' => SUPERUSER,
'password' => pass,
'force' => 1,
"port-#{nodename}" => port,
}
node_auth_error[nodename] = 1
code, response = send_request(
auth_user, nodename, 'auth', true, data, true, nil, nil, nil, port
)
if 200 == code
token = response.strip
if not token.empty?
new_tokens[nodename] = token
new_ports[nodename] = port
node_auth_error[nodename] = 0
end
end
end
}
}
threads.each { |t| t.join }
if not new_tokens.empty? or not new_ports.empty?
cluster_nodes = get_corosync_nodes()
tokens_cfg = Cfgsync::PcsdTokens.from_file()
sync_successful, sync_responses = Cfgsync::save_sync_new_tokens(
tokens_cfg, new_tokens, cluster_nodes, $cluster_name, new_ports
)
end
return [200, JSON.generate({'node_auth_error' => node_auth_error})]
end
get '/manage/?' do
@manage = true
erb :manage, :layout => :main
end
get '/clusters_overview' do
clusters_overview(params, request, PCSAuth.sessionToAuthUser(session))
end
get '/permissions/?' do
@manage = true
pcs_config = PCSConfig.new(Cfgsync::PcsdSettings.from_file().text())
@clusters = pcs_config.clusters.sort { |a, b| a.name <=> b.name }
erb :permissions, :layout => :main
end
get '/permissions_cluster_form/:cluster/?' do
auth_user = PCSAuth.sessionToAuthUser(session)
@cluster_name = params[:cluster]
@error = nil
@permission_types = []
@permissions_dependencies = {}
@user_types = []
@users_permissions = []
pcs_config = PCSConfig.new(Cfgsync::PcsdSettings.from_file().text())
if not pcs_config.is_cluster_name_in_use(@cluster_name)
@error = 'Cluster not found'
else
code, data = send_cluster_request_with_token(
auth_user, @cluster_name, 'get_permissions'
)
if 404 == code
@error = 'Cluster is running an old version of pcsd which does not support permissions'
elsif 403 == code
@error = 'Permission denied'
elsif 200 != code
@error = 'Unable to load permissions of the cluster'
else
begin
permissions = JSON.parse(data)
if permissions['notoken'] or permissions['noresponse']
@error = 'Unable to load permissions of the cluster'
else
@permission_types = permissions['permission_types'] || []
@permissions_dependencies = permissions['permissions_dependencies'] || {}
@user_types = permissions['user_types'] || []
@users_permissions = permissions['users_permissions'] || []
end
rescue JSON::ParserError
@error = 'Unable to read permissions of the cluster'
end
end
end
erb :_permissions_cluster
end
get '/managec/:cluster/main' do
auth_user = PCSAuth.sessionToAuthUser(session)
@cluster_name = params[:cluster]
pcs_config = PCSConfig.new(Cfgsync::PcsdSettings.from_file().text())
@clusters = pcs_config.clusters
@nodes = get_cluster_nodes(params[:cluster])
if @nodes == []
redirect '/manage/'
end
@resource_agent_structures = get_resource_agents_avail(auth_user, params) \
.map{|agent_name| get_resource_agent_name_structure(agent_name)} \
.select{|structure| structure != nil}
@stonith_agents = get_stonith_agents_avail(auth_user, params)
erb :nodes, :layout => :main
end
post '/managec/:cluster/permissions_save/?' do
auth_user = PCSAuth.sessionToAuthUser(session)
new_params = {
'json_data' => JSON.generate(params)
}
return send_cluster_request_with_token(
auth_user, params[:cluster], "set_permissions", true, new_params
)
end
get '/managec/:cluster/status_all' do
auth_user = PCSAuth.sessionToAuthUser(session)
status_all(params, request, auth_user, get_cluster_nodes(params[:cluster]))
end
get '/managec/:cluster/cluster_status' do
auth_user = PCSAuth.sessionToAuthUser(session)
cluster_status_gui(auth_user, params[:cluster])
end
get '/managec/:cluster/cluster_properties' do
auth_user = PCSAuth.sessionToAuthUser(session)
cluster = params[:cluster]
unless cluster
return 200, {}
end
code, out = send_cluster_request_with_token(auth_user, cluster, 'get_cib')
if code == 403
return [403, 'Permission denied']
elsif code != 200
return [400, 'getting CIB failed']
end
begin
properties = getAllSettings(nil, REXML::Document.new(out))
code, out = send_cluster_request_with_token(
auth_user, cluster, 'get_cluster_properties_definition'
)
if code == 403
return [403, 'Permission denied']
elsif code == 404
definition = {
'batch-limit' => {
'name' => 'batch-limit',
'source' => 'pengine',
'default' => '0',
'type' => 'integer',
'shortdesc' => 'The number of jobs that pacemaker is allowed to execute in parallel.',
'longdesc' => 'The "correct" value will depend on the speed and load of your network and cluster nodes.',
'readable_name' => 'Batch Limit',
'advanced' => false
},
'no-quorum-policy' => {
'name' => 'no-quorum-policy',
'source' => 'pengine',
'default' => 'stop',
'type' => 'enum',
'enum' => ['stop', 'freeze', 'ignore', 'suicide'],
'shortdesc' => 'What to do when the cluster does not have quorum.',
'longdesc' => 'Allowed values:
* ignore - continue all resource management
* freeze - continue resource management, but don\'t recover resources from nodes not in the affected partition
* stop - stop all resources in the affected cluster partition
* suicide - fence all nodes in the affected cluster partition',
'readable_name' => 'No Quorum Policy',
'advanced' => false
},
'symmetric-cluster' => {
'name' => 'symmetric-cluster',
'source' => 'pengine',
'default' => 'true',
'type' => 'boolean',
'shortdesc' => 'All resources can run anywhere by default.',
'longdesc' => 'All resources can run anywhere by default.',
'readable_name' => 'Symmetric',
'advanced' => false
},
'stonith-enabled' => {
'name' => 'stonith-enabled',
'source' => 'pengine',
'default' => 'true',
'type' => 'boolean',
'shortdesc' => 'Failed nodes are STONITH\'d',
'longdesc' => 'Failed nodes are STONITH\'d',
'readable_name' => 'Stonith Enabled',
'advanced' => false
},
'stonith-action' => {
'name' => 'stonith-action',
'source' => 'pengine',
'default' => 'reboot',
'type' => 'enum',
'enum' => ['reboot', 'poweroff', 'off'],
'shortdesc' => 'Action to send to STONITH device',
'longdesc' => 'Action to send to STONITH device Allowed values: reboot, poweroff, off',
'readable_name' => 'Stonith Action',
'advanced' => false
},
'cluster-delay' => {
'name' => 'cluster-delay',
'source' => 'pengine',
'default' => '60s',
'type' => 'time',
'shortdesc' => 'Round trip delay over the network (excluding action execution)',
'longdesc' => 'The "correct" value will depend on the speed and load of your network and cluster nodes.',
'readable_name' => 'Cluster Delay',
'advanced' => false
},
'stop-orphan-resources' => {
'name' => 'stop-orphan-resources',
'source' => 'pengine',
'default' => 'true',
'type' => 'boolean',
'shortdesc' => 'Should deleted resources be stopped',
'longdesc' => 'Should deleted resources be stopped',
'readable_name' => 'Stop Orphan Resources',
'advanced' => false
},
'stop-orphan-actions' => {
'name' => 'stop-orphan-actions',
'source' => 'pengine',
'default' => 'true',
'type' => 'boolean',
'shortdesc' => 'Should deleted actions be cancelled',
'longdesc' => 'Should deleted actions be cancelled',
'readable_name' => 'Stop Orphan Actions',
'advanced' => false
},
'start-failure-is-fatal' => {
'name' => 'start-failure-is-fatal',
'source' => 'pengine',
'default' => 'true',
'type' => 'boolean',
'shortdesc' => 'Always treat start failures as fatal',
'longdesc' => 'This was the old default. However when set to FALSE, the cluster will instead use the resource\'s failcount and value for resource-failure-stickiness',
'readable_name' => 'Start Failure is Fatal',
'advanced' => false
},
'pe-error-series-max' => {
'name' => 'pe-error-series-max',
'source' => 'pengine',
'default' => '-1',
'type' => 'integer',
'shortdesc' => 'The number of PE inputs resulting in ERRORs to save',
'longdesc' => 'Zero to disable, -1 to store unlimited.',
'readable_name' => 'PE Error Storage',
'advanced' => false
},
'pe-warn-series-max' => {
'name' => 'pe-warn-series-max',
'source' => 'pengine',
'default' => '5000',
'type' => 'integer',
'shortdesc' => 'The number of PE inputs resulting in WARNINGs to save',
'longdesc' => 'Zero to disable, -1 to store unlimited.',
'readable_name' => 'PE Warning Storage',
'advanced' => false
},
'pe-input-series-max' => {
'name' => 'pe-input-series-max',
'source' => 'pengine',
'default' => '4000',
'type' => 'integer',
'shortdesc' => 'The number of other PE inputs to save',
'longdesc' => 'Zero to disable, -1 to store unlimited.',
'readable_name' => 'PE Input Storage',
'advanced' => false
},
'enable-acl' => {
'name' => 'enable-acl',
'source' => 'cib',
'default' => 'false',
'type' => 'boolean',
'shortdesc' => 'Enable CIB ACL',
'longdesc' => 'Should pacemaker use ACLs to determine access to cluster',
'readable_name' => 'Enable ACLs',
'advanced' => false
},
}
elsif code != 200
return [400, 'getting properties definition failed']
else
definition = JSON.parse(out)
end
definition.each { |name, prop|
prop['value'] = properties[name]
}
return [200, JSON.generate(definition)]
rescue
return [400, 'unable to get cluster properties']
end
end
get '/managec/:cluster/get_resource_agent_metadata' do
auth_user = PCSAuth.sessionToAuthUser(session)
cluster = params[:cluster]
resource_agent = params[:agent]
code, out = send_cluster_request_with_token(
auth_user,
cluster,
'get_resource_agent_metadata',
false,
{:resource_agent => resource_agent}
)
if code != 404
return [code, out]
end
code, out = send_cluster_request_with_token(
auth_user,
cluster,
'resource_metadata',
false,
{
:resourcename => resource_agent,
:new => true
}
)
if code != 200
return [400, 'Unable to get meta-data of specified resource agent.']
end
desc_regex = Regexp.new(
'<span class="reg[^>]*>(?<short>[^>]*) </span>[^<]*' +
'<span title="(?<long>[^"]*)"'
)
parameters_regex = Regexp.new(
'<input type="hidden" name="resource_type"[^>]*>(?<required>[\s\S]*)' +
'<div class="bold">Optional Arguments:</div>(?<optional>[\S\s]*)' +
'<tr class="stop">'
)
parameter_regex = Regexp.new(
'<tr title="(?<longdesc>[^"]*)"[^>]*>[\s]*<td class="reg">\s*' +
'(?<name>[^<\s]*)\s*</td>\s*<td>\s*' +
'<input placeholder="(?<shortdesc>[^"]*)"'
)
desc = desc_regex.match(out)
unless desc
return [400, 'Unable to get meta-data of specified resource agent.']
end
result = {
:name => resource_agent,
:shortdesc => html2plain(desc[:short]),
:longdesc => html2plain(desc[:long]),
:parameters => []
}
parameters = parameters_regex.match(out)
parameters[:required].scan(parameter_regex) { |match|
result[:parameters] << {
:name => html2plain(match[1]),
:longdesc => html2plain(match[0]),
:shortdesc => html2plain(match[2]),
:type => 'string',
:required => true
}
}
parameters[:optional].scan(parameter_regex) { |match|
result[:parameters] << {
:name => html2plain(match[1]),
:longdesc => html2plain(match[0]),
:shortdesc => html2plain(match[2]),
:type => 'string',
:required => false
}
}
return [200, JSON.generate(result)]
end
get '/managec/:cluster/get_fence_agent_metadata' do
auth_user = PCSAuth.sessionToAuthUser(session)
cluster = params[:cluster]
fence_agent = params[:agent]
code, out = send_cluster_request_with_token(
auth_user,
cluster,
'get_fence_agent_metadata',
false,
{:fence_agent => fence_agent}
)
if code != 404
return [code, out]
end
code, out = send_cluster_request_with_token(
auth_user,
cluster,
'fence_device_metadata',
false,
{
:resourcename => fence_agent.sub('stonith:', ''),
:new => true
}
)
if code != 200
return [400, 'Unable to get meta-data of specified fence agent.']
end
desc_regex = Regexp.new(
'<span class="reg[^>]*>(?<short>[^>]*) </span>[^<]*' +
'<span title="(?<long>[^"]*)"'
)
parameters_regex = Regexp.new(
'<input type="hidden" name="resource_type"[^>]*>(?<required>[\s\S]*)' +
'<div class="bold">Optional Arguments:</div>(?<optional>[\S\s]*)' +
'<div class="bold">Advanced Arguments:</div>(?<advanced>[\S\s]*)' +
'<tr class="stop">'
)
required_parameter_regex = Regexp.new(
'<tr title="(?<longdesc>[^"]*)[^>]*>[\s]*' +
'<td class="reg">\s* (?<name>[^<\s]*)\s*</td>\s*<td>\s*' +
'<input placeholder="(?<shortdesc>[^"]*)"'
)
other_parameter_regex = Regexp.new(
'<td class="reg">\s* (?<name>[^<\s]*)\s*</td>\s*<td>\s*' +
'<input placeholder="(?<shortdesc>[^"]*)"'
)
result = {
:name => fence_agent,
:shortdesc => '',
:longdesc => '',
:parameters => []
}
# pcsd in version 0.9.137 (and older) does not provide description for
# fence agents
desc = desc_regex.match(out)
if desc
result[:shortdesc] = html2plain(desc[:short])
result[:longdesc] = html2plain(desc[:long])
end
parameters = parameters_regex.match(out)
parameters[:required].scan(required_parameter_regex) { |match|
result[:parameters] << {
:name => html2plain(match[1]),
:longdesc => html2plain(match[0]),
:shortdesc => html2plain(match[2]),
:type => 'string',
:required => true,
:advanced => false
}
}
parameters[:optional].scan(other_parameter_regex) { |match|
result[:parameters] << {
:name => html2plain(match[0]),
:longdesc => '',
:shortdesc => html2plain(match[1]),
:type => 'string',
:required => false,
:advanced => false
}
}
parameters[:advanced].scan(other_parameter_regex) { |match|
result[:parameters] << {
:name => html2plain(match[0]),
:longdesc => '',
:shortdesc => html2plain(match[1]),
:type => 'string',
:required => false,
:advanced => true
}
}
return [200, JSON.generate(result)]
end
post '/managec/:cluster/fix_auth_of_cluster' do
clustername = params[:cluster]
unless clustername
return [400, "cluster name not defined"]
end
nodes = get_cluster_nodes(clustername)
token_file_data = read_token_file()
tokens_data = add_prefix_to_keys(
token_file_data.tokens.select {|k,v| nodes.include?(k)}, "node:"
)
ports_data = add_prefix_to_keys(
token_file_data.ports.select {|k,v| nodes.include?(k)}, "port:"
)
retval, out = send_cluster_request_with_token(
PCSAuth.getSuperuserAuth(), clustername, "/save_tokens", true,
tokens_data.merge(ports_data), true
)
if retval == 404
return [400, "Old version of PCS/PCSD is running on cluster nodes. Fixing authentication is not supported. Use 'pcs cluster auth' command to authenticate the nodes."]
elsif retval != 200
return [400, "Authentication failed."]
end
return [200, "Auhentication of nodes in cluster should be fixed."]
end
post '/managec/:cluster/add_node_to_cluster' do
auth_user = PCSAuth.sessionToAuthUser(session)
clustername = params[:cluster]
new_node = params["new_nodename"]
if clustername == $cluster_name
if not allowed_for_local_cluster(auth_user, Permissions::FULL)
return 403, 'Permission denied'
end
end
token_file_data = read_token_file()
tokens = token_file_data.tokens
if not tokens.include? new_node
return [400, "New node is not authenticated."]
end
# Save the new node token on all nodes in a cluster the new node is beeing
# added to. Send the token to one node and let the cluster nodes synchronize
# it by themselves.
token_data = {
"node:#{new_node}" => tokens[new_node],
"port:#{new_node}" => token_file_data.ports[new_node],
}
retval, out = send_cluster_request_with_token(
# new node doesn't have config with permissions yet
PCSAuth.getSuperuserAuth(), clustername, '/save_tokens', true, token_data
)
# If the cluster runs an old pcsd which doesn't support /save_tokens,
# ignore 404 in order to not prevent the node to be added.
if retval != 404 and retval != 200
return [400, 'Failed to save the token of the new node in target cluster.']
end
retval, out = send_cluster_request_with_token(
auth_user, clustername, "/add_node_all", true, params
)
if 403 == retval
return [retval, out]
end
if retval != 200
return [400, "Failed to add new node '#{new_node}' into cluster '#{clustername}': #{out}"]
end
return [200, "Node added successfully."]
end
def pcs_0_9_142_resource_change_group(auth_user, params)
parameters = {
:resource_id => params[:resource_id],
:resource_group => '',
:_orig_resource_group => '',
}
parameters[:resource_group] = params[:group_id] if params[:group_id]
if params[:old_group_id]
parameters[:_orig_resource_group] = params[:old_group_id]
end
return send_cluster_request_with_token(
auth_user, params[:cluster], 'update_resource', true, parameters
)
end
def pcs_0_9_142_resource_clone(auth_user, params)
parameters = {
:resource_id => params[:resource_id],
:resource_clone => true,
:_orig_resource_clone => 'false',
}
return send_cluster_request_with_token(
auth_user, params[:cluster], 'update_resource', true, parameters
)
end
def pcs_0_9_142_resource_unclone(auth_user, params)
parameters = {
:resource_id => params[:resource_id],
:resource_clone => nil,
:_orig_resource_clone => 'true',
}
return send_cluster_request_with_token(
auth_user, params[:cluster], 'update_resource', true, parameters
)
end
def pcs_0_9_142_resource_master(auth_user, params)
parameters = {
:resource_id => params[:resource_id],
:resource_ms => true,
:_orig_resource_ms => 'false',
}
return send_cluster_request_with_token(
auth_user, params[:cluster], 'update_resource', true, parameters
)
end
# There is a bug in pcs-0.9.138 and older in processing the standby and
# unstandby request. JS of that pcsd always sent nodename in "node"
# parameter, which caused pcsd daemon to run the standby command locally with
# param["node"] as node name. This worked fine if the local cluster was
# managed from JS, as pacemaker simply put the requested node into standby.
# However it didn't work for managing non-local clusters, as the command was
# run on the local cluster everytime. Pcsd daemon would send the request to a
# remote cluster if the param["name"] variable was set, and that never
# happened. That however wouldn't work either, as then the required parameter
# "node" wasn't sent in the request causing an exception on the receiving
# node. This is fixed in commit 053f63ca109d9ef9e7f0416e90aab8e140480f5b
#
# In order to be able to put nodes running pcs-0.9.138 into standby, the
# nodename must be sent in "node" param, and the "name" must not be sent.
def pcs_0_9_138_node_standby(auth_user, params)
translated_params = {
'node' => params[:name],
}
return send_cluster_request_with_token(
auth_user, params[:cluster], 'node_standby', true, translated_params
)
end
def pcs_0_9_138_node_unstandby(auth_user, params)
translated_params = {
'node' => params[:name],
}
return send_cluster_request_with_token(
auth_user, params[:cluster], 'node_unstandby', true, translated_params
)
end
post '/managec/:cluster/?*' do
auth_user = PCSAuth.sessionToAuthUser(session)
raw_data = request.env["rack.input"].read
if params[:cluster]
request = "/" + params[:splat].join("/")
# backward compatibility layer BEGIN
translate_for_version = {
'/node_standby' => [
[[0, 9, 138], method(:pcs_0_9_138_node_standby)],
],
'/node_unstandby' => [
[[0, 9, 138], method(:pcs_0_9_138_node_unstandby)],
],
}
if translate_for_version.key?(request)
target_pcsd_version = [0, 0, 0]
version_code, version_out = send_cluster_request_with_token(
auth_user, params[:cluster], 'get_sw_versions'
)
if version_code == 200
begin
versions = JSON.parse(version_out)
target_pcsd_version = versions['pcs'] if versions['pcs']
rescue JSON::ParserError
end
end
translate_function = nil
translate_for_version[request].each { |pair|
if (target_pcsd_version <=> pair[0]) != 1 # target <= pair
translate_function = pair[1]
break
end
}
end
# backward compatibility layer END
if translate_function
code, out = translate_function.call(auth_user, params)
else
code, out = send_cluster_request_with_token(
auth_user, params[:cluster], request, true, params, true, raw_data
)
end
# backward compatibility layer BEGIN
if code == 404
case request
# supported since pcs-0.9.143 (tree view of resources)
when '/resource_change_group'
code, out = pcs_0_9_142_resource_change_group(auth_user, params)
# supported since pcs-0.9.143 (tree view of resources)
when '/resource_clone'
code, out = pcs_0_9_142_resource_clone(auth_user, params)
# supported since pcs-0.9.143 (tree view of resources)
when '/resource_unclone'
code, out = pcs_0_9_142_resource_unclone(auth_user, params)
# supported since pcs-0.9.143 (tree view of resources)
when '/resource_master'
code, out = pcs_0_9_142_resource_master(auth_user, params)
else
redirection = {
# constraints removal for pcs-0.9.137 and older
"/remove_constraint_remote" => "/resource_cmd/rm_constraint",
# constraints removal for pcs-0.9.137 and older
"/remove_constraint_rule_remote" => "/resource_cmd/rm_constraint_rule"
}
if redirection.key?(request)
code, out = send_cluster_request_with_token(
auth_user,
params[:cluster],
redirection[request],
true,
params,
false,
raw_data
)
end
end
end
# backward compatibility layer END
return code, out
end
end
get '/managec/:cluster/?*' do
auth_user = PCSAuth.sessionToAuthUser(session)
raw_data = request.env["rack.input"].read
if params[:cluster]
send_cluster_request_with_token(
auth_user,
params[:cluster],
"/" + params[:splat].join("/"),
false,
params,
true,
raw_data
)
end
end
get '/' do
$logger.info "Redirecting '/'...\n"
redirect '/manage'
end
get '/wizards/?:wizard?' do
return wizard(params, request, params[:wizard])
end
post '/wizards/?:wizard?' do
return wizard(params, request, params[:wizard])
end
get '*' do
$logger.debug "Bad URL"
$logger.debug params[:splat]
$logger.info "Redirecting '*'...\n"
redirect '/manage'
redirect "Bad URL"
call(env.merge("PATH_INFO" => '/nodes'))
end
else
get '*' do
$logger.debug "ERROR: GUI Disabled, Bad URL"
$logger.debug params[:splat]
$logger.info "Redirecting '*'...\n"
return "PCSD GUI is disabled"
end
end
class Node
attr_accessor :active, :id, :name, :hostname
def initialize(id=nil, name=nil, hostname=nil, active=nil)
@id, @name, @hostname, @active = id, name, hostname, active
end
end
def html2plain(text)
return CGI.unescapeHTML(text).gsub(/<br[^>]*>/, "\n")
end
helpers do
def h(text)
Rack::Utils.escape_html(text)
end
def nl2br(text)
text.gsub(/\n/, "<br>")
end
end
|