| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270 |
- package main
- import (
- "bytes"
- "crypto/tls"
- "database/sql"
- "database/sql/driver"
- "encoding/json"
- "errors"
- "fmt"
- "html/template"
- "io"
- "io/ioutil"
- "log"
- "net/http"
- "os"
- "regexp"
- "sort"
- "strings"
- "sync"
- "time"
- "github.com/lib/pq"
- )
- var (
- keyFile = getEnvDefault("UR_KEY_FILE", "key.pem")
- certFile = getEnvDefault("UR_CRT_FILE", "crt.pem")
- dbConn = getEnvDefault("UR_DB_URL", "postgres://user:password@localhost/ur?sslmode=disable")
- listenAddr = getEnvDefault("UR_LISTEN", "0.0.0.0:8443")
- tpl *template.Template
- compilerRe = regexp.MustCompile(`\(([A-Za-z0-9()., -]+) \w+-\w+(?:| android| default)\) ([\[email protected]]+)`)
- )
- var funcs = map[string]interface{}{
- "commatize": commatize,
- "number": number,
- }
- func getEnvDefault(key, def string) string {
- if val := os.Getenv(key); val != "" {
- return val
- }
- return def
- }
- type IntMap map[string]int
- func (p IntMap) Value() (driver.Value, error) {
- return json.Marshal(p)
- }
- func (p *IntMap) Scan(src interface{}) error {
- source, ok := src.([]byte)
- if !ok {
- return errors.New("Type assertion .([]byte) failed.")
- }
- var i interface{}
- err := json.Unmarshal(source, &i)
- if err != nil {
- return err
- }
- *p, ok = i.(map[string]int)
- if !ok {
- return errors.New("Type assertion .(map[string]int) failed.")
- }
- return nil
- }
- type report struct {
- Received time.Time // Only from DB
- UniqueID string
- Version string
- LongVersion string
- Platform string
- NumFolders int
- NumDevices int
- TotFiles int
- FolderMaxFiles int
- TotMiB int
- FolderMaxMiB int
- MemoryUsageMiB int
- SHA256Perf float64
- MemorySize int
- // v2 fields
- URVersion int
- NumCPU int
- FolderUses struct {
- ReadOnly int
- IgnorePerms int
- IgnoreDelete int
- AutoNormalize int
- SimpleVersioning int
- ExternalVersioning int
- StaggeredVersioning int
- TrashcanVersioning int
- }
- DeviceUses struct {
- Introducer int
- CustomCertName int
- CompressAlways int
- CompressMetadata int
- CompressNever int
- DynamicAddr int
- StaticAddr int
- }
- Announce struct {
- GlobalEnabled bool
- LocalEnabled bool
- DefaultServersDNS int
- DefaultServersIP int
- OtherServers int
- }
- Relays struct {
- Enabled bool
- DefaultServers int
- OtherServers int
- }
- UsesRateLimit bool
- UpgradeAllowedManual bool
- UpgradeAllowedAuto bool
- // V2.5 fields (fields that were in v2 but never added to the database
- UpgradeAllowedPre bool
- RescanIntvs pq.Int64Array
- // v3 fields
- Uptime int
- NATType string
- AlwaysLocalNets bool
- CacheIgnoredFiles bool
- OverwriteRemoteDeviceNames bool
- ProgressEmitterEnabled bool
- CustomDefaultFolderPath bool
- WeakHashSelection string
- CustomTrafficClass bool
- CustomTempIndexMinBlocks bool
- TemporariesDisabled bool
- TemporariesCustom bool
- LimitBandwidthInLan bool
- CustomReleaseURL bool
- RestartOnWakeup bool
- CustomStunServers bool
- FolderUsesV3 struct {
- ScanProgressDisabled int
- ConflictsDisabled int
- ConflictsUnlimited int
- ConflictsOther int
- DisableSparseFiles int
- DisableTempIndexes int
- AlwaysWeakHash int
- CustomWeakHashThreshold int
- FsWatcherEnabled int
- PullOrder IntMap
- FilesystemType IntMap
- FsWatcherDelays pq.Int64Array
- }
- GUIStats struct {
- Enabled int
- UseTLS int
- UseAuth int
- InsecureAdminAccess int
- Debugging int
- InsecureSkipHostCheck int
- InsecureAllowFrameLoading int
- ListenLocal int
- ListenUnspecified int
- Theme IntMap
- }
- BlockStats struct {
- Total int
- Renamed int
- Reused int
- Pulled int
- CopyOrigin int
- CopyOriginShifted int
- CopyElsewhere int
- }
- TransportStats IntMap
- IgnoreStats struct {
- Lines int
- Inverts int
- Folded int
- Deletable int
- Rooted int
- Includes int
- EscapedIncludes int
- DoubleStars int
- Stars int
- }
- // Generated
- Date string
- }
- func (r *report) Validate() error {
- if r.UniqueID == "" || r.Version == "" || r.Platform == "" {
- return fmt.Errorf("missing required field")
- }
- if len(r.Date) != 8 {
- return fmt.Errorf("date not initialized")
- }
- return nil
- }
- func (r *report) FieldPointers() []interface{} {
- // All the fields of the report, in the same order as the database fields.
- return []interface{}{
- &r.Received, &r.UniqueID, &r.Version, &r.LongVersion, &r.Platform,
- &r.NumFolders, &r.NumDevices, &r.TotFiles, &r.FolderMaxFiles,
- &r.TotMiB, &r.FolderMaxMiB, &r.MemoryUsageMiB, &r.SHA256Perf,
- &r.MemorySize, &r.Date,
- // V2
- &r.URVersion, &r.NumCPU, &r.FolderUses.ReadOnly, &r.FolderUses.IgnorePerms,
- &r.FolderUses.IgnoreDelete, &r.FolderUses.AutoNormalize, &r.DeviceUses.Introducer,
- &r.DeviceUses.CustomCertName, &r.DeviceUses.CompressAlways,
- &r.DeviceUses.CompressMetadata, &r.DeviceUses.CompressNever,
- &r.DeviceUses.DynamicAddr, &r.DeviceUses.StaticAddr,
- &r.Announce.GlobalEnabled, &r.Announce.LocalEnabled,
- &r.Announce.DefaultServersDNS, &r.Announce.DefaultServersIP,
- &r.Announce.OtherServers, &r.Relays.Enabled, &r.Relays.DefaultServers,
- &r.Relays.OtherServers, &r.UsesRateLimit, &r.UpgradeAllowedManual,
- &r.UpgradeAllowedAuto, &r.FolderUses.SimpleVersioning,
- &r.FolderUses.ExternalVersioning, &r.FolderUses.StaggeredVersioning,
- &r.FolderUses.TrashcanVersioning,
- // V2.5
- &r.UpgradeAllowedPre, &r.RescanIntvs,
- // V3
- &r.Uptime, &r.NATType, &r.AlwaysLocalNets, &r.CacheIgnoredFiles,
- &r.OverwriteRemoteDeviceNames, &r.ProgressEmitterEnabled, &r.CustomDefaultFolderPath,
- &r.WeakHashSelection, &r.CustomTrafficClass, &r.CustomTempIndexMinBlocks,
- &r.TemporariesDisabled, &r.TemporariesCustom, &r.LimitBandwidthInLan,
- &r.CustomReleaseURL, &r.RestartOnWakeup, &r.CustomStunServers,
- &r.FolderUsesV3.ScanProgressDisabled, &r.FolderUsesV3.ConflictsDisabled,
- &r.FolderUsesV3.ConflictsUnlimited, &r.FolderUsesV3.ConflictsOther,
- &r.FolderUsesV3.DisableSparseFiles, &r.FolderUsesV3.DisableTempIndexes,
- &r.FolderUsesV3.AlwaysWeakHash, &r.FolderUsesV3.CustomWeakHashThreshold,
- &r.FolderUsesV3.FsWatcherEnabled,
- &r.FolderUsesV3.PullOrder, &r.FolderUsesV3.FilesystemType,
- &r.FolderUsesV3.FsWatcherDelays,
- &r.GUIStats.Enabled, &r.GUIStats.UseTLS, &r.GUIStats.UseAuth,
- &r.GUIStats.InsecureAdminAccess,
- &r.GUIStats.Debugging, &r.GUIStats.InsecureSkipHostCheck,
- &r.GUIStats.InsecureAllowFrameLoading, &r.GUIStats.ListenLocal,
- &r.GUIStats.ListenUnspecified, &r.GUIStats.Theme,
- &r.BlockStats.Total, &r.BlockStats.Renamed,
- &r.BlockStats.Reused, &r.BlockStats.Pulled, &r.BlockStats.CopyOrigin,
- &r.BlockStats.CopyOriginShifted, &r.BlockStats.CopyElsewhere,
- &r.TransportStats,
- &r.IgnoreStats.Lines, &r.IgnoreStats.Inverts, &r.IgnoreStats.Folded,
- &r.IgnoreStats.Deletable, &r.IgnoreStats.Rooted, &r.IgnoreStats.Includes,
- &r.IgnoreStats.EscapedIncludes, &r.IgnoreStats.DoubleStars, &r.IgnoreStats.Stars,
- }
- }
- func (r *report) FieldNames() []string {
- // The database fields that back this struct in PostgreSQL
- return []string{
- // V1
- "Received",
- "UniqueID",
- "Version",
- "LongVersion",
- "Platform",
- "NumFolders",
- "NumDevices",
- "TotFiles",
- "FolderMaxFiles",
- "TotMiB",
- "FolderMaxMiB",
- "MemoryUsageMiB",
- "SHA256Perf",
- "MemorySize",
- "Date",
- // V2
- "ReportVersion",
- "NumCPU",
- "FolderRO",
- "FolderIgnorePerms",
- "FolderIgnoreDelete",
- "FolderAutoNormalize",
- "DeviceIntroducer",
- "DeviceCustomCertName",
- "DeviceCompressAlways",
- "DeviceCompressMetadata",
- "DeviceCompressNever",
- "DeviceDynamicAddr",
- "DeviceStaticAddr",
- "AnnounceGlobalEnabled",
- "AnnounceLocalEnabled",
- "AnnounceDefaultServersDNS",
- "AnnounceDefaultServersIP",
- "AnnounceOtherServers",
- "RelayEnabled",
- "RelayDefaultServers",
- "RelayOtherServers",
- "RateLimitEnabled",
- "UpgradeAllowedManual",
- "UpgradeAllowedAuto",
- // v0.12.19+
- "FolderSimpleVersioning",
- "FolderExternalVersioning",
- "FolderStaggeredVersioning",
- "FolderTrashcanVersioning",
- // V2.5
- "UpgradeAllowedPre",
- "RescanIntvs",
- // V3
- "Uptime",
- "NATType",
- "AlwaysLocalNets",
- "CacheIgnoredFiles",
- "OverwriteRemoteDeviceNames",
- "ProgressEmitterEnabled",
- "CustomDefaultFolderPath",
- "WeakHashSelection",
- "CustomTrafficClass",
- "CustomTempIndexMinBlocks",
- "TemporariesDisabled",
- "TemporariesCustom",
- "LimitBandwidthInLan",
- "CustomReleaseURL",
- "RestartOnWakeup",
- "CustomStunServers",
- "FolderScanProgressDisabled",
- "FolderConflictsDisabled",
- "FolderConflictsUnlimited",
- "FolderConflictsOther",
- "FolderDisableSparseFiles",
- "FolderDisableTempIndexes",
- "FolderAlwaysWeakHash",
- "FolderCustomWeakHashThreshold",
- "FolderFsWatcherEnabled",
- "FolderPullOrder",
- "FolderFilesystemType",
- "FolderFsWatcherDelays",
- "GUIEnabled",
- "GUIUseTLS",
- "GUIUseAuth",
- "GUIInsecureAdminAccess",
- "GUIDebugging",
- "GUIInsecureSkipHostCheck",
- "GUIInsecureAllowFrameLoading",
- "GUIListenLocal",
- "GUIListenUnspecified",
- "GUITheme",
- "BlocksTotal",
- "BlocksRenamed",
- "BlocksReused",
- "BlocksPulled",
- "BlocksCopyOrigin",
- "BlocksCopyOriginShifted",
- "BlocksCopyElsewhere",
- "Transport",
- "IgnoreLines",
- "IgnoreInverts",
- "IgnoreFolded",
- "IgnoreDeletable",
- "IgnoreRooted",
- "IgnoreIncludes",
- "IgnoreEscapedIncludes",
- "IgnoreDoubleStars",
- "IgnoreStars",
- }
- }
- func setupDB(db *sql.DB) error {
- _, err := db.Exec(`CREATE TABLE IF NOT EXISTS Reports (
- Received TIMESTAMP NOT NULL,
- UniqueID VARCHAR(32) NOT NULL,
- Version VARCHAR(32) NOT NULL,
- LongVersion VARCHAR(256) NOT NULL,
- Platform VARCHAR(32) NOT NULL,
- NumFolders INTEGER NOT NULL,
- NumDevices INTEGER NOT NULL,
- TotFiles INTEGER NOT NULL,
- FolderMaxFiles INTEGER NOT NULL,
- TotMiB INTEGER NOT NULL,
- FolderMaxMiB INTEGER NOT NULL,
- MemoryUsageMiB INTEGER NOT NULL,
- SHA256Perf DOUBLE PRECISION NOT NULL,
- MemorySize INTEGER NOT NULL,
- Date VARCHAR(8) NOT NULL
- )`)
- if err != nil {
- return err
- }
- var t string
- row := db.QueryRow(`SELECT 'UniqueIDIndex'::regclass`)
- if err := row.Scan(&t); err != nil {
- if _, err = db.Exec(`CREATE UNIQUE INDEX UniqueIDIndex ON Reports (Date, UniqueID)`); err != nil {
- return err
- }
- }
- row = db.QueryRow(`SELECT 'ReceivedIndex'::regclass`)
- if err := row.Scan(&t); err != nil {
- if _, err = db.Exec(`CREATE INDEX ReceivedIndex ON Reports (Received)`); err != nil {
- return err
- }
- }
- // V2
- row = db.QueryRow(`SELECT attname FROM pg_attribute WHERE attrelid = (SELECT oid FROM pg_class WHERE relname = 'reports') AND attname = 'reportversion'`)
- if err := row.Scan(&t); err != nil {
- // The ReportVersion column doesn't exist; add the new columns.
- _, err = db.Exec(`ALTER TABLE Reports
- ADD COLUMN ReportVersion INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN NumCPU INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderRO INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderIgnorePerms INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderIgnoreDelete INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderAutoNormalize INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN DeviceIntroducer INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN DeviceCustomCertName INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN DeviceCompressAlways INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN DeviceCompressMetadata INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN DeviceCompressNever INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN DeviceDynamicAddr INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN DeviceStaticAddr INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN AnnounceGlobalEnabled BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN AnnounceLocalEnabled BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN AnnounceDefaultServersDNS INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN AnnounceDefaultServersIP INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN AnnounceOtherServers INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN RelayEnabled BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN RelayDefaultServers INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN RelayOtherServers INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN RateLimitEnabled BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN UpgradeAllowedManual BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN UpgradeAllowedAuto BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN FolderSimpleVersioning INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderExternalVersioning INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderStaggeredVersioning INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderTrashcanVersioning INTEGER NOT NULL DEFAULT 0
- `)
- if err != nil {
- return err
- }
- }
- row = db.QueryRow(`SELECT 'ReportVersionIndex'::regclass`)
- if err := row.Scan(&t); err != nil {
- if _, err = db.Exec(`CREATE INDEX ReportVersionIndex ON Reports (ReportVersion)`); err != nil {
- return err
- }
- }
- // V2.5
- row = db.QueryRow(`SELECT attname FROM pg_attribute WHERE attrelid = (SELECT oid FROM pg_class WHERE relname = 'reports') AND attname = 'upgradeallowedpre'`)
- if err := row.Scan(&t); err != nil {
- // The ReportVersion column doesn't exist; add the new columns.
- _, err = db.Exec(`ALTER TABLE Reports
- ADD COLUMN UpgradeAllowedPre BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN RescanIntvs INT[] NOT NULL DEFAULT '{}'
- `)
- if err != nil {
- return err
- }
- }
- // V3
- row = db.QueryRow(`SELECT attname FROM pg_attribute WHERE attrelid = (SELECT oid FROM pg_class WHERE relname = 'reports') AND attname = 'uptime'`)
- if err := row.Scan(&t); err != nil {
- // The Uptime column doesn't exist; add the new columns.
- _, err = db.Exec(`ALTER TABLE Reports
- ADD COLUMN Uptime INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN NATType VARCHAR(32) NOT NULL DEFAULT '',
- ADD COLUMN AlwaysLocalNets BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN CacheIgnoredFiles BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN OverwriteRemoteDeviceNames BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN ProgressEmitterEnabled BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN CustomDefaultFolderPath BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN WeakHashSelection VARCHAR(32) NOT NULL DEFAULT '',
- ADD COLUMN CustomTrafficClass BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN CustomTempIndexMinBlocks BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN TemporariesDisabled BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN TemporariesCustom BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN LimitBandwidthInLan BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN CustomReleaseURL BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN RestartOnWakeup BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN CustomStunServers BOOLEAN NOT NULL DEFAULT FALSE,
- ADD COLUMN FolderScanProgressDisabled INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderConflictsDisabled INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderConflictsUnlimited INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderConflictsOther INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderDisableSparseFiles INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderDisableTempIndexes INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderAlwaysWeakHash INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderCustomWeakHashThreshold INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderFsWatcherEnabled INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN FolderPullOrder JSONB NOT NULL DEFAULT '{}',
- ADD COLUMN FolderFilesystemType JSONB NOT NULL DEFAULT '{}',
- ADD COLUMN FolderFsWatcherDelays INT[] NOT NULL DEFAULT '{}',
- ADD COLUMN GUIEnabled INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUIUseTLS INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUIUseAuth INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUIInsecureAdminAccess INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUIDebugging INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUIInsecureSkipHostCheck INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUIInsecureAllowFrameLoading INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUIListenLocal INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUIListenUnspecified INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN GUITheme JSONB NOT NULL DEFAULT '{}',
- ADD COLUMN BlocksTotal INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN BlocksRenamed INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN BlocksReused INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN BlocksPulled INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN BlocksCopyOrigin INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN BlocksCopyOriginShifted INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN BlocksCopyElsewhere INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN Transport JSONB NOT NULL DEFAULT '{}',
- ADD COLUMN IgnoreLines INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN IgnoreInverts INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN IgnoreFolded INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN IgnoreDeletable INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN IgnoreRooted INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN IgnoreIncludes INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN IgnoreEscapedIncludes INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN IgnoreDoubleStars INTEGER NOT NULL DEFAULT 0,
- ADD COLUMN IgnoreStars INTEGER NOT NULL DEFAULT 0
- `)
- if err != nil {
- return err
- }
- }
- return nil
- }
- func insertReport(db *sql.DB, r report) error {
- r.Received = time.Now().UTC()
- fields := r.FieldPointers()
- params := make([]string, len(fields))
- for i := range params {
- params[i] = fmt.Sprintf("$%d", i+1)
- }
- query := "INSERT INTO Reports (" + strings.Join(r.FieldNames(), ", ") + ") VALUES (" + strings.Join(params, ", ") + ")"
- _, err := db.Exec(query, fields...)
- return err
- }
- type withDBFunc func(*sql.DB, http.ResponseWriter, *http.Request)
- func withDB(db *sql.DB, f withDBFunc) http.HandlerFunc {
- return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- f(db, w, r)
- })
- }
- func main() {
- log.SetFlags(log.Ltime | log.Ldate)
- log.SetOutput(os.Stdout)
- // Template
- fd, err := os.Open("static/index.html")
- if err != nil {
- log.Fatalln("template:", err)
- }
- bs, err := ioutil.ReadAll(fd)
- if err != nil {
- log.Fatalln("template:", err)
- }
- fd.Close()
- tpl = template.Must(template.New("index.html").Funcs(funcs).Parse(string(bs)))
- // DB
- db, err := sql.Open("postgres", dbConn)
- if err != nil {
- log.Fatalln("database:", err)
- }
- err = setupDB(db)
- if err != nil {
- log.Fatalln("database:", err)
- }
- // TLS
- cert, err := tls.LoadX509KeyPair(certFile, keyFile)
- if err != nil {
- log.Fatalln("tls:", err)
- }
- cfg := &tls.Config{
- Certificates: []tls.Certificate{cert},
- SessionTicketsDisabled: true,
- }
- // HTTPS
- listener, err := tls.Listen("tcp", listenAddr, cfg)
- if err != nil {
- log.Fatalln("https:", err)
- }
- srv := http.Server{
- ReadTimeout: 5 * time.Second,
- WriteTimeout: 5 * time.Second,
- }
- http.HandleFunc("/", withDB(db, rootHandler))
- http.HandleFunc("/newdata", withDB(db, newDataHandler))
- http.HandleFunc("/summary.json", withDB(db, summaryHandler))
- http.HandleFunc("/movement.json", withDB(db, movementHandler))
- http.HandleFunc("/performance.json", withDB(db, performanceHandler))
- http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
- err = srv.Serve(listener)
- if err != nil {
- log.Fatalln("https:", err)
- }
- }
- var (
- cacheData []byte
- cacheTime time.Time
- cacheMut sync.Mutex
- )
- const maxCacheTime = 5 * 60 * time.Second
- func rootHandler(db *sql.DB, w http.ResponseWriter, r *http.Request) {
- if r.URL.Path == "/" || r.URL.Path == "/index.html" {
- cacheMut.Lock()
- defer cacheMut.Unlock()
- if time.Since(cacheTime) > maxCacheTime {
- rep := getReport(db)
- buf := new(bytes.Buffer)
- err := tpl.Execute(buf, rep)
- if err != nil {
- log.Println(err)
- http.Error(w, "Template Error", http.StatusInternalServerError)
- return
- }
- cacheData = buf.Bytes()
- cacheTime = time.Now()
- }
- w.Header().Set("Content-Type", "text/html; charset=utf-8")
- w.Write(cacheData)
- } else {
- http.Error(w, "Not found", 404)
- return
- }
- }
- func newDataHandler(db *sql.DB, w http.ResponseWriter, r *http.Request) {
- defer r.Body.Close()
- var rep report
- rep.Date = time.Now().UTC().Format("20060102")
- lr := &io.LimitedReader{R: r.Body, N: 40 * 1024}
- if err := json.NewDecoder(lr).Decode(&rep); err != nil {
- log.Println("json decode:", err)
- http.Error(w, "JSON Decode Error", http.StatusInternalServerError)
- return
- }
- if err := rep.Validate(); err != nil {
- log.Println("validate:", err)
- log.Printf("%#v", rep)
- http.Error(w, "Validation Error", http.StatusInternalServerError)
- return
- }
- if err := insertReport(db, rep); err != nil {
- log.Println("insert:", err)
- log.Printf("%#v", rep)
- http.Error(w, "Database Error", http.StatusInternalServerError)
- return
- }
- }
- func summaryHandler(db *sql.DB, w http.ResponseWriter, r *http.Request) {
- s, err := getSummary(db)
- if err != nil {
- log.Println("summaryHandler:", err)
- http.Error(w, "Database Error", http.StatusInternalServerError)
- return
- }
- bs, err := s.MarshalJSON()
- if err != nil {
- log.Println("summaryHandler:", err)
- http.Error(w, "JSON Encode Error", http.StatusInternalServerError)
- return
- }
- w.Header().Set("Content-Type", "application/json")
- w.Write(bs)
- }
- func movementHandler(db *sql.DB, w http.ResponseWriter, r *http.Request) {
- s, err := getMovement(db)
- if err != nil {
- log.Println("movementHandler:", err)
- http.Error(w, "Database Error", http.StatusInternalServerError)
- return
- }
- bs, err := json.Marshal(s)
- if err != nil {
- log.Println("movementHandler:", err)
- http.Error(w, "JSON Encode Error", http.StatusInternalServerError)
- return
- }
- w.Header().Set("Content-Type", "application/json")
- w.Write(bs)
- }
- func performanceHandler(db *sql.DB, w http.ResponseWriter, r *http.Request) {
- s, err := getPerformance(db)
- if err != nil {
- log.Println("performanceHandler:", err)
- http.Error(w, "Database Error", http.StatusInternalServerError)
- return
- }
- bs, err := json.Marshal(s)
- if err != nil {
- log.Println("performanceHandler:", err)
- http.Error(w, "JSON Encode Error", http.StatusInternalServerError)
- return
- }
- w.Header().Set("Content-Type", "application/json")
- w.Write(bs)
- }
- type category struct {
- Values [4]float64
- Key string
- Descr string
- Unit string
- Binary bool
- }
- type feature struct {
- Key string
- Pct float64
- }
- func getReport(db *sql.DB) map[string]interface{} {
- nodes := 0
- var versions []string
- var platforms []string
- var numFolders []int
- var numDevices []int
- var totFiles []int
- var maxFiles []int
- var totMiB []int
- var maxMiB []int
- var memoryUsage []int
- var sha256Perf []float64
- var memorySize []int
- var compilers []string
- var builders []string
- v2Reports := 0
- features := map[string]float64{
- "Rate limiting": 0,
- "Upgrades allowed (automatic)": 0,
- "Upgrades allowed (manual)": 0,
- "Folders, automatic normalization": 0,
- "Folders, ignore deletes": 0,
- "Folders, ignore permissions": 0,
- "Folders, master mode": 0,
- "Folders, simple versioning": 0,
- "Folders, external versioning": 0,
- "Folders, staggered versioning": 0,
- "Folders, trashcan versioning": 0,
- "Devices, compress always": 0,
- "Devices, compress metadata": 0,
- "Devices, compress nothing": 0,
- "Devices, custom certificate": 0,
- "Devices, dynamic addresses": 0,
- "Devices, static addresses": 0,
- "Devices, introducer": 0,
- "Relaying, enabled": 0,
- "Relaying, default relays": 0,
- "Relaying, other relays": 0,
- "Discovery, global enabled": 0,
- "Discovery, local enabled": 0,
- "Discovery, default servers (using DNS)": 0,
- "Discovery, default servers (using IP)": 0,
- "Discovery, other servers": 0,
- }
- var numCPU []int
- var rep report
- rows, err := db.Query(`SELECT ` + strings.Join(rep.FieldNames(), ",") + ` FROM Reports WHERE Received > now() - '1 day'::INTERVAL`)
- if err != nil {
- log.Println("sql:", err)
- return nil
- }
- defer rows.Close()
- for rows.Next() {
- err := rows.Scan(rep.FieldPointers()...)
- if err != nil {
- log.Println("sql:", err)
- return nil
- }
- nodes++
- versions = append(versions, transformVersion(rep.Version))
- platforms = append(platforms, rep.Platform)
- if m := compilerRe.FindStringSubmatch(rep.LongVersion); len(m) == 3 {
- compilers = append(compilers, m[1])
- builders = append(builders, m[2])
- }
- if rep.NumFolders > 0 {
- numFolders = append(numFolders, rep.NumFolders)
- }
- if rep.NumDevices > 0 {
- numDevices = append(numDevices, rep.NumDevices)
- }
- if rep.TotFiles > 0 {
- totFiles = append(totFiles, rep.TotFiles)
- }
- if rep.FolderMaxFiles > 0 {
- maxFiles = append(maxFiles, rep.FolderMaxFiles)
- }
- if rep.TotMiB > 0 {
- totMiB = append(totMiB, rep.TotMiB*(1<<20))
- }
- if rep.FolderMaxMiB > 0 {
- maxMiB = append(maxMiB, rep.FolderMaxMiB*(1<<20))
- }
- if rep.MemoryUsageMiB > 0 {
- memoryUsage = append(memoryUsage, rep.MemoryUsageMiB*(1<<20))
- }
- if rep.SHA256Perf > 0 {
- sha256Perf = append(sha256Perf, rep.SHA256Perf*(1<<20))
- }
- if rep.MemorySize > 0 {
- memorySize = append(memorySize, rep.MemorySize*(1<<20))
- }
- if rep.URVersion >= 2 {
- v2Reports++
- numCPU = append(numCPU, rep.NumCPU)
- if rep.UsesRateLimit {
- features["Rate limiting"]++
- }
- if rep.UpgradeAllowedAuto {
- features["Upgrades allowed (automatic)"]++
- }
- if rep.UpgradeAllowedManual {
- features["Upgrades allowed (manual)"]++
- }
- if rep.FolderUses.AutoNormalize > 0 {
- features["Folders, automatic normalization"]++
- }
- if rep.FolderUses.IgnoreDelete > 0 {
- features["Folders, ignore deletes"]++
- }
- if rep.FolderUses.IgnorePerms > 0 {
- features["Folders, ignore permissions"]++
- }
- if rep.FolderUses.ReadOnly > 0 {
- features["Folders, master mode"]++
- }
- if rep.FolderUses.SimpleVersioning > 0 {
- features["Folders, simple versioning"]++
- }
- if rep.FolderUses.ExternalVersioning > 0 {
- features["Folders, external versioning"]++
- }
- if rep.FolderUses.StaggeredVersioning > 0 {
- features["Folders, staggered versioning"]++
- }
- if rep.FolderUses.TrashcanVersioning > 0 {
- features["Folders, trashcan versioning"]++
- }
- if rep.DeviceUses.CompressAlways > 0 {
- features["Devices, compress always"]++
- }
- if rep.DeviceUses.CompressMetadata > 0 {
- features["Devices, compress metadata"]++
- }
- if rep.DeviceUses.CompressNever > 0 {
- features["Devices, compress nothing"]++
- }
- if rep.DeviceUses.CustomCertName > 0 {
- features["Devices, custom certificate"]++
- }
- if rep.DeviceUses.DynamicAddr > 0 {
- features["Devices, dynamic addresses"]++
- }
- if rep.DeviceUses.StaticAddr > 0 {
- features["Devices, static addresses"]++
- }
- if rep.DeviceUses.Introducer > 0 {
- features["Devices, introducer"]++
- }
- if rep.Relays.Enabled {
- features["Relaying, enabled"]++
- }
- if rep.Relays.DefaultServers > 0 {
- features["Relaying, default relays"]++
- }
- if rep.Relays.OtherServers > 0 {
- features["Relaying, other relays"]++
- }
- if rep.Announce.GlobalEnabled {
- features["Discovery, global enabled"]++
- }
- if rep.Announce.LocalEnabled {
- features["Discovery, local enabled"]++
- }
- if rep.Announce.DefaultServersDNS > 0 {
- features["Discovery, default servers (using DNS)"]++
- }
- if rep.Announce.DefaultServersIP > 0 {
- features["Discovery, default servers (using IP)"]++
- }
- if rep.Announce.DefaultServersIP > 0 {
- features["Discovery, other servers"]++
- }
- }
- }
- var categories []category
- categories = append(categories, category{
- Values: statsForInts(totFiles),
- Descr: "Files Managed per Device",
- })
- categories = append(categories, category{
- Values: statsForInts(maxFiles),
- Descr: "Files in Largest Folder",
- })
- categories = append(categories, category{
- Values: statsForInts(totMiB),
- Descr: "Data Managed per Device",
- Unit: "B",
- Binary: true,
- })
- categories = append(categories, category{
- Values: statsForInts(maxMiB),
- Descr: "Data in Largest Folder",
- Unit: "B",
- Binary: true,
- })
- categories = append(categories, category{
- Values: statsForInts(numDevices),
- Descr: "Number of Devices in Cluster",
- })
- categories = append(categories, category{
- Values: statsForInts(numFolders),
- Descr: "Number of Folders Configured",
- })
- categories = append(categories, category{
- Values: statsForInts(memoryUsage),
- Descr: "Memory Usage",
- Unit: "B",
- Binary: true,
- })
- categories = append(categories, category{
- Values: statsForInts(memorySize),
- Descr: "System Memory",
- Unit: "B",
- Binary: true,
- })
- categories = append(categories, category{
- Values: statsForFloats(sha256Perf),
- Descr: "SHA-256 Hashing Performance",
- Unit: "B/s",
- Binary: true,
- })
- categories = append(categories, category{
- Values: statsForInts(numCPU),
- Descr: "Number of CPU cores",
- })
- var featureList []feature
- var featureNames []string
- for key := range features {
- featureNames = append(featureNames, key)
- }
- sort.Strings(featureNames)
- if v2Reports > 0 {
- for _, key := range featureNames {
- featureList = append(featureList, feature{
- Key: key,
- Pct: (100 * features[key]) / float64(v2Reports),
- })
- }
- sort.Sort(sort.Reverse(sortableFeatureList(featureList)))
- }
- r := make(map[string]interface{})
- r["nodes"] = nodes
- r["v2nodes"] = v2Reports
- r["categories"] = categories
- r["versions"] = group(byVersion, analyticsFor(versions, 2000), 5)
- r["platforms"] = group(byPlatform, analyticsFor(platforms, 2000), 5)
- r["compilers"] = group(byCompiler, analyticsFor(compilers, 2000), 3)
- r["builders"] = analyticsFor(builders, 12)
- r["features"] = featureList
- return r
- }
- func ensureDir(dir string, mode int) {
- fi, err := os.Stat(dir)
- if os.IsNotExist(err) {
- os.MkdirAll(dir, 0700)
- } else if mode >= 0 && err == nil && int(fi.Mode()&0777) != mode {
- os.Chmod(dir, os.FileMode(mode))
- }
- }
- var plusRe = regexp.MustCompile(`\+.*$`)
- // transformVersion returns a version number formatted correctly, with all
- // development versions aggregated into one.
- func transformVersion(v string) string {
- if v == "unknown-dev" {
- return v
- }
- if !strings.HasPrefix(v, "v") {
- v = "v" + v
- }
- v = plusRe.ReplaceAllString(v, " (+dev)")
- return v
- }
- type summary struct {
- versions map[string]int // version string to count index
- max map[string]int // version string to max users per day
- rows map[string][]int // date to list of counts
- }
- func newSummary() summary {
- return summary{
- versions: make(map[string]int),
- max: make(map[string]int),
- rows: make(map[string][]int),
- }
- }
- func (s *summary) setCount(date, version string, count int) {
- idx, ok := s.versions[version]
- if !ok {
- idx = len(s.versions)
- s.versions[version] = idx
- }
- if s.max[version] < count {
- s.max[version] = count
- }
- row := s.rows[date]
- if len(row) <= idx {
- old := row
- row = make([]int, idx+1)
- copy(row, old)
- s.rows[date] = row
- }
- row[idx] = count
- }
- func (s *summary) MarshalJSON() ([]byte, error) {
- var versions []string
- for v := range s.versions {
- versions = append(versions, v)
- }
- sort.Strings(versions)
- var filtered []string
- for _, v := range versions {
- if s.max[v] > 50 {
- filtered = append(filtered, v)
- }
- }
- versions = filtered
- headerRow := []interface{}{"Day"}
- for _, v := range versions {
- headerRow = append(headerRow, v)
- }
- var table [][]interface{}
- table = append(table, headerRow)
- var dates []string
- for k := range s.rows {
- dates = append(dates, k)
- }
- sort.Strings(dates)
- for _, date := range dates {
- row := []interface{}{date}
- for _, ver := range versions {
- idx := s.versions[ver]
- if len(s.rows[date]) > idx && s.rows[date][idx] > 0 {
- row = append(row, s.rows[date][idx])
- } else {
- row = append(row, nil)
- }
- }
- table = append(table, row)
- }
- return json.Marshal(table)
- }
- func getSummary(db *sql.DB) (summary, error) {
- s := newSummary()
- rows, err := db.Query(`SELECT Day, Version, Count FROM VersionSummary WHERE Day > now() - '2 year'::INTERVAL;`)
- if err != nil {
- return summary{}, err
- }
- defer rows.Close()
- for rows.Next() {
- var day time.Time
- var ver string
- var num int
- err := rows.Scan(&day, &ver, &num)
- if err != nil {
- return summary{}, err
- }
- if ver == "v0.0" {
- // ?
- continue
- }
- // SUPER UGLY HACK to avoid having to do sorting properly
- if len(ver) == 4 { // v0.x
- ver = ver[:3] + "0" + ver[3:] // now v0.0x
- }
- s.setCount(day.Format("2006-01-02"), ver, num)
- }
- return s, nil
- }
- func getMovement(db *sql.DB) ([][]interface{}, error) {
- rows, err := db.Query(`SELECT Day, Added, Removed, Bounced FROM UserMovement WHERE Day > now() - '2 year'::INTERVAL ORDER BY Day`)
- if err != nil {
- return nil, err
- }
- defer rows.Close()
- res := [][]interface{}{
- {"Day", "Joined", "Left", "Bounced"},
- }
- for rows.Next() {
- var day time.Time
- var added, removed, bounced int
- err := rows.Scan(&day, &added, &removed, &bounced)
- if err != nil {
- return nil, err
- }
- row := []interface{}{day.Format("2006-01-02"), added, -removed, bounced}
- if removed == 0 {
- row[2] = nil
- }
- if bounced == 0 {
- row[3] = nil
- }
- res = append(res, row)
- }
- return res, nil
- }
- func getPerformance(db *sql.DB) ([][]interface{}, error) {
- rows, err := db.Query(`SELECT Day, TotFiles, TotMiB, SHA256Perf, MemorySize, MemoryUsageMiB FROM Performance WHERE Day > '2014-06-20'::TIMESTAMP ORDER BY Day`)
- if err != nil {
- return nil, err
- }
- defer rows.Close()
- res := [][]interface{}{
- {"Day", "TotFiles", "TotMiB", "SHA256Perf", "MemorySize", "MemoryUsageMiB"},
- }
- for rows.Next() {
- var day time.Time
- var sha256Perf float64
- var totFiles, totMiB, memorySize, memoryUsage int
- err := rows.Scan(&day, &totFiles, &totMiB, &sha256Perf, &memorySize, &memoryUsage)
- if err != nil {
- return nil, err
- }
- row := []interface{}{day.Format("2006-01-02"), totFiles, totMiB, float64(int(sha256Perf*10)) / 10, memorySize, memoryUsage}
- res = append(res, row)
- }
- return res, nil
- }
- type sortableFeatureList []feature
- func (l sortableFeatureList) Len() int {
- return len(l)
- }
- func (l sortableFeatureList) Swap(a, b int) {
- l[a], l[b] = l[b], l[a]
- }
- func (l sortableFeatureList) Less(a, b int) bool {
- if l[a].Pct != l[b].Pct {
- return l[a].Pct < l[b].Pct
- }
- return l[a].Key > l[b].Key
- }
|