Skip to content
Snippets Groups Projects
Unverified Commit 128039b1 authored by Noah Moss's avatar Noah Moss Committed by GitHub
Browse files

Disallow connection impersonation roles which are not single strings (#47474)

parent 096b4968
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@
(defn connection-impersonation-role
"Fetches the database role that should be used for the current user, if connection impersonation is in effect.
Returns `nil` if connection impersonation should not be used for the current user. Throws an exception if multiple
conflicting connection impersonation policies are found."
conflicting connection impersonation policies are found, or the role is not a single string."
[database-or-id]
(when (and database-or-id (not api/*is-superuser?*))
(let [group-ids (t2/select-fn-set :group_id PermissionsGroupMembership :user_id api/*current-user-id*)
......@@ -70,10 +70,18 @@
role-attribute (:attribute conn-impersonation)
user-attributes (:login_attributes @api/*current-user*)
role (get user-attributes role-attribute)]
(if (str/blank? role)
(cond
(nil? role)
(throw (ex-info (tru "User does not have attribute required for connection impersonation.")
{:user-id api/*current-user-id*
:conn-impersonations conn-impersonations}))
(or (not (string? role))
(str/blank? role))
(throw (ex-info (tru "Connection impersonation attribute is invalid: role must be a single non-empty string.")
{:user-id api/*current-user-id*
:conn-impersonations conn-impersonations}))
:else
role)))))))
(defenterprise hash-key-for-impersonation
......
......@@ -63,6 +63,14 @@
(is (thrown-with-msg?
clojure.lang.ExceptionInfo
#"User does not have attribute required for connection impersonation."
(@#'impersonation/connection-impersonation-role (mt/db))))))
(testing "Throws an exception if impersonation should be enforced, but the user's attribute is not a single string"
(advanced-perms.api.tu/with-impersonations! {:impersonations [{:db-id (mt/id) :attribute "impersonation_attr"}]
:attributes {"impersonation_attr" ["one" "two" "three"]}}
(is (thrown-with-msg?
clojure.lang.ExceptionInfo
#"Connection impersonation attribute is invalid: role must be a single non-empty string."
(@#'impersonation/connection-impersonation-role (mt/db)))))))
(deftest conn-impersonation-test-postgres
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment