/usr/share/pcsd/pcsd-cli.rb is in pcs 0.9.164-1.
This file is owned by root:root, with mode 0o755.
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 | #!/usr/bin/ruby
require 'rubygems'
require 'etc'
require 'json'
require 'stringio'
require 'bootstrap.rb'
require 'pcs.rb'
require 'auth.rb'
require 'remote.rb'
def cli_format_response(status, text=nil, data=nil)
response = Hash.new
response['status'] = status
response['text'] = text if text
response['data'] = data if data
response['log'] = $logger_device.string.lines.to_a
return JSON.pretty_generate(response)
end
def cli_exit(status, text=nil, data=nil, exitcode=0)
puts cli_format_response(status, text, data)
exit exitcode
end
# bootstrap, emulate environment created by pcsd http server
auth_user = {}
PCS = get_pcs_path()
$logger_device = StringIO.new
$logger = configure_logger($logger_device)
capabilities, capabilities_pcsd = get_capabilities($logger)
CAPABILITIES = capabilities.freeze
CAPABILITIES_PCSD = capabilities_pcsd.freeze
# check and set user
uid = Process.uid
if 0 == uid
if ENV['CIB_user'] and ENV['CIB_user'].strip != ''
auth_user[:username] = ENV['CIB_user']
if ENV['CIB_user_groups'] and ENV['CIB_user_groups'].strip != ''
auth_user[:usergroups] = ENV['CIB_user_groups'].split(nil)
else
auth_user[:usergroups] = []
end
else
auth_user[:username] = SUPERUSER
auth_user[:usergroups] = []
end
else
username = Etc.getpwuid(uid).name
if not PCSAuth.isUserAllowedToLogin(username)
cli_exit('access_denied')
else
auth_user[:username] = username
success, groups = PCSAuth.getUsersGroups(username)
auth_user[:usergroups] = success ? groups : []
end
end
# continue environment setup with user set in auth_user
$cluster_name = get_cluster_name()
# get params and run a command
command = ARGV[0]
allowed_commands = {
'read_tokens' => {
# returns tokens of the user who runs pcsd-cli, thus no permission check
'only_superuser' => false,
'permissions' => nil,
'call' => lambda { |params, auth_user_|
token_cfg = read_token_file()
return {
:tokens => token_cfg.tokens,
:ports => token_cfg.ports,
}
},
},
'auth' => {
'only_superuser' => false,
'permissions' => nil,
'call' => lambda { |params, auth_user_|
auth_responses, sync_successful, sync_nodes_err, sync_responses = pcs_auth(
auth_user_, params['nodes'] || [], params['username'] || '',
params['password'] || '', params['force'], params['local']
)
return {
'auth_responses' => auth_responses,
'sync_successful' => sync_successful,
'sync_nodes_err' => sync_nodes_err,
'sync_responses' => sync_responses,
}
},
},
'send_local_configs' => {
'only_superuser' => false,
'permissions' => Permissions::FULL,
'call' => lambda { |params, auth_user_|
send_local_configs_to_nodes(
# for a case when sending to a node which is being added to a cluster
# - the node doesn't have the config so it cannot check permissions
PCSAuth.getSuperuserAuth(),
params['nodes'] || [],
params['force'] || false,
params['clear_local_cluster_permissions'] || false
)
}
},
'send_local_certs' => {
'only_superuser' => false,
'permissions' => Permissions::FULL,
'call' => lambda { |params, auth_user_|
send_local_certs_to_nodes(auth_user_, params['nodes'] || [])
}
},
'pcsd_restart_nodes' => {
'only_superuser' => false,
'permissions' => nil,
'call' => lambda { |params, auth_user_|
pcsd_restart_nodes(auth_user_, params['nodes'] || [])
}
},
'node_status' => {
'only_superuser' => true,
'permissions' => Permissions::FULL,
'call' => lambda { |params, auth_user_|
return JSON.parse(node_status(
{
:version => '2',
:operations => '1',
:skip_auth_check => '1',
},
{},
auth_user_
))
}
},
}
if allowed_commands.key?(command)
begin
params = JSON.parse(STDIN.read)
rescue JSON::ParserError => e
cli_exit('bad_json_input', e.to_s)
end
if allowed_commands['only_superuser']
if not allowed_for_superuser(auth_user)
cli_exit('permission_denied')
end
end
if allowed_commands['permissions']
if not allowed_for_local_cluster(auth_user, command_settings['permissions'])
cli_exit('permission_denied')
end
end
result = allowed_commands[command]['call'].call(params, auth_user)
cli_exit('ok', nil, result)
else
cli_exit('bad_command')
end
|