#!/usr/bin/env luajit
local APT = require 'apt-panopticommon'
local D = APT.D
local I = APT.I
local W = APT.W
local E = APT.E
local C = APT.C
local arg, sendArgs = APT.parseArgs({...})
local results = {}
APT.mirrors = loadfile("results/mirrors.lua")()
local revDNS = function(dom, IP)
if "deb.devuan.org" ~= dom then
if nil ~= APT.mirrors["deb.devuan.org"] then
if nil ~= APT.mirrors["deb.devuan.org"].IPs["deb.roundr.devuan.org"][IP] then
if APT.html then
return "DNS-RR"
else
return "DNS-RR"
end
end
end
else
for k, v in pairs(APT.mirrors) do
if "deb.devuan.org" ~= k then
local IPs = v.IPs
for i, u in pairs(IPs) do
if "table" == type(u) then
for h, t in pairs(u) do
if IP == h then return k end
end
else
if IP == i then return k end
end
end
end
end
end
return ""
end
local faulty = ""
local status = function(host, results, typ)
local result = ""
local e = 0
local w = 0
local s = nil ~= APT.mirrors[host].Protocols[typ]
local to = results.timeout
if ('http' ~= typ) and ('https' ~= typ) and ('ftp' ~= typ) and ('rsync' ~= typ) then s = true end
if nil ~= results[typ] then
e = results[typ].errors
w = results[typ].warnings
for k, v in pairs(results[typ]) do
if "table" == type(v) then
if 0 <= v.errors then e = e + v.errors else to = true end
if 0 <= v.warnings then w = w + v.warnings else to = true end
end
end
else
for k, v in pairs(results) do
if "table" == type(v) then
for i, u in pairs(v) do
if "table" == type(u) then
if typ == i then
if 0 <= u.errors then e = e + u.errors end
if 0 <= u.warnings then w = w + u.warnings end
end
end
end
end
end
end
if to then
result = "[TIMEOUT"
if not s then result = result .. "*" end
if APT.html then
if s then
result = "[TIMEOUT"
else
result = "[TIMEOUT*"
end
end
elseif 0 < e then
result = "[FAILED"
if not s then result = result .. "*" end
if APT.html then
if s then
result = "[FAILED"
else
result = "[FAILED*"
end
end
if APT.html then
faulty = faulty .. host .. " (" .. typ .. ")
\n"
else
faulty = faulty .. host .. " (" .. typ .. ")\n"
end
else
result = "[OK"
if not s then result = result .. "*" end
if APT.html then
if s then
result = "[OK"
else
result = "[OK*"
end
end
end
return result .. APT.plurals(e, w) .. "]"
end
local m = {}
local logCount = function(domain, ip)
local nm = "LOG_" .. domain
local log = ""
local extra = ""
if nil ~= ip then nm = nm .. "_" .. ip end
nm = nm .. ".html"
local rfile, e = io.open("results/" .. nm, "r")
if nil ~= rfile then
local errors = 0
local warnings = 0
for l in rfile:lines() do
if nil ~= l:match(">ERROR ") then errors = errors + 1 end
if nil ~= l:match(">WARNING ") then warnings = warnings + 1 end
end
rfile:close()
if APT.html then
if nil == ip then
log = "" .. domain .. ""
else
log = "" .. ip .. ""
end
end
log = log .. APT.plurals(errors, warnings)
end
return log
end
APT.html = false
local email, e = io.open("results/Report-email.txt", "w+")
if nil == email then C("opening mirrors file - " .. e) else
email:write( "Dear Mirror Admins,\n\n" ..
"This is the status of the mirror servers in the Devuan package mirror network.\n\n" ..
"EXPERIMENTAL CODE - double check all results you see here, and read the logs if it's important." ..
"The full list of Devuan package mirrors is available at the URL:\n\n" ..
" https://pkgmaster.devuan.org/mirror_list.txt\n\n" ..
'Please contact "mirrors@devuan.org" if any of the information \nin the file above needs to be amended. \n\n' ..
"The full results of the mirror checking is available at the URL:\n\n" ..
" https://sledjhamr.org/apt-panopticon/results/Report-web.html\n\n" ..
"Due to the nature of the tests, some errors or warnings will be \ncounted several times. " ..
"Refer to the logs on the web page for details.\n\n" ..
"Please see below the current status of the Devuan Package Mirror \nnetwork:\n\n" ..
"==== package mirror status " .. os.date("!%Y-%m-%d %H:%M") .. " GMT ====\n" ..
"[skip] means that the test hasn't been written yet.\n\n")
for k, v in APT.orderedPairs(APT.mirrors) do
email:write(k .. "....\n")
local results = APT.collateAll('results', k)
local ftp = "[skip]"
local http = status(k, results, "http")
local https = status(k, results, "https")
local rsync = "[skip]"
local dns = ""
local protocol = status(k, results, "Protocol")
local sanity = status(k, results, "URLSanity")
local integrity = status(k, results, "Integrity")
local updated = status(k, results, "Updated")
-- DNS-RR test.
if ("deb.devuan.org" ~= k) and (nil ~= APT.mirrors["deb.devuan.org"]) then
for l, w in pairs(APT.mirrors[k].IPs) do
if type(w) == "table" then
for i, u in pairs(w) do
if nil ~= APT.mirrors["deb.devuan.org"].IPs["deb.roundr.devuan.org"][i] then
local log = logCount("deb.devuan.org", i)
if "" ~= log then
if "" == dns then dns = " " else dns = dns .. " " end
dns = dns .. logCount("deb.devuan.org", i)
else
if "" == dns then dns = " " else dns = dns .. " " end
dns = dns .. i
end
end
end
else
if nil ~= APT.mirrors["deb.devuan.org"].IPs["deb.roundr.devuan.org"][l] then
local log = logCount("deb.devuan.org", l)
if "" ~= log then
if "" == dns then dns = " " else dns = dns .. " " end
dns = dns .. log
else
if "" == dns then dns = " " else dns = dns .. " " end
dns = dns .. l
end
end
end
end
if "" == dns then dns = "[no]" end
dns = " DNS-RR: " .. dns
end
email:write( " ftp: " .. ftp .. " http: " .. http .. " https: " .. https .." rsync: " .. rsync .. "\n" ..
" " .. dns .. "\n" ..
" Protocol: " .. protocol .. " URL-sanity: " .. sanity .. " Integrity: " .. integrity .. "\n" ..
" Updated: " .. updated .. "\n")
end
email:write( "\n==== faulty mirrors: ====\n" .. faulty)
email:write( "\n-------------------------\n\n" ..
"* This means that this protocol isn't actually supported, but the test was run ayway.\n\n" ..
"Thanks for your precious help in ensuring that Devuan GNU+Linux \nremains a universal, stable, dependable, free operating system.\n\n" ..
"You can get the source code from https://sledjhamr.org/cgit/apt-panopticon/about/ .\n\n" ..
"Love\n\n" ..
"The Dev1Devs\n\n")
email:close()
end
local colours =
{
'f0000080',
'0f000080',
'00f00080',
'000f0080',
'0000f080',
'00000f80',
'80000080',
'08000080',
'00800080',
'00080080',
'00008080',
'00000880',
'ff000080',
'0ff00080',
'00ff0080',
'000ff080',
'0000ff80',
'88000080',
'08800080',
'00880080',
'00088080',
'00008880',
}
local g = {}
local count = 0
for k, v in APT.orderedPairs(mirrors) do
if 'pkgmaster.devuan.org' ~= k then count = count + 1 end
end
for i = 1, count do
end
count = 1
for k, v in APT.orderedPairs(mirrors) do
if 'deb.devuan.org' ~= k then
local c = colours[count]
local name = string.format('%32s', k)
if 'pkgmaster.devuan.org' == k then c = 'ffffff' end
table.insert(g, 'DEF:speedn' .. count .. '=rrd/' .. k .. '/HTTP/Speed.rrd:max:MIN')
table.insert(g, 'DEF:speedx' .. count .. '=rrd/' .. k .. '/HTTP/Speed.rrd:max:MAX')
table.insert(g, 'DEF:speeda' .. count .. '=rrd/' .. k .. '/HTTP/Speed.rrd:max:AVERAGE')
table.insert(g, 'DEF:speedl' .. count .. '=rrd/' .. k .. '/HTTP/Speed.rrd:max:LAST')
table.insert(g, 'VDEF:vspeedn' .. count .. '=speedn' .. count .. ',AVERAGE')
table.insert(g, 'VDEF:vspeedx' .. count .. '=speedx' .. count .. ',AVERAGE')
table.insert(g, 'VDEF:vspeeda' .. count .. '=speeda' .. count .. ',AVERAGE')
table.insert(g, 'VDEF:vspeedl' .. count .. '=speedl' .. count .. ',AVERAGE')
table.insert(g, 'LINE2:speedx' .. count .. '#' .. c .. ':' .. name .. ' ')
table.insert(g, 'GPRINT:vspeedn' .. count .. ':Min %5.1lf%s,')
table.insert(g, 'GPRINT:vspeeda' .. count .. ':Avg %5.1lf%s,')
table.insert(g, 'GPRINT:vspeedx' .. count .. ':Max %5.1lf%s,')
table.insert(g, 'GPRINT:vspeedl' .. count .. ':Last %5.1lf%s\\l')
count = count + 1
end
end
APT.rrd.graph('results/speed.png', '--start', 'now-2w', '--end', 'now', '-t', 'Speed, rough maximum guess.', '-v', 'bytes per second', '-w', '900', '-h', '400', '-Z',
'-c', 'BACK#000000', '-c', 'CANVAS#000000', '-c', 'FONT#FFFFFF', '-c', 'AXIS#FFFFFF', '-c', 'FRAME#FFFFFF', '-c', 'ARROW#FFFFFF',
unpack(g))
results = {}
m = {}
faulty = ""
APT.html = true
local web, e = io.open("results/Report-web.html", "w+")
if nil == web then C("opening mirrors file - " .. e) else
web:write( "Welcome to the apt-panopticon results page.
\n" ..
"
This is the status of the mirror servers in the Devuan package mirror network.
\n" .. "EXPERIMENTAL CODE - double check all results you see here, and read the logs if it's important.
" .. "The full list of Devuan package mirrors is available at the URL: " .. "https://pkgmaster.devuan.org/mirror_list.txt
\n" .. "Due to the nature of the tests, some errors or warnings will be counted several times. " .. "The links in the table and DNS list go to the detailed testing logs.
\n\n" .. "[FAILED] or [OK]" .. " means the tested thing is supported for that mirror.
\n" .. "[FAILED*] or [OK*]" .. " means the tested thing is unsupported for that mirror, but might have been tested anyway.
\n" .. "[TIMEOUT] or [TIMEOUT]" .. " means the server had too many timeouts, and tests where aborted, so there is no result for this test.
" .. "The DNS round robin (DNS-RR) column shows the IPs for that mirror, or [no] if it isn't part of the DNS-RR. " .. "The IPs link to the testing log for that IP accessed via the DNS-RR. " .. "deb.devuan.org is the DNS-RR itself, so it doesn't get tested directly.
\n" .. "The time in the Updated column is how often the mirror updates itself.
" .. "Mirrors with a grey background are not active (though may be usable as part of the DNS-RR).
\n" .. "[skip] means that the test hasn't been written yet.
\n" .. "FTP | HTTP | HTTPS | RSYNC | DNS round robin | " .. "Protocol | URL sanity | Integrity | Updated | Speed range | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
" .. k .. " | ") else if nil == v.Active then active = 'nil' else active = v.Active end web:write("|||||||||||||
" .. k .. " | ") end local ftp = "[skip]" local http = status(k, results, "http") local https = status(k, results, "https") local rsync = "[skip]" local dns = "" local protocol = status(k, results, "Protocol") local sanity = status(k, results, "URLSanity") local integrity = status(k, results, "Integrity") local updated = status(k, results, "Updated") local rate = v.Rate if nil ~= rate then updated = updated .. ' ' .. rate end local min = tonumber(results.speed.min) local max = tonumber(results.speed.max) local spd = '' -- DNS-RR test. if ("deb.devuan.org" ~= k) and (nil ~= APT.mirrors["deb.devuan.org"]) then for l, w in pairs(APT.mirrors[k].IPs) do if type(w) == "table" then for i, u in pairs(w) do if nil ~= APT.mirrors["deb.devuan.org"].IPs["deb.roundr.devuan.org"][i] then local log = logCount("deb.devuan.org", i) if "" ~= log then if "" == dns then dns = " " else dns = dns .. " " end dns = dns .. logCount("deb.devuan.org", i) else if "" == dns then dns = " " else dns = dns .. " " end dns = dns .. "" .. i .. "" end end end else if nil ~= APT.mirrors["deb.devuan.org"].IPs["deb.roundr.devuan.org"][l] then local log = logCount("deb.devuan.org", l) if "" ~= log then if "" == dns then dns = " " else dns = dns .. " " end dns = dns .. log else if "" == dns then dns = " " else dns = dns .. " " end dns = dns .. "" .. l .. "" end end end end if "" == dns then dns = "[no]" end if 0 == max then spd = '' else spd = string.format(' | %d -> | %d | ', min, max) end end web:write("" .. ftp .. " | " .. http .. " | " .. https .. " | " .. rsync .. " | " .. dns .. " | " .. protocol .. " | " .. sanity .. " | " .. integrity .. " | " .. updated .. " | " .. spd .. "|
" .. active .. " |
This lists each mirror, and the DNS entries for that mirror. " .. "The links point to the testing log files for " .. logCount("apt-panopticon") .. " for each domain name / IP combination that was tested. " .. "If a mirror has a CNAME, that CNAME is listed along with that CNAMEs DNS entries. " .. "deb.devuan.org is the DNS round robin, which points to the mirrors that are part of the DNS-RR. " .. "If an IP is part of the DNS-RR, it is marked with 'DNS-RR' " .. "pkgmaster.devuan.org is the master mirror, all the others sync to it. " .. "
\n" ) web:write(APT.dumpTableHTML(m, "", "")) web:write( "\nMore graphs. with greater detail.
The email report. " .. "All the logs and other output. " .. "You can get the source code here.
" .. "\n") web:close() end