From b8025e972081b70960ffcbcbe43a7118041556a1 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 5 Jan 2020 14:49:03 +0000 Subject: sstate: Handle sstate filenames longer than 255 characters Many filesystems can't cope with filenames longer that 255 characters. Add code to detect this and truncate non-essential elements of the filename to stay within the limit. [YOCTO #13268] (From OE-Core rev: 90cc3d1ed1a12294a2d3ac97c1ba528ab315605d) Signed-off-by: Richard Purdie --- meta/classes/sstate.bbclass | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'meta/classes/sstate.bbclass') diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 71ae090077..241dace6d9 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -7,11 +7,28 @@ def generate_sstatefn(spec, hash, taskname, siginfo, d): if taskname is None: return "" extension = ".tgz" + # 8 chars reserved for siginfo + limit = 254 - 8 if siginfo: + limit = 254 extension = ".tgz.siginfo" if not hash: hash = "INVALID" - return hash[:2] + "/" + hash[2:4] + "/" + spec + hash + "_" + taskname + extension + fn = spec + hash + "_" + taskname + extension + # If the filename is too long, attempt to reduce it + if len(fn) > limit: + components = spec.split(":") + # Fields 0,5,6 are mandatory, 1 is most useful, 2,3,4 are just for information + # 7 is for the separators + avail = (254 - len(hash + "_" + taskname + extension) - len(components[0]) - len(components[1]) - len(components[5]) - len(components[6]) - 7) / 3 + components[2] = components[2][:avail] + components[3] = components[3][:avail] + components[4] = components[4][:avail] + spec = ":".join(components) + fn = spec + hash + "_" + taskname + extension + if len(fn) > limit: + bb.fatal("Unable to reduce sstate name to less than 255 chararacters") + return hash[:2] + "/" + hash[2:4] + "/" + fn SSTATE_PKGARCH = "${PACKAGE_ARCH}" SSTATE_PKGSPEC = "sstate:${PN}:${PACKAGE_ARCH}${TARGET_VENDOR}-${TARGET_OS}:${PV}:${PR}:${SSTATE_PKGARCH}:${SSTATE_VERSION}:" -- cgit v1.2.3-54-g00ecf