X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/03e570095885982d23e234bce8e1c068314b63af..d7e559136a7ed5ee3f178b26aa2b5924cea1bca7:/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb diff --git a/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb b/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb index dc95b2f01d..2eb79c090d 100644 --- a/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb +++ b/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb @@ -21,12 +21,20 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController end def create + # Note: the user could specify a owner_uuid for a different user, which on + # the surface appears to be a security hole. However, the record will be + # rejected before being saved to the database by the ApiClientAuthorization + # model which enforces that user_id == current user or the user is an + # admin. + if resource_attrs[:owner_uuid] # The model has an owner_id attribute instead of owner_uuid, but # we can't expect the client to know the local numeric ID. We # translate UUID to numeric ID here. resource_attrs[:user_id] = User.where(uuid: resource_attrs.delete(:owner_uuid)).first.andand.id + elsif not resource_attrs[:user_id] + resource_attrs[:user_id] = current_user.id end resource_attrs[:api_client_id] = Thread.current[:api_client].id super @@ -48,7 +56,7 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController ((attr == 'scopes') and (operator == '=')) ? operand : nil }) @filters.select! { |attr, operator, operand| - (attr == 'uuid') and (operator == '=') + ((attr == 'uuid') and (operator == '=')) || ((attr == 'api_token') and (operator == '=')) } end if @where @@ -66,15 +74,25 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController end def find_object_by_uuid - # Again, to make things easier for the client and our own routing, - # here we look for the api_token key in a "uuid" (POST) or "id" - # (GET) parameter. - @object = model_class.where('api_token=?', params[:uuid] || params[:id]).first + @object = model_class.where(uuid: (params[:uuid] || params[:id])).first end def current_api_client_is_trusted unless Thread.current[:api_client].andand.is_trusted - render :json => { errors: ['Forbidden: this API client cannot manipulate other clients\' access tokens.'] }.to_json, status: 403 + if params["action"] == "show" + if @object and @object['api_token'] == current_api_client_authorization.andand.api_token + return true + end + elsif params["action"] == "index" and @objects.andand.size == 1 + filters = @filters.map{|f|f.first}.uniq + if ['uuid'] == filters + return true if @objects.first['api_token'] == current_api_client_authorization.andand.api_token + elsif ['api_token'] == filters + return true if @objects.first[:user_id] = current_user.id + end + end + send_error('Forbidden: this API client cannot manipulate other clients\' access tokens.', + status: 403) end end end