summaryrefslogtreecommitdiffstats
path: root/tinydns-model.lua
blob: 00918cac9605a2737c29baf47d909ed970c4a764 (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
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
module(..., package.seeall)

require("procps")
require("getopts")
require("fs")
require("format")

local configdir
local datafile
local configfiles = {}
local configitems = {}

local processname = "tinydns"
local configfile = "/etc/conf.d/" .. processname
local initdoptions = getopts.getoptsfromfile_onperline("/etc/init.d/" .. processname)
if (initdoptions) then
	configdir = initdoptions.DATADIR
	datafile = initdoptions.ROOT .. "/data" or "/var/cache/data"
else
	configdir = "/etc/" .. processname
	datafile = "/var/cache/data"
end

--configdir = "hidden for the moment - This row is here only for debug purpose"

-- ################################################################################
-- LOCAL FUNCTIONS

local function get_version()
	local cmd_output_result, cmd_output_error
	local cmd = "/sbin/apk_version -vs " .. processname .." 2>/dev/null"
	local f = io.popen( cmd )
	local cmdresult = f:read("*l")
	if (cmdresult) and (#cmdresult > 0) then
		cmd_output_result = string.match(cmdresult,"^%S*") or "Unknown"
	else
		cmd_output_error = "Program not installed"
	end	
	f:close()
	return cmd_output_result,cmd_output_error
end

-- Return a table with the config-content of a file
-- Commented/Blank lines are ignored
local function get_value_from_file(file)
	local output = {}
	local filecontent = fs.read_file_as_array(file)
	for i=1,table.maxn(filecontent) do
		local l = filecontent[i]
		if not (string.find ( l, "^[;#].*" )) and not (string.find (l, "^%s*$")) then
			table.insert(output, string.match(l,"(.-)%s*$"))
		end
	end
	if (#output > 0) then
		return true, output
	else
		return false, output
	end

end

-- Function to recursively inserts all filenames in a dir into an array
local function recursedir(path, filearray)
	local k,v
	for k,v in pairs(posix.dir(path) or {}) do
		-- Ignore files that begins with a '.'
		if not string.match(v, "^%.") then
			local f = path .. "/" .. v
			-- If subfolder exists, list files in this subfolder
			if (posix.stat(f).type == "directory") then
				recursedir(f, filearray)
			else
				table.insert(filearray, f)
			end
		end
	end
end

local function autostarts()
	local cmd_output_result
	local cmd = "/sbin/rc_status | egrep '^S' | egrep '" .. processname .."' 2>/dev/null"
	local f = io.popen( cmd )
	local cmdresult = f:read("*a")
	if (cmdresult) and (#cmdresult > 0) then
		cmd_output_result = "Process will autostart at next boot (at sequence '" .. string.match(cmdresult,"^%a+(%d%d)") .. "')"
	else
		cmd_output_error = "Not programmed to autostart"
	end	
	f:close()
	return cmd_output_result, cmd_output_error
end

-- Functin to split items into a table
local function split_config_items(orgitem)
	local delimiter = ":"
	local output = {}
	output = format.string_to_table(string.sub(orgitem,1,1) .. ":" .. string.sub(orgitem,2),delimiter)
	output.type = check_signs("prefix")
	output.type = output.type[string.sub(orgitem,1,1)] or "unknown"
	return output
end

-- Feed the configfiles table with list of all availage configfiles
local function searchforconfigfiles()
	local cnffile = {}
	recursedir(configdir, cnffile)
	for k,v in pairs(cnffile) do
		local configcontent = get_value_from_file(v)
		if (configcontent) then
			table.insert(configfiles, v)
		end
	end

	-- Debug option (adds the sampleconfig content)
--	table.insert(configfiles, "/usr/share/acf/app/tinydns/sampleconfig.conf")

end
searchforconfigfiles()


local function recurseoutput(table,cnt)
	if not (cnt) then cnt=0 end
	cnt = cnt + 1
	for k,v in pairs(table or {}) do
		if (type(v) == "string") then
			io.write("<IMG SRC='/static/tango/16x16/devices/computer.png' width='16' height='16' alt STYLE='margin-left:"..cnt.."0px'> ".. 
				tostring(v) .. "</SPAN><BR>")
		else
			io.write("<SPAN STYLE='margin-left:"..cnt.."0px;font-wegith:strong;'> ".. 
				tostring(k) .. "</SPAN><BR>")
			recurseoutput(v,cnt)
		end
	end
end

-- Create table with doman levels
local function recursedomains(t,array,maxn,currnum)
	if not (currnum) then currnum = maxn + 1 end
	currnum = currnum - 1
	if not (currnum == 0) then

		if not (array[t[currnum]]) then
			array[t[currnum]] = {}
		end
		recursedomains(t,array[t[currnum]],maxn,currnum)
	end

	-- FIXME: This is a /really uggly/ hack to return the current table
	-- If it's fixed nicely... it would be wonderful!
	if (array[t[maxn]]) and 
		(array[t[maxn]][t[maxn-1]]) and 
			(array[t[maxn]][t[maxn-1]][t[maxn-2]]) and 
				(array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]]) and
					(array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]][t[maxn-4]]) and
					(array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]][t[maxn-4]][t[maxn-5]]) then
		return array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]][t[maxn-4]][t[maxn-5]]
	end

	if (array[t[maxn]]) and 
		(array[t[maxn]][t[maxn-1]]) and 
			(array[t[maxn]][t[maxn-1]][t[maxn-2]]) and 
				(array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]]) and
					(array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]][t[maxn-4]]) then
		return array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]][t[maxn-4]]
	end

	if (array[t[maxn]]) and 
		(array[t[maxn]][t[maxn-1]]) and 
			(array[t[maxn]][t[maxn-1]][t[maxn-2]]) and 
				(array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]]) then
		return array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]]
	end

	if (array[t[maxn]]) and 
		(array[t[maxn]][t[maxn-1]]) and 
			(array[t[maxn]][t[maxn-1]][t[maxn-2]]) and 
				(array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]]) then
		return array[t[maxn]][t[maxn-1]][t[maxn-2]][t[maxn-3]]
	end

	if (array[t[maxn]]) and 
		(array[t[maxn]][t[maxn-1]]) and 
			(array[t[maxn]][t[maxn-1]][t[maxn-2]]) then
		return array[t[maxn]][t[maxn-1]][t[maxn-2]]
	end

	if (array[t[maxn]]) and (array[t[maxn]][t[maxn-1]]) then
		return array[t[maxn]][t[maxn-1]]
	end

	if (array[t[maxn]]) then
		return array[t[maxn]]
	end
end

-- ################################################################################
-- PUBLIC FUNCTIONS

-- This function could be used to check that valid parameters are used in different places
function check_signs(sign)
	local output = {}
	local output = {prefix={
			['.']="Name server for your domain (NS + A + SOA)", 
			['&']="Deletegate subdomain (NS + A)", 
			['=']="Host (A + PTR)", 
			['+']="Alias (A, no PTR)", 
			['@']="Mail exchanger (MX)",
			["'"]="Text record (TXT)",
			['^']="Reverse record (PTR)", 
			['C']="Canonical Name (CNAME)", 
			['Z']="SOA record (SOA)", 
			[':']="Generic record", 
			['%']="Client location", 
		},
		reverse={
			['nsourdomain']=".", 
			['nsdomain']="&", 
			['host']="=", 
			['alias']="+", 
			['mx']="@", 
			['ptr']="^", 
			['cname']="C", 
			['soa']="Z", 
			[':']=":", 
			['locations']="%", 
		},
		fieldlabels={
			['.']={"Prefix", "Domain", "IP address", "Name server", "Time to live", "Timestamp", "Location", }, 
			['&']={"Prefix", "Domain", "IP address", "Name server", "Time to live", "Timestamp", "Location", }, 
			['=']={"Prefix", "Host", "IP address", "Time to live", "Timestamp", "Location", }, 
			['+']={"Prefix", "Alias", "IP address", "Time to live", "Timestamp", "Location", }, 
			['@']={"Prefix", "Domain", "IP address", "Mail exchanger", "Distance", "Time to live", "Timestamp", "Location", }, 
			['^']={"Prefix", "PTR", "Domain name", "Time to live", "Timestamp", "Location", }, 
			['C']={"Prefix", "Domain name", "Canonical name", "Time to live", "Timestamp", "Location", }, 
			['Z']={"Prefix", "Unknown", "Primary name server", "Contact address", "Serial number", "Refresh time", "Retry time", "Expire time", "Minimum time", "Time to live", "Timestamp", "Location",}, 
			[':']={"Prefix", }, 
			['%']={"Prefix", }, 
		},
	}
	if (sign) then
		output = output[sign]
	end
	return output
end

-- Present some general status
function getstatus()
	local status = {}
	local version,versionerrtxt = get_version()
	status.version = cfe({ name = "version",
		label="Program version",
		value=version,
		errtxt=versionerrtxt,
		 })
	status.status = cfe({ name="status",
		label="Program status",
		value=procps.pidof(processname),
		})

	status.configdir = cfe({ name="configdir",
		label="Config directory",
		value=configdir,
		})

	status.configfiles = cfe({ name="configfiles",
		label="Config files",
		value=configfiles,
		})

	local autostart_sequense, autostart_errtxt = autostarts()
	status.autostart = cfe({ name="autostart",
		label="Autostart sequence",
		value=autostart_sequense,
		errtxt=autostart_errtxt,
		})

	return status
end


-- Return config-information
function getlocations(self,filter_type)
	local config = {}
	local configobjects = {}
	local locations = {}
	local debug
	local version,versionerrtxt = get_version()
	local listenaddr = getopts.getoptsfromfile_onperline(configfile,"IP") or {}

	-- Loop through all available configfiles
	for k,v in pairs(configfiles) do
		local filecontent, fileresult
		fileresult, filecontent = get_value_from_file(v)
		for kk,vv in pairs(filecontent) do
			local domaindetails = {}
			local filecontent_table = split_config_items(vv)

			-- This is mostly for debugging
			-- This table contains all available configs
			table.insert(configobjects, cfe({
				name=vv,
				value=vv,
				option=filecontent_table,
				}))

			-- Create a table with location items
			-- Containing all objects that start with %
			if (filecontent_table[1] == "%") then
			if not (locations[filecontent_table[2]]) then
				locations[filecontent_table[2]] = {}
			end
			table.insert(locations[filecontent_table[2]], filecontent_table[3])
			end	
		end
	end

	return locations
end

function getconfig(self,filter_type)
	local config = {}
	local listenaddr = getopts.getoptsfromfile_onperline(configfile,"IP") or {}

	config.listen = cfe({ 
		name = "listen",
		label="IP address to listen on",
		value=listenaddr.IP or "",
		 })

	return config
end

-- Example taken from PIL
-- Sort by Keys
local function pairsByKeys(t,f)
	local a = {}
	
	for n in pairs(t) do 
		-- This is to fix some bug when next table is indexnumber instead of name
		if (tonumber(n) == nil) then
			a[#a + 1] = n 
		end
	end
	table.sort(a,f)
	local i = 0	-- iterator variable
	return function ()	--iterator function
		i = i + 1
		return a[i], t[a[i]]
	end
end

local function rebuild_table(t,domains_rebuilt)
	if not (type(t) == "string") then
	for k,v in pairs(t) do
		if (tonumber(k)) then 
			table.insert(domains_rebuilt, v)
		else
			table.insert(domains_rebuilt, {label=k})
			rebuild_table(v,domains_rebuilt[#domains_rebuilt])
		end
	end
	table.sort(domains_rebuilt, function(a,b) return (a.label < b.label) end)
	end
end

-- This function removes all records that doesn't have the filter-value
local function filter_table(t1,domains_filtered,filter)
	if not (type(t1) == "string") then
		for k1,v1 in pairs(t1) do
			for k2,v2 in pairs(v1) do
				if (v2.label) then
					if ( string.find(filter,v2.label) ) then 
						table.insert(domains_filtered, v2)
					end
				end
			end
		end
	end
end

-- If you enter 'filter_type' (this should be one of the options found in local function check_signs() ) then
-- the output will be filtered to only contain this type of data.
function getconfigobjects(self,filter_type, filter_levels)
	local domains = {}

	--Loop through all available configfiles
	for k,v in pairs(configfiles) do
		local filecontent, fileresult
		fileresult, filecontent = get_value_from_file(v)
		for kk,vv in pairs(filecontent) do
			local domaindetails = {}
			local filecontent_table = split_config_items(vv)
			filecontent_table["orgrecord"] = vv

			-- Create domain information tables
			local domain

			-- * START * COMMONT SETTINGS ***************************************************************************************
			local descr=check_signs("prefix")
			-- Use only configs that has a valid prefix
			-- We filter away location-definitions
			-- If function is called with some filter options... then show only the filtered values
			if ( not (filter_type) or 
				( (filter_type) and (filter_type == filecontent_table[1]))) and 
					(descr[filecontent_table[1]]) and not 
						(filecontent_table[1] == "%") then

				domain = format.string_to_table(filecontent_table[2], "%.")
				-- We rebuild the table and add previous level-information to the current level
				for i = table.maxn(domain),2,-1 do
					domain[i-1] = domain[i-1] .. "." .. domain[i]
				end

				local domainoptions = {}
				-- Add details to the previous object
				table.insert(domainoptions, cfe ({
					name="type",
					label="Type",
					value=descr[filecontent_table[1]],
					}))

				-- Set values and labels for field #3
				local name = "ip"
				local label = "IP address"
				-- Some configs uses third column in some other way
				if (filecontent_table[1] == "^") or (filecontent_table[1] == "C") then
					name = "pointdomain"
					label = "Domain"
				end
				if (filecontent_table[1] == "Z") then
					name = "mname"
					label = "Primary nameserver"
				end
				if (filecontent_table[1] == ":") then
					name = "rectype"
					label = "Type of record"
				end
				if (filecontent_table[3]) and (#filecontent_table[3]> 0) and (name) then
					table.insert(domainoptions, cfe ({
						name=name,
						label=label,
						value=filecontent_table[3],
						}))
				end

				-- Set values and labels for field #4
				name = "ttl"
				label = "Time to live"
				-- Some configs uses third column in some other way
				if (filecontent_table[1] == ".") or (filecontent_table[1] == "&") then
					name = "ns"
					label = "Name server"
				end
				if (filecontent_table[1] == "@") then
					name = "mx"
					label = "Mail exchanger"
				end
				if (filecontent_table[1] == "Z") then
					name = "rname"
					label = "Contact address"
				end
				if (filecontent_table[4]) and (#filecontent_table[4]> 0) and (name) then
					table.insert(domainoptions, cfe ({
						name=name,
						label=label,
						value=filecontent_table[4],
						}))
				end

				-- Set values and labels for field #5
				name = "timestamp"
				label = "Time stamp"
				-- Some configs uses third column in some other way
				if (filecontent_table[1] == ".") or (filecontent_table[1] == "&") then
					name = "ttl"
					label = "Time to live"
				end
				if (filecontent_table[1] == "@") then
					name = "dist"
					label = "Distance"
				end
				if (filecontent_table[1] == "Z") then
					name = "ser"
					label = "Serial number"
				end
				if (filecontent_table[5]) and (#filecontent_table[5]> 0) and (name) then
					table.insert(domainoptions, cfe ({
						name=name,
						label=label,
						value=filecontent_table[5],
						}))
				end

				-- Set values and labels for field #6
				name = "lo"
				label = "Location"
				-- Some configs uses third column in some other way
				if (filecontent_table[1] == ".") or (filecontent_table[1] == "&") then
					name = "timestamp"
					label = "Time stamp"
				end
				if (filecontent_table[1] == "@") then
					name = "ttl"
					label = "Time to live"
				end
				if (filecontent_table[1] == "Z") then
					name = "ref"
					label = "Refresh time"
				end

				if (filecontent_table[6]) and (#filecontent_table[6]> 0) and (name) then
					table.insert(domainoptions, cfe ({
						name=name,
						label=label,
						value=filecontent_table[6],
						}))
				end

				-- Set values and labels for field #7
				local name = nil
				local label = nil
				-- Some configs uses third column in some other way
				if (filecontent_table[1] == ".") or (filecontent_table[1] == "&") then
					name = "lo"
					label = "Location"
				end
				if (filecontent_table[1] == "@") then
					name = "timestamp"
					label = "Timestamp"
				end
				if (filecontent_table[1] == "Z") then
					name = "ret"
					label = "Retry time"
				end
				if (filecontent_table[7]) and (#filecontent_table[7]> 0) and (name) then
					table.insert(domainoptions, cfe ({
						name=name,
						label=label,
						value=filecontent_table[7],
						}))
				end

				-- Set values and labels for field #8
				local name = nil
				local label = nil
				-- Some configs uses third column in some other way
				if (filecontent_table[1] == "@") then
					name = "lo"
					label = "Location"
				end
				if (filecontent_table[1] == "Z") then
					name = "exp"
					label = "Expire time"
				end
				if (filecontent_table[8]) and (#filecontent_table[8]> 0) and (name) then
					table.insert(domainoptions, cfe ({
						name=name,
						label=label,
						value=filecontent_table[8],
						}))
				end

				-- Set values and labels for field #9-12
				if (filecontent_table[1] == "Z") then
					if (filecontent_table[9]) and (#filecontent_table[9]> 0) then
						table.insert(domainoptions, cfe ({
							name="min",
							label="Minimum time",
							value=filecontent_table[9],
							}))
					end
					if (filecontent_table[10]) and (#filecontent_table[10]> 0) then
						table.insert(domainoptions, cfe ({
							name="ttl",
							label="Time to live",
							value=filecontent_table[10],
							}))
					end
					if (filecontent_table[11]) and (#filecontent_table[11]> 0) then
						table.insert(domainoptions, cfe ({
							name="timestamp",
							label="Time stamp",
							value=filecontent_table[11],
							}))
					end
					if (filecontent_table[12]) and (#filecontent_table[12]> 0) then
						table.insert(domainoptions, cfe ({
							name="location",
							label="Location",
							value=filecontent_table[12],
							}))
					end
				end


				-- This is the main information on each object
				domaindetails = cfe ({
					name=filecontent_table[2],
					label=filecontent_table[2],
					option=domainoptions,
					orgrecordtable=filecontent_table,
					})

			end
			-- * END * COMMONT SETTINGS ***************************************************************************************
			-- Inject the previous data into the right table
			local value = filecontent_table[2]
			local currenttable
			if (type(domain) == "table") then
				currenttable = recursedomains(domain, domains, table.maxn(domain))
			end

---[[
			if (domaindetails.value) then
				table.insert (currenttable , domaindetails)
			end
--]]

		end
	end

	-- TODO: Sort the domains table!
	-- Sorting is not possible when things is done as they are (se above)
	-- problem comese when we use keynames instead of [1], [2], ...
	-- Next we rebuild the domains table and do it so it can be sorted
	local domains_sorted = {}

	local domains_rebuilt = {}
	rebuild_table(domains,domains_rebuilt)

	-- Filter away not wanted records
	local domains_filtered = {}
--	local filter_level2 = ""			-- < This is DEBUG!!! REMOVE WHEN DONE!
--	filter_table(domains_rebuilt,domains_filtered,filter_level2)
	domains_filtered = domains_rebuilt

	return domains_filtered
end


-- ################################################################################
-- DEBUG INFORMATION (Everything below will be deleted in the future)

function getdebug()
	local debug = {}

--[[
	local signs = get_available_signs("prefix") or {}
	debug.debugprefixes = cfe({ 
		name = "debugprefixes",
		label="Available prefixes",
		option=signs,
		type="select",
		size=table.maxn(signs)+1,
		 })

	local signs = get_available_signs("suffix") or {}
	debug.debugsuffixes = cfe({ 
		name = "debugsuffixes",
		label="Available suffixes",
		option=signs,
		type="select",
		size=table.maxn(signs)+1,
		 })
--]]
	debug.configdir = cfe({ 
		name = "configdir",
		label="configdir",
		value=configdir,
		 })
	debug.datafile = cfe({ 
		name = "datafile",
		label="datafile",
		value=datafile,
		 })

	for k,v in pairs(configfiles) do
		local cnfcontent
		fake, cnfcontent = get_value_from_file(v)
		for kk,vv in pairs(cnfcontent) do
			table.insert(configitems,vv)
		end
	end
---[[
	debug.configitems = cfe({ 
		name = "configitems",
		label="configitems",
		option=configitems,
		type="select",
		 })
--]]
	debug.configfiles = cfe({ 
		name = "configfiles",
		label="configfiles",
		option=configfiles,
		type="select",
		 })

	return debug
end