-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathresource_postgresql_role.go
955 lines (825 loc) · 26.3 KB
/
resource_postgresql_role.go
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
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
package postgresql
import (
"crypto/md5"
"database/sql"
"encoding/hex"
"errors"
"fmt"
"log"
"strconv"
"strings"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
"github.com/lib/pq"
)
const (
roleBypassRLSAttr = "bypass_row_level_security"
roleConnLimitAttr = "connection_limit"
roleCreateDBAttr = "create_database"
roleCreateRoleAttr = "create_role"
roleEncryptedPassAttr = "encrypted_password"
roleInheritAttr = "inherit"
roleLoginAttr = "login"
roleNameAttr = "name"
rolePasswordAttr = "password"
roleReplicationAttr = "replication"
roleSkipDropRoleAttr = "skip_drop_role"
roleSkipReassignOwnedAttr = "skip_reassign_owned"
roleSuperuserAttr = "superuser"
roleValidUntilAttr = "valid_until"
roleRolesAttr = "roles"
roleSearchPathAttr = "search_path"
roleStatementTimeoutAttr = "statement_timeout"
// Deprecated options
roleDepEncryptedAttr = "encrypted"
)
func resourcePostgreSQLRole() *schema.Resource {
return &schema.Resource{
Create: resourcePostgreSQLRoleCreate,
Read: resourcePostgreSQLRoleRead,
Update: resourcePostgreSQLRoleUpdate,
Delete: resourcePostgreSQLRoleDelete,
Exists: resourcePostgreSQLRoleExists,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
roleNameAttr: {
Type: schema.TypeString,
Required: true,
Description: "The name of the role",
},
rolePasswordAttr: {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Description: "Sets the role's password",
},
roleDepEncryptedAttr: {
Type: schema.TypeString,
Optional: true,
Deprecated: fmt.Sprintf("Rename PostgreSQL role resource attribute %q to %q", roleDepEncryptedAttr, roleEncryptedPassAttr),
},
roleRolesAttr: {
Type: schema.TypeSet,
Optional: true,
Elem: &schema.Schema{Type: schema.TypeString},
Set: schema.HashString,
MinItems: 0,
Description: "Role(s) to grant to this new role",
},
roleSearchPathAttr: {
Type: schema.TypeList,
Optional: true,
Elem: &schema.Schema{Type: schema.TypeString},
MinItems: 0,
Description: "Sets the role's search path",
},
roleEncryptedPassAttr: {
Type: schema.TypeBool,
Optional: true,
Default: true,
Description: "Control whether the password is stored encrypted in the system catalogs",
},
roleValidUntilAttr: {
Type: schema.TypeString,
Optional: true,
Default: "infinity",
Description: "Sets a date and time after which the role's password is no longer valid",
},
roleConnLimitAttr: {
Type: schema.TypeInt,
Optional: true,
Default: -1,
Description: "How many concurrent connections can be made with this role",
ValidateFunc: validation.IntAtLeast(-1),
},
roleSuperuserAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: `Determine whether the new role is a "superuser"`,
},
roleCreateDBAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Define a role's ability to create databases",
},
roleCreateRoleAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Determine whether this role will be permitted to create new roles",
},
roleInheritAttr: {
Type: schema.TypeBool,
Optional: true,
Default: true,
Description: `Determine whether a role "inherits" the privileges of roles it is a member of`,
},
roleLoginAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Determine whether a role is allowed to log in",
},
roleReplicationAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Determine whether a role is allowed to initiate streaming replication or put the system in and out of backup mode",
},
roleBypassRLSAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Determine whether a role bypasses every row-level security (RLS) policy",
},
roleSkipDropRoleAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Skip actually running the DROP ROLE command when removing a ROLE from PostgreSQL",
},
roleSkipReassignOwnedAttr: {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: "Skip actually running the REASSIGN OWNED command when removing a role from PostgreSQL",
},
roleStatementTimeoutAttr: {
Type: schema.TypeInt,
Optional: true,
Description: "Abort any statement that takes more than the specified number of milliseconds",
ValidateFunc: validation.IntAtLeast(0),
},
},
}
}
func resourcePostgreSQLRoleCreate(d *schema.ResourceData, meta interface{}) error {
c := meta.(*Client)
c.catalogLock.Lock()
defer c.catalogLock.Unlock()
txn, err := c.DB().Begin()
if err != nil {
return err
}
defer deferredRollback(txn)
stringOpts := []struct {
hclKey string
sqlKey string
}{
{rolePasswordAttr, "PASSWORD"},
{roleValidUntilAttr, "VALID UNTIL"},
}
intOpts := []struct {
hclKey string
sqlKey string
}{
{roleConnLimitAttr, "CONNECTION LIMIT"},
}
type boolOptType struct {
hclKey string
sqlKeyEnable string
sqlKeyDisable string
}
boolOpts := []boolOptType{
{roleSuperuserAttr, "SUPERUSER", "NOSUPERUSER"},
{roleCreateDBAttr, "CREATEDB", "NOCREATEDB"},
{roleCreateRoleAttr, "CREATEROLE", "NOCREATEROLE"},
{roleInheritAttr, "INHERIT", "NOINHERIT"},
{roleLoginAttr, "LOGIN", "NOLOGIN"},
// roleEncryptedPassAttr is used only when rolePasswordAttr is set.
// {roleEncryptedPassAttr, "ENCRYPTED", "UNENCRYPTED"},
}
if c.featureSupported(featureRLS) {
boolOpts = append(boolOpts, boolOptType{roleBypassRLSAttr, "BYPASSRLS", "NOBYPASSRLS"})
}
if c.featureSupported(featureReplication) {
boolOpts = append(boolOpts, boolOptType{roleReplicationAttr, "REPLICATION", "NOREPLICATION"})
}
createOpts := make([]string, 0, len(stringOpts)+len(intOpts)+len(boolOpts))
for _, opt := range stringOpts {
v, ok := d.GetOk(opt.hclKey)
if !ok {
continue
}
val := v.(string)
if val != "" {
switch {
case opt.hclKey == rolePasswordAttr:
if strings.ToUpper(v.(string)) == "NULL" {
createOpts = append(createOpts, "PASSWORD NULL")
} else {
if d.Get(roleEncryptedPassAttr).(bool) {
createOpts = append(createOpts, "ENCRYPTED")
} else {
createOpts = append(createOpts, "UNENCRYPTED")
}
createOpts = append(createOpts, fmt.Sprintf("%s '%s'", opt.sqlKey, pqQuoteLiteral(val)))
}
case opt.hclKey == roleValidUntilAttr:
switch {
case v.(string) == "", strings.ToLower(v.(string)) == "infinity":
createOpts = append(createOpts, fmt.Sprintf("%s '%s'", opt.sqlKey, "infinity"))
default:
createOpts = append(createOpts, fmt.Sprintf("%s '%s'", opt.sqlKey, pqQuoteLiteral(val)))
}
default:
createOpts = append(createOpts, fmt.Sprintf("%s %s", opt.sqlKey, pq.QuoteIdentifier(val)))
}
}
}
for _, opt := range intOpts {
val := d.Get(opt.hclKey).(int)
createOpts = append(createOpts, fmt.Sprintf("%s %d", opt.sqlKey, val))
}
for _, opt := range boolOpts {
if opt.hclKey == roleEncryptedPassAttr {
// This attribute is handled above in the stringOpts
// loop.
continue
}
val := d.Get(opt.hclKey).(bool)
valStr := opt.sqlKeyDisable
if val {
valStr = opt.sqlKeyEnable
}
createOpts = append(createOpts, valStr)
}
roleName := d.Get(roleNameAttr).(string)
createStr := strings.Join(createOpts, " ")
if len(createOpts) > 0 {
if c.featureSupported(featureCreateRoleWith) {
createStr = " WITH " + createStr
} else {
// NOTE(seanc@): Work around ParAccel/AWS RedShift's ancient fork of PostgreSQL
createStr = " " + createStr
}
}
sql := fmt.Sprintf("CREATE ROLE %s%s", pq.QuoteIdentifier(roleName), createStr)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("error creating role %s: %w", roleName, err)
}
if err = grantRoles(txn, d); err != nil {
return err
}
if err = alterSearchPath(txn, d); err != nil {
return err
}
if err = setStatementTimeout(txn, d); err != nil {
return err
}
if err = txn.Commit(); err != nil {
return fmt.Errorf("could not commit transaction: %w", err)
}
d.SetId(roleName)
return resourcePostgreSQLRoleReadImpl(c, d)
}
func resourcePostgreSQLRoleDelete(d *schema.ResourceData, meta interface{}) error {
c := meta.(*Client)
c.catalogLock.Lock()
defer c.catalogLock.Unlock()
txn, err := c.DB().Begin()
if err != nil {
return err
}
defer deferredRollback(txn)
roleName := d.Get(roleNameAttr).(string)
if !d.Get(roleSkipReassignOwnedAttr).(bool) {
if err := withRolesGranted(txn, []string{roleName}, func() error {
currentUser := c.config.getDatabaseUsername()
if _, err := txn.Exec(fmt.Sprintf("REASSIGN OWNED BY %s TO %s", pq.QuoteIdentifier(roleName), pq.QuoteIdentifier(currentUser))); err != nil {
return fmt.Errorf("could not reassign owned by role %s to %s: %w", roleName, currentUser, err)
}
if _, err := txn.Exec(fmt.Sprintf("DROP OWNED BY %s", pq.QuoteIdentifier(roleName))); err != nil {
return fmt.Errorf("could not drop owned by role %s: %w", roleName, err)
}
return nil
}); err != nil {
return err
}
}
if !d.Get(roleSkipDropRoleAttr).(bool) {
if _, err := txn.Exec(fmt.Sprintf("DROP ROLE %s", pq.QuoteIdentifier(roleName))); err != nil {
return fmt.Errorf("could not delete role %s: %w", roleName, err)
}
}
if err := txn.Commit(); err != nil {
return fmt.Errorf("Error committing schema: %w", err)
}
d.SetId("")
return nil
}
func resourcePostgreSQLRoleExists(d *schema.ResourceData, meta interface{}) (bool, error) {
c := meta.(*Client)
c.catalogLock.RLock()
defer c.catalogLock.RUnlock()
var roleName string
err := c.DB().QueryRow("SELECT rolname FROM pg_catalog.pg_roles WHERE rolname=$1", d.Id()).Scan(&roleName)
switch {
case err == sql.ErrNoRows:
return false, nil
case err != nil:
return false, err
}
return true, nil
}
func resourcePostgreSQLRoleRead(d *schema.ResourceData, meta interface{}) error {
c := meta.(*Client)
c.catalogLock.RLock()
defer c.catalogLock.RUnlock()
return resourcePostgreSQLRoleReadImpl(c, d)
}
func resourcePostgreSQLRoleReadImpl(c *Client, d *schema.ResourceData) error {
var roleSuperuser, roleInherit, roleCreateRole, roleCreateDB, roleCanLogin, roleReplication, roleBypassRLS bool
var roleConnLimit int
var roleName, roleValidUntil string
var roleRoles, roleConfig pq.ByteaArray
roleID := d.Id()
columns := []string{
"rolname",
"rolsuper",
"rolinherit",
"rolcreaterole",
"rolcreatedb",
"rolcanlogin",
"rolconnlimit",
`COALESCE(rolvaliduntil::TEXT, 'infinity')`,
"rolconfig",
}
values := []interface{}{
&roleRoles,
&roleName,
&roleSuperuser,
&roleInherit,
&roleCreateRole,
&roleCreateDB,
&roleCanLogin,
&roleConnLimit,
&roleValidUntil,
&roleConfig,
}
if c.featureSupported(featureReplication) {
columns = append(columns, "rolreplication")
values = append(values, &roleReplication)
}
if c.featureSupported(featureRLS) {
columns = append(columns, "rolbypassrls")
values = append(values, &roleBypassRLS)
}
roleSQL := fmt.Sprintf(`SELECT ARRAY(
SELECT pg_get_userbyid(roleid) FROM pg_catalog.pg_auth_members members WHERE member = pg_roles.oid
), %s
FROM pg_catalog.pg_roles WHERE rolname=$1`,
// select columns
strings.Join(columns, ", "),
)
err := c.DB().QueryRow(roleSQL, roleID).Scan(values...)
switch {
case err == sql.ErrNoRows:
log.Printf("[WARN] PostgreSQL ROLE (%s) not found", roleID)
d.SetId("")
return nil
case err != nil:
return fmt.Errorf("Error reading ROLE: %w", err)
}
d.Set(roleNameAttr, roleName)
d.Set(roleConnLimitAttr, roleConnLimit)
d.Set(roleCreateDBAttr, roleCreateDB)
d.Set(roleCreateRoleAttr, roleCreateRole)
d.Set(roleEncryptedPassAttr, true)
d.Set(roleInheritAttr, roleInherit)
d.Set(roleLoginAttr, roleCanLogin)
d.Set(roleSkipDropRoleAttr, d.Get(roleSkipDropRoleAttr).(bool))
d.Set(roleSkipReassignOwnedAttr, d.Get(roleSkipReassignOwnedAttr).(bool))
d.Set(roleSuperuserAttr, roleSuperuser)
d.Set(roleValidUntilAttr, roleValidUntil)
d.Set(roleReplicationAttr, roleReplication)
d.Set(roleBypassRLSAttr, roleBypassRLS)
d.Set(roleRolesAttr, pgArrayToSet(roleRoles))
d.Set(roleSearchPathAttr, readSearchPath(roleConfig))
statementTimeout, err := readStatementTimeout(roleConfig)
if err != nil {
return err
}
d.Set(roleStatementTimeoutAttr, statementTimeout)
d.SetId(roleName)
password, err := readRolePassword(c, d, roleCanLogin)
if err != nil {
return err
}
d.Set(rolePasswordAttr, password)
return nil
}
// readSearchPath searches for a search_path entry in the rolconfig array.
// In case no such value is present, it returns nil.
func readSearchPath(roleConfig pq.ByteaArray) []string {
for _, v := range roleConfig {
config := string(v)
if strings.HasPrefix(config, roleSearchPathAttr) {
var result = strings.Split(strings.TrimPrefix(config, roleSearchPathAttr+"="), ", ")
for i := range result {
result[i] = strings.Trim(result[i], `"`)
}
return result
}
}
return nil
}
// readStatementTimeout searches for a statement_timeout entry in the rolconfig array.
// In case no such value is present, it returns nil.
func readStatementTimeout(roleConfig pq.ByteaArray) (int, error) {
for _, v := range roleConfig {
config := string(v)
if strings.HasPrefix(config, roleStatementTimeoutAttr) {
var result = strings.Split(strings.TrimPrefix(config, roleStatementTimeoutAttr+"="), ", ")
res, err := strconv.Atoi(result[0])
if err != nil {
return -1, fmt.Errorf("Error reading statement_timeout: %w", err)
}
return res, nil
}
}
return 0, nil
}
// readRolePassword reads password either from Postgres if admin user is a superuser
// or only from Terraform state.
func readRolePassword(c *Client, d *schema.ResourceData, roleCanLogin bool) (string, error) {
statePassword := d.Get(rolePasswordAttr).(string)
// Role which cannot login does not have password in pg_shadow.
// Also, if user specifies that admin is not a superuser we don't try to read pg_shadow
// (only superuser can read pg_shadow)
if !roleCanLogin || !c.config.Superuser {
return statePassword, nil
}
// Otherwise we check if connected user is really a superuser
// (in order to warn user instead of having a permission denied error)
superuser, err := c.isSuperuser()
if err != nil {
return "", err
}
if !superuser {
return "", fmt.Errorf(
"could not read role password from Postgres as "+
"connected user %s is not a SUPERUSER. "+
"You can set `superuser = false` in the provider configuration "+
"so it will not try to read the password from Postgres",
c.config.getDatabaseUsername(),
)
}
var rolePassword string
err = c.DB().QueryRow("SELECT COALESCE(passwd, '') FROM pg_catalog.pg_shadow AS s WHERE s.usename = $1", d.Id()).Scan(&rolePassword)
switch {
case err == sql.ErrNoRows:
// They don't have a password
return "", nil
case err != nil:
return "", fmt.Errorf("Error reading role: %w", err)
}
// If the password isn't already in md5 format, but hashing the input
// matches the password in the database for the user, they are the same
if statePassword != "" && !strings.HasPrefix(statePassword, "md5") && !strings.HasPrefix(statePassword, "SCRAM-SHA-256") {
if strings.HasPrefix(rolePassword, "md5") {
hasher := md5.New()
hasher.Write([]byte(statePassword + d.Id()))
hashedPassword := "md5" + hex.EncodeToString(hasher.Sum(nil))
if hashedPassword == rolePassword {
// The passwords are actually the same
// make Terraform think they are the same
return statePassword, nil
}
}
if strings.HasPrefix(rolePassword, "SCRAM-SHA-256") {
return statePassword, nil
// TODO : implement scram-sha-256 challenge request to the server
}
}
return rolePassword, nil
}
func resourcePostgreSQLRoleUpdate(d *schema.ResourceData, meta interface{}) error {
c := meta.(*Client)
c.catalogLock.Lock()
defer c.catalogLock.Unlock()
txn, err := c.DB().Begin()
if err != nil {
return err
}
defer deferredRollback(txn)
if err := setRoleName(txn, d); err != nil {
return err
}
if err := setRolePassword(txn, d); err != nil {
return err
}
if err := setRoleBypassRLS(c, txn, d); err != nil {
return err
}
if err := setRoleConnLimit(txn, d); err != nil {
return err
}
if err := setRoleCreateDB(txn, d); err != nil {
return err
}
if err := setRoleCreateRole(txn, d); err != nil {
return err
}
if err := setRoleInherit(txn, d); err != nil {
return err
}
if err := setRoleLogin(txn, d); err != nil {
return err
}
if err := setRoleReplication(txn, d); err != nil {
return err
}
if err := setRoleSuperuser(txn, d); err != nil {
return err
}
if err := setRoleValidUntil(txn, d); err != nil {
return err
}
// applying roles: let's revoke all / grant the right ones
if err = revokeRoles(txn, d); err != nil {
return err
}
if err = grantRoles(txn, d); err != nil {
return err
}
if err = alterSearchPath(txn, d); err != nil {
return err
}
if err = setStatementTimeout(txn, d); err != nil {
return err
}
if err = txn.Commit(); err != nil {
return fmt.Errorf("could not commit transaction: %w", err)
}
return resourcePostgreSQLRoleReadImpl(c, d)
}
func setRoleName(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleNameAttr) {
return nil
}
oraw, nraw := d.GetChange(roleNameAttr)
o := oraw.(string)
n := nraw.(string)
if n == "" {
return errors.New("Error setting role name to an empty string")
}
sql := fmt.Sprintf("ALTER ROLE %s RENAME TO %s", pq.QuoteIdentifier(o), pq.QuoteIdentifier(n))
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role NAME: %w", err)
}
d.SetId(n)
return nil
}
func setRolePassword(txn *sql.Tx, d *schema.ResourceData) error {
// If role is renamed, password is reset (as the md5 sum is also base on the role name)
// so we need to update it
if !d.HasChange(rolePasswordAttr) && !d.HasChange(roleNameAttr) {
return nil
}
roleName := d.Get(roleNameAttr).(string)
password := d.Get(rolePasswordAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s PASSWORD '%s'", pq.QuoteIdentifier(roleName), pqQuoteLiteral(password))
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role password: %w", err)
}
return nil
}
func setRoleBypassRLS(c *Client, txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleBypassRLSAttr) {
return nil
}
if !c.featureSupported(featureRLS) {
return fmt.Errorf("PostgreSQL client is talking with a server (%q) that does not support PostgreSQL Row-Level Security", c.version.String())
}
bypassRLS := d.Get(roleBypassRLSAttr).(bool)
tok := "NOBYPASSRLS"
if bypassRLS {
tok = "BYPASSRLS"
}
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s WITH %s", pq.QuoteIdentifier(roleName), tok)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role BYPASSRLS: %w", err)
}
return nil
}
func setRoleConnLimit(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleConnLimitAttr) {
return nil
}
connLimit := d.Get(roleConnLimitAttr).(int)
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s CONNECTION LIMIT %d", pq.QuoteIdentifier(roleName), connLimit)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role CONNECTION LIMIT: %w", err)
}
return nil
}
func setRoleCreateDB(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleCreateDBAttr) {
return nil
}
createDB := d.Get(roleCreateDBAttr).(bool)
tok := "NOCREATEDB"
if createDB {
tok = "CREATEDB"
}
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s WITH %s", pq.QuoteIdentifier(roleName), tok)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role CREATEDB: %w", err)
}
return nil
}
func setRoleCreateRole(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleCreateRoleAttr) {
return nil
}
createRole := d.Get(roleCreateRoleAttr).(bool)
tok := "NOCREATEROLE"
if createRole {
tok = "CREATEROLE"
}
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s WITH %s", pq.QuoteIdentifier(roleName), tok)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role CREATEROLE: %w", err)
}
return nil
}
func setRoleInherit(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleInheritAttr) {
return nil
}
inherit := d.Get(roleInheritAttr).(bool)
tok := "NOINHERIT"
if inherit {
tok = "INHERIT"
}
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s WITH %s", pq.QuoteIdentifier(roleName), tok)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role INHERIT: %w", err)
}
return nil
}
func setRoleLogin(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleLoginAttr) {
return nil
}
login := d.Get(roleLoginAttr).(bool)
tok := "NOLOGIN"
if login {
tok = "LOGIN"
}
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s WITH %s", pq.QuoteIdentifier(roleName), tok)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role LOGIN: %w", err)
}
return nil
}
func setRoleReplication(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleReplicationAttr) {
return nil
}
replication := d.Get(roleReplicationAttr).(bool)
tok := "NOREPLICATION"
if replication {
tok = "REPLICATION"
}
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s WITH %s", pq.QuoteIdentifier(roleName), tok)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role REPLICATION: %w", err)
}
return nil
}
func setRoleSuperuser(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleSuperuserAttr) {
return nil
}
superuser := d.Get(roleSuperuserAttr).(bool)
tok := "NOSUPERUSER"
if superuser {
tok = "SUPERUSER"
}
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s WITH %s", pq.QuoteIdentifier(roleName), tok)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role SUPERUSER: %w", err)
}
return nil
}
func setRoleValidUntil(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleValidUntilAttr) {
return nil
}
validUntil := d.Get(roleValidUntilAttr).(string)
if validUntil == "" {
return nil
} else if strings.ToLower(validUntil) == "infinity" {
validUntil = "infinity"
}
roleName := d.Get(roleNameAttr).(string)
sql := fmt.Sprintf("ALTER ROLE %s VALID UNTIL '%s'", pq.QuoteIdentifier(roleName), pqQuoteLiteral(validUntil))
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("Error updating role VALID UNTIL: %w", err)
}
return nil
}
func revokeRoles(txn *sql.Tx, d *schema.ResourceData) error {
role := d.Get(roleNameAttr).(string)
query := `SELECT pg_get_userbyid(roleid)
FROM pg_catalog.pg_auth_members members
JOIN pg_catalog.pg_roles ON members.member = pg_roles.oid
WHERE rolname = $1`
rows, err := txn.Query(query, role)
if err != nil {
return fmt.Errorf("could not get roles list for role %s: %w", role, err)
}
defer rows.Close()
grantedRoles := []string{}
for rows.Next() {
var grantedRole string
if err = rows.Scan(&grantedRole); err != nil {
return fmt.Errorf("could not scan role name for role %s: %w", role, err)
}
// We cannot revoke directly here as it shares the same cursor (with Tx)
// and rows.Next seems to retrieve result row by row.
// see: https://github.com/lib/pq/issues/81
grantedRoles = append(grantedRoles, grantedRole)
}
for _, grantedRole := range grantedRoles {
query = fmt.Sprintf("REVOKE %s FROM %s", pq.QuoteIdentifier(grantedRole), pq.QuoteIdentifier(role))
log.Printf("[DEBUG] revoking role %s from %s", grantedRole, role)
if _, err := txn.Exec(query); err != nil {
return fmt.Errorf("could not revoke role %s from %s: %w", string(grantedRole), role, err)
}
}
return nil
}
func grantRoles(txn *sql.Tx, d *schema.ResourceData) error {
role := d.Get(roleNameAttr).(string)
for _, grantingRole := range d.Get("roles").(*schema.Set).List() {
query := fmt.Sprintf(
"GRANT %s TO %s", pq.QuoteIdentifier(grantingRole.(string)), pq.QuoteIdentifier(role),
)
if _, err := txn.Exec(query); err != nil {
return fmt.Errorf("could not grant role %s to %s: %w", grantingRole, role, err)
}
}
return nil
}
func alterSearchPath(txn *sql.Tx, d *schema.ResourceData) error {
role := d.Get(roleNameAttr).(string)
searchPathInterface := d.Get(roleSearchPathAttr).([]interface{})
var searchPathString []string
if len(searchPathInterface) > 0 {
searchPathString = make([]string, len(searchPathInterface))
for i, searchPathPart := range searchPathInterface {
if strings.Contains(searchPathPart.(string), ", ") {
return fmt.Errorf("search_path cannot contain `, `: %v", searchPathPart)
}
searchPathString[i] = pq.QuoteIdentifier(searchPathPart.(string))
}
} else {
searchPathString = []string{"DEFAULT"}
}
searchPath := strings.Join(searchPathString[:], ", ")
query := fmt.Sprintf(
"ALTER ROLE %s SET search_path TO %s", pq.QuoteIdentifier(role), searchPath,
)
if _, err := txn.Exec(query); err != nil {
return fmt.Errorf("could not set search_path %s for %s: %w", searchPath, role, err)
}
return nil
}
func setStatementTimeout(txn *sql.Tx, d *schema.ResourceData) error {
if !d.HasChange(roleStatementTimeoutAttr) {
return nil
}
roleName := d.Get(roleNameAttr).(string)
statementTimeout := d.Get(roleStatementTimeoutAttr).(int)
if statementTimeout != 0 {
sql := fmt.Sprintf(
"ALTER ROLE %s SET statement_timeout TO %d", pq.QuoteIdentifier(roleName), statementTimeout,
)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("could not set statement_timeout %d for %s: %w", statementTimeout, roleName, err)
}
} else {
sql := fmt.Sprintf(
"ALTER ROLE %s RESET statement_timeout", pq.QuoteIdentifier(roleName),
)
if _, err := txn.Exec(sql); err != nil {
return fmt.Errorf("could not reset statement_timeout for %s: %w", roleName, err)
}
}
return nil
}