<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:"Courier New";}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72" style="word-wrap:break-word">
<div class="WordSection1">
<p class="MsoNormal">Hello All, <o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Currently I am investigating the bootup failures which I see on our 0penBmc based boards when the rw-fs is full.
<o:p></o:p></p>
<p class="MsoNormal">The rw-fs can become full because of many reasons. One example being too frequent bmc dump creation which are stored in rw-fs.
<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I have allocated 16MB for the read-write fs and part of the init sequence there is overlay file system which is being mounted as the root-fs which combines the ro-fs and the rw-fs.
<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<pre style="text-indent:.5in;background:white"><span style="color:black"><a href="https://grok.openbmc.org/s?defs=mount&project=openbmc"><span style="color:#2030A2;text-decoration:none">mount</span></a> -t <a href="https://grok.openbmc.org/s?defs=overlay&project=openbmc"><span style="color:#2030A2;text-decoration:none">overlay</span></a> -o <a href="https://grok.openbmc.org/s?defs=lowerdir&project=openbmc"><span style="color:#2030A2;text-decoration:none">lowerdir</span></a>=<a href="https://grok.openbmc.org/s?defs=%24rodir&project=openbmc"><span style="color:#2030A2;text-decoration:none">$rodir</span></a>,<a href="https://grok.openbmc.org/s?defs=upperdir&project=openbmc"><span style="color:#2030A2;text-decoration:none">upperdir</span></a>=<a href="https://grok.openbmc.org/s?defs=%24upper&project=openbmc"><span style="color:#2030A2;text-decoration:none">$upper</span></a>,<a href="https://grok.openbmc.org/s?defs=workdir&project=openbmc"><span style="color:#2030A2;text-decoration:none">workdir</span></a>=<a href="https://grok.openbmc.org/s?defs=%24work&project=openbmc"><span style="color:#2030A2;text-decoration:none">$work</span></a> <a href="https://grok.openbmc.org/s?defs=cow&project=openbmc"><span style="color:#2030A2;text-decoration:none">cow</span></a> /<a href="https://grok.openbmc.org/s?defs=root&project=openbmc"><span style="color:#2030A2;text-decoration:none">root</span></a><o:p></o:p></span></pre>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Above ‘mount overlay’ command fails with the below error when the upperdir which the rw-fs is full.
<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:.5in"><o:p> </o:p></p>
<pre style="text-indent:.5in;background:white"><span class="MsoHyperlink"><span style="color:#2030A2;text-decoration:none">chroot: can't execute '/bin/sh': No such file or directory<o:p></o:p></span></span></pre>
<pre style="text-indent:.5in;background:white"><span class="MsoHyperlink"><span style="color:#2030A2;text-decoration:none">Unable to confirm /sbin/init is an executable non-empty file<o:p></o:p></span></span></pre>
<pre style="text-indent:.5in;background:white"><span class="MsoHyperlink"><span style="color:#2030A2;text-decoration:none">in merged file system mounted at /root.<o:p></o:p></span></span></pre>
<pre style="text-indent:.5in;background:white"><span class="MsoHyperlink"><span style="color:#2030A2;text-decoration:none">Change Root test failed!<o:p></o:p></span></span></pre>
<pre style="text-indent:.5in;background:white"><span class="MsoHyperlink"><span style="color:#2030A2;text-decoration:none">Fatal error, triggering kernel panic!<o:p></o:p></span></span></pre>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Basically, when the ‘overlayfs’ fails there is no rootfs mounted on the /. So, I am thinking the subsequent init sequence fails.
<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I am very much interested in knowing if anyone has any thoughts on solving this issue or has encountered and already found some existing solutions.
<o:p></o:p></p>
<p class="MsoNormal">One solution which is in my mind is to capture the failure of mount overlay command and do a self-clean-up procedure on the rw-fs with a white-list policy.
<o:p></o:p></p>
<p class="MsoNormal">Thanks for any kind input. <o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Regards,<o:p></o:p></p>
<p class="MsoNormal">Rohit PAI <o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
</body>
</html>