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
|
/*
* Low level GDB interface.
*
* Copyright 1999 John Birch <jbb@kdevelop.org >
* Copyright 2007 Vladimir Prus <ghost@cs.msu.su>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "gdb.h"
#include "debugsession.h"
#include <KConfig>
#include <KConfigGroup>
#include <KGlobal>
#include <KMessageBox>
#include <KShell>
#include <KLocale>
#include <kdebug.h>
#include <QApplication>
#include <QFileInfo>
#include <memory>
#include <sys/types.h>
#include <signal.h>
// #define DEBUG_NO_TRY //to get a backtrace to where the exception was thrown
using namespace GDBDebugger;
GDB::GDB()
: process_(0), sawPrompt_(false), currentCmd_(0)
{
}
void GDB::start(KConfigGroup& config)
{
// FIXME: verify that default value leads to something sensible
KUrl gdbUrl = config.readEntry(GDBDebugger::gdbPathEntry, KUrl());
if (gdbUrl.isEmpty()) {
gdbBinary_ = "gdb";
} else {
// FIXME: verify its' a local path.
gdbBinary_ = gdbUrl.toLocalFile(KUrl::RemoveTrailingSlash);
}
process_ = new KProcess(this);
process_->setOutputChannelMode( KProcess::SeparateChannels );
connect(process_, SIGNAL(readyReadStandardOutput()),
SLOT(readyReadStandardOutput()));
connect(process_, SIGNAL(readyReadStandardError()),
SLOT(readyReadStandardError()));
connect(process_,
SIGNAL(finished(int, QProcess::ExitStatus)),
SLOT(processFinished(int, QProcess::ExitStatus)));
connect(process_, SIGNAL(error(QProcess::ProcessError)),
SLOT(processErrored(QProcess::ProcessError)));
QStringList arguments;
arguments << "--interpreter=mi2" << "-quiet";
QString shell = config.readEntry(GDBDebugger::debuggerShellEntry);
if( !shell.isEmpty() )
{
kDebug(9012) << "have shell\n";
shell = shell.simplified();
QString shell_without_args = shell.split(QChar(' ')).first();
QFileInfo info( shell_without_args );
/*if( info.isRelative() )
{
shell_without_args = build_dir + "/" + shell_without_args;
info.setFile( shell_without_args );
}*/
if( !info.exists() )
{
KMessageBox::information(
qApp->activeWindow(),
i18n("Could not locate the debugging shell '%1'.", shell_without_args ),
i18n("Debugging Shell Not Found") );
// FIXME: throw, or set some error message.
return;
}
arguments.insert(0, gdbBinary_);
arguments.insert(0, shell);
process_->setShellCommand( KShell::joinArgs( arguments ) );
}
else
{
process_->setProgram( gdbBinary_, arguments );
}
process_->start();
kDebug(9012) << "STARTING GDB\n";
emit userCommandOutput(shell + ' ' + gdbBinary_
+ " --interpreter=mi2 -quiet\n" );
}
void GDB::execute(GDBCommand* command)
{
currentCmd_ = command;
QString commandText = currentCmd_->cmdToSend();
kDebug(9012) << "SEND:" << commandText;
process_->write(commandText.toLatin1(),
commandText.length());
QString prettyCmd = currentCmd_->cmdToSend();
prettyCmd.remove( QRegExp("set prompt \032.\n") );
prettyCmd = "(gdb) " + prettyCmd;
if (currentCmd_->isUserCommand())
emit userCommandOutput(prettyCmd);
else
emit internalCommandOutput(prettyCmd);
}
bool GDB::isReady() const
{
return currentCmd_ == 0;
}
void GDB::interrupt()
{
//TODO:win32 Porting needed
int pid = process_->pid();
if (pid != 0)
::kill(pid, SIGINT);
}
GDBCommand* GDB::currentCommand() const
{
return currentCmd_;
}
void GDB::kill()
{
process_->kill();
}
void GDB::readyReadStandardOutput()
{
process_->setReadChannel(QProcess::StandardOutput);
buffer_ += process_->readAll();
for (;;)
{
/* In MI mode, all messages are exactly one line.
See if we have any complete lines in the buffer. */
int i = buffer_.indexOf('\n');
if (i == -1)
break;
QByteArray reply(buffer_.left(i));
buffer_ = buffer_.mid(i+1);
processLine(reply);
}
}
void GDB::readyReadStandardError()
{
process_->setReadChannel(QProcess::StandardOutput);
emit internalCommandOutput(QString::fromLocal8Bit(
process_->readAll()));
}
void GDB::processLine(const QByteArray& line)
{
kDebug(9012) << "GDB output: " << line << "\n";
if(!currentCmd_)
{
kDebug(9012) << "No current command\n";
return;
}
FileSymbol file;
file.contents = line;
std::auto_ptr<GDBMI::Record> r(mi_parser_.parse(&file));
if (r.get() == 0)
{
// FIXME: Issue an error!
kDebug(9012) << "Invalid MI message:" << line;
// We don't consider the current command done.
// So, if a command results in unparseable reply,
// we'll just wait for the "right" reply, which might
// never come. However, marking the command as
// done in this case is even more risky.
// It's probably possible to get here if we're debugging
// natively without PTY, though this is uncommon case.
return;
}
if (!sawPrompt_)
{
if (r->kind == GDBMI::Record::Stream)
{
GDBMI::StreamRecord& s = dynamic_cast<GDBMI::StreamRecord&>(*r);
emit userCommandOutput(s.message);
}
else if (r->kind == GDBMI::Record::Prompt)
{
sawPrompt_ = true;
}
}
else
{
bool ready_for_next_command = false;
#ifndef DEBUG_NO_TRY
try
{
#endif
switch(r->kind)
{
case GDBMI::Record::Result: {
GDBMI::ResultRecord& result = static_cast<GDBMI::ResultRecord&>(*r);
emit internalCommandOutput(QString::fromLocal8Bit(line) + '\n');
// FIXME: the code below should be reviewed to consider result record
// subtype when doing all decisions.
if (result.subkind == GDBMI::ResultRecord::GeneralNotification)
{
kDebug() << "General notification";
emit notification(result);
return;
}
if (result.reason == "stopped")
{
emit programStopped(result);
ready_for_next_command = true;
}
else if (result.reason == "running")
{
emit programRunning();
}
/* In theory, commands that run inferior and asynchronous,
and we get back gdb prompt, and can send further
commands. As of Dec 2007, this actually does not work,
and fully async operation of GDB is only being designed.
So, if we see "running", assume we can't yet send
commands. */
ready_for_next_command = (result.reason != "running");
if (currentCmd_ && currentCmd_->type() == GDBMI::TargetAttach && result.reason == "stopped") {
//when attaching don't send next command when we get *stopped response, as ^done will follow
ready_for_next_command = false;
}
if (result.reason == "done")
{
currentCmd_->invokeHandler(result);
emit resultRecord(result);
}
else if (result.reason == "error")
{
kDebug(9012) << "Handling error";
// Some commands want to handle errors themself.
if (currentCmd_->handlesError() &&
currentCmd_->invokeHandler(result))
{
kDebug(9012) << "Invoked custom handler\n";
// Done, nothing more needed
}
else
emit error(result);
}
break;
}
case GDBMI::Record::Stream: {
GDBMI::StreamRecord& s = dynamic_cast<GDBMI::StreamRecord&>(*r);
if (s.reason == '@')
emit applicationOutput(s.message);
if (currentCmd_->isUserCommand())
emit userCommandOutput(s.message);
else
emit internalCommandOutput(s.message);
currentCmd_->newOutput(s.message);
emit streamRecord(s);
break;
}
case GDBMI::Record::Prompt:
break;
}
#ifndef DEBUG_NO_TRY
}
catch(const std::exception& e)
{
KMessageBox::detailedSorry(
qApp->activeWindow(),
i18nc("<b>Internal debugger error</b>",
"<p>The debugger component encountered internal error while "
"processing reply from gdb. Please submit a bug report."),
i18n("The exception is: %1\n"
"The MI response is: %2", e.what(),
QString::fromLatin1(line)),
i18n("Internal debugger error"));
delete currentCmd_;
currentCmd_ = 0;
ready_for_next_command = true;
}
#endif
if (ready_for_next_command)
{
delete currentCmd_;
currentCmd_ = 0;
emit ready();
}
}
}
// **************************************************************************
void GDB::processFinished(int exitCode, QProcess::ExitStatus exitStatus)
{
Q_UNUSED(exitCode);
Q_UNUSED(exitStatus);
kDebug(9012) << "GDB FINISHED\n";
/* FIXME: return the status? */
emit gdbExited();
/* FIXME: revive. Need to arrange for controller to delete us.
bool abnormal = exitCode != 0 || exitStatus != QProcess::NormalExit;
deleteLater();
delete tty_;
tty_ = 0;
if (abnormal)
emit debuggerAbnormalExit();
raiseEvent(debugger_exited);
destroyCmds();
setState(s_dbgNotStarted|s_appNotStarted|s_programExited);
emit showMessage(i18n("Process exited"), 3000);
emit gdbUserCommandStdout("(gdb) Process exited\n");
*/
}
void GDB::processErrored(QProcess::ProcessError error)
{
kDebug(9012) << "GDB ERRORED" << error;
if( error == QProcess::FailedToStart )
{
KMessageBox::information(
qApp->activeWindow(),
i18n("<b>Could not start debugger.</b>"
"<p>Could not run '%1'. "
"Make sure that the path name is specified correctly.",
gdbBinary_),
i18n("Could not start debugger"));
/* FIXME: make sure the controller gets rids of GDB instance
emit debuggerAbnormalExit();
raiseEvent(debugger_exited); */
/* Used to be before, GDB controller might want to do
the same.
destroyCmds();
setState(s_dbgNotStarted|s_appNotStarted|s_programExited);
emit showMessage(i18n("Process didn't start"), 3000);
*/
emit userCommandOutput("(gdb) didn't start\n");
}
}
|