mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 00:02:23 +00:00
c2deea13b7
* fix(security): a WM_TOKEN job token can never be a global superadmin (GHSA-hfh4-cx4h-3fcr)
Privilege escalation: an app/flow/schedule/trigger execution policy's `on_behalf_of`
(which a `wm_deployers` member can set) could point at a superadmin email. The
resulting job `WM_TOKEN` then passed the email-based superadmin checks, granting
instance superadmin. `forbid_superadmin_job_token` only guarded ~15 of ~75 routes.
Fix at the token layer: a WM_TOKEN must never satisfy a superadmin gate,
regardless of whose email it runs as (sentinel OR a real superadmin).
- `ApiAuthed` gains a `job_id` field, stamped once in `AuthCache::get_opt_job_authed`
from the resolved token's job_id (correct even on cache hits).
- `require_super_admin(db, email)` -> `require_super_admin(db, &ApiAuthed)`, rejects
`authed.job_id.is_some()`. `require_super_admin_email` kept for the few internal
callers without an ApiAuthed.
- `is_super_admin_authed(db, &ApiAuthed)` for the boolean `is_super_admin_email`
authorization branches on request handlers (workspace deletion, fork drops,
dev-workspace attach/archive, object-storage SSRF exemption, custom dbname, EE GHES
+ connected repositories, ...). Migrate ~75 sites (OSS + EE).
- CUSTOM_INSTANCE_DB reads the *authenticated* job_id, not the caller-supplied
`?job_id` query param. Worker-tag check takes a precomputed job-aware `is_super_admin`
on the request path.
Execution-time on-behalf checks (scheduled/flow worker-tag, Cloud enqueue quota,
is_devops_email) are hardened in a follow-up — see
docs/followup-onbehalf-execution-privilege-hardening.md.
Regression tests: a superadmin-email WM_TOKEN is rejected on `require_super_admin`
routes, on `DELETE /workspaces/delete/{w}` (403, workspace preserved), and on the
CUSTOM_INSTANCE_DB lookup with no `?job_id` (401); real superadmin tokens still succeed.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* fix: cap devops role at workspace admin and reject reserved on_behalf_of identities
Extends the job-token cap with three pieces:
- `require_devops_role` takes `&ApiAuthed` and rejects job tokens.
`is_devops_email` is true for superadmin emails, so every worker-management,
instance-config and service-log route was reachable by the same superadmin
`WM_TOKEN` that `require_super_admin` already rejects.
- A `job_id` claim that does not parse as a uuid rejects the token rather than
resolving to `None`, which would clear the job provenance and uncap it. Applies
to the internal JWT and the external `jwt_ext_` path.
- Defense in depth at store time: `validate_on_behalf_of` refuses the reserved
internal sentinels as an `on_behalf_of` on apps/flows/scripts/schedules/triggers,
and app execution refuses a policy carrying one — covering already-persisted and
forked-app rows that predate the cap. Deploying on behalf of a real user,
including a real superadmin, stays allowed; the cap handles that at execution.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* fix(mcp): preserve job-token provenance when minting the proxy JWT
The MCP endpoint-tool proxy re-mints a JWT from the caller's ApiAuthed to
forward the proxied request, but passed job_id: None. A job's WM_TOKEN is
capped at workspace admin (GHSA-hfh4-cx4h-3fcr); dropping the job_id here
re-minted an uncapped token that satisfies require_super_admin /
require_devops_role on the proxied route (e.g. listWorkers exposing worker
IPs, job/workspace IDs, and sensitive tags).
Carry api_authed.job_id into create_jwt_token. Adds an in-module regression
that decodes the forwarded JWT and asserts the job_id is preserved for a job
caller and absent for a non-job caller.
Reported by Codex CI review (P1) on #10124.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* fix: cap the admin-or-devops gate at workspace admin for job tokens
require_admin_or_devops (the EE critical-alerts endpoints) grants when the
caller is a workspace admin OR an instance devops. is_devops_email is true
for superadmins, so a WM_TOKEN running on-behalf of a superadmin who is not a
member of the target workspace could clear the devops branch and read/ack that
workspace's critical alerts (GHSA-hfh4-cx4h-3fcr). This gate takes a bare
email, not an ApiAuthed, so the token-layer cap could not see it.
Thread the caller's job-token provenance and reject the devops branch for job
tokens, matching require_devops_role. The workspace-admin branch stays allowed
— that is the cap ceiling. Adds an enterprise-gated regression proving the
bypass is closed and a real superadmin token still clears the gate.
Found while auditing the PR for bare-email gates the choke-point cap misses.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* fix: cap instance-global is_admin gates at workspace admin for job tokens
Three instance-global routes gate on the caller's own `is_admin` claim, which
`ApiAuthed.is_admin` carries into a WM_TOKEN (it is a workspace-admin claim,
true for superadmins too). A job token is capped at workspace admin
(GHSA-hfh4-cx4h-3fcr), so its is_admin claim must not authorize instance
actions on a route with no workspace binding:
- `unarchive_workspace` — unarchive an arbitrary workspace by id
- `prune_concurrency_group` — delete a global concurrency group
- `list_worker_groups` — return unobfuscated `env_vars_static` (may hold secrets)
Add job-token-aware `is_instance_admin` / `require_instance_admin` helpers (the
same shape as `require_super_admin` / `require_devops_role`) and use them at
these three sites. Workspace-scoped `require_admin(authed.is_admin, ...)` gates
are intentionally left unchanged — a workspace-admin job token is within the
cap there. Regression added covering all three; verified it lets a WM_TOKEN
unarchive/leak without the fix and is blocked with it.
Reported by Codex CI review (P1) on #10124.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* fix(mcp): drop orphaned path_field_renames from EndpointTool test helper
The merge with main adopted main's mcp path-substitution refactor (#10162),
which removed the `path_field_renames` field from `EndpointTool` and its
consumer (`substitute_path_params` no longer takes per-field path renames).
main's `runner.rs` `ep` test helper still constructed the struct with
`path_field_renames: None`, so the workspace test build (cargo test --all,
which compiles windmill-mcp's own #[cfg(test)] module under the `server`
feature) failed with E0560. A plain `cargo check` does not compile that test
module, so it only surfaced in CI's cargo_test.
Remove the orphaned field to match the struct.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* test: describe the sentinel-rejection policy the forged-identity test asserts
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix: complete ApiAuthed initializers in feature-gated tests after merge
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix: stop job tokens minting credentials that shed their provenance
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix: cap the MCP OAuth approval mint at the same elevated-job-token gate
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix: cap the self-service password reset at the elevated-job-token gate
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix: cap app embed/SDK mints and scope widening at the elevated-job-token gate
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix: keep job tokens from destroying the account they run on behalf of
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix: deny job tokens a foreign-workspace admin claim and workspace ejection
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* docs: keep the follow-up inventory in the PR instead of the repo
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix: make the session workspace status gate job-token aware
session_workspace_status derived its superadmin branch from a bare email
check, so a job token carrying a superadmin identity resolved the existence
of workspaces it has no relationship with rather than seeing them as
deleted. Switch to is_super_admin_authed, matching every other instance
gate reached from a request ApiAuthed.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* revert: leave the global concurrency-group listing on the plain admin gate
The listing exposes concurrency keys across workspaces, which is metadata
rather than a capability, and it 401s rather than degrading. Keep the guard
on the prune route next to it, which is the destructive one.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* fix: keep the instance-admin gate on the global concurrency listing
The listing spans every workspace's concurrency keys, and the gate rejects
only job tokens: the !is_admin branch is the pre-existing check, so
workspaced tokens and interactive admins are unaffected.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* chore: update ee-repo-ref to d30af67d38954f9012f7bad08da23e347344b4c6
This commit updates the EE repository reference after PR #664 was merged in windmill-ee-private.
Previous ee-repo-ref: 7870573dbc3360f99bada143f094c67dce0d9e9c
New ee-repo-ref: d30af67d38954f9012f7bad08da23e347344b4c6
Automated by sync-ee-ref workflow.
---------
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: hugocasa <hugo@casademont.ch>
Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com>
1516 lines
46 KiB
Rust
1516 lines
46 KiB
Rust
/*
|
|
* Author: Ruben Fiszel
|
|
* Copyright: Windmill Labs, Inc 2022
|
|
* This file and its contents are licensed under the AGPLv3 License.
|
|
* Please see the included NOTICE for copyright information and
|
|
* LICENSE-AGPL for a copy of the license.
|
|
*/
|
|
|
|
use windmill_api_auth::{require_super_admin, ApiAuthed};
|
|
use windmill_common::DB;
|
|
|
|
use axum::{
|
|
extract::{Extension, Path, Query},
|
|
routing::{delete, get, post},
|
|
Json, Router,
|
|
};
|
|
use windmill_audit::audit_oss::audit_log;
|
|
use windmill_audit::ActionKind;
|
|
use windmill_common::worker::CLOUD_HOSTED;
|
|
use windmill_common::{
|
|
auth::get_groups_for_user,
|
|
error::{Error, JsonResult, Result},
|
|
utils::{not_found_if_none, paginate, Pagination},
|
|
};
|
|
use windmill_common::{db::UserDB, users::username_to_permissioned_as};
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
use sqlx::{query_scalar, FromRow, Postgres, Transaction};
|
|
use windmill_git_sync::handle_deployment_metadata;
|
|
|
|
pub fn workspaced_service() -> Router {
|
|
Router::new()
|
|
.route("/list", get(list_groups))
|
|
.route("/listnames", get(list_group_names))
|
|
.route("/create", post(create_group))
|
|
.route("/get/{name}", get(get_group))
|
|
.route("/update/{name}", post(update_group))
|
|
.route("/delete/{name}", delete(delete_group))
|
|
.route("/adduser/{name}", post(add_user))
|
|
.route("/removeuser/{name}", post(remove_user))
|
|
.route("/is_owner/{name}", get(is_owner))
|
|
}
|
|
|
|
pub fn global_service() -> Router {
|
|
Router::new()
|
|
.route("/list", get(list_igroups))
|
|
.route("/list_with_workspaces", get(list_igroups_with_workspaces))
|
|
.route("/get/{name}", get(get_igroup))
|
|
.route("/create", post(create_igroup))
|
|
.route("/update/{name}", post(update_igroup))
|
|
.route("/delete/{name}", delete(delete_igroup))
|
|
.route("/adduser/{name}", post(add_user_igroup))
|
|
.route("/removeuser/{name}", post(remove_user_igroup))
|
|
.route("/export", get(export_igroups))
|
|
.route("/overwrite", post(overwrite_igroups))
|
|
}
|
|
|
|
/// Normalize group names: replace spaces with underscores and convert to lowercase
|
|
/// Used when manually creating groups and SCIM-managed groups
|
|
pub fn convert_name(name: &str) -> String {
|
|
name.replace(" ", "_").to_lowercase()
|
|
}
|
|
|
|
#[derive(FromRow, Serialize, Deserialize)]
|
|
pub struct Group {
|
|
pub workspace_id: String,
|
|
pub name: String,
|
|
pub summary: Option<String>,
|
|
pub extra_perms: serde_json::Value,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct NewGroup {
|
|
pub name: String,
|
|
pub summary: Option<String>,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
pub struct GroupInfo {
|
|
pub workspace_id: String,
|
|
pub name: String,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
pub summary: Option<String>,
|
|
pub members: Vec<String>,
|
|
pub extra_perms: serde_json::Value,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct EditGroup {
|
|
pub summary: Option<String>,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct Username {
|
|
pub username: String,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct Email {
|
|
pub email: String,
|
|
}
|
|
|
|
async fn list_groups(
|
|
Extension(db): Extension<DB>,
|
|
Path(w_id): Path<String>,
|
|
Query(pagination): Query<Pagination>,
|
|
) -> JsonResult<Vec<Group>> {
|
|
let (per_page, offset) = paginate(pagination);
|
|
|
|
let rows = sqlx::query_as!(
|
|
Group,
|
|
"SELECT workspace_id, name, summary, extra_perms FROM group_ WHERE workspace_id = $1 ORDER BY name asc LIMIT $2 OFFSET $3",
|
|
w_id,
|
|
per_page as i64,
|
|
offset as i64
|
|
)
|
|
.fetch_all(&db)
|
|
.await?;
|
|
|
|
Ok(Json(rows))
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
struct QueryListGroup {
|
|
pub only_member_of: Option<bool>,
|
|
}
|
|
async fn list_group_names(
|
|
ApiAuthed { username, email, .. }: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Query(QueryListGroup { only_member_of }): Query<QueryListGroup>,
|
|
Path(w_id): Path<String>,
|
|
) -> JsonResult<Vec<String>> {
|
|
let rows = if !only_member_of.unwrap_or(false) {
|
|
sqlx::query_scalar!(
|
|
"SELECT name FROM group_ WHERE workspace_id = $1 UNION SELECT name FROM instance_group ORDER BY name asc",
|
|
w_id
|
|
)
|
|
.fetch_all(&db)
|
|
.await?
|
|
.into_iter()
|
|
.filter_map(|x| x)
|
|
.collect()
|
|
} else {
|
|
get_groups_for_user(&w_id, &username, &email, &db).await?
|
|
};
|
|
|
|
Ok(Json(rows))
|
|
}
|
|
|
|
async fn check_name_conflict<'c>(
|
|
tx: &mut Transaction<'c, Postgres>,
|
|
w_id: &str,
|
|
name: &str,
|
|
) -> Result<()> {
|
|
let exists = sqlx::query_scalar!(
|
|
"SELECT EXISTS(SELECT 1 FROM group_ WHERE name = $1 AND workspace_id = $2)",
|
|
name,
|
|
w_id
|
|
)
|
|
.fetch_one(&mut **tx)
|
|
.await?
|
|
.unwrap_or(false);
|
|
if exists {
|
|
return Err(windmill_common::error::Error::BadRequest(format!(
|
|
"Group {} already exists",
|
|
name
|
|
)));
|
|
}
|
|
return Ok(());
|
|
}
|
|
|
|
pub async fn is_owner(
|
|
ApiAuthed { username, is_admin, groups, .. }: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Path((w_id, name)): Path<(String, String)>,
|
|
) -> JsonResult<bool> {
|
|
if is_admin {
|
|
Ok(Json(true))
|
|
} else {
|
|
Ok(Json(
|
|
require_is_owner(&name, &username, &groups, &w_id, &db)
|
|
.await
|
|
.is_ok(),
|
|
))
|
|
}
|
|
}
|
|
|
|
pub async fn require_is_owner(
|
|
group_name: &str,
|
|
username: &str,
|
|
groups: &Vec<String>,
|
|
w_id: &str,
|
|
db: &DB,
|
|
) -> Result<()> {
|
|
let is_owner = query_scalar!(
|
|
"SELECT EXISTS(SELECT 1 FROM group_ WHERE (group_.extra_perms ->> CONCAT('u/', $1::text))::boolean AND name = $2 AND workspace_id = $4) OR exists(
|
|
SELECT 1 FROM group_ g, jsonb_each_text(g.extra_perms) f
|
|
WHERE $2 = g.name AND $4 = g.workspace_id AND SPLIT_PART(key, '/', 1) = 'g' AND key = ANY($3::text[])
|
|
AND value::boolean)",
|
|
username,
|
|
group_name,
|
|
groups,
|
|
w_id,
|
|
).fetch_one(db)
|
|
.await?
|
|
.unwrap_or(false);
|
|
if !is_owner {
|
|
Err(Error::BadRequest(format!(
|
|
"{} is not an owner of {} and hence is not authorized to perform this operation",
|
|
username, group_name
|
|
)))
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
async fn _check_nb_of_groups(db: &DB) -> Result<()> {
|
|
let nb_groups = sqlx::query_scalar!("SELECT COUNT(*) FROM group_ WHERE name != 'all' AND name != 'error_handler' AND name != 'slack' AND name != 'wm_deployers'",)
|
|
.fetch_one(db)
|
|
.await?;
|
|
if nb_groups.unwrap_or(0) >= 3 {
|
|
return Err(Error::BadRequest(
|
|
"You have reached the maximum number of groups (3 outside of native groups 'all', 'slack', 'error_handler' and 'wm_deployers') without an enterprise license"
|
|
.to_string(),
|
|
));
|
|
}
|
|
return Ok(());
|
|
}
|
|
|
|
async fn create_group(
|
|
authed: ApiAuthed,
|
|
Extension(_db): Extension<DB>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Path(w_id): Path<String>,
|
|
Json(ng): Json<NewGroup>,
|
|
) -> Result<String> {
|
|
crate::check_demo_workspace_restriction(&authed, &w_id, "Group creation")?;
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
|
|
check_name_conflict(&mut tx, &w_id, &ng.name).await?;
|
|
|
|
#[cfg(not(feature = "enterprise"))]
|
|
_check_nb_of_groups(&_db).await?;
|
|
|
|
sqlx::query!(
|
|
"INSERT INTO group_ (workspace_id, name, summary, extra_perms) VALUES ($1, $2, $3, $4)",
|
|
w_id,
|
|
ng.name,
|
|
ng.summary,
|
|
serde_json::json!({username_to_permissioned_as(&authed.username): true})
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
sqlx::query!(
|
|
"INSERT INTO usr_to_group (workspace_id, usr, group_) VALUES ($1, $2, $3) ON CONFLICT DO NOTHING",
|
|
&w_id,
|
|
&authed.username,
|
|
ng.name,
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"group.create",
|
|
ActionKind::Create,
|
|
&w_id,
|
|
Some(&ng.name.to_string()),
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
log_group_permission_change(&mut *tx, &w_id, &ng.name, &authed.username, "create", None)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
|
|
handle_deployment_metadata(
|
|
&authed.email,
|
|
&authed.username,
|
|
&_db,
|
|
&w_id,
|
|
windmill_git_sync::DeployedObject::Group { name: ng.name.clone() },
|
|
Some(format!("Created group '{}'", &ng.name)),
|
|
true,
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
Ok(format!("Created group {}", ng.name))
|
|
}
|
|
|
|
async fn create_igroup(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Json(ng): Json<NewGroup>,
|
|
) -> Result<String> {
|
|
use uuid::Uuid;
|
|
|
|
require_super_admin(&db, &authed).await?;
|
|
let mut tx = db.begin().await?;
|
|
|
|
let normalized_name = convert_name(&ng.name);
|
|
|
|
let id = Uuid::new_v4().to_string();
|
|
sqlx::query!(
|
|
"INSERT INTO instance_group (name, summary, id) VALUES ($1, $2, $3) ON CONFLICT DO NOTHING",
|
|
normalized_name,
|
|
ng.summary,
|
|
id,
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"igroup.create",
|
|
ActionKind::Create,
|
|
"global",
|
|
Some(&normalized_name),
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
Ok(format!("Created group {}", normalized_name))
|
|
}
|
|
|
|
fn validate_instance_role(role: &Option<String>) -> Result<Option<String>> {
|
|
match role.as_deref() {
|
|
None => Ok(None),
|
|
Some("") | Some("user") => Ok(None),
|
|
Some("devops") => Ok(Some("devops".to_string())),
|
|
Some("superadmin") => Ok(Some("superadmin".to_string())),
|
|
Some(other) => Err(Error::BadRequest(format!(
|
|
"Invalid instance_role '{}'. Must be 'devops', 'superadmin', 'user', or empty to clear",
|
|
other
|
|
))),
|
|
}
|
|
}
|
|
|
|
/// Compute the highest-precedence instance role from all groups a user belongs to.
|
|
/// superadmin > devops > none
|
|
pub async fn compute_effective_instance_role(
|
|
email: &str,
|
|
tx: &mut Transaction<'_, Postgres>,
|
|
) -> Result<Option<String>> {
|
|
let roles = sqlx::query_scalar!(
|
|
"SELECT ig.instance_role FROM email_to_igroup eig
|
|
JOIN instance_group ig ON ig.name = eig.igroup
|
|
WHERE eig.email = $1 AND ig.instance_role IS NOT NULL",
|
|
email
|
|
)
|
|
.fetch_all(&mut **tx)
|
|
.await?;
|
|
|
|
let mut highest: Option<String> = None;
|
|
for role in roles.into_iter().flatten() {
|
|
match role.as_str() {
|
|
"superadmin" => return Ok(Some("superadmin".to_string())),
|
|
"devops" => highest = Some("devops".to_string()),
|
|
_ => {}
|
|
}
|
|
}
|
|
Ok(highest)
|
|
}
|
|
|
|
/// Apply computed instance role to password table and invalidate session tokens.
|
|
/// Only applies if role_source = 'instance_group' or user has no elevated role.
|
|
pub async fn apply_instance_role(
|
|
email: &str,
|
|
role: Option<&str>,
|
|
tx: &mut Transaction<'_, Postgres>,
|
|
) -> Result<()> {
|
|
let current = sqlx::query!(
|
|
"SELECT super_admin, devops, role_source FROM password WHERE email = $1",
|
|
email
|
|
)
|
|
.fetch_optional(&mut **tx)
|
|
.await?;
|
|
|
|
let current = match current {
|
|
Some(c) => c,
|
|
None => return Ok(()), // user doesn't exist in password table
|
|
};
|
|
|
|
// Don't touch manually-set elevated roles — manual always wins
|
|
if current.role_source == "manual" && (current.super_admin || current.devops) {
|
|
return Ok(());
|
|
}
|
|
|
|
let (new_super_admin, new_devops) = match role {
|
|
Some("superadmin") => (true, false),
|
|
Some("devops") => (false, true),
|
|
_ => (false, false),
|
|
};
|
|
|
|
// Only update if something actually changed
|
|
if current.super_admin == new_super_admin && current.devops == new_devops {
|
|
return Ok(());
|
|
}
|
|
|
|
sqlx::query!(
|
|
"UPDATE password SET super_admin = $1, devops = $2, role_source = 'instance_group' WHERE email = $3",
|
|
new_super_admin,
|
|
new_devops,
|
|
email
|
|
)
|
|
.execute(&mut **tx)
|
|
.await?;
|
|
|
|
// Invalidate session tokens to force re-login with new privileges
|
|
sqlx::query!(
|
|
"DELETE FROM token WHERE email = $1 AND label = 'session'",
|
|
email
|
|
)
|
|
.execute(&mut **tx)
|
|
.await?;
|
|
|
|
// Update super_admin flag on non-session tokens
|
|
sqlx::query!(
|
|
"UPDATE token SET super_admin = $1 WHERE email = $2 AND label != 'session'",
|
|
new_super_admin,
|
|
email
|
|
)
|
|
.execute(&mut **tx)
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Recompute and apply roles for all members of a given instance group.
|
|
pub async fn propagate_instance_group_roles(
|
|
group_name: &str,
|
|
tx: &mut Transaction<'_, Postgres>,
|
|
) -> Result<()> {
|
|
let members = sqlx::query_scalar!(
|
|
"SELECT email FROM email_to_igroup WHERE igroup = $1",
|
|
group_name
|
|
)
|
|
.fetch_all(&mut **tx)
|
|
.await?;
|
|
|
|
for email in members {
|
|
let effective_role = compute_effective_instance_role(&email, tx).await?;
|
|
apply_instance_role(&email, effective_role.as_deref(), tx).await?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
struct IGroupUpdate {
|
|
new_summary: String,
|
|
instance_role: Option<String>,
|
|
}
|
|
|
|
async fn update_igroup(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Path(name): Path<String>,
|
|
Json(igroup_update): Json<IGroupUpdate>,
|
|
) -> Result<String> {
|
|
require_super_admin(&db, &authed).await?;
|
|
let mut tx: Transaction<'_, Postgres> = db.begin().await?;
|
|
|
|
let exists_opt = sqlx::query("SELECT 1 FROM instance_group WHERE name = $1")
|
|
.bind(name.clone())
|
|
.fetch_optional(&mut *tx)
|
|
.await?;
|
|
not_found_if_none(exists_opt, "instance_group", name.clone())?;
|
|
|
|
let validated_role = validate_instance_role(&igroup_update.instance_role)?;
|
|
|
|
// Fetch old role before updating so we can detect changes
|
|
let old_role = if igroup_update.instance_role.is_some() {
|
|
sqlx::query_scalar!(
|
|
"SELECT instance_role FROM instance_group WHERE name = $1",
|
|
&name
|
|
)
|
|
.fetch_one(&mut *tx)
|
|
.await?
|
|
} else {
|
|
None
|
|
};
|
|
|
|
sqlx::query("UPDATE instance_group SET summary = $1, instance_role = $2 WHERE name = $3")
|
|
.bind(igroup_update.new_summary)
|
|
.bind(&validated_role)
|
|
.bind(&name)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
// If instance_role actually changed, propagate to all group members
|
|
if igroup_update.instance_role.is_some() && old_role != validated_role {
|
|
propagate_instance_group_roles(&name, &mut tx).await?;
|
|
}
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"igroup.updated",
|
|
ActionKind::Update,
|
|
"global",
|
|
Some(&name.to_string()),
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
Ok(format!("Updated group {}", name))
|
|
}
|
|
|
|
/// Workspaces whose auto-assignment config references any of `groups`.
|
|
///
|
|
/// Reads `workspace_settings` across the whole instance without checking the caller's rights.
|
|
/// Callers must have established superadmin beforehand; the result leaks which workspaces are
|
|
/// configured with a given instance group.
|
|
///
|
|
/// This and every reconcile call site are gated on `private` alone, NOT `enterprise`: CE
|
|
/// builds ship `private` without `enterprise`, and gating on `enterprise` would scrub
|
|
/// references while stranding the affected workspace members on CE.
|
|
#[cfg(feature = "private")]
|
|
pub async fn workspaces_referencing_instance_groups(
|
|
groups: &[String],
|
|
tx: &mut Transaction<'_, Postgres>,
|
|
) -> Result<Vec<String>> {
|
|
if groups.is_empty() {
|
|
return Ok(vec![]);
|
|
}
|
|
|
|
let workspaces = sqlx::query_scalar!(
|
|
"SELECT workspace_id FROM workspace_settings WHERE auto_invite->'instance_groups' ?| $1",
|
|
groups
|
|
)
|
|
.fetch_all(&mut **tx)
|
|
.await?;
|
|
|
|
Ok(workspaces)
|
|
}
|
|
|
|
/// Compute and advisory-lock every workspace whose auto-assignment config references any of
|
|
/// `groups`. Mutation paths call this after locking their `instance_group` rows and before
|
|
/// any other row lock — the hierarchy is group rows → workspace advisory locks → all other
|
|
/// row locks (see `reconcile_workspace_instance_groups`). Same authorization contract as
|
|
/// `workspaces_referencing_instance_groups`.
|
|
#[cfg(feature = "private")]
|
|
pub async fn lock_workspaces_referencing_instance_groups(
|
|
groups: &[String],
|
|
tx: &mut Transaction<'_, Postgres>,
|
|
) -> Result<Vec<String>> {
|
|
use windmill_api_workspaces::workspaces_ee::lock_instance_group_workspaces;
|
|
|
|
let workspaces = workspaces_referencing_instance_groups(groups, tx).await?;
|
|
lock_instance_group_workspaces(&workspaces, tx).await?;
|
|
Ok(workspaces)
|
|
}
|
|
|
|
/// Drop `groups` from every workspace's instance-group auto-assignment config.
|
|
///
|
|
/// Workspaces reference instance groups by name in `workspace_settings.auto_invite`, and
|
|
/// nothing in the schema ties those references to `instance_group` rows. A deleted group whose
|
|
/// name is left behind here silently re-acquires its members if a group of the same name is
|
|
/// created later.
|
|
///
|
|
/// Mutates every workspace's settings, so callers must have established superadmin first.
|
|
/// Deliberately not audited per workspace: the mutation is instance-scoped and recorded by
|
|
/// the caller's global igroup audit event.
|
|
pub async fn remove_instance_groups_from_workspace_settings(
|
|
groups: &[String],
|
|
tx: &mut Transaction<'_, Postgres>,
|
|
) -> Result<()> {
|
|
if groups.is_empty() {
|
|
return Ok(());
|
|
}
|
|
|
|
// Row filter must stay `?|`: it yields false on a JSON `null` instance_groups, where
|
|
// jsonb_array_elements_text would instead raise and abort the whole transaction; the
|
|
// jsonb_typeof guard rules out the same class of value for the roles object. The filter is
|
|
// not index-backed — the GIN index covers the auto_invite column, not this expression —
|
|
// which is acceptable since workspace_settings holds one row per workspace.
|
|
sqlx::query!(
|
|
r#"UPDATE workspace_settings SET
|
|
auto_invite = jsonb_set(
|
|
jsonb_set(
|
|
COALESCE(auto_invite, '{}'::jsonb),
|
|
'{instance_groups}',
|
|
(SELECT COALESCE(jsonb_agg(elem), '[]'::jsonb)
|
|
FROM jsonb_array_elements(COALESCE(auto_invite->'instance_groups', '[]'::jsonb)) elem
|
|
WHERE elem #>> '{}' <> ALL($1))
|
|
),
|
|
'{instance_groups_roles}',
|
|
CASE WHEN jsonb_typeof(auto_invite->'instance_groups_roles') = 'object'
|
|
THEN (auto_invite->'instance_groups_roles') - $1::text[]
|
|
ELSE '{}'::jsonb
|
|
END
|
|
)
|
|
WHERE auto_invite->'instance_groups' ?| $1"#,
|
|
groups
|
|
)
|
|
.execute(&mut **tx)
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Follow an instance-group rename through every workspace's auto-assignment config.
|
|
///
|
|
/// Workspaces reference instance groups by name, so a rename that leaves the old name behind
|
|
/// strands those references: the reconciler resolves membership from the groups a workspace
|
|
/// references, and a name that no longer matches any group reads as "no members", which would
|
|
/// evict everyone granted through it on the next reconcile.
|
|
///
|
|
/// Mutates every workspace's settings, so callers must have established superadmin first.
|
|
/// Deliberately not audited per workspace: the mutation is instance-scoped and recorded by
|
|
/// the caller's global igroup audit event.
|
|
pub async fn rename_instance_group_in_workspace_settings(
|
|
old_name: &str,
|
|
new_name: &str,
|
|
tx: &mut Transaction<'_, Postgres>,
|
|
) -> Result<()> {
|
|
// Row filter must stay `?`: it yields false on a JSON `null` instance_groups, where
|
|
// jsonb_array_elements would instead raise and abort the whole transaction.
|
|
sqlx::query!(
|
|
r#"UPDATE workspace_settings SET
|
|
auto_invite = jsonb_set(
|
|
jsonb_set(
|
|
COALESCE(auto_invite, '{}'::jsonb),
|
|
'{instance_groups}',
|
|
(SELECT COALESCE(jsonb_agg(
|
|
CASE WHEN elem #>> '{}' = $1 THEN to_jsonb($2::text) ELSE elem END), '[]'::jsonb)
|
|
FROM jsonb_array_elements(COALESCE(auto_invite->'instance_groups', '[]'::jsonb)) elem)
|
|
),
|
|
'{instance_groups_roles}',
|
|
CASE WHEN COALESCE(auto_invite->'instance_groups_roles', '{}'::jsonb) ? $1
|
|
THEN (COALESCE(auto_invite->'instance_groups_roles', '{}'::jsonb) - $1)
|
|
|| jsonb_build_object($2::text, auto_invite->'instance_groups_roles'->$1)
|
|
ELSE COALESCE(auto_invite->'instance_groups_roles', '{}'::jsonb)
|
|
END
|
|
)
|
|
WHERE auto_invite->'instance_groups' ? $1"#,
|
|
old_name,
|
|
new_name
|
|
)
|
|
.execute(&mut **tx)
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn delete_igroup(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Path(name): Path<String>,
|
|
) -> Result<String> {
|
|
require_super_admin(&db, &authed).await?;
|
|
let mut tx: Transaction<'_, Postgres> = db.begin().await?;
|
|
|
|
// FOR UPDATE: the group row is the group-level mutex, taken before the workspace
|
|
// advisory locks (see reconcile_workspace_instance_groups).
|
|
let group_role = sqlx::query_scalar!(
|
|
"SELECT instance_role FROM instance_group WHERE name = $1 FOR UPDATE",
|
|
&name
|
|
)
|
|
.fetch_optional(&mut *tx)
|
|
.await?
|
|
.flatten();
|
|
|
|
let affected_members: Vec<String> = if group_role.is_some() {
|
|
sqlx::query_scalar!("SELECT email FROM email_to_igroup WHERE igroup = $1", &name)
|
|
.fetch_all(&mut *tx)
|
|
.await?
|
|
} else {
|
|
vec![]
|
|
};
|
|
|
|
// Captured and advisory-locked before the settings update strips the group from them.
|
|
#[cfg(feature = "private")]
|
|
let affected_workspaces =
|
|
lock_workspaces_referencing_instance_groups(std::slice::from_ref(&name), &mut tx).await?;
|
|
|
|
remove_instance_groups_from_workspace_settings(std::slice::from_ref(&name), &mut tx).await?;
|
|
|
|
sqlx::query!("DELETE FROM email_to_igroup WHERE igroup = $1", name)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
sqlx::query!("DELETE FROM instance_group WHERE name = $1", name)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
// Recompute roles for affected members after deletion
|
|
for email in &affected_members {
|
|
let effective_role = compute_effective_instance_role(email, &mut tx).await?;
|
|
apply_instance_role(email, effective_role.as_deref(), &mut tx).await?;
|
|
}
|
|
|
|
#[cfg(feature = "private")]
|
|
{
|
|
use windmill_api_workspaces::workspaces_ee::reconcile_workspace_instance_groups;
|
|
reconcile_workspace_instance_groups(&affected_workspaces, &mut tx, &authed).await?;
|
|
}
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"igroup.delete",
|
|
ActionKind::Delete,
|
|
"global",
|
|
Some(&name.to_string()),
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
Ok(format!("Deleted group {}", name))
|
|
}
|
|
|
|
pub async fn get_group_opt<'c>(
|
|
db: &mut Transaction<'c, Postgres>,
|
|
w_id: &str,
|
|
name: &str,
|
|
) -> Result<Option<Group>> {
|
|
let group_opt = sqlx::query_as!(
|
|
Group,
|
|
"SELECT workspace_id, name, summary, extra_perms FROM group_ WHERE name = $1 AND workspace_id = $2",
|
|
name,
|
|
w_id
|
|
)
|
|
.fetch_optional(&mut **db)
|
|
.await?;
|
|
Ok(group_opt)
|
|
}
|
|
|
|
async fn get_group(
|
|
authed: ApiAuthed,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Path((w_id, name)): Path<(String, String)>,
|
|
) -> JsonResult<GroupInfo> {
|
|
if *CLOUD_HOSTED && w_id == "demo" && name == "all" && !authed.is_admin {
|
|
return Ok(Json(GroupInfo {
|
|
workspace_id: w_id,
|
|
name: name,
|
|
summary: Some("The group that contains all users".to_string()),
|
|
members: vec!["redacted_in_demo_workspace".to_string()],
|
|
extra_perms: serde_json::json!({}),
|
|
}));
|
|
}
|
|
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
|
|
let group = not_found_if_none(get_group_opt(&mut tx, &w_id, &name).await?, "Group", &name)?;
|
|
|
|
let members = sqlx::query_scalar!(
|
|
"SELECT usr.username
|
|
FROM usr_to_group LEFT JOIN usr ON usr_to_group.usr = usr.username AND usr_to_group.workspace_id = $2
|
|
WHERE group_ = $1 AND usr.workspace_id = $2 AND usr_to_group.workspace_id = $2",
|
|
name,
|
|
w_id
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
Ok(Json(GroupInfo {
|
|
workspace_id: group.workspace_id,
|
|
name: group.name,
|
|
summary: group.summary,
|
|
members,
|
|
extra_perms: group.extra_perms,
|
|
}))
|
|
}
|
|
|
|
async fn delete_group(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Path((w_id, name)): Path<(String, String)>,
|
|
) -> Result<String> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
|
|
if name == "all" {
|
|
return Err(Error::BadRequest(
|
|
"The group 'all' is a special group that contains all users and cannot be deleted"
|
|
.to_string(),
|
|
));
|
|
}
|
|
|
|
if !authed.is_admin {
|
|
require_is_owner(&name, &authed.username, &authed.groups, &w_id, &db).await?;
|
|
}
|
|
not_found_if_none(get_group_opt(&mut tx, &w_id, &name).await?, "Group", &name)?;
|
|
|
|
sqlx::query!(
|
|
"DELETE FROM usr_to_group WHERE group_ = $1 AND workspace_id = $2",
|
|
name,
|
|
w_id
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
sqlx::query!(
|
|
"DELETE FROM group_ WHERE name = $1 AND workspace_id = $2",
|
|
name,
|
|
w_id
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"group.delete",
|
|
ActionKind::Delete,
|
|
&w_id,
|
|
Some(&name.to_string()),
|
|
None,
|
|
)
|
|
.await?;
|
|
tx.commit().await?;
|
|
|
|
handle_deployment_metadata(
|
|
&authed.email,
|
|
&authed.username,
|
|
&db,
|
|
&w_id,
|
|
windmill_git_sync::DeployedObject::Group { name: name.clone() },
|
|
Some(format!("Deleted group '{}'", &name)),
|
|
true,
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
Ok(format!("delete group at name {}", name))
|
|
}
|
|
|
|
async fn update_group(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Path((w_id, name)): Path<(String, String)>,
|
|
Json(eg): Json<EditGroup>,
|
|
) -> Result<String> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
if !authed.is_admin {
|
|
require_is_owner(&name, &authed.username, &authed.groups, &w_id, &db).await?;
|
|
}
|
|
not_found_if_none(get_group_opt(&mut tx, &w_id, &name).await?, "Group", &name)?;
|
|
|
|
sqlx::query!(
|
|
"UPDATE group_ SET summary = $1 WHERE name = $2 AND workspace_id = $3",
|
|
eg.summary,
|
|
&name,
|
|
&w_id
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"group.edit",
|
|
ActionKind::Update,
|
|
&w_id,
|
|
Some(&name.to_string()),
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
log_group_permission_change(
|
|
&mut *tx,
|
|
&w_id,
|
|
&name,
|
|
&authed.username,
|
|
"update_summary",
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
|
|
handle_deployment_metadata(
|
|
&authed.email,
|
|
&authed.username,
|
|
&db,
|
|
&w_id,
|
|
windmill_git_sync::DeployedObject::Group { name: name.clone() },
|
|
Some(format!("Updated group '{}'", &name)),
|
|
true,
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
Ok(format!("Edited group {}", name))
|
|
}
|
|
|
|
async fn add_user(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Path((w_id, name)): Path<(String, String)>,
|
|
Json(Username { username: user_username }): Json<Username>,
|
|
) -> Result<String> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
if !authed.is_admin {
|
|
require_is_owner(&name, &authed.username, &authed.groups, &w_id, &db).await?;
|
|
}
|
|
|
|
not_found_if_none(get_group_opt(&mut tx, &w_id, &name).await?, "Group", &name)?;
|
|
|
|
let result = sqlx::query!(
|
|
"INSERT INTO usr_to_group (workspace_id, usr, group_) VALUES ($1, $2, $3) ON CONFLICT DO NOTHING",
|
|
&w_id,
|
|
user_username,
|
|
name,
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
if result.rows_affected() == 0 {
|
|
return Ok(format!(
|
|
"{} is already a member of group {}",
|
|
user_username, name
|
|
));
|
|
}
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"group.adduser",
|
|
ActionKind::Update,
|
|
&w_id,
|
|
Some(&name.to_string()),
|
|
Some([("user", user_username.as_str())].into()),
|
|
)
|
|
.await?;
|
|
|
|
log_group_permission_change(
|
|
&mut *tx,
|
|
&w_id,
|
|
&name,
|
|
&authed.username,
|
|
"add_member",
|
|
Some(&user_username),
|
|
)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
|
|
handle_deployment_metadata(
|
|
&authed.email,
|
|
&authed.username,
|
|
&db,
|
|
&w_id,
|
|
windmill_git_sync::DeployedObject::Group { name: name.clone() },
|
|
Some(format!("Added user to group '{}'", &name)),
|
|
true,
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
Ok(format!("Added {} to group {}", user_username, name))
|
|
}
|
|
|
|
async fn add_user_igroup(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Path(name): Path<String>,
|
|
Json(Email { email }): Json<Email>,
|
|
) -> Result<String> {
|
|
require_super_admin(&db, &authed).await?;
|
|
|
|
let mut tx: Transaction<'_, Postgres> = db.begin().await?;
|
|
|
|
// FOR UPDATE: the group row is the group-level mutex, taken before the workspace
|
|
// advisory locks (see reconcile_workspace_instance_groups).
|
|
let group_opt = sqlx::query_scalar!(
|
|
"SELECT name FROM instance_group WHERE name = $1 FOR UPDATE",
|
|
name
|
|
)
|
|
.fetch_optional(&mut *tx)
|
|
.await?;
|
|
|
|
not_found_if_none(group_opt, "IGroup", &name)?;
|
|
|
|
// Before the membership insert's row lock.
|
|
#[cfg(feature = "private")]
|
|
let affected_workspaces =
|
|
lock_workspaces_referencing_instance_groups(std::slice::from_ref(&name), &mut tx).await?;
|
|
|
|
sqlx::query!(
|
|
"INSERT INTO email_to_igroup (email, igroup) VALUES ($1, $2) ON CONFLICT DO NOTHING",
|
|
email,
|
|
name,
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"igroup.adduser",
|
|
ActionKind::Update,
|
|
"global",
|
|
Some(&name.to_string()),
|
|
Some([("email", email.as_str())].into()),
|
|
)
|
|
.await?;
|
|
|
|
// Apply instance-level role from group membership
|
|
let effective_role = compute_effective_instance_role(&email, &mut tx).await?;
|
|
apply_instance_role(&email, effective_role.as_deref(), &mut tx).await?;
|
|
|
|
// Sync workspace membership derived from this instance group.
|
|
#[cfg(feature = "private")]
|
|
{
|
|
use windmill_api_workspaces::workspaces_ee::reconcile_workspace_instance_groups;
|
|
reconcile_workspace_instance_groups(&affected_workspaces, &mut tx, &authed).await?;
|
|
}
|
|
|
|
tx.commit().await?;
|
|
Ok(format!("Added {} to igroup {}", email, name))
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct IGroup {
|
|
name: String,
|
|
summary: Option<String>,
|
|
emails: Option<Vec<String>>,
|
|
instance_role: Option<String>,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct IGroupWithWorkspaces {
|
|
name: String,
|
|
summary: Option<String>,
|
|
emails: Option<Vec<String>>,
|
|
instance_role: Option<String>,
|
|
workspaces: Vec<WorkspaceInfo>,
|
|
}
|
|
|
|
#[derive(Serialize, Clone)]
|
|
struct WorkspaceInfo {
|
|
workspace_id: String,
|
|
workspace_name: String,
|
|
role: String,
|
|
}
|
|
async fn list_igroups(Extension(db): Extension<DB>) -> JsonResult<Vec<IGroup>> {
|
|
let mut tx: Transaction<'_, Postgres> = db.begin().await?;
|
|
|
|
let groups = sqlx::query_as!(
|
|
IGroup,
|
|
"SELECT name, summary, array_remove(array_agg(email_to_igroup.email), null) as emails, instance_role FROM email_to_igroup RIGHT JOIN instance_group ON instance_group.name = email_to_igroup.igroup GROUP BY name, instance_role"
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
return Ok(Json(groups));
|
|
}
|
|
|
|
async fn list_igroups_with_workspaces(
|
|
Extension(db): Extension<DB>,
|
|
) -> JsonResult<Vec<IGroupWithWorkspaces>> {
|
|
let mut tx: Transaction<'_, Postgres> = db.begin().await?;
|
|
|
|
// Get all instance groups with their emails first
|
|
let groups = sqlx::query_as!(
|
|
IGroup,
|
|
"SELECT name, summary, array_remove(array_agg(email_to_igroup.email), null) as emails, instance_role FROM email_to_igroup RIGHT JOIN instance_group ON instance_group.name = email_to_igroup.igroup GROUP BY name, summary, instance_role"
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
// Get all workspace mappings for instance groups in a single query
|
|
let workspace_mappings = sqlx::query!(
|
|
r#"
|
|
SELECT
|
|
ig.name as group_name,
|
|
ws.workspace_id,
|
|
w.name as workspace_name,
|
|
ws.auto_invite->'instance_groups_roles'->ig.name as role
|
|
FROM instance_group ig
|
|
INNER JOIN workspace_settings ws ON ws.auto_invite->'instance_groups' IS NOT NULL
|
|
AND ws.auto_invite->'instance_groups' ? ig.name
|
|
INNER JOIN workspace w ON w.id = ws.workspace_id AND w.deleted = false
|
|
ORDER BY ig.name, ws.workspace_id
|
|
"#
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
// Create a map of group_name -> Vec<WorkspaceInfo>
|
|
let mut workspaces_by_group: std::collections::HashMap<String, Vec<WorkspaceInfo>> =
|
|
std::collections::HashMap::new();
|
|
for mapping in workspace_mappings {
|
|
let role = mapping
|
|
.role
|
|
.and_then(|r| r.as_str().map(|s| s.to_string()))
|
|
.unwrap_or_else(|| "developer".to_string());
|
|
|
|
let workspace_info = WorkspaceInfo {
|
|
workspace_id: mapping.workspace_id.clone(),
|
|
workspace_name: mapping.workspace_name,
|
|
role,
|
|
};
|
|
|
|
workspaces_by_group
|
|
.entry(mapping.group_name)
|
|
.or_insert_with(Vec::new)
|
|
.push(workspace_info);
|
|
}
|
|
|
|
let mut result = Vec::new();
|
|
for group in groups {
|
|
let workspaces = workspaces_by_group
|
|
.get(&group.name)
|
|
.cloned()
|
|
.unwrap_or_default();
|
|
|
|
result.push(IGroupWithWorkspaces {
|
|
name: group.name,
|
|
summary: group.summary,
|
|
emails: group.emails,
|
|
instance_role: group.instance_role,
|
|
workspaces,
|
|
});
|
|
}
|
|
|
|
tx.commit().await?;
|
|
return Ok(Json(result));
|
|
}
|
|
|
|
async fn get_igroup(
|
|
Path(name): Path<String>,
|
|
Extension(db): Extension<DB>,
|
|
) -> JsonResult<IGroupWithWorkspaces> {
|
|
let group = sqlx::query_as!(
|
|
IGroup,
|
|
"SELECT name, summary, array_remove(array_agg(email_to_igroup.email), null) as emails, instance_role FROM email_to_igroup RIGHT JOIN instance_group ON instance_group.name = email_to_igroup.igroup WHERE name = $1 GROUP BY name, instance_role",
|
|
name
|
|
)
|
|
.fetch_optional(&db)
|
|
.await?;
|
|
let group = not_found_if_none(group, "IGroup", &name)?;
|
|
|
|
let workspace_mappings = sqlx::query!(
|
|
r#"
|
|
SELECT
|
|
ws.workspace_id,
|
|
w.name as workspace_name,
|
|
ws.auto_invite->'instance_groups_roles'->$1 as role
|
|
FROM workspace_settings ws
|
|
INNER JOIN workspace w ON w.id = ws.workspace_id AND w.deleted = false
|
|
WHERE ws.auto_invite->'instance_groups' ? $1
|
|
ORDER BY ws.workspace_id
|
|
"#,
|
|
&name
|
|
)
|
|
.fetch_all(&db)
|
|
.await?;
|
|
|
|
let workspaces: Vec<WorkspaceInfo> = workspace_mappings
|
|
.into_iter()
|
|
.map(|m| WorkspaceInfo {
|
|
workspace_id: m.workspace_id,
|
|
workspace_name: m.workspace_name,
|
|
role: m
|
|
.role
|
|
.and_then(|r| r.as_str().map(|s| s.to_string()))
|
|
.unwrap_or_else(|| "developer".to_string()),
|
|
})
|
|
.collect();
|
|
|
|
return Ok(Json(IGroupWithWorkspaces {
|
|
name: group.name,
|
|
summary: group.summary,
|
|
emails: group.emails,
|
|
instance_role: group.instance_role,
|
|
workspaces,
|
|
}));
|
|
}
|
|
|
|
async fn remove_user_igroup(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Path(name): Path<String>,
|
|
Json(Email { email }): Json<Email>,
|
|
) -> Result<String> {
|
|
require_super_admin(&db, &authed).await?;
|
|
let mut tx = db.begin().await?;
|
|
|
|
// FOR UPDATE: the group row is the group-level mutex, taken before the workspace
|
|
// advisory locks (see reconcile_workspace_instance_groups).
|
|
let group_opt = sqlx::query_scalar!(
|
|
"SELECT name FROM instance_group WHERE name = $1 FOR UPDATE",
|
|
name,
|
|
)
|
|
.fetch_optional(&mut *tx)
|
|
.await?;
|
|
|
|
not_found_if_none(group_opt, "IGroup", &name)?;
|
|
|
|
// Before the membership delete's row lock.
|
|
#[cfg(feature = "private")]
|
|
let affected_workspaces =
|
|
lock_workspaces_referencing_instance_groups(std::slice::from_ref(&name), &mut tx).await?;
|
|
|
|
sqlx::query!(
|
|
"DELETE FROM email_to_igroup WHERE email = $1 AND igroup = $2",
|
|
email,
|
|
name,
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"igroup.removeuser",
|
|
ActionKind::Update,
|
|
"global",
|
|
Some(&name.to_string()),
|
|
Some([("email", email.as_str())].into()),
|
|
)
|
|
.await?;
|
|
|
|
// Recompute instance-level role after group removal
|
|
let effective_role = compute_effective_instance_role(&email, &mut tx).await?;
|
|
apply_instance_role(&email, effective_role.as_deref(), &mut tx).await?;
|
|
|
|
// Re-derive workspace membership now that the base tables reflect the removal: drops the
|
|
// user where this group was their only access source, or re-roles them from the groups
|
|
// they still belong to.
|
|
#[cfg(feature = "private")]
|
|
{
|
|
use windmill_api_workspaces::workspaces_ee::reconcile_workspace_instance_groups;
|
|
reconcile_workspace_instance_groups(&affected_workspaces, &mut tx, &authed).await?;
|
|
}
|
|
|
|
tx.commit().await?;
|
|
Ok(format!("Removed {} from igroup {}", email, name))
|
|
}
|
|
|
|
async fn remove_user(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Extension(user_db): Extension<UserDB>,
|
|
Path((w_id, name)): Path<(String, String)>,
|
|
Json(Username { username: user_username }): Json<Username>,
|
|
) -> Result<String> {
|
|
let mut tx = user_db.begin(&authed).await?;
|
|
if !authed.is_admin {
|
|
require_is_owner(&name, &authed.username, &authed.groups, &w_id, &db).await?;
|
|
}
|
|
|
|
not_found_if_none(get_group_opt(&mut tx, &w_id, &name).await?, "Group", &name)?;
|
|
if &name == "all" {
|
|
return Err(Error::BadRequest(format!("Cannot delete users from all")));
|
|
}
|
|
sqlx::query!(
|
|
"DELETE FROM usr_to_group WHERE usr = $1 AND group_ = $2 AND workspace_id = $3",
|
|
user_username,
|
|
name,
|
|
&w_id,
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"group.removeuser",
|
|
ActionKind::Update,
|
|
&w_id,
|
|
Some(&name.to_string()),
|
|
Some([("user", user_username.as_str())].into()),
|
|
)
|
|
.await?;
|
|
|
|
log_group_permission_change(
|
|
&mut *tx,
|
|
&w_id,
|
|
&name,
|
|
&authed.username,
|
|
"remove_member",
|
|
Some(&user_username),
|
|
)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
|
|
handle_deployment_metadata(
|
|
&authed.email,
|
|
&authed.username,
|
|
&db,
|
|
&w_id,
|
|
windmill_git_sync::DeployedObject::Group { name: name.clone() },
|
|
Some(format!("Removed user from group '{}'", &name)),
|
|
true,
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
Ok(format!("Removed {} to group {}", user_username, name))
|
|
}
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
#[derive(Serialize, Deserialize)]
|
|
struct ExportedIGroup {
|
|
name: String,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
summary: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
id: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
scim_display_name: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
external_id: Option<String>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
emails: Option<Vec<String>>,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
instance_role: Option<String>,
|
|
}
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
async fn export_igroups(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
) -> JsonResult<Vec<ExportedIGroup>> {
|
|
require_super_admin(&db, &authed).await?;
|
|
let mut tx = db.begin().await?;
|
|
let igroups = sqlx::query_as!(
|
|
ExportedIGroup,
|
|
"SELECT name, summary, array_remove(array_agg(email_to_igroup.email), null) as emails, id, scim_display_name, external_id, instance_role FROM email_to_igroup RIGHT JOIN instance_group ON instance_group.name = email_to_igroup.igroup GROUP BY name",
|
|
).fetch_all(&mut *tx).await?;
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"igroups.export",
|
|
ActionKind::Execute,
|
|
"global",
|
|
None,
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
|
|
Ok(Json(igroups))
|
|
}
|
|
|
|
#[cfg(not(feature = "enterprise"))]
|
|
async fn export_igroups() -> JsonResult<String> {
|
|
Err(Error::BadRequest(
|
|
"This feature is only available in the enterprise version".to_string(),
|
|
))
|
|
}
|
|
|
|
#[cfg(feature = "enterprise")]
|
|
async fn overwrite_igroups(
|
|
authed: ApiAuthed,
|
|
Extension(db): Extension<DB>,
|
|
Json(igroups): Json<Vec<ExportedIGroup>>,
|
|
) -> Result<String> {
|
|
require_super_admin(&db, &authed).await?;
|
|
let mut tx = db.begin().await?;
|
|
|
|
// The import replaces the whole group catalog, so the whole-table lock is its
|
|
// group-mutex phase, taken first like every path's group locks (see
|
|
// reconcile_workspace_instance_groups). Per-row FOR UPDATE would miss rows committed
|
|
// after the scan, which the unqualified deletes below would then lock after the
|
|
// workspace locks — the inverted order. EXCLUSIVE conflicts with the writes and the
|
|
// FOR UPDATE of every other mutation path while leaving plain reads unblocked.
|
|
sqlx::query("LOCK TABLE instance_group IN EXCLUSIVE MODE")
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
let imported_names: Vec<String> = igroups.iter().map(|g| g.name.clone()).collect();
|
|
// NULL-safe and correct for an empty import: `name <> ALL('{}')` is true for every row.
|
|
let previous_names: Vec<String> = sqlx::query_scalar!(
|
|
"SELECT name FROM instance_group WHERE name <> ALL($1)",
|
|
&imported_names
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
// Membership of retained groups is wiped and re-imported below, so workspaces referencing
|
|
// either side of the import may see their projection change. Captured and advisory-locked
|
|
// before the settings update strips the dropped groups from them.
|
|
#[cfg(feature = "private")]
|
|
let affected_workspaces = {
|
|
let mut all_names = previous_names.clone();
|
|
all_names.extend(imported_names.iter().cloned());
|
|
lock_workspaces_referencing_instance_groups(&all_names, &mut tx).await?
|
|
};
|
|
|
|
remove_instance_groups_from_workspace_settings(&previous_names, &mut tx).await?;
|
|
|
|
sqlx::query!("DELETE FROM email_to_igroup")
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
sqlx::query!("DELETE FROM instance_group")
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
for igroup in igroups.iter() {
|
|
let validated_role = validate_instance_role(&igroup.instance_role)?;
|
|
sqlx::query!(
|
|
"INSERT INTO instance_group (name, summary, id, scim_display_name, external_id, instance_role) VALUES ($1, $2, $3, $4, $5, $6)",
|
|
igroup.name,
|
|
igroup.summary,
|
|
igroup.id,
|
|
igroup.scim_display_name,
|
|
igroup.external_id,
|
|
validated_role,
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
|
|
if let Some(emails) = &igroup.emails {
|
|
for email in emails.iter() {
|
|
sqlx::query!(
|
|
"INSERT INTO email_to_igroup (email, igroup) VALUES ($1, $2)",
|
|
email,
|
|
igroup.name,
|
|
)
|
|
.execute(&mut *tx)
|
|
.await?;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Propagate instance roles for all groups that have one
|
|
for igroup in igroups.iter() {
|
|
if igroup.instance_role.is_some() {
|
|
propagate_instance_group_roles(&igroup.name, &mut tx).await?;
|
|
}
|
|
}
|
|
|
|
// Demote orphaned users: those whose role was set by a group that no longer
|
|
// grants them any instance_role after the import
|
|
let orphaned_users = sqlx::query_scalar!(
|
|
"SELECT email FROM password
|
|
WHERE role_source = 'instance_group' AND (super_admin = true OR devops = true)
|
|
AND email NOT IN (
|
|
SELECT eig.email FROM email_to_igroup eig
|
|
JOIN instance_group ig ON ig.name = eig.igroup
|
|
WHERE ig.instance_role IS NOT NULL
|
|
)"
|
|
)
|
|
.fetch_all(&mut *tx)
|
|
.await?;
|
|
|
|
for email in &orphaned_users {
|
|
apply_instance_role(email, None, &mut tx).await?;
|
|
}
|
|
|
|
// Runs after the re-insert so the reconciler judges membership against the imported
|
|
// state: a member who moved from a dropped group to a retained one is re-roled in place
|
|
// instead of losing workspace access.
|
|
#[cfg(feature = "private")]
|
|
{
|
|
use windmill_api_workspaces::workspaces_ee::reconcile_workspace_instance_groups;
|
|
reconcile_workspace_instance_groups(&affected_workspaces, &mut tx, &authed).await?;
|
|
}
|
|
|
|
audit_log(
|
|
&mut *tx,
|
|
&authed,
|
|
"igroups.import",
|
|
ActionKind::Create,
|
|
"global",
|
|
None,
|
|
None,
|
|
)
|
|
.await?;
|
|
|
|
tx.commit().await?;
|
|
Ok("Imported igroups".to_string())
|
|
}
|
|
|
|
#[cfg(not(feature = "enterprise"))]
|
|
async fn overwrite_igroups() -> JsonResult<String> {
|
|
Err(Error::BadRequest(
|
|
"This feature is only available in the enterprise version".to_string(),
|
|
))
|
|
}
|
|
|
|
pub async fn log_group_permission_change<'c, E: sqlx::Executor<'c, Database = Postgres>>(
|
|
db: E,
|
|
workspace_id: &str,
|
|
group_name: &str,
|
|
changed_by: &str,
|
|
change_type: &str,
|
|
member_affected: Option<&str>,
|
|
) -> Result<()> {
|
|
sqlx::query!(
|
|
"INSERT INTO group_permission_history
|
|
(workspace_id, group_name, changed_by, change_type, member_affected)
|
|
VALUES ($1, $2, $3, $4, $5)",
|
|
workspace_id,
|
|
group_name,
|
|
changed_by,
|
|
change_type,
|
|
member_affected
|
|
)
|
|
.execute(db)
|
|
.await?;
|
|
Ok(())
|
|
}
|