summaryrefslogtreecommitdiff
path: root/lib/gitano/config.lua
blob: 865e22284b846d4d03081aae04426b9780c18907 (plain)
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
-- gitano.config
--
-- Load, parse, manage etc configuration for gitano
--
-- Note: This is only the admin repo management, not the
-- generic repository rules management (see gitano.lace for that).
--
-- Copyright 2012 Daniel Silverstone <dsilvers@digital-scurf.org>
--

local gall = require 'gall'
local log = require 'gitano.log'
local lace = require 'gitano.lace'
local sio = require 'luxio.simple'
local clod = require 'clod'

local pcall = pcall
local pairs = pairs
local tconcat = table.concat

local lib_bin_path = "/tmp/DOES_NOT_EXIST"
local share_path = "/tmp/DOES_NOT_EXIST"
local repo_path = "/tmp/DOES_NOT_EXIST"

local admin_name = { 
   realname = "Gitano", 
   email = "gitano@gitano-admin.git" 
}

local required_confs = {
   site_name = "string",
}

local function repository()
   return require 'gitano.repository'
end

-- Handy Metatable so user.real_name etc works
local user_mt = {}

function user_mt:__index(key)
   return self.clod.settings[key]
end

function user_mt:__newindex(key, value)
   self.clod.settings[key] = value
end

local function parse_admin_config(commit)
   local gittree = commit.content.tree
   local flat_tree = gall.tree.flatten(gittree.content)

   local function is_blob(thingy)
      return thingy and thingy.type and thingy.type == "blob"
   end

   if not is_blob(flat_tree["site.conf"]) then
      return nil, "No site.conf"
   end
   if not is_blob(flat_tree["rules/core.lace"]) then
      return nil, "No core rules file"
   end

   local conf, err =
      clod.parse(flat_tree["site.conf"].obj.content,
		   "gitano-admin:" .. commit.sha .. ":site.conf")

   if not conf then
      return nil, err
   end

   -- Parsed site.conf, check for core config entries

   for k, t in pairs(required_confs) do
      if type(conf.settings[k]) ~= t then
	 return nil, ("Error in %s [%s] expected %s got %s"):format("gitano-admin:" .. commit.sha .. ":site.conf", k, t, type(conf.settings[k]))
      end
   end

   -- Gather the users
   local users = {}
   for filename, obj in pairs(flat_tree) do
      local prefix, username = filename:match("^(users/.-)([a-z][a-z0-9_-]+)/user%.conf$")
      if prefix and username then
	 if not is_blob(obj) then
	    return nil, prefix .. username .. "/user.conf is not a blob?"
	 end
	 if users[username] then
	    return nil, "Duplicate user name: " .. username
	 end
	 -- Found a user, fill them out
	 local user_clod, err =
	    clod.parse(obj.obj.content,
			 commit.sha .. ":" .. prefix .. username .. "/user.conf")

	 if not user_clod then
	    return nil, err
	 end

	 if type(user_clod.settings.real_name) ~= "string" then
	    return nil, "gitano-admin:" .. commit.sha .. ":" .. prefix .. username .. "/user.conf missing real_name"
	 end
	 if (user_clod.settings.email_address and
	     type(user_clod.settings.email_address) ~= "string") then
	    return nil, "gitano-admin:" .. commit.sha .. ":" .. prefix .. username .. "/user.conf email_address is bad"
	 end
	 users[username] = setmetatable({ clod = user_clod,
					  keys = {},
					  meta = { prefix = prefix },
					}, user_mt)
      end
   end

   -- Now gather the users' keys
   local all_keys = {}
   for filename, obj in pairs(flat_tree) do
      local prefix, username, keyname = filename:match("^(users/.-)([a-z][a-z0-9_-]+)/([a-z][a-z0-9_-]+)%.key$")
      if prefix and username and keyname then
	 if not users[username] then
	    return nil, "Found a key (" .. keyname .. ") for " .. username .. " which lacks a user.conf"
	 end
	 local this_key = obj.obj.content

	 this_key = this_key:gsub("\n*$", "")

	 if this_key:match("\n") then
	    return nil, "Key " .. filename .. " has newlines in it -- is it in the wrong format?"
	 end

	 local keytype, keydata, keytag = this_key:match("^([^ ]+) ([^ ]+) ([^ ].*)$")
	 if not (keytype and keydata and keytag) then
	    return nil, "Unable to parse key, " .. filename .. " did not smell like an OpenSSH v2 key"
	 end
	 if (keytype ~= "ssh-rsa") and (keytype ~= "ssh-dss") and
	    (keytype ~= "ecdsa-sha2-nistp256") and 
	    (keytype ~= "ecdsa-sha2-nistp384") and
	    (keytype ~= "ecdsa-sha2-nistp521") then
	    return nil, "Unknown key type " .. keytype .. " in " .. filename
	 end

	 if all_keys[this_key] then
	    return nil, ("Duplicate key found at (" .. keyname .. 
			 ") for " .. username .. ".  Previously found as (" ..
			    all_keys[this_key].keyname .. ") for " ..
			    all_keys[this_key].username)
	 end
	 all_keys[this_key] = { keyname = keyname, username = username }
	 users[username].keys[keyname] = { 
	    data = this_key, 
	    keyname = keyname, 
	    username = username, 
	    keytag = keytag,
	 }
      end
   end

   -- Now gather the groups
   local groups = {}
   for filename, obj in pairs(flat_tree) do
      local prefix, groupname = filename:match("^(groups/.-)([a-z][a-z0-9_-]+)%.conf$")
      if prefix and groupname then
	 if groups[groupname] then
	    return nil, "Duplicate group name: " .. groupname
	 end
	 if not is_blob(obj) then
	    return nil, prefix .. groupname .. ".conf is not a blob?"
	 end
	 local group_clod, err =
	    clod.parse(obj.obj.content,
		       "gitano-admin:" .. commit.sha .. ":" .. 
			  prefix .. groupname .. ".conf", true)

	 if not group_clod then
	    return nil, err
	 end
	 if type(group_clod.settings.description) ~= "string" then
	    return nil, groupname .. ": No description?"
	 end
	 local group_globals = {
	    clod = group_clod,
	    settings = group_clod.settings,
	    members = {},
	    subgroups = {},
	 }
	 for i, member in ipairs(group_clod:get_list("members")) do
	    group_globals.members[i] = member
	    group_globals.members[member] = i
	 end
	 for i, subgroup in ipairs(group_clod:get_list("subgroups")) do
	    group_globals.subgroups[i] = subgroup
	    group_globals.subgroups[subgroup] = i
	 end
	 function group_globals.changed_tables()
	    group_globals.clod:set_list("members", group_globals.members)
	    group_globals.clod:set_list("subgroups", group_globals.subgroups)
	 end
	 groups[groupname] = group_globals
	 groups[groupname].meta = { prefix = prefix }
      end
   end   

   -- Attempt a clean flattening of each group to ensure no loops
   for gname, gtab in pairs(groups) do
      local all_members = {}
      local all_subgroups = {}
      local function add_group(grname, grtab, path) 
	 if not grtab then
	    log.fatal("Group", grname, "not found, when traversing", path)
	    return
	 end
	 if all_subgroups[grname] then
	    return nil, "Loop detected involving: " .. path
	 end
	 for _, un in ipairs(grtab.members) do
	    if users[un] then
	       all_members[un] = path
	    end
	 end
	 all_subgroups[grname] = true
	 for _, gn in ipairs(grtab.subgroups) do
	    local ok, msg = add_group(gn, groups[gn], path .. "!" .. gn)
	    if not ok then
	       return nil, msg
	    end
	 end
	 all_subgroups[grname] = false
	 return true
      end
      local ok, msg = add_group(gname, gtab, gname)
      if not ok then
	 return nil, msg
      end
      gtab.filtered_members = all_members
   end

   -- Finally, return an object representing this configuration

   local config = {
      clod = conf,
      global = conf.settings,
      users = users,
      groups = groups,
      content = flat_tree,
      commit = commit,
   }
   local msg
   config.repo, msg = repository().find(config, 'gitano-admin')
   if not config.repo then
      return nil, msg
   end

   -- Attempt to parse the lace against the admin repo which uses the core sha
   config.lace, msg = lace.compile(config.repo)
   if not config.lace then
      return nil, msg
   end

   -- Configure the logging system
   local log_prefix = config.global["log.prefix"]
   if log_prefix ~= nil then
      log.set_prefix(log_prefix)
   end

   return config
end

local function load_file_content(conf, filename)
   local entry = conf.content[filename]
   if not entry then
      return nil, "Not found: " .. conf.commit.sha .. "::" .. filename
   end
   if entry.type ~= "blob" then
      return nil, conf.commit.sha .. "::" .. filename .. ": Not a blob"
   end
   return entry.obj.content, conf.commit.sha .. "::" .. filename
end

local function has_global_hook(conf, hook)
   return (conf.content["global-hooks/" .. hook .. ".lua"] ~= nil and
	   conf.content["global-hooks/" .. hook .. ".lua"].type == "blob")
end

local function get_default_hook_content(conf, filename)
   return [[
(function(hookf, ...) return hookf(...) end)(...)
]], conf.commit.sha .. "::[[" .. filename .. "]]"
end

local function generate_ssh_config(conf)
   local ret = {"","### Gitano Keys ###"}
   for u, t in pairs(conf.users) do
      for ktag, keytab in pairs(t.keys) do
	 log.debug("Adding <" .. u .. "> <" .. ktag .. ">")
	 ret[#ret+1] = 
	    (('command="%s/gitano-auth \\"%s\\" \\"%s\\" \\"%s\\"",no-agent-forwarding,no-port-forwarding,no-pty,no-user-rc,no-X11-forwarding %s'):
	     format(lib_bin_path, repo_path, u, ktag, keytab.data))
      end
   end
   ret[#ret+1] = "### End Gitano Keys ###"
   ret[#ret+1] = ""
   return tconcat(ret, "\n")
end

local function update_ssh_keys(conf, ssh_path)
   local ssh_config = generate_ssh_config(conf)

   if not ssh_path then
      local home = luxio.getenv "HOME"

      if not home then
	 log.fatal("Unable to find HOME")
      end

      ssh_path = home .. "/.ssh/authorized_keys"
   end

   local create_path = ssh_path .. ".new"

   local cfh, err = sio.open(create_path, "cew")

   if not cfh or cfh == -1 then
      gitano.log.fatal("Unable to create " .. create_path)
   end

   cfh:write(ssh_config)
   cfh:close()

   local ret, errno = luxio.rename(create_path, ssh_path)
   if ret ~= 0 then
      log.fatal("Unable to overwrite " .. ssh_path)
   end

   log.chat "SSH authorised key file updated"
end

local function populate_context(conf, ctx, username)
   if ctx.user and not username then
      username = ctx.user
   end
   ctx.user = username
   local grps = {}
   for grp, gtab in pairs(conf.groups) do
      if gtab.filtered_members[username] then
	 -- Array for pattern matches
	 grps[#grps+1] = grp
	 -- Set for exact matches
	 grps[grp] = true
      end
   end
   ctx.group = grps
end

local function serialise_conf(tab)
   local ret = {}
   local keys = {}
   for k in pairs(tab) do
      keys[#keys+1] = k
   end
   table.sort(keys)
   for _, k in ipairs(keys) do
      ret[#ret+1] = ("%s = %q"):format(k,tab[k])
   end
   ret[#ret+1] = ""
   return table.concat(ret, "\n")
end

local function commit_config_changes(conf, desc, username)
   -- Take extant flat tree, clean out users and groups.
   -- write out everything we have here, and then prepare
   -- and write out a commit.
   local newtree = {}
   -- Shallow copy the tree ready for mods, skipping users and groups
   for k,v in pairs(conf.content) do
      if not (k:match("^users/") or
	      k:match("^groups/")) then
	 newtree[k] = v
      end
   end
   -- Write out the site.conf
   local obj = conf.repo.git:hash_object("blob",
					 conf.clod:serialise(),
					 true)
   newtree["site.conf"] = conf.repo.git:get(obj)
   -- Construct all the users and write them out.
   for u, utab in pairs(conf.users) do
      local str = utab.clod:serialise()
      local obj = conf.repo.git:hash_object("blob", str, true)
      newtree[utab.meta.prefix .. u .. "/user.conf"] = conf.repo.git:get(obj)
      -- Now the keys
      for k, ktab in pairs(utab.keys) do
	 obj = conf.repo.git:hash_object("blob", ktab.data .. "\n", true)
	 newtree[utab.meta.prefix .. u .. "/" .. k .. ".key"] = 
	    conf.repo.git:get(obj)
      end
   end
   -- Do the same for the groups
   for g, gtab in pairs(conf.groups) do
      obj = conf.repo.git:hash_object("blob", gtab.clod:serialise(), true)
      newtree[gtab.meta.prefix .. g .. ".conf"] = conf.repo.git:get(obj)
   end

   local tree, msg = gall.tree.create(conf.repo.git, newtree)
   if not tree then
      return nil, msg
   end

   local person = (username and {
		      realname = conf.users[username].real_name,
		      email = conf.users[username].email_address
		   }) or admin_name

   local commit, msg = 
      gall.commit.create(conf.repo.git, {
			   author = person,
			   committer = person,
			   message = desc or "Updated",
			   tree = tree,
			   parents = { conf.commit }
			})
   if not commit then
      return nil, msg
   end

   -- Verify we can parse the updated configuration repository
   local newconf, msg = parse_admin_config(commit)
   if not newconf then
      return nil, msg
   end

   -- Create/Update the HEAD ref
   local ok, msg = conf.repo.git:update_ref(conf.repo.git.HEAD, 
					    commit.sha, nil,
					    conf.commit.sha)
   if not ok then
      return nil, msg
   end

   -- Okay, updated, so apply the new config... (SSH keys really)
   update_ssh_keys(newconf)

   return true, commit
end

local function get_set_lib_bin_path(p)
   if p then
      lib_bin_path = p
   end
   return lib_bin_path
end

local function get_set_share_path(p)
   if p then
      share_path = p
   end
   return share_path
end

local function get_set_repo_path(p)
   if p then
      repo_path = p
   end
   return repo_path
end

return {
   genssh = generate_ssh_config,
   writessh = update_ssh_keys,
   parse = parse_admin_config,
   populate_context = populate_context,
   commit = commit_config_changes,
   load_file_content = load_file_content,
   get_default_hook_content = get_default_hook_content,
   has_global_hook = has_global_hook,
   lib_bin_path = get_set_lib_bin_path,
   share_path = get_set_share_path,
   repo_path = get_set_repo_path,
}