-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathcommon.sh
executable file
·625 lines (571 loc) · 21.8 KB
/
common.sh
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
#! /usr/bin/env bash
# Common functions and variables used by initiate.sh and complete.sh
REPORTING_PROJECT_REF="ihmaxnjpcccasmrbkpvo"
REPORTING_CREDENTIALS_FILE="/root/upgrade-reporting-credentials"
REPORTING_ANON_KEY=""
if [ -f "$REPORTING_CREDENTIALS_FILE" ]; then
REPORTING_ANON_KEY=$(cat "$REPORTING_CREDENTIALS_FILE")
fi
# shellcheck disable=SC2120
# Arguments are passed in other files
function run_sql {
psql -h localhost -U supabase_admin -d postgres "$@"
}
function ship_logs {
LOG_FILE=$1
if [ -z "$REPORTING_ANON_KEY" ]; then
echo "No reporting key found. Skipping log upload."
return 0
fi
if [ ! -f "$LOG_FILE" ]; then
echo "No log file found. Skipping log upload."
return 0
fi
if [ ! -s "$LOG_FILE" ]; then
echo "Log file is empty. Skipping log upload."
return 0
fi
HOSTNAME=$(hostname)
DERIVED_REF="${HOSTNAME##*-}"
printf -v BODY '{ "ref": "%s", "step": "%s", "content": %s }' "$DERIVED_REF" "completion" "$(cat "$LOG_FILE" | jq -Rs '.')"
curl -sf -X POST "https://$REPORTING_PROJECT_REF.supabase.co/rest/v1/error_logs" \
-H "apikey: ${REPORTING_ANON_KEY}" \
-H 'Content-type: application/json' \
-d "$BODY"
}
function retry {
local retries=$1
shift
local count=0
until "$@"; do
exit=$?
wait=$((2 ** (count + 1)))
count=$((count + 1))
if [ $count -lt "$retries" ]; then
echo "Command $* exited with code $exit, retrying..."
sleep $wait
else
echo "Command $* exited with code $exit, no more retries left."
return $exit
fi
done
return 0
}
CI_stop_postgres() {
BINDIR=$(pg_config --bindir)
ARG=${1:-""}
if [ "$ARG" = "--new-bin" ]; then
BINDIR="/tmp/pg_upgrade_bin/$PG_MAJOR_VERSION/bin"
fi
su postgres -c "$BINDIR/pg_ctl stop -o '-c config_file=/etc/postgresql/postgresql.conf' -l /tmp/postgres.log"
}
CI_start_postgres() {
BINDIR=$(pg_config --bindir)
ARG=${1:-""}
if [ "$ARG" = "--new-bin" ]; then
BINDIR="/tmp/pg_upgrade_bin/$PG_MAJOR_VERSION/bin"
fi
su postgres -c "$BINDIR/pg_ctl start -o '-c config_file=/etc/postgresql/postgresql.conf' -l /tmp/postgres.log"
}
swap_postgres_and_supabase_admin() {
run_sql <<'EOSQL'
do $$
declare
rec record;
begin
for rec in
select * from pg_database
loop
execute(format('alter database %I connection limit 0', datname));
end loop;
end
$$;
select pg_terminate_backend(pid) from pg_stat_activity where backend_type = 'client backend' and pid != pg_backend_pid();
EOSQL
if [ -z "$IS_CI" ]; then
retry 5 systemctl restart postgresql
else
CI_start_postgres ""
fi
retry 8 pg_isready -h localhost -U supabase_admin
run_sql <<'EOSQL'
set statement_timeout = '600s';
begin;
create role supabase_tmp superuser;
set session authorization supabase_tmp;
-- to handle snowflakes that happened in the past
revoke supabase_admin from authenticator;
-- #incident-2024-09-12-project-upgrades-are-temporarily-disabled
do $$
begin
if exists (select from pg_authid where rolname = 'pg_read_all_data') then
execute('grant pg_read_all_data to postgres');
end if;
end
$$;
grant pg_signal_backend to postgres;
-- Swap postgres & supabase_admin on global objects (roles, role settings, etc.).
do $$
declare
postgres_rolpassword text := (select rolpassword from pg_authid where rolname = 'postgres');
supabase_admin_rolpassword text := (select rolpassword from pg_authid where rolname = 'supabase_admin');
role_settings jsonb[] := (
select coalesce(array_agg(jsonb_build_object('database', d.datname, 'role', a.rolname, 'configs', s.setconfig)), '{}')
from pg_db_role_setting s
left join pg_database d on d.oid = s.setdatabase
join pg_authid a on a.oid = s.setrole
where a.rolname in ('postgres', 'supabase_admin')
);
rec record;
obj jsonb;
begin
set local search_path = '';
alter role postgres rename to supabase_admin_;
alter role supabase_admin rename to postgres;
alter role supabase_admin_ rename to supabase_admin;
-- role grants
for rec in
select * from pg_auth_members
loop
execute(format('revoke %s from %s;', rec.roleid::regrole, rec.member::regrole));
execute(format(
'grant %s to %s %s granted by %s;',
case
when rec.roleid = 'postgres'::regrole then 'supabase_admin'
when rec.roleid = 'supabase_admin'::regrole then 'postgres'
else rec.roleid::regrole
end,
case
when rec.member = 'postgres'::regrole then 'supabase_admin'
when rec.member = 'supabase_admin'::regrole then 'postgres'
else rec.member::regrole
end,
case
when rec.admin_option then 'with admin option'
else ''
end,
case
when rec.grantor = 'postgres'::regrole then 'supabase_admin'
when rec.grantor = 'supabase_admin'::regrole then 'postgres'
else rec.grantor::regrole
end
));
end loop;
-- role passwords
execute(format('alter role postgres password %L;', postgres_rolpassword));
execute(format('alter role supabase_admin password %L;', supabase_admin_rolpassword));
-- role settings
foreach obj in array role_settings
loop
execute(format('alter role %I %s reset all',
case when obj->>'role' = 'postgres' then 'supabase_admin' else 'postgres' end,
case when obj->>'database' is null then '' else format('in database %I', obj->>'database') end
));
end loop;
foreach obj in array role_settings
loop
for rec in
select split_part(value, '=', 1) as key, substr(value, strpos(value, '=') + 1) as value
from jsonb_array_elements_text(obj->'configs')
loop
execute(format('alter role %I %s set %I to %s',
obj->>'role',
case when obj->>'database' is null then '' else format('in database %I', obj->>'database') end,
rec.key,
-- https://github.com/postgres/postgres/blob/70d1c664f4376fd3499e3b0c6888cf39b65d722b/src/bin/pg_dump/dumputils.c#L861
case
when rec.key in ('local_preload_libraries', 'search_path', 'session_preload_libraries', 'shared_preload_libraries', 'temp_tablespaces', 'unix_socket_directories')
then rec.value
else quote_literal(rec.value)
end
));
end loop;
end loop;
reassign owned by postgres to supabase_admin;
end
$$;
-- Swap postgres & supabase_admin on in-database objects (schemas, tables, functions, etc.).
-- We execute the script directly on the `postgres` database, and we use dblink for user-defined dbs.
do $$
declare
swap_postgres_supabase_admin_on_in_database_objects_script text := $script$
do $script_do$
declare
event_triggers jsonb[] := (select coalesce(array_agg(jsonb_build_object('name', evtname)), '{}') from pg_event_trigger where evtowner = 'supabase_admin'::regrole);
user_mappings jsonb[] := (
select coalesce(array_agg(jsonb_build_object('oid', um.oid, 'role', a.rolname, 'server', s.srvname, 'options', um.umoptions)), '{}')
from pg_user_mapping um
join pg_authid a on a.oid = um.umuser
join pg_foreign_server s on s.oid = um.umserver
where a.rolname in ('postgres', 'supabase_admin')
);
-- Objects can have initial privileges either by having those privileges set
-- when the system is initialized (by initdb) or when the object is created
-- during a CREATE EXTENSION and the extension script sets initial
-- privileges using the GRANT system. (https://www.postgresql.org/docs/current/catalog-pg-init-privs.html)
-- We only care about swapping init_privs for extensions.
init_privs jsonb[] := (
select coalesce(array_agg(jsonb_build_object('objoid', objoid, 'classoid', classoid, 'initprivs', initprivs::text)), '{}')
from pg_init_privs
where privtype = 'e'
);
default_acls jsonb[] := (
select coalesce(array_agg(jsonb_build_object('oid', d.oid, 'role', a.rolname, 'schema', n.nspname, 'objtype', d.defaclobjtype, 'acl', defaclacl::text)), '{}')
from pg_default_acl d
join pg_authid a on a.oid = d.defaclrole
left join pg_namespace n on n.oid = d.defaclnamespace
);
schemas jsonb[] := (
select coalesce(array_agg(jsonb_build_object('oid', n.oid, 'owner', a.rolname, 'acl', nspacl::text)), '{}')
from pg_namespace n
join pg_authid a on a.oid = n.nspowner
where true
and n.nspname != 'information_schema'
and not starts_with(n.nspname, 'pg_')
);
types jsonb[] := (
select coalesce(array_agg(jsonb_build_object('oid', t.oid, 'owner', a.rolname, 'acl', t.typacl::text)), '{}')
from pg_type t
join pg_namespace n on n.oid = t.typnamespace
join pg_authid a on a.oid = t.typowner
where true
and n.nspname != 'information_schema'
and not starts_with(n.nspname, 'pg_')
and (
t.typrelid = 0
or (
select
c.relkind = 'c'
from
pg_class c
where
c.oid = t.typrelid
)
)
and not exists (
select
from
pg_type el
where
el.oid = t.typelem
and el.typarray = t.oid
)
);
functions jsonb[] := (
select coalesce(array_agg(jsonb_build_object('oid', p.oid, 'owner', a.rolname, 'kind', p.prokind, 'acl', p.proacl::text)), '{}')
from pg_proc p
join pg_namespace n on n.oid = p.pronamespace
join pg_authid a on a.oid = p.proowner
where true
and n.nspname != 'information_schema'
and not starts_with(n.nspname, 'pg_')
);
relations jsonb[] := (
select coalesce(array_agg(jsonb_build_object('oid', c.oid, 'owner', a.rolname, 'acl', c.relacl::text)), '{}')
from (
-- Sequences must appear after tables, so we order by relkind
select * from pg_class order by relkind desc
) c
join pg_namespace n on n.oid = c.relnamespace
join pg_authid a on a.oid = c.relowner
where true
and n.nspname != 'information_schema'
and not starts_with(n.nspname, 'pg_')
and c.relkind not in ('c', 'i', 'I')
);
rec record;
obj jsonb;
begin
set local search_path = '';
if exists (select from pg_event_trigger where evtname = 'pgsodium_trg_mask_update') then
alter event trigger pgsodium_trg_mask_update disable;
end if;
if exists (select from pg_extension where extname = 'timescaledb') then
execute(format('select %s.timescaledb_pre_restore()', (select pronamespace::regnamespace from pg_proc where proname = 'timescaledb_pre_restore')));
end if;
-- databases
for rec in
select * from pg_database where datname not in ('template0')
loop
execute(format('alter database %I owner to postgres;', rec.datname));
end loop;
-- event triggers
foreach obj in array event_triggers
loop
execute(format('alter event trigger %I owner to postgres;', obj->>'name'));
end loop;
-- publications
for rec in
select * from pg_publication
loop
execute(format('alter publication %I owner to postgres;', rec.pubname));
end loop;
-- FDWs
for rec in
select * from pg_foreign_data_wrapper
loop
execute(format('alter foreign data wrapper %I owner to postgres;', rec.fdwname));
end loop;
-- foreign servers
for rec in
select * from pg_foreign_server
loop
execute(format('alter server %I owner to postgres;', rec.srvname));
end loop;
-- user mappings
foreach obj in array user_mappings
loop
execute(format('drop user mapping for %I server %I', case when obj->>'role' = 'postgres' then 'supabase_admin' else 'postgres' end, obj->>'server'));
end loop;
foreach obj in array user_mappings
loop
execute(format('create user mapping for %I server %I', obj->>'role', obj->>'server'));
for rec in
select split_part(value, '=', 1) as key, substr(value, strpos(value, '=') + 1) as value
from jsonb_array_elements_text(obj->'options')
loop
execute(format('alter user mapping for %I server %I options (%I %L)', obj->>'role', obj->>'server', rec.key, rec.value));
end loop;
end loop;
-- init privs
foreach obj in array init_privs
loop
-- We need to modify system catalog directly here because there's no ALTER INIT PRIVILEGES.
update pg_init_privs set initprivs = (obj->>'initprivs')::aclitem[] where objoid = (obj->>'objoid')::oid and classoid = (obj->>'classoid')::oid;
end loop;
-- default acls
foreach obj in array default_acls
loop
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
loop
if obj->>'role' in ('postgres', 'supabase_admin') or rec.grantee::regrole in ('postgres', 'supabase_admin') then
execute(format('alter default privileges for role %I %s revoke %s on %s from %s'
, obj->>'role'
, case when obj->>'schema' is null then ''
else format('in schema %I', obj->>'schema')
end
, rec.privilege_type
, case when obj->>'objtype' = 'r' then 'tables'
when obj->>'objtype' = 'S' then 'sequences'
when obj->>'objtype' = 'f' then 'functions'
when obj->>'objtype' = 'T' then 'types'
when obj->>'objtype' = 'n' then 'schemas'
end
, case when rec.grantee = 0 then 'public' else rec.grantee::regrole::text end
));
end if;
end loop;
end loop;
foreach obj in array default_acls
loop
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
loop
if obj->>'role' in ('postgres', 'supabase_admin') or rec.grantee::regrole in ('postgres', 'supabase_admin') then
execute(format('alter default privileges for role %I %s grant %s on %s to %s %s'
, case when obj->>'role' = 'postgres' then 'supabase_admin'
when obj->>'role' = 'supabase_admin' then 'postgres'
else obj->>'role'
end
, case when obj->>'schema' is null then ''
else format('in schema %I', obj->>'schema')
end
, rec.privilege_type
, case when obj->>'objtype' = 'r' then 'tables'
when obj->>'objtype' = 'S' then 'sequences'
when obj->>'objtype' = 'f' then 'functions'
when obj->>'objtype' = 'T' then 'types'
when obj->>'objtype' = 'n' then 'schemas'
end
, case when rec.grantee = 'postgres'::regrole then 'supabase_admin'
when rec.grantee = 'supabase_admin'::regrole then 'postgres'
when rec.grantee = 0 then 'public'
else rec.grantee::regrole::text
end
, case when rec.is_grantable then 'with grant option' else '' end
));
end if;
end loop;
end loop;
-- schemas
foreach obj in array schemas
loop
if obj->>'owner' = 'supabase_admin' then
execute(format('alter schema %s owner to postgres;', (obj->>'oid')::regnamespace));
end if;
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
where grantee::regrole in ('postgres', 'supabase_admin')
loop
execute(format('revoke %s on schema %s from %I', rec.privilege_type, (obj->>'oid')::regnamespace, rec.grantee::regrole));
end loop;
end loop;
foreach obj in array schemas
loop
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
where grantee::regrole in ('postgres', 'supabase_admin')
loop
execute(format('grant %s on schema %s to %s %s'
, rec.privilege_type
, (obj->>'oid')::regnamespace
, case when rec.grantee = 'postgres'::regrole then 'supabase_admin' else 'postgres' end
, case when rec.is_grantable then 'with grant option' else '' end));
end loop;
end loop;
-- types
foreach obj in array types
loop
if obj->>'owner' = 'supabase_admin' then
execute(format('alter type %s owner to postgres;', (obj->>'oid')::regtype));
end if;
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
where grantee::regrole in ('postgres', 'supabase_admin')
loop
execute(format('revoke %s on type %s from %I', rec.privilege_type, (obj->>'oid')::regtype, rec.grantee::regrole));
end loop;
end loop;
foreach obj in array types
loop
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
where grantee::regrole in ('postgres', 'supabase_admin')
loop
execute(format('grant %s on type %s to %s %s'
, rec.privilege_type
, (obj->>'oid')::regtype
, case when rec.grantee = 'postgres'::regrole then 'supabase_admin' else 'postgres' end
, case when rec.is_grantable then 'with grant option' else '' end));
end loop;
end loop;
-- functions
foreach obj in array functions
loop
if obj->>'owner' = 'supabase_admin' then
execute(format('alter routine %s(%s) owner to postgres;', (obj->>'oid')::regproc, pg_get_function_identity_arguments((obj->>'oid')::regproc)));
end if;
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
where grantee::regrole in ('postgres', 'supabase_admin')
loop
execute(format('revoke %s on %s %s(%s) from %I'
, rec.privilege_type
, case
when obj->>'kind' = 'p' then 'procedure'
else 'function'
end
, (obj->>'oid')::regproc
, pg_get_function_identity_arguments((obj->>'oid')::regproc)
, rec.grantee::regrole
));
end loop;
end loop;
foreach obj in array functions
loop
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
where grantee::regrole in ('postgres', 'supabase_admin')
loop
execute(format('grant %s on %s %s(%s) to %s %s'
, rec.privilege_type
, case
when obj->>'kind' = 'p' then 'procedure'
else 'function'
end
, (obj->>'oid')::regproc
, pg_get_function_identity_arguments((obj->>'oid')::regproc)
, case when rec.grantee = 'postgres'::regrole then 'supabase_admin' else 'postgres' end
, case when rec.is_grantable then 'with grant option' else '' end
));
end loop;
end loop;
-- relations
foreach obj in array relations
loop
-- obj->>'oid' (text) needs to be casted to oid first for some reason
if obj->>'owner' = 'supabase_admin' then
execute(format('alter table %s owner to postgres;', (obj->>'oid')::oid::regclass));
end if;
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
where grantee::regrole in ('postgres', 'supabase_admin')
loop
execute(format('revoke %s on table %s from %I', rec.privilege_type, (obj->>'oid')::oid::regclass, rec.grantee::regrole));
end loop;
end loop;
foreach obj in array relations
loop
-- obj->>'oid' (text) needs to be casted to oid first for some reason
for rec in
select grantor, grantee, privilege_type, is_grantable
from aclexplode((obj->>'acl')::aclitem[])
where grantee::regrole in ('postgres', 'supabase_admin')
loop
execute(format('grant %s on table %s to %s %s'
, rec.privilege_type
, (obj->>'oid')::oid::regclass
, case when rec.grantee = 'postgres'::regrole then 'supabase_admin' else 'postgres' end
, case when rec.is_grantable then 'with grant option' else '' end));
end loop;
end loop;
if exists (select from pg_extension where extname = 'timescaledb') then
execute(format('select %s.timescaledb_post_restore()', (select pronamespace::regnamespace from pg_proc where proname = 'timescaledb_post_restore')));
end if;
if exists (select from pg_event_trigger where evtname = 'pgsodium_trg_mask_update') then
alter event trigger pgsodium_trg_mask_update enable;
end if;
end
$script_do$;
$script$;
dblink_schema text := (select extnamespace::regnamespace from pg_extension where extname = 'dblink');
rec record;
begin
-- Run script on database `postgres`
execute swap_postgres_supabase_admin_on_in_database_objects_script;
create schema _supabase_dblink;
if dblink_schema is null then
create extension dblink schema _supabase_dblink;
else
alter extension dblink set schema _supabase_dblink;
end if;
-- Run script on the rest of the dbs except template0.
-- Note that transaction across databases is not possible, so if a failure
-- occurs the script may not get rolled back on the other dbs.
for rec in
select * from pg_database where datname not in ('postgres', 'template0')
loop
perform _supabase_dblink.dblink_exec('dbname=' || quote_ident(rec.datname), swap_postgres_supabase_admin_on_in_database_objects_script);
end loop;
if dblink_schema is not null then
execute(format('alter extension dblink set schema %s', dblink_schema));
end if;
drop schema _supabase_dblink cascade;
end
$$;
do $$
declare
rec record;
begin
for rec in
select * from pg_database
loop
execute(format('alter database %I connection limit -1', rec.datname));
end loop;
end
$$;
set session authorization supabase_admin;
drop role supabase_tmp;
commit;
EOSQL
}