From: "Schmidt, Adriaan" <adriaan.schmidt@siemens.com>
To: "jan.kiszka@siemens.com" <jan.kiszka@siemens.com>,
"isar-users@googlegroups.com" <isar-users@googlegroups.com>
Subject: RE: [RFC PATCH 4/5] meta: add mounts class
Date: Wed, 20 Oct 2021 07:02:45 +0000 [thread overview]
Message-ID: <AM4PR1001MB122024C5BAE0F2FA63C82070EDBE9@AM4PR1001MB1220.EURPRD10.PROD.OUTLOOK.COM> (raw)
In-Reply-To: <451a6c60-63a1-fdc6-58d6-e8ce4475dbbb@siemens.com>
On 2021-10-13 12:31, Jan Kiszka wrote:
> On 12.10.21 15:04, Adriaan Schmidt wrote:
> > +def get_requested_mounts(d, task=None):
> > + if task is None:
> > + task = d.getVar('BB_CURRENTTASK')
> > + if not task:
> > + bb.fatal("mount code running without task context!?")
> > + if task.startswith("do_"):
> > + task = task[3:]
> > + mounts = (d.getVarFlag("do_" + task, 'mounts') or "").split()
>
> You first strip the do_ prefix, only to prepend it again. Is that
> indended? If so, maybe flip it around and prepend this if missing.
This is how OE's sstate.bbclass does it. I agree it's ugly, but turning it around does not look much better either.
It's about accepting task names with and without "do_", but I'm not even sure both cases can happen here. I'll have another look an clean this up.
> > +def shorten_path(x, n=3):
> > + xs = x.split('/')
> > + if len(xs) <= n:
> > + return '/'.join(xs)
> > + return '.../'+'/'.join(xs[-3:])
>
> Hope this does not cut off any differentiating information, even when
> just targeting logs.
It might. During development it makes reading the prints much easier, but for proper logs we want the complete paths (will change for next version).
> > +python mounts_task_prefunc () {
> > + from collections import namedtuple
> > + Mount = namedtuple('Mount', 'cmd source target count')
> > + task = d.getVar('PN') + ':' + d.getVar('BB_CURRENTTASK')
> > + lock = bb.utils.lockfile(d.getVar("MOUNTS_LOCK"))
> > + mounts = get_requested_mounts(d)
> > + mtab = read_mtab(d)
> > + for cmd, source, target in mounts:
> > + mt = mtab.get(target)
> > + if mt:
> > + count = mt.count + 1
> > + bb.debug(1, f"mount({task}): already mounted
> {shorten_path(mt.source)} at {shorten_path(mt.target)}, cnt={count}")
> > + mtab[target] = mt._replace(count=count)
> > + continue
> > + bb.debug(1, f"mount({task}): mounting {shorten_path(source)} at
> {shorten_path(target)}, cnt=1")
> > + d.setVar('MOUNT_ARG_SOURCE', source)
> > + d.setVar('MOUNT_ARG_TARGET', target)
> > + bb.build.exec_func('mount_' + cmd, d)
>
> Could this fail and leave the lock blocked behind?
Oh yes, good point! This also needs a try/catch, just like the umounts.
> > +addhandler mounts_cleanup
> > +python mounts_cleanup() {
> > + # look through MOUNTS_DB for contexts
> > + import glob
> > + import time
> > + base = d.getVar('MOUNTS_DB')
> > + locks = glob.glob(base + "/*.mountlock")
> > + tabs = glob.glob(base + "/*.mounttab")
> > +
> > + # there should not be any locks?
> > + if len(locks) > 0:
> > + bb.error(f"mounts_cleanup: someone still holding lock?
> ({str(locks)})")
> > +
> > + # cleanup any existing contexts
> > + for mtab_file in tabs:
> > + mtab = read_mtab(d, mtab_file)
> > + if len(mtab) > 0:
> > + bb.note(f"mounts_cleanup: {mtab_file.split('/')[-1]}")
> > +
> > + done = []
> > + for target, mt in mtab.items():
> > + if mt.count < 0:
> > + bb.error("count on {target} < 0. BUG!?!")
> > + continue
> > + if mt.count > 0:
> > + bb.error(f"cound on {target} > 0. BUG!?!")
> > +
> > + bb.note(f"mounts_cleanup: unmounting {target}")
> > + for i in range(10):
> > + try:
> > + d.setVar('UMOUNT_ARG_TARGET', target)
> > + bb.build.exec_func('umount_' + mt.cmd, d)
> > + done.append(target)
> > + break
> > + except bb.process.ExecutionError as e:
> > + if e.exitcode == 32:
> > + # target busy
> > + time.sleep(1)
> > + continue
> > + else:
> > + bb.error(f"umount({task}): {str(e)}")
> > + done.append(target)
> > + break
> > + bb.warn(f"mounts_cleanup: failed to umount {target}")
> > + done.append(target)
> > +
> > + for target in done:
> > + del mtab[target]
> > + write_mtab(d, mtab, mtab_file)
> > +}
> > +
> > +mounts_cleanup[eventmask] = "bb.event.BuildCompleted"
> > diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
> > index 7f5901d..4726eaf 100644
> > --- a/meta/conf/bitbake.conf
> > +++ b/meta/conf/bitbake.conf
> > @@ -113,7 +113,7 @@ PARALLEL_MAKE ?= "-j ${@bb.utils.cpu_count()}"
> > BBINCLUDELOGS ??= "yes"
> >
> > # Add event handlers for bitbake
> > -INHERIT += "isar-events"
> > +INHERIT += "mounts isar-events"
> >
> > include conf/local.conf
> > include conf/multiconfig/${BB_CURRENT_MC}.conf
> >
>
> With all this in place, did you see warning in build_completed() triggering?
In "normal" cases, the cleanup code of the new mounts class is already doing it's job. I have still seen issues in the ci tests (at least in the pre-avocado variant), which may be due to multiconfig and the concurrency/sharing it brings. This needs some more work on my side.
Adriaan
next prev parent reply other threads:[~2021-10-20 7:02 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-12 13:04 [RFC PATCH 0/5] Refactor mount logic Adriaan Schmidt
2021-10-12 13:04 ` [RFC PATCH 1/5] oe imports in central location Adriaan Schmidt
2021-10-12 13:04 ` [RFC PATCH 2/5] meta: refactor containerization Adriaan Schmidt
2021-10-13 10:17 ` Jan Kiszka
2021-10-12 13:04 ` [RFC PATCH 3/5] meta: add oe.utils Adriaan Schmidt
2021-10-13 10:17 ` Jan Kiszka
2021-10-20 6:49 ` Schmidt, Adriaan
2021-10-12 13:04 ` [RFC PATCH 4/5] meta: add mounts class Adriaan Schmidt
2021-10-13 10:31 ` Jan Kiszka
2021-10-20 7:02 ` Schmidt, Adriaan [this message]
2021-10-12 13:04 ` [RFC PATCH 5/5] meta: refactor to use the new mounting mechanism Adriaan Schmidt
2021-10-13 10:42 ` Jan Kiszka
2021-10-20 9:20 ` Schmidt, Adriaan
2021-11-22 14:45 ` [RFC PATCH 0/5] Refactor mount logic Anton Mikanovich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=AM4PR1001MB122024C5BAE0F2FA63C82070EDBE9@AM4PR1001MB1220.EURPRD10.PROD.OUTLOOK.COM \
--to=adriaan.schmidt@siemens.com \
--cc=isar-users@googlegroups.com \
--cc=jan.kiszka@siemens.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox