git » autoupdaters.git » main » tree

[main] / linux-kbb / kbb.py

  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
#!/usr/bin/env python3

# kbb aka kernel build bot
# but not referred to with the full name,
# since there's many a "kernel build bot" out there...
# but I dont have a name really, so ... kbb.py it is.

import os
import sys
import json
import urllib.request
import urllib.error
import shutil
import subprocess
import time
import datetime
import traceback
from subprocess import DEVNULL, PIPE, STDOUT
from email.message import EmailMessage

def sub(*args, **kwargs):
    c = subprocess.run(*args, **kwargs)
    if c.returncode != 0:
        return False
    if c.stdout:
        return c.stdout
    return True


def subc(*args, **kwargs):
    c = subprocess.run(*args, **kwargs)
    if c.returncode != 0:
        print("subprocess failed: ", args)
        print("code:", c.returncode)
        sys.exit(1)
    return c.stdout

# Kernel Build
class KB:
    def __init__(self, patchset, verpolicy="mainline", build=None, dir=None):
        self.patchset = patchset
        self.verpolicy = verpolicy
        if dir is None:
            dir = f"linux-kbb-{patchset}-{verpolicy}"
        self.dir = dir
        if build is None:
            build = f"./build-{patchset}-{verpolicy}.sh"
        self.build = build
        self.indir = False
        self.mounted = False

    def __str__(self):
        return self.patchset + "-" + self.verpolicy

    def mkworktree(self):
        try:
            os.mkdir(self.dir)
        except FileExistsError:
            pass
        subc(["mount","-t","tmpfs","-o","rw,size=8G","tmpfs",self.dir])
        self.mounted = True
        os.chdir("linux")
        subc(["git", "worktree", "prune"])
        subc(["git", "worktree", "add", "../" + self.dir])
        os.chdir("..")

    def cleanup(self):
        assert self.indir is False, "cleanup while in dir"
        if self.mounted:
            subc(["umount", "-l", self.dir])
        self.mounted = False

    def cd_into(self):
        assert self.indir is False, "double cd_into"
        try:
            _ = os.stat(self.dir + "/Makefile")
        except FileNotFoundError:
            self.mkworktree()
        os.chdir(self.dir)
        self.indir = True

    def cd_out(self):
        os.chdir("..")
        self.indir = False



kernels = [
    KB("armlfs"),
    KB("armlfs", "stable"),
    KB("armlfs", "6.6"),
    KB("armlfs", "6.1")
]

url = "https://www.kernel.org/releases.json"

prev2_releases = "old_releases.json"
prev_releases = "prev_releases.json"
curr_fn = "releases.json"

emhost = '\x40tea.urja.dev'
whoami = f'KBB <kbb{emhost}>'
toaddr = f'urja{emhost}, urja\x40urja.dev'
emailproc = ['ssh', 'kbb\x40urja.dev', 'sendmail', '-t']

def vtag4xfer(x):
    return f"refs/tags/v{x}:refs/tags/v{x}"

def htmlize(s):
    escapes = {
        '&': '&amp;',
        '>': '&gt;',
        '<': '&lt;'
    }
    prefix = '<html><head></head><body><pre>\n'
    suffix = '</pre></body></html>\n'
    for k in escapes:
        s = s.replace(k, escapes[k])
    return prefix + s + suffix

def mail(subj, logfn = None, log = None):
    if logfn:
        with open(logfn) as f:
            log = f.read()

    attach_threshold = 25
    msg = EmailMessage()
    msg['Subject'] = '[KBB] ' + subj
    msg['From'] = whoami
    msg['To'] = toaddr

    sniplocator = '*** Waiting for unfinished jobs'

    if log.count('\n') > attach_threshold:
        attach = log;
        log = log.splitlines()
        sniploc = None
        for i in range(len(log)-1,0,-1):
            if sniplocator in log[i]:
                sniploc = i
                break
        if sniploc:
            presnip = "<snip>\n"
            postsnip = "<snip>\n"
            if sniploc < attach_threshold:
                sniploc = attach_threshold
                presnip = ""
            log = log[sniploc-attach_threshold:sniploc]
            if sniploc >= len(log):
                postsnip = ""
            log = presnip + '\n'.join(log) + '\n' + postsnip
        else:
            log = log[-attach_threshold:]
            log = '<snip>\n' + '\n'.join(log) + '\n'
    else:
        attach = None

    msg.set_content(log)
    msg.add_alternative(htmlize(log), subtype='html')
    if attach:
        msg.add_attachment(attach, filename='log.txt', cte='quoted-printable')

    #print(msg)
    #subprocess.run(emailproc, input=msg.as_bytes())
    print(f"Would mail: {subj}")

def json_readf(fn):
    with open(fn, "r") as f:
        d = f.read()
    return json.loads(d)




def versplit(ver):
    return [int(x) if x.isdigit() else x for x in ver.split(sep=".")]


def tag_exists(tag):
    return sub(["git", "rev-parse", "refs/tags/" + tag], stdout=DEVNULL, stderr=DEVNULL)

def get_current_branch():
    return subc(["git", "branch", "--show-current"], stdout=PIPE).decode().strip()


# Calling rebase and tag "repatch" ... ok.
def repatch_indir(patchset, newver, verpolicy):
    tagname = patchset + "-" + newver
    if os.path.exists(".skipkbb"):
        return False

    if tag_exists(tagname):
        return tagname

    oldtag = subc(["git", "describe", "--tags"], stdout=PIPE).decode().strip()
    (oldset, oldver) = oldtag.split(sep="-", maxsplit=1)

    if '-v' in oldver:
        oldver, _ = oldver.rsplit(sep="-v", maxsplit=1)

    if verpolicy != "mainline":
        newno = versplit(newver)
        oldno = versplit(oldver)
        if newno[0:2] != oldno[0:2]:
            mlvertag = patchset + "-" + str(newno[0]) + "." + str(newno[1])
            if tag_exists(mlvertag):
                branchname = get_current_branch()
                subc(["git", "switch", "-C", branchname, "refs/tags/" + mlvertag])
                (oldset, oldver) = mlvertag.split(sep="-", maxsplit=1)

    if oldset != patchset:
        print(f"Error: this git tree is on a tag for patchset {oldset}, not {patchset}?")
        return False

    oldvertag = "tags/v" + oldver

    patches = subc(["git", "rev-list", "--count", oldvertag + "..HEAD"], stdout=PIPE)
    patches = int(patches.decode())

    vertag = "tags/v" + newver

    rebase_cmd = ["git", "rebase", "HEAD~" + str(patches), "--onto", vertag]
    rebase_log = ".kbb-rebase-log"
    rbproc = subprocess.Popen(rebase_cmd, stdin=DEVNULL, stderr=STDOUT, stdout=PIPE)
    tee = subprocess.Popen(["tee", rebase_log], stdin=rbproc.stdout)
    r1 = rbproc.wait()
    tee.wait()
    if r1:
        mail("Uhh, rebase trouble with " + tagname, rebase_log)
        print(
            "Finish rebase manually. Use 'touch .skipkbb' to skip this kernel for now instead."
        )
        sub(["/bin/bash"])

    if os.path.exists(".skipkbb"):
        return False

    count = subc(["git", "rev-list", "--count", vertag + "..HEAD"], stdout=PIPE)
    count = int(count.decode())
    if count != patches:
        print(f"Info: patchset {patchset} now (version {newver}) has {count} patches.")

    subc(["git", "tag", tagname])
    return tagname


def repatch(k, newver):
    k.cd_into()
    r = repatch_indir(k.patchset, newver, k.verpolicy)
    k.cd_out()
    return r


def find_new_version(k, rels, update_mainline, update_stable):
    nv = None
    vp = k.verpolicy
    if vp == "mainline":
        if update_mainline:
            nv = update_mainline
    elif vp == "stable":
        if rels["latest_stable"]["version"] in update_stable:
            nv = rels["latest_stable"]["version"]
    else:
        # Operate with integer versions so that we dont consider
        # like 6.11.x to be a new version of "6.1".
        vps = versplit(vp)
        vl = len(vps)
        for v in update_stable:
            vs = versplit(v)
            if vps[0:vl] == vs[0:vl]:
                nv = v
    return nv


def publish_indir(k, nv, tag):
    branch = get_current_branch()
    if tag:
        tagname = tag
    else:
        tagname = k.patchset + "-" + nv
    pids = str(os.getpid())
    logfn = f"../log/publish-{k}-v{nv}_{pids}.log"
    print(f"Publishing git tree, log: {logfn}")
    b1 = f"{branch}:refs/heads/{branch}"
    t1 = f"refs/tags/v{nv}:refs/tags/v{nv}"
    t2 = f"refs/tags/{tagname}:refs/tags/{tagname}"
    with open(logfn, "w") as f:
        if not sub(['git','push','-f',"publish", b1, t1, t2], stdin=DEVNULL, stderr=STDOUT, stdout=f):
            mail(f"Publish failure (build success) {k} {nv}", logfn)

def publish(k, nv, tag=None):
    k.cd_into()
    try:
        publish_indir(k, nv, tag)
    except Exception:
        traceback.print_exc()
    k.cd_out()


def build(k, nv, tag):
    today = datetime.date.today()
    ymd = today.strftime("%y%m%d")
    pids = str(os.getpid())
    logfn = f"log/build-{k}-{ymd}-v{nv}_{pids}.log"
    print(f"Building - for details see '{logfn}'")
    with open(logfn, "w") as f:
        with subprocess.Popen(["yes", ""], stdin=DEVNULL, stdout=PIPE) as yep:
            if sub([k.build, tag], stdin=yep.stdout, stderr=STDOUT, stdout=f):
                print("Done. Return value zero (y).")
                print("Running publish()..")
                publish(k, nv, tag)
                print("Done")
                return f"{k} {nv}"
            else:
                print("Oopsie? Build ended with nonzero return value :(")
                mail(f"Build failure {k} {nv}", logfn)
                with open("ATTN.txt", "a") as of:
                    of.write(logfn + "\n")
                return None
        


def doakernel(k, rels, update_mainline, update_stable):
    nv = find_new_version(k, rels, update_mainline, update_stable)
    if not nv:
        return None

    print(f"Re/patching {k} to version {nv}")
    tag = repatch(k, nv)
    if not tag:
        print("No tag returned - skipping build")
        return None

    return build(k, nv, tag)

def rebuild_kernel(k):
    # Figure out the version the kernel is "supposed to" be
    k.cd_into()
    kv = subc(["git", "describe", "--tags", "--match", "v*", "--exclude", k.patchset + '-*' ], stdout=PIPE).decode().strip()
    kv = kv[1:].split(sep='-')
    if kv[1].startswith("rc"):
        kv = kv[0] + '-' + kv[1]
    else:
        kv = kv[0]

    print(f"Determined the kernel version to be {kv}")

    tagbase = k.patchset + '-' + kv
    sub(["git", "tag", "-d", tagbase])
    subc(["git", "tag", tagbase])
    print(f"(Re-)created tag {tagbase} - now creating a fresh tag for build processes")

    vnum = 2
    while True:
        buildtag = f"{tagbase}-v{vnum}"
        if tag_exists(buildtag):
            vnum += 1
            continue
        subc(["git", "tag", buildtag])
        break
    print(f"Tag for build: {buildtag}")
    k.cd_out()
    return build(k, kv, buildtag)


def successmail(successlist):
    if successlist:
        if len(successlist) > 1:
            mail(f"Success building {len(successlist)} kernels", log="\n".join(successlist) + "\n")
        else:
            mail("Success building " + successlist[0], log="\n")

def update_and_build():
    if not os.path.exists(curr_fn):
        r = urllib.request.urlopen(url, timeout=30)
        with open(curr_fn, "w+b") as t:
            shutil.copyfileobj(r, t)

    if not os.path.exists(prev_releases):
        os.rename(curr_fn, prev_releases)
        sys.exit(0)

    rels = json_readf(curr_fn)
    prevs = json_readf(prev_releases)

    update_stable = []
    update_mainline = False
    for r in rels["releases"]:
        if not r["version"][0].isdigit():
            continue
        verno = versplit(r["version"])
        print(r["moniker"], verno)
        found = False
        for o in prevs["releases"]:
            # mainline is just compared to mainline, rest to matching 2 numbers of version
            if r["moniker"] == "mainline":
                if o["moniker"] != "mainline":
                    continue
                found = True
                if r["version"] != o["version"]:
                    update_mainline = r["version"]
                break
            if o["moniker"] == "mainline":
                continue
            oldver = versplit(o["version"])
            if oldver[0:2] == verno[0:2]:
                found = True
                if o["version"] != r["version"]:
                    update_stable.append(r["version"])
                break
        if not found:
            if r["moniker"] == "mainline":
                update_mainline = r["version"]
            else:
                update_stable.append(r["version"])

    print("Update stable:", bool(update_stable), update_stable)
    print("Update mainline:", bool(update_mainline), update_mainline)

    if update_stable or update_mainline:
        os.chdir("linux")
        if update_mainline:
            print("Fetching mainline")
            subc(["git", "fetch", "mainline", "master", vtag4xfer(update_mainline)])
            print("Done")

        if update_stable:
            print("Fetching stable(s)")
            targets = [vtag4xfer(x) for x in update_stable]
            subc(["git", "fetch", "stable"] + targets)
            print("Done")
        os.chdir("..")

    successlist = []
    for k in kernels:
        r = doakernel(k, rels, update_mainline, update_stable)
        if r:
            successlist.append(r)
        k.cleanup()

    # finally, move prev to old, releases to prev
    os.replace(prev_releases, prev2_releases)
    os.replace(curr_fn, prev_releases)
    successmail(successlist)
#    if successlist:
#        subc(["git", "commit", "-a", "-m", "Automatic update"])
#        subc(["git", "push"])


if len(sys.argv) == 1:
    update_and_build()
elif len(sys.argv) == 3 and sys.argv[1] == "--mkworktree":
    for k in kernels:
        if str(k) == sys.argv[2]:
            print(f"Making worktree for {k}: {k.dir}")
            k.cd_into()
            print("Remember to cleanup the worktree when you're done with it (umount)")
elif len(sys.argv) == 3 and sys.argv[1] == "--rebuild":
    successlist = []
    for k in kernels:
        if str(k) == sys.argv[2]:
            print(f"Found definition for kernel {k} - trying to rebuild")
            r = rebuild_kernel(k)
            if r:
                successlist.append(r)
            k.cleanup()
    successmail(successlist)
else:
    print(f"usage: {sys.argv[0]} [--rebuild <patchset-verpolicy>]")