<table><tr><td style="">jpalecek created this revision.<br />jpalecek added reviewers: Plasma, davidedmundson.<br />Herald added a project: Plasma.<br />jpalecek requested review of this revision.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D29780">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>When I run ksysgruard from a terminal, I found out it doesn't<br />
connect to remote hosts' sensors (tried with localhost, but anyway)<br />
and messes up the terminal (which doesn't show the input<br />
afterwards). This is caused by ssh, which ksysguard uses to connect to<br />
remote host, asking for the password on the terminal. This is super<br />
annoying, because you don't normally expect a GUI application like<br />
ksysguard to ask for anything on the terminal, and also because the<br />
mess up later.</p>

<p>The reason is that nothing changes the controlling terminal when<br />
 ksysguard runs ssh, so it inherits the parent's terminal. SSH<br />
 normally uses the terminal to get password if it has one. However, it<br />
 will use <tt style="background: #ebebeb; font-size: 13px;">SSH_ASKPASS</tt> if it doesn't, which is what we want.</p>

<p>This patch fixes it by running whatever is ran by SensorShellAgent<br />
 with <tt style="background: #ebebeb; font-size: 13px;">setsid</tt>, which is an executable from the util-linux package. I've<br />
 considered the following alternatives and found this one to be the<br />
simplest:</p>

<ol class="remarkup-list">
<li class="remarkup-list-item">Use <tt style="background: #ebebeb; font-size: 13px;">QProcess::startDetached</tt>. Detaches from the terminal, but has the drawback that this method doesn't allow to interact with input/output or wait for completion, which is what we want.</li>
<li class="remarkup-list-item">Use <tt style="background: #ebebeb; font-size: 13px;">KPtyProcess</tt>: Not possible since while this detaches the ssh process from the parent's terminal, it creates a new one which would cause ssh to ask for password on that terminal. We would have to add code to relay interaction on the terminal to the user.</li>
<li class="remarkup-list-item">Create our own wrapper executable. That would have the advantage that it works on other systems than linux, eg. freebsd.</li>
</ol></div></div><br /><div><strong>TEST PLAN</strong><div><ol class="remarkup-list">
<li class="remarkup-list-item">Run ksysguard from konsole</li>
<li class="remarkup-list-item">Inspect sensors on another host that you need a password to log on</li>
<li class="remarkup-list-item">The prompt for a password should show up as a X dialog.</li>
</ol></div></div><br /><div><strong>REPOSITORY</strong><div><div>R111 KSysguard Library</div></div></div><br /><div><strong>BRANCH</strong><div><div>Plasma/5.18</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D29780">https://phabricator.kde.org/D29780</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>ksgrd/SensorShellAgent.cpp</div></div></div><br /><div><strong>To: </strong>jpalecek, Plasma, davidedmundson<br /><strong>Cc: </strong>plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, zachus, fbampaloukas, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart<br /></div>