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
|
{ config, lib, pkgs, ... }:
let
inherit (builtins)
elemAt filter isAttrs isList length trace ;
inherit (lib)
attrNames concatMapStrings concatMapStringsSep concatStrings
concatStringsSep filterAttrs flatten mapAttrsToList mkIf mkOption
optionalString replaceStrings splitString types ;
inherit (types)
attrsOf either listOf str submodule ;
explicit = filterAttrs (n: v: n != "_module" && v != null);
inherit (config.nixsap.apps.mariadb) roles;
basicRoles = filterAttrs (_: v: isAttrs v) roles;
topRoles = filterAttrs (_: v: isList v) roles;
allRoles = attrNames roles;
sqlList = concatMapStringsSep ", " (i: "'${i}'");
concatMapAttrs = f: attrs: concatStrings (mapAttrsToList f attrs);
schemaName = object: elemAt (splitString "." object) 0;
isSchema = object:
let p = splitString "." object;
n = length p;
in (n == 1)
|| (n == 2 && (elemAt p 1) == "%")
|| ((elemAt p 1) == "%" && (elemAt p 2) == "%");
tableName = object: elemAt (splitString "." object) 1;
isTable = object:
let p = splitString "." object;
n = length p;
in (n == 2 && (elemAt p 1) != "%")
|| (n > 2 && (elemAt p 2) == "%");
columnName = object: elemAt (splitString "." object) 2;
isColumn = object:
let p = splitString "." object;
n = length p;
in (n > 2 && (elemAt p 2) != "%");
grant = role: privileges:
{
schemas = concatMapAttrs (priv: objects:
concatMapStrings (o:
let
db = schemaName o;
p = "${replaceStrings [" "] ["_"] priv}_priv";
in ''
SELECT 'GRANT ${priv} ON `${db}`.* TO \'${role}\';'
FROM information_schema.schemata -- Not really used, but for syntax and locks
WHERE NOT EXISTS (
SELECT 1 FROM db
WHERE db.host = ${"''"} -- role, not user
AND db.user = '${role}'
AND '${db}' LIKE db.db
AND db.${p} = 'Y'
) LIMIT 1;
'') (filter isSchema (flatten [objects]))
) (explicit privileges);
tables = concatMapAttrs (priv: objects:
concatMapStrings (o: ''
SELECT CONCAT('GRANT ${priv} ON `', t.table_schema, '`.`', t.table_name, '` TO \'${role}\';')
FROM information_schema.tables t
WHERE t.table_schema LIKE '${schemaName o}'
AND t.table_name LIKE '${tableName o}'
AND NOT EXISTS (
SELECT 1 FROM mysql.tables_priv
WHERE tables_priv.host = ${"''"} -- role, not user
AND tables_priv.user = '${role}'
AND tables_priv.db = t.table_schema
AND tables_priv.table_name = t.table_name
AND FIND_IN_SET('${priv}', tables_priv.table_priv) > 0
);
'') (filter isTable (flatten [objects]))
) (explicit privileges);
columns = concatMapAttrs (priv: objects:
let colObjs = filter isColumn (flatten [objects]);
in optionalString ([] != colObjs) (''
SELECT CONCAT ('GRANT ${priv}(',
GROUP_CONCAT(DISTINCT c.column_name SEPARATOR ','),
') ON `', c.table_schema, '`.`', c.table_name, '` TO \'${role}\';')
FROM information_schema.columns c WHERE (
'' + concatMapStringsSep " OR " (o:
''
( c.table_schema LIKE '${schemaName o}' AND
c.table_name LIKE '${tableName o}' AND
c.column_name LIKE '${columnName o}')
'') colObjs
+
''
) AND NOT EXISTS (
SELECT 1 FROM columns_priv
WHERE columns_priv.host = ${"''"} -- role, not user
AND columns_priv.user = '${role}'
AND columns_priv.db = c.table_schema
AND columns_priv.table_name = c.table_name
AND columns_priv.column_name = c.column_name
AND FIND_IN_SET('${priv}', columns_priv.column_priv) > 0
) GROUP BY CONCAT(c.table_schema, c.table_name);
'')
) (explicit privileges);
};
refreshRolesSQL =
let
sql = concatMapAttrs (role: privileges: ''
${(grant role privileges).schemas}
${(grant role privileges).tables}
${(grant role privileges).columns}
'') basicRoles;
in pkgs.writeText "refresh-roles.sql" sql;
refreshRoles = pkgs.writeBashScriptBin "refreshRoles" ''
set -euo pipefail
doze() {
difference=$(($(date -d "08:00" +%s) - $(date +%s)))
if [ $difference -lt 0 ]; then
sleep $((86400 + difference))
else
sleep $difference
fi
}
while true; do
while ! mysql -e ';'; do
sleep 5s
done
tmp=$(mktemp)
trap 'rm -f "$tmp"' EXIT
mysql -N mysql < ${refreshRolesSQL} >> "$tmp"
mysql -v mysql < "$tmp"
doze
done
'';
addRoles = ''
${concatMapStrings (r: "CREATE ROLE IF NOT EXISTS '${r}';\n") (attrNames roles)}
${concatStrings
(mapAttrsToList (role: subroles: ''
${concatMapStringsSep "\n" (r: "GRANT '${r}' TO '${role}';") subroles}
'') topRoles)
}
'';
revokeRoles = ''
${concatMapAttrs (role: subroles: ''
SELECT CONCAT('REVOKE \''', role, '\' FROM \''', user, '\';') FROM roles_mapping
WHERE user = '${role}'
AND role NOT IN (${sqlList subroles});
'') topRoles
}
SELECT CONCAT('DROP ROLE \''', user, '\';') FROM user WHERE is_role='Y'
${optionalString (allRoles != []) "AND user NOT IN (${sqlList allRoles})"}
;
'';
roleType =
let
objects = mkOption {
type = either str (listOf str);
default = [];
example = [
"%bleep.%.created\_at"
"%bob\_live\_sg.brand\_type"
"%bob\_live\_sg.catalog%"
"%bob\_live\_sg.supplier.status"
"bar.%"
"beep"
"foo.%.%"
];
};
basicRole = submodule {
options.nixsap = {
"ALL" = objects;
"ALTER" = objects;
"CREATE" = objects;
"DELETE" = objects;
"DROP" = objects;
"INDEX" = objects;
"INSERT" = objects;
"SELECT" = objects;
"SHOW VIEW" = objects;
"UPDATE" = objects;
};
};
topRole = listOf str;
in either basicRole topRole;
in {
options.nixsap.apps.mariadb = {
roles = mkOption {
type = attrsOf roleType;
default = {};
description = ''
Defines MariaDB roles. A role can be a "basic" one or a "top"
one. The basic roles are granted of regular privileges like SELECT
or UPDATE, while the top roles are granted of other roles. For basic
roles MySQL wildcards ("%" and "_") can be used to specify objects
to be granted on, including databases, tables and columns names. A
script runs periodically to find all matching objects and grants on
them. Objects are denoted as "schema[.table[.column]]".
'';
example = {
top_role = [ "basic_role" ];
basic_role = {
SELECT = [
"%bob\_live\_sg.brand\_type"
"%bob\_live\_sg.catalog%"
"%bob\_live\_sg.supplier.created\_at"
"%bob\_live\_sg.supplier.id\_supplier"
"%bob\_live\_sg.supplier.name%"
"%bob\_live\_sg.supplier.status"
"%bob\_live\_sg.supplier.type"
"%bob\_live\_sg.supplier.updated\_at"
];
};
monitoring = {
SELECT = [
"%.%.created_at"
];
};
};
};
};
config = {
nixsap.apps.mariadb.configure = optionalString (roles != {}) addRoles;
nixsap.apps.mariadb.configure' = revokeRoles;
systemd.services.mariadb-roles = mkIf (basicRoles != {}) {
description = "refresh MariaDB basic roles";
after = [ "mariadb.service" "mariadb-maintenance.service" ];
wantedBy = [ "multi-user.target" ];
path = [ pkgs.mariadb ];
serviceConfig = {
ExecStart = "${refreshRoles}/bin/refreshRoles";
User = config.nixsap.apps.mariadb.user;
Restart = "always";
};
};
};
}
|